@canton-network/core-splice-client 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,345 @@
1
+ export interface paths {
2
+ '/v0/scan-proxy/dso-party-id': {
3
+ get: operations['getDsoPartyId'];
4
+ };
5
+ '/v0/scan-proxy/featured-apps/{provider_party_id}': {
6
+ get: operations['lookupFeaturedAppRight'];
7
+ };
8
+ '/v0/scan-proxy/open-and-issuing-mining-rounds': {
9
+ get: operations['getOpenAndIssuingMiningRounds'];
10
+ };
11
+ '/v0/scan-proxy/amulet-rules': {
12
+ get: operations['getAmuletRules'];
13
+ };
14
+ '/v0/scan-proxy/ans-entries/by-party/{party}': {
15
+ get: operations['lookupAnsEntryByParty'];
16
+ };
17
+ '/v0/scan-proxy/ans-entries': {
18
+ get: operations['listAnsEntries'];
19
+ };
20
+ '/v0/scan-proxy/ans-entries/by-name/{name}': {
21
+ get: operations['lookupAnsEntryByName'];
22
+ };
23
+ '/v0/scan-proxy/ans-rules': {
24
+ post: operations['getAnsRules'];
25
+ };
26
+ '/v0/scan-proxy/transfer-preapprovals/by-party/{party}': {
27
+ get: operations['lookupTransferPreapprovalByParty'];
28
+ };
29
+ '/v0/scan-proxy/transfer-command-counter/{party}': {
30
+ get: operations['lookupTransferCommandCounterByParty'];
31
+ };
32
+ '/v0/scan-proxy/transfer-command/status': {
33
+ /** @description Retrieve the status of all transfer commands of the given sender for the specified nonce. */
34
+ get: operations['lookupTransferCommandStatus'];
35
+ };
36
+ }
37
+ export type webhooks = Record<string, never>;
38
+ export interface components {
39
+ schemas: {
40
+ GetOpenAndIssuingMiningRoundsProxyResponse: {
41
+ open_mining_rounds: components['schemas']['ContractWithState'][];
42
+ issuing_mining_rounds: components['schemas']['ContractWithState'][];
43
+ };
44
+ GetAmuletRulesProxyResponse: {
45
+ amulet_rules: components['schemas']['ContractWithState'];
46
+ };
47
+ GetDsoPartyIdResponse: {
48
+ dso_party_id: string;
49
+ };
50
+ Contract: {
51
+ template_id: string;
52
+ contract_id: string;
53
+ payload: Record<string, never>;
54
+ created_event_blob: string;
55
+ created_at: string;
56
+ };
57
+ /** @description If defined, a contract of Daml template `Splice.Amulet.FeaturedAppRight`. */
58
+ LookupFeaturedAppRightResponse: {
59
+ featured_app_right?: components['schemas']['Contract'];
60
+ };
61
+ ContractWithState: {
62
+ contract: components['schemas']['Contract'];
63
+ domain_id?: string;
64
+ };
65
+ AnsEntry: {
66
+ /**
67
+ * @description If present, Daml contract ID of template `Splice.Ans:AnsEntry`.
68
+ * If absent, this is a DSO-provided entry for either the DSO or an SV.
69
+ */
70
+ contract_id?: string;
71
+ /** @description Owner party ID of this ANS entry. */
72
+ user: string;
73
+ /** @description The ANS entry name. */
74
+ name: string;
75
+ /** @description Either empty, or an http/https URL supplied by the `user`. */
76
+ url: string;
77
+ /** @description Arbitrary description text supplied by `user`; may be empty. */
78
+ description: string;
79
+ /**
80
+ * Format: date-time
81
+ * @description Time after which this ANS entry expires; if renewed, it will have a
82
+ * new `contract_id` and `expires_at`.
83
+ * If `null` or absent, does not expire; this is the case only for
84
+ * special entries provided by the DSO.
85
+ */
86
+ expires_at?: string;
87
+ };
88
+ LookupEntryByPartyResponse: {
89
+ entry: components['schemas']['AnsEntry'];
90
+ };
91
+ ErrorResponse: {
92
+ error: string;
93
+ };
94
+ ListEntriesResponse: {
95
+ entries: components['schemas']['AnsEntry'][];
96
+ };
97
+ LookupEntryByNameResponse: {
98
+ entry: components['schemas']['AnsEntry'];
99
+ };
100
+ ContractId: string;
101
+ GetAnsRulesRequest: {
102
+ cached_ans_rules_contract_id?: components['schemas']['ContractId'];
103
+ cached_ans_rules_domain_id?: string;
104
+ };
105
+ MaybeCachedContractWithState: {
106
+ contract?: components['schemas']['Contract'];
107
+ domain_id?: string;
108
+ };
109
+ /** @description A contract state update of Daml template `Splice.Ans.AnsRules`. */
110
+ GetAnsRulesResponse: {
111
+ ans_rules_update: components['schemas']['MaybeCachedContractWithState'];
112
+ };
113
+ /** @description A Daml contract of template `Splice.AmuletRules:TransferPreapproval`. */
114
+ LookupTransferPreapprovalByPartyResponse: {
115
+ transfer_preapproval: components['schemas']['ContractWithState'];
116
+ };
117
+ /** @description A Daml contract of template `Splice.ExternalPartyAmuletRules:TransferCommandCounter`. */
118
+ LookupTransferCommandCounterByPartyResponse: {
119
+ transfer_command_counter: components['schemas']['ContractWithState'];
120
+ };
121
+ BaseLookupTransferCommandStatusResponse: {
122
+ /**
123
+ * @description The status of the transfer command.
124
+ * created:
125
+ * The transfer command has been created and is waiting for automation to complete it.
126
+ * sent:
127
+ * The transfer command has been completed and the transfer to the receiver has finished.
128
+ * failed:
129
+ * The transfer command has failed permanently and nothing has been transferred. Refer to
130
+ * failure_reason for details. A new transfer command can be created.
131
+ */
132
+ status: string;
133
+ };
134
+ TransferCommandCreatedResponse: components['schemas']['BaseLookupTransferCommandStatusResponse'];
135
+ TransferCommandSentResponse: components['schemas']['BaseLookupTransferCommandStatusResponse'];
136
+ TransferCommandFailedResponse: components['schemas']['BaseLookupTransferCommandStatusResponse'] & {
137
+ /**
138
+ * @description The reason for the failure of the TransferCommand.
139
+ * failed:
140
+ * Completing the transfer failed, check the reason for details.
141
+ * withdrawn:
142
+ * The sender has withdrawn the TransferCommand before it could be completed.
143
+ * expired:
144
+ * The expiry time on the TransferCommand was reached before it could be completed.
145
+ *
146
+ * @enum {string}
147
+ */
148
+ failure_kind: 'failed' | 'expired' | 'withdrawn';
149
+ /** @description Human readable description of the failure */
150
+ reason: string;
151
+ };
152
+ TransferCommandContractStatus: components['schemas']['TransferCommandCreatedResponse'] | components['schemas']['TransferCommandSentResponse'] | components['schemas']['TransferCommandFailedResponse'];
153
+ /**
154
+ * @description A contract of Daml template `Splice.ExternalPartyAmuletRules:TransferCommand`,
155
+ * and its status determined by the latest transactions.
156
+ */
157
+ TransferCommandContractWithStatus: {
158
+ contract: components['schemas']['Contract'];
159
+ status: components['schemas']['TransferCommandContractStatus'];
160
+ };
161
+ TransferCommandMap: {
162
+ [key: string]: components['schemas']['TransferCommandContractWithStatus'];
163
+ };
164
+ LookupTransferCommandStatusResponse: {
165
+ transfer_commands_by_contract_id: components['schemas']['TransferCommandMap'];
166
+ };
167
+ };
168
+ responses: {
169
+ /** @description not found */
170
+ 404: {
171
+ content: {
172
+ 'application/json': components['schemas']['ErrorResponse'];
173
+ };
174
+ };
175
+ };
176
+ parameters: never;
177
+ requestBodies: never;
178
+ headers: never;
179
+ pathItems: never;
180
+ }
181
+ export type $defs = Record<string, never>;
182
+ export type external = Record<string, never>;
183
+ export interface operations {
184
+ getDsoPartyId: {
185
+ responses: {
186
+ /** @description ok */
187
+ 200: {
188
+ content: {
189
+ 'application/json': components['schemas']['GetDsoPartyIdResponse'];
190
+ };
191
+ };
192
+ };
193
+ };
194
+ lookupFeaturedAppRight: {
195
+ parameters: {
196
+ path: {
197
+ provider_party_id: string;
198
+ };
199
+ };
200
+ responses: {
201
+ /** @description ok */
202
+ 200: {
203
+ content: {
204
+ 'application/json': components['schemas']['LookupFeaturedAppRightResponse'];
205
+ };
206
+ };
207
+ };
208
+ };
209
+ getOpenAndIssuingMiningRounds: {
210
+ responses: {
211
+ /** @description ok */
212
+ 200: {
213
+ content: {
214
+ 'application/json': components['schemas']['GetOpenAndIssuingMiningRoundsProxyResponse'];
215
+ };
216
+ };
217
+ };
218
+ };
219
+ getAmuletRules: {
220
+ responses: {
221
+ /** @description ok */
222
+ 200: {
223
+ content: {
224
+ 'application/json': components['schemas']['GetAmuletRulesProxyResponse'];
225
+ };
226
+ };
227
+ };
228
+ };
229
+ lookupAnsEntryByParty: {
230
+ parameters: {
231
+ path: {
232
+ party: string;
233
+ };
234
+ };
235
+ responses: {
236
+ /** @description ok */
237
+ 200: {
238
+ content: {
239
+ 'application/json': components['schemas']['LookupEntryByPartyResponse'];
240
+ };
241
+ };
242
+ 404: components['responses']['404'];
243
+ };
244
+ };
245
+ listAnsEntries: {
246
+ parameters: {
247
+ query: {
248
+ name_prefix?: string;
249
+ page_size: number;
250
+ };
251
+ };
252
+ responses: {
253
+ /** @description ok */
254
+ 200: {
255
+ content: {
256
+ 'application/json': components['schemas']['ListEntriesResponse'];
257
+ };
258
+ };
259
+ };
260
+ };
261
+ lookupAnsEntryByName: {
262
+ parameters: {
263
+ path: {
264
+ name: string;
265
+ };
266
+ };
267
+ responses: {
268
+ /** @description ok */
269
+ 200: {
270
+ content: {
271
+ 'application/json': components['schemas']['LookupEntryByNameResponse'];
272
+ };
273
+ };
274
+ 404: components['responses']['404'];
275
+ };
276
+ };
277
+ getAnsRules: {
278
+ requestBody: {
279
+ content: {
280
+ 'application/json': components['schemas']['GetAnsRulesRequest'];
281
+ };
282
+ };
283
+ responses: {
284
+ /** @description ok */
285
+ 200: {
286
+ content: {
287
+ 'application/json': components['schemas']['GetAnsRulesResponse'];
288
+ };
289
+ };
290
+ };
291
+ };
292
+ lookupTransferPreapprovalByParty: {
293
+ parameters: {
294
+ path: {
295
+ party: string;
296
+ };
297
+ };
298
+ responses: {
299
+ /** @description ok */
300
+ 200: {
301
+ content: {
302
+ 'application/json': components['schemas']['LookupTransferPreapprovalByPartyResponse'];
303
+ };
304
+ };
305
+ 404: components['responses']['404'];
306
+ };
307
+ };
308
+ lookupTransferCommandCounterByParty: {
309
+ parameters: {
310
+ path: {
311
+ party: string;
312
+ };
313
+ };
314
+ responses: {
315
+ /** @description ok */
316
+ 200: {
317
+ content: {
318
+ 'application/json': components['schemas']['LookupTransferCommandCounterByPartyResponse'];
319
+ };
320
+ };
321
+ /** @description No TransferCommandCounter exists for this party. This means the nonce that should be used is 0. */
322
+ 404: components['responses']['404'];
323
+ };
324
+ };
325
+ /** @description Retrieve the status of all transfer commands of the given sender for the specified nonce. */
326
+ lookupTransferCommandStatus: {
327
+ parameters: {
328
+ query: {
329
+ sender: string;
330
+ nonce: number;
331
+ };
332
+ };
333
+ responses: {
334
+ /** @description ok */
335
+ 200: {
336
+ content: {
337
+ 'application/json': components['schemas']['LookupTransferCommandStatusResponse'];
338
+ };
339
+ };
340
+ /** @description No TransferCommand exists with this contract id within the last 24h */
341
+ 404: components['responses']['404'];
342
+ };
343
+ };
344
+ }
345
+ //# sourceMappingURL=scan-proxy.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"scan-proxy.d.ts","sourceRoot":"","sources":["../../src/generated-clients/scan-proxy.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,3 @@
1
+ // Copyright (c) 2025 Digital Asset (Switzerland) GmbH and/or its affiliates. All rights reserved.
2
+ // SPDX-License-Identifier: Apache-2.0
3
+ export {};