@canton-network/core-ledger-proto 0.3.0 → 0.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/_proto/com/daml/ledger/api/v2/admin/party_management_service.client.d.ts +70 -0
- package/dist/_proto/com/daml/ledger/api/v2/admin/party_management_service.client.d.ts.map +1 -1
- package/dist/_proto/com/daml/ledger/api/v2/admin/party_management_service.client.js +41 -2
- package/dist/_proto/com/daml/ledger/api/v2/admin/party_management_service.d.ts +208 -0
- package/dist/_proto/com/daml/ledger/api/v2/admin/party_management_service.d.ts.map +1 -1
- package/dist/_proto/com/daml/ledger/api/v2/admin/party_management_service.js +460 -0
- package/dist/_proto/com/daml/ledger/api/v2/command_service.client.d.ts +2 -0
- package/dist/_proto/com/daml/ledger/api/v2/command_service.client.d.ts.map +1 -1
- package/dist/_proto/com/daml/ledger/api/v2/command_service.client.js +1 -0
- package/dist/_proto/com/daml/ledger/api/v2/command_service.d.ts +2 -0
- package/dist/_proto/com/daml/ledger/api/v2/command_service.d.ts.map +1 -1
- package/dist/_proto/com/daml/ledger/api/v2/command_service.js +1 -0
- package/dist/_proto/com/daml/ledger/api/v2/commands.d.ts +2 -1
- package/dist/_proto/com/daml/ledger/api/v2/commands.d.ts.map +1 -1
- package/dist/_proto/com/daml/ledger/api/v2/crypto.d.ts +109 -0
- package/dist/_proto/com/daml/ledger/api/v2/crypto.d.ts.map +1 -0
- package/dist/_proto/com/daml/ledger/api/v2/crypto.js +162 -0
- package/dist/_proto/com/daml/ledger/api/v2/event_query_service.d.ts +2 -1
- package/dist/_proto/com/daml/ledger/api/v2/event_query_service.d.ts.map +1 -1
- package/dist/_proto/com/daml/ledger/api/v2/event_query_service.js +2 -2
- package/dist/_proto/com/daml/ledger/api/v2/interactive/interactive_submission_service.client.d.ts +46 -2
- package/dist/_proto/com/daml/ledger/api/v2/interactive/interactive_submission_service.client.d.ts.map +1 -1
- package/dist/_proto/com/daml/ledger/api/v2/interactive/interactive_submission_service.client.js +25 -1
- package/dist/_proto/com/daml/ledger/api/v2/interactive/interactive_submission_service.d.ts +137 -1
- package/dist/_proto/com/daml/ledger/api/v2/interactive/interactive_submission_service.d.ts.map +1 -1
- package/dist/_proto/com/daml/ledger/api/v2/interactive/interactive_submission_service.js +247 -1
- package/dist/_proto/com/daml/ledger/api/v2/state_service.client.d.ts +6 -4
- package/dist/_proto/com/daml/ledger/api/v2/state_service.client.d.ts.map +1 -1
- package/dist/_proto/com/daml/ledger/api/v2/state_service.client.js +3 -2
- package/dist/_proto/com/daml/ledger/api/v2/state_service.d.ts +9 -4
- package/dist/_proto/com/daml/ledger/api/v2/state_service.d.ts.map +1 -1
- package/dist/_proto/com/daml/ledger/api/v2/state_service.js +4 -4
- package/dist/_proto/com/daml/ledger/api/v2/transaction.d.ts +4 -0
- package/dist/_proto/com/daml/ledger/api/v2/transaction.d.ts.map +1 -1
- package/dist/_proto/com/daml/ledger/api/v2/transaction.js +2 -0
- package/dist/_proto/com/daml/ledger/api/v2/transaction_filter.d.ts +2 -0
- package/dist/_proto/com/daml/ledger/api/v2/transaction_filter.d.ts.map +1 -1
- package/dist/_proto/com/daml/ledger/api/v2/transaction_filter.js +1 -0
- package/dist/_proto/com/daml/ledger/api/v2/update_service.client.d.ts +10 -0
- package/dist/_proto/com/daml/ledger/api/v2/update_service.client.d.ts.map +1 -1
- package/dist/_proto/com/daml/ledger/api/v2/update_service.client.js +5 -0
- package/dist/_proto/com/daml/ledger/api/v2/update_service.d.ts +14 -2
- package/dist/_proto/com/daml/ledger/api/v2/update_service.d.ts.map +1 -1
- package/dist/_proto/com/daml/ledger/api/v2/update_service.js +9 -4
- package/dist/_proto/com/digitalasset/canton/protocol/v30/topology.d.ts +2 -0
- package/dist/_proto/com/digitalasset/canton/protocol/v30/topology.d.ts.map +1 -1
- package/dist/_proto/com/digitalasset/canton/protocol/v30/traffic_control_parameters.d.ts +1 -0
- package/dist/_proto/com/digitalasset/canton/protocol/v30/traffic_control_parameters.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -1,9 +1,13 @@
|
|
|
1
1
|
import type { RpcTransport } from '@protobuf-ts/runtime-rpc';
|
|
2
2
|
import type { ServiceInfo } from '@protobuf-ts/runtime-rpc';
|
|
3
|
+
import type { GenerateExternalPartyTopologyResponse } from './party_management_service.js';
|
|
4
|
+
import type { GenerateExternalPartyTopologyRequest } from './party_management_service.js';
|
|
3
5
|
import type { UpdatePartyIdentityProviderIdResponse } from './party_management_service.js';
|
|
4
6
|
import type { UpdatePartyIdentityProviderIdRequest } from './party_management_service.js';
|
|
5
7
|
import type { UpdatePartyDetailsResponse } from './party_management_service.js';
|
|
6
8
|
import type { UpdatePartyDetailsRequest } from './party_management_service.js';
|
|
9
|
+
import type { AllocateExternalPartyResponse } from './party_management_service.js';
|
|
10
|
+
import type { AllocateExternalPartyRequest } from './party_management_service.js';
|
|
7
11
|
import type { AllocatePartyResponse } from './party_management_service.js';
|
|
8
12
|
import type { AllocatePartyRequest } from './party_management_service.js';
|
|
9
13
|
import type { ListKnownPartiesResponse } from './party_management_service.js';
|
|
@@ -86,6 +90,24 @@ export interface IPartyManagementServiceClient {
|
|
|
86
90
|
* @generated from protobuf rpc: AllocateParty
|
|
87
91
|
*/
|
|
88
92
|
allocateParty(input: AllocatePartyRequest, options?: RpcOptions): UnaryCall<AllocatePartyRequest, AllocatePartyResponse>;
|
|
93
|
+
/**
|
|
94
|
+
* Alpha 3.3: Endpoint to allocate a new external party on a synchronizer
|
|
95
|
+
*
|
|
96
|
+
* Expected to be stable in 3.5
|
|
97
|
+
*
|
|
98
|
+
* The external party must be hosted (at least) on this node with either confirmation or observation permissions
|
|
99
|
+
* It can optionally be hosted on other nodes (then called a multi-hosted party).
|
|
100
|
+
* If hosted on additional nodes, explicit authorization of the hosting relationship must be performed on those nodes
|
|
101
|
+
* before the party can be used.
|
|
102
|
+
* Decentralized namespaces are supported but must be provided fully authorized by their owners.
|
|
103
|
+
* The individual owner namespace transactions can be submitted in the same call (fully authorized as well).
|
|
104
|
+
* In the simple case of a non-multi hosted, non-decentralized party, the RPC will return once the party is
|
|
105
|
+
* effectively allocated and ready to use, similarly to the AllocateParty behavior.
|
|
106
|
+
* For more complex scenarios applications may need to query the party status explicitly (only through the admin API as of now).
|
|
107
|
+
*
|
|
108
|
+
* @generated from protobuf rpc: AllocateExternalParty
|
|
109
|
+
*/
|
|
110
|
+
allocateExternalParty(input: AllocateExternalPartyRequest, options?: RpcOptions): UnaryCall<AllocateExternalPartyRequest, AllocateExternalPartyResponse>;
|
|
89
111
|
/**
|
|
90
112
|
* Update selected modifiable participant-local attributes of a party details resource.
|
|
91
113
|
* Can update the participant's local information for local parties.
|
|
@@ -99,6 +121,21 @@ export interface IPartyManagementServiceClient {
|
|
|
99
121
|
* @generated from protobuf rpc: UpdatePartyIdentityProviderId
|
|
100
122
|
*/
|
|
101
123
|
updatePartyIdentityProviderId(input: UpdatePartyIdentityProviderIdRequest, options?: RpcOptions): UnaryCall<UpdatePartyIdentityProviderIdRequest, UpdatePartyIdentityProviderIdResponse>;
|
|
124
|
+
/**
|
|
125
|
+
* Alpha 3.3: Convenience endpoint to generate topology transactions for external signing
|
|
126
|
+
*
|
|
127
|
+
* Expected to be stable in 3.5
|
|
128
|
+
*
|
|
129
|
+
* You may use this endpoint to generate the common external topology transactions
|
|
130
|
+
* which can be signed externally and uploaded as part of the allocate party process
|
|
131
|
+
*
|
|
132
|
+
* Note that this request will create a normal namespace using the same key for the
|
|
133
|
+
* identity as for signing. More elaborate schemes such as multi-signature
|
|
134
|
+
* or decentralized parties require you to construct the topology transactions yourself.
|
|
135
|
+
*
|
|
136
|
+
* @generated from protobuf rpc: GenerateExternalPartyTopology
|
|
137
|
+
*/
|
|
138
|
+
generateExternalPartyTopology(input: GenerateExternalPartyTopologyRequest, options?: RpcOptions): UnaryCall<GenerateExternalPartyTopologyRequest, GenerateExternalPartyTopologyResponse>;
|
|
102
139
|
}
|
|
103
140
|
/**
|
|
104
141
|
* This service allows inspecting the party management state of the ledger known to the participant
|
|
@@ -179,6 +216,24 @@ export declare class PartyManagementServiceClient implements IPartyManagementSer
|
|
|
179
216
|
* @generated from protobuf rpc: AllocateParty
|
|
180
217
|
*/
|
|
181
218
|
allocateParty(input: AllocatePartyRequest, options?: RpcOptions): UnaryCall<AllocatePartyRequest, AllocatePartyResponse>;
|
|
219
|
+
/**
|
|
220
|
+
* Alpha 3.3: Endpoint to allocate a new external party on a synchronizer
|
|
221
|
+
*
|
|
222
|
+
* Expected to be stable in 3.5
|
|
223
|
+
*
|
|
224
|
+
* The external party must be hosted (at least) on this node with either confirmation or observation permissions
|
|
225
|
+
* It can optionally be hosted on other nodes (then called a multi-hosted party).
|
|
226
|
+
* If hosted on additional nodes, explicit authorization of the hosting relationship must be performed on those nodes
|
|
227
|
+
* before the party can be used.
|
|
228
|
+
* Decentralized namespaces are supported but must be provided fully authorized by their owners.
|
|
229
|
+
* The individual owner namespace transactions can be submitted in the same call (fully authorized as well).
|
|
230
|
+
* In the simple case of a non-multi hosted, non-decentralized party, the RPC will return once the party is
|
|
231
|
+
* effectively allocated and ready to use, similarly to the AllocateParty behavior.
|
|
232
|
+
* For more complex scenarios applications may need to query the party status explicitly (only through the admin API as of now).
|
|
233
|
+
*
|
|
234
|
+
* @generated from protobuf rpc: AllocateExternalParty
|
|
235
|
+
*/
|
|
236
|
+
allocateExternalParty(input: AllocateExternalPartyRequest, options?: RpcOptions): UnaryCall<AllocateExternalPartyRequest, AllocateExternalPartyResponse>;
|
|
182
237
|
/**
|
|
183
238
|
* Update selected modifiable participant-local attributes of a party details resource.
|
|
184
239
|
* Can update the participant's local information for local parties.
|
|
@@ -192,5 +247,20 @@ export declare class PartyManagementServiceClient implements IPartyManagementSer
|
|
|
192
247
|
* @generated from protobuf rpc: UpdatePartyIdentityProviderId
|
|
193
248
|
*/
|
|
194
249
|
updatePartyIdentityProviderId(input: UpdatePartyIdentityProviderIdRequest, options?: RpcOptions): UnaryCall<UpdatePartyIdentityProviderIdRequest, UpdatePartyIdentityProviderIdResponse>;
|
|
250
|
+
/**
|
|
251
|
+
* Alpha 3.3: Convenience endpoint to generate topology transactions for external signing
|
|
252
|
+
*
|
|
253
|
+
* Expected to be stable in 3.5
|
|
254
|
+
*
|
|
255
|
+
* You may use this endpoint to generate the common external topology transactions
|
|
256
|
+
* which can be signed externally and uploaded as part of the allocate party process
|
|
257
|
+
*
|
|
258
|
+
* Note that this request will create a normal namespace using the same key for the
|
|
259
|
+
* identity as for signing. More elaborate schemes such as multi-signature
|
|
260
|
+
* or decentralized parties require you to construct the topology transactions yourself.
|
|
261
|
+
*
|
|
262
|
+
* @generated from protobuf rpc: GenerateExternalPartyTopology
|
|
263
|
+
*/
|
|
264
|
+
generateExternalPartyTopology(input: GenerateExternalPartyTopologyRequest, options?: RpcOptions): UnaryCall<GenerateExternalPartyTopologyRequest, GenerateExternalPartyTopologyResponse>;
|
|
195
265
|
}
|
|
196
266
|
//# sourceMappingURL=party_management_service.client.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"party_management_service.client.d.ts","sourceRoot":"","sources":["../../../../../../../../src/_proto/com/daml/ledger/api/v2/admin/party_management_service.client.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"party_management_service.client.d.ts","sourceRoot":"","sources":["../../../../../../../../src/_proto/com/daml/ledger/api/v2/admin/party_management_service.client.ts"],"names":[],"mappings":"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"}
|
|
@@ -91,6 +91,27 @@ export class PartyManagementServiceClient {
|
|
|
91
91
|
const method = this.methods[3], opt = this._transport.mergeOptions(options);
|
|
92
92
|
return stackIntercept('unary', this._transport, method, opt, input);
|
|
93
93
|
}
|
|
94
|
+
/**
|
|
95
|
+
* Alpha 3.3: Endpoint to allocate a new external party on a synchronizer
|
|
96
|
+
*
|
|
97
|
+
* Expected to be stable in 3.5
|
|
98
|
+
*
|
|
99
|
+
* The external party must be hosted (at least) on this node with either confirmation or observation permissions
|
|
100
|
+
* It can optionally be hosted on other nodes (then called a multi-hosted party).
|
|
101
|
+
* If hosted on additional nodes, explicit authorization of the hosting relationship must be performed on those nodes
|
|
102
|
+
* before the party can be used.
|
|
103
|
+
* Decentralized namespaces are supported but must be provided fully authorized by their owners.
|
|
104
|
+
* The individual owner namespace transactions can be submitted in the same call (fully authorized as well).
|
|
105
|
+
* In the simple case of a non-multi hosted, non-decentralized party, the RPC will return once the party is
|
|
106
|
+
* effectively allocated and ready to use, similarly to the AllocateParty behavior.
|
|
107
|
+
* For more complex scenarios applications may need to query the party status explicitly (only through the admin API as of now).
|
|
108
|
+
*
|
|
109
|
+
* @generated from protobuf rpc: AllocateExternalParty
|
|
110
|
+
*/
|
|
111
|
+
allocateExternalParty(input, options) {
|
|
112
|
+
const method = this.methods[4], opt = this._transport.mergeOptions(options);
|
|
113
|
+
return stackIntercept('unary', this._transport, method, opt, input);
|
|
114
|
+
}
|
|
94
115
|
/**
|
|
95
116
|
* Update selected modifiable participant-local attributes of a party details resource.
|
|
96
117
|
* Can update the participant's local information for local parties.
|
|
@@ -98,7 +119,7 @@ export class PartyManagementServiceClient {
|
|
|
98
119
|
* @generated from protobuf rpc: UpdatePartyDetails
|
|
99
120
|
*/
|
|
100
121
|
updatePartyDetails(input, options) {
|
|
101
|
-
const method = this.methods[
|
|
122
|
+
const method = this.methods[5], opt = this._transport.mergeOptions(options);
|
|
102
123
|
return stackIntercept('unary', this._transport, method, opt, input);
|
|
103
124
|
}
|
|
104
125
|
/**
|
|
@@ -107,7 +128,25 @@ export class PartyManagementServiceClient {
|
|
|
107
128
|
* @generated from protobuf rpc: UpdatePartyIdentityProviderId
|
|
108
129
|
*/
|
|
109
130
|
updatePartyIdentityProviderId(input, options) {
|
|
110
|
-
const method = this.methods[
|
|
131
|
+
const method = this.methods[6], opt = this._transport.mergeOptions(options);
|
|
132
|
+
return stackIntercept('unary', this._transport, method, opt, input);
|
|
133
|
+
}
|
|
134
|
+
/**
|
|
135
|
+
* Alpha 3.3: Convenience endpoint to generate topology transactions for external signing
|
|
136
|
+
*
|
|
137
|
+
* Expected to be stable in 3.5
|
|
138
|
+
*
|
|
139
|
+
* You may use this endpoint to generate the common external topology transactions
|
|
140
|
+
* which can be signed externally and uploaded as part of the allocate party process
|
|
141
|
+
*
|
|
142
|
+
* Note that this request will create a normal namespace using the same key for the
|
|
143
|
+
* identity as for signing. More elaborate schemes such as multi-signature
|
|
144
|
+
* or decentralized parties require you to construct the topology transactions yourself.
|
|
145
|
+
*
|
|
146
|
+
* @generated from protobuf rpc: GenerateExternalPartyTopology
|
|
147
|
+
*/
|
|
148
|
+
generateExternalPartyTopology(input, options) {
|
|
149
|
+
const method = this.methods[7], opt = this._transport.mergeOptions(options);
|
|
111
150
|
return stackIntercept('unary', this._transport, method, opt, input);
|
|
112
151
|
}
|
|
113
152
|
}
|
|
@@ -5,7 +5,9 @@ import type { BinaryReadOptions } from '@protobuf-ts/runtime';
|
|
|
5
5
|
import type { IBinaryReader } from '@protobuf-ts/runtime';
|
|
6
6
|
import type { PartialMessage } from '@protobuf-ts/runtime';
|
|
7
7
|
import { MessageType } from '@protobuf-ts/runtime';
|
|
8
|
+
import { SigningPublicKey } from '../crypto.js';
|
|
8
9
|
import { FieldMask } from '../../../../../../google/protobuf/field_mask.js';
|
|
10
|
+
import { Signature } from '../interactive/interactive_submission_service.js';
|
|
9
11
|
import { ObjectMeta } from './object_meta.js';
|
|
10
12
|
/**
|
|
11
13
|
* Required authorization: ``HasRight(ParticipantAdmin)``
|
|
@@ -154,6 +156,80 @@ export interface AllocatePartyResponse {
|
|
|
154
156
|
*/
|
|
155
157
|
partyDetails?: PartyDetails;
|
|
156
158
|
}
|
|
159
|
+
/**
|
|
160
|
+
* Required authorization: ``HasRight(ParticipantAdmin) OR IsAuthenticatedIdentityProviderAdmin(identity_provider_id)``
|
|
161
|
+
*
|
|
162
|
+
* @generated from protobuf message com.daml.ledger.api.v2.admin.AllocateExternalPartyRequest
|
|
163
|
+
*/
|
|
164
|
+
export interface AllocateExternalPartyRequest {
|
|
165
|
+
/**
|
|
166
|
+
* TODO(#27670) support synchronizer aliases
|
|
167
|
+
* Synchronizer ID on which to onboard the party
|
|
168
|
+
* Required
|
|
169
|
+
*
|
|
170
|
+
* @generated from protobuf field: string synchronizer = 1
|
|
171
|
+
*/
|
|
172
|
+
synchronizer: string;
|
|
173
|
+
/**
|
|
174
|
+
* TopologyTransactions to onboard the external party
|
|
175
|
+
* Can contain:
|
|
176
|
+
* - A namespace for the party.
|
|
177
|
+
* This can be either a single NamespaceDelegation,
|
|
178
|
+
* or DecentralizedNamespaceDefinition along with its authorized namespace owners in the form of NamespaceDelegations.
|
|
179
|
+
* May be provided, if so it must be fully authorized by the signatures in this request combined with the existing topology state.
|
|
180
|
+
* - A PartyToKeyMapping to register the party's signing keys.
|
|
181
|
+
* May be provided, if so it must be fully authorized by the signatures in this request combined with the existing topology state.
|
|
182
|
+
* - A PartyToParticipant to register the hosting relationship of the party.
|
|
183
|
+
* Must be provided.
|
|
184
|
+
* Required
|
|
185
|
+
*
|
|
186
|
+
* @generated from protobuf field: repeated com.daml.ledger.api.v2.admin.AllocateExternalPartyRequest.SignedTransaction onboarding_transactions = 2
|
|
187
|
+
*/
|
|
188
|
+
onboardingTransactions: AllocateExternalPartyRequest_SignedTransaction[];
|
|
189
|
+
/**
|
|
190
|
+
* Optional signatures of the combined hash of all onboarding_transactions
|
|
191
|
+
* This may be used instead of providing signatures on each individual transaction
|
|
192
|
+
*
|
|
193
|
+
* @generated from protobuf field: repeated com.daml.ledger.api.v2.interactive.Signature multi_hash_signatures = 3
|
|
194
|
+
*/
|
|
195
|
+
multiHashSignatures: Signature[];
|
|
196
|
+
/**
|
|
197
|
+
* The id of the ``Identity Provider``
|
|
198
|
+
* If not set, assume the party is managed by the default identity provider.
|
|
199
|
+
* Optional
|
|
200
|
+
*
|
|
201
|
+
* @generated from protobuf field: string identity_provider_id = 4
|
|
202
|
+
*/
|
|
203
|
+
identityProviderId: string;
|
|
204
|
+
}
|
|
205
|
+
/**
|
|
206
|
+
* @generated from protobuf message com.daml.ledger.api.v2.admin.AllocateExternalPartyRequest.SignedTransaction
|
|
207
|
+
*/
|
|
208
|
+
export interface AllocateExternalPartyRequest_SignedTransaction {
|
|
209
|
+
/**
|
|
210
|
+
* The serialized TopologyTransaction
|
|
211
|
+
*
|
|
212
|
+
* @generated from protobuf field: bytes transaction = 1
|
|
213
|
+
*/
|
|
214
|
+
transaction: Uint8Array;
|
|
215
|
+
/**
|
|
216
|
+
* Additional signatures for this transaction specifically
|
|
217
|
+
* Use for transactions that require additional signatures beyond the namespace key signatures
|
|
218
|
+
* e.g: PartyToKeyMapping must be signed by all registered keys
|
|
219
|
+
*
|
|
220
|
+
* @generated from protobuf field: repeated com.daml.ledger.api.v2.interactive.Signature signatures = 2
|
|
221
|
+
*/
|
|
222
|
+
signatures: Signature[];
|
|
223
|
+
}
|
|
224
|
+
/**
|
|
225
|
+
* @generated from protobuf message com.daml.ledger.api.v2.admin.AllocateExternalPartyResponse
|
|
226
|
+
*/
|
|
227
|
+
export interface AllocateExternalPartyResponse {
|
|
228
|
+
/**
|
|
229
|
+
* @generated from protobuf field: string party_id = 1
|
|
230
|
+
*/
|
|
231
|
+
partyId: string;
|
|
232
|
+
}
|
|
157
233
|
/**
|
|
158
234
|
* Required authorization: ``HasRight(ParticipantAdmin) OR IsAuthenticatedIdentityProviderAdmin(party_details.identity_provider_id)``
|
|
159
235
|
*
|
|
@@ -275,6 +351,88 @@ export interface UpdatePartyIdentityProviderIdRequest {
|
|
|
275
351
|
*/
|
|
276
352
|
export interface UpdatePartyIdentityProviderIdResponse {
|
|
277
353
|
}
|
|
354
|
+
/**
|
|
355
|
+
* @generated from protobuf message com.daml.ledger.api.v2.admin.GenerateExternalPartyTopologyRequest
|
|
356
|
+
*/
|
|
357
|
+
export interface GenerateExternalPartyTopologyRequest {
|
|
358
|
+
/**
|
|
359
|
+
* TODO(#27670) support synchronizer aliases
|
|
360
|
+
* Required: synchronizer-id for which we are building this request.
|
|
361
|
+
*
|
|
362
|
+
* @generated from protobuf field: string synchronizer = 1
|
|
363
|
+
*/
|
|
364
|
+
synchronizer: string;
|
|
365
|
+
/**
|
|
366
|
+
* Required: the actual party id will be constructed from this hint and a fingerprint of the public key
|
|
367
|
+
*
|
|
368
|
+
* @generated from protobuf field: string party_hint = 2
|
|
369
|
+
*/
|
|
370
|
+
partyHint: string;
|
|
371
|
+
/**
|
|
372
|
+
* Required: public key
|
|
373
|
+
*
|
|
374
|
+
* @generated from protobuf field: com.daml.ledger.api.v2.SigningPublicKey public_key = 3
|
|
375
|
+
*/
|
|
376
|
+
publicKey?: SigningPublicKey;
|
|
377
|
+
/**
|
|
378
|
+
* Optional: if true, then the local participant will only be observing, not confirming. Default false.
|
|
379
|
+
*
|
|
380
|
+
* @generated from protobuf field: bool local_participant_observation_only = 4
|
|
381
|
+
*/
|
|
382
|
+
localParticipantObservationOnly: boolean;
|
|
383
|
+
/**
|
|
384
|
+
* Optional: other participant ids which should be confirming for this party
|
|
385
|
+
*
|
|
386
|
+
* @generated from protobuf field: repeated string other_confirming_participant_uids = 5
|
|
387
|
+
*/
|
|
388
|
+
otherConfirmingParticipantUids: string[];
|
|
389
|
+
/**
|
|
390
|
+
* Optional: Confirmation threshold >= 1 for the party. Defaults to all available confirmers (or if set to 0).
|
|
391
|
+
*
|
|
392
|
+
* @generated from protobuf field: uint32 confirmation_threshold = 6
|
|
393
|
+
*/
|
|
394
|
+
confirmationThreshold: number;
|
|
395
|
+
/**
|
|
396
|
+
* Optional: other observing participant ids for this party
|
|
397
|
+
*
|
|
398
|
+
* @generated from protobuf field: repeated string observing_participant_uids = 7
|
|
399
|
+
*/
|
|
400
|
+
observingParticipantUids: string[];
|
|
401
|
+
}
|
|
402
|
+
/**
|
|
403
|
+
* Response message with topology transactions and the multi-hash to be signed.
|
|
404
|
+
*
|
|
405
|
+
* @generated from protobuf message com.daml.ledger.api.v2.admin.GenerateExternalPartyTopologyResponse
|
|
406
|
+
*/
|
|
407
|
+
export interface GenerateExternalPartyTopologyResponse {
|
|
408
|
+
/**
|
|
409
|
+
* the generated party id
|
|
410
|
+
*
|
|
411
|
+
* @generated from protobuf field: string party_id = 1
|
|
412
|
+
*/
|
|
413
|
+
partyId: string;
|
|
414
|
+
/**
|
|
415
|
+
* the fingerprint of the supplied public key
|
|
416
|
+
*
|
|
417
|
+
* @generated from protobuf field: string public_key_fingerprint = 2
|
|
418
|
+
*/
|
|
419
|
+
publicKeyFingerprint: string;
|
|
420
|
+
/**
|
|
421
|
+
* The serialized topology transactions which need to be signed and submitted as part of the allocate party process
|
|
422
|
+
* Note that the serialization includes the versioning information. Therefore, the transaction here is serialized
|
|
423
|
+
* as an `UntypedVersionedMessage` which in turn contains the serialized `TopologyTransaction` in the version
|
|
424
|
+
* supported by the synchronizer.
|
|
425
|
+
*
|
|
426
|
+
* @generated from protobuf field: repeated bytes topology_transactions = 3
|
|
427
|
+
*/
|
|
428
|
+
topologyTransactions: Uint8Array[];
|
|
429
|
+
/**
|
|
430
|
+
* the multi-hash which may be signed instead of each individual transaction
|
|
431
|
+
*
|
|
432
|
+
* @generated from protobuf field: bytes multi_hash = 4
|
|
433
|
+
*/
|
|
434
|
+
multiHash: Uint8Array;
|
|
435
|
+
}
|
|
278
436
|
declare class GetParticipantIdRequest$Type extends MessageType<GetParticipantIdRequest> {
|
|
279
437
|
constructor();
|
|
280
438
|
create(value?: PartialMessage<GetParticipantIdRequest>): GetParticipantIdRequest;
|
|
@@ -355,6 +513,36 @@ declare class AllocatePartyResponse$Type extends MessageType<AllocatePartyRespon
|
|
|
355
513
|
* @generated MessageType for protobuf message com.daml.ledger.api.v2.admin.AllocatePartyResponse
|
|
356
514
|
*/
|
|
357
515
|
export declare const AllocatePartyResponse: AllocatePartyResponse$Type;
|
|
516
|
+
declare class AllocateExternalPartyRequest$Type extends MessageType<AllocateExternalPartyRequest> {
|
|
517
|
+
constructor();
|
|
518
|
+
create(value?: PartialMessage<AllocateExternalPartyRequest>): AllocateExternalPartyRequest;
|
|
519
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: AllocateExternalPartyRequest): AllocateExternalPartyRequest;
|
|
520
|
+
internalBinaryWrite(message: AllocateExternalPartyRequest, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
521
|
+
}
|
|
522
|
+
/**
|
|
523
|
+
* @generated MessageType for protobuf message com.daml.ledger.api.v2.admin.AllocateExternalPartyRequest
|
|
524
|
+
*/
|
|
525
|
+
export declare const AllocateExternalPartyRequest: AllocateExternalPartyRequest$Type;
|
|
526
|
+
declare class AllocateExternalPartyRequest_SignedTransaction$Type extends MessageType<AllocateExternalPartyRequest_SignedTransaction> {
|
|
527
|
+
constructor();
|
|
528
|
+
create(value?: PartialMessage<AllocateExternalPartyRequest_SignedTransaction>): AllocateExternalPartyRequest_SignedTransaction;
|
|
529
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: AllocateExternalPartyRequest_SignedTransaction): AllocateExternalPartyRequest_SignedTransaction;
|
|
530
|
+
internalBinaryWrite(message: AllocateExternalPartyRequest_SignedTransaction, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
531
|
+
}
|
|
532
|
+
/**
|
|
533
|
+
* @generated MessageType for protobuf message com.daml.ledger.api.v2.admin.AllocateExternalPartyRequest.SignedTransaction
|
|
534
|
+
*/
|
|
535
|
+
export declare const AllocateExternalPartyRequest_SignedTransaction: AllocateExternalPartyRequest_SignedTransaction$Type;
|
|
536
|
+
declare class AllocateExternalPartyResponse$Type extends MessageType<AllocateExternalPartyResponse> {
|
|
537
|
+
constructor();
|
|
538
|
+
create(value?: PartialMessage<AllocateExternalPartyResponse>): AllocateExternalPartyResponse;
|
|
539
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: AllocateExternalPartyResponse): AllocateExternalPartyResponse;
|
|
540
|
+
internalBinaryWrite(message: AllocateExternalPartyResponse, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
541
|
+
}
|
|
542
|
+
/**
|
|
543
|
+
* @generated MessageType for protobuf message com.daml.ledger.api.v2.admin.AllocateExternalPartyResponse
|
|
544
|
+
*/
|
|
545
|
+
export declare const AllocateExternalPartyResponse: AllocateExternalPartyResponse$Type;
|
|
358
546
|
declare class UpdatePartyDetailsRequest$Type extends MessageType<UpdatePartyDetailsRequest> {
|
|
359
547
|
constructor();
|
|
360
548
|
create(value?: PartialMessage<UpdatePartyDetailsRequest>): UpdatePartyDetailsRequest;
|
|
@@ -405,6 +593,26 @@ declare class UpdatePartyIdentityProviderIdResponse$Type extends MessageType<Upd
|
|
|
405
593
|
* @generated MessageType for protobuf message com.daml.ledger.api.v2.admin.UpdatePartyIdentityProviderIdResponse
|
|
406
594
|
*/
|
|
407
595
|
export declare const UpdatePartyIdentityProviderIdResponse: UpdatePartyIdentityProviderIdResponse$Type;
|
|
596
|
+
declare class GenerateExternalPartyTopologyRequest$Type extends MessageType<GenerateExternalPartyTopologyRequest> {
|
|
597
|
+
constructor();
|
|
598
|
+
create(value?: PartialMessage<GenerateExternalPartyTopologyRequest>): GenerateExternalPartyTopologyRequest;
|
|
599
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: GenerateExternalPartyTopologyRequest): GenerateExternalPartyTopologyRequest;
|
|
600
|
+
internalBinaryWrite(message: GenerateExternalPartyTopologyRequest, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
601
|
+
}
|
|
602
|
+
/**
|
|
603
|
+
* @generated MessageType for protobuf message com.daml.ledger.api.v2.admin.GenerateExternalPartyTopologyRequest
|
|
604
|
+
*/
|
|
605
|
+
export declare const GenerateExternalPartyTopologyRequest: GenerateExternalPartyTopologyRequest$Type;
|
|
606
|
+
declare class GenerateExternalPartyTopologyResponse$Type extends MessageType<GenerateExternalPartyTopologyResponse> {
|
|
607
|
+
constructor();
|
|
608
|
+
create(value?: PartialMessage<GenerateExternalPartyTopologyResponse>): GenerateExternalPartyTopologyResponse;
|
|
609
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: GenerateExternalPartyTopologyResponse): GenerateExternalPartyTopologyResponse;
|
|
610
|
+
internalBinaryWrite(message: GenerateExternalPartyTopologyResponse, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
611
|
+
}
|
|
612
|
+
/**
|
|
613
|
+
* @generated MessageType for protobuf message com.daml.ledger.api.v2.admin.GenerateExternalPartyTopologyResponse
|
|
614
|
+
*/
|
|
615
|
+
export declare const GenerateExternalPartyTopologyResponse: GenerateExternalPartyTopologyResponse$Type;
|
|
408
616
|
/**
|
|
409
617
|
* @generated ServiceType for protobuf service com.daml.ledger.api.v2.admin.PartyManagementService
|
|
410
618
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"party_management_service.d.ts","sourceRoot":"","sources":["../../../../../../../../src/_proto/com/daml/ledger/api/v2/admin/party_management_service.ts"],"names":[],"mappings":"AAOA,OAAO,EAAE,WAAW,EAAE,MAAM,0BAA0B,CAAA;AAEtD,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAA;AAC9D,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,sBAAsB,CAAA;AACzD,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,sBAAsB,CAAA;AAC7D,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,sBAAsB,CAAA;AAEzD,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,sBAAsB,CAAA;AAE1D,OAAO,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAA;AAClD,OAAO,EAAE,SAAS,EAAE,MAAM,iDAAiD,CAAA;AAC3E,OAAO,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAA;AAC7C;;;;GAIG;AACH,MAAM,WAAW,uBAAuB;CAAG;AAC3C;;GAEG;AACH,MAAM,WAAW,wBAAwB;IACrC;;;;;OAKG;IACH,aAAa,EAAE,MAAM,CAAA;CACxB;AACD;;;;GAIG;AACH,MAAM,WAAW,iBAAiB;IAC9B;;;;;;OAMG;IACH,OAAO,EAAE,MAAM,EAAE,CAAA;IACjB;;;;;OAKG;IACH,kBAAkB,EAAE,MAAM,CAAA;CAC7B;AACD;;GAEG;AACH,MAAM,WAAW,kBAAkB;IAC/B;;;;;;OAMG;IACH,YAAY,EAAE,YAAY,EAAE,CAAA;CAC/B;AACD;;;;GAIG;AACH,MAAM,WAAW,uBAAuB;IACpC;;;;;;;;;OASG;IACH,SAAS,EAAE,MAAM,CAAA;IACjB;;;;;;;;OAQG;IACH,QAAQ,EAAE,MAAM,CAAA;IAChB;;;;;OAKG;IACH,kBAAkB,EAAE,MAAM,CAAA;CAC7B;AACD;;GAEG;AACH,MAAM,WAAW,wBAAwB;IACrC;;;;;OAKG;IACH,YAAY,EAAE,YAAY,EAAE,CAAA;IAC5B;;;;;OAKG;IACH,aAAa,EAAE,MAAM,CAAA;CACxB;AACD;;;;GAIG;AACH,MAAM,WAAW,oBAAoB;IACjC;;;;;;;OAOG;IACH,WAAW,EAAE,MAAM,CAAA;IACnB;;;;;OAKG;IACH,aAAa,CAAC,EAAE,UAAU,CAAA;IAC1B;;;;;OAKG;IACH,kBAAkB,EAAE,MAAM,CAAA;CAC7B;AACD;;GAEG;AACH,MAAM,WAAW,qBAAqB;IAClC;;OAEG;IACH,YAAY,CAAC,EAAE,YAAY,CAAA;CAC9B;AACD;;;;GAIG;AACH,MAAM,WAAW,yBAAyB;IACtC;;;;;;OAMG;IACH,YAAY,CAAC,EAAE,YAAY,CAAA;IAC3B;;;;;;;;;;;;;;;;;;;;;;;;OAwBG;IACH,UAAU,CAAC,EAAE,SAAS,CAAA;CACzB;AACD;;GAEG;AACH,MAAM,WAAW,0BAA0B;IACvC;;;;OAIG;IACH,YAAY,CAAC,EAAE,YAAY,CAAA;CAC9B;AACD;;GAEG;AACH,MAAM,WAAW,YAAY;IACzB;;;;;;OAMG;IACH,KAAK,EAAE,MAAM,CAAA;IACb;;;;;OAKG;IACH,OAAO,EAAE,OAAO,CAAA;IAChB;;;;;;OAMG;IACH,aAAa,CAAC,EAAE,UAAU,CAAA;IAC1B;;;;;;;;;OASG;IACH,kBAAkB,EAAE,MAAM,CAAA;CAC7B;AACD;;;;GAIG;AACH,MAAM,WAAW,oCAAoC;IACjD;;;;OAIG;IACH,KAAK,EAAE,MAAM,CAAA;IACb;;;;OAIG;IACH,wBAAwB,EAAE,MAAM,CAAA;IAChC;;;;OAIG;IACH,wBAAwB,EAAE,MAAM,CAAA;CACnC;AACD;;GAEG;AACH,MAAM,WAAW,qCAAqC;CAAG;
|
|
1
|
+
{"version":3,"file":"party_management_service.d.ts","sourceRoot":"","sources":["../../../../../../../../src/_proto/com/daml/ledger/api/v2/admin/party_management_service.ts"],"names":[],"mappings":"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"}
|