@@ -204,6 +204,8 @@ export interface components {
204204 b ?: string [ ] ;
205205 c ?: string [ ] ;
206206 a ?: unknown ;
207+ /** @default */
208+ di : string ;
207209 } ;
208210 RotV1 : {
209211 /** @default */
@@ -425,10 +427,10 @@ export interface components {
425427 q ?: {
426428 [ key : string ] : unknown ;
427429 } ;
428- a ?: unknown ;
429- e ?: {
430+ a ?: {
430431 [ key : string ] : unknown ;
431432 } ;
433+ e ?: components [ "schemas" ] [ "ExnEmbeds" ] ;
432434 } ;
433435 IssV1 : {
434436 /** @default */
@@ -524,6 +526,8 @@ export interface components {
524526 b ?: string [ ] ;
525527 c ?: string [ ] ;
526528 a ?: unknown ;
529+ /** @default */
530+ di : string ;
527531 } ;
528532 RotV2 : {
529533 /** @default */
@@ -735,7 +739,9 @@ export interface components {
735739 q ?: {
736740 [ key : string ] : unknown ;
737741 } ;
738- a ?: unknown ;
742+ a ?: {
743+ [ key : string ] : unknown ;
744+ } ;
739745 } ;
740746 StateEERecord : {
741747 /** @default 0 */
@@ -936,6 +942,76 @@ export interface components {
936942 AgentConfig : {
937943 iurls ?: string [ ] ;
938944 } ;
945+ Exn : components [ "schemas" ] [ "ExnV1" ] | components [ "schemas" ] [ "ExnV2" ] ;
946+ Icp : components [ "schemas" ] [ "IcpV1" ] | components [ "schemas" ] [ "IcpV2" ] ;
947+ Rot : components [ "schemas" ] [ "RotV1" ] | components [ "schemas" ] [ "RotV2" ] ;
948+ Vcp : components [ "schemas" ] [ "VcpV1" ] ;
949+ Iss : components [ "schemas" ] [ "IssV1" ] ;
950+ Ixn : components [ "schemas" ] [ "IxnV1" ] | components [ "schemas" ] [ "IxnV2" ] ;
951+ NotificationData : {
952+ r : string ;
953+ /** @default null */
954+ d : string | null ;
955+ /** @default null */
956+ m : string | null ;
957+ } ;
958+ Notification : {
959+ i : string ;
960+ dt : string ;
961+ r : boolean ;
962+ a : components [ "schemas" ] [ "NotificationData" ] ;
963+ } ;
964+ ExchangeResource : {
965+ exn : components [ "schemas" ] [ "Exn" ] ;
966+ pathed : {
967+ [ key : string ] : unknown ;
968+ } ;
969+ } ;
970+ MultisigInceptEmbeds : {
971+ icp : components [ "schemas" ] [ "Icp" ] ;
972+ rot ?: components [ "schemas" ] [ "Rot" ] ;
973+ } ;
974+ MultisigRotateEmbeds : {
975+ rot : unknown ;
976+ } ;
977+ MultisigInteractEmbeds : {
978+ ixn : components [ "schemas" ] [ "Ixn" ] ;
979+ } ;
980+ MultisigRegistryInceptEmbeds : {
981+ vcp : components [ "schemas" ] [ "Vcp" ] ;
982+ anc : components [ "schemas" ] [ "ANC" ] ;
983+ } ;
984+ MultisigIssueEmbeds : {
985+ acdc : components [ "schemas" ] [ "ACDC" ] ;
986+ iss : components [ "schemas" ] [ "Iss" ] ;
987+ anc : components [ "schemas" ] [ "ANC" ] ;
988+ } ;
989+ MultisigRevokeEmbeds : {
990+ rev : components [ "schemas" ] [ "RevV1" ] ;
991+ anc : components [ "schemas" ] [ "ANC" ] ;
992+ } ;
993+ MultisigRpyEmbeds : {
994+ rpy : components [ "schemas" ] [ "Rpy" ] ;
995+ } ;
996+ MultisigExnEmbeds : {
997+ exn : components [ "schemas" ] [ "Exn" ] ;
998+ } ;
999+ ExnEmbeds : {
1000+ d : string ;
1001+ } & ( components [ "schemas" ] [ "MultisigInceptEmbeds" ] | components [ "schemas" ] [ "MultisigRotateEmbeds" ] | components [ "schemas" ] [ "MultisigInteractEmbeds" ] | components [ "schemas" ] [ "MultisigRegistryInceptEmbeds" ] | components [ "schemas" ] [ "MultisigIssueEmbeds" ] | components [ "schemas" ] [ "MultisigRevokeEmbeds" ] | components [ "schemas" ] [ "MultisigRpyEmbeds" ] | components [ "schemas" ] [ "MultisigExnEmbeds" ] ) ;
1002+ ExnMultisig : {
1003+ exn : components [ "schemas" ] [ "Exn" ] ;
1004+ paths : {
1005+ [ key : string ] : unknown ;
1006+ } ;
1007+ e : components [ "schemas" ] [ "ExnEmbeds" ] ;
1008+ /** @default null */
1009+ groupName : string | null ;
1010+ /** @default null */
1011+ memberName : string | null ;
1012+ /** @default null */
1013+ sender : string | null ;
1014+ } ;
9391015 } ;
9401016 responses : never ;
9411017 parameters : never ;
0 commit comments