@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
|
@@ -10,12 +10,12 @@ export declare const InteractiveSubmissionAllocatePartyParamsSchema: z.ZodObject
|
|
|
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
|
/**
|
|
@@ -49,20 +49,20 @@ export declare const InteractiveSubmissionCreateUserParamsSchema: z.ZodObject<{
|
|
|
49
49
|
id: string;
|
|
50
50
|
isDeactivated: boolean;
|
|
51
51
|
identityProviderId?: string | undefined;
|
|
52
|
+
primaryParty?: string | undefined;
|
|
52
53
|
metadata?: {
|
|
53
54
|
resourceVersion: string;
|
|
54
55
|
annotations: Record<string, string>;
|
|
55
56
|
} | undefined;
|
|
56
|
-
primaryParty?: string | undefined;
|
|
57
57
|
}, {
|
|
58
58
|
id: string;
|
|
59
59
|
isDeactivated: boolean;
|
|
60
60
|
identityProviderId?: string | undefined;
|
|
61
|
+
primaryParty?: string | undefined;
|
|
61
62
|
metadata?: {
|
|
62
63
|
resourceVersion: string;
|
|
63
64
|
annotations: Record<string, string>;
|
|
64
65
|
} | undefined;
|
|
65
|
-
primaryParty?: string | undefined;
|
|
66
66
|
}>;
|
|
67
67
|
/** Rights to assign to the user (optional). */
|
|
68
68
|
rights: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -166,11 +166,11 @@ export declare const InteractiveSubmissionCreateUserParamsSchema: z.ZodObject<{
|
|
|
166
166
|
id: string;
|
|
167
167
|
isDeactivated: boolean;
|
|
168
168
|
identityProviderId?: string | undefined;
|
|
169
|
+
primaryParty?: string | undefined;
|
|
169
170
|
metadata?: {
|
|
170
171
|
resourceVersion: string;
|
|
171
172
|
annotations: Record<string, string>;
|
|
172
173
|
} | undefined;
|
|
173
|
-
primaryParty?: string | undefined;
|
|
174
174
|
};
|
|
175
175
|
rights?: {
|
|
176
176
|
kind: {
|
|
@@ -196,11 +196,11 @@ export declare const InteractiveSubmissionCreateUserParamsSchema: z.ZodObject<{
|
|
|
196
196
|
id: string;
|
|
197
197
|
isDeactivated: boolean;
|
|
198
198
|
identityProviderId?: string | undefined;
|
|
199
|
+
primaryParty?: string | undefined;
|
|
199
200
|
metadata?: {
|
|
200
201
|
resourceVersion: string;
|
|
201
202
|
annotations: Record<string, string>;
|
|
202
203
|
} | undefined;
|
|
203
|
-
primaryParty?: string | undefined;
|
|
204
204
|
};
|
|
205
205
|
rights?: {
|
|
206
206
|
kind: {
|
|
@@ -42,21 +42,21 @@ export declare const AllocatePartyParamsSchema: z.ZodObject<{
|
|
|
42
42
|
}, "strip", z.ZodTypeAny, {
|
|
43
43
|
userId?: string | undefined;
|
|
44
44
|
synchronizerId?: string | undefined;
|
|
45
|
-
|
|
45
|
+
partyIdHint?: string | undefined;
|
|
46
46
|
localMetadata?: {
|
|
47
47
|
resourceVersion: string;
|
|
48
48
|
annotations: Record<string, string>;
|
|
49
49
|
} | undefined;
|
|
50
|
-
|
|
50
|
+
identityProviderId?: string | undefined;
|
|
51
51
|
}, {
|
|
52
52
|
userId?: string | undefined;
|
|
53
53
|
synchronizerId?: string | undefined;
|
|
54
|
-
|
|
54
|
+
partyIdHint?: string | undefined;
|
|
55
55
|
localMetadata?: {
|
|
56
56
|
resourceVersion: string;
|
|
57
57
|
annotations: Record<string, string>;
|
|
58
58
|
} | undefined;
|
|
59
|
-
|
|
59
|
+
identityProviderId?: string | undefined;
|
|
60
60
|
}>;
|
|
61
61
|
/**
|
|
62
62
|
* Parameters for getting participant ID.
|
|
@@ -111,19 +111,19 @@ export declare const UpdatePartyDetailsParamsSchema: z.ZodObject<{
|
|
|
111
111
|
}, "strip", z.ZodTypeAny, {
|
|
112
112
|
party: string;
|
|
113
113
|
isLocal: boolean;
|
|
114
|
-
identityProviderId?: string | undefined;
|
|
115
114
|
localMetadata?: {
|
|
116
115
|
resourceVersion: string;
|
|
117
116
|
annotations: Record<string, string>;
|
|
118
117
|
} | undefined;
|
|
118
|
+
identityProviderId?: string | undefined;
|
|
119
119
|
}, {
|
|
120
120
|
party: string;
|
|
121
121
|
isLocal: boolean;
|
|
122
|
-
identityProviderId?: string | undefined;
|
|
123
122
|
localMetadata?: {
|
|
124
123
|
resourceVersion: string;
|
|
125
124
|
annotations: Record<string, string>;
|
|
126
125
|
} | undefined;
|
|
126
|
+
identityProviderId?: string | undefined;
|
|
127
127
|
}>;
|
|
128
128
|
/** Update mask for partial updates. */
|
|
129
129
|
updateMask: z.ZodObject<{
|
|
@@ -136,31 +136,31 @@ export declare const UpdatePartyDetailsParamsSchema: z.ZodObject<{
|
|
|
136
136
|
}>;
|
|
137
137
|
}, "strip", z.ZodTypeAny, {
|
|
138
138
|
party: string;
|
|
139
|
-
updateMask: {
|
|
140
|
-
paths: string[];
|
|
141
|
-
};
|
|
142
139
|
partyDetails: {
|
|
143
140
|
party: string;
|
|
144
141
|
isLocal: boolean;
|
|
145
|
-
identityProviderId?: string | undefined;
|
|
146
142
|
localMetadata?: {
|
|
147
143
|
resourceVersion: string;
|
|
148
144
|
annotations: Record<string, string>;
|
|
149
145
|
} | undefined;
|
|
146
|
+
identityProviderId?: string | undefined;
|
|
150
147
|
};
|
|
151
|
-
}, {
|
|
152
|
-
party: string;
|
|
153
148
|
updateMask: {
|
|
154
149
|
paths: string[];
|
|
155
150
|
};
|
|
151
|
+
}, {
|
|
152
|
+
party: string;
|
|
156
153
|
partyDetails: {
|
|
157
154
|
party: string;
|
|
158
155
|
isLocal: boolean;
|
|
159
|
-
identityProviderId?: string | undefined;
|
|
160
156
|
localMetadata?: {
|
|
161
157
|
resourceVersion: string;
|
|
162
158
|
annotations: Record<string, string>;
|
|
163
159
|
} | undefined;
|
|
160
|
+
identityProviderId?: string | undefined;
|
|
161
|
+
};
|
|
162
|
+
updateMask: {
|
|
163
|
+
paths: string[];
|
|
164
164
|
};
|
|
165
165
|
}>;
|
|
166
166
|
export type ListKnownPartiesParams = z.infer<typeof ListKnownPartiesParamsSchema>;
|