@start9labs/start-sdk 0.4.0-beta.37 → 0.4.0-beta.38

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.
@@ -0,0 +1,6 @@
1
+ import type { GatewayId } from "./GatewayId";
2
+ export type GatewayInfo = {
3
+ id: GatewayId;
4
+ name: string;
5
+ public: boolean;
6
+ };
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=GatewayInfo.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"GatewayInfo.js","sourceRoot":"","sources":["../../../../base/lib/osBindings/GatewayInfo.ts"],"names":[],"mappings":""}
@@ -1,8 +1,9 @@
1
+ import type { GatewayInfo } from "./GatewayInfo";
1
2
  import type { IpHostname } from "./IpHostname";
2
3
  import type { OnionHostname } from "./OnionHostname";
3
4
  export type HostnameInfo = {
4
5
  kind: "ip";
5
- gatewayId: string;
6
+ gateway: GatewayInfo;
6
7
  public: boolean;
7
8
  hostname: IpHostname;
8
9
  } | {
@@ -80,6 +80,7 @@ export { ForgetGatewayParams } from "./ForgetGatewayParams";
80
80
  export { FullIndex } from "./FullIndex";
81
81
  export { FullProgress } from "./FullProgress";
82
82
  export { GatewayId } from "./GatewayId";
83
+ export { GatewayInfo } from "./GatewayInfo";
83
84
  export { GetActionInputParams } from "./GetActionInputParams";
84
85
  export { GetContainerIpParams } from "./GetContainerIpParams";
85
86
  export { GetHostInfoParams } from "./GetHostInfoParams";
@@ -3,21 +3,20 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.inputSpecSpec = void 0;
4
4
  const output_sdk_1 = require("./output.sdk");
5
5
  const { InputSpec, List, Value, Variants } = output_sdk_1.sdk;
6
- exports.inputSpecSpec = InputSpec.of({
7
- mediasources: Value.multiselect({
8
- name: "Media Sources",
9
- minLength: null,
10
- maxLength: null,
11
- default: ["nextcloud"],
12
- description: "List of Media Sources to use with Jellyfin",
13
- warning: null,
14
- values: {
15
- nextcloud: "NextCloud",
16
- filebrowser: "File Browser",
17
- },
18
- }),
19
- testListUnion: Value.list(
20
- /* TODO: Convert range for this value ([1,*))*/ List.obj({
6
+ exports.inputSpecSpec = InputSpec.of({ "mediasources": Value.multiselect({
7
+ "name": "Media Sources",
8
+ "minLength": null,
9
+ "maxLength": null,
10
+ "default": [
11
+ "nextcloud"
12
+ ],
13
+ "description": "List of Media Sources to use with Jellyfin",
14
+ "warning": null,
15
+ "values": {
16
+ "nextcloud": "NextCloud",
17
+ "filebrowser": "File Browser"
18
+ }
19
+ }), "testListUnion": Value.list(/* TODO: Convert range for this value ([1,*))*/ List.obj({
21
20
  name: "Lightning Nodes",
22
21
  minLength: null,
23
22
  maxLength: null,
@@ -26,419 +25,331 @@ exports.inputSpecSpec = InputSpec.of({
26
25
  warning: null,
27
26
  }, {
28
27
  spec: InputSpec.of({
29
- /* TODO: Convert range for this value ([1,*))*/
30
- union: Value.union({
28
+ "union": /* TODO: Convert range for this value ([1,*))*/ Value.union({
31
29
  name: "Type",
32
30
  description: "- LND: Lightning Network Daemon from Lightning Labs\n- CLN: Core Lightning from Blockstream\n",
33
31
  warning: null,
34
32
  default: "lnd",
35
- variants: Variants.of({
36
- lnd: {
37
- name: "lnd",
38
- spec: InputSpec.of({
39
- name: Value.text({
40
- name: "Node Name",
41
- default: "LND Wrapper",
42
- required: true,
43
- description: "Name of this node in the list",
44
- warning: null,
45
- masked: false,
46
- placeholder: null,
47
- inputmode: "text",
48
- patterns: [],
49
- minLength: null,
50
- maxLength: null,
51
- }),
52
- }),
53
- },
54
- }),
55
- }),
33
+ variants: Variants.of({ "lnd": { name: "lnd", spec: InputSpec.of({ "name": Value.text({
34
+ "name": "Node Name",
35
+ "default": "LND Wrapper",
36
+ "required": true,
37
+ "description": "Name of this node in the list",
38
+ "warning": null,
39
+ "masked": false,
40
+ "placeholder": null,
41
+ "inputmode": "text",
42
+ "patterns": [],
43
+ "minLength": null,
44
+ "maxLength": null
45
+ }), }) }, }),
46
+ })
56
47
  }),
57
48
  displayAs: "{{name}}",
58
49
  uniqueBy: "name",
59
- })),
60
- rpc: Value.object({
50
+ })), "rpc": Value.object({
61
51
  name: "RPC Settings",
62
52
  description: "RPC configuration options.",
63
- }, InputSpec.of({
64
- enable: Value.toggle({
65
- name: "Enable",
66
- default: true,
67
- description: "Allow remote RPC requests.",
68
- warning: null,
69
- }),
70
- username: Value.text({
71
- name: "Username",
72
- default: "bitcoin",
73
- required: true,
74
- description: "The username for connecting to Bitcoin over RPC.",
75
- warning: null,
76
- masked: true,
77
- placeholder: null,
78
- inputmode: "text",
79
- patterns: [
53
+ }, InputSpec.of({ "enable": Value.toggle({
54
+ "name": "Enable",
55
+ "default": true,
56
+ "description": "Allow remote RPC requests.",
57
+ "warning": null
58
+ }), "username": Value.text({
59
+ "name": "Username",
60
+ "default": "bitcoin",
61
+ "required": true,
62
+ "description": "The username for connecting to Bitcoin over RPC.",
63
+ "warning": null,
64
+ "masked": true,
65
+ "placeholder": null,
66
+ "inputmode": "text",
67
+ "patterns": [
80
68
  {
81
- regex: "^[a-zA-Z0-9_]+$",
82
- description: "Must be alphanumeric (can contain underscore).",
83
- },
69
+ "regex": "^[a-zA-Z0-9_]+$",
70
+ "description": "Must be alphanumeric (can contain underscore)."
71
+ }
84
72
  ],
85
- minLength: null,
86
- maxLength: null,
87
- }),
88
- password: Value.text({
89
- name: "RPC Password",
90
- default: {
91
- charset: "a-z,2-7",
92
- len: 20,
73
+ "minLength": null,
74
+ "maxLength": null
75
+ }), "password": Value.text({
76
+ "name": "RPC Password",
77
+ "default": {
78
+ "charset": "a-z,2-7",
79
+ "len": 20
93
80
  },
94
- required: true,
95
- description: "The password for connecting to Bitcoin over RPC.",
96
- warning: null,
97
- masked: true,
98
- placeholder: null,
99
- inputmode: "text",
100
- patterns: [
81
+ "required": true,
82
+ "description": "The password for connecting to Bitcoin over RPC.",
83
+ "warning": null,
84
+ "masked": true,
85
+ "placeholder": null,
86
+ "inputmode": "text",
87
+ "patterns": [
101
88
  {
102
- regex: '^[^\\n"]*$',
103
- description: "Must not contain newline or quote characters.",
104
- },
89
+ "regex": "^[^\\n\"]*$",
90
+ "description": "Must not contain newline or quote characters."
91
+ }
105
92
  ],
106
- minLength: null,
107
- maxLength: null,
108
- }),
109
- bio: Value.textarea({
110
- name: "Username",
111
- description: "The username for connecting to Bitcoin over RPC.",
112
- warning: null,
113
- required: true,
114
- default: "bitcoin",
115
- placeholder: null,
116
- maxLength: null,
117
- minLength: null,
118
- }),
119
- advanced: Value.object({
93
+ "minLength": null,
94
+ "maxLength": null
95
+ }), "bio": Value.textarea({
96
+ "name": "Username",
97
+ "description": "The username for connecting to Bitcoin over RPC.",
98
+ "warning": null,
99
+ "required": true,
100
+ "default": "bitcoin",
101
+ "placeholder": null,
102
+ "maxLength": null,
103
+ "minLength": null
104
+ }), "advanced": Value.object({
120
105
  name: "Advanced",
121
106
  description: "Advanced RPC Settings",
122
- }, InputSpec.of({
123
- auth: Value.list(
124
- /* TODO: Convert range for this value ([0,*))*/ List.text({
125
- name: "Authorization",
126
- minLength: null,
127
- maxLength: null,
128
- default: [],
129
- description: "Username and hashed password for JSON-RPC connections. RPC clients connect using the usual http basic authentication.",
130
- warning: null,
131
- }, {
132
- masked: false,
133
- placeholder: null,
134
- patterns: [
135
- {
136
- regex: "^[a-zA-Z0-9_-]+:([0-9a-fA-F]{2})+\\$([0-9a-fA-F]{2})+$",
137
- description: 'Each item must be of the form "<USERNAME>:<SALT>$<HASH>".',
138
- },
139
- ],
140
- minLength: null,
141
- maxLength: null,
142
- })),
143
- serialversion: Value.select({
144
- name: "Serialization Version",
145
- description: "Return raw transaction or block hex with Segwit or non-SegWit serialization.",
146
- warning: null,
147
- default: "segwit",
148
- values: {
107
+ }, InputSpec.of({ "auth": Value.list(/* TODO: Convert range for this value ([0,*))*/ List.text({
108
+ "name": "Authorization",
109
+ "minLength": null,
110
+ "maxLength": null,
111
+ "default": [],
112
+ "description": "Username and hashed password for JSON-RPC connections. RPC clients connect using the usual http basic authentication.",
113
+ "warning": null
114
+ }, { "masked": false, "placeholder": null, "patterns": [{ "regex": "^[a-zA-Z0-9_-]+:([0-9a-fA-F]{2})+\\$([0-9a-fA-F]{2})+$", "description": "Each item must be of the form \"<USERNAME>:<SALT>$<HASH>\"." }], "minLength": null, "maxLength": null })), "serialversion": Value.select({
115
+ "name": "Serialization Version",
116
+ "description": "Return raw transaction or block hex with Segwit or non-SegWit serialization.",
117
+ "warning": null,
118
+ "default": "segwit",
119
+ "values": {
149
120
  "non-segwit": "non-segwit",
150
- segwit: "segwit",
151
- },
152
- }),
153
- servertimeout:
154
- /* TODO: Convert range for this value ([5,300])*/ Value.number({
155
- name: "Rpc Server Timeout",
156
- description: "Number of seconds after which an uncompleted RPC call will time out.",
157
- warning: null,
158
- default: 30,
159
- required: true,
160
- min: null,
161
- max: null,
162
- step: null,
163
- integer: true,
164
- units: "seconds",
165
- placeholder: null,
166
- }),
167
- threads:
168
- /* TODO: Convert range for this value ([1,64])*/ Value.number({
169
- name: "Threads",
170
- description: "Set the number of threads for handling RPC calls. You may wish to increase this if you are making lots of calls via an integration.",
171
- warning: null,
172
- default: 16,
173
- required: true,
174
- min: null,
175
- max: null,
176
- step: null,
177
- integer: true,
178
- units: null,
179
- placeholder: null,
180
- }),
181
- workqueue:
182
- /* TODO: Convert range for this value ([8,256])*/ Value.number({
183
- name: "Work Queue",
184
- description: "Set the depth of the work queue to service RPC calls. Determines how long the backlog of RPC requests can get before it just rejects new ones.",
185
- warning: null,
186
- default: 128,
187
- required: true,
188
- min: null,
189
- max: null,
190
- step: null,
191
- integer: true,
192
- units: "requests",
193
- placeholder: null,
194
- }),
195
- })),
196
- })),
197
- "zmq-enabled": Value.toggle({
198
- name: "ZeroMQ Enabled",
199
- default: true,
200
- description: "Enable the ZeroMQ interface",
201
- warning: null,
202
- }),
203
- txindex: Value.toggle({
204
- name: "Transaction Index",
205
- default: true,
206
- description: "Enable the Transaction Index (txindex)",
207
- warning: null,
208
- }),
209
- wallet: Value.object({
121
+ "segwit": "segwit"
122
+ }
123
+ }), "servertimeout": /* TODO: Convert range for this value ([5,300])*/ Value.number({
124
+ "name": "Rpc Server Timeout",
125
+ "description": "Number of seconds after which an uncompleted RPC call will time out.",
126
+ "warning": null,
127
+ "default": 30,
128
+ "required": true,
129
+ "min": null,
130
+ "max": null,
131
+ "step": null,
132
+ "integer": true,
133
+ "units": "seconds",
134
+ "placeholder": null
135
+ }), "threads": /* TODO: Convert range for this value ([1,64])*/ Value.number({
136
+ "name": "Threads",
137
+ "description": "Set the number of threads for handling RPC calls. You may wish to increase this if you are making lots of calls via an integration.",
138
+ "warning": null,
139
+ "default": 16,
140
+ "required": true,
141
+ "min": null,
142
+ "max": null,
143
+ "step": null,
144
+ "integer": true,
145
+ "units": null,
146
+ "placeholder": null
147
+ }), "workqueue": /* TODO: Convert range for this value ([8,256])*/ Value.number({
148
+ "name": "Work Queue",
149
+ "description": "Set the depth of the work queue to service RPC calls. Determines how long the backlog of RPC requests can get before it just rejects new ones.",
150
+ "warning": null,
151
+ "default": 128,
152
+ "required": true,
153
+ "min": null,
154
+ "max": null,
155
+ "step": null,
156
+ "integer": true,
157
+ "units": "requests",
158
+ "placeholder": null
159
+ }), })), })), "zmq-enabled": Value.toggle({
160
+ "name": "ZeroMQ Enabled",
161
+ "default": true,
162
+ "description": "Enable the ZeroMQ interface",
163
+ "warning": null
164
+ }), "txindex": Value.toggle({
165
+ "name": "Transaction Index",
166
+ "default": true,
167
+ "description": "Enable the Transaction Index (txindex)",
168
+ "warning": null
169
+ }), "wallet": Value.object({
210
170
  name: "Wallet",
211
171
  description: "Wallet Settings",
212
- }, InputSpec.of({
213
- enable: Value.toggle({
214
- name: "Enable Wallet",
215
- default: true,
216
- description: "Load the wallet and enable wallet RPC calls.",
217
- warning: null,
218
- }),
219
- avoidpartialspends: Value.toggle({
220
- name: "Avoid Partial Spends",
221
- default: true,
222
- description: "Group outputs by address, selecting all or none, instead of selecting on a per-output basis. This improves privacy at the expense of higher transaction fees.",
223
- warning: null,
224
- }),
225
- discardfee:
226
- /* TODO: Convert range for this value ([0,.01])*/ Value.number({
227
- name: "Discard Change Tolerance",
228
- description: "The fee rate (in BTC/kB) that indicates your tolerance for discarding change by adding it to the fee.",
229
- warning: null,
230
- default: 0.0001,
231
- required: true,
232
- min: null,
233
- max: null,
234
- step: null,
235
- integer: false,
236
- units: "BTC/kB",
237
- placeholder: null,
238
- }),
239
- })),
240
- advanced: Value.object({
172
+ }, InputSpec.of({ "enable": Value.toggle({
173
+ "name": "Enable Wallet",
174
+ "default": true,
175
+ "description": "Load the wallet and enable wallet RPC calls.",
176
+ "warning": null
177
+ }), "avoidpartialspends": Value.toggle({
178
+ "name": "Avoid Partial Spends",
179
+ "default": true,
180
+ "description": "Group outputs by address, selecting all or none, instead of selecting on a per-output basis. This improves privacy at the expense of higher transaction fees.",
181
+ "warning": null
182
+ }), "discardfee": /* TODO: Convert range for this value ([0,.01])*/ Value.number({
183
+ "name": "Discard Change Tolerance",
184
+ "description": "The fee rate (in BTC/kB) that indicates your tolerance for discarding change by adding it to the fee.",
185
+ "warning": null,
186
+ "default": 0.0001,
187
+ "required": true,
188
+ "min": null,
189
+ "max": null,
190
+ "step": null,
191
+ "integer": false,
192
+ "units": "BTC/kB",
193
+ "placeholder": null
194
+ }), })), "advanced": Value.object({
241
195
  name: "Advanced",
242
196
  description: "Advanced Settings",
243
- }, InputSpec.of({
244
- mempool: Value.object({
197
+ }, InputSpec.of({ "mempool": Value.object({
245
198
  name: "Mempool",
246
199
  description: "Mempool Settings",
247
- }, InputSpec.of({
248
- mempoolfullrbf: Value.toggle({
249
- name: "Enable Full RBF",
250
- default: false,
251
- description: "Policy for your node to use for relaying and mining unconfirmed transactions. For details, see https://github.com/bitcoin/bitcoin/blob/master/doc/release-notes/release-notes-24.0.md#notice-of-new-option-for-transaction-replacement-policies",
252
- warning: null,
253
- }),
254
- persistmempool: Value.toggle({
255
- name: "Persist Mempool",
256
- default: true,
257
- description: "Save the mempool on shutdown and load on restart.",
258
- warning: null,
259
- }),
260
- maxmempool:
261
- /* TODO: Convert range for this value ([1,*))*/ Value.number({
262
- name: "Max Mempool Size",
263
- description: "Keep the transaction memory pool below <n> megabytes.",
264
- warning: null,
265
- default: 300,
266
- required: true,
267
- min: null,
268
- max: null,
269
- step: null,
270
- integer: true,
271
- units: "MiB",
272
- placeholder: null,
273
- }),
274
- mempoolexpiry:
275
- /* TODO: Convert range for this value ([1,*))*/ Value.number({
276
- name: "Mempool Expiration",
277
- description: "Do not keep transactions in the mempool longer than <n> hours.",
278
- warning: null,
279
- default: 336,
280
- required: true,
281
- min: null,
282
- max: null,
283
- step: null,
284
- integer: true,
285
- units: "Hr",
286
- placeholder: null,
287
- }),
288
- })),
289
- peers: Value.object({
200
+ }, InputSpec.of({ "mempoolfullrbf": Value.toggle({
201
+ "name": "Enable Full RBF",
202
+ "default": false,
203
+ "description": "Policy for your node to use for relaying and mining unconfirmed transactions. For details, see https://github.com/bitcoin/bitcoin/blob/master/doc/release-notes/release-notes-24.0.md#notice-of-new-option-for-transaction-replacement-policies",
204
+ "warning": null
205
+ }), "persistmempool": Value.toggle({
206
+ "name": "Persist Mempool",
207
+ "default": true,
208
+ "description": "Save the mempool on shutdown and load on restart.",
209
+ "warning": null
210
+ }), "maxmempool": /* TODO: Convert range for this value ([1,*))*/ Value.number({
211
+ "name": "Max Mempool Size",
212
+ "description": "Keep the transaction memory pool below <n> megabytes.",
213
+ "warning": null,
214
+ "default": 300,
215
+ "required": true,
216
+ "min": null,
217
+ "max": null,
218
+ "step": null,
219
+ "integer": true,
220
+ "units": "MiB",
221
+ "placeholder": null
222
+ }), "mempoolexpiry": /* TODO: Convert range for this value ([1,*))*/ Value.number({
223
+ "name": "Mempool Expiration",
224
+ "description": "Do not keep transactions in the mempool longer than <n> hours.",
225
+ "warning": null,
226
+ "default": 336,
227
+ "required": true,
228
+ "min": null,
229
+ "max": null,
230
+ "step": null,
231
+ "integer": true,
232
+ "units": "Hr",
233
+ "placeholder": null
234
+ }), })), "peers": Value.object({
290
235
  name: "Peers",
291
236
  description: "Peer Connection Settings",
292
- }, InputSpec.of({
293
- listen: Value.toggle({
294
- name: "Make Public",
295
- default: true,
296
- description: "Allow other nodes to find your server on the network.",
297
- warning: null,
298
- }),
299
- onlyconnect: Value.toggle({
300
- name: "Disable Peer Discovery",
301
- default: false,
302
- description: "Only connect to specified peers.",
303
- warning: null,
304
- }),
305
- onlyonion: Value.toggle({
306
- name: "Disable Clearnet",
307
- default: false,
308
- description: "Only connect to peers over Tor.",
309
- warning: null,
310
- }),
311
- addnode: Value.list(
312
- /* TODO: Convert range for this value ([0,*))*/ List.obj({
237
+ }, InputSpec.of({ "listen": Value.toggle({
238
+ "name": "Make Public",
239
+ "default": true,
240
+ "description": "Allow other nodes to find your server on the network.",
241
+ "warning": null
242
+ }), "onlyconnect": Value.toggle({
243
+ "name": "Disable Peer Discovery",
244
+ "default": false,
245
+ "description": "Only connect to specified peers.",
246
+ "warning": null
247
+ }), "onlyonion": Value.toggle({
248
+ "name": "Disable Clearnet",
249
+ "default": false,
250
+ "description": "Only connect to peers over Tor.",
251
+ "warning": null
252
+ }), "addnode": Value.list(/* TODO: Convert range for this value ([0,*))*/ List.obj({
313
253
  name: "Add Nodes",
314
254
  minLength: null,
315
255
  maxLength: null,
316
256
  default: [],
317
257
  description: "Add addresses of nodes to connect to.",
318
258
  }, {
319
- spec: InputSpec.of({
320
- hostname: Value.text({
321
- name: "Hostname",
322
- default: null,
323
- required: false,
324
- description: "Domain or IP address of bitcoin peer",
325
- warning: null,
326
- masked: false,
327
- placeholder: null,
328
- inputmode: "text",
329
- patterns: [
259
+ spec: InputSpec.of({ "hostname": Value.text({
260
+ "name": "Hostname",
261
+ "default": null,
262
+ "required": false,
263
+ "description": "Domain or IP address of bitcoin peer",
264
+ "warning": null,
265
+ "masked": false,
266
+ "placeholder": null,
267
+ "inputmode": "text",
268
+ "patterns": [
330
269
  {
331
- regex: "(^(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$)|((^(([0-9a-fA-F]{1,4}:){7,7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:)|fe80:(:[0-9a-fA-F]{0,4}){0,4}%[0-9a-zA-Z]{1,}|::(ffff(:0{1,4}){0,1}:){0,1}((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])|([0-9a-fA-F]{1,4}:){1,4}:((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]))$)|(^[a-z2-7]{16}\\.onion$)|(^([a-z0-9]([a-z0-9-]{0,61}[a-z0-9])?\\.)+[a-z0-9][a-z0-9-]{0,61}[a-z0-9]$))",
332
- description: "Must be either a domain name, or an IPv4 or IPv6 address. Do not include protocol scheme (eg 'http://') or port.",
333
- },
270
+ "regex": "(^(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$)|((^(([0-9a-fA-F]{1,4}:){7,7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:)|fe80:(:[0-9a-fA-F]{0,4}){0,4}%[0-9a-zA-Z]{1,}|::(ffff(:0{1,4}){0,1}:){0,1}((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])|([0-9a-fA-F]{1,4}:){1,4}:((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]))$)|(^[a-z2-7]{16}\\.onion$)|(^([a-z0-9]([a-z0-9-]{0,61}[a-z0-9])?\\.)+[a-z0-9][a-z0-9-]{0,61}[a-z0-9]$))",
271
+ "description": "Must be either a domain name, or an IPv4 or IPv6 address. Do not include protocol scheme (eg 'http://') or port."
272
+ }
334
273
  ],
335
- minLength: null,
336
- maxLength: null,
337
- }),
338
- port: /* TODO: Convert range for this value ([0,65535])*/ Value.number({
339
- name: "Port",
340
- description: "Port that peer is listening on for inbound p2p connections",
341
- warning: null,
342
- default: null,
343
- required: false,
344
- min: null,
345
- max: null,
346
- step: null,
347
- integer: true,
348
- units: null,
349
- placeholder: null,
350
- }),
351
- }),
274
+ "minLength": null,
275
+ "maxLength": null
276
+ }), "port": /* TODO: Convert range for this value ([0,65535])*/ Value.number({
277
+ "name": "Port",
278
+ "description": "Port that peer is listening on for inbound p2p connections",
279
+ "warning": null,
280
+ "default": null,
281
+ "required": false,
282
+ "min": null,
283
+ "max": null,
284
+ "step": null,
285
+ "integer": true,
286
+ "units": null,
287
+ "placeholder": null
288
+ }), }),
352
289
  displayAs: null,
353
290
  uniqueBy: null,
354
- })),
355
- })),
356
- dbcache: /* TODO: Convert range for this value ((0,*))*/ Value.number({
357
- name: "Database Cache",
358
- description: "How much RAM to allocate for caching the TXO set. Higher values improve syncing performance, but increase your chance of using up all your system's memory or corrupting your database in the event of an ungraceful shutdown. Set this high but comfortably below your system's total RAM during IBD, then turn down to 450 (or leave blank) once the sync completes.",
359
- warning: "WARNING: Increasing this value results in a higher chance of ungraceful shutdowns, which can leave your node unusable if it happens during the initial block download. Use this setting with caution. Be sure to set this back to the default (450 or leave blank) once your node is synced. DO NOT press the STOP button if your dbcache is large. Instead, set this number back to the default, hit save, and wait for bitcoind to restart on its own.",
360
- default: null,
361
- required: false,
362
- min: null,
363
- max: null,
364
- step: null,
365
- integer: true,
366
- units: "MiB",
367
- placeholder: null,
368
- }),
369
- pruning: Value.union({
291
+ })), })), "dbcache": /* TODO: Convert range for this value ((0,*))*/ Value.number({
292
+ "name": "Database Cache",
293
+ "description": "How much RAM to allocate for caching the TXO set. Higher values improve syncing performance, but increase your chance of using up all your system's memory or corrupting your database in the event of an ungraceful shutdown. Set this high but comfortably below your system's total RAM during IBD, then turn down to 450 (or leave blank) once the sync completes.",
294
+ "warning": "WARNING: Increasing this value results in a higher chance of ungraceful shutdowns, which can leave your node unusable if it happens during the initial block download. Use this setting with caution. Be sure to set this back to the default (450 or leave blank) once your node is synced. DO NOT press the STOP button if your dbcache is large. Instead, set this number back to the default, hit save, and wait for bitcoind to restart on its own.",
295
+ "default": null,
296
+ "required": false,
297
+ "min": null,
298
+ "max": null,
299
+ "step": null,
300
+ "integer": true,
301
+ "units": "MiB",
302
+ "placeholder": null
303
+ }), "pruning": Value.union({
370
304
  name: "Pruning Settings",
371
- description: '- Disabled: Disable pruning\n- Automatic: Limit blockchain size on disk to a certain number of megabytes\n- Manual: Prune blockchain with the "pruneblockchain" RPC\n',
305
+ description: "- Disabled: Disable pruning\n- Automatic: Limit blockchain size on disk to a certain number of megabytes\n- Manual: Prune blockchain with the \"pruneblockchain\" RPC\n",
372
306
  warning: null,
373
307
  default: "disabled",
374
- variants: Variants.of({
375
- disabled: { name: "Disabled", spec: InputSpec.of({}) },
376
- automatic: {
377
- name: "Automatic",
378
- spec: InputSpec.of({
379
- size: /* TODO: Convert range for this value ([550,1000000))*/ Value.number({
380
- name: "Max Chain Size",
381
- description: "Limit of blockchain size on disk.",
382
- warning: "Increasing this value will require re-syncing your node.",
383
- default: 550,
384
- required: true,
385
- min: null,
386
- max: null,
387
- step: null,
388
- integer: true,
389
- units: "MiB",
390
- placeholder: null,
391
- }),
392
- }),
393
- },
394
- manual: {
395
- name: "Manual",
396
- spec: InputSpec.of({
397
- size: /* TODO: Convert range for this value ([550,1000000))*/ Value.number({
398
- name: "Failsafe Chain Size",
399
- description: "Prune blockchain if size expands beyond this.",
400
- warning: null,
401
- default: 65536,
402
- required: true,
403
- min: null,
404
- max: null,
405
- step: null,
406
- integer: true,
407
- units: "MiB",
408
- placeholder: null,
409
- }),
410
- }),
411
- },
412
- }),
413
- }),
414
- blockfilters: Value.object({
308
+ variants: Variants.of({ "disabled": { name: "Disabled", spec: InputSpec.of({}) }, "automatic": { name: "Automatic", spec: InputSpec.of({ "size": /* TODO: Convert range for this value ([550,1000000))*/ Value.number({
309
+ "name": "Max Chain Size",
310
+ "description": "Limit of blockchain size on disk.",
311
+ "warning": "Increasing this value will require re-syncing your node.",
312
+ "default": 550,
313
+ "required": true,
314
+ "min": null,
315
+ "max": null,
316
+ "step": null,
317
+ "integer": true,
318
+ "units": "MiB",
319
+ "placeholder": null
320
+ }), }) }, "manual": { name: "Manual", spec: InputSpec.of({ "size": /* TODO: Convert range for this value ([550,1000000))*/ Value.number({
321
+ "name": "Failsafe Chain Size",
322
+ "description": "Prune blockchain if size expands beyond this.",
323
+ "warning": null,
324
+ "default": 65536,
325
+ "required": true,
326
+ "min": null,
327
+ "max": null,
328
+ "step": null,
329
+ "integer": true,
330
+ "units": "MiB",
331
+ "placeholder": null
332
+ }), }) }, }),
333
+ }), "blockfilters": Value.object({
415
334
  name: "Block Filters",
416
335
  description: "Settings for storing and serving compact block filters",
417
- }, InputSpec.of({
418
- blockfilterindex: Value.toggle({
419
- name: "Compute Compact Block Filters (BIP158)",
420
- default: true,
421
- description: "Generate Compact Block Filters during initial sync (IBD) to enable 'getblockfilter' RPC. This is useful if dependent services need block filters to efficiently scan for addresses/transactions etc.",
422
- warning: null,
423
- }),
424
- peerblockfilters: Value.toggle({
425
- name: "Serve Compact Block Filters to Peers (BIP157)",
426
- default: false,
427
- description: "Serve Compact Block Filters as a peer service to other nodes on the network. This is useful if you wish to connect an SPV client to your node to make it efficient to scan transactions without having to download all block data. 'Compute Compact Block Filters (BIP158)' is required.",
428
- warning: null,
429
- }),
430
- })),
431
- bloomfilters: Value.object({
336
+ }, InputSpec.of({ "blockfilterindex": Value.toggle({
337
+ "name": "Compute Compact Block Filters (BIP158)",
338
+ "default": true,
339
+ "description": "Generate Compact Block Filters during initial sync (IBD) to enable 'getblockfilter' RPC. This is useful if dependent services need block filters to efficiently scan for addresses/transactions etc.",
340
+ "warning": null
341
+ }), "peerblockfilters": Value.toggle({
342
+ "name": "Serve Compact Block Filters to Peers (BIP157)",
343
+ "default": false,
344
+ "description": "Serve Compact Block Filters as a peer service to other nodes on the network. This is useful if you wish to connect an SPV client to your node to make it efficient to scan transactions without having to download all block data. 'Compute Compact Block Filters (BIP158)' is required.",
345
+ "warning": null
346
+ }), })), "bloomfilters": Value.object({
432
347
  name: "Bloom Filters (BIP37)",
433
348
  description: "Setting for serving Bloom Filters",
434
- }, InputSpec.of({
435
- peerbloomfilters: Value.toggle({
436
- name: "Serve Bloom Filters to Peers",
437
- default: false,
438
- description: "Peers have the option of setting filters on each connection they make after the version handshake has completed. Bloom filters are for clients implementing SPV (Simplified Payment Verification) that want to check that block headers connect together correctly, without needing to verify the full blockchain. The client must trust that the transactions in the chain are in fact valid. It is highly recommended AGAINST using for anything except Bisq integration.",
439
- warning: "This is ONLY for use with Bisq integration, please use Block Filters for all other applications.",
440
- }),
441
- })),
442
- })),
443
- });
349
+ }, InputSpec.of({ "peerbloomfilters": Value.toggle({
350
+ "name": "Serve Bloom Filters to Peers",
351
+ "default": false,
352
+ "description": "Peers have the option of setting filters on each connection they make after the version handshake has completed. Bloom filters are for clients implementing SPV (Simplified Payment Verification) that want to check that block headers connect together correctly, without needing to verify the full blockchain. The client must trust that the transactions in the chain are in fact valid. It is highly recommended AGAINST using for anything except Bisq integration.",
353
+ "warning": "This is ONLY for use with Bisq integration, please use Block Filters for all other applications."
354
+ }), })), })), });
444
355
  //# sourceMappingURL=output.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"output.js","sourceRoot":"","sources":["../../../../package/lib/test/output.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"output.js","sourceRoot":"","sources":["../../../../package/lib/test/output.ts"],"names":[],"mappings":"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"}
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@start9labs/start-sdk",
3
- "version": "0.4.0-beta.37",
3
+ "version": "0.4.0-beta.38",
4
4
  "description": "Software development kit to facilitate packaging services for StartOS",
5
5
  "main": "./package/lib/index.js",
6
6
  "types": "./package/lib/index.d.ts",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@start9labs/start-sdk",
3
- "version": "0.4.0-beta.37",
3
+ "version": "0.4.0-beta.38",
4
4
  "description": "Software development kit to facilitate packaging services for StartOS",
5
5
  "main": "./package/lib/index.js",
6
6
  "types": "./package/lib/index.d.ts",