@fairmint/canton-node-sdk 0.0.38 → 0.0.40
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 +12 -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/package.json +1 -1
|
@@ -45,20 +45,20 @@ export declare const CreateUserParamsSchema: z.ZodObject<{
|
|
|
45
45
|
id: string;
|
|
46
46
|
isDeactivated: boolean;
|
|
47
47
|
identityProviderId?: string | undefined;
|
|
48
|
+
primaryParty?: string | undefined;
|
|
48
49
|
metadata?: {
|
|
49
50
|
resourceVersion: string;
|
|
50
51
|
annotations: Record<string, string>;
|
|
51
52
|
} | undefined;
|
|
52
|
-
primaryParty?: string | undefined;
|
|
53
53
|
}, {
|
|
54
54
|
id: string;
|
|
55
55
|
isDeactivated: boolean;
|
|
56
56
|
identityProviderId?: string | undefined;
|
|
57
|
+
primaryParty?: string | undefined;
|
|
57
58
|
metadata?: {
|
|
58
59
|
resourceVersion: string;
|
|
59
60
|
annotations: Record<string, string>;
|
|
60
61
|
} | undefined;
|
|
61
|
-
primaryParty?: string | undefined;
|
|
62
62
|
}>;
|
|
63
63
|
/** Rights to assign to the user (optional). */
|
|
64
64
|
rights: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -162,11 +162,11 @@ export declare const CreateUserParamsSchema: z.ZodObject<{
|
|
|
162
162
|
id: string;
|
|
163
163
|
isDeactivated: boolean;
|
|
164
164
|
identityProviderId?: string | undefined;
|
|
165
|
+
primaryParty?: string | undefined;
|
|
165
166
|
metadata?: {
|
|
166
167
|
resourceVersion: string;
|
|
167
168
|
annotations: Record<string, string>;
|
|
168
169
|
} | undefined;
|
|
169
|
-
primaryParty?: string | undefined;
|
|
170
170
|
};
|
|
171
171
|
rights?: {
|
|
172
172
|
kind: {
|
|
@@ -192,11 +192,11 @@ export declare const CreateUserParamsSchema: z.ZodObject<{
|
|
|
192
192
|
id: string;
|
|
193
193
|
isDeactivated: boolean;
|
|
194
194
|
identityProviderId?: string | undefined;
|
|
195
|
+
primaryParty?: string | undefined;
|
|
195
196
|
metadata?: {
|
|
196
197
|
resourceVersion: string;
|
|
197
198
|
annotations: Record<string, string>;
|
|
198
199
|
} | undefined;
|
|
199
|
-
primaryParty?: string | undefined;
|
|
200
200
|
};
|
|
201
201
|
rights?: {
|
|
202
202
|
kind: {
|
|
@@ -277,20 +277,20 @@ export declare const UpdateUserParamsSchema: z.ZodObject<{
|
|
|
277
277
|
id: string;
|
|
278
278
|
isDeactivated: boolean;
|
|
279
279
|
identityProviderId?: string | undefined;
|
|
280
|
+
primaryParty?: string | undefined;
|
|
280
281
|
metadata?: {
|
|
281
282
|
resourceVersion: string;
|
|
282
283
|
annotations: Record<string, string>;
|
|
283
284
|
} | undefined;
|
|
284
|
-
primaryParty?: string | undefined;
|
|
285
285
|
}, {
|
|
286
286
|
id: string;
|
|
287
287
|
isDeactivated: boolean;
|
|
288
288
|
identityProviderId?: string | undefined;
|
|
289
|
+
primaryParty?: string | undefined;
|
|
289
290
|
metadata?: {
|
|
290
291
|
resourceVersion: string;
|
|
291
292
|
annotations: Record<string, string>;
|
|
292
293
|
} | undefined;
|
|
293
|
-
primaryParty?: string | undefined;
|
|
294
294
|
}>;
|
|
295
295
|
/** Update mask for partial updates. */
|
|
296
296
|
updateMask: z.ZodObject<{
|
|
@@ -303,33 +303,33 @@ export declare const UpdateUserParamsSchema: z.ZodObject<{
|
|
|
303
303
|
}>;
|
|
304
304
|
}, "strip", z.ZodTypeAny, {
|
|
305
305
|
userId: string;
|
|
306
|
+
updateMask: {
|
|
307
|
+
paths: string[];
|
|
308
|
+
};
|
|
306
309
|
user: {
|
|
307
310
|
id: string;
|
|
308
311
|
isDeactivated: boolean;
|
|
309
312
|
identityProviderId?: string | undefined;
|
|
313
|
+
primaryParty?: string | undefined;
|
|
310
314
|
metadata?: {
|
|
311
315
|
resourceVersion: string;
|
|
312
316
|
annotations: Record<string, string>;
|
|
313
317
|
} | undefined;
|
|
314
|
-
primaryParty?: string | undefined;
|
|
315
318
|
};
|
|
319
|
+
}, {
|
|
320
|
+
userId: string;
|
|
316
321
|
updateMask: {
|
|
317
322
|
paths: string[];
|
|
318
323
|
};
|
|
319
|
-
}, {
|
|
320
|
-
userId: string;
|
|
321
324
|
user: {
|
|
322
325
|
id: string;
|
|
323
326
|
isDeactivated: boolean;
|
|
324
327
|
identityProviderId?: string | undefined;
|
|
328
|
+
primaryParty?: string | undefined;
|
|
325
329
|
metadata?: {
|
|
326
330
|
resourceVersion: string;
|
|
327
331
|
annotations: Record<string, string>;
|
|
328
332
|
} | undefined;
|
|
329
|
-
primaryParty?: string | undefined;
|
|
330
|
-
};
|
|
331
|
-
updateMask: {
|
|
332
|
-
paths: string[];
|
|
333
333
|
};
|
|
334
334
|
}>;
|
|
335
335
|
/**
|
|
@@ -450,6 +450,7 @@ export declare const GrantUserRightsParamsSchema: z.ZodObject<{
|
|
|
450
450
|
identityProviderId: z.ZodOptional<z.ZodString>;
|
|
451
451
|
}, "strip", z.ZodTypeAny, {
|
|
452
452
|
userId: string;
|
|
453
|
+
identityProviderId?: string | undefined;
|
|
453
454
|
rights?: {
|
|
454
455
|
kind: {
|
|
455
456
|
CanActAs: {
|
|
@@ -469,9 +470,9 @@ export declare const GrantUserRightsParamsSchema: z.ZodObject<{
|
|
|
469
470
|
ParticipantAdmin: {};
|
|
470
471
|
};
|
|
471
472
|
}[] | undefined;
|
|
472
|
-
identityProviderId?: string | undefined;
|
|
473
473
|
}, {
|
|
474
474
|
userId: string;
|
|
475
|
+
identityProviderId?: string | undefined;
|
|
475
476
|
rights?: {
|
|
476
477
|
kind: {
|
|
477
478
|
CanActAs: {
|
|
@@ -491,7 +492,6 @@ export declare const GrantUserRightsParamsSchema: z.ZodObject<{
|
|
|
491
492
|
ParticipantAdmin: {};
|
|
492
493
|
};
|
|
493
494
|
}[] | undefined;
|
|
494
|
-
identityProviderId?: string | undefined;
|
|
495
495
|
}>;
|
|
496
496
|
/**
|
|
497
497
|
* Schema for revoke user rights parameters.
|
|
@@ -600,6 +600,7 @@ export declare const RevokeUserRightsParamsSchema: z.ZodObject<{
|
|
|
600
600
|
identityProviderId: z.ZodOptional<z.ZodString>;
|
|
601
601
|
}, "strip", z.ZodTypeAny, {
|
|
602
602
|
userId: string;
|
|
603
|
+
identityProviderId?: string | undefined;
|
|
603
604
|
rights?: {
|
|
604
605
|
kind: {
|
|
605
606
|
CanActAs: {
|
|
@@ -619,9 +620,9 @@ export declare const RevokeUserRightsParamsSchema: z.ZodObject<{
|
|
|
619
620
|
ParticipantAdmin: {};
|
|
620
621
|
};
|
|
621
622
|
}[] | undefined;
|
|
622
|
-
identityProviderId?: string | undefined;
|
|
623
623
|
}, {
|
|
624
624
|
userId: string;
|
|
625
|
+
identityProviderId?: string | undefined;
|
|
625
626
|
rights?: {
|
|
626
627
|
kind: {
|
|
627
628
|
CanActAs: {
|
|
@@ -641,7 +642,6 @@ export declare const RevokeUserRightsParamsSchema: z.ZodObject<{
|
|
|
641
642
|
ParticipantAdmin: {};
|
|
642
643
|
};
|
|
643
644
|
}[] | undefined;
|
|
644
|
-
identityProviderId?: string | undefined;
|
|
645
645
|
}>;
|
|
646
646
|
/**
|
|
647
647
|
* Schema for update user identity provider parameters.
|