@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.
Files changed (29) hide show
  1. package/build/src/clients/ledger-json-api/operations/v2/authenticated-user/get.d.ts +1 -1
  2. package/build/src/clients/ledger-json-api/operations/v2/commands/submit-and-wait-for-reassignment.d.ts +5 -5
  3. package/build/src/clients/ledger-json-api/operations/v2/interactive-submission/allocate-party.d.ts +1 -1
  4. package/build/src/clients/ledger-json-api/operations/v2/interactive-submission/create-user.d.ts +2 -2
  5. package/build/src/clients/ledger-json-api/operations/v2/interactive-submission/get-preferred-package-version.d.ts +1 -1
  6. package/build/src/clients/ledger-json-api/operations/v2/interactive-submission/get-preferred-packages.d.ts +1 -1
  7. package/build/src/clients/ledger-json-api/operations/v2/parties/post.d.ts +4 -4
  8. package/build/src/clients/ledger-json-api/operations/v2/state/get-active-contracts.d.ts +7 -4
  9. package/build/src/clients/ledger-json-api/operations/v2/state/get-active-contracts.d.ts.map +1 -1
  10. package/build/src/clients/ledger-json-api/operations/v2/state/get-active-contracts.js +12 -1
  11. package/build/src/clients/ledger-json-api/operations/v2/state/get-active-contracts.js.map +1 -1
  12. package/build/src/clients/ledger-json-api/operations/v2/updates/get-flats.d.ts +16 -16
  13. package/build/src/clients/ledger-json-api/operations/v2/updates/get-trees.d.ts +8 -8
  14. package/build/src/clients/ledger-json-api/schemas/api/completions.d.ts +24 -24
  15. package/build/src/clients/ledger-json-api/schemas/api/event-details.d.ts +12 -12
  16. package/build/src/clients/ledger-json-api/schemas/api/events.d.ts +72 -72
  17. package/build/src/clients/ledger-json-api/schemas/api/interactive-submission.d.ts +10 -10
  18. package/build/src/clients/ledger-json-api/schemas/api/packages.d.ts +16 -16
  19. package/build/src/clients/ledger-json-api/schemas/api/reassignment.d.ts +114 -114
  20. package/build/src/clients/ledger-json-api/schemas/api/state.d.ts +160 -160
  21. package/build/src/clients/ledger-json-api/schemas/api/transactions.d.ts +152 -152
  22. package/build/src/clients/ledger-json-api/schemas/api/updates.d.ts +1044 -1044
  23. package/build/src/clients/ledger-json-api/schemas/api/users.d.ts +66 -66
  24. package/build/src/clients/ledger-json-api/schemas/common.d.ts +2 -2
  25. package/build/src/clients/ledger-json-api/schemas/operations/interactive-submission.d.ts +6 -6
  26. package/build/src/clients/ledger-json-api/schemas/operations/parties.d.ts +13 -13
  27. package/build/src/clients/ledger-json-api/schemas/operations/updates.d.ts +298 -298
  28. package/build/src/clients/ledger-json-api/schemas/operations/users.d.ts +17 -17
  29. package/package.json +1 -1
@@ -228,20 +228,20 @@ export declare const UserSchema: z.ZodObject<{
228
228
  id: string;
229
229
  isDeactivated: boolean;
230
230
  identityProviderId?: string | undefined;
231
+ primaryParty?: string | undefined;
231
232
  metadata?: {
232
233
  resourceVersion: string;
233
234
  annotations: Record<string, string>;
234
235
  } | undefined;
235
- primaryParty?: string | undefined;
236
236
  }, {
237
237
  id: string;
238
238
  isDeactivated: boolean;
239
239
  identityProviderId?: string | undefined;
240
+ primaryParty?: string | undefined;
240
241
  metadata?: {
241
242
  resourceVersion: string;
242
243
  annotations: Record<string, string>;
243
244
  } | undefined;
244
- primaryParty?: string | undefined;
245
245
  }>;
246
246
  /**
247
247
  * Party details.
@@ -269,19 +269,19 @@ export declare const PartyDetailsSchema: z.ZodObject<{
269
269
  }, "strip", z.ZodTypeAny, {
270
270
  party: string;
271
271
  isLocal: boolean;
272
- identityProviderId?: string | undefined;
273
272
  localMetadata?: {
274
273
  resourceVersion: string;
275
274
  annotations: Record<string, string>;
276
275
  } | undefined;
276
+ identityProviderId?: string | undefined;
277
277
  }, {
278
278
  party: string;
279
279
  isLocal: boolean;
280
- identityProviderId?: string | undefined;
281
280
  localMetadata?: {
282
281
  resourceVersion: string;
283
282
  annotations: Record<string, string>;
284
283
  } | undefined;
284
+ identityProviderId?: string | undefined;
285
285
  }>;
286
286
  /**
287
287
  * Create user request.
@@ -314,20 +314,20 @@ export declare const CreateUserRequestSchema: z.ZodObject<{
314
314
  id: string;
315
315
  isDeactivated: boolean;
316
316
  identityProviderId?: string | undefined;
317
+ primaryParty?: string | undefined;
317
318
  metadata?: {
318
319
  resourceVersion: string;
319
320
  annotations: Record<string, string>;
320
321
  } | undefined;
321
- primaryParty?: string | undefined;
322
322
  }, {
323
323
  id: string;
324
324
  isDeactivated: boolean;
325
325
  identityProviderId?: string | undefined;
326
+ primaryParty?: string | undefined;
326
327
  metadata?: {
327
328
  resourceVersion: string;
328
329
  annotations: Record<string, string>;
329
330
  } | undefined;
330
- primaryParty?: string | undefined;
331
331
  }>;
332
332
  /** Rights to assign to the user (optional). */
333
333
  rights: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -433,11 +433,11 @@ export declare const CreateUserRequestSchema: z.ZodObject<{
433
433
  id: string;
434
434
  isDeactivated: boolean;
435
435
  identityProviderId?: string | undefined;
436
+ primaryParty?: string | undefined;
436
437
  metadata?: {
437
438
  resourceVersion: string;
438
439
  annotations: Record<string, string>;
439
440
  } | undefined;
440
- primaryParty?: string | undefined;
441
441
  };
442
442
  rights?: {
443
443
  kind: {
@@ -463,11 +463,11 @@ export declare const CreateUserRequestSchema: z.ZodObject<{
463
463
  id: string;
464
464
  isDeactivated: boolean;
465
465
  identityProviderId?: string | undefined;
466
+ primaryParty?: string | undefined;
466
467
  metadata?: {
467
468
  resourceVersion: string;
468
469
  annotations: Record<string, string>;
469
470
  } | undefined;
470
- primaryParty?: string | undefined;
471
471
  };
472
472
  rights?: {
473
473
  kind: {
@@ -520,42 +520,42 @@ export declare const CreateUserResponseSchema: z.ZodObject<{
520
520
  id: string;
521
521
  isDeactivated: boolean;
522
522
  identityProviderId?: string | undefined;
523
+ primaryParty?: string | undefined;
523
524
  metadata?: {
524
525
  resourceVersion: string;
525
526
  annotations: Record<string, string>;
526
527
  } | undefined;
527
- primaryParty?: string | undefined;
528
528
  }, {
529
529
  id: string;
530
530
  isDeactivated: boolean;
531
531
  identityProviderId?: string | undefined;
532
+ primaryParty?: string | undefined;
532
533
  metadata?: {
533
534
  resourceVersion: string;
534
535
  annotations: Record<string, string>;
535
536
  } | undefined;
536
- primaryParty?: string | undefined;
537
537
  }>;
538
538
  }, "strip", z.ZodTypeAny, {
539
539
  user: {
540
540
  id: string;
541
541
  isDeactivated: boolean;
542
542
  identityProviderId?: string | undefined;
543
+ primaryParty?: string | undefined;
543
544
  metadata?: {
544
545
  resourceVersion: string;
545
546
  annotations: Record<string, string>;
546
547
  } | undefined;
547
- primaryParty?: string | undefined;
548
548
  };
549
549
  }, {
550
550
  user: {
551
551
  id: string;
552
552
  isDeactivated: boolean;
553
553
  identityProviderId?: string | undefined;
554
+ primaryParty?: string | undefined;
554
555
  metadata?: {
555
556
  resourceVersion: string;
556
557
  annotations: Record<string, string>;
557
558
  } | undefined;
558
- primaryParty?: string | undefined;
559
559
  };
560
560
  }>;
561
561
  /**
@@ -589,20 +589,20 @@ export declare const UpdateUserRequestSchema: z.ZodObject<{
589
589
  id: string;
590
590
  isDeactivated: boolean;
591
591
  identityProviderId?: string | undefined;
592
+ primaryParty?: string | undefined;
592
593
  metadata?: {
593
594
  resourceVersion: string;
594
595
  annotations: Record<string, string>;
595
596
  } | undefined;
596
- primaryParty?: string | undefined;
597
597
  }, {
598
598
  id: string;
599
599
  isDeactivated: boolean;
600
600
  identityProviderId?: string | undefined;
601
+ primaryParty?: string | undefined;
601
602
  metadata?: {
602
603
  resourceVersion: string;
603
604
  annotations: Record<string, string>;
604
605
  } | undefined;
605
- primaryParty?: string | undefined;
606
606
  }>;
607
607
  /** Update mask for partial updates. */
608
608
  updateMask: z.ZodObject<{
@@ -613,32 +613,32 @@ export declare const UpdateUserRequestSchema: z.ZodObject<{
613
613
  paths: string[];
614
614
  }>;
615
615
  }, "strip", z.ZodTypeAny, {
616
+ updateMask: {
617
+ paths: string[];
618
+ };
616
619
  user: {
617
620
  id: string;
618
621
  isDeactivated: boolean;
619
622
  identityProviderId?: string | undefined;
623
+ primaryParty?: string | undefined;
620
624
  metadata?: {
621
625
  resourceVersion: string;
622
626
  annotations: Record<string, string>;
623
627
  } | undefined;
624
- primaryParty?: string | undefined;
625
628
  };
629
+ }, {
626
630
  updateMask: {
627
631
  paths: string[];
628
632
  };
629
- }, {
630
633
  user: {
631
634
  id: string;
632
635
  isDeactivated: boolean;
633
636
  identityProviderId?: string | undefined;
637
+ primaryParty?: string | undefined;
634
638
  metadata?: {
635
639
  resourceVersion: string;
636
640
  annotations: Record<string, string>;
637
641
  } | undefined;
638
- primaryParty?: string | undefined;
639
- };
640
- updateMask: {
641
- paths: string[];
642
642
  };
643
643
  }>;
644
644
  /**
@@ -672,42 +672,42 @@ export declare const UpdateUserResponseSchema: z.ZodObject<{
672
672
  id: string;
673
673
  isDeactivated: boolean;
674
674
  identityProviderId?: string | undefined;
675
+ primaryParty?: string | undefined;
675
676
  metadata?: {
676
677
  resourceVersion: string;
677
678
  annotations: Record<string, string>;
678
679
  } | undefined;
679
- primaryParty?: string | undefined;
680
680
  }, {
681
681
  id: string;
682
682
  isDeactivated: boolean;
683
683
  identityProviderId?: string | undefined;
684
+ primaryParty?: string | undefined;
684
685
  metadata?: {
685
686
  resourceVersion: string;
686
687
  annotations: Record<string, string>;
687
688
  } | undefined;
688
- primaryParty?: string | undefined;
689
689
  }>;
690
690
  }, "strip", z.ZodTypeAny, {
691
691
  user: {
692
692
  id: string;
693
693
  isDeactivated: boolean;
694
694
  identityProviderId?: string | undefined;
695
+ primaryParty?: string | undefined;
695
696
  metadata?: {
696
697
  resourceVersion: string;
697
698
  annotations: Record<string, string>;
698
699
  } | undefined;
699
- primaryParty?: string | undefined;
700
700
  };
701
701
  }, {
702
702
  user: {
703
703
  id: string;
704
704
  isDeactivated: boolean;
705
705
  identityProviderId?: string | undefined;
706
+ primaryParty?: string | undefined;
706
707
  metadata?: {
707
708
  resourceVersion: string;
708
709
  annotations: Record<string, string>;
709
710
  } | undefined;
710
- primaryParty?: string | undefined;
711
711
  };
712
712
  }>;
713
713
  /**
@@ -741,42 +741,42 @@ export declare const GetUserResponseSchema: z.ZodObject<{
741
741
  id: string;
742
742
  isDeactivated: boolean;
743
743
  identityProviderId?: string | undefined;
744
+ primaryParty?: string | undefined;
744
745
  metadata?: {
745
746
  resourceVersion: string;
746
747
  annotations: Record<string, string>;
747
748
  } | undefined;
748
- primaryParty?: string | undefined;
749
749
  }, {
750
750
  id: string;
751
751
  isDeactivated: boolean;
752
752
  identityProviderId?: string | undefined;
753
+ primaryParty?: string | undefined;
753
754
  metadata?: {
754
755
  resourceVersion: string;
755
756
  annotations: Record<string, string>;
756
757
  } | undefined;
757
- primaryParty?: string | undefined;
758
758
  }>;
759
759
  }, "strip", z.ZodTypeAny, {
760
760
  user: {
761
761
  id: string;
762
762
  isDeactivated: boolean;
763
763
  identityProviderId?: string | undefined;
764
+ primaryParty?: string | undefined;
764
765
  metadata?: {
765
766
  resourceVersion: string;
766
767
  annotations: Record<string, string>;
767
768
  } | undefined;
768
- primaryParty?: string | undefined;
769
769
  };
770
770
  }, {
771
771
  user: {
772
772
  id: string;
773
773
  isDeactivated: boolean;
774
774
  identityProviderId?: string | undefined;
775
+ primaryParty?: string | undefined;
775
776
  metadata?: {
776
777
  resourceVersion: string;
777
778
  annotations: Record<string, string>;
778
779
  } | undefined;
779
- primaryParty?: string | undefined;
780
780
  };
781
781
  }>;
782
782
  /**
@@ -810,20 +810,20 @@ export declare const ListUsersResponseSchema: z.ZodObject<{
810
810
  id: string;
811
811
  isDeactivated: boolean;
812
812
  identityProviderId?: string | undefined;
813
+ primaryParty?: string | undefined;
813
814
  metadata?: {
814
815
  resourceVersion: string;
815
816
  annotations: Record<string, string>;
816
817
  } | undefined;
817
- primaryParty?: string | undefined;
818
818
  }, {
819
819
  id: string;
820
820
  isDeactivated: boolean;
821
821
  identityProviderId?: string | undefined;
822
+ primaryParty?: string | undefined;
822
823
  metadata?: {
823
824
  resourceVersion: string;
824
825
  annotations: Record<string, string>;
825
826
  } | undefined;
826
- primaryParty?: string | undefined;
827
827
  }>, "many">;
828
828
  /** Pagination token. */
829
829
  nextPageToken: z.ZodString;
@@ -832,11 +832,11 @@ export declare const ListUsersResponseSchema: z.ZodObject<{
832
832
  id: string;
833
833
  isDeactivated: boolean;
834
834
  identityProviderId?: string | undefined;
835
+ primaryParty?: string | undefined;
835
836
  metadata?: {
836
837
  resourceVersion: string;
837
838
  annotations: Record<string, string>;
838
839
  } | undefined;
839
- primaryParty?: string | undefined;
840
840
  }[];
841
841
  nextPageToken: string;
842
842
  }, {
@@ -844,11 +844,11 @@ export declare const ListUsersResponseSchema: z.ZodObject<{
844
844
  id: string;
845
845
  isDeactivated: boolean;
846
846
  identityProviderId?: string | undefined;
847
+ primaryParty?: string | undefined;
847
848
  metadata?: {
848
849
  resourceVersion: string;
849
850
  annotations: Record<string, string>;
850
851
  } | undefined;
851
- primaryParty?: string | undefined;
852
852
  }[];
853
853
  nextPageToken: string;
854
854
  }>;
@@ -1105,6 +1105,7 @@ export declare const GrantUserRightsRequestSchema: z.ZodObject<{
1105
1105
  identityProviderId: z.ZodOptional<z.ZodString>;
1106
1106
  }, "strip", z.ZodTypeAny, {
1107
1107
  userId: string;
1108
+ identityProviderId?: string | undefined;
1108
1109
  rights?: {
1109
1110
  kind: {
1110
1111
  CanActAs: {
@@ -1124,9 +1125,9 @@ export declare const GrantUserRightsRequestSchema: z.ZodObject<{
1124
1125
  ParticipantAdmin: {};
1125
1126
  };
1126
1127
  }[] | undefined;
1127
- identityProviderId?: string | undefined;
1128
1128
  }, {
1129
1129
  userId: string;
1130
+ identityProviderId?: string | undefined;
1130
1131
  rights?: {
1131
1132
  kind: {
1132
1133
  CanActAs: {
@@ -1146,7 +1147,6 @@ export declare const GrantUserRightsRequestSchema: z.ZodObject<{
1146
1147
  ParticipantAdmin: {};
1147
1148
  };
1148
1149
  }[] | undefined;
1149
- identityProviderId?: string | undefined;
1150
1150
  }>;
1151
1151
  /**
1152
1152
  * Grant user rights response.
@@ -1401,6 +1401,7 @@ export declare const RevokeUserRightsRequestSchema: z.ZodObject<{
1401
1401
  identityProviderId: z.ZodOptional<z.ZodString>;
1402
1402
  }, "strip", z.ZodTypeAny, {
1403
1403
  userId: string;
1404
+ identityProviderId?: string | undefined;
1404
1405
  rights?: {
1405
1406
  kind: {
1406
1407
  CanActAs: {
@@ -1420,9 +1421,9 @@ export declare const RevokeUserRightsRequestSchema: z.ZodObject<{
1420
1421
  ParticipantAdmin: {};
1421
1422
  };
1422
1423
  }[] | undefined;
1423
- identityProviderId?: string | undefined;
1424
1424
  }, {
1425
1425
  userId: string;
1426
+ identityProviderId?: string | undefined;
1426
1427
  rights?: {
1427
1428
  kind: {
1428
1429
  CanActAs: {
@@ -1442,7 +1443,6 @@ export declare const RevokeUserRightsRequestSchema: z.ZodObject<{
1442
1443
  ParticipantAdmin: {};
1443
1444
  };
1444
1445
  }[] | undefined;
1445
- identityProviderId?: string | undefined;
1446
1446
  }>;
1447
1447
  /**
1448
1448
  * Revoke user rights response.
@@ -1643,21 +1643,21 @@ export declare const AllocatePartyRequestSchema: z.ZodObject<{
1643
1643
  }, "strip", z.ZodTypeAny, {
1644
1644
  userId?: string | undefined;
1645
1645
  synchronizerId?: string | undefined;
1646
- identityProviderId?: string | undefined;
1646
+ partyIdHint?: string | undefined;
1647
1647
  localMetadata?: {
1648
1648
  resourceVersion: string;
1649
1649
  annotations: Record<string, string>;
1650
1650
  } | undefined;
1651
- partyIdHint?: string | undefined;
1651
+ identityProviderId?: string | undefined;
1652
1652
  }, {
1653
1653
  userId?: string | undefined;
1654
1654
  synchronizerId?: string | undefined;
1655
- identityProviderId?: string | undefined;
1655
+ partyIdHint?: string | undefined;
1656
1656
  localMetadata?: {
1657
1657
  resourceVersion: string;
1658
1658
  annotations: Record<string, string>;
1659
1659
  } | undefined;
1660
- partyIdHint?: string | undefined;
1660
+ identityProviderId?: string | undefined;
1661
1661
  }>;
1662
1662
  /**
1663
1663
  * Allocate party response.
@@ -1687,39 +1687,39 @@ export declare const AllocatePartyResponseSchema: z.ZodObject<{
1687
1687
  }, "strip", z.ZodTypeAny, {
1688
1688
  party: string;
1689
1689
  isLocal: boolean;
1690
- identityProviderId?: string | undefined;
1691
1690
  localMetadata?: {
1692
1691
  resourceVersion: string;
1693
1692
  annotations: Record<string, string>;
1694
1693
  } | undefined;
1694
+ identityProviderId?: string | undefined;
1695
1695
  }, {
1696
1696
  party: string;
1697
1697
  isLocal: boolean;
1698
- identityProviderId?: string | undefined;
1699
1698
  localMetadata?: {
1700
1699
  resourceVersion: string;
1701
1700
  annotations: Record<string, string>;
1702
1701
  } | undefined;
1702
+ identityProviderId?: string | undefined;
1703
1703
  }>;
1704
1704
  }, "strip", z.ZodTypeAny, {
1705
1705
  partyDetails: {
1706
1706
  party: string;
1707
1707
  isLocal: boolean;
1708
- identityProviderId?: string | undefined;
1709
1708
  localMetadata?: {
1710
1709
  resourceVersion: string;
1711
1710
  annotations: Record<string, string>;
1712
1711
  } | undefined;
1712
+ identityProviderId?: string | undefined;
1713
1713
  };
1714
1714
  }, {
1715
1715
  partyDetails: {
1716
1716
  party: string;
1717
1717
  isLocal: boolean;
1718
- identityProviderId?: string | undefined;
1719
1718
  localMetadata?: {
1720
1719
  resourceVersion: string;
1721
1720
  annotations: Record<string, string>;
1722
1721
  } | undefined;
1722
+ identityProviderId?: string | undefined;
1723
1723
  };
1724
1724
  }>;
1725
1725
  /**
@@ -1750,19 +1750,19 @@ export declare const UpdatePartyDetailsRequestSchema: z.ZodObject<{
1750
1750
  }, "strip", z.ZodTypeAny, {
1751
1751
  party: string;
1752
1752
  isLocal: boolean;
1753
- identityProviderId?: string | undefined;
1754
1753
  localMetadata?: {
1755
1754
  resourceVersion: string;
1756
1755
  annotations: Record<string, string>;
1757
1756
  } | undefined;
1757
+ identityProviderId?: string | undefined;
1758
1758
  }, {
1759
1759
  party: string;
1760
1760
  isLocal: boolean;
1761
- identityProviderId?: string | undefined;
1762
1761
  localMetadata?: {
1763
1762
  resourceVersion: string;
1764
1763
  annotations: Record<string, string>;
1765
1764
  } | undefined;
1765
+ identityProviderId?: string | undefined;
1766
1766
  }>;
1767
1767
  /** Update mask for partial updates. */
1768
1768
  updateMask: z.ZodObject<{
@@ -1773,30 +1773,30 @@ export declare const UpdatePartyDetailsRequestSchema: z.ZodObject<{
1773
1773
  paths: string[];
1774
1774
  }>;
1775
1775
  }, "strip", z.ZodTypeAny, {
1776
- updateMask: {
1777
- paths: string[];
1778
- };
1779
1776
  partyDetails: {
1780
1777
  party: string;
1781
1778
  isLocal: boolean;
1782
- identityProviderId?: string | undefined;
1783
1779
  localMetadata?: {
1784
1780
  resourceVersion: string;
1785
1781
  annotations: Record<string, string>;
1786
1782
  } | undefined;
1783
+ identityProviderId?: string | undefined;
1787
1784
  };
1788
- }, {
1789
1785
  updateMask: {
1790
1786
  paths: string[];
1791
1787
  };
1788
+ }, {
1792
1789
  partyDetails: {
1793
1790
  party: string;
1794
1791
  isLocal: boolean;
1795
- identityProviderId?: string | undefined;
1796
1792
  localMetadata?: {
1797
1793
  resourceVersion: string;
1798
1794
  annotations: Record<string, string>;
1799
1795
  } | undefined;
1796
+ identityProviderId?: string | undefined;
1797
+ };
1798
+ updateMask: {
1799
+ paths: string[];
1800
1800
  };
1801
1801
  }>;
1802
1802
  /**
@@ -1827,39 +1827,39 @@ export declare const UpdatePartyDetailsResponseSchema: z.ZodObject<{
1827
1827
  }, "strip", z.ZodTypeAny, {
1828
1828
  party: string;
1829
1829
  isLocal: boolean;
1830
- identityProviderId?: string | undefined;
1831
1830
  localMetadata?: {
1832
1831
  resourceVersion: string;
1833
1832
  annotations: Record<string, string>;
1834
1833
  } | undefined;
1834
+ identityProviderId?: string | undefined;
1835
1835
  }, {
1836
1836
  party: string;
1837
1837
  isLocal: boolean;
1838
- identityProviderId?: string | undefined;
1839
1838
  localMetadata?: {
1840
1839
  resourceVersion: string;
1841
1840
  annotations: Record<string, string>;
1842
1841
  } | undefined;
1842
+ identityProviderId?: string | undefined;
1843
1843
  }>;
1844
1844
  }, "strip", z.ZodTypeAny, {
1845
1845
  partyDetails: {
1846
1846
  party: string;
1847
1847
  isLocal: boolean;
1848
- identityProviderId?: string | undefined;
1849
1848
  localMetadata?: {
1850
1849
  resourceVersion: string;
1851
1850
  annotations: Record<string, string>;
1852
1851
  } | undefined;
1852
+ identityProviderId?: string | undefined;
1853
1853
  };
1854
1854
  }, {
1855
1855
  partyDetails: {
1856
1856
  party: string;
1857
1857
  isLocal: boolean;
1858
- identityProviderId?: string | undefined;
1859
1858
  localMetadata?: {
1860
1859
  resourceVersion: string;
1861
1860
  annotations: Record<string, string>;
1862
1861
  } | undefined;
1862
+ identityProviderId?: string | undefined;
1863
1863
  };
1864
1864
  }>;
1865
1865
  /**
@@ -1890,44 +1890,44 @@ export declare const ListKnownPartiesResponseSchema: z.ZodObject<{
1890
1890
  }, "strip", z.ZodTypeAny, {
1891
1891
  party: string;
1892
1892
  isLocal: boolean;
1893
- identityProviderId?: string | undefined;
1894
1893
  localMetadata?: {
1895
1894
  resourceVersion: string;
1896
1895
  annotations: Record<string, string>;
1897
1896
  } | undefined;
1897
+ identityProviderId?: string | undefined;
1898
1898
  }, {
1899
1899
  party: string;
1900
1900
  isLocal: boolean;
1901
- identityProviderId?: string | undefined;
1902
1901
  localMetadata?: {
1903
1902
  resourceVersion: string;
1904
1903
  annotations: Record<string, string>;
1905
1904
  } | undefined;
1905
+ identityProviderId?: string | undefined;
1906
1906
  }>, "many">;
1907
1907
  /** Pagination token. */
1908
1908
  nextPageToken: z.ZodString;
1909
1909
  }, "strip", z.ZodTypeAny, {
1910
- nextPageToken: string;
1911
1910
  partyDetails: {
1912
1911
  party: string;
1913
1912
  isLocal: boolean;
1914
- identityProviderId?: string | undefined;
1915
1913
  localMetadata?: {
1916
1914
  resourceVersion: string;
1917
1915
  annotations: Record<string, string>;
1918
1916
  } | undefined;
1917
+ identityProviderId?: string | undefined;
1919
1918
  }[];
1920
- }, {
1921
1919
  nextPageToken: string;
1920
+ }, {
1922
1921
  partyDetails: {
1923
1922
  party: string;
1924
1923
  isLocal: boolean;
1925
- identityProviderId?: string | undefined;
1926
1924
  localMetadata?: {
1927
1925
  resourceVersion: string;
1928
1926
  annotations: Record<string, string>;
1929
1927
  } | undefined;
1928
+ identityProviderId?: string | undefined;
1930
1929
  }[];
1930
+ nextPageToken: string;
1931
1931
  }>;
1932
1932
  /**
1933
1933
  * Get parties response.
@@ -1957,39 +1957,39 @@ export declare const GetPartiesResponseSchema: z.ZodObject<{
1957
1957
  }, "strip", z.ZodTypeAny, {
1958
1958
  party: string;
1959
1959
  isLocal: boolean;
1960
- identityProviderId?: string | undefined;
1961
1960
  localMetadata?: {
1962
1961
  resourceVersion: string;
1963
1962
  annotations: Record<string, string>;
1964
1963
  } | undefined;
1964
+ identityProviderId?: string | undefined;
1965
1965
  }, {
1966
1966
  party: string;
1967
1967
  isLocal: boolean;
1968
- identityProviderId?: string | undefined;
1969
1968
  localMetadata?: {
1970
1969
  resourceVersion: string;
1971
1970
  annotations: Record<string, string>;
1972
1971
  } | undefined;
1972
+ identityProviderId?: string | undefined;
1973
1973
  }>, "many">;
1974
1974
  }, "strip", z.ZodTypeAny, {
1975
1975
  partyDetails: {
1976
1976
  party: string;
1977
1977
  isLocal: boolean;
1978
- identityProviderId?: string | undefined;
1979
1978
  localMetadata?: {
1980
1979
  resourceVersion: string;
1981
1980
  annotations: Record<string, string>;
1982
1981
  } | undefined;
1982
+ identityProviderId?: string | undefined;
1983
1983
  }[];
1984
1984
  }, {
1985
1985
  partyDetails: {
1986
1986
  party: string;
1987
1987
  isLocal: boolean;
1988
- identityProviderId?: string | undefined;
1989
1988
  localMetadata?: {
1990
1989
  resourceVersion: string;
1991
1990
  annotations: Record<string, string>;
1992
1991
  } | undefined;
1992
+ identityProviderId?: string | undefined;
1993
1993
  }[];
1994
1994
  }>;
1995
1995
  /**
@@ -12,15 +12,15 @@ export declare const TraceContextSchema: z.ZodObject<{
12
12
  /** Additional trace metadata. */
13
13
  metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
14
14
  }, "strip", z.ZodTypeAny, {
15
+ metadata?: Record<string, string> | undefined;
15
16
  traceId?: string | undefined;
16
17
  spanId?: string | undefined;
17
18
  parentSpanId?: string | undefined;
18
- metadata?: Record<string, string> | undefined;
19
19
  }, {
20
+ metadata?: Record<string, string> | undefined;
20
21
  traceId?: string | undefined;
21
22
  spanId?: string | undefined;
22
23
  parentSpanId?: string | undefined;
23
- metadata?: Record<string, string> | undefined;
24
24
  }>;
25
25
  /**
26
26
  * Filter for active contracts and events.