wapi-client 0.5.1 → 0.6.3

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.
@@ -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(type160, target) {
1331
+ constructor(type170, target) {
1332
1332
  this.target = target;
1333
- this.type = type160;
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(type160, listener, options) {
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 (type160 === "message") {
1379
+ if (type170 === "message") {
1380
1380
  onMessage._listener = listener;
1381
- this[method](type160, onMessage);
1382
- } else if (type160 === "close") {
1381
+ this[method](type170, onMessage);
1382
+ } else if (type170 === "close") {
1383
1383
  onClose._listener = listener;
1384
- this[method](type160, onClose);
1385
- } else if (type160 === "error") {
1384
+ this[method](type170, onClose);
1385
+ } else if (type170 === "error") {
1386
1386
  onError._listener = listener;
1387
- this[method](type160, onError);
1388
- } else if (type160 === "open") {
1387
+ this[method](type170, onError);
1388
+ } else if (type170 === "open") {
1389
1389
  onOpen._listener = listener;
1390
- this[method](type160, onOpen);
1390
+ this[method](type170, onOpen);
1391
1391
  } else {
1392
- this[method](type160, listener);
1392
+ this[method](type170, listener);
1393
1393
  }
1394
1394
  },
1395
- removeEventListener(type160, listener) {
1396
- const listeners = this.listeners(type160);
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(type160, listeners[i]);
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(type160) {
1769
- if (!BINARY_TYPES.includes(type160))
1768
+ set binaryType(type170) {
1769
+ if (!BINARY_TYPES.includes(type170))
1770
1770
  return;
1771
- this._binaryType = type160;
1771
+ this._binaryType = type170;
1772
1772
  if (this._receiver)
1773
- this._receiver._binaryType = type160;
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 }, type160) {
4571
- const group = self.RULES.types[type160];
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: properties132, items } = it.schema;
4781
- if (ty === "object" && properties132) {
4782
- for (const key in properties132) {
4783
- assignDefault(it, key, properties132[key].default);
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 } }, properties132, missing) {
4826
- return codegen_1.or(...properties132.map((prop) => codegen_1.and(noPropertyInData(gen, data, prop, opts.ownProperties), codegen_1._`${missing} = ${prop}`)));
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(type160) {
5400
- throw new RangeError(errors[type160]);
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: type160 } = rule.definition;
6685
- if (type160.length && !type160.some((t) => hasApplicableType(ts, t))) {
6686
- strictTypesError(it, `missing type "${type160.join(",")}" for keyword "${keyword}"`);
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 $schema186;
7460
- $schema186 = schema.$schema;
7461
- if ($schema186 !== void 0 && typeof $schema186 != "string") {
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
- $schema186 = $schema186 || this.opts.defaultMeta || this.defaultMeta();
7465
- if (!$schema186) {
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($schema186, schema);
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(definitions103) {
7530
- for (const def of definitions103)
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 properties132 = allProps.filter((p) => !util_1.alwaysValidSchema(it, schema[p]));
8950
- if (properties132.length === 0)
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 properties132) {
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 type160 = options && options.type !== void 0 && String(options.type).toLowerCase();
9839
- if (type160 && !/[^\u0020-\u007E]/.test(type160)) {
9840
- this[TYPE] = type160;
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, type160, systemError) {
9906
+ function FetchError(message, type170, systemError) {
9907
9907
  Error.call(this, message);
9908
9908
  this.message = message;
9909
- this.type = type160;
9909
+ this.type = type170;
9910
9910
  if (systemError) {
9911
9911
  this.code = this.errno = systemError.code;
9912
9912
  }
@@ -10924,6 +10924,8 @@ __export(exports, {
10924
10924
  DbModelNameEnum: () => DbModelNameEnum,
10925
10925
  ErrorMessage: () => ERROR_MESSAGES,
10926
10926
  Errors: () => ERROR_TYPES,
10927
+ ExportDatabaseTxInputSchema: () => export_database_schema_input_default,
10928
+ ExportDatabaseTxOutputSchema: () => export_database_schema_output_default,
10927
10929
  FindBalanceManyTxInputSchema: () => find_balance_many_schema_input_default,
10928
10930
  FindBalanceManyTxOutputSchema: () => find_balance_many_schema_output_default,
10929
10931
  FindBalancesFnInputSchema: () => find_balances_schema_input_default,
@@ -10955,6 +10957,10 @@ __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
+ GetDatabaseExportProgressTxInputSchema: () => get_database_export_progress_schema_input_default,
10961
+ GetDatabaseExportProgressTxOutputSchema: () => get_database_export_progress_schema_output_default,
10962
+ GetDatabaseImportProgressTxInputSchema: () => get_database_import_progress_schema_input_default,
10963
+ GetDatabaseImportProgressTxOutputSchema: () => get_database_import_progress_schema_output_default,
10958
10964
  GetFlagsFnInputSchema: () => get_flags_schema_input_default,
10959
10965
  GetFlagsFnOutputSchema: () => get_flags_schema_output_default,
10960
10966
  GetFlagsTxInputSchema: () => get_flags_schema_input_default2,
@@ -10992,6 +10998,10 @@ __export(exports, {
10992
10998
  ImportActionsTxOutputSchema: () => import_actions_schema_output_default,
10993
10999
  ImportDataFnInputSchema: () => import_data_schema_input_default,
10994
11000
  ImportDataFnOutputSchema: () => import_data_schema_output_default,
11001
+ ImportDatabaseTxInputSchema: () => import_database_schema_input_default,
11002
+ ImportDatabaseTxOutputSchema: () => import_database_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: description186 }) {
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 = description186 != null ? description186 : ErrorDescriptions[message]) != null ? _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
@@ -20385,13 +20411,60 @@ var create_withdrawal_schema_output_default2 = {
20385
20411
  allOf: allOf12
20386
20412
  };
20387
20413
 
20388
- // src/txs/find-balance-many/find-balance-many.schema.input.json
20414
+ // src/txs/export-database/export-database.schema.input.json
20389
20415
  var $schema121 = "http://json-schema.org/draft-07/schema";
20390
- var $id121 = "FindBalanceManyTxInput";
20391
- var title116 = "FindBalanceManyTxInput";
20392
- var description121 = "Input for findBalanceMany";
20416
+ var $id121 = "ExportDatabaseTxInput";
20417
+ var title116 = "ExportDatabaseTxInput";
20418
+ var description121 = "Input for exportDatabase";
20393
20419
  var type98 = "object";
20394
20420
  var properties69 = {
20421
+ export_name: {
20422
+ description: "Name of the created export file",
20423
+ type: "string"
20424
+ }
20425
+ };
20426
+ var definitions60 = {};
20427
+ var additionalProperties69 = false;
20428
+ var export_database_schema_input_default = {
20429
+ $schema: $schema121,
20430
+ $id: $id121,
20431
+ title: title116,
20432
+ description: description121,
20433
+ type: type98,
20434
+ properties: properties69,
20435
+ definitions: definitions60,
20436
+ additionalProperties: additionalProperties69
20437
+ };
20438
+
20439
+ // src/txs/export-database/export-database.schema.output.json
20440
+ var $schema122 = "http://json-schema.org/draft-07/schema";
20441
+ var $id122 = "ExportDatabaseTxOutput";
20442
+ var title117 = "ExportDatabaseTxOutput";
20443
+ var description122 = "Output of exportDatabase";
20444
+ var type99 = "object";
20445
+ var properties70 = {
20446
+ message: {
20447
+ type: "string"
20448
+ }
20449
+ };
20450
+ var additionalProperties70 = false;
20451
+ var export_database_schema_output_default = {
20452
+ $schema: $schema122,
20453
+ $id: $id122,
20454
+ title: title117,
20455
+ description: description122,
20456
+ type: type99,
20457
+ properties: properties70,
20458
+ additionalProperties: additionalProperties70
20459
+ };
20460
+
20461
+ // src/txs/find-balance-many/find-balance-many.schema.input.json
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 definitions60 = {
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 additionalProperties69 = false;
20750
+ var additionalProperties71 = false;
20678
20751
  var find_balance_many_schema_input_default = {
20679
- $schema: $schema121,
20680
- $id: $id121,
20681
- title: title116,
20682
- description: description121,
20683
- type: type98,
20684
- properties: properties69,
20685
- definitions: definitions60,
20686
- additionalProperties: additionalProperties69
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 $schema122 = "http://json-schema.org/draft-07/schema";
20691
- var $id122 = "FindBalanceManyTxOutput";
20692
- var title117 = "FindBalanceManyTxOutput";
20693
- var description122 = "Output of findBalanceMany";
20694
- var type99 = "object";
20695
- var properties70 = {
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 additionalProperties70 = false;
20781
+ var additionalProperties72 = false;
20709
20782
  var find_balance_many_schema_output_default = {
20710
- $schema: $schema122,
20711
- $id: $id122,
20712
- title: title117,
20713
- description: description122,
20714
- type: type99,
20715
- properties: properties70,
20783
+ $schema: $schema124,
20784
+ $id: $id124,
20785
+ title: title119,
20786
+ description: description124,
20787
+ type: type101,
20788
+ properties: properties72,
20716
20789
  required: required48,
20717
- additionalProperties: additionalProperties70
20790
+ additionalProperties: additionalProperties72
20718
20791
  };
20719
20792
 
20720
20793
  // src/txs/find-token-many/find-token-many.schema.input.json
20721
- var $schema123 = "http://json-schema.org/draft-07/schema";
20722
- var $id123 = "FindTokenManyTxInput";
20723
- var title118 = "FindTokenManyTxInput";
20724
- var description123 = "Input for findTokenMany";
20725
- var type100 = "object";
20726
- var properties71 = {
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 definitions61 = {
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 additionalProperties71 = false;
21062
+ var additionalProperties73 = false;
20990
21063
  var find_token_many_schema_input_default = {
20991
- $schema: $schema123,
20992
- $id: $id123,
20993
- title: title118,
20994
- description: description123,
20995
- type: type100,
20996
- properties: properties71,
20997
- definitions: definitions61,
20998
- additionalProperties: additionalProperties71
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 $schema124 = "http://json-schema.org/draft-07/schema";
21003
- var $id124 = "FindTokenManyTxOutput";
21004
- var title119 = "FindTokenManyTxOutput";
21005
- var description124 = "Output of findTokenMany";
21006
- var type101 = "object";
21007
- var properties72 = {
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 additionalProperties72 = false;
21093
+ var additionalProperties74 = false;
21021
21094
  var find_token_many_schema_output_default = {
21022
- $schema: $schema124,
21023
- $id: $id124,
21024
- title: title119,
21025
- description: description124,
21026
- type: type101,
21027
- properties: properties72,
21095
+ $schema: $schema126,
21096
+ $id: $id126,
21097
+ title: title121,
21098
+ description: description126,
21099
+ type: type103,
21100
+ properties: properties74,
21028
21101
  required: required49,
21029
- additionalProperties: additionalProperties72
21102
+ additionalProperties: additionalProperties74
21030
21103
  };
21031
21104
 
21032
21105
  // src/txs/find-transfer-group-many/find-transfer-group-many.schema.input.json
21033
- var $schema125 = "http://json-schema.org/draft-07/schema";
21034
- var $id125 = "FindTransferGroupManyTxInput";
21035
- var title120 = "FindTransferGroupManyTxInput";
21036
- var description125 = "Input for findTransferGroupMany";
21037
- var type102 = "object";
21038
- var properties73 = {
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 definitions62 = {
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 additionalProperties73 = false;
21384
+ var additionalProperties75 = false;
21312
21385
  var find_transfer_group_many_schema_input_default = {
21313
- $schema: $schema125,
21314
- $id: $id125,
21315
- title: title120,
21316
- description: description125,
21317
- type: type102,
21318
- properties: properties73,
21319
- definitions: definitions62,
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: additionalProperties73
21394
+ additionalProperties: additionalProperties75
21322
21395
  };
21323
21396
 
21324
21397
  // src/txs/find-transfer-group-many/find-transfer-group-many.schema.output.json
21325
- var $schema126 = "http://json-schema.org/draft-07/schema";
21326
- var $id126 = "FindTransferGroupManyTxOutput";
21327
- var title121 = "FindTransferGroupManyTxOutput";
21328
- var description126 = "Output of find-transfer-group-many";
21329
- var type103 = "object";
21330
- var properties74 = {
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 additionalProperties74 = false;
21416
+ var additionalProperties76 = false;
21344
21417
  var find_transfer_group_many_schema_output_default = {
21345
- $schema: $schema126,
21346
- $id: $id126,
21347
- title: title121,
21348
- description: description126,
21349
- type: type103,
21350
- properties: properties74,
21418
+ $schema: $schema128,
21419
+ $id: $id128,
21420
+ title: title123,
21421
+ description: description128,
21422
+ type: type105,
21423
+ properties: properties76,
21351
21424
  required: required51,
21352
- additionalProperties: additionalProperties74
21425
+ additionalProperties: additionalProperties76
21353
21426
  };
21354
21427
 
21355
21428
  // src/txs/find-transfer-many/find-transfer-many.schema.input.json
21356
- var $schema127 = "http://json-schema.org/draft-07/schema";
21357
- var $id127 = "FindTransferManyTxInput";
21358
- var title122 = "FindTransferManyTxInput";
21359
- var description127 = "Input for findTransferMany";
21360
- var type104 = "object";
21361
- var properties75 = {
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 definitions63 = {
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 additionalProperties75 = false;
21741
+ var additionalProperties77 = false;
21669
21742
  var find_transfer_many_schema_input_default = {
21670
- $schema: $schema127,
21671
- $id: $id127,
21672
- title: title122,
21673
- description: description127,
21674
- type: type104,
21675
- properties: properties75,
21676
- definitions: definitions63,
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: additionalProperties75
21751
+ additionalProperties: additionalProperties77
21679
21752
  };
21680
21753
 
21681
21754
  // src/txs/find-transfer-many/find-transfer-many.schema.output.json
21682
- var $schema128 = "http://json-schema.org/draft-07/schema";
21683
- var $id128 = "FindTransferManyTxOutput";
21684
- var title123 = "FindTransferManyTxOutput";
21685
- var description128 = "Output of findTransferMany";
21686
- var type105 = "object";
21687
- var properties76 = {
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 additionalProperties76 = false;
21773
+ var additionalProperties78 = false;
21701
21774
  var find_transfer_many_schema_output_default = {
21702
- $schema: $schema128,
21703
- $id: $id128,
21704
- title: title123,
21705
- description: description128,
21706
- type: type105,
21707
- properties: properties76,
21775
+ $schema: $schema130,
21776
+ $id: $id130,
21777
+ title: title125,
21778
+ description: description130,
21779
+ type: type107,
21780
+ properties: properties78,
21708
21781
  required: required53,
21709
- additionalProperties: additionalProperties76
21782
+ additionalProperties: additionalProperties78
21710
21783
  };
21711
21784
 
21712
21785
  // src/txs/find-wallet-many/find-wallet-many.schema.input.json
21713
- var $schema129 = "http://json-schema.org/draft-07/schema";
21714
- var $id129 = "FindWalletManyTxInput";
21715
- var title124 = "FindWalletManyTxInput";
21716
- var description129 = "Input for findWalletMany";
21717
- var type106 = "object";
21718
- var properties77 = {
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 definitions64 = {
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 additionalProperties77 = false;
22053
+ var additionalProperties79 = false;
21981
22054
  var find_wallet_many_schema_input_default = {
21982
- $schema: $schema129,
21983
- $id: $id129,
21984
- title: title124,
21985
- description: description129,
21986
- type: type106,
21987
- properties: properties77,
21988
- definitions: definitions64,
21989
- additionalProperties: additionalProperties77
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 $schema130 = "http://json-schema.org/draft-07/schema";
21994
- var $id130 = "FindWalletManyTxOutput";
21995
- var title125 = "FindWalletManyTxOutput";
21996
- var description130 = "Output of findWalletMany";
21997
- var type107 = "object";
21998
- var properties78 = {
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 definitions65 = {
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 additionalProperties78 = false;
22217
+ var additionalProperties80 = false;
22145
22218
  var find_wallet_many_schema_output_default = {
22146
- $schema: $schema130,
22147
- $id: $id130,
22148
- title: title125,
22149
- description: description130,
22150
- type: type107,
22151
- properties: properties78,
22152
- definitions: definitions65,
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: additionalProperties78
22227
+ additionalProperties: additionalProperties80
22155
22228
  };
22156
22229
 
22157
22230
  // src/txs/finish-transaction/finish-transaction.schema.input.json
22158
- var $schema131 = "http://json-schema.org/draft-07/schema";
22159
- var $id131 = "FinishTransactionTxInput";
22160
- var title126 = "FinishTransactionTxInput";
22161
- var description131 = "Input for finishTransaction";
22162
- var type108 = "object";
22163
- var properties79 = {
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 definitions66 = {
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 additionalProperties79 = false;
22269
+ var additionalProperties81 = false;
22197
22270
  var finish_transaction_schema_input_default = {
22198
- $schema: $schema131,
22199
- $id: $id131,
22200
- title: title126,
22201
- description: description131,
22202
- type: type108,
22203
- properties: properties79,
22204
- definitions: definitions66,
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: additionalProperties79
22279
+ additionalProperties: additionalProperties81
22207
22280
  };
22208
22281
 
22209
22282
  // src/txs/finish-transaction/finish-transaction.schema.output.json
22210
- var $schema132 = "http://json-schema.org/draft-07/schema";
22211
- var $id132 = "FinishTransactionTxOutput";
22212
- var title127 = "FinishTransactionTxOutput";
22213
- var description132 = "Output of finishTransaction";
22214
- var type109 = "object";
22215
- var properties80 = {
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 additionalProperties80 = false;
22298
+ var additionalProperties82 = false;
22226
22299
  var finish_transaction_schema_output_default = {
22227
- $schema: $schema132,
22228
- $id: $id132,
22229
- title: title127,
22230
- description: description132,
22231
- type: type109,
22232
- properties: properties80,
22300
+ $schema: $schema134,
22301
+ $id: $id134,
22302
+ title: title129,
22303
+ description: description134,
22304
+ type: type111,
22305
+ properties: properties82,
22233
22306
  required: required56,
22234
- additionalProperties: additionalProperties80
22307
+ additionalProperties: additionalProperties82
22235
22308
  };
22236
22309
 
22237
22310
  // src/txs/get-balance/get-balance.schema.input.json
22238
- var $schema133 = "http://json-schema.org/draft-07/schema";
22239
- var $id133 = "GetBalanceTxInput";
22240
- var title128 = "GetBalanceTxInput";
22241
- var description133 = "Input for getBalance";
22242
- var type110 = "object";
22243
- var properties81 = {
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 definitions67 = {
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 additionalProperties81 = false;
22375
+ var additionalProperties83 = false;
22303
22376
  var get_balance_schema_input_default2 = {
22304
- $schema: $schema133,
22305
- $id: $id133,
22306
- title: title128,
22307
- description: description133,
22308
- type: type110,
22309
- properties: properties81,
22310
- definitions: definitions67,
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: additionalProperties81
22385
+ additionalProperties: additionalProperties83
22313
22386
  };
22314
22387
 
22315
22388
  // src/txs/get-balance/get-balance.schema.output.json
22316
- var $schema134 = "http://json-schema.org/draft-07/schema";
22317
- var $id134 = "GetBalanceTxOutput";
22318
- var title129 = "GetBalanceTxOutput";
22319
- var description134 = "Output of getBalance";
22320
- var type111 = "object";
22321
- var properties82 = {
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 definitions68 = {
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 additionalProperties82 = false;
22490
+ var additionalProperties84 = false;
22418
22491
  var get_balance_schema_output_default2 = {
22419
- $schema: $schema134,
22420
- $id: $id134,
22421
- title: title129,
22422
- description: description134,
22423
- type: type111,
22424
- properties: properties82,
22425
- definitions: definitions68,
22426
- additionalProperties: additionalProperties82
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 $schema135 = "http://json-schema.org/draft-07/schema";
22431
- var $id135 = "GetBalanceHistoryTxInput";
22432
- var title130 = "GetBalanceHistoryTxInput";
22433
- var description135 = "Input for getBalanceHistory";
22434
- var type112 = "object";
22435
- var properties83 = {
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 definitions69 = {
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 additionalProperties83 = false;
22584
+ var additionalProperties85 = false;
22512
22585
  var get_balance_history_schema_input_default2 = {
22513
- $schema: $schema135,
22514
- $id: $id135,
22515
- title: title130,
22516
- description: description135,
22517
- type: type112,
22518
- properties: properties83,
22519
- definitions: definitions69,
22520
- additionalProperties: additionalProperties83
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 $schema136 = "http://json-schema.org/draft-07/schema";
22525
- var $id136 = "GetBalanceHistoryTxOutput";
22526
- var title131 = "GetBalanceHistoryTxOutput";
22527
- var description136 = "Output of getBalanceHistory";
22528
- var type113 = "object";
22529
- var properties84 = {
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 definitions70 = {
22614
+ var definitions71 = {
22542
22615
  balance_history: {
22543
22616
  type: "object",
22544
22617
  properties: {
@@ -22696,139 +22769,266 @@ var definitions70 = {
22696
22769
  ]
22697
22770
  }
22698
22771
  };
22699
- var additionalProperties84 = false;
22700
- var get_balance_history_schema_output_default2 = {
22701
- $schema: $schema136,
22702
- $id: $id136,
22703
- title: title131,
22704
- description: description136,
22705
- type: type113,
22706
- properties: properties84,
22707
- definitions: definitions70,
22708
- additionalProperties: additionalProperties84
22709
- };
22710
-
22711
- // src/txs/get-flags/get-flags.schema.input.json
22712
- var $schema137 = "http://json-schema.org/draft-07/schema";
22713
- var $id137 = "GetFlagsTxInput";
22714
- var title132 = "GetFlagsTxInput";
22715
- var description137 = "Input for getFlags";
22716
- var type114 = "object";
22717
- var properties85 = {
22718
- options: {
22719
- $ref: "#/definitions/get_flags_tx_options"
22720
- }
22721
- };
22722
- var definitions71 = {
22723
- get_flags_tx_options: {
22724
- allOf: [
22725
- {
22726
- $ref: "/txs/tx-consts.schema.json#/definitions/i_tx_general_options_without_tx"
22727
- }
22728
- ]
22729
- }
22730
- };
22731
- var additionalProperties85 = false;
22732
- var get_flags_schema_input_default2 = {
22733
- $schema: $schema137,
22734
- $id: $id137,
22735
- title: title132,
22736
- description: description137,
22737
- type: type114,
22738
- properties: properties85,
22739
- definitions: definitions71,
22740
- additionalProperties: additionalProperties85
22741
- };
22742
-
22743
- // src/txs/get-flags/get-flags.schema.output.json
22744
- var $schema138 = "http://json-schema.org/draft-07/schema";
22745
- var $id138 = "GetFlagsTxOutput";
22746
- var title133 = "GetFlagsTxOutput";
22747
- var description138 = "Output of getFlags";
22748
- var type115 = "object";
22749
- var properties86 = {
22750
- flags: {
22751
- $ref: "/db/consts.schema.json#/definitions/Flags"
22752
- }
22753
- };
22754
22772
  var additionalProperties86 = false;
22755
- var get_flags_schema_output_default2 = {
22773
+ var get_balance_history_schema_output_default2 = {
22756
22774
  $schema: $schema138,
22757
22775
  $id: $id138,
22758
22776
  title: title133,
22759
22777
  description: description138,
22760
22778
  type: type115,
22761
22779
  properties: properties86,
22780
+ definitions: definitions71,
22762
22781
  additionalProperties: additionalProperties86
22763
22782
  };
22764
22783
 
22765
- // src/txs/get-statistics/get-statistics.schema.input.json
22784
+ // src/txs/get-database-export-progress/get-database-export-progress.schema.input.json
22766
22785
  var $schema139 = "http://json-schema.org/draft-07/schema";
22767
- var $id139 = "GetStatisticsTxInput";
22768
- var title134 = "GetStatisticsTxInput";
22769
- var description139 = "Input for getStatistics";
22786
+ var $id139 = "GetDatabaseExportProgressTxInput";
22787
+ var title134 = "GetDatabaseExportProgressTxInput";
22788
+ var description139 = "Input for getDatabaseExportProgress";
22770
22789
  var type116 = "object";
22771
22790
  var properties87 = {
22772
- model: {
22773
- $ref: "#/definitions/statistics_model"
22774
- },
22775
- groups: {
22776
- $ref: "#/definitions/statistics_groups"
22777
- },
22778
- aggregator: {
22779
- $ref: "/txs/tx-consts.schema.json#/definitions/i_tx_aggregator"
22780
- },
22781
- filter: {
22782
- $ref: "#/definitions/statistics_filter"
22783
- },
22784
22791
  options: {
22785
- $ref: "#/definitions/get_statistics_tx_options"
22792
+ $ref: "#/definitions/get_database_backup_progress_tx_options"
22786
22793
  }
22787
22794
  };
22788
22795
  var definitions72 = {
22789
- get_statistics_tx_options: {
22790
- description: "Optional flags for input",
22791
- type: "object",
22792
- default: {},
22793
- properties: {
22794
- tracking_id: {
22795
- description: "User provided id added to logs for debugging",
22796
- type: "string"
22797
- }
22798
- },
22799
- additionalProperties: false
22800
- },
22801
- statistics_groups: {
22802
- type: "array",
22803
- maxItems: 5,
22804
- items: {
22805
- $ref: "#/definitions/statistics_group"
22806
- }
22807
- },
22808
- statistics_group: {
22809
- anyOf: [
22796
+ get_database_backup_progress_tx_options: {
22797
+ allOf: [
22810
22798
  {
22811
- $ref: "/txs/tx-consts.schema.json#/definitions/i_tx_group"
22799
+ $ref: "/txs/tx-consts.schema.json#/definitions/i_tx_general_options"
22812
22800
  },
22813
22801
  {
22814
- $ref: "#/definitions/statistics_group_field"
22802
+ $ref: "#/definitions/get_database_backup_progress_additional_options"
22815
22803
  }
22816
22804
  ]
22817
22805
  },
22818
- statistics_group_field: {
22806
+ get_database_backup_progress_additional_options: {
22807
+ description: "Optional flags for input",
22819
22808
  type: "object",
22820
- properties: {
22821
- type: {
22822
- type: "string",
22823
- enum: ["field"]
22824
- },
22825
- value: {
22826
- $ref: "#/definitions/statistics_field"
22827
- },
22828
- alias: {
22829
- type: "string"
22830
- }
22831
- },
22809
+ default: {},
22810
+ $typescript: '{"additionalProperties":false}'
22811
+ }
22812
+ };
22813
+ var additionalProperties87 = false;
22814
+ var get_database_export_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-export-progress/get-database-export-progress.schema.output.json
22826
+ var $schema140 = "http://json-schema.org/draft-07/schema";
22827
+ var $id140 = "GetDatabaseExportProgressTxOutput";
22828
+ var title135 = "GetDatabaseExportProgressTxOutput";
22829
+ var description140 = "Output of getDatabaseExportProgress";
22830
+ var type117 = "object";
22831
+ var properties88 = {
22832
+ size: {
22833
+ type: "number",
22834
+ description: "Size of a exported backup in MB"
22835
+ },
22836
+ started: {
22837
+ type: "boolean",
22838
+ description: "Boolean indicating if export has started"
22839
+ },
22840
+ finished: {
22841
+ type: "boolean",
22842
+ description: "Boolean indicating if export has finished"
22843
+ }
22844
+ };
22845
+ var additionalProperties88 = false;
22846
+ var get_database_export_progress_schema_output_default = {
22847
+ $schema: $schema140,
22848
+ $id: $id140,
22849
+ title: title135,
22850
+ description: description140,
22851
+ type: type117,
22852
+ properties: properties88,
22853
+ additionalProperties: additionalProperties88
22854
+ };
22855
+
22856
+ // src/txs/get-database-import-progress/get-database-import-progress.schema.input.json
22857
+ var $schema141 = "http://json-schema.org/draft-07/schema";
22858
+ var $id141 = "GetDatabaseImportProgressTxInput";
22859
+ var title136 = "GetDatabaseImportProgressTxInput";
22860
+ var description141 = "Input for GetDatabaseImportProgress";
22861
+ var type118 = "object";
22862
+ var properties89 = {
22863
+ options: {
22864
+ $ref: "#/definitions/import_database_progress_tx_options"
22865
+ }
22866
+ };
22867
+ var definitions73 = {
22868
+ import_database_progress_tx_options: {
22869
+ allOf: [
22870
+ {
22871
+ $ref: "/txs/tx-consts.schema.json#/definitions/i_tx_general_options"
22872
+ }
22873
+ ]
22874
+ }
22875
+ };
22876
+ var additionalProperties89 = false;
22877
+ var get_database_import_progress_schema_input_default = {
22878
+ $schema: $schema141,
22879
+ $id: $id141,
22880
+ title: title136,
22881
+ description: description141,
22882
+ type: type118,
22883
+ properties: properties89,
22884
+ definitions: definitions73,
22885
+ additionalProperties: additionalProperties89
22886
+ };
22887
+
22888
+ // src/txs/get-database-import-progress/get-database-import-progress.schema.output.json
22889
+ var $schema142 = "http://json-schema.org/draft-07/schema";
22890
+ var $id142 = "GetDatabaseImportProgressTxOutput";
22891
+ var title137 = "GetDatabaseImportProgressTxOutput";
22892
+ var description142 = "Output of GetDatabaseImportProgress";
22893
+ var type119 = "object";
22894
+ var properties90 = {
22895
+ progress: {
22896
+ type: "number",
22897
+ description: "Percentage of imported database"
22898
+ }
22899
+ };
22900
+ var additionalProperties90 = false;
22901
+ var get_database_import_progress_schema_output_default = {
22902
+ $schema: $schema142,
22903
+ $id: $id142,
22904
+ title: title137,
22905
+ description: description142,
22906
+ type: type119,
22907
+ properties: properties90,
22908
+ additionalProperties: additionalProperties90
22909
+ };
22910
+
22911
+ // src/txs/get-flags/get-flags.schema.input.json
22912
+ var $schema143 = "http://json-schema.org/draft-07/schema";
22913
+ var $id143 = "GetFlagsTxInput";
22914
+ var title138 = "GetFlagsTxInput";
22915
+ var description143 = "Input for getFlags";
22916
+ var type120 = "object";
22917
+ var properties91 = {
22918
+ options: {
22919
+ $ref: "#/definitions/get_flags_tx_options"
22920
+ }
22921
+ };
22922
+ var definitions74 = {
22923
+ get_flags_tx_options: {
22924
+ allOf: [
22925
+ {
22926
+ $ref: "/txs/tx-consts.schema.json#/definitions/i_tx_general_options_without_tx"
22927
+ }
22928
+ ]
22929
+ }
22930
+ };
22931
+ var additionalProperties91 = false;
22932
+ var get_flags_schema_input_default2 = {
22933
+ $schema: $schema143,
22934
+ $id: $id143,
22935
+ title: title138,
22936
+ description: description143,
22937
+ type: type120,
22938
+ properties: properties91,
22939
+ definitions: definitions74,
22940
+ additionalProperties: additionalProperties91
22941
+ };
22942
+
22943
+ // src/txs/get-flags/get-flags.schema.output.json
22944
+ var $schema144 = "http://json-schema.org/draft-07/schema";
22945
+ var $id144 = "GetFlagsTxOutput";
22946
+ var title139 = "GetFlagsTxOutput";
22947
+ var description144 = "Output of getFlags";
22948
+ var type121 = "object";
22949
+ var properties92 = {
22950
+ flags: {
22951
+ $ref: "/db/consts.schema.json#/definitions/Flags"
22952
+ }
22953
+ };
22954
+ var additionalProperties92 = false;
22955
+ var get_flags_schema_output_default2 = {
22956
+ $schema: $schema144,
22957
+ $id: $id144,
22958
+ title: title139,
22959
+ description: description144,
22960
+ type: type121,
22961
+ properties: properties92,
22962
+ additionalProperties: additionalProperties92
22963
+ };
22964
+
22965
+ // src/txs/get-statistics/get-statistics.schema.input.json
22966
+ var $schema145 = "http://json-schema.org/draft-07/schema";
22967
+ var $id145 = "GetStatisticsTxInput";
22968
+ var title140 = "GetStatisticsTxInput";
22969
+ var description145 = "Input for getStatistics";
22970
+ var type122 = "object";
22971
+ var properties93 = {
22972
+ model: {
22973
+ $ref: "#/definitions/statistics_model"
22974
+ },
22975
+ groups: {
22976
+ $ref: "#/definitions/statistics_groups"
22977
+ },
22978
+ aggregator: {
22979
+ $ref: "/txs/tx-consts.schema.json#/definitions/i_tx_aggregator"
22980
+ },
22981
+ filter: {
22982
+ $ref: "#/definitions/statistics_filter"
22983
+ },
22984
+ options: {
22985
+ $ref: "#/definitions/get_statistics_tx_options"
22986
+ }
22987
+ };
22988
+ var definitions75 = {
22989
+ get_statistics_tx_options: {
22990
+ description: "Optional flags for input",
22991
+ type: "object",
22992
+ default: {},
22993
+ properties: {
22994
+ tracking_id: {
22995
+ description: "User provided id added to logs for debugging",
22996
+ type: "string"
22997
+ }
22998
+ },
22999
+ additionalProperties: false
23000
+ },
23001
+ statistics_groups: {
23002
+ type: "array",
23003
+ maxItems: 5,
23004
+ items: {
23005
+ $ref: "#/definitions/statistics_group"
23006
+ }
23007
+ },
23008
+ statistics_group: {
23009
+ anyOf: [
23010
+ {
23011
+ $ref: "/txs/tx-consts.schema.json#/definitions/i_tx_group"
23012
+ },
23013
+ {
23014
+ $ref: "#/definitions/statistics_group_field"
23015
+ }
23016
+ ]
23017
+ },
23018
+ statistics_group_field: {
23019
+ type: "object",
23020
+ properties: {
23021
+ type: {
23022
+ type: "string",
23023
+ enum: ["field"]
23024
+ },
23025
+ value: {
23026
+ $ref: "#/definitions/statistics_field"
23027
+ },
23028
+ alias: {
23029
+ type: "string"
23030
+ }
23031
+ },
22832
23032
  required: ["type", "value"],
22833
23033
  additionalProperties: false
22834
23034
  },
@@ -22882,51 +23082,51 @@ var definitions72 = {
22882
23082
  $typescript: '{"additionalProperties":false}'
22883
23083
  }
22884
23084
  };
22885
- var additionalProperties87 = false;
23085
+ var additionalProperties93 = false;
22886
23086
  var get_statistics_schema_input_default2 = {
22887
- $schema: $schema139,
22888
- $id: $id139,
22889
- title: title134,
22890
- description: description139,
22891
- type: type116,
22892
- properties: properties87,
22893
- definitions: definitions72,
22894
- additionalProperties: additionalProperties87
23087
+ $schema: $schema145,
23088
+ $id: $id145,
23089
+ title: title140,
23090
+ description: description145,
23091
+ type: type122,
23092
+ properties: properties93,
23093
+ definitions: definitions75,
23094
+ additionalProperties: additionalProperties93
22895
23095
  };
22896
23096
 
22897
23097
  // src/txs/get-statistics/get-statistics.schema.output.json
22898
- var $schema140 = "http://json-schema.org/draft-07/schema";
22899
- var $id140 = "GetStatisticsTxOutput";
22900
- var title135 = "GetStatisticsTxOutput";
22901
- var description140 = "Output of getStatistics";
22902
- var type117 = "object";
22903
- var properties88 = {
23098
+ var $schema146 = "http://json-schema.org/draft-07/schema";
23099
+ var $id146 = "GetStatisticsTxOutput";
23100
+ var title141 = "GetStatisticsTxOutput";
23101
+ var description146 = "Output of getStatistics";
23102
+ var type123 = "object";
23103
+ var properties94 = {
22904
23104
  rows: {
22905
23105
  $ref: "/txs/tx-consts.schema.json#/definitions/i_tx_aggregate_results"
22906
23106
  }
22907
23107
  };
22908
- var definitions73 = {};
23108
+ var definitions76 = {};
22909
23109
  var required58 = ["rows"];
22910
- var additionalProperties88 = false;
23110
+ var additionalProperties94 = false;
22911
23111
  var get_statistics_schema_output_default2 = {
22912
- $schema: $schema140,
22913
- $id: $id140,
22914
- title: title135,
22915
- description: description140,
22916
- type: type117,
22917
- properties: properties88,
22918
- definitions: definitions73,
23112
+ $schema: $schema146,
23113
+ $id: $id146,
23114
+ title: title141,
23115
+ description: description146,
23116
+ type: type123,
23117
+ properties: properties94,
23118
+ definitions: definitions76,
22919
23119
  required: required58,
22920
- additionalProperties: additionalProperties88
23120
+ additionalProperties: additionalProperties94
22921
23121
  };
22922
23122
 
22923
23123
  // src/txs/get-token/get-token.schema.input.json
22924
- var $schema141 = "http://json-schema.org/draft-07/schema";
22925
- var $id141 = "GetTokenTxInput";
22926
- var title136 = "GetTokenTxInput";
22927
- var description141 = "Input for getToken";
22928
- var type118 = "object";
22929
- var properties89 = {
23124
+ var $schema147 = "http://json-schema.org/draft-07/schema";
23125
+ var $id147 = "GetTokenTxInput";
23126
+ var title142 = "GetTokenTxInput";
23127
+ var description147 = "Input for getToken";
23128
+ var type124 = "object";
23129
+ var properties95 = {
22930
23130
  token: {
22931
23131
  $ref: "#/definitions/unique_token_filter"
22932
23132
  },
@@ -22934,7 +23134,7 @@ var properties89 = {
22934
23134
  $ref: "#/definitions/get_token_tx_options"
22935
23135
  }
22936
23136
  };
22937
- var definitions74 = {
23137
+ var definitions77 = {
22938
23138
  get_token_tx_options: {
22939
23139
  allOf: [
22940
23140
  {
@@ -23010,32 +23210,32 @@ var definitions74 = {
23010
23210
  }
23011
23211
  };
23012
23212
  var required59 = ["token"];
23013
- var additionalProperties89 = false;
23213
+ var additionalProperties95 = false;
23014
23214
  var get_token_schema_input_default2 = {
23015
- $schema: $schema141,
23016
- $id: $id141,
23017
- title: title136,
23018
- description: description141,
23019
- type: type118,
23020
- properties: properties89,
23021
- definitions: definitions74,
23215
+ $schema: $schema147,
23216
+ $id: $id147,
23217
+ title: title142,
23218
+ description: description147,
23219
+ type: type124,
23220
+ properties: properties95,
23221
+ definitions: definitions77,
23022
23222
  required: required59,
23023
- additionalProperties: additionalProperties89
23223
+ additionalProperties: additionalProperties95
23024
23224
  };
23025
23225
 
23026
23226
  // src/txs/get-token/get-token.schema.output.json
23027
- var $schema142 = "http://json-schema.org/draft-07/schema";
23028
- var $id142 = "GetTokenTxOutput";
23029
- var title137 = "GetTokenTxOutput";
23030
- var description142 = "Output of getToken";
23031
- var type119 = "object";
23032
- var properties90 = {
23227
+ var $schema148 = "http://json-schema.org/draft-07/schema";
23228
+ var $id148 = "GetTokenTxOutput";
23229
+ var title143 = "GetTokenTxOutput";
23230
+ var description148 = "Output of getToken";
23231
+ var type125 = "object";
23232
+ var properties96 = {
23033
23233
  token: {
23034
23234
  description: "requested token",
23035
23235
  $ref: "#/definitions/token"
23036
23236
  }
23037
23237
  };
23038
- var definitions75 = {
23238
+ var definitions78 = {
23039
23239
  token: {
23040
23240
  properties: {
23041
23241
  id: {
@@ -23077,25 +23277,25 @@ var definitions75 = {
23077
23277
  additionalProperties: false
23078
23278
  }
23079
23279
  };
23080
- var additionalProperties90 = false;
23280
+ var additionalProperties96 = false;
23081
23281
  var get_token_schema_output_default2 = {
23082
- $schema: $schema142,
23083
- $id: $id142,
23084
- title: title137,
23085
- description: description142,
23086
- type: type119,
23087
- properties: properties90,
23088
- definitions: definitions75,
23089
- additionalProperties: additionalProperties90
23282
+ $schema: $schema148,
23283
+ $id: $id148,
23284
+ title: title143,
23285
+ description: description148,
23286
+ type: type125,
23287
+ properties: properties96,
23288
+ definitions: definitions78,
23289
+ additionalProperties: additionalProperties96
23090
23290
  };
23091
23291
 
23092
23292
  // src/txs/get-token-many/get-token-many.schema.input.json
23093
- var $schema143 = "http://json-schema.org/draft-07/schema";
23094
- var $id143 = "GetTokenManyTxInput";
23095
- var title138 = "GetTokenManyTxInput";
23096
- var description143 = "Input for getTokenMany";
23097
- var type120 = "object";
23098
- var properties91 = {
23293
+ var $schema149 = "http://json-schema.org/draft-07/schema";
23294
+ var $id149 = "GetTokenManyTxInput";
23295
+ var title144 = "GetTokenManyTxInput";
23296
+ var description149 = "Input for getTokenMany";
23297
+ var type126 = "object";
23298
+ var properties97 = {
23099
23299
  tokens: {
23100
23300
  type: "array",
23101
23301
  items: {
@@ -23106,7 +23306,7 @@ var properties91 = {
23106
23306
  $ref: "#/definitions/get_token_many_tx_options"
23107
23307
  }
23108
23308
  };
23109
- var definitions76 = {
23309
+ var definitions79 = {
23110
23310
  get_token_many_tx_options: {
23111
23311
  allOf: [
23112
23312
  {
@@ -23139,26 +23339,26 @@ var definitions76 = {
23139
23339
  }
23140
23340
  };
23141
23341
  var required60 = ["tokens"];
23142
- var additionalProperties91 = false;
23342
+ var additionalProperties97 = false;
23143
23343
  var get_token_many_schema_input_default = {
23144
- $schema: $schema143,
23145
- $id: $id143,
23146
- title: title138,
23147
- description: description143,
23148
- type: type120,
23149
- properties: properties91,
23150
- definitions: definitions76,
23344
+ $schema: $schema149,
23345
+ $id: $id149,
23346
+ title: title144,
23347
+ description: description149,
23348
+ type: type126,
23349
+ properties: properties97,
23350
+ definitions: definitions79,
23151
23351
  required: required60,
23152
- additionalProperties: additionalProperties91
23352
+ additionalProperties: additionalProperties97
23153
23353
  };
23154
23354
 
23155
23355
  // src/txs/get-token-many/get-token-many.schema.output.json
23156
- var $schema144 = "http://json-schema.org/draft-07/schema";
23157
- var $id144 = "GetTokenManyTxOutput";
23158
- var title139 = "GetTokenManyTxOutput";
23159
- var description144 = "Output of getTokenMany";
23160
- var type121 = "object";
23161
- var properties92 = {
23356
+ var $schema150 = "http://json-schema.org/draft-07/schema";
23357
+ var $id150 = "GetTokenManyTxOutput";
23358
+ var title145 = "GetTokenManyTxOutput";
23359
+ var description150 = "Output of getTokenMany";
23360
+ var type127 = "object";
23361
+ var properties98 = {
23162
23362
  tokens: {
23163
23363
  type: "array",
23164
23364
  items: {
@@ -23166,7 +23366,7 @@ var properties92 = {
23166
23366
  }
23167
23367
  }
23168
23368
  };
23169
- var definitions77 = {
23369
+ var definitions80 = {
23170
23370
  TokenResult: {
23171
23371
  anyOf: [
23172
23372
  {
@@ -23182,26 +23382,26 @@ var definitions77 = {
23182
23382
  }
23183
23383
  };
23184
23384
  var required61 = ["tokens"];
23185
- var additionalProperties92 = false;
23385
+ var additionalProperties98 = false;
23186
23386
  var get_token_many_schema_output_default = {
23187
- $schema: $schema144,
23188
- $id: $id144,
23189
- title: title139,
23190
- description: description144,
23191
- type: type121,
23192
- properties: properties92,
23193
- definitions: definitions77,
23387
+ $schema: $schema150,
23388
+ $id: $id150,
23389
+ title: title145,
23390
+ description: description150,
23391
+ type: type127,
23392
+ properties: properties98,
23393
+ definitions: definitions80,
23194
23394
  required: required61,
23195
- additionalProperties: additionalProperties92
23395
+ additionalProperties: additionalProperties98
23196
23396
  };
23197
23397
 
23198
23398
  // src/txs/get-transfer/get-transfer.schema.input.json
23199
- var $schema145 = "http://json-schema.org/draft-07/schema";
23200
- var $id145 = "GetTransferTxInput";
23201
- var title140 = "GetTransferTxInput";
23202
- var description145 = "Input for getTransfer";
23203
- var type122 = "object";
23204
- var properties93 = {
23399
+ var $schema151 = "http://json-schema.org/draft-07/schema";
23400
+ var $id151 = "GetTransferTxInput";
23401
+ var title146 = "GetTransferTxInput";
23402
+ var description151 = "Input for getTransfer";
23403
+ var type128 = "object";
23404
+ var properties99 = {
23205
23405
  transfer: {
23206
23406
  $ref: "#/definitions/unique_transfer_filter"
23207
23407
  },
@@ -23209,7 +23409,7 @@ var properties93 = {
23209
23409
  $ref: "#/definitions/get_transfer_tx_options"
23210
23410
  }
23211
23411
  };
23212
- var definitions78 = {
23412
+ var definitions81 = {
23213
23413
  get_transfer_tx_options: {
23214
23414
  allOf: [
23215
23415
  {
@@ -23262,31 +23462,31 @@ var definitions78 = {
23262
23462
  }
23263
23463
  };
23264
23464
  var required62 = ["transfer"];
23265
- var additionalProperties93 = false;
23465
+ var additionalProperties99 = false;
23266
23466
  var get_transfer_schema_input_default2 = {
23267
- $schema: $schema145,
23268
- $id: $id145,
23269
- title: title140,
23270
- description: description145,
23271
- type: type122,
23272
- properties: properties93,
23273
- definitions: definitions78,
23467
+ $schema: $schema151,
23468
+ $id: $id151,
23469
+ title: title146,
23470
+ description: description151,
23471
+ type: type128,
23472
+ properties: properties99,
23473
+ definitions: definitions81,
23274
23474
  required: required62,
23275
- additionalProperties: additionalProperties93
23475
+ additionalProperties: additionalProperties99
23276
23476
  };
23277
23477
 
23278
23478
  // src/txs/get-transfer/get-transfer.schema.output.json
23279
- var $schema146 = "http://json-schema.org/draft-07/schema";
23280
- var $id146 = "GetTransferTxOutput";
23281
- var title141 = "GetTransferTxOutput";
23282
- var description146 = "Output of getTransfer";
23283
- var type123 = "object";
23284
- var properties94 = {
23479
+ var $schema152 = "http://json-schema.org/draft-07/schema";
23480
+ var $id152 = "GetTransferTxOutput";
23481
+ var title147 = "GetTransferTxOutput";
23482
+ var description152 = "Output of getTransfer";
23483
+ var type129 = "object";
23484
+ var properties100 = {
23285
23485
  transfer: {
23286
23486
  $ref: "#/definitions/transfer"
23287
23487
  }
23288
23488
  };
23289
- var definitions79 = {
23489
+ var definitions82 = {
23290
23490
  transfer: {
23291
23491
  type: "object",
23292
23492
  description: "requested transfer",
@@ -23501,25 +23701,25 @@ var definitions79 = {
23501
23701
  additionalProperties: false
23502
23702
  }
23503
23703
  };
23504
- var additionalProperties94 = false;
23704
+ var additionalProperties100 = false;
23505
23705
  var get_transfer_schema_output_default2 = {
23506
- $schema: $schema146,
23507
- $id: $id146,
23508
- title: title141,
23509
- description: description146,
23510
- type: type123,
23511
- properties: properties94,
23512
- definitions: definitions79,
23513
- additionalProperties: additionalProperties94
23706
+ $schema: $schema152,
23707
+ $id: $id152,
23708
+ title: title147,
23709
+ description: description152,
23710
+ type: type129,
23711
+ properties: properties100,
23712
+ definitions: definitions82,
23713
+ additionalProperties: additionalProperties100
23514
23714
  };
23515
23715
 
23516
23716
  // src/txs/get-transfer-group/get-transfer-group.schema.input.json
23517
- var $schema147 = "http://json-schema.org/draft-07/schema";
23518
- var $id147 = "GetTransferGroupTxInput";
23519
- var title142 = "GetTransferGroupTxInput";
23520
- var description147 = "Input for getTransferGroup";
23521
- var type124 = "object";
23522
- var properties95 = {
23717
+ var $schema153 = "http://json-schema.org/draft-07/schema";
23718
+ var $id153 = "GetTransferGroupTxInput";
23719
+ var title148 = "GetTransferGroupTxInput";
23720
+ var description153 = "Input for getTransferGroup";
23721
+ var type130 = "object";
23722
+ var properties101 = {
23523
23723
  transfer_group: {
23524
23724
  $ref: "#/definitions/unique_transfer_group_filter"
23525
23725
  },
@@ -23527,7 +23727,7 @@ var properties95 = {
23527
23727
  $ref: "#/definitions/get_transfer_group_tx_options"
23528
23728
  }
23529
23729
  };
23530
- var definitions80 = {
23730
+ var definitions83 = {
23531
23731
  get_transfer_group_tx_options: {
23532
23732
  allOf: [
23533
23733
  {
@@ -23601,31 +23801,31 @@ var definitions80 = {
23601
23801
  }
23602
23802
  };
23603
23803
  var required63 = ["transfer_group"];
23604
- var additionalProperties95 = false;
23804
+ var additionalProperties101 = false;
23605
23805
  var get_transfer_group_schema_input_default2 = {
23606
- $schema: $schema147,
23607
- $id: $id147,
23608
- title: title142,
23609
- description: description147,
23610
- type: type124,
23611
- properties: properties95,
23612
- definitions: definitions80,
23806
+ $schema: $schema153,
23807
+ $id: $id153,
23808
+ title: title148,
23809
+ description: description153,
23810
+ type: type130,
23811
+ properties: properties101,
23812
+ definitions: definitions83,
23613
23813
  required: required63,
23614
- additionalProperties: additionalProperties95
23814
+ additionalProperties: additionalProperties101
23615
23815
  };
23616
23816
 
23617
23817
  // src/txs/get-transfer-group/get-transfer-group.schema.output.json
23618
- var $schema148 = "http://json-schema.org/draft-07/schema";
23619
- var $id148 = "GetTransferGroupTxOutput";
23620
- var title143 = "GetTransferGroupTxOutput";
23621
- var description148 = "Output of getTransferGroup";
23622
- var type125 = "object";
23623
- var properties96 = {
23818
+ var $schema154 = "http://json-schema.org/draft-07/schema";
23819
+ var $id154 = "GetTransferGroupTxOutput";
23820
+ var title149 = "GetTransferGroupTxOutput";
23821
+ var description154 = "Output of getTransferGroup";
23822
+ var type131 = "object";
23823
+ var properties102 = {
23624
23824
  transfer_group: {
23625
23825
  $ref: "#/definitions/transfer_group"
23626
23826
  }
23627
23827
  };
23628
- var definitions81 = {
23828
+ var definitions84 = {
23629
23829
  transfer_group: {
23630
23830
  description: "requested transfer_group",
23631
23831
  properties: {
@@ -23674,25 +23874,25 @@ var definitions81 = {
23674
23874
  required: ["id"]
23675
23875
  }
23676
23876
  };
23677
- var additionalProperties96 = false;
23877
+ var additionalProperties102 = false;
23678
23878
  var get_transfer_group_schema_output_default2 = {
23679
- $schema: $schema148,
23680
- $id: $id148,
23681
- title: title143,
23682
- description: description148,
23683
- type: type125,
23684
- properties: properties96,
23685
- definitions: definitions81,
23686
- additionalProperties: additionalProperties96
23879
+ $schema: $schema154,
23880
+ $id: $id154,
23881
+ title: title149,
23882
+ description: description154,
23883
+ type: type131,
23884
+ properties: properties102,
23885
+ definitions: definitions84,
23886
+ additionalProperties: additionalProperties102
23687
23887
  };
23688
23888
 
23689
23889
  // src/txs/get-wallet/get-wallet.schema.input.json
23690
- var $schema149 = "http://json-schema.org/draft-07/schema";
23691
- var $id149 = "GetWalletTxInput";
23692
- var title144 = "GetWalletTxInput";
23693
- var description149 = "Input for getWallet";
23694
- var type126 = "object";
23695
- var properties97 = {
23890
+ var $schema155 = "http://json-schema.org/draft-07/schema";
23891
+ var $id155 = "GetWalletTxInput";
23892
+ var title150 = "GetWalletTxInput";
23893
+ var description155 = "Input for getWallet";
23894
+ var type132 = "object";
23895
+ var properties103 = {
23696
23896
  wallet: {
23697
23897
  $ref: "#/definitions/unique_wallet_filter"
23698
23898
  },
@@ -23700,7 +23900,7 @@ var properties97 = {
23700
23900
  $ref: "#/definitions/get_wallet_tx_options"
23701
23901
  }
23702
23902
  };
23703
- var definitions82 = {
23903
+ var definitions85 = {
23704
23904
  get_wallet_tx_options: {
23705
23905
  allOf: [
23706
23906
  {
@@ -23779,26 +23979,26 @@ var definitions82 = {
23779
23979
  }
23780
23980
  };
23781
23981
  var required64 = ["wallet"];
23782
- var additionalProperties97 = false;
23982
+ var additionalProperties103 = false;
23783
23983
  var get_wallet_schema_input_default2 = {
23784
- $schema: $schema149,
23785
- $id: $id149,
23786
- title: title144,
23787
- description: description149,
23788
- type: type126,
23789
- properties: properties97,
23790
- definitions: definitions82,
23984
+ $schema: $schema155,
23985
+ $id: $id155,
23986
+ title: title150,
23987
+ description: description155,
23988
+ type: type132,
23989
+ properties: properties103,
23990
+ definitions: definitions85,
23791
23991
  required: required64,
23792
- additionalProperties: additionalProperties97
23992
+ additionalProperties: additionalProperties103
23793
23993
  };
23794
23994
 
23795
23995
  // src/txs/get-wallet/get-wallet.schema.output.json
23796
- var $schema150 = "http://json-schema.org/draft-07/schema";
23797
- var $id150 = "GetWalletTxOutput";
23798
- var title145 = "GetWalletTxOutput";
23799
- var description150 = "Output of getWallet";
23800
- var type127 = "object";
23801
- var properties98 = {
23996
+ var $schema156 = "http://json-schema.org/draft-07/schema";
23997
+ var $id156 = "GetWalletTxOutput";
23998
+ var title151 = "GetWalletTxOutput";
23999
+ var description156 = "Output of getWallet";
24000
+ var type133 = "object";
24001
+ var properties104 = {
23802
24002
  wallet: {
23803
24003
  description: "requested wallet",
23804
24004
  anyOf: [
@@ -23811,24 +24011,24 @@ var properties98 = {
23811
24011
  ]
23812
24012
  }
23813
24013
  };
23814
- var additionalProperties98 = false;
24014
+ var additionalProperties104 = false;
23815
24015
  var get_wallet_schema_output_default2 = {
23816
- $schema: $schema150,
23817
- $id: $id150,
23818
- title: title145,
23819
- description: description150,
23820
- type: type127,
23821
- properties: properties98,
23822
- additionalProperties: additionalProperties98
24016
+ $schema: $schema156,
24017
+ $id: $id156,
24018
+ title: title151,
24019
+ description: description156,
24020
+ type: type133,
24021
+ properties: properties104,
24022
+ additionalProperties: additionalProperties104
23823
24023
  };
23824
24024
 
23825
24025
  // src/txs/get-wallet-many/get-wallet-many.schema.input.json
23826
- var $schema151 = "http://json-schema.org/draft-07/schema";
23827
- var $id151 = "GetWalletManyTxInput";
23828
- var title146 = "GetWalletManyTxInput";
23829
- var description151 = "Input for getWalletMany";
23830
- var type128 = "object";
23831
- var properties99 = {
24026
+ var $schema157 = "http://json-schema.org/draft-07/schema";
24027
+ var $id157 = "GetWalletManyTxInput";
24028
+ var title152 = "GetWalletManyTxInput";
24029
+ var description157 = "Input for getWalletMany";
24030
+ var type134 = "object";
24031
+ var properties105 = {
23832
24032
  wallets: {
23833
24033
  type: "array",
23834
24034
  items: {
@@ -23839,7 +24039,7 @@ var properties99 = {
23839
24039
  $ref: "#/definitions/get_wallet_many_tx_options"
23840
24040
  }
23841
24041
  };
23842
- var definitions83 = {
24042
+ var definitions86 = {
23843
24043
  get_wallet_many_tx_options: {
23844
24044
  allOf: [
23845
24045
  {
@@ -23873,25 +24073,25 @@ var definitions83 = {
23873
24073
  $typescript: '{"additionalProperties": false}'
23874
24074
  }
23875
24075
  };
23876
- var additionalProperties99 = false;
24076
+ var additionalProperties105 = false;
23877
24077
  var get_wallet_many_schema_input_default = {
23878
- $schema: $schema151,
23879
- $id: $id151,
23880
- title: title146,
23881
- description: description151,
23882
- type: type128,
23883
- properties: properties99,
23884
- definitions: definitions83,
23885
- additionalProperties: additionalProperties99
24078
+ $schema: $schema157,
24079
+ $id: $id157,
24080
+ title: title152,
24081
+ description: description157,
24082
+ type: type134,
24083
+ properties: properties105,
24084
+ definitions: definitions86,
24085
+ additionalProperties: additionalProperties105
23886
24086
  };
23887
24087
 
23888
24088
  // src/txs/get-wallet-many/get-wallet-many.schema.output.json
23889
- var $schema152 = "http://json-schema.org/draft-07/schema";
23890
- var $id152 = "GetWalletManyTxOutput";
23891
- var title147 = "GetWalletManyTxOutput";
23892
- var description152 = "Output of getWalletMany";
23893
- var type129 = "object";
23894
- var properties100 = {
24089
+ var $schema158 = "http://json-schema.org/draft-07/schema";
24090
+ var $id158 = "GetWalletManyTxOutput";
24091
+ var title153 = "GetWalletManyTxOutput";
24092
+ var description158 = "Output of getWalletMany";
24093
+ var type135 = "object";
24094
+ var properties106 = {
23895
24095
  wallets: {
23896
24096
  type: "array",
23897
24097
  items: {
@@ -23899,7 +24099,7 @@ var properties100 = {
23899
24099
  }
23900
24100
  }
23901
24101
  };
23902
- var definitions84 = {
24102
+ var definitions87 = {
23903
24103
  WalletResult: {
23904
24104
  anyOf: [
23905
24105
  {
@@ -23915,26 +24115,26 @@ var definitions84 = {
23915
24115
  }
23916
24116
  };
23917
24117
  var required65 = ["wallets"];
23918
- var additionalProperties100 = false;
24118
+ var additionalProperties106 = false;
23919
24119
  var get_wallet_many_schema_output_default = {
23920
- $schema: $schema152,
23921
- $id: $id152,
23922
- title: title147,
23923
- description: description152,
23924
- type: type129,
23925
- properties: properties100,
23926
- definitions: definitions84,
24120
+ $schema: $schema158,
24121
+ $id: $id158,
24122
+ title: title153,
24123
+ description: description158,
24124
+ type: type135,
24125
+ properties: properties106,
24126
+ definitions: definitions87,
23927
24127
  required: required65,
23928
- additionalProperties: additionalProperties100
24128
+ additionalProperties: additionalProperties106
23929
24129
  };
23930
24130
 
23931
24131
  // src/txs/import-actions/import-actions.schema.input.json
23932
- var $schema153 = "http://json-schema.org/draft-07/schema";
23933
- var $id153 = "ImportActionsTxInput";
23934
- var title148 = "ImportActionsTxInput";
23935
- var description153 = "Input for importActions";
23936
- var type130 = "object";
23937
- var properties101 = {
24132
+ var $schema159 = "http://json-schema.org/draft-07/schema";
24133
+ var $id159 = "ImportActionsTxInput";
24134
+ var title154 = "ImportActionsTxInput";
24135
+ var description159 = "Input for importActions";
24136
+ var type136 = "object";
24137
+ var properties107 = {
23938
24138
  actions: {
23939
24139
  type: "array",
23940
24140
  items: {
@@ -23946,7 +24146,7 @@ var properties101 = {
23946
24146
  }
23947
24147
  };
23948
24148
  var required66 = ["actions"];
23949
- var definitions85 = {
24149
+ var definitions88 = {
23950
24150
  import_actions_tx_options: {
23951
24151
  allOf: [
23952
24152
  {
@@ -24217,27 +24417,27 @@ var definitions85 = {
24217
24417
  }
24218
24418
  };
24219
24419
  var $allowStreamInput2 = "import_actions_tx_stream_chunk";
24220
- var additionalProperties101 = false;
24420
+ var additionalProperties107 = false;
24221
24421
  var import_actions_schema_input_default = {
24222
- $schema: $schema153,
24223
- $id: $id153,
24224
- title: title148,
24225
- description: description153,
24226
- type: type130,
24227
- properties: properties101,
24422
+ $schema: $schema159,
24423
+ $id: $id159,
24424
+ title: title154,
24425
+ description: description159,
24426
+ type: type136,
24427
+ properties: properties107,
24228
24428
  required: required66,
24229
- definitions: definitions85,
24429
+ definitions: definitions88,
24230
24430
  $allowStreamInput: $allowStreamInput2,
24231
- additionalProperties: additionalProperties101
24431
+ additionalProperties: additionalProperties107
24232
24432
  };
24233
24433
 
24234
24434
  // src/txs/import-actions/import-actions.schema.output.json
24235
- var $schema154 = "http://json-schema.org/draft-07/schema";
24236
- var $id154 = "ImportActionsTxOutput";
24237
- var title149 = "ImportActionsTxOutput";
24238
- var description154 = "Output of importActions";
24239
- var type131 = "object";
24240
- var properties102 = {
24435
+ var $schema160 = "http://json-schema.org/draft-07/schema";
24436
+ var $id160 = "ImportActionsTxOutput";
24437
+ var title155 = "ImportActionsTxOutput";
24438
+ var description160 = "Output of importActions";
24439
+ var type137 = "object";
24440
+ var properties108 = {
24241
24441
  progress: {
24242
24442
  type: "array"
24243
24443
  },
@@ -24245,24 +24445,115 @@ var properties102 = {
24245
24445
  type: "array"
24246
24446
  }
24247
24447
  };
24248
- var additionalProperties102 = false;
24448
+ var additionalProperties108 = false;
24249
24449
  var import_actions_schema_output_default = {
24250
- $schema: $schema154,
24251
- $id: $id154,
24252
- title: title149,
24253
- description: description154,
24254
- type: type131,
24255
- properties: properties102,
24256
- additionalProperties: additionalProperties102
24450
+ $schema: $schema160,
24451
+ $id: $id160,
24452
+ title: title155,
24453
+ description: description160,
24454
+ type: type137,
24455
+ properties: properties108,
24456
+ additionalProperties: additionalProperties108
24457
+ };
24458
+
24459
+ // src/txs/import-database/import-database.schema.input.json
24460
+ var $schema161 = "http://json-schema.org/draft-07/schema";
24461
+ var $id161 = "ImportDatabaseTxInput";
24462
+ var title156 = "ImportDatabaseTxInput";
24463
+ var description161 = "Input for importDatabase";
24464
+ var type138 = "object";
24465
+ var properties109 = {
24466
+ name: {
24467
+ type: "string"
24468
+ }
24469
+ };
24470
+ var definitions89 = {};
24471
+ var additionalProperties109 = false;
24472
+ var import_database_schema_input_default = {
24473
+ $schema: $schema161,
24474
+ $id: $id161,
24475
+ title: title156,
24476
+ description: description161,
24477
+ type: type138,
24478
+ properties: properties109,
24479
+ definitions: definitions89,
24480
+ additionalProperties: additionalProperties109
24481
+ };
24482
+
24483
+ // src/txs/import-database/import-database.schema.output.json
24484
+ var $schema162 = "http://json-schema.org/draft-07/schema";
24485
+ var $id162 = "ImportDatabaseTxOutput";
24486
+ var title157 = "ImportDatabaseTxOutput";
24487
+ var description162 = "Output of importDatabase";
24488
+ var type139 = "object";
24489
+ var properties110 = {
24490
+ message: {
24491
+ type: "string"
24492
+ }
24493
+ };
24494
+ var additionalProperties110 = false;
24495
+ var import_database_schema_output_default = {
24496
+ $schema: $schema162,
24497
+ $id: $id162,
24498
+ title: title157,
24499
+ description: description162,
24500
+ type: type139,
24501
+ properties: properties110,
24502
+ additionalProperties: additionalProperties110
24503
+ };
24504
+
24505
+ // src/txs/list-database-backups/list-database-backups.schema.input.json
24506
+ var $schema163 = "http://json-schema.org/draft-07/schema";
24507
+ var $id163 = "ListDatabaseBackupsTxInput";
24508
+ var title158 = "ListDatabaseBackupsTxInput";
24509
+ var description163 = "Input for listDatabaseBackups";
24510
+ var type140 = "object";
24511
+ var properties111 = {};
24512
+ var definitions90 = {};
24513
+ var additionalProperties111 = false;
24514
+ var list_database_backups_schema_input_default = {
24515
+ $schema: $schema163,
24516
+ $id: $id163,
24517
+ title: title158,
24518
+ description: description163,
24519
+ type: type140,
24520
+ properties: properties111,
24521
+ definitions: definitions90,
24522
+ additionalProperties: additionalProperties111
24523
+ };
24524
+
24525
+ // src/txs/list-database-backups/list-database-backups.schema.output.json
24526
+ var $schema164 = "http://json-schema.org/draft-07/schema";
24527
+ var $id164 = "ListDatabaseBackupsTxOutput";
24528
+ var title159 = "ListDatabaseBackupsTxOutput";
24529
+ var description164 = "Output of listDatabaseBackups";
24530
+ var type141 = "object";
24531
+ var properties112 = {
24532
+ backups: {
24533
+ type: "array",
24534
+ items: {
24535
+ type: "string"
24536
+ }
24537
+ }
24538
+ };
24539
+ var additionalProperties112 = false;
24540
+ var list_database_backups_schema_output_default = {
24541
+ $schema: $schema164,
24542
+ $id: $id164,
24543
+ title: title159,
24544
+ description: description164,
24545
+ type: type141,
24546
+ properties: properties112,
24547
+ additionalProperties: additionalProperties112
24257
24548
  };
24258
24549
 
24259
24550
  // src/txs/query/query.schema.input.json
24260
- var $schema155 = "http://json-schema.org/draft-07/schema";
24261
- var $id155 = "QueryTxInput";
24262
- var title150 = "QueryTxInput";
24263
- var description155 = "Input for query";
24264
- var type132 = "object";
24265
- var properties103 = {
24551
+ var $schema165 = "http://json-schema.org/draft-07/schema";
24552
+ var $id165 = "QueryTxInput";
24553
+ var title160 = "QueryTxInput";
24554
+ var description165 = "Input for query";
24555
+ var type142 = "object";
24556
+ var properties113 = {
24266
24557
  query: {
24267
24558
  description: "SELECT query",
24268
24559
  type: "string"
@@ -24275,7 +24566,7 @@ var properties103 = {
24275
24566
  $ref: "#/definitions/query_tx_options"
24276
24567
  }
24277
24568
  };
24278
- var definitions86 = {
24569
+ var definitions91 = {
24279
24570
  query_tx_options: {
24280
24571
  allOf: [
24281
24572
  {
@@ -24285,51 +24576,51 @@ var definitions86 = {
24285
24576
  }
24286
24577
  };
24287
24578
  var required67 = ["query", "params"];
24288
- var additionalProperties103 = false;
24579
+ var additionalProperties113 = false;
24289
24580
  var query_schema_input_default = {
24290
- $schema: $schema155,
24291
- $id: $id155,
24292
- title: title150,
24293
- description: description155,
24294
- type: type132,
24295
- properties: properties103,
24296
- definitions: definitions86,
24581
+ $schema: $schema165,
24582
+ $id: $id165,
24583
+ title: title160,
24584
+ description: description165,
24585
+ type: type142,
24586
+ properties: properties113,
24587
+ definitions: definitions91,
24297
24588
  required: required67,
24298
- additionalProperties: additionalProperties103
24589
+ additionalProperties: additionalProperties113
24299
24590
  };
24300
24591
 
24301
24592
  // src/txs/query/query.schema.output.json
24302
- var $schema156 = "http://json-schema.org/draft-07/schema";
24303
- var $id156 = "QueryTxOutput";
24304
- var title151 = "QueryTxOutput";
24305
- var description156 = "Output of query";
24306
- var type133 = "object";
24307
- var properties104 = {
24593
+ var $schema166 = "http://json-schema.org/draft-07/schema";
24594
+ var $id166 = "QueryTxOutput";
24595
+ var title161 = "QueryTxOutput";
24596
+ var description166 = "Output of query";
24597
+ var type143 = "object";
24598
+ var properties114 = {
24308
24599
  results: {
24309
24600
  description: "The query results",
24310
24601
  type: "array"
24311
24602
  }
24312
24603
  };
24313
24604
  var required68 = ["results"];
24314
- var additionalProperties104 = false;
24605
+ var additionalProperties114 = false;
24315
24606
  var query_schema_output_default = {
24316
- $schema: $schema156,
24317
- $id: $id156,
24318
- title: title151,
24319
- description: description156,
24320
- type: type133,
24321
- properties: properties104,
24607
+ $schema: $schema166,
24608
+ $id: $id166,
24609
+ title: title161,
24610
+ description: description166,
24611
+ type: type143,
24612
+ properties: properties114,
24322
24613
  required: required68,
24323
- additionalProperties: additionalProperties104
24614
+ additionalProperties: additionalProperties114
24324
24615
  };
24325
24616
 
24326
24617
  // src/txs/query-logs/query-logs.schema.input.json
24327
- var $schema157 = "http://json-schema.org/draft-07/schema";
24328
- var $id157 = "QueryLogsTxInput";
24329
- var title152 = "QueryLogsTxInput";
24330
- var description157 = "Input for queryLogs";
24331
- var type134 = "object";
24332
- var properties105 = {
24618
+ var $schema167 = "http://json-schema.org/draft-07/schema";
24619
+ var $id167 = "QueryLogsTxInput";
24620
+ var title162 = "QueryLogsTxInput";
24621
+ var description167 = "Input for queryLogs";
24622
+ var type144 = "object";
24623
+ var properties115 = {
24333
24624
  startTime: {
24334
24625
  description: "Log entries start time",
24335
24626
  type: "string"
@@ -24349,7 +24640,7 @@ var properties105 = {
24349
24640
  $ref: "#/definitions/query_logs_tx_options"
24350
24641
  }
24351
24642
  };
24352
- var definitions87 = {
24643
+ var definitions92 = {
24353
24644
  query_logs_tx_options: {
24354
24645
  allOf: [
24355
24646
  {
@@ -24375,31 +24666,31 @@ var definitions87 = {
24375
24666
  $typescript: '{"additionalProperties":false}'
24376
24667
  }
24377
24668
  };
24378
- var additionalProperties105 = false;
24669
+ var additionalProperties115 = false;
24379
24670
  var query_logs_schema_input_default = {
24380
- $schema: $schema157,
24381
- $id: $id157,
24382
- title: title152,
24383
- description: description157,
24384
- type: type134,
24385
- properties: properties105,
24386
- definitions: definitions87,
24387
- additionalProperties: additionalProperties105
24671
+ $schema: $schema167,
24672
+ $id: $id167,
24673
+ title: title162,
24674
+ description: description167,
24675
+ type: type144,
24676
+ properties: properties115,
24677
+ definitions: definitions92,
24678
+ additionalProperties: additionalProperties115
24388
24679
  };
24389
24680
 
24390
24681
  // src/txs/query-logs/query-logs.schema.output.json
24391
- var $schema158 = "http://json-schema.org/draft-07/schema";
24392
- var $id158 = "QueryLogsTxOutput";
24393
- var title153 = "QueryLogsTxOutput";
24394
- var description158 = "Output of queryLogs";
24395
- var type135 = "object";
24396
- var properties106 = {
24682
+ var $schema168 = "http://json-schema.org/draft-07/schema";
24683
+ var $id168 = "QueryLogsTxOutput";
24684
+ var title163 = "QueryLogsTxOutput";
24685
+ var description168 = "Output of queryLogs";
24686
+ var type145 = "object";
24687
+ var properties116 = {
24397
24688
  logs: {
24398
24689
  type: "array",
24399
24690
  items: { $ref: "#/definitions/query_log_entry" }
24400
24691
  }
24401
24692
  };
24402
- var definitions88 = {
24693
+ var definitions93 = {
24403
24694
  query_log_entry: {
24404
24695
  type: "object",
24405
24696
  properties: {
@@ -24418,29 +24709,29 @@ var definitions88 = {
24418
24709
  }
24419
24710
  },
24420
24711
  additionalProperties: false
24421
- }
24422
- };
24423
- var required69 = ["logs"];
24424
- var additionalProperties106 = false;
24425
- var query_logs_schema_output_default = {
24426
- $schema: $schema158,
24427
- $id: $id158,
24428
- title: title153,
24429
- description: description158,
24430
- type: type135,
24431
- properties: properties106,
24432
- definitions: definitions88,
24712
+ }
24713
+ };
24714
+ var required69 = ["logs"];
24715
+ var additionalProperties116 = false;
24716
+ var query_logs_schema_output_default = {
24717
+ $schema: $schema168,
24718
+ $id: $id168,
24719
+ title: title163,
24720
+ description: description168,
24721
+ type: type145,
24722
+ properties: properties116,
24723
+ definitions: definitions93,
24433
24724
  required: required69,
24434
- additionalProperties: additionalProperties106
24725
+ additionalProperties: additionalProperties116
24435
24726
  };
24436
24727
 
24437
24728
  // src/txs/reset-database/reset-database.schema.input.json
24438
- var $schema159 = "http://json-schema.org/draft-07/schema";
24439
- var $id159 = "ResetDatabaseTxInput";
24440
- var title154 = "ResetDatabaseTxInput";
24441
- var description159 = "Input for resetDatabase";
24442
- var type136 = "object";
24443
- var properties107 = {
24729
+ var $schema169 = "http://json-schema.org/draft-07/schema";
24730
+ var $id169 = "ResetDatabaseTxInput";
24731
+ var title164 = "ResetDatabaseTxInput";
24732
+ var description169 = "Input for resetDatabase";
24733
+ var type146 = "object";
24734
+ var properties117 = {
24444
24735
  confirmation: {
24445
24736
  description: "hash to confirm database delete",
24446
24737
  type: "string"
@@ -24453,7 +24744,7 @@ var properties107 = {
24453
24744
  $ref: "#/definitions/reset_database_tx_options"
24454
24745
  }
24455
24746
  };
24456
- var definitions89 = {
24747
+ var definitions94 = {
24457
24748
  reset_database_tx_options: {
24458
24749
  allOf: [
24459
24750
  {
@@ -24462,25 +24753,25 @@ var definitions89 = {
24462
24753
  ]
24463
24754
  }
24464
24755
  };
24465
- var additionalProperties107 = false;
24756
+ var additionalProperties117 = false;
24466
24757
  var reset_database_schema_input_default = {
24467
- $schema: $schema159,
24468
- $id: $id159,
24469
- title: title154,
24470
- description: description159,
24471
- type: type136,
24472
- properties: properties107,
24473
- definitions: definitions89,
24474
- additionalProperties: additionalProperties107
24758
+ $schema: $schema169,
24759
+ $id: $id169,
24760
+ title: title164,
24761
+ description: description169,
24762
+ type: type146,
24763
+ properties: properties117,
24764
+ definitions: definitions94,
24765
+ additionalProperties: additionalProperties117
24475
24766
  };
24476
24767
 
24477
24768
  // src/txs/reset-database/reset-database.schema.output.json
24478
- var $schema160 = "http://json-schema.org/draft-07/schema";
24479
- var $id160 = "ResetDatabaseTxOutput";
24480
- var title155 = "ResetDatabaseTxOutput";
24481
- var description160 = "Output of resetDatabase";
24482
- var type137 = "object";
24483
- var properties108 = {
24769
+ var $schema170 = "http://json-schema.org/draft-07/schema";
24770
+ var $id170 = "ResetDatabaseTxOutput";
24771
+ var title165 = "ResetDatabaseTxOutput";
24772
+ var description170 = "Output of resetDatabase";
24773
+ var type147 = "object";
24774
+ var properties118 = {
24484
24775
  message: {
24485
24776
  description: "Message about operation",
24486
24777
  type: "string"
@@ -24490,24 +24781,24 @@ var properties108 = {
24490
24781
  type: "string"
24491
24782
  }
24492
24783
  };
24493
- var additionalProperties108 = false;
24784
+ var additionalProperties118 = false;
24494
24785
  var reset_database_schema_output_default = {
24495
- $schema: $schema160,
24496
- $id: $id160,
24497
- title: title155,
24498
- description: description160,
24499
- type: type137,
24500
- properties: properties108,
24501
- additionalProperties: additionalProperties108
24786
+ $schema: $schema170,
24787
+ $id: $id170,
24788
+ title: title165,
24789
+ description: description170,
24790
+ type: type147,
24791
+ properties: properties118,
24792
+ additionalProperties: additionalProperties118
24502
24793
  };
24503
24794
 
24504
24795
  // src/txs/reverse-transfer/reverse-transfer.schema.input.json
24505
- var $schema161 = "http://json-schema.org/draft-07/schema";
24506
- var $id161 = "ReverseTransferTxInput";
24507
- var title156 = "ReverseTransferTxInput";
24508
- var description161 = "Input for reverseTransfer";
24509
- var type138 = "object";
24510
- var properties109 = {
24796
+ var $schema171 = "http://json-schema.org/draft-07/schema";
24797
+ var $id171 = "ReverseTransferTxInput";
24798
+ var title166 = "ReverseTransferTxInput";
24799
+ var description171 = "Input for reverseTransfer";
24800
+ var type148 = "object";
24801
+ var properties119 = {
24511
24802
  transfer: {
24512
24803
  $ref: "/txs/get-transfer/get-transfer.schema.input.json#/definitions/unique_transfer_filter"
24513
24804
  },
@@ -24518,7 +24809,7 @@ var properties109 = {
24518
24809
  $ref: "#/definitions/reverse_transfer_tx_options"
24519
24810
  }
24520
24811
  };
24521
- var definitions90 = {
24812
+ var definitions95 = {
24522
24813
  reverse_transfer_tx_options: {
24523
24814
  allOf: [
24524
24815
  {
@@ -24589,42 +24880,42 @@ var definitions90 = {
24589
24880
  }
24590
24881
  };
24591
24882
  var required70 = ["transfer"];
24592
- var additionalProperties109 = false;
24883
+ var additionalProperties119 = false;
24593
24884
  var reverse_transfer_schema_input_default2 = {
24594
- $schema: $schema161,
24595
- $id: $id161,
24596
- title: title156,
24597
- description: description161,
24598
- type: type138,
24599
- properties: properties109,
24600
- definitions: definitions90,
24885
+ $schema: $schema171,
24886
+ $id: $id171,
24887
+ title: title166,
24888
+ description: description171,
24889
+ type: type148,
24890
+ properties: properties119,
24891
+ definitions: definitions95,
24601
24892
  required: required70,
24602
- additionalProperties: additionalProperties109
24893
+ additionalProperties: additionalProperties119
24603
24894
  };
24604
24895
 
24605
24896
  // src/txs/reverse-transfer/reverse-transfer.schema.output.json
24606
- var $schema162 = "http://json-schema.org/draft-07/schema";
24607
- var $id162 = "ReverseTransferTxOutput";
24608
- var title157 = "ReverseTransferTxOutput";
24609
- var description162 = "Output of reverseTransfer";
24897
+ var $schema172 = "http://json-schema.org/draft-07/schema";
24898
+ var $id172 = "ReverseTransferTxOutput";
24899
+ var title167 = "ReverseTransferTxOutput";
24900
+ var description172 = "Output of reverseTransfer";
24610
24901
  var allOf13 = [
24611
24902
  { $ref: "/txs/update-transfer/update-transfer.schema.output.json" }
24612
24903
  ];
24613
24904
  var reverse_transfer_schema_output_default2 = {
24614
- $schema: $schema162,
24615
- $id: $id162,
24616
- title: title157,
24617
- description: description162,
24905
+ $schema: $schema172,
24906
+ $id: $id172,
24907
+ title: title167,
24908
+ description: description172,
24618
24909
  allOf: allOf13
24619
24910
  };
24620
24911
 
24621
24912
  // src/txs/reverse-transfer-group/reverse-transfer-group.schema.input.json
24622
- var $schema163 = "http://json-schema.org/draft-07/schema";
24623
- var $id163 = "ReverseTransferGroupTxInput";
24624
- var title158 = "ReverseTransferGroupTxInput";
24625
- var description163 = "Input for reverseTransferGroup";
24626
- var type139 = "object";
24627
- var properties110 = {
24913
+ var $schema173 = "http://json-schema.org/draft-07/schema";
24914
+ var $id173 = "ReverseTransferGroupTxInput";
24915
+ var title168 = "ReverseTransferGroupTxInput";
24916
+ var description173 = "Input for reverseTransferGroup";
24917
+ var type149 = "object";
24918
+ var properties120 = {
24628
24919
  transfer_group: {
24629
24920
  $ref: "/txs/get-transfer-group/get-transfer-group.schema.input.json#/definitions/unique_transfer_group_filter"
24630
24921
  },
@@ -24635,7 +24926,7 @@ var properties110 = {
24635
24926
  $ref: "#/definitions/reverse_transfer_group_tx_options"
24636
24927
  }
24637
24928
  };
24638
- var definitions91 = {
24929
+ var definitions96 = {
24639
24930
  reverse_transfer_group_tx_options: {
24640
24931
  allOf: [
24641
24932
  {
@@ -24718,25 +25009,25 @@ var definitions91 = {
24718
25009
  additionalProperties: false
24719
25010
  }
24720
25011
  };
24721
- var additionalProperties110 = false;
25012
+ var additionalProperties120 = false;
24722
25013
  var reverse_transfer_group_schema_input_default2 = {
24723
- $schema: $schema163,
24724
- $id: $id163,
24725
- title: title158,
24726
- description: description163,
24727
- type: type139,
24728
- properties: properties110,
24729
- definitions: definitions91,
24730
- additionalProperties: additionalProperties110
25014
+ $schema: $schema173,
25015
+ $id: $id173,
25016
+ title: title168,
25017
+ description: description173,
25018
+ type: type149,
25019
+ properties: properties120,
25020
+ definitions: definitions96,
25021
+ additionalProperties: additionalProperties120
24731
25022
  };
24732
25023
 
24733
25024
  // src/txs/reverse-transfer-group/reverse-transfer-group.schema.output.json
24734
- var $schema164 = "http://json-schema.org/draft-07/schema";
24735
- var $id164 = "ReverseTransferGroupTxOutput";
24736
- var title159 = "ReverseTransferGroupTxOutput";
24737
- var description164 = "Output of reverseTransferGroup";
24738
- var type140 = "object";
24739
- var properties111 = {
25025
+ var $schema174 = "http://json-schema.org/draft-07/schema";
25026
+ var $id174 = "ReverseTransferGroupTxOutput";
25027
+ var title169 = "ReverseTransferGroupTxOutput";
25028
+ var description174 = "Output of reverseTransferGroup";
25029
+ var type150 = "object";
25030
+ var properties121 = {
24740
25031
  transfer_group: {
24741
25032
  $ref: "/db/transfer-group/transfer-group.schema.json"
24742
25033
  },
@@ -24748,24 +25039,24 @@ var properties111 = {
24748
25039
  }
24749
25040
  }
24750
25041
  };
24751
- var additionalProperties111 = false;
25042
+ var additionalProperties121 = false;
24752
25043
  var reverse_transfer_group_schema_output_default2 = {
24753
- $schema: $schema164,
24754
- $id: $id164,
24755
- title: title159,
24756
- description: description164,
24757
- type: type140,
24758
- properties: properties111,
24759
- additionalProperties: additionalProperties111
25044
+ $schema: $schema174,
25045
+ $id: $id174,
25046
+ title: title169,
25047
+ description: description174,
25048
+ type: type150,
25049
+ properties: properties121,
25050
+ additionalProperties: additionalProperties121
24760
25051
  };
24761
25052
 
24762
25053
  // src/txs/reverse-transfer-group-many/reverse-transfer-group-many.schema.input.json
24763
- var $schema165 = "http://json-schema.org/draft-07/schema";
24764
- var $id165 = "ReverseTransferGroupManyTxInput";
24765
- var title160 = "ReverseTransferGroupManyTxInput";
24766
- var description165 = "Input for reverseTransferGroupMany";
24767
- var type141 = "object";
24768
- var properties112 = {
25054
+ var $schema175 = "http://json-schema.org/draft-07/schema";
25055
+ var $id175 = "ReverseTransferGroupManyTxInput";
25056
+ var title170 = "ReverseTransferGroupManyTxInput";
25057
+ var description175 = "Input for reverseTransferGroupMany";
25058
+ var type151 = "object";
25059
+ var properties122 = {
24769
25060
  transfer_group: {
24770
25061
  $ref: "/txs/find-transfer-group-many/find-transfer-group-many.schema.input.json#/definitions/find_transfer_group_many_filter"
24771
25062
  },
@@ -24776,7 +25067,7 @@ var properties112 = {
24776
25067
  $ref: "#/definitions/reverse_transfer_group_many_tx_options"
24777
25068
  }
24778
25069
  };
24779
- var definitions92 = {
25070
+ var definitions97 = {
24780
25071
  reverse_transfer_group_many_modifications: {
24781
25072
  description: "In case the transferGroup will be made then apply these modifications",
24782
25073
  type: "object",
@@ -24826,26 +25117,26 @@ var definitions92 = {
24826
25117
  }
24827
25118
  };
24828
25119
  var required71 = ["transfer_group"];
24829
- var additionalProperties112 = false;
25120
+ var additionalProperties122 = false;
24830
25121
  var reverse_transfer_group_many_schema_input_default = {
24831
- $schema: $schema165,
24832
- $id: $id165,
24833
- title: title160,
24834
- description: description165,
24835
- type: type141,
24836
- properties: properties112,
24837
- definitions: definitions92,
25122
+ $schema: $schema175,
25123
+ $id: $id175,
25124
+ title: title170,
25125
+ description: description175,
25126
+ type: type151,
25127
+ properties: properties122,
25128
+ definitions: definitions97,
24838
25129
  required: required71,
24839
- additionalProperties: additionalProperties112
25130
+ additionalProperties: additionalProperties122
24840
25131
  };
24841
25132
 
24842
25133
  // src/txs/reverse-transfer-group-many/reverse-transfer-group-many.schema.output.json
24843
- var $schema166 = "http://json-schema.org/draft-07/schema";
24844
- var $id166 = "ReverseTransferGroupManyTxOutput";
24845
- var title161 = "ReverseTransferGroupManyTxOutput";
24846
- var description166 = "Output of reverseTransferGroupMany";
24847
- var type142 = "object";
24848
- var properties113 = {
25134
+ var $schema176 = "http://json-schema.org/draft-07/schema";
25135
+ var $id176 = "ReverseTransferGroupManyTxOutput";
25136
+ var title171 = "ReverseTransferGroupManyTxOutput";
25137
+ var description176 = "Output of reverseTransferGroupMany";
25138
+ var type152 = "object";
25139
+ var properties123 = {
24849
25140
  transfer_groups: {
24850
25141
  description: "Reversed transfer groups",
24851
25142
  type: "array",
@@ -24859,24 +25150,24 @@ var properties113 = {
24859
25150
  }
24860
25151
  }
24861
25152
  };
24862
- var additionalProperties113 = false;
25153
+ var additionalProperties123 = false;
24863
25154
  var reverse_transfer_group_many_schema_output_default = {
24864
- $schema: $schema166,
24865
- $id: $id166,
24866
- title: title161,
24867
- description: description166,
24868
- type: type142,
24869
- properties: properties113,
24870
- additionalProperties: additionalProperties113
25155
+ $schema: $schema176,
25156
+ $id: $id176,
25157
+ title: title171,
25158
+ description: description176,
25159
+ type: type152,
25160
+ properties: properties123,
25161
+ additionalProperties: additionalProperties123
24871
25162
  };
24872
25163
 
24873
25164
  // src/txs/reverse-transfer-many/reverse-transfer-many.schema.input.json
24874
- var $schema167 = "http://json-schema.org/draft-07/schema";
24875
- var $id167 = "ReverseTransferManyTxInput";
24876
- var title162 = "ReverseTransferManyTxInput";
24877
- var description167 = "Input for reverseTransferMany";
24878
- var type143 = "object";
24879
- var properties114 = {
25165
+ var $schema177 = "http://json-schema.org/draft-07/schema";
25166
+ var $id177 = "ReverseTransferManyTxInput";
25167
+ var title172 = "ReverseTransferManyTxInput";
25168
+ var description177 = "Input for reverseTransferMany";
25169
+ var type153 = "object";
25170
+ var properties124 = {
24880
25171
  transfer: {
24881
25172
  $ref: "/txs/find-transfer-many/find-transfer-many.schema.input.json#/definitions/find_transfer_many_filter"
24882
25173
  },
@@ -24887,7 +25178,7 @@ var properties114 = {
24887
25178
  $ref: "#/definitions/reverse_transfer_many_tx_options"
24888
25179
  }
24889
25180
  };
24890
- var definitions93 = {
25181
+ var definitions98 = {
24891
25182
  reverse_transfer_many_tx_options: {
24892
25183
  allOf: [
24893
25184
  {
@@ -24941,25 +25232,25 @@ var definitions93 = {
24941
25232
  }
24942
25233
  };
24943
25234
  var required72 = ["transfer"];
24944
- var additionalProperties114 = false;
25235
+ var additionalProperties124 = false;
24945
25236
  var reverse_transfer_many_schema_input_default = {
24946
- $schema: $schema167,
24947
- $id: $id167,
24948
- title: title162,
24949
- description: description167,
24950
- type: type143,
24951
- properties: properties114,
24952
- definitions: definitions93,
25237
+ $schema: $schema177,
25238
+ $id: $id177,
25239
+ title: title172,
25240
+ description: description177,
25241
+ type: type153,
25242
+ properties: properties124,
25243
+ definitions: definitions98,
24953
25244
  required: required72,
24954
- additionalProperties: additionalProperties114
25245
+ additionalProperties: additionalProperties124
24955
25246
  };
24956
25247
 
24957
25248
  // src/txs/reverse-transfer-many/reverse-transfer-many.schema.output.json
24958
- var $schema168 = "http://json-schema.org/draft-07/schema";
24959
- var $id168 = "ReverseTransferManyTxOutput";
24960
- var title163 = "ReverseTransferManyTxOutput";
24961
- var description168 = "Output of reverseTransferMany";
24962
- var properties115 = {
25249
+ var $schema178 = "http://json-schema.org/draft-07/schema";
25250
+ var $id178 = "ReverseTransferManyTxOutput";
25251
+ var title173 = "ReverseTransferManyTxOutput";
25252
+ var description178 = "Output of reverseTransferMany";
25253
+ var properties125 = {
24963
25254
  transfers: {
24964
25255
  description: "Created transfer array",
24965
25256
  type: "array",
@@ -24968,23 +25259,23 @@ var properties115 = {
24968
25259
  }
24969
25260
  }
24970
25261
  };
24971
- var additionalProperties115 = false;
25262
+ var additionalProperties125 = false;
24972
25263
  var reverse_transfer_many_schema_output_default = {
24973
- $schema: $schema168,
24974
- $id: $id168,
24975
- title: title163,
24976
- description: description168,
24977
- properties: properties115,
24978
- additionalProperties: additionalProperties115
25264
+ $schema: $schema178,
25265
+ $id: $id178,
25266
+ title: title173,
25267
+ description: description178,
25268
+ properties: properties125,
25269
+ additionalProperties: additionalProperties125
24979
25270
  };
24980
25271
 
24981
25272
  // src/txs/set-flags/set-flags.schema.input.json
24982
- var $schema169 = "http://json-schema.org/draft-07/schema";
24983
- var $id169 = "SetFlagsTxInput";
24984
- var title164 = "SetFlagsTxInput";
24985
- var description169 = "Input for setFlags";
24986
- var type144 = "object";
24987
- var properties116 = {
25273
+ var $schema179 = "http://json-schema.org/draft-07/schema";
25274
+ var $id179 = "SetFlagsTxInput";
25275
+ var title174 = "SetFlagsTxInput";
25276
+ var description179 = "Input for setFlags";
25277
+ var type154 = "object";
25278
+ var properties126 = {
24988
25279
  flags: {
24989
25280
  $ref: "/db/consts.schema.json#/definitions/Flags"
24990
25281
  },
@@ -24992,7 +25283,7 @@ var properties116 = {
24992
25283
  $ref: "#/definitions/set_flags_tx_options"
24993
25284
  }
24994
25285
  };
24995
- var definitions94 = {
25286
+ var definitions99 = {
24996
25287
  set_flags_tx_options: {
24997
25288
  allOf: [
24998
25289
  {
@@ -25002,26 +25293,26 @@ var definitions94 = {
25002
25293
  }
25003
25294
  };
25004
25295
  var required73 = ["flags"];
25005
- var additionalProperties116 = false;
25296
+ var additionalProperties126 = false;
25006
25297
  var set_flags_schema_input_default2 = {
25007
- $schema: $schema169,
25008
- $id: $id169,
25009
- title: title164,
25010
- description: description169,
25011
- type: type144,
25012
- properties: properties116,
25013
- definitions: definitions94,
25298
+ $schema: $schema179,
25299
+ $id: $id179,
25300
+ title: title174,
25301
+ description: description179,
25302
+ type: type154,
25303
+ properties: properties126,
25304
+ definitions: definitions99,
25014
25305
  required: required73,
25015
- additionalProperties: additionalProperties116
25306
+ additionalProperties: additionalProperties126
25016
25307
  };
25017
25308
 
25018
25309
  // src/txs/set-flags/set-flags.schema.output.json
25019
- var $schema170 = "http://json-schema.org/draft-07/schema";
25020
- var $id170 = "SetFlagsTxOutput";
25021
- var title165 = "SetFlagsTxOutput";
25022
- var description170 = "Output of setFlags";
25023
- var type145 = "object";
25024
- var properties117 = {
25310
+ var $schema180 = "http://json-schema.org/draft-07/schema";
25311
+ var $id180 = "SetFlagsTxOutput";
25312
+ var title175 = "SetFlagsTxOutput";
25313
+ var description180 = "Output of setFlags";
25314
+ var type155 = "object";
25315
+ var properties127 = {
25025
25316
  flags: {
25026
25317
  $ref: "/db/consts.schema.json#/definitions/Flags"
25027
25318
  },
@@ -25031,30 +25322,30 @@ var properties117 = {
25031
25322
  }
25032
25323
  };
25033
25324
  var required74 = ["flags"];
25034
- var additionalProperties117 = false;
25325
+ var additionalProperties127 = false;
25035
25326
  var set_flags_schema_output_default2 = {
25036
- $schema: $schema170,
25037
- $id: $id170,
25038
- title: title165,
25039
- description: description170,
25040
- type: type145,
25041
- properties: properties117,
25327
+ $schema: $schema180,
25328
+ $id: $id180,
25329
+ title: title175,
25330
+ description: description180,
25331
+ type: type155,
25332
+ properties: properties127,
25042
25333
  required: required74,
25043
- additionalProperties: additionalProperties117
25334
+ additionalProperties: additionalProperties127
25044
25335
  };
25045
25336
 
25046
25337
  // src/txs/start-transaction/start-transaction.schema.input.json
25047
- var $schema171 = "http://json-schema.org/draft-07/schema";
25048
- var $id171 = "StartTransactionTxInput";
25049
- var title166 = "StartTransactionTxInput";
25050
- var description171 = "Input for startTransaction";
25051
- var type146 = "object";
25052
- var properties118 = {
25338
+ var $schema181 = "http://json-schema.org/draft-07/schema";
25339
+ var $id181 = "StartTransactionTxInput";
25340
+ var title176 = "StartTransactionTxInput";
25341
+ var description181 = "Input for startTransaction";
25342
+ var type156 = "object";
25343
+ var properties128 = {
25053
25344
  options: {
25054
25345
  $ref: "#/definitions/start_transaction_tx_options"
25055
25346
  }
25056
25347
  };
25057
- var definitions95 = {
25348
+ var definitions100 = {
25058
25349
  start_transaction_tx_options: {
25059
25350
  allOf: [
25060
25351
  {
@@ -25063,45 +25354,45 @@ var definitions95 = {
25063
25354
  ]
25064
25355
  }
25065
25356
  };
25066
- var additionalProperties118 = false;
25357
+ var additionalProperties128 = false;
25067
25358
  var start_transaction_schema_input_default = {
25068
- $schema: $schema171,
25069
- $id: $id171,
25070
- title: title166,
25071
- description: description171,
25072
- type: type146,
25073
- properties: properties118,
25074
- definitions: definitions95,
25075
- additionalProperties: additionalProperties118
25359
+ $schema: $schema181,
25360
+ $id: $id181,
25361
+ title: title176,
25362
+ description: description181,
25363
+ type: type156,
25364
+ properties: properties128,
25365
+ definitions: definitions100,
25366
+ additionalProperties: additionalProperties128
25076
25367
  };
25077
25368
 
25078
25369
  // src/txs/start-transaction/start-transaction.schema.output.json
25079
- var $schema172 = "http://json-schema.org/draft-07/schema";
25080
- var $id172 = "StartTransactionTxOutput";
25081
- var title167 = "StartTransactionTxOutput";
25082
- var description172 = "Output of startTransaction";
25083
- var type147 = "object";
25084
- var properties119 = {
25370
+ var $schema182 = "http://json-schema.org/draft-07/schema";
25371
+ var $id182 = "StartTransactionTxOutput";
25372
+ var title177 = "StartTransactionTxOutput";
25373
+ var description182 = "Output of startTransaction";
25374
+ var type157 = "object";
25375
+ var properties129 = {
25085
25376
  transaction_id: {
25086
25377
  type: "string"
25087
25378
  }
25088
25379
  };
25089
- var additionalProperties119 = false;
25380
+ var additionalProperties129 = false;
25090
25381
  var start_transaction_schema_output_default = {
25091
- $schema: $schema172,
25092
- $id: $id172,
25093
- title: title167,
25094
- description: description172,
25095
- type: type147,
25096
- properties: properties119,
25097
- additionalProperties: additionalProperties119
25382
+ $schema: $schema182,
25383
+ $id: $id182,
25384
+ title: title177,
25385
+ description: description182,
25386
+ type: type157,
25387
+ properties: properties129,
25388
+ additionalProperties: additionalProperties129
25098
25389
  };
25099
25390
 
25100
25391
  // src/txs/tx-consts.schema.json
25101
- var $schema173 = "http://json-schema.org/draft-07/schema";
25102
- var $id173 = "TxConsts";
25103
- var description173 = "Generics used by functions";
25104
- var definitions96 = {
25392
+ var $schema183 = "http://json-schema.org/draft-07/schema";
25393
+ var $id183 = "TxConsts";
25394
+ var description183 = "Generics used by functions";
25395
+ var definitions101 = {
25105
25396
  i_tx_general_options_without_tx: {
25106
25397
  description: "Generic flags for input",
25107
25398
  type: "object",
@@ -25479,19 +25770,19 @@ var definitions96 = {
25479
25770
  }
25480
25771
  };
25481
25772
  var tx_consts_schema_default = {
25482
- $schema: $schema173,
25483
- $id: $id173,
25484
- description: description173,
25485
- definitions: definitions96
25773
+ $schema: $schema183,
25774
+ $id: $id183,
25775
+ description: description183,
25776
+ definitions: definitions101
25486
25777
  };
25487
25778
 
25488
25779
  // src/txs/update-token/update-token.schema.input.json
25489
- var $schema174 = "http://json-schema.org/draft-07/schema";
25490
- var $id174 = "UpdateTokenTxInput";
25491
- var title168 = "UpdateTokenTxInput";
25492
- var description174 = "Input for updateToken";
25493
- var type148 = "object";
25494
- var properties120 = {
25780
+ var $schema184 = "http://json-schema.org/draft-07/schema";
25781
+ var $id184 = "UpdateTokenTxInput";
25782
+ var title178 = "UpdateTokenTxInput";
25783
+ var description184 = "Input for updateToken";
25784
+ var type158 = "object";
25785
+ var properties130 = {
25495
25786
  token: {
25496
25787
  $ref: "/txs/get-token/get-token.schema.input.json#/definitions/unique_token_filter"
25497
25788
  },
@@ -25502,7 +25793,7 @@ var properties120 = {
25502
25793
  $ref: "#/definitions/update_token_tx_options"
25503
25794
  }
25504
25795
  };
25505
- var definitions97 = {
25796
+ var definitions102 = {
25506
25797
  update_token_tx_options: {
25507
25798
  allOf: [
25508
25799
  {
@@ -25544,26 +25835,26 @@ var definitions97 = {
25544
25835
  }
25545
25836
  };
25546
25837
  var required75 = ["token"];
25547
- var additionalProperties120 = false;
25838
+ var additionalProperties130 = false;
25548
25839
  var update_token_schema_input_default2 = {
25549
- $schema: $schema174,
25550
- $id: $id174,
25551
- title: title168,
25552
- description: description174,
25553
- type: type148,
25554
- properties: properties120,
25555
- definitions: definitions97,
25840
+ $schema: $schema184,
25841
+ $id: $id184,
25842
+ title: title178,
25843
+ description: description184,
25844
+ type: type158,
25845
+ properties: properties130,
25846
+ definitions: definitions102,
25556
25847
  required: required75,
25557
- additionalProperties: additionalProperties120
25848
+ additionalProperties: additionalProperties130
25558
25849
  };
25559
25850
 
25560
25851
  // src/txs/update-token/update-token.schema.output.json
25561
- var $schema175 = "http://json-schema.org/draft-07/schema";
25562
- var $id175 = "UpdateTokenTxOutput";
25563
- var title169 = "UpdateTokenTxOutput";
25564
- var description175 = "Output of updateToken";
25565
- var type149 = "object";
25566
- var properties121 = {
25852
+ var $schema185 = "http://json-schema.org/draft-07/schema";
25853
+ var $id185 = "UpdateTokenTxOutput";
25854
+ var title179 = "UpdateTokenTxOutput";
25855
+ var description185 = "Output of updateToken";
25856
+ var type159 = "object";
25857
+ var properties131 = {
25567
25858
  token: {
25568
25859
  description: "Token object",
25569
25860
  $ref: "/db/token/token.schema.json"
@@ -25573,24 +25864,24 @@ var properties121 = {
25573
25864
  type: "boolean"
25574
25865
  }
25575
25866
  };
25576
- var additionalProperties121 = false;
25867
+ var additionalProperties131 = false;
25577
25868
  var update_token_schema_output_default2 = {
25578
- $schema: $schema175,
25579
- $id: $id175,
25580
- title: title169,
25581
- description: description175,
25582
- type: type149,
25583
- properties: properties121,
25584
- additionalProperties: additionalProperties121
25869
+ $schema: $schema185,
25870
+ $id: $id185,
25871
+ title: title179,
25872
+ description: description185,
25873
+ type: type159,
25874
+ properties: properties131,
25875
+ additionalProperties: additionalProperties131
25585
25876
  };
25586
25877
 
25587
25878
  // src/txs/update-transfer/update-transfer.schema.input.json
25588
- var $schema176 = "http://json-schema.org/draft-07/schema";
25589
- var $id176 = "UpdateTransferTxInput";
25590
- var title170 = "UpdateTransferTxInput";
25591
- var description176 = "Input for updateTransfer";
25592
- var type150 = "object";
25593
- var properties122 = {
25879
+ var $schema186 = "http://json-schema.org/draft-07/schema";
25880
+ var $id186 = "UpdateTransferTxInput";
25881
+ var title180 = "UpdateTransferTxInput";
25882
+ var description186 = "Input for updateTransfer";
25883
+ var type160 = "object";
25884
+ var properties132 = {
25594
25885
  transfer: {
25595
25886
  $ref: "/txs/get-transfer/get-transfer.schema.input.json#/definitions/unique_transfer_filter"
25596
25887
  },
@@ -25601,7 +25892,7 @@ var properties122 = {
25601
25892
  $ref: "#/definitions/update_transfer_tx_options"
25602
25893
  }
25603
25894
  };
25604
- var definitions98 = {
25895
+ var definitions103 = {
25605
25896
  update_transfer_tx_options: {
25606
25897
  allOf: [
25607
25898
  {
@@ -25667,26 +25958,26 @@ var definitions98 = {
25667
25958
  }
25668
25959
  };
25669
25960
  var required76 = ["transfer"];
25670
- var additionalProperties122 = false;
25961
+ var additionalProperties132 = false;
25671
25962
  var update_transfer_schema_input_default2 = {
25672
- $schema: $schema176,
25673
- $id: $id176,
25674
- title: title170,
25675
- description: description176,
25676
- type: type150,
25677
- properties: properties122,
25678
- definitions: definitions98,
25963
+ $schema: $schema186,
25964
+ $id: $id186,
25965
+ title: title180,
25966
+ description: description186,
25967
+ type: type160,
25968
+ properties: properties132,
25969
+ definitions: definitions103,
25679
25970
  required: required76,
25680
- additionalProperties: additionalProperties122
25971
+ additionalProperties: additionalProperties132
25681
25972
  };
25682
25973
 
25683
25974
  // src/txs/update-transfer/update-transfer.schema.output.json
25684
- var $schema177 = "http://json-schema.org/draft-07/schema";
25685
- var $id177 = "UpdateTransferTxOutput";
25686
- var title171 = "UpdateTransferTxOutput";
25687
- var description177 = "Output of updateTransfer";
25688
- var type151 = "object";
25689
- var properties123 = {
25975
+ var $schema187 = "http://json-schema.org/draft-07/schema";
25976
+ var $id187 = "UpdateTransferTxOutput";
25977
+ var title181 = "UpdateTransferTxOutput";
25978
+ var description187 = "Output of updateTransfer";
25979
+ var type161 = "object";
25980
+ var properties133 = {
25690
25981
  transfer: {
25691
25982
  description: "Updated transfer object",
25692
25983
  $ref: "/txs/get-transfer/get-transfer.schema.output.json#/definitions/transfer"
@@ -25704,24 +25995,24 @@ var properties123 = {
25704
25995
  $ref: "/txs/get-balance/get-balance.schema.output.json#/definitions/balance"
25705
25996
  }
25706
25997
  };
25707
- var additionalProperties123 = false;
25998
+ var additionalProperties133 = false;
25708
25999
  var update_transfer_schema_output_default2 = {
25709
- $schema: $schema177,
25710
- $id: $id177,
25711
- title: title171,
25712
- description: description177,
25713
- type: type151,
25714
- properties: properties123,
25715
- additionalProperties: additionalProperties123
26000
+ $schema: $schema187,
26001
+ $id: $id187,
26002
+ title: title181,
26003
+ description: description187,
26004
+ type: type161,
26005
+ properties: properties133,
26006
+ additionalProperties: additionalProperties133
25716
26007
  };
25717
26008
 
25718
26009
  // src/txs/update-transfer-group/update-transfer-group.schema.input.json
25719
- var $schema178 = "http://json-schema.org/draft-07/schema";
25720
- var $id178 = "UpdateTransferGroupTxInput";
25721
- var title172 = "UpdateTransferGroupTxInput";
25722
- var description178 = "Input for updateTransferGroup";
25723
- var type152 = "object";
25724
- var properties124 = {
26010
+ var $schema188 = "http://json-schema.org/draft-07/schema";
26011
+ var $id188 = "UpdateTransferGroupTxInput";
26012
+ var title182 = "UpdateTransferGroupTxInput";
26013
+ var description188 = "Input for updateTransferGroup";
26014
+ var type162 = "object";
26015
+ var properties134 = {
25725
26016
  transfer_group: {
25726
26017
  $ref: "/txs/get-transfer-group/get-transfer-group.schema.input.json#/definitions/unique_transfer_group_filter"
25727
26018
  },
@@ -25732,7 +26023,7 @@ var properties124 = {
25732
26023
  $ref: "#/definitions/update_transfer_group_tx_options"
25733
26024
  }
25734
26025
  };
25735
- var definitions99 = {
26026
+ var definitions104 = {
25736
26027
  update_transfer_group_tx_options: {
25737
26028
  allOf: [
25738
26029
  {
@@ -25823,26 +26114,26 @@ var definitions99 = {
25823
26114
  }
25824
26115
  };
25825
26116
  var required77 = ["transfer_group"];
25826
- var additionalProperties124 = false;
26117
+ var additionalProperties134 = false;
25827
26118
  var update_transfer_group_schema_input_default2 = {
25828
- $schema: $schema178,
25829
- $id: $id178,
25830
- title: title172,
25831
- description: description178,
25832
- type: type152,
25833
- properties: properties124,
25834
- definitions: definitions99,
26119
+ $schema: $schema188,
26120
+ $id: $id188,
26121
+ title: title182,
26122
+ description: description188,
26123
+ type: type162,
26124
+ properties: properties134,
26125
+ definitions: definitions104,
25835
26126
  required: required77,
25836
- additionalProperties: additionalProperties124
26127
+ additionalProperties: additionalProperties134
25837
26128
  };
25838
26129
 
25839
26130
  // src/txs/update-transfer-group/update-transfer-group.schema.output.json
25840
- var $schema179 = "http://json-schema.org/draft-07/schema";
25841
- var $id179 = "UpdateTransferGroupTxOutput";
25842
- var title173 = "UpdateTransferGroupTxOutput";
25843
- var description179 = "Output of updateTransferGroup";
25844
- var type153 = "object";
25845
- var properties125 = {
26131
+ var $schema189 = "http://json-schema.org/draft-07/schema";
26132
+ var $id189 = "UpdateTransferGroupTxOutput";
26133
+ var title183 = "UpdateTransferGroupTxOutput";
26134
+ var description189 = "Output of updateTransferGroup";
26135
+ var type163 = "object";
26136
+ var properties135 = {
25846
26137
  transfer_group: {
25847
26138
  $ref: "/db/transfer-group/transfer-group.schema.json"
25848
26139
  },
@@ -25858,24 +26149,24 @@ var properties125 = {
25858
26149
  }
25859
26150
  }
25860
26151
  };
25861
- var additionalProperties125 = false;
26152
+ var additionalProperties135 = false;
25862
26153
  var update_transfer_group_schema_output_default2 = {
25863
- $schema: $schema179,
25864
- $id: $id179,
25865
- title: title173,
25866
- description: description179,
25867
- type: type153,
25868
- properties: properties125,
25869
- additionalProperties: additionalProperties125
26154
+ $schema: $schema189,
26155
+ $id: $id189,
26156
+ title: title183,
26157
+ description: description189,
26158
+ type: type163,
26159
+ properties: properties135,
26160
+ additionalProperties: additionalProperties135
25870
26161
  };
25871
26162
 
25872
26163
  // src/txs/update-transfer-group-many/update-transfer-group-many.schema.input.json
25873
- var $schema180 = "http://json-schema.org/draft-07/schema";
25874
- var $id180 = "UpdateTransferGroupManyTxInput";
25875
- var title174 = "UpdateTransferGroupManyTxInput";
25876
- var description180 = "Input for updateTransferGroupMany";
25877
- var type154 = "object";
25878
- var properties126 = {
26164
+ var $schema190 = "http://json-schema.org/draft-07/schema";
26165
+ var $id190 = "UpdateTransferGroupManyTxInput";
26166
+ var title184 = "UpdateTransferGroupManyTxInput";
26167
+ var description190 = "Input for updateTransferGroupMany";
26168
+ var type164 = "object";
26169
+ var properties136 = {
25879
26170
  transfer_group: {
25880
26171
  $ref: "/txs/find-transfer-group-many/find-transfer-group-many.schema.input.json#/definitions/find_transfer_group_many_filter"
25881
26172
  },
@@ -25886,7 +26177,7 @@ var properties126 = {
25886
26177
  $ref: "/txs/update-transfer-group/update-transfer-group.schema.input.json#/definitions/update_transfer_group_tx_options"
25887
26178
  }
25888
26179
  };
25889
- var definitions100 = {
26180
+ var definitions105 = {
25890
26181
  update_transfer_group_many_tx_options: {
25891
26182
  allOf: [
25892
26183
  {
@@ -25905,26 +26196,26 @@ var definitions100 = {
25905
26196
  }
25906
26197
  };
25907
26198
  var required78 = ["transfer_group"];
25908
- var additionalProperties126 = false;
26199
+ var additionalProperties136 = false;
25909
26200
  var update_transfer_group_many_schema_input_default = {
25910
- $schema: $schema180,
25911
- $id: $id180,
25912
- title: title174,
25913
- description: description180,
25914
- type: type154,
25915
- properties: properties126,
25916
- definitions: definitions100,
26201
+ $schema: $schema190,
26202
+ $id: $id190,
26203
+ title: title184,
26204
+ description: description190,
26205
+ type: type164,
26206
+ properties: properties136,
26207
+ definitions: definitions105,
25917
26208
  required: required78,
25918
- additionalProperties: additionalProperties126
26209
+ additionalProperties: additionalProperties136
25919
26210
  };
25920
26211
 
25921
26212
  // src/txs/update-transfer-group-many/update-transfer-group-many.schema.output.json
25922
- var $schema181 = "http://json-schema.org/draft-07/schema";
25923
- var $id181 = "UpdateTransferGroupManyTxOutput";
25924
- var title175 = "UpdateTransferGroupManyTxOutput";
25925
- var description181 = "Output of updateTransferGroupMany";
25926
- var type155 = "object";
25927
- var properties127 = {
26213
+ var $schema191 = "http://json-schema.org/draft-07/schema";
26214
+ var $id191 = "UpdateTransferGroupManyTxOutput";
26215
+ var title185 = "UpdateTransferGroupManyTxOutput";
26216
+ var description191 = "Output of updateTransferGroupMany";
26217
+ var type165 = "object";
26218
+ var properties137 = {
25928
26219
  transfer_groups: {
25929
26220
  description: "Updated transfer groups",
25930
26221
  type: "array",
@@ -25943,25 +26234,25 @@ var properties127 = {
25943
26234
  }
25944
26235
  };
25945
26236
  var required79 = ["transfer_groups"];
25946
- var additionalProperties127 = false;
26237
+ var additionalProperties137 = false;
25947
26238
  var update_transfer_group_many_schema_output_default = {
25948
- $schema: $schema181,
25949
- $id: $id181,
25950
- title: title175,
25951
- description: description181,
25952
- type: type155,
25953
- properties: properties127,
26239
+ $schema: $schema191,
26240
+ $id: $id191,
26241
+ title: title185,
26242
+ description: description191,
26243
+ type: type165,
26244
+ properties: properties137,
25954
26245
  required: required79,
25955
- additionalProperties: additionalProperties127
26246
+ additionalProperties: additionalProperties137
25956
26247
  };
25957
26248
 
25958
26249
  // src/txs/update-transfer-many/update-transfer-many.schema.input.json
25959
- var $schema182 = "http://json-schema.org/draft-07/schema";
25960
- var $id182 = "UpdateTransferManyTxInput";
25961
- var title176 = "UpdateTransferManyTxInput";
25962
- var description182 = "Input for updateTransferMany";
25963
- var type156 = "object";
25964
- var properties128 = {
26250
+ var $schema192 = "http://json-schema.org/draft-07/schema";
26251
+ var $id192 = "UpdateTransferManyTxInput";
26252
+ var title186 = "UpdateTransferManyTxInput";
26253
+ var description192 = "Input for updateTransferMany";
26254
+ var type166 = "object";
26255
+ var properties138 = {
25965
26256
  transfer: {
25966
26257
  $ref: "/txs/find-transfer-many/find-transfer-many.schema.input.json#/definitions/find_transfer_many_filter"
25967
26258
  },
@@ -25972,7 +26263,7 @@ var properties128 = {
25972
26263
  $ref: "#/definitions/update_transfer_many_tx_options"
25973
26264
  }
25974
26265
  };
25975
- var definitions101 = {
26266
+ var definitions106 = {
25976
26267
  update_transfer_many_tx_options: {
25977
26268
  allOf: [
25978
26269
  {
@@ -25997,26 +26288,26 @@ var definitions101 = {
25997
26288
  }
25998
26289
  };
25999
26290
  var required80 = ["transfer", "update"];
26000
- var additionalProperties128 = false;
26291
+ var additionalProperties138 = false;
26001
26292
  var update_transfer_many_schema_input_default = {
26002
- $schema: $schema182,
26003
- $id: $id182,
26004
- title: title176,
26005
- description: description182,
26006
- type: type156,
26007
- properties: properties128,
26008
- definitions: definitions101,
26293
+ $schema: $schema192,
26294
+ $id: $id192,
26295
+ title: title186,
26296
+ description: description192,
26297
+ type: type166,
26298
+ properties: properties138,
26299
+ definitions: definitions106,
26009
26300
  required: required80,
26010
- additionalProperties: additionalProperties128
26301
+ additionalProperties: additionalProperties138
26011
26302
  };
26012
26303
 
26013
26304
  // src/txs/update-transfer-many/update-transfer-many.schema.output.json
26014
- var $schema183 = "http://json-schema.org/draft-07/schema";
26015
- var $id183 = "UpdateTransferManyTxOutput";
26016
- var title177 = "UpdateTransferManyTxOutput";
26017
- var description183 = "Output of updateTransferMany";
26018
- var type157 = "object";
26019
- var properties129 = {
26305
+ var $schema193 = "http://json-schema.org/draft-07/schema";
26306
+ var $id193 = "UpdateTransferManyTxOutput";
26307
+ var title187 = "UpdateTransferManyTxOutput";
26308
+ var description193 = "Output of updateTransferMany";
26309
+ var type167 = "object";
26310
+ var properties139 = {
26020
26311
  transfers: {
26021
26312
  description: "Updated transfers array",
26022
26313
  type: "array",
@@ -26029,24 +26320,24 @@ var properties129 = {
26029
26320
  type: "boolean"
26030
26321
  }
26031
26322
  };
26032
- var additionalProperties129 = false;
26323
+ var additionalProperties139 = false;
26033
26324
  var update_transfer_many_schema_output_default = {
26034
- $schema: $schema183,
26035
- $id: $id183,
26036
- title: title177,
26037
- description: description183,
26038
- type: type157,
26039
- properties: properties129,
26040
- additionalProperties: additionalProperties129
26325
+ $schema: $schema193,
26326
+ $id: $id193,
26327
+ title: title187,
26328
+ description: description193,
26329
+ type: type167,
26330
+ properties: properties139,
26331
+ additionalProperties: additionalProperties139
26041
26332
  };
26042
26333
 
26043
26334
  // src/txs/update-wallet/update-wallet.schema.input.json
26044
- var $schema184 = "http://json-schema.org/draft-07/schema";
26045
- var $id184 = "UpdateWalletTxInput";
26046
- var title178 = "UpdateWalletTxInput";
26047
- var description184 = "Input for updateWallet";
26048
- var type158 = "object";
26049
- var properties130 = {
26335
+ var $schema194 = "http://json-schema.org/draft-07/schema";
26336
+ var $id194 = "UpdateWalletTxInput";
26337
+ var title188 = "UpdateWalletTxInput";
26338
+ var description194 = "Input for updateWallet";
26339
+ var type168 = "object";
26340
+ var properties140 = {
26050
26341
  wallet: {
26051
26342
  $ref: "/txs/get-wallet/get-wallet.schema.input.json#/definitions/unique_wallet_filter"
26052
26343
  },
@@ -26057,7 +26348,7 @@ var properties130 = {
26057
26348
  $ref: "#/definitions/update_wallet_tx_options"
26058
26349
  }
26059
26350
  };
26060
- var definitions102 = {
26351
+ var definitions107 = {
26061
26352
  update_wallet_tx_options: {
26062
26353
  allOf: [
26063
26354
  {
@@ -26098,26 +26389,26 @@ var definitions102 = {
26098
26389
  }
26099
26390
  };
26100
26391
  var required81 = ["wallet"];
26101
- var additionalProperties130 = false;
26392
+ var additionalProperties140 = false;
26102
26393
  var update_wallet_schema_input_default2 = {
26103
- $schema: $schema184,
26104
- $id: $id184,
26105
- title: title178,
26106
- description: description184,
26107
- type: type158,
26108
- properties: properties130,
26109
- definitions: definitions102,
26394
+ $schema: $schema194,
26395
+ $id: $id194,
26396
+ title: title188,
26397
+ description: description194,
26398
+ type: type168,
26399
+ properties: properties140,
26400
+ definitions: definitions107,
26110
26401
  required: required81,
26111
- additionalProperties: additionalProperties130
26402
+ additionalProperties: additionalProperties140
26112
26403
  };
26113
26404
 
26114
26405
  // src/txs/update-wallet/update-wallet.schema.output.json
26115
- var $schema185 = "http://json-schema.org/draft-07/schema";
26116
- var $id185 = "UpdateWalletTxOutput";
26117
- var title179 = "UpdateWalletTxOutput";
26118
- var description185 = "Output of updateWallet";
26119
- var type159 = "object";
26120
- var properties131 = {
26406
+ var $schema195 = "http://json-schema.org/draft-07/schema";
26407
+ var $id195 = "UpdateWalletTxOutput";
26408
+ var title189 = "UpdateWalletTxOutput";
26409
+ var description195 = "Output of updateWallet";
26410
+ var type169 = "object";
26411
+ var properties141 = {
26121
26412
  wallet: {
26122
26413
  description: "Wallet object",
26123
26414
  anyOf: [
@@ -26134,15 +26425,15 @@ var properties131 = {
26134
26425
  type: "boolean"
26135
26426
  }
26136
26427
  };
26137
- var additionalProperties131 = false;
26428
+ var additionalProperties141 = false;
26138
26429
  var update_wallet_schema_output_default2 = {
26139
- $schema: $schema185,
26140
- $id: $id185,
26141
- title: title179,
26142
- description: description185,
26143
- type: type159,
26144
- properties: properties131,
26145
- additionalProperties: additionalProperties131
26430
+ $schema: $schema195,
26431
+ $id: $id195,
26432
+ title: title189,
26433
+ description: description195,
26434
+ type: type169,
26435
+ properties: properties141,
26436
+ additionalProperties: additionalProperties141
26146
26437
  };
26147
26438
 
26148
26439
  // src/lib/validator.ts
@@ -26476,6 +26767,10 @@ ajv.addSchema(fixSelfRefs(create_withdrawal_schema_input_default2, "/txs/create-
26476
26767
  Schemas.CreateWithdrawalTxInput = create_withdrawal_schema_input_default2;
26477
26768
  ajv.addSchema(fixSelfRefs(create_withdrawal_schema_output_default2, "/txs/create-withdrawal/create-withdrawal.schema.output.json"), "/txs/create-withdrawal/create-withdrawal.schema.output.json");
26478
26769
  Schemas.CreateWithdrawalTxOutput = create_withdrawal_schema_output_default2;
26770
+ ajv.addSchema(fixSelfRefs(export_database_schema_input_default, "/txs/export-database/export-database.schema.input.json"), "/txs/export-database/export-database.schema.input.json");
26771
+ Schemas.ExportDatabaseTxInput = export_database_schema_input_default;
26772
+ ajv.addSchema(fixSelfRefs(export_database_schema_output_default, "/txs/export-database/export-database.schema.output.json"), "/txs/export-database/export-database.schema.output.json");
26773
+ Schemas.ExportDatabaseTxOutput = export_database_schema_output_default;
26479
26774
  ajv.addSchema(fixSelfRefs(find_balance_many_schema_input_default, "/txs/find-balance-many/find-balance-many.schema.input.json"), "/txs/find-balance-many/find-balance-many.schema.input.json");
26480
26775
  Schemas.FindBalanceManyTxInput = find_balance_many_schema_input_default;
26481
26776
  ajv.addSchema(fixSelfRefs(find_balance_many_schema_output_default, "/txs/find-balance-many/find-balance-many.schema.output.json"), "/txs/find-balance-many/find-balance-many.schema.output.json");
@@ -26508,6 +26803,14 @@ ajv.addSchema(fixSelfRefs(get_balance_history_schema_input_default2, "/txs/get-b
26508
26803
  Schemas.GetBalanceHistoryTxInput = get_balance_history_schema_input_default2;
26509
26804
  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
26805
  Schemas.GetBalanceHistoryTxOutput = get_balance_history_schema_output_default2;
26806
+ ajv.addSchema(fixSelfRefs(get_database_export_progress_schema_input_default, "/txs/get-database-export-progress/get-database-export-progress.schema.input.json"), "/txs/get-database-export-progress/get-database-export-progress.schema.input.json");
26807
+ Schemas.GetDatabaseExportProgressTxInput = get_database_export_progress_schema_input_default;
26808
+ ajv.addSchema(fixSelfRefs(get_database_export_progress_schema_output_default, "/txs/get-database-export-progress/get-database-export-progress.schema.output.json"), "/txs/get-database-export-progress/get-database-export-progress.schema.output.json");
26809
+ Schemas.GetDatabaseExportProgressTxOutput = get_database_export_progress_schema_output_default;
26810
+ ajv.addSchema(fixSelfRefs(get_database_import_progress_schema_input_default, "/txs/get-database-import-progress/get-database-import-progress.schema.input.json"), "/txs/get-database-import-progress/get-database-import-progress.schema.input.json");
26811
+ Schemas.GetDatabaseImportProgressTxInput = get_database_import_progress_schema_input_default;
26812
+ ajv.addSchema(fixSelfRefs(get_database_import_progress_schema_output_default, "/txs/get-database-import-progress/get-database-import-progress.schema.output.json"), "/txs/get-database-import-progress/get-database-import-progress.schema.output.json");
26813
+ Schemas.GetDatabaseImportProgressTxOutput = get_database_import_progress_schema_output_default;
26511
26814
  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
26815
  Schemas.GetFlagsTxInput = get_flags_schema_input_default2;
26513
26816
  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 +26853,14 @@ ajv.addSchema(ImportActionsTxStreamChunk, "/txs/import-actions/import-actions.sc
26550
26853
  Schemas.ImportActionsTxStreamChunk = ImportActionsTxStreamChunk;
26551
26854
  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
26855
  Schemas.ImportActionsTxOutput = import_actions_schema_output_default;
26856
+ ajv.addSchema(fixSelfRefs(import_database_schema_input_default, "/txs/import-database/import-database.schema.input.json"), "/txs/import-database/import-database.schema.input.json");
26857
+ Schemas.ImportDatabaseTxInput = import_database_schema_input_default;
26858
+ ajv.addSchema(fixSelfRefs(import_database_schema_output_default, "/txs/import-database/import-database.schema.output.json"), "/txs/import-database/import-database.schema.output.json");
26859
+ Schemas.ImportDatabaseTxOutput = import_database_schema_output_default;
26860
+ 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");
26861
+ Schemas.ListDatabaseBackupsTxInput = list_database_backups_schema_input_default;
26862
+ 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");
26863
+ Schemas.ListDatabaseBackupsTxOutput = list_database_backups_schema_output_default;
26553
26864
  ajv.addSchema(fixSelfRefs(query_schema_input_default, "/txs/query/query.schema.input.json"), "/txs/query/query.schema.input.json");
26554
26865
  Schemas.QueryTxInput = query_schema_input_default;
26555
26866
  ajv.addSchema(fixSelfRefs(query_schema_output_default, "/txs/query/query.schema.output.json"), "/txs/query/query.schema.output.json");
@@ -26736,6 +27047,8 @@ var SchemaNames;
26736
27047
  SchemaNames2["CreateWalletTxOutput"] = "CreateWalletTxOutput";
26737
27048
  SchemaNames2["CreateWithdrawalTxInput"] = "CreateWithdrawalTxInput";
26738
27049
  SchemaNames2["CreateWithdrawalTxOutput"] = "CreateWithdrawalTxOutput";
27050
+ SchemaNames2["ExportDatabaseTxInput"] = "ExportDatabaseTxInput";
27051
+ SchemaNames2["ExportDatabaseTxOutput"] = "ExportDatabaseTxOutput";
26739
27052
  SchemaNames2["FindBalanceManyTxInput"] = "FindBalanceManyTxInput";
26740
27053
  SchemaNames2["FindBalanceManyTxOutput"] = "FindBalanceManyTxOutput";
26741
27054
  SchemaNames2["FindTokenManyTxInput"] = "FindTokenManyTxInput";
@@ -26752,6 +27065,10 @@ var SchemaNames;
26752
27065
  SchemaNames2["GetBalanceTxOutput"] = "GetBalanceTxOutput";
26753
27066
  SchemaNames2["GetBalanceHistoryTxInput"] = "GetBalanceHistoryTxInput";
26754
27067
  SchemaNames2["GetBalanceHistoryTxOutput"] = "GetBalanceHistoryTxOutput";
27068
+ SchemaNames2["GetDatabaseExportProgressTxInput"] = "GetDatabaseExportProgressTxInput";
27069
+ SchemaNames2["GetDatabaseExportProgressTxOutput"] = "GetDatabaseExportProgressTxOutput";
27070
+ SchemaNames2["GetDatabaseImportProgressTxInput"] = "GetDatabaseImportProgressTxInput";
27071
+ SchemaNames2["GetDatabaseImportProgressTxOutput"] = "GetDatabaseImportProgressTxOutput";
26755
27072
  SchemaNames2["GetFlagsTxInput"] = "GetFlagsTxInput";
26756
27073
  SchemaNames2["GetFlagsTxOutput"] = "GetFlagsTxOutput";
26757
27074
  SchemaNames2["GetStatisticsTxInput"] = "GetStatisticsTxInput";
@@ -26772,6 +27089,10 @@ var SchemaNames;
26772
27089
  SchemaNames2["ImportActionsTxOptions"] = "ImportActionsTxOptions";
26773
27090
  SchemaNames2["ImportActionsTxStreamChunk"] = "ImportActionsTxStreamChunk";
26774
27091
  SchemaNames2["ImportActionsTxOutput"] = "ImportActionsTxOutput";
27092
+ SchemaNames2["ImportDatabaseTxInput"] = "ImportDatabaseTxInput";
27093
+ SchemaNames2["ImportDatabaseTxOutput"] = "ImportDatabaseTxOutput";
27094
+ SchemaNames2["ListDatabaseBackupsTxInput"] = "ListDatabaseBackupsTxInput";
27095
+ SchemaNames2["ListDatabaseBackupsTxOutput"] = "ListDatabaseBackupsTxOutput";
26775
27096
  SchemaNames2["QueryTxInput"] = "QueryTxInput";
26776
27097
  SchemaNames2["QueryTxOutput"] = "QueryTxOutput";
26777
27098
  SchemaNames2["QueryLogsTxInput"] = "QueryLogsTxInput";
@@ -26877,6 +27198,7 @@ var createTransferGroupValidator = getValidator(SchemaNames.CreateTransferGroupT
26877
27198
  var createTransferManyValidator = getValidator(SchemaNames.CreateTransferManyTxInput);
26878
27199
  var createWalletValidator = getValidator(SchemaNames.CreateWalletTxInput);
26879
27200
  var createWithdrawalValidator = getValidator(SchemaNames.CreateWithdrawalTxInput);
27201
+ var exportDatabaseValidator = getValidator(SchemaNames.ExportDatabaseTxInput);
26880
27202
  var findBalanceManyValidator = getValidator(SchemaNames.FindBalanceManyTxInput);
26881
27203
  var findTokenManyValidator = getValidator(SchemaNames.FindTokenManyTxInput);
26882
27204
  var findTransferGroupManyValidator = getValidator(SchemaNames.FindTransferGroupManyTxInput);
@@ -26885,6 +27207,8 @@ var findWalletManyValidator = getValidator(SchemaNames.FindWalletManyTxInput);
26885
27207
  var finishTransactionValidator = getValidator(SchemaNames.FinishTransactionTxInput);
26886
27208
  var getBalanceValidator = getValidator(SchemaNames.GetBalanceTxInput);
26887
27209
  var getBalanceHistoryValidator = getValidator(SchemaNames.GetBalanceHistoryTxInput);
27210
+ var getDatabaseExportProgressValidator = getValidator(SchemaNames.GetDatabaseExportProgressTxInput);
27211
+ var getDatabaseImportProgressValidator = getValidator(SchemaNames.GetDatabaseImportProgressTxInput);
26888
27212
  var getFlagsValidator = getValidator(SchemaNames.GetFlagsTxInput);
26889
27213
  var getStatisticsValidator = getValidator(SchemaNames.GetStatisticsTxInput);
26890
27214
  var getTokenValidator = getValidator(SchemaNames.GetTokenTxInput);
@@ -26894,6 +27218,8 @@ var getTransferGroupValidator = getValidator(SchemaNames.GetTransferGroupTxInput
26894
27218
  var getWalletValidator = getValidator(SchemaNames.GetWalletTxInput);
26895
27219
  var getWalletManyValidator = getValidator(SchemaNames.GetWalletManyTxInput);
26896
27220
  var importActionsValidator = getValidator(SchemaNames.ImportActionsTxInput);
27221
+ var importDatabaseValidator = getValidator(SchemaNames.ImportDatabaseTxInput);
27222
+ var listDatabaseBackupsValidator = getValidator(SchemaNames.ListDatabaseBackupsTxInput);
26897
27223
  var queryValidator = getValidator(SchemaNames.QueryTxInput);
26898
27224
  var queryLogsValidator = getValidator(SchemaNames.QueryLogsTxInput);
26899
27225
  var resetDatabaseValidator = getValidator(SchemaNames.ResetDatabaseTxInput);
@@ -26922,6 +27248,7 @@ var APIValidators = {
26922
27248
  createTransferMany: createTransferManyValidator,
26923
27249
  createWallet: createWalletValidator,
26924
27250
  createWithdrawal: createWithdrawalValidator,
27251
+ exportDatabase: exportDatabaseValidator,
26925
27252
  findBalanceMany: findBalanceManyValidator,
26926
27253
  findTokenMany: findTokenManyValidator,
26927
27254
  findTransferGroupMany: findTransferGroupManyValidator,
@@ -26930,6 +27257,8 @@ var APIValidators = {
26930
27257
  finishTransaction: finishTransactionValidator,
26931
27258
  getBalance: getBalanceValidator,
26932
27259
  getBalanceHistory: getBalanceHistoryValidator,
27260
+ getDatabaseExportProgress: getDatabaseExportProgressValidator,
27261
+ getDatabaseImportProgress: getDatabaseImportProgressValidator,
26933
27262
  getFlags: getFlagsValidator,
26934
27263
  getStatistics: getStatisticsValidator,
26935
27264
  getToken: getTokenValidator,
@@ -26939,6 +27268,8 @@ var APIValidators = {
26939
27268
  getWallet: getWalletValidator,
26940
27269
  getWalletMany: getWalletManyValidator,
26941
27270
  importActions: importActionsValidator,
27271
+ importDatabase: importDatabaseValidator,
27272
+ listDatabaseBackups: listDatabaseBackupsValidator,
26942
27273
  query: queryValidator,
26943
27274
  queryLogs: queryLogsValidator,
26944
27275
  resetDatabase: resetDatabaseValidator,
@@ -26969,6 +27300,7 @@ var APIFunctions;
26969
27300
  APIFunctions2["createTransferMany"] = "createTransferMany";
26970
27301
  APIFunctions2["createWallet"] = "createWallet";
26971
27302
  APIFunctions2["createWithdrawal"] = "createWithdrawal";
27303
+ APIFunctions2["exportDatabase"] = "exportDatabase";
26972
27304
  APIFunctions2["findBalanceMany"] = "findBalanceMany";
26973
27305
  APIFunctions2["findTokenMany"] = "findTokenMany";
26974
27306
  APIFunctions2["findTransferGroupMany"] = "findTransferGroupMany";
@@ -26977,6 +27309,8 @@ var APIFunctions;
26977
27309
  APIFunctions2["finishTransaction"] = "finishTransaction";
26978
27310
  APIFunctions2["getBalance"] = "getBalance";
26979
27311
  APIFunctions2["getBalanceHistory"] = "getBalanceHistory";
27312
+ APIFunctions2["getDatabaseExportProgress"] = "getDatabaseExportProgress";
27313
+ APIFunctions2["getDatabaseImportProgress"] = "getDatabaseImportProgress";
26980
27314
  APIFunctions2["getFlags"] = "getFlags";
26981
27315
  APIFunctions2["getStatistics"] = "getStatistics";
26982
27316
  APIFunctions2["getToken"] = "getToken";
@@ -26986,6 +27320,8 @@ var APIFunctions;
26986
27320
  APIFunctions2["getWallet"] = "getWallet";
26987
27321
  APIFunctions2["getWalletMany"] = "getWalletMany";
26988
27322
  APIFunctions2["importActions"] = "importActions";
27323
+ APIFunctions2["importDatabase"] = "importDatabase";
27324
+ APIFunctions2["listDatabaseBackups"] = "listDatabaseBackups";
26989
27325
  APIFunctions2["query"] = "query";
26990
27326
  APIFunctions2["queryLogs"] = "queryLogs";
26991
27327
  APIFunctions2["resetDatabase"] = "resetDatabase";
@@ -27352,6 +27688,9 @@ var BaseClient = class {
27352
27688
  createWithdrawal(input) {
27353
27689
  return this._sendTransaction(APIFunctions.createWithdrawal, input);
27354
27690
  }
27691
+ exportDatabase(input) {
27692
+ return this._sendTransaction(APIFunctions.exportDatabase, input);
27693
+ }
27355
27694
  findBalanceMany(input) {
27356
27695
  return this._sendTransaction(APIFunctions.findBalanceMany, input);
27357
27696
  }
@@ -27376,6 +27715,12 @@ var BaseClient = class {
27376
27715
  getBalanceHistory(input) {
27377
27716
  return this._sendTransaction(APIFunctions.getBalanceHistory, input);
27378
27717
  }
27718
+ getDatabaseExportProgress(input) {
27719
+ return this._sendTransaction(APIFunctions.getDatabaseExportProgress, input);
27720
+ }
27721
+ getDatabaseImportProgress(input) {
27722
+ return this._sendTransaction(APIFunctions.getDatabaseImportProgress, input);
27723
+ }
27379
27724
  getFlags(input) {
27380
27725
  return this._sendTransaction(APIFunctions.getFlags, input);
27381
27726
  }
@@ -27412,6 +27757,12 @@ var BaseClient = class {
27412
27757
  }
27413
27758
  return this._streamTransaction(APIFunctions.importActions, isImportActionsTxInput, input, transform);
27414
27759
  }
27760
+ importDatabase(input) {
27761
+ return this._sendTransaction(APIFunctions.importDatabase, input);
27762
+ }
27763
+ listDatabaseBackups(input) {
27764
+ return this._sendTransaction(APIFunctions.listDatabaseBackups, input);
27765
+ }
27415
27766
  query(input) {
27416
27767
  return this._sendTransaction(APIFunctions.query, input);
27417
27768
  }
@@ -27471,7 +27822,7 @@ var SocketStatuses;
27471
27822
  })(SocketStatuses || (SocketStatuses = {}));
27472
27823
 
27473
27824
  // package.json
27474
- var version = "0.5.1";
27825
+ var version = "0.6.3";
27475
27826
 
27476
27827
  // src/api/ws-client.ts
27477
27828
  function createClient(opts) {
@@ -27570,17 +27921,17 @@ var WsClient = class extends BaseClient {
27570
27921
  _ready() {
27571
27922
  this._setConnected(true);
27572
27923
  this._connection.onmessage = (event) => {
27573
- const { data, type: type160 } = event;
27574
- debugLog(`message(type:${type160},data:${data})`);
27575
- if (type160 === "message") {
27924
+ const { data, type: type170 } = event;
27925
+ debugLog(`message(type:${type170},data:${data})`);
27926
+ if (type170 === "message") {
27576
27927
  const obj = JSON.parse(data.toString());
27577
27928
  this._handleMessage(obj);
27578
27929
  this._heartbeat();
27579
27930
  }
27580
27931
  };
27581
27932
  this._connection.onerror = (event) => {
27582
- const { message, error, type: type160 } = event;
27583
- debugLog(`error(message:${message},error:${error},type:${type160})`);
27933
+ const { message, error, type: type170 } = event;
27934
+ debugLog(`error(message:${message},error:${error},type:${type170})`);
27584
27935
  };
27585
27936
  this._connection.onclose = (event) => {
27586
27937
  const { reason, code, wasClean } = event;
@@ -28739,13 +29090,13 @@ function findTransferGroups(options, input, fnOptions) {
28739
29090
  if (error) {
28740
29091
  throw error;
28741
29092
  }
28742
- const { identifier, transfer_status, status, metadata, type: type160 } = inputCopy;
29093
+ const { identifier, transfer_status, status, metadata, type: type170 } = inputCopy;
28743
29094
  const filter = {
28744
29095
  identifier,
28745
29096
  transfer_status,
28746
29097
  status,
28747
29098
  metadata,
28748
- type: type160
29099
+ type: type170
28749
29100
  };
28750
29101
  if (inputCopy.reverses) {
28751
29102
  filter.reverses = getIdentifierFilter(inputCopy.reverses);
@@ -29586,12 +29937,12 @@ function updateTransferGroups(options, input, fnOptions) {
29586
29937
  if (error) {
29587
29938
  throw error;
29588
29939
  }
29589
- const { transfer_status, status, metadata, type: type160, update } = inputCopy;
29940
+ const { transfer_status, status, metadata, type: type170, update } = inputCopy;
29590
29941
  const filter = {
29591
29942
  transfer_status,
29592
29943
  status,
29593
29944
  metadata,
29594
- type: type160
29945
+ type: type170
29595
29946
  };
29596
29947
  if (inputCopy.reverses) {
29597
29948
  filter.reverses = getIdentifierFilter(inputCopy.reverses);
@@ -30092,6 +30443,8 @@ var utils = {
30092
30443
  DbModelNameEnum,
30093
30444
  ErrorMessage,
30094
30445
  Errors,
30446
+ ExportDatabaseTxInputSchema,
30447
+ ExportDatabaseTxOutputSchema,
30095
30448
  FindBalanceManyTxInputSchema,
30096
30449
  FindBalanceManyTxOutputSchema,
30097
30450
  FindBalancesFnInputSchema,
@@ -30123,6 +30476,10 @@ var utils = {
30123
30476
  GetBalanceHistoryTxOutputSchema,
30124
30477
  GetBalanceTxInputSchema,
30125
30478
  GetBalanceTxOutputSchema,
30479
+ GetDatabaseExportProgressTxInputSchema,
30480
+ GetDatabaseExportProgressTxOutputSchema,
30481
+ GetDatabaseImportProgressTxInputSchema,
30482
+ GetDatabaseImportProgressTxOutputSchema,
30126
30483
  GetFlagsFnInputSchema,
30127
30484
  GetFlagsFnOutputSchema,
30128
30485
  GetFlagsTxInputSchema,
@@ -30160,6 +30517,10 @@ var utils = {
30160
30517
  ImportActionsTxOutputSchema,
30161
30518
  ImportDataFnInputSchema,
30162
30519
  ImportDataFnOutputSchema,
30520
+ ImportDatabaseTxInputSchema,
30521
+ ImportDatabaseTxOutputSchema,
30522
+ ListDatabaseBackupsTxInputSchema,
30523
+ ListDatabaseBackupsTxOutputSchema,
30163
30524
  QueryBuilder,
30164
30525
  QueryLogsTxInputSchema,
30165
30526
  QueryLogsTxOutputSchema,