@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
|
@@ -967,6 +967,7 @@ export declare const JsAssignmentEventSchema: z.ZodObject<{
|
|
|
967
967
|
contractId: string;
|
|
968
968
|
offset: number;
|
|
969
969
|
templateId: string;
|
|
970
|
+
packageName: string;
|
|
970
971
|
contractKey: string | null;
|
|
971
972
|
createdEventBlob: string;
|
|
972
973
|
nodeId: number;
|
|
@@ -976,12 +977,12 @@ export declare const JsAssignmentEventSchema: z.ZodObject<{
|
|
|
976
977
|
signatories: string[];
|
|
977
978
|
observers: string[];
|
|
978
979
|
createdAt: string;
|
|
979
|
-
packageName: string;
|
|
980
980
|
implementedInterfaces?: string[] | undefined;
|
|
981
981
|
}, {
|
|
982
982
|
contractId: string;
|
|
983
983
|
offset: number;
|
|
984
984
|
templateId: string;
|
|
985
|
+
packageName: string;
|
|
985
986
|
contractKey: string | null;
|
|
986
987
|
createdEventBlob: string;
|
|
987
988
|
nodeId: number;
|
|
@@ -991,19 +992,19 @@ export declare const JsAssignmentEventSchema: z.ZodObject<{
|
|
|
991
992
|
signatories: string[];
|
|
992
993
|
observers: string[];
|
|
993
994
|
createdAt: string;
|
|
994
|
-
packageName: string;
|
|
995
995
|
implementedInterfaces?: string[] | undefined;
|
|
996
996
|
}>;
|
|
997
997
|
}, "strip", z.ZodTypeAny, {
|
|
998
|
+
submitter: string;
|
|
998
999
|
reassignmentId: string;
|
|
999
1000
|
source: string;
|
|
1000
1001
|
target: string;
|
|
1001
|
-
submitter: string;
|
|
1002
1002
|
reassignmentCounter: number;
|
|
1003
1003
|
createdEvent: {
|
|
1004
1004
|
contractId: string;
|
|
1005
1005
|
offset: number;
|
|
1006
1006
|
templateId: string;
|
|
1007
|
+
packageName: string;
|
|
1007
1008
|
contractKey: string | null;
|
|
1008
1009
|
createdEventBlob: string;
|
|
1009
1010
|
nodeId: number;
|
|
@@ -1013,19 +1014,19 @@ export declare const JsAssignmentEventSchema: z.ZodObject<{
|
|
|
1013
1014
|
signatories: string[];
|
|
1014
1015
|
observers: string[];
|
|
1015
1016
|
createdAt: string;
|
|
1016
|
-
packageName: string;
|
|
1017
1017
|
implementedInterfaces?: string[] | undefined;
|
|
1018
1018
|
};
|
|
1019
1019
|
}, {
|
|
1020
|
+
submitter: string;
|
|
1020
1021
|
reassignmentId: string;
|
|
1021
1022
|
source: string;
|
|
1022
1023
|
target: string;
|
|
1023
|
-
submitter: string;
|
|
1024
1024
|
reassignmentCounter: number;
|
|
1025
1025
|
createdEvent: {
|
|
1026
1026
|
contractId: string;
|
|
1027
1027
|
offset: number;
|
|
1028
1028
|
templateId: string;
|
|
1029
|
+
packageName: string;
|
|
1029
1030
|
contractKey: string | null;
|
|
1030
1031
|
createdEventBlob: string;
|
|
1031
1032
|
nodeId: number;
|
|
@@ -1035,7 +1036,6 @@ export declare const JsAssignmentEventSchema: z.ZodObject<{
|
|
|
1035
1036
|
signatories: string[];
|
|
1036
1037
|
observers: string[];
|
|
1037
1038
|
createdAt: string;
|
|
1038
|
-
packageName: string;
|
|
1039
1039
|
implementedInterfaces?: string[] | undefined;
|
|
1040
1040
|
};
|
|
1041
1041
|
}>;
|
|
@@ -1059,23 +1059,23 @@ export declare const JsUnassignedEventSchema: z.ZodObject<{
|
|
|
1059
1059
|
contractId: string;
|
|
1060
1060
|
offset: number;
|
|
1061
1061
|
templateId: string;
|
|
1062
|
+
packageName: string;
|
|
1063
|
+
submitter: string;
|
|
1062
1064
|
reassignmentId: string;
|
|
1063
1065
|
source: string;
|
|
1064
1066
|
target: string;
|
|
1065
|
-
submitter: string;
|
|
1066
1067
|
nodeId: number;
|
|
1067
|
-
packageName: string;
|
|
1068
1068
|
reassignmentCounter: number;
|
|
1069
1069
|
}, {
|
|
1070
1070
|
contractId: string;
|
|
1071
1071
|
offset: number;
|
|
1072
1072
|
templateId: string;
|
|
1073
|
+
packageName: string;
|
|
1074
|
+
submitter: string;
|
|
1073
1075
|
reassignmentId: string;
|
|
1074
1076
|
source: string;
|
|
1075
1077
|
target: string;
|
|
1076
|
-
submitter: string;
|
|
1077
1078
|
nodeId: number;
|
|
1078
|
-
packageName: string;
|
|
1079
1079
|
reassignmentCounter: number;
|
|
1080
1080
|
}>;
|
|
1081
1081
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1083,12 +1083,12 @@ export declare const JsUnassignedEventSchema: z.ZodObject<{
|
|
|
1083
1083
|
contractId: string;
|
|
1084
1084
|
offset: number;
|
|
1085
1085
|
templateId: string;
|
|
1086
|
+
packageName: string;
|
|
1087
|
+
submitter: string;
|
|
1086
1088
|
reassignmentId: string;
|
|
1087
1089
|
source: string;
|
|
1088
1090
|
target: string;
|
|
1089
|
-
submitter: string;
|
|
1090
1091
|
nodeId: number;
|
|
1091
|
-
packageName: string;
|
|
1092
1092
|
reassignmentCounter: number;
|
|
1093
1093
|
};
|
|
1094
1094
|
}, {
|
|
@@ -1096,12 +1096,12 @@ export declare const JsUnassignedEventSchema: z.ZodObject<{
|
|
|
1096
1096
|
contractId: string;
|
|
1097
1097
|
offset: number;
|
|
1098
1098
|
templateId: string;
|
|
1099
|
+
packageName: string;
|
|
1100
|
+
submitter: string;
|
|
1099
1101
|
reassignmentId: string;
|
|
1100
1102
|
source: string;
|
|
1101
1103
|
target: string;
|
|
1102
|
-
submitter: string;
|
|
1103
1104
|
nodeId: number;
|
|
1104
|
-
packageName: string;
|
|
1105
1105
|
reassignmentCounter: number;
|
|
1106
1106
|
};
|
|
1107
1107
|
}>;
|
|
@@ -1140,6 +1140,7 @@ export declare const JsReassignmentEventSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1140
1140
|
contractId: string;
|
|
1141
1141
|
offset: number;
|
|
1142
1142
|
templateId: string;
|
|
1143
|
+
packageName: string;
|
|
1143
1144
|
contractKey: string | null;
|
|
1144
1145
|
createdEventBlob: string;
|
|
1145
1146
|
nodeId: number;
|
|
@@ -1149,12 +1150,12 @@ export declare const JsReassignmentEventSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1149
1150
|
signatories: string[];
|
|
1150
1151
|
observers: string[];
|
|
1151
1152
|
createdAt: string;
|
|
1152
|
-
packageName: string;
|
|
1153
1153
|
implementedInterfaces?: string[] | undefined;
|
|
1154
1154
|
}, {
|
|
1155
1155
|
contractId: string;
|
|
1156
1156
|
offset: number;
|
|
1157
1157
|
templateId: string;
|
|
1158
|
+
packageName: string;
|
|
1158
1159
|
contractKey: string | null;
|
|
1159
1160
|
createdEventBlob: string;
|
|
1160
1161
|
nodeId: number;
|
|
@@ -1164,19 +1165,19 @@ export declare const JsReassignmentEventSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1164
1165
|
signatories: string[];
|
|
1165
1166
|
observers: string[];
|
|
1166
1167
|
createdAt: string;
|
|
1167
|
-
packageName: string;
|
|
1168
1168
|
implementedInterfaces?: string[] | undefined;
|
|
1169
1169
|
}>;
|
|
1170
1170
|
}, "strip", z.ZodTypeAny, {
|
|
1171
|
+
submitter: string;
|
|
1171
1172
|
reassignmentId: string;
|
|
1172
1173
|
source: string;
|
|
1173
1174
|
target: string;
|
|
1174
|
-
submitter: string;
|
|
1175
1175
|
reassignmentCounter: number;
|
|
1176
1176
|
createdEvent: {
|
|
1177
1177
|
contractId: string;
|
|
1178
1178
|
offset: number;
|
|
1179
1179
|
templateId: string;
|
|
1180
|
+
packageName: string;
|
|
1180
1181
|
contractKey: string | null;
|
|
1181
1182
|
createdEventBlob: string;
|
|
1182
1183
|
nodeId: number;
|
|
@@ -1186,19 +1187,19 @@ export declare const JsReassignmentEventSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1186
1187
|
signatories: string[];
|
|
1187
1188
|
observers: string[];
|
|
1188
1189
|
createdAt: string;
|
|
1189
|
-
packageName: string;
|
|
1190
1190
|
implementedInterfaces?: string[] | undefined;
|
|
1191
1191
|
};
|
|
1192
1192
|
}, {
|
|
1193
|
+
submitter: string;
|
|
1193
1194
|
reassignmentId: string;
|
|
1194
1195
|
source: string;
|
|
1195
1196
|
target: string;
|
|
1196
|
-
submitter: string;
|
|
1197
1197
|
reassignmentCounter: number;
|
|
1198
1198
|
createdEvent: {
|
|
1199
1199
|
contractId: string;
|
|
1200
1200
|
offset: number;
|
|
1201
1201
|
templateId: string;
|
|
1202
|
+
packageName: string;
|
|
1202
1203
|
contractKey: string | null;
|
|
1203
1204
|
createdEventBlob: string;
|
|
1204
1205
|
nodeId: number;
|
|
@@ -1208,21 +1209,21 @@ export declare const JsReassignmentEventSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1208
1209
|
signatories: string[];
|
|
1209
1210
|
observers: string[];
|
|
1210
1211
|
createdAt: string;
|
|
1211
|
-
packageName: string;
|
|
1212
1212
|
implementedInterfaces?: string[] | undefined;
|
|
1213
1213
|
};
|
|
1214
1214
|
}>;
|
|
1215
1215
|
}, "strip", z.ZodTypeAny, {
|
|
1216
1216
|
JsAssignmentEvent: {
|
|
1217
|
+
submitter: string;
|
|
1217
1218
|
reassignmentId: string;
|
|
1218
1219
|
source: string;
|
|
1219
1220
|
target: string;
|
|
1220
|
-
submitter: string;
|
|
1221
1221
|
reassignmentCounter: number;
|
|
1222
1222
|
createdEvent: {
|
|
1223
1223
|
contractId: string;
|
|
1224
1224
|
offset: number;
|
|
1225
1225
|
templateId: string;
|
|
1226
|
+
packageName: string;
|
|
1226
1227
|
contractKey: string | null;
|
|
1227
1228
|
createdEventBlob: string;
|
|
1228
1229
|
nodeId: number;
|
|
@@ -1232,21 +1233,21 @@ export declare const JsReassignmentEventSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1232
1233
|
signatories: string[];
|
|
1233
1234
|
observers: string[];
|
|
1234
1235
|
createdAt: string;
|
|
1235
|
-
packageName: string;
|
|
1236
1236
|
implementedInterfaces?: string[] | undefined;
|
|
1237
1237
|
};
|
|
1238
1238
|
};
|
|
1239
1239
|
}, {
|
|
1240
1240
|
JsAssignmentEvent: {
|
|
1241
|
+
submitter: string;
|
|
1241
1242
|
reassignmentId: string;
|
|
1242
1243
|
source: string;
|
|
1243
1244
|
target: string;
|
|
1244
|
-
submitter: string;
|
|
1245
1245
|
reassignmentCounter: number;
|
|
1246
1246
|
createdEvent: {
|
|
1247
1247
|
contractId: string;
|
|
1248
1248
|
offset: number;
|
|
1249
1249
|
templateId: string;
|
|
1250
|
+
packageName: string;
|
|
1250
1251
|
contractKey: string | null;
|
|
1251
1252
|
createdEventBlob: string;
|
|
1252
1253
|
nodeId: number;
|
|
@@ -1256,7 +1257,6 @@ export declare const JsReassignmentEventSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1256
1257
|
signatories: string[];
|
|
1257
1258
|
observers: string[];
|
|
1258
1259
|
createdAt: string;
|
|
1259
|
-
packageName: string;
|
|
1260
1260
|
implementedInterfaces?: string[] | undefined;
|
|
1261
1261
|
};
|
|
1262
1262
|
};
|
|
@@ -1278,23 +1278,23 @@ export declare const JsReassignmentEventSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1278
1278
|
contractId: string;
|
|
1279
1279
|
offset: number;
|
|
1280
1280
|
templateId: string;
|
|
1281
|
+
packageName: string;
|
|
1282
|
+
submitter: string;
|
|
1281
1283
|
reassignmentId: string;
|
|
1282
1284
|
source: string;
|
|
1283
1285
|
target: string;
|
|
1284
|
-
submitter: string;
|
|
1285
1286
|
nodeId: number;
|
|
1286
|
-
packageName: string;
|
|
1287
1287
|
reassignmentCounter: number;
|
|
1288
1288
|
}, {
|
|
1289
1289
|
contractId: string;
|
|
1290
1290
|
offset: number;
|
|
1291
1291
|
templateId: string;
|
|
1292
|
+
packageName: string;
|
|
1293
|
+
submitter: string;
|
|
1292
1294
|
reassignmentId: string;
|
|
1293
1295
|
source: string;
|
|
1294
1296
|
target: string;
|
|
1295
|
-
submitter: string;
|
|
1296
1297
|
nodeId: number;
|
|
1297
|
-
packageName: string;
|
|
1298
1298
|
reassignmentCounter: number;
|
|
1299
1299
|
}>;
|
|
1300
1300
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1302,12 +1302,12 @@ export declare const JsReassignmentEventSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1302
1302
|
contractId: string;
|
|
1303
1303
|
offset: number;
|
|
1304
1304
|
templateId: string;
|
|
1305
|
+
packageName: string;
|
|
1306
|
+
submitter: string;
|
|
1305
1307
|
reassignmentId: string;
|
|
1306
1308
|
source: string;
|
|
1307
1309
|
target: string;
|
|
1308
|
-
submitter: string;
|
|
1309
1310
|
nodeId: number;
|
|
1310
|
-
packageName: string;
|
|
1311
1311
|
reassignmentCounter: number;
|
|
1312
1312
|
};
|
|
1313
1313
|
}, {
|
|
@@ -1315,12 +1315,12 @@ export declare const JsReassignmentEventSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1315
1315
|
contractId: string;
|
|
1316
1316
|
offset: number;
|
|
1317
1317
|
templateId: string;
|
|
1318
|
+
packageName: string;
|
|
1319
|
+
submitter: string;
|
|
1318
1320
|
reassignmentId: string;
|
|
1319
1321
|
source: string;
|
|
1320
1322
|
target: string;
|
|
1321
|
-
submitter: string;
|
|
1322
1323
|
nodeId: number;
|
|
1323
|
-
packageName: string;
|
|
1324
1324
|
reassignmentCounter: number;
|
|
1325
1325
|
};
|
|
1326
1326
|
}>;
|
|
@@ -1330,12 +1330,12 @@ export declare const JsReassignmentEventSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1330
1330
|
contractId: string;
|
|
1331
1331
|
offset: number;
|
|
1332
1332
|
templateId: string;
|
|
1333
|
+
packageName: string;
|
|
1334
|
+
submitter: string;
|
|
1333
1335
|
reassignmentId: string;
|
|
1334
1336
|
source: string;
|
|
1335
1337
|
target: string;
|
|
1336
|
-
submitter: string;
|
|
1337
1338
|
nodeId: number;
|
|
1338
|
-
packageName: string;
|
|
1339
1339
|
reassignmentCounter: number;
|
|
1340
1340
|
};
|
|
1341
1341
|
};
|
|
@@ -1345,12 +1345,12 @@ export declare const JsReassignmentEventSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1345
1345
|
contractId: string;
|
|
1346
1346
|
offset: number;
|
|
1347
1347
|
templateId: string;
|
|
1348
|
+
packageName: string;
|
|
1349
|
+
submitter: string;
|
|
1348
1350
|
reassignmentId: string;
|
|
1349
1351
|
source: string;
|
|
1350
1352
|
target: string;
|
|
1351
|
-
submitter: string;
|
|
1352
1353
|
nodeId: number;
|
|
1353
|
-
packageName: string;
|
|
1354
1354
|
reassignmentCounter: number;
|
|
1355
1355
|
};
|
|
1356
1356
|
};
|
|
@@ -1400,6 +1400,7 @@ export declare const JsReassignmentSchema: z.ZodObject<{
|
|
|
1400
1400
|
contractId: string;
|
|
1401
1401
|
offset: number;
|
|
1402
1402
|
templateId: string;
|
|
1403
|
+
packageName: string;
|
|
1403
1404
|
contractKey: string | null;
|
|
1404
1405
|
createdEventBlob: string;
|
|
1405
1406
|
nodeId: number;
|
|
@@ -1409,12 +1410,12 @@ export declare const JsReassignmentSchema: z.ZodObject<{
|
|
|
1409
1410
|
signatories: string[];
|
|
1410
1411
|
observers: string[];
|
|
1411
1412
|
createdAt: string;
|
|
1412
|
-
packageName: string;
|
|
1413
1413
|
implementedInterfaces?: string[] | undefined;
|
|
1414
1414
|
}, {
|
|
1415
1415
|
contractId: string;
|
|
1416
1416
|
offset: number;
|
|
1417
1417
|
templateId: string;
|
|
1418
|
+
packageName: string;
|
|
1418
1419
|
contractKey: string | null;
|
|
1419
1420
|
createdEventBlob: string;
|
|
1420
1421
|
nodeId: number;
|
|
@@ -1424,19 +1425,19 @@ export declare const JsReassignmentSchema: z.ZodObject<{
|
|
|
1424
1425
|
signatories: string[];
|
|
1425
1426
|
observers: string[];
|
|
1426
1427
|
createdAt: string;
|
|
1427
|
-
packageName: string;
|
|
1428
1428
|
implementedInterfaces?: string[] | undefined;
|
|
1429
1429
|
}>;
|
|
1430
1430
|
}, "strip", z.ZodTypeAny, {
|
|
1431
|
+
submitter: string;
|
|
1431
1432
|
reassignmentId: string;
|
|
1432
1433
|
source: string;
|
|
1433
1434
|
target: string;
|
|
1434
|
-
submitter: string;
|
|
1435
1435
|
reassignmentCounter: number;
|
|
1436
1436
|
createdEvent: {
|
|
1437
1437
|
contractId: string;
|
|
1438
1438
|
offset: number;
|
|
1439
1439
|
templateId: string;
|
|
1440
|
+
packageName: string;
|
|
1440
1441
|
contractKey: string | null;
|
|
1441
1442
|
createdEventBlob: string;
|
|
1442
1443
|
nodeId: number;
|
|
@@ -1446,19 +1447,19 @@ export declare const JsReassignmentSchema: z.ZodObject<{
|
|
|
1446
1447
|
signatories: string[];
|
|
1447
1448
|
observers: string[];
|
|
1448
1449
|
createdAt: string;
|
|
1449
|
-
packageName: string;
|
|
1450
1450
|
implementedInterfaces?: string[] | undefined;
|
|
1451
1451
|
};
|
|
1452
1452
|
}, {
|
|
1453
|
+
submitter: string;
|
|
1453
1454
|
reassignmentId: string;
|
|
1454
1455
|
source: string;
|
|
1455
1456
|
target: string;
|
|
1456
|
-
submitter: string;
|
|
1457
1457
|
reassignmentCounter: number;
|
|
1458
1458
|
createdEvent: {
|
|
1459
1459
|
contractId: string;
|
|
1460
1460
|
offset: number;
|
|
1461
1461
|
templateId: string;
|
|
1462
|
+
packageName: string;
|
|
1462
1463
|
contractKey: string | null;
|
|
1463
1464
|
createdEventBlob: string;
|
|
1464
1465
|
nodeId: number;
|
|
@@ -1468,21 +1469,21 @@ export declare const JsReassignmentSchema: z.ZodObject<{
|
|
|
1468
1469
|
signatories: string[];
|
|
1469
1470
|
observers: string[];
|
|
1470
1471
|
createdAt: string;
|
|
1471
|
-
packageName: string;
|
|
1472
1472
|
implementedInterfaces?: string[] | undefined;
|
|
1473
1473
|
};
|
|
1474
1474
|
}>;
|
|
1475
1475
|
}, "strip", z.ZodTypeAny, {
|
|
1476
1476
|
JsAssignmentEvent: {
|
|
1477
|
+
submitter: string;
|
|
1477
1478
|
reassignmentId: string;
|
|
1478
1479
|
source: string;
|
|
1479
1480
|
target: string;
|
|
1480
|
-
submitter: string;
|
|
1481
1481
|
reassignmentCounter: number;
|
|
1482
1482
|
createdEvent: {
|
|
1483
1483
|
contractId: string;
|
|
1484
1484
|
offset: number;
|
|
1485
1485
|
templateId: string;
|
|
1486
|
+
packageName: string;
|
|
1486
1487
|
contractKey: string | null;
|
|
1487
1488
|
createdEventBlob: string;
|
|
1488
1489
|
nodeId: number;
|
|
@@ -1492,21 +1493,21 @@ export declare const JsReassignmentSchema: z.ZodObject<{
|
|
|
1492
1493
|
signatories: string[];
|
|
1493
1494
|
observers: string[];
|
|
1494
1495
|
createdAt: string;
|
|
1495
|
-
packageName: string;
|
|
1496
1496
|
implementedInterfaces?: string[] | undefined;
|
|
1497
1497
|
};
|
|
1498
1498
|
};
|
|
1499
1499
|
}, {
|
|
1500
1500
|
JsAssignmentEvent: {
|
|
1501
|
+
submitter: string;
|
|
1501
1502
|
reassignmentId: string;
|
|
1502
1503
|
source: string;
|
|
1503
1504
|
target: string;
|
|
1504
|
-
submitter: string;
|
|
1505
1505
|
reassignmentCounter: number;
|
|
1506
1506
|
createdEvent: {
|
|
1507
1507
|
contractId: string;
|
|
1508
1508
|
offset: number;
|
|
1509
1509
|
templateId: string;
|
|
1510
|
+
packageName: string;
|
|
1510
1511
|
contractKey: string | null;
|
|
1511
1512
|
createdEventBlob: string;
|
|
1512
1513
|
nodeId: number;
|
|
@@ -1516,7 +1517,6 @@ export declare const JsReassignmentSchema: z.ZodObject<{
|
|
|
1516
1517
|
signatories: string[];
|
|
1517
1518
|
observers: string[];
|
|
1518
1519
|
createdAt: string;
|
|
1519
|
-
packageName: string;
|
|
1520
1520
|
implementedInterfaces?: string[] | undefined;
|
|
1521
1521
|
};
|
|
1522
1522
|
};
|
|
@@ -1538,23 +1538,23 @@ export declare const JsReassignmentSchema: z.ZodObject<{
|
|
|
1538
1538
|
contractId: string;
|
|
1539
1539
|
offset: number;
|
|
1540
1540
|
templateId: string;
|
|
1541
|
+
packageName: string;
|
|
1542
|
+
submitter: string;
|
|
1541
1543
|
reassignmentId: string;
|
|
1542
1544
|
source: string;
|
|
1543
1545
|
target: string;
|
|
1544
|
-
submitter: string;
|
|
1545
1546
|
nodeId: number;
|
|
1546
|
-
packageName: string;
|
|
1547
1547
|
reassignmentCounter: number;
|
|
1548
1548
|
}, {
|
|
1549
1549
|
contractId: string;
|
|
1550
1550
|
offset: number;
|
|
1551
1551
|
templateId: string;
|
|
1552
|
+
packageName: string;
|
|
1553
|
+
submitter: string;
|
|
1552
1554
|
reassignmentId: string;
|
|
1553
1555
|
source: string;
|
|
1554
1556
|
target: string;
|
|
1555
|
-
submitter: string;
|
|
1556
1557
|
nodeId: number;
|
|
1557
|
-
packageName: string;
|
|
1558
1558
|
reassignmentCounter: number;
|
|
1559
1559
|
}>;
|
|
1560
1560
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1562,12 +1562,12 @@ export declare const JsReassignmentSchema: z.ZodObject<{
|
|
|
1562
1562
|
contractId: string;
|
|
1563
1563
|
offset: number;
|
|
1564
1564
|
templateId: string;
|
|
1565
|
+
packageName: string;
|
|
1566
|
+
submitter: string;
|
|
1565
1567
|
reassignmentId: string;
|
|
1566
1568
|
source: string;
|
|
1567
1569
|
target: string;
|
|
1568
|
-
submitter: string;
|
|
1569
1570
|
nodeId: number;
|
|
1570
|
-
packageName: string;
|
|
1571
1571
|
reassignmentCounter: number;
|
|
1572
1572
|
};
|
|
1573
1573
|
}, {
|
|
@@ -1575,12 +1575,12 @@ export declare const JsReassignmentSchema: z.ZodObject<{
|
|
|
1575
1575
|
contractId: string;
|
|
1576
1576
|
offset: number;
|
|
1577
1577
|
templateId: string;
|
|
1578
|
+
packageName: string;
|
|
1579
|
+
submitter: string;
|
|
1578
1580
|
reassignmentId: string;
|
|
1579
1581
|
source: string;
|
|
1580
1582
|
target: string;
|
|
1581
|
-
submitter: string;
|
|
1582
1583
|
nodeId: number;
|
|
1583
|
-
packageName: string;
|
|
1584
1584
|
reassignmentCounter: number;
|
|
1585
1585
|
};
|
|
1586
1586
|
}>;
|
|
@@ -1590,12 +1590,12 @@ export declare const JsReassignmentSchema: z.ZodObject<{
|
|
|
1590
1590
|
contractId: string;
|
|
1591
1591
|
offset: number;
|
|
1592
1592
|
templateId: string;
|
|
1593
|
+
packageName: string;
|
|
1594
|
+
submitter: string;
|
|
1593
1595
|
reassignmentId: string;
|
|
1594
1596
|
source: string;
|
|
1595
1597
|
target: string;
|
|
1596
|
-
submitter: string;
|
|
1597
1598
|
nodeId: number;
|
|
1598
|
-
packageName: string;
|
|
1599
1599
|
reassignmentCounter: number;
|
|
1600
1600
|
};
|
|
1601
1601
|
};
|
|
@@ -1605,12 +1605,12 @@ export declare const JsReassignmentSchema: z.ZodObject<{
|
|
|
1605
1605
|
contractId: string;
|
|
1606
1606
|
offset: number;
|
|
1607
1607
|
templateId: string;
|
|
1608
|
+
packageName: string;
|
|
1609
|
+
submitter: string;
|
|
1608
1610
|
reassignmentId: string;
|
|
1609
1611
|
source: string;
|
|
1610
1612
|
target: string;
|
|
1611
|
-
submitter: string;
|
|
1612
1613
|
nodeId: number;
|
|
1613
|
-
packageName: string;
|
|
1614
1614
|
reassignmentCounter: number;
|
|
1615
1615
|
};
|
|
1616
1616
|
};
|
|
@@ -1622,15 +1622,15 @@ export declare const JsReassignmentSchema: z.ZodObject<{
|
|
|
1622
1622
|
parentSpanId: z.ZodOptional<z.ZodString>;
|
|
1623
1623
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1624
1624
|
}, "strip", z.ZodTypeAny, {
|
|
1625
|
+
metadata?: Record<string, string> | undefined;
|
|
1625
1626
|
traceId?: string | undefined;
|
|
1626
1627
|
spanId?: string | undefined;
|
|
1627
1628
|
parentSpanId?: string | undefined;
|
|
1628
|
-
metadata?: Record<string, string> | undefined;
|
|
1629
1629
|
}, {
|
|
1630
|
+
metadata?: Record<string, string> | undefined;
|
|
1630
1631
|
traceId?: string | undefined;
|
|
1631
1632
|
spanId?: string | undefined;
|
|
1632
1633
|
parentSpanId?: string | undefined;
|
|
1633
|
-
metadata?: Record<string, string> | undefined;
|
|
1634
1634
|
}>>;
|
|
1635
1635
|
/** Record time of the reassignment. */
|
|
1636
1636
|
recordTime: z.ZodString;
|
|
@@ -1640,15 +1640,16 @@ export declare const JsReassignmentSchema: z.ZodObject<{
|
|
|
1640
1640
|
recordTime: string;
|
|
1641
1641
|
events: ({
|
|
1642
1642
|
JsAssignmentEvent: {
|
|
1643
|
+
submitter: string;
|
|
1643
1644
|
reassignmentId: string;
|
|
1644
1645
|
source: string;
|
|
1645
1646
|
target: string;
|
|
1646
|
-
submitter: string;
|
|
1647
1647
|
reassignmentCounter: number;
|
|
1648
1648
|
createdEvent: {
|
|
1649
1649
|
contractId: string;
|
|
1650
1650
|
offset: number;
|
|
1651
1651
|
templateId: string;
|
|
1652
|
+
packageName: string;
|
|
1652
1653
|
contractKey: string | null;
|
|
1653
1654
|
createdEventBlob: string;
|
|
1654
1655
|
nodeId: number;
|
|
@@ -1658,7 +1659,6 @@ export declare const JsReassignmentSchema: z.ZodObject<{
|
|
|
1658
1659
|
signatories: string[];
|
|
1659
1660
|
observers: string[];
|
|
1660
1661
|
createdAt: string;
|
|
1661
|
-
packageName: string;
|
|
1662
1662
|
implementedInterfaces?: string[] | undefined;
|
|
1663
1663
|
};
|
|
1664
1664
|
};
|
|
@@ -1668,12 +1668,12 @@ export declare const JsReassignmentSchema: z.ZodObject<{
|
|
|
1668
1668
|
contractId: string;
|
|
1669
1669
|
offset: number;
|
|
1670
1670
|
templateId: string;
|
|
1671
|
+
packageName: string;
|
|
1672
|
+
submitter: string;
|
|
1671
1673
|
reassignmentId: string;
|
|
1672
1674
|
source: string;
|
|
1673
1675
|
target: string;
|
|
1674
|
-
submitter: string;
|
|
1675
1676
|
nodeId: number;
|
|
1676
|
-
packageName: string;
|
|
1677
1677
|
reassignmentCounter: number;
|
|
1678
1678
|
};
|
|
1679
1679
|
};
|
|
@@ -1681,10 +1681,10 @@ export declare const JsReassignmentSchema: z.ZodObject<{
|
|
|
1681
1681
|
commandId?: string | undefined;
|
|
1682
1682
|
workflowId?: string | undefined;
|
|
1683
1683
|
traceContext?: {
|
|
1684
|
+
metadata?: Record<string, string> | undefined;
|
|
1684
1685
|
traceId?: string | undefined;
|
|
1685
1686
|
spanId?: string | undefined;
|
|
1686
1687
|
parentSpanId?: string | undefined;
|
|
1687
|
-
metadata?: Record<string, string> | undefined;
|
|
1688
1688
|
} | undefined;
|
|
1689
1689
|
}, {
|
|
1690
1690
|
offset: number;
|
|
@@ -1692,15 +1692,16 @@ export declare const JsReassignmentSchema: z.ZodObject<{
|
|
|
1692
1692
|
recordTime: string;
|
|
1693
1693
|
events: ({
|
|
1694
1694
|
JsAssignmentEvent: {
|
|
1695
|
+
submitter: string;
|
|
1695
1696
|
reassignmentId: string;
|
|
1696
1697
|
source: string;
|
|
1697
1698
|
target: string;
|
|
1698
|
-
submitter: string;
|
|
1699
1699
|
reassignmentCounter: number;
|
|
1700
1700
|
createdEvent: {
|
|
1701
1701
|
contractId: string;
|
|
1702
1702
|
offset: number;
|
|
1703
1703
|
templateId: string;
|
|
1704
|
+
packageName: string;
|
|
1704
1705
|
contractKey: string | null;
|
|
1705
1706
|
createdEventBlob: string;
|
|
1706
1707
|
nodeId: number;
|
|
@@ -1710,7 +1711,6 @@ export declare const JsReassignmentSchema: z.ZodObject<{
|
|
|
1710
1711
|
signatories: string[];
|
|
1711
1712
|
observers: string[];
|
|
1712
1713
|
createdAt: string;
|
|
1713
|
-
packageName: string;
|
|
1714
1714
|
implementedInterfaces?: string[] | undefined;
|
|
1715
1715
|
};
|
|
1716
1716
|
};
|
|
@@ -1720,12 +1720,12 @@ export declare const JsReassignmentSchema: z.ZodObject<{
|
|
|
1720
1720
|
contractId: string;
|
|
1721
1721
|
offset: number;
|
|
1722
1722
|
templateId: string;
|
|
1723
|
+
packageName: string;
|
|
1724
|
+
submitter: string;
|
|
1723
1725
|
reassignmentId: string;
|
|
1724
1726
|
source: string;
|
|
1725
1727
|
target: string;
|
|
1726
|
-
submitter: string;
|
|
1727
1728
|
nodeId: number;
|
|
1728
|
-
packageName: string;
|
|
1729
1729
|
reassignmentCounter: number;
|
|
1730
1730
|
};
|
|
1731
1731
|
};
|
|
@@ -1733,10 +1733,10 @@ export declare const JsReassignmentSchema: z.ZodObject<{
|
|
|
1733
1733
|
commandId?: string | undefined;
|
|
1734
1734
|
workflowId?: string | undefined;
|
|
1735
1735
|
traceContext?: {
|
|
1736
|
+
metadata?: Record<string, string> | undefined;
|
|
1736
1737
|
traceId?: string | undefined;
|
|
1737
1738
|
spanId?: string | undefined;
|
|
1738
1739
|
parentSpanId?: string | undefined;
|
|
1739
|
-
metadata?: Record<string, string> | undefined;
|
|
1740
1740
|
} | undefined;
|
|
1741
1741
|
}>;
|
|
1742
1742
|
/**
|
|
@@ -1786,6 +1786,7 @@ export declare const JsSubmitAndWaitForReassignmentResponseSchema: z.ZodObject<{
|
|
|
1786
1786
|
contractId: string;
|
|
1787
1787
|
offset: number;
|
|
1788
1788
|
templateId: string;
|
|
1789
|
+
packageName: string;
|
|
1789
1790
|
contractKey: string | null;
|
|
1790
1791
|
createdEventBlob: string;
|
|
1791
1792
|
nodeId: number;
|
|
@@ -1795,12 +1796,12 @@ export declare const JsSubmitAndWaitForReassignmentResponseSchema: z.ZodObject<{
|
|
|
1795
1796
|
signatories: string[];
|
|
1796
1797
|
observers: string[];
|
|
1797
1798
|
createdAt: string;
|
|
1798
|
-
packageName: string;
|
|
1799
1799
|
implementedInterfaces?: string[] | undefined;
|
|
1800
1800
|
}, {
|
|
1801
1801
|
contractId: string;
|
|
1802
1802
|
offset: number;
|
|
1803
1803
|
templateId: string;
|
|
1804
|
+
packageName: string;
|
|
1804
1805
|
contractKey: string | null;
|
|
1805
1806
|
createdEventBlob: string;
|
|
1806
1807
|
nodeId: number;
|
|
@@ -1810,19 +1811,19 @@ export declare const JsSubmitAndWaitForReassignmentResponseSchema: z.ZodObject<{
|
|
|
1810
1811
|
signatories: string[];
|
|
1811
1812
|
observers: string[];
|
|
1812
1813
|
createdAt: string;
|
|
1813
|
-
packageName: string;
|
|
1814
1814
|
implementedInterfaces?: string[] | undefined;
|
|
1815
1815
|
}>;
|
|
1816
1816
|
}, "strip", z.ZodTypeAny, {
|
|
1817
|
+
submitter: string;
|
|
1817
1818
|
reassignmentId: string;
|
|
1818
1819
|
source: string;
|
|
1819
1820
|
target: string;
|
|
1820
|
-
submitter: string;
|
|
1821
1821
|
reassignmentCounter: number;
|
|
1822
1822
|
createdEvent: {
|
|
1823
1823
|
contractId: string;
|
|
1824
1824
|
offset: number;
|
|
1825
1825
|
templateId: string;
|
|
1826
|
+
packageName: string;
|
|
1826
1827
|
contractKey: string | null;
|
|
1827
1828
|
createdEventBlob: string;
|
|
1828
1829
|
nodeId: number;
|
|
@@ -1832,19 +1833,19 @@ export declare const JsSubmitAndWaitForReassignmentResponseSchema: z.ZodObject<{
|
|
|
1832
1833
|
signatories: string[];
|
|
1833
1834
|
observers: string[];
|
|
1834
1835
|
createdAt: string;
|
|
1835
|
-
packageName: string;
|
|
1836
1836
|
implementedInterfaces?: string[] | undefined;
|
|
1837
1837
|
};
|
|
1838
1838
|
}, {
|
|
1839
|
+
submitter: string;
|
|
1839
1840
|
reassignmentId: string;
|
|
1840
1841
|
source: string;
|
|
1841
1842
|
target: string;
|
|
1842
|
-
submitter: string;
|
|
1843
1843
|
reassignmentCounter: number;
|
|
1844
1844
|
createdEvent: {
|
|
1845
1845
|
contractId: string;
|
|
1846
1846
|
offset: number;
|
|
1847
1847
|
templateId: string;
|
|
1848
|
+
packageName: string;
|
|
1848
1849
|
contractKey: string | null;
|
|
1849
1850
|
createdEventBlob: string;
|
|
1850
1851
|
nodeId: number;
|
|
@@ -1854,21 +1855,21 @@ export declare const JsSubmitAndWaitForReassignmentResponseSchema: z.ZodObject<{
|
|
|
1854
1855
|
signatories: string[];
|
|
1855
1856
|
observers: string[];
|
|
1856
1857
|
createdAt: string;
|
|
1857
|
-
packageName: string;
|
|
1858
1858
|
implementedInterfaces?: string[] | undefined;
|
|
1859
1859
|
};
|
|
1860
1860
|
}>;
|
|
1861
1861
|
}, "strip", z.ZodTypeAny, {
|
|
1862
1862
|
JsAssignmentEvent: {
|
|
1863
|
+
submitter: string;
|
|
1863
1864
|
reassignmentId: string;
|
|
1864
1865
|
source: string;
|
|
1865
1866
|
target: string;
|
|
1866
|
-
submitter: string;
|
|
1867
1867
|
reassignmentCounter: number;
|
|
1868
1868
|
createdEvent: {
|
|
1869
1869
|
contractId: string;
|
|
1870
1870
|
offset: number;
|
|
1871
1871
|
templateId: string;
|
|
1872
|
+
packageName: string;
|
|
1872
1873
|
contractKey: string | null;
|
|
1873
1874
|
createdEventBlob: string;
|
|
1874
1875
|
nodeId: number;
|
|
@@ -1878,21 +1879,21 @@ export declare const JsSubmitAndWaitForReassignmentResponseSchema: z.ZodObject<{
|
|
|
1878
1879
|
signatories: string[];
|
|
1879
1880
|
observers: string[];
|
|
1880
1881
|
createdAt: string;
|
|
1881
|
-
packageName: string;
|
|
1882
1882
|
implementedInterfaces?: string[] | undefined;
|
|
1883
1883
|
};
|
|
1884
1884
|
};
|
|
1885
1885
|
}, {
|
|
1886
1886
|
JsAssignmentEvent: {
|
|
1887
|
+
submitter: string;
|
|
1887
1888
|
reassignmentId: string;
|
|
1888
1889
|
source: string;
|
|
1889
1890
|
target: string;
|
|
1890
|
-
submitter: string;
|
|
1891
1891
|
reassignmentCounter: number;
|
|
1892
1892
|
createdEvent: {
|
|
1893
1893
|
contractId: string;
|
|
1894
1894
|
offset: number;
|
|
1895
1895
|
templateId: string;
|
|
1896
|
+
packageName: string;
|
|
1896
1897
|
contractKey: string | null;
|
|
1897
1898
|
createdEventBlob: string;
|
|
1898
1899
|
nodeId: number;
|
|
@@ -1902,7 +1903,6 @@ export declare const JsSubmitAndWaitForReassignmentResponseSchema: z.ZodObject<{
|
|
|
1902
1903
|
signatories: string[];
|
|
1903
1904
|
observers: string[];
|
|
1904
1905
|
createdAt: string;
|
|
1905
|
-
packageName: string;
|
|
1906
1906
|
implementedInterfaces?: string[] | undefined;
|
|
1907
1907
|
};
|
|
1908
1908
|
};
|
|
@@ -1924,23 +1924,23 @@ export declare const JsSubmitAndWaitForReassignmentResponseSchema: z.ZodObject<{
|
|
|
1924
1924
|
contractId: string;
|
|
1925
1925
|
offset: number;
|
|
1926
1926
|
templateId: string;
|
|
1927
|
+
packageName: string;
|
|
1928
|
+
submitter: string;
|
|
1927
1929
|
reassignmentId: string;
|
|
1928
1930
|
source: string;
|
|
1929
1931
|
target: string;
|
|
1930
|
-
submitter: string;
|
|
1931
1932
|
nodeId: number;
|
|
1932
|
-
packageName: string;
|
|
1933
1933
|
reassignmentCounter: number;
|
|
1934
1934
|
}, {
|
|
1935
1935
|
contractId: string;
|
|
1936
1936
|
offset: number;
|
|
1937
1937
|
templateId: string;
|
|
1938
|
+
packageName: string;
|
|
1939
|
+
submitter: string;
|
|
1938
1940
|
reassignmentId: string;
|
|
1939
1941
|
source: string;
|
|
1940
1942
|
target: string;
|
|
1941
|
-
submitter: string;
|
|
1942
1943
|
nodeId: number;
|
|
1943
|
-
packageName: string;
|
|
1944
1944
|
reassignmentCounter: number;
|
|
1945
1945
|
}>;
|
|
1946
1946
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1948,12 +1948,12 @@ export declare const JsSubmitAndWaitForReassignmentResponseSchema: z.ZodObject<{
|
|
|
1948
1948
|
contractId: string;
|
|
1949
1949
|
offset: number;
|
|
1950
1950
|
templateId: string;
|
|
1951
|
+
packageName: string;
|
|
1952
|
+
submitter: string;
|
|
1951
1953
|
reassignmentId: string;
|
|
1952
1954
|
source: string;
|
|
1953
1955
|
target: string;
|
|
1954
|
-
submitter: string;
|
|
1955
1956
|
nodeId: number;
|
|
1956
|
-
packageName: string;
|
|
1957
1957
|
reassignmentCounter: number;
|
|
1958
1958
|
};
|
|
1959
1959
|
}, {
|
|
@@ -1961,12 +1961,12 @@ export declare const JsSubmitAndWaitForReassignmentResponseSchema: z.ZodObject<{
|
|
|
1961
1961
|
contractId: string;
|
|
1962
1962
|
offset: number;
|
|
1963
1963
|
templateId: string;
|
|
1964
|
+
packageName: string;
|
|
1965
|
+
submitter: string;
|
|
1964
1966
|
reassignmentId: string;
|
|
1965
1967
|
source: string;
|
|
1966
1968
|
target: string;
|
|
1967
|
-
submitter: string;
|
|
1968
1969
|
nodeId: number;
|
|
1969
|
-
packageName: string;
|
|
1970
1970
|
reassignmentCounter: number;
|
|
1971
1971
|
};
|
|
1972
1972
|
}>;
|
|
@@ -1976,12 +1976,12 @@ export declare const JsSubmitAndWaitForReassignmentResponseSchema: z.ZodObject<{
|
|
|
1976
1976
|
contractId: string;
|
|
1977
1977
|
offset: number;
|
|
1978
1978
|
templateId: string;
|
|
1979
|
+
packageName: string;
|
|
1980
|
+
submitter: string;
|
|
1979
1981
|
reassignmentId: string;
|
|
1980
1982
|
source: string;
|
|
1981
1983
|
target: string;
|
|
1982
|
-
submitter: string;
|
|
1983
1984
|
nodeId: number;
|
|
1984
|
-
packageName: string;
|
|
1985
1985
|
reassignmentCounter: number;
|
|
1986
1986
|
};
|
|
1987
1987
|
};
|
|
@@ -1991,12 +1991,12 @@ export declare const JsSubmitAndWaitForReassignmentResponseSchema: z.ZodObject<{
|
|
|
1991
1991
|
contractId: string;
|
|
1992
1992
|
offset: number;
|
|
1993
1993
|
templateId: string;
|
|
1994
|
+
packageName: string;
|
|
1995
|
+
submitter: string;
|
|
1994
1996
|
reassignmentId: string;
|
|
1995
1997
|
source: string;
|
|
1996
1998
|
target: string;
|
|
1997
|
-
submitter: string;
|
|
1998
1999
|
nodeId: number;
|
|
1999
|
-
packageName: string;
|
|
2000
2000
|
reassignmentCounter: number;
|
|
2001
2001
|
};
|
|
2002
2002
|
};
|
|
@@ -2008,15 +2008,15 @@ export declare const JsSubmitAndWaitForReassignmentResponseSchema: z.ZodObject<{
|
|
|
2008
2008
|
parentSpanId: z.ZodOptional<z.ZodString>;
|
|
2009
2009
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2010
2010
|
}, "strip", z.ZodTypeAny, {
|
|
2011
|
+
metadata?: Record<string, string> | undefined;
|
|
2011
2012
|
traceId?: string | undefined;
|
|
2012
2013
|
spanId?: string | undefined;
|
|
2013
2014
|
parentSpanId?: string | undefined;
|
|
2014
|
-
metadata?: Record<string, string> | undefined;
|
|
2015
2015
|
}, {
|
|
2016
|
+
metadata?: Record<string, string> | undefined;
|
|
2016
2017
|
traceId?: string | undefined;
|
|
2017
2018
|
spanId?: string | undefined;
|
|
2018
2019
|
parentSpanId?: string | undefined;
|
|
2019
|
-
metadata?: Record<string, string> | undefined;
|
|
2020
2020
|
}>>;
|
|
2021
2021
|
/** Record time of the reassignment. */
|
|
2022
2022
|
recordTime: z.ZodString;
|
|
@@ -2026,15 +2026,16 @@ export declare const JsSubmitAndWaitForReassignmentResponseSchema: z.ZodObject<{
|
|
|
2026
2026
|
recordTime: string;
|
|
2027
2027
|
events: ({
|
|
2028
2028
|
JsAssignmentEvent: {
|
|
2029
|
+
submitter: string;
|
|
2029
2030
|
reassignmentId: string;
|
|
2030
2031
|
source: string;
|
|
2031
2032
|
target: string;
|
|
2032
|
-
submitter: string;
|
|
2033
2033
|
reassignmentCounter: number;
|
|
2034
2034
|
createdEvent: {
|
|
2035
2035
|
contractId: string;
|
|
2036
2036
|
offset: number;
|
|
2037
2037
|
templateId: string;
|
|
2038
|
+
packageName: string;
|
|
2038
2039
|
contractKey: string | null;
|
|
2039
2040
|
createdEventBlob: string;
|
|
2040
2041
|
nodeId: number;
|
|
@@ -2044,7 +2045,6 @@ export declare const JsSubmitAndWaitForReassignmentResponseSchema: z.ZodObject<{
|
|
|
2044
2045
|
signatories: string[];
|
|
2045
2046
|
observers: string[];
|
|
2046
2047
|
createdAt: string;
|
|
2047
|
-
packageName: string;
|
|
2048
2048
|
implementedInterfaces?: string[] | undefined;
|
|
2049
2049
|
};
|
|
2050
2050
|
};
|
|
@@ -2054,12 +2054,12 @@ export declare const JsSubmitAndWaitForReassignmentResponseSchema: z.ZodObject<{
|
|
|
2054
2054
|
contractId: string;
|
|
2055
2055
|
offset: number;
|
|
2056
2056
|
templateId: string;
|
|
2057
|
+
packageName: string;
|
|
2058
|
+
submitter: string;
|
|
2057
2059
|
reassignmentId: string;
|
|
2058
2060
|
source: string;
|
|
2059
2061
|
target: string;
|
|
2060
|
-
submitter: string;
|
|
2061
2062
|
nodeId: number;
|
|
2062
|
-
packageName: string;
|
|
2063
2063
|
reassignmentCounter: number;
|
|
2064
2064
|
};
|
|
2065
2065
|
};
|
|
@@ -2067,10 +2067,10 @@ export declare const JsSubmitAndWaitForReassignmentResponseSchema: z.ZodObject<{
|
|
|
2067
2067
|
commandId?: string | undefined;
|
|
2068
2068
|
workflowId?: string | undefined;
|
|
2069
2069
|
traceContext?: {
|
|
2070
|
+
metadata?: Record<string, string> | undefined;
|
|
2070
2071
|
traceId?: string | undefined;
|
|
2071
2072
|
spanId?: string | undefined;
|
|
2072
2073
|
parentSpanId?: string | undefined;
|
|
2073
|
-
metadata?: Record<string, string> | undefined;
|
|
2074
2074
|
} | undefined;
|
|
2075
2075
|
}, {
|
|
2076
2076
|
offset: number;
|
|
@@ -2078,15 +2078,16 @@ export declare const JsSubmitAndWaitForReassignmentResponseSchema: z.ZodObject<{
|
|
|
2078
2078
|
recordTime: string;
|
|
2079
2079
|
events: ({
|
|
2080
2080
|
JsAssignmentEvent: {
|
|
2081
|
+
submitter: string;
|
|
2081
2082
|
reassignmentId: string;
|
|
2082
2083
|
source: string;
|
|
2083
2084
|
target: string;
|
|
2084
|
-
submitter: string;
|
|
2085
2085
|
reassignmentCounter: number;
|
|
2086
2086
|
createdEvent: {
|
|
2087
2087
|
contractId: string;
|
|
2088
2088
|
offset: number;
|
|
2089
2089
|
templateId: string;
|
|
2090
|
+
packageName: string;
|
|
2090
2091
|
contractKey: string | null;
|
|
2091
2092
|
createdEventBlob: string;
|
|
2092
2093
|
nodeId: number;
|
|
@@ -2096,7 +2097,6 @@ export declare const JsSubmitAndWaitForReassignmentResponseSchema: z.ZodObject<{
|
|
|
2096
2097
|
signatories: string[];
|
|
2097
2098
|
observers: string[];
|
|
2098
2099
|
createdAt: string;
|
|
2099
|
-
packageName: string;
|
|
2100
2100
|
implementedInterfaces?: string[] | undefined;
|
|
2101
2101
|
};
|
|
2102
2102
|
};
|
|
@@ -2106,12 +2106,12 @@ export declare const JsSubmitAndWaitForReassignmentResponseSchema: z.ZodObject<{
|
|
|
2106
2106
|
contractId: string;
|
|
2107
2107
|
offset: number;
|
|
2108
2108
|
templateId: string;
|
|
2109
|
+
packageName: string;
|
|
2110
|
+
submitter: string;
|
|
2109
2111
|
reassignmentId: string;
|
|
2110
2112
|
source: string;
|
|
2111
2113
|
target: string;
|
|
2112
|
-
submitter: string;
|
|
2113
2114
|
nodeId: number;
|
|
2114
|
-
packageName: string;
|
|
2115
2115
|
reassignmentCounter: number;
|
|
2116
2116
|
};
|
|
2117
2117
|
};
|
|
@@ -2119,10 +2119,10 @@ export declare const JsSubmitAndWaitForReassignmentResponseSchema: z.ZodObject<{
|
|
|
2119
2119
|
commandId?: string | undefined;
|
|
2120
2120
|
workflowId?: string | undefined;
|
|
2121
2121
|
traceContext?: {
|
|
2122
|
+
metadata?: Record<string, string> | undefined;
|
|
2122
2123
|
traceId?: string | undefined;
|
|
2123
2124
|
spanId?: string | undefined;
|
|
2124
2125
|
parentSpanId?: string | undefined;
|
|
2125
|
-
metadata?: Record<string, string> | undefined;
|
|
2126
2126
|
} | undefined;
|
|
2127
2127
|
}>;
|
|
2128
2128
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -2132,15 +2132,16 @@ export declare const JsSubmitAndWaitForReassignmentResponseSchema: z.ZodObject<{
|
|
|
2132
2132
|
recordTime: string;
|
|
2133
2133
|
events: ({
|
|
2134
2134
|
JsAssignmentEvent: {
|
|
2135
|
+
submitter: string;
|
|
2135
2136
|
reassignmentId: string;
|
|
2136
2137
|
source: string;
|
|
2137
2138
|
target: string;
|
|
2138
|
-
submitter: string;
|
|
2139
2139
|
reassignmentCounter: number;
|
|
2140
2140
|
createdEvent: {
|
|
2141
2141
|
contractId: string;
|
|
2142
2142
|
offset: number;
|
|
2143
2143
|
templateId: string;
|
|
2144
|
+
packageName: string;
|
|
2144
2145
|
contractKey: string | null;
|
|
2145
2146
|
createdEventBlob: string;
|
|
2146
2147
|
nodeId: number;
|
|
@@ -2150,7 +2151,6 @@ export declare const JsSubmitAndWaitForReassignmentResponseSchema: z.ZodObject<{
|
|
|
2150
2151
|
signatories: string[];
|
|
2151
2152
|
observers: string[];
|
|
2152
2153
|
createdAt: string;
|
|
2153
|
-
packageName: string;
|
|
2154
2154
|
implementedInterfaces?: string[] | undefined;
|
|
2155
2155
|
};
|
|
2156
2156
|
};
|
|
@@ -2160,12 +2160,12 @@ export declare const JsSubmitAndWaitForReassignmentResponseSchema: z.ZodObject<{
|
|
|
2160
2160
|
contractId: string;
|
|
2161
2161
|
offset: number;
|
|
2162
2162
|
templateId: string;
|
|
2163
|
+
packageName: string;
|
|
2164
|
+
submitter: string;
|
|
2163
2165
|
reassignmentId: string;
|
|
2164
2166
|
source: string;
|
|
2165
2167
|
target: string;
|
|
2166
|
-
submitter: string;
|
|
2167
2168
|
nodeId: number;
|
|
2168
|
-
packageName: string;
|
|
2169
2169
|
reassignmentCounter: number;
|
|
2170
2170
|
};
|
|
2171
2171
|
};
|
|
@@ -2173,10 +2173,10 @@ export declare const JsSubmitAndWaitForReassignmentResponseSchema: z.ZodObject<{
|
|
|
2173
2173
|
commandId?: string | undefined;
|
|
2174
2174
|
workflowId?: string | undefined;
|
|
2175
2175
|
traceContext?: {
|
|
2176
|
+
metadata?: Record<string, string> | undefined;
|
|
2176
2177
|
traceId?: string | undefined;
|
|
2177
2178
|
spanId?: string | undefined;
|
|
2178
2179
|
parentSpanId?: string | undefined;
|
|
2179
|
-
metadata?: Record<string, string> | undefined;
|
|
2180
2180
|
} | undefined;
|
|
2181
2181
|
};
|
|
2182
2182
|
}, {
|
|
@@ -2186,15 +2186,16 @@ export declare const JsSubmitAndWaitForReassignmentResponseSchema: z.ZodObject<{
|
|
|
2186
2186
|
recordTime: string;
|
|
2187
2187
|
events: ({
|
|
2188
2188
|
JsAssignmentEvent: {
|
|
2189
|
+
submitter: string;
|
|
2189
2190
|
reassignmentId: string;
|
|
2190
2191
|
source: string;
|
|
2191
2192
|
target: string;
|
|
2192
|
-
submitter: string;
|
|
2193
2193
|
reassignmentCounter: number;
|
|
2194
2194
|
createdEvent: {
|
|
2195
2195
|
contractId: string;
|
|
2196
2196
|
offset: number;
|
|
2197
2197
|
templateId: string;
|
|
2198
|
+
packageName: string;
|
|
2198
2199
|
contractKey: string | null;
|
|
2199
2200
|
createdEventBlob: string;
|
|
2200
2201
|
nodeId: number;
|
|
@@ -2204,7 +2205,6 @@ export declare const JsSubmitAndWaitForReassignmentResponseSchema: z.ZodObject<{
|
|
|
2204
2205
|
signatories: string[];
|
|
2205
2206
|
observers: string[];
|
|
2206
2207
|
createdAt: string;
|
|
2207
|
-
packageName: string;
|
|
2208
2208
|
implementedInterfaces?: string[] | undefined;
|
|
2209
2209
|
};
|
|
2210
2210
|
};
|
|
@@ -2214,12 +2214,12 @@ export declare const JsSubmitAndWaitForReassignmentResponseSchema: z.ZodObject<{
|
|
|
2214
2214
|
contractId: string;
|
|
2215
2215
|
offset: number;
|
|
2216
2216
|
templateId: string;
|
|
2217
|
+
packageName: string;
|
|
2218
|
+
submitter: string;
|
|
2217
2219
|
reassignmentId: string;
|
|
2218
2220
|
source: string;
|
|
2219
2221
|
target: string;
|
|
2220
|
-
submitter: string;
|
|
2221
2222
|
nodeId: number;
|
|
2222
|
-
packageName: string;
|
|
2223
2223
|
reassignmentCounter: number;
|
|
2224
2224
|
};
|
|
2225
2225
|
};
|
|
@@ -2227,10 +2227,10 @@ export declare const JsSubmitAndWaitForReassignmentResponseSchema: z.ZodObject<{
|
|
|
2227
2227
|
commandId?: string | undefined;
|
|
2228
2228
|
workflowId?: string | undefined;
|
|
2229
2229
|
traceContext?: {
|
|
2230
|
+
metadata?: Record<string, string> | undefined;
|
|
2230
2231
|
traceId?: string | undefined;
|
|
2231
2232
|
spanId?: string | undefined;
|
|
2232
2233
|
parentSpanId?: string | undefined;
|
|
2233
|
-
metadata?: Record<string, string> | undefined;
|
|
2234
2234
|
} | undefined;
|
|
2235
2235
|
};
|
|
2236
2236
|
}>;
|