@fairmint/canton-node-sdk 0.0.39 → 0.0.41
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/build/src/clients/ledger-json-api/operations/v2/authenticated-user/get.d.ts +1 -1
- package/build/src/clients/ledger-json-api/operations/v2/commands/submit-and-wait-for-reassignment.d.ts +5 -5
- package/build/src/clients/ledger-json-api/operations/v2/interactive-submission/allocate-party.d.ts +1 -1
- package/build/src/clients/ledger-json-api/operations/v2/interactive-submission/create-user.d.ts +2 -2
- package/build/src/clients/ledger-json-api/operations/v2/interactive-submission/get-preferred-package-version.d.ts +1 -1
- package/build/src/clients/ledger-json-api/operations/v2/interactive-submission/get-preferred-packages.d.ts +1 -1
- package/build/src/clients/ledger-json-api/operations/v2/parties/post.d.ts +4 -4
- package/build/src/clients/ledger-json-api/operations/v2/state/get-active-contracts.d.ts +7 -4
- package/build/src/clients/ledger-json-api/operations/v2/state/get-active-contracts.d.ts.map +1 -1
- package/build/src/clients/ledger-json-api/operations/v2/state/get-active-contracts.js.map +1 -1
- package/build/src/clients/ledger-json-api/operations/v2/updates/get-flats.d.ts +16 -16
- package/build/src/clients/ledger-json-api/operations/v2/updates/get-trees.d.ts +8 -8
- package/build/src/clients/ledger-json-api/schemas/api/completions.d.ts +24 -24
- package/build/src/clients/ledger-json-api/schemas/api/event-details.d.ts +12 -12
- package/build/src/clients/ledger-json-api/schemas/api/events.d.ts +72 -72
- package/build/src/clients/ledger-json-api/schemas/api/interactive-submission.d.ts +10 -10
- package/build/src/clients/ledger-json-api/schemas/api/packages.d.ts +16 -16
- package/build/src/clients/ledger-json-api/schemas/api/reassignment.d.ts +114 -114
- package/build/src/clients/ledger-json-api/schemas/api/state.d.ts +160 -160
- package/build/src/clients/ledger-json-api/schemas/api/transactions.d.ts +152 -152
- package/build/src/clients/ledger-json-api/schemas/api/updates.d.ts +1044 -1044
- package/build/src/clients/ledger-json-api/schemas/api/users.d.ts +66 -66
- package/build/src/clients/ledger-json-api/schemas/common.d.ts +2 -2
- package/build/src/clients/ledger-json-api/schemas/operations/interactive-submission.d.ts +6 -6
- package/build/src/clients/ledger-json-api/schemas/operations/parties.d.ts +13 -13
- package/build/src/clients/ledger-json-api/schemas/operations/updates.d.ts +298 -298
- package/build/src/clients/ledger-json-api/schemas/operations/users.d.ts +17 -17
- package/build/src/clients/validator-api/operations/v0/scan-proxy/get-open-and-issuing-mining-rounds.js +1 -1
- package/build/src/clients/validator-api/operations/v0/scan-proxy/get-open-and-issuing-mining-rounds.js.map +1 -1
- package/package.json +1 -1
|
@@ -10,12 +10,12 @@ export declare const InteractiveSubmissionAllocatePartyRequestSchema: z.ZodObjec
|
|
|
10
10
|
/** Is local party flag (optional). */
|
|
11
11
|
isLocal: z.ZodOptional<z.ZodBoolean>;
|
|
12
12
|
}, "strip", z.ZodTypeAny, {
|
|
13
|
-
isLocal?: boolean | undefined;
|
|
14
13
|
partyIdHint?: string | undefined;
|
|
14
|
+
isLocal?: boolean | undefined;
|
|
15
15
|
displayName?: string | undefined;
|
|
16
16
|
}, {
|
|
17
|
-
isLocal?: boolean | undefined;
|
|
18
17
|
partyIdHint?: string | undefined;
|
|
18
|
+
isLocal?: boolean | undefined;
|
|
19
19
|
displayName?: string | undefined;
|
|
20
20
|
}>;
|
|
21
21
|
/**
|
|
@@ -83,20 +83,20 @@ export declare const InteractiveSubmissionCreateUserRequestSchema: z.ZodObject<{
|
|
|
83
83
|
id: string;
|
|
84
84
|
isDeactivated: boolean;
|
|
85
85
|
identityProviderId?: string | undefined;
|
|
86
|
+
primaryParty?: string | undefined;
|
|
86
87
|
metadata?: {
|
|
87
88
|
resourceVersion: string;
|
|
88
89
|
annotations: Record<string, string>;
|
|
89
90
|
} | undefined;
|
|
90
|
-
primaryParty?: string | undefined;
|
|
91
91
|
}, {
|
|
92
92
|
id: string;
|
|
93
93
|
isDeactivated: boolean;
|
|
94
94
|
identityProviderId?: string | undefined;
|
|
95
|
+
primaryParty?: string | undefined;
|
|
95
96
|
metadata?: {
|
|
96
97
|
resourceVersion: string;
|
|
97
98
|
annotations: Record<string, string>;
|
|
98
99
|
} | undefined;
|
|
99
|
-
primaryParty?: string | undefined;
|
|
100
100
|
}>;
|
|
101
101
|
/** Rights to assign to the user (optional). */
|
|
102
102
|
rights: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -200,11 +200,11 @@ export declare const InteractiveSubmissionCreateUserRequestSchema: z.ZodObject<{
|
|
|
200
200
|
id: string;
|
|
201
201
|
isDeactivated: boolean;
|
|
202
202
|
identityProviderId?: string | undefined;
|
|
203
|
+
primaryParty?: string | undefined;
|
|
203
204
|
metadata?: {
|
|
204
205
|
resourceVersion: string;
|
|
205
206
|
annotations: Record<string, string>;
|
|
206
207
|
} | undefined;
|
|
207
|
-
primaryParty?: string | undefined;
|
|
208
208
|
};
|
|
209
209
|
rights?: {
|
|
210
210
|
kind: {
|
|
@@ -230,11 +230,11 @@ export declare const InteractiveSubmissionCreateUserRequestSchema: z.ZodObject<{
|
|
|
230
230
|
id: string;
|
|
231
231
|
isDeactivated: boolean;
|
|
232
232
|
identityProviderId?: string | undefined;
|
|
233
|
+
primaryParty?: string | undefined;
|
|
233
234
|
metadata?: {
|
|
234
235
|
resourceVersion: string;
|
|
235
236
|
annotations: Record<string, string>;
|
|
236
237
|
} | undefined;
|
|
237
|
-
primaryParty?: string | undefined;
|
|
238
238
|
};
|
|
239
239
|
rights?: {
|
|
240
240
|
kind: {
|
|
@@ -287,42 +287,42 @@ export declare const InteractiveSubmissionCreateUserResponseSchema: z.ZodObject<
|
|
|
287
287
|
id: string;
|
|
288
288
|
isDeactivated: boolean;
|
|
289
289
|
identityProviderId?: string | undefined;
|
|
290
|
+
primaryParty?: string | undefined;
|
|
290
291
|
metadata?: {
|
|
291
292
|
resourceVersion: string;
|
|
292
293
|
annotations: Record<string, string>;
|
|
293
294
|
} | undefined;
|
|
294
|
-
primaryParty?: string | undefined;
|
|
295
295
|
}, {
|
|
296
296
|
id: string;
|
|
297
297
|
isDeactivated: boolean;
|
|
298
298
|
identityProviderId?: string | undefined;
|
|
299
|
+
primaryParty?: string | undefined;
|
|
299
300
|
metadata?: {
|
|
300
301
|
resourceVersion: string;
|
|
301
302
|
annotations: Record<string, string>;
|
|
302
303
|
} | undefined;
|
|
303
|
-
primaryParty?: string | undefined;
|
|
304
304
|
}>;
|
|
305
305
|
}, "strip", z.ZodTypeAny, {
|
|
306
306
|
user: {
|
|
307
307
|
id: string;
|
|
308
308
|
isDeactivated: boolean;
|
|
309
309
|
identityProviderId?: string | undefined;
|
|
310
|
+
primaryParty?: string | undefined;
|
|
310
311
|
metadata?: {
|
|
311
312
|
resourceVersion: string;
|
|
312
313
|
annotations: Record<string, string>;
|
|
313
314
|
} | undefined;
|
|
314
|
-
primaryParty?: string | undefined;
|
|
315
315
|
};
|
|
316
316
|
}, {
|
|
317
317
|
user: {
|
|
318
318
|
id: string;
|
|
319
319
|
isDeactivated: boolean;
|
|
320
320
|
identityProviderId?: string | undefined;
|
|
321
|
+
primaryParty?: string | undefined;
|
|
321
322
|
metadata?: {
|
|
322
323
|
resourceVersion: string;
|
|
323
324
|
annotations: Record<string, string>;
|
|
324
325
|
} | undefined;
|
|
325
|
-
primaryParty?: string | undefined;
|
|
326
326
|
};
|
|
327
327
|
}>;
|
|
328
328
|
/**
|
|
@@ -36,12 +36,12 @@ export declare const PackageReferenceSchema: z.ZodObject<{
|
|
|
36
36
|
/** Package version. */
|
|
37
37
|
packageVersion: z.ZodString;
|
|
38
38
|
}, "strip", z.ZodTypeAny, {
|
|
39
|
-
packageName: string;
|
|
40
39
|
packageId: string;
|
|
40
|
+
packageName: string;
|
|
41
41
|
packageVersion: string;
|
|
42
42
|
}, {
|
|
43
|
-
packageName: string;
|
|
44
43
|
packageId: string;
|
|
44
|
+
packageName: string;
|
|
45
45
|
packageVersion: string;
|
|
46
46
|
}>;
|
|
47
47
|
/**
|
|
@@ -72,12 +72,12 @@ export declare const PackagePreferenceSchema: z.ZodObject<{
|
|
|
72
72
|
/** Package version. */
|
|
73
73
|
packageVersion: z.ZodString;
|
|
74
74
|
}, "strip", z.ZodTypeAny, {
|
|
75
|
-
packageName: string;
|
|
76
75
|
packageId: string;
|
|
76
|
+
packageName: string;
|
|
77
77
|
packageVersion: string;
|
|
78
78
|
}, {
|
|
79
|
-
packageName: string;
|
|
80
79
|
packageId: string;
|
|
80
|
+
packageName: string;
|
|
81
81
|
packageVersion: string;
|
|
82
82
|
}>;
|
|
83
83
|
/** Synchronizer ID. */
|
|
@@ -85,15 +85,15 @@ export declare const PackagePreferenceSchema: z.ZodObject<{
|
|
|
85
85
|
}, "strip", z.ZodTypeAny, {
|
|
86
86
|
synchronizerId: string;
|
|
87
87
|
packageReference: {
|
|
88
|
-
packageName: string;
|
|
89
88
|
packageId: string;
|
|
89
|
+
packageName: string;
|
|
90
90
|
packageVersion: string;
|
|
91
91
|
};
|
|
92
92
|
}, {
|
|
93
93
|
synchronizerId: string;
|
|
94
94
|
packageReference: {
|
|
95
|
-
packageName: string;
|
|
96
95
|
packageId: string;
|
|
96
|
+
packageName: string;
|
|
97
97
|
packageVersion: string;
|
|
98
98
|
};
|
|
99
99
|
}>;
|
|
@@ -146,12 +146,12 @@ export declare const GetPreferredPackagesResponseSchema: z.ZodObject<{
|
|
|
146
146
|
/** Package version. */
|
|
147
147
|
packageVersion: z.ZodString;
|
|
148
148
|
}, "strip", z.ZodTypeAny, {
|
|
149
|
-
packageName: string;
|
|
150
149
|
packageId: string;
|
|
150
|
+
packageName: string;
|
|
151
151
|
packageVersion: string;
|
|
152
152
|
}, {
|
|
153
|
-
packageName: string;
|
|
154
153
|
packageId: string;
|
|
154
|
+
packageName: string;
|
|
155
155
|
packageVersion: string;
|
|
156
156
|
}>, "many">;
|
|
157
157
|
/** Synchronizer ID. */
|
|
@@ -159,15 +159,15 @@ export declare const GetPreferredPackagesResponseSchema: z.ZodObject<{
|
|
|
159
159
|
}, "strip", z.ZodTypeAny, {
|
|
160
160
|
synchronizerId: string;
|
|
161
161
|
packageReferences: {
|
|
162
|
-
packageName: string;
|
|
163
162
|
packageId: string;
|
|
163
|
+
packageName: string;
|
|
164
164
|
packageVersion: string;
|
|
165
165
|
}[];
|
|
166
166
|
}, {
|
|
167
167
|
synchronizerId: string;
|
|
168
168
|
packageReferences: {
|
|
169
|
-
packageName: string;
|
|
170
169
|
packageId: string;
|
|
170
|
+
packageName: string;
|
|
171
171
|
packageVersion: string;
|
|
172
172
|
}[];
|
|
173
173
|
}>;
|
|
@@ -186,12 +186,12 @@ export declare const GetPreferredPackageVersionResponseSchema: z.ZodObject<{
|
|
|
186
186
|
/** Package version. */
|
|
187
187
|
packageVersion: z.ZodString;
|
|
188
188
|
}, "strip", z.ZodTypeAny, {
|
|
189
|
-
packageName: string;
|
|
190
189
|
packageId: string;
|
|
190
|
+
packageName: string;
|
|
191
191
|
packageVersion: string;
|
|
192
192
|
}, {
|
|
193
|
-
packageName: string;
|
|
194
193
|
packageId: string;
|
|
194
|
+
packageName: string;
|
|
195
195
|
packageVersion: string;
|
|
196
196
|
}>;
|
|
197
197
|
/** Synchronizer ID. */
|
|
@@ -199,15 +199,15 @@ export declare const GetPreferredPackageVersionResponseSchema: z.ZodObject<{
|
|
|
199
199
|
}, "strip", z.ZodTypeAny, {
|
|
200
200
|
synchronizerId: string;
|
|
201
201
|
packageReference: {
|
|
202
|
-
packageName: string;
|
|
203
202
|
packageId: string;
|
|
203
|
+
packageName: string;
|
|
204
204
|
packageVersion: string;
|
|
205
205
|
};
|
|
206
206
|
}, {
|
|
207
207
|
synchronizerId: string;
|
|
208
208
|
packageReference: {
|
|
209
|
-
packageName: string;
|
|
210
209
|
packageId: string;
|
|
210
|
+
packageName: string;
|
|
211
211
|
packageVersion: string;
|
|
212
212
|
};
|
|
213
213
|
}>>;
|
|
@@ -215,8 +215,8 @@ export declare const GetPreferredPackageVersionResponseSchema: z.ZodObject<{
|
|
|
215
215
|
packagePreference?: {
|
|
216
216
|
synchronizerId: string;
|
|
217
217
|
packageReference: {
|
|
218
|
-
packageName: string;
|
|
219
218
|
packageId: string;
|
|
219
|
+
packageName: string;
|
|
220
220
|
packageVersion: string;
|
|
221
221
|
};
|
|
222
222
|
} | undefined;
|
|
@@ -224,8 +224,8 @@ export declare const GetPreferredPackageVersionResponseSchema: z.ZodObject<{
|
|
|
224
224
|
packagePreference?: {
|
|
225
225
|
synchronizerId: string;
|
|
226
226
|
packageReference: {
|
|
227
|
-
packageName: string;
|
|
228
227
|
packageId: string;
|
|
228
|
+
packageName: string;
|
|
229
229
|
packageVersion: string;
|
|
230
230
|
};
|
|
231
231
|
} | undefined;
|