@coopenomics/sdk 2025.5.14 → 2025.6.13

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/dist/index.cjs CHANGED
@@ -404,33 +404,60 @@ class Document {
404
404
  * @param document Сгенерированный документ для подписи.
405
405
  * @param account Имя аккаунта подписывающего (signer)
406
406
  * @param signatureId ID подписи (обычно 1 для первой подписи)
407
+ * @param existingSignedDocuments Массив уже подписанных документов для объединения подписей
407
408
  * @returns Подписанный документ.
408
409
  */
409
- async signDocument(document, account, signatureId = 1) {
410
+ async signDocument(document, account, signatureId = 1, existingSignedDocuments) {
410
411
  const version = "1.0.0";
411
412
  if (!this.wif)
412
413
  throw new Error(`\u041A\u043B\u044E\u0447 \u043D\u0435 \u0443\u0441\u0442\u0430\u043D\u043E\u0432\u043B\u0435\u043D, \u0432\u044B\u043F\u043E\u043B\u043D\u0438\u0442\u0435 \u0432\u044B\u0437\u043E\u0432 \u043C\u0435\u0442\u043E\u0434\u0430 setWif \u043F\u0435\u0440\u0435\u0434 \u043F\u043E\u0434\u043F\u0438\u0441\u044C\u044E \u0434\u043E\u043A\u0443\u043C\u0435\u043D\u0442\u0430`);
413
414
  const now = /* @__PURE__ */ new Date();
414
415
  const signed_at = now.toISOString().split(".")[0];
415
416
  const { meta_hash, hash, signed_hash } = await this.calculateHashes({ meta: document.meta, documentHash: document.hash, signed_at, version });
417
+ const allSignatures = [];
418
+ if (existingSignedDocuments && existingSignedDocuments.length > 0) {
419
+ for (const existingDoc of existingSignedDocuments) {
420
+ if (existingDoc.doc_hash.toUpperCase() !== document.hash.toUpperCase()) {
421
+ throw new Error(`\u0425\u044D\u0448 \u0434\u043E\u043A\u0443\u043C\u0435\u043D\u0442\u0430 \u043D\u0435 \u0441\u043E\u0432\u043F\u0430\u0434\u0430\u0435\u0442 \u0441 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044E\u0449\u0438\u043C \u043F\u043E\u0434\u043F\u0438\u0441\u0430\u043D\u043D\u044B\u043C \u0434\u043E\u043A\u0443\u043C\u0435\u043D\u0442\u043E\u043C: ${existingDoc.doc_hash.toUpperCase()} !== ${document.hash.toUpperCase()}`);
422
+ }
423
+ if (existingDoc.meta_hash.toUpperCase() !== meta_hash.toUpperCase()) {
424
+ throw new Error(`\u0425\u044D\u0448 \u043C\u0435\u0442\u0430\u0434\u0430\u043D\u043D\u044B\u0445 \u043D\u0435 \u0441\u043E\u0432\u043F\u0430\u0434\u0430\u0435\u0442 \u0441 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044E\u0449\u0438\u043C \u043F\u043E\u0434\u043F\u0438\u0441\u0430\u043D\u043D\u044B\u043C \u0434\u043E\u043A\u0443\u043C\u0435\u043D\u0442\u043E\u043C: ${existingDoc.meta_hash.toUpperCase()} !== ${meta_hash.toUpperCase()}`);
425
+ }
426
+ for (const existingSignature of existingDoc.signatures) {
427
+ if (!Document.validateSignature(existingSignature)) {
428
+ throw new Error(`\u041D\u0435\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043B\u044C\u043D\u0430\u044F \u043F\u043E\u0434\u043F\u0438\u0441\u044C \u043E\u0442 ${existingSignature.signer} \u0441 ID ${existingSignature.id}`);
429
+ }
430
+ }
431
+ allSignatures.push(...existingDoc.signatures.map((sig) => {
432
+ const { is_valid, signer_certificate, ...cleanedSig } = sig;
433
+ return cleanedSig;
434
+ }));
435
+ }
436
+ }
437
+ const existingIds = allSignatures.map((sig) => sig.id);
438
+ if (existingIds.includes(signatureId)) {
439
+ throw new Error(`\u041F\u043E\u0434\u043F\u0438\u0441\u044C \u0441 ID ${signatureId} \u0443\u0436\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442`);
440
+ }
416
441
  const digitalSignature = this.signDigest(signed_hash);
417
- const signatureInfo = {
442
+ const newSignatureInfo = {
418
443
  id: signatureId,
419
444
  signer: account,
420
445
  public_key: digitalSignature.public_key,
421
446
  signature: digitalSignature.signature,
422
447
  signed_at,
423
448
  signed_hash,
424
- meta: ""
449
+ meta: JSON.stringify({})
425
450
  };
451
+ allSignatures.push(newSignatureInfo);
452
+ allSignatures.sort((a, b) => a.id - b.id);
426
453
  return {
427
454
  version,
428
455
  hash,
429
456
  doc_hash: document.hash,
430
- // TODO: после миграции фабрики заменить здесь на doc_hash
457
+ // TODO: после миграции фабрики заменить здесь на doc_hash взятый из фабрики
431
458
  meta_hash,
432
459
  meta: document.meta,
433
- signatures: [signatureInfo]
460
+ signatures: allSignatures
434
461
  };
435
462
  }
436
463
  /**
@@ -711,14 +738,22 @@ const AllTypesProps = {
711
738
  type: "AccountType"
712
739
  },
713
740
  AddTrustedAccountInput: {},
714
- AgendaMeetPointInput: {},
741
+ AgendaGeneralMeetPointInput: {},
742
+ AgendaGeneralMeetQuestion: {},
743
+ AgendaMeet: {},
715
744
  AgreementInput: {},
716
- AnnualGeneralMeetingAgendaGenerateDocumentInput: {},
745
+ AnnualGeneralMeetingAgendaGenerateDocumentInput: {
746
+ meet: "AgendaMeet",
747
+ questions: "AgendaGeneralMeetQuestion"
748
+ },
717
749
  AnnualGeneralMeetingAgendaSignedDocumentInput: {
718
750
  meta: "AnnualGeneralMeetingAgendaSignedMetaDocumentInput",
719
751
  signatures: "SignatureInfoInput"
720
752
  },
721
- AnnualGeneralMeetingAgendaSignedMetaDocumentInput: {},
753
+ AnnualGeneralMeetingAgendaSignedMetaDocumentInput: {
754
+ meet: "AgendaMeet",
755
+ questions: "AgendaGeneralMeetQuestion"
756
+ },
722
757
  AnnualGeneralMeetingDecisionGenerateDocumentInput: {},
723
758
  AnnualGeneralMeetingDecisionSignedDocumentInput: {
724
759
  meta: "AnnualGeneralMeetingDecisionSignedMetaDocumentInput",
@@ -726,13 +761,23 @@ const AllTypesProps = {
726
761
  },
727
762
  AnnualGeneralMeetingDecisionSignedMetaDocumentInput: {},
728
763
  AnnualGeneralMeetingNotificationGenerateDocumentInput: {},
764
+ AnnualGeneralMeetingNotificationSignedDocumentInput: {
765
+ meta: "AnnualGeneralMeetingNotificationSignedMetaDocumentInput",
766
+ signatures: "SignatureInfoInput"
767
+ },
768
+ AnnualGeneralMeetingNotificationSignedMetaDocumentInput: {},
729
769
  AnnualGeneralMeetingSovietDecisionGenerateDocumentInput: {},
730
- AnnualGeneralMeetingVotingBallotGenerateDocumentInput: {},
770
+ AnnualGeneralMeetingVotingBallotGenerateDocumentInput: {
771
+ answers: "AnswerInput"
772
+ },
731
773
  AnnualGeneralMeetingVotingBallotSignedDocumentInput: {
732
774
  meta: "AnnualGeneralMeetingVotingBallotSignedMetaDocumentInput",
733
775
  signatures: "SignatureInfoInput"
734
776
  },
735
- AnnualGeneralMeetingVotingBallotSignedMetaDocumentInput: {},
777
+ AnnualGeneralMeetingVotingBallotSignedMetaDocumentInput: {
778
+ answers: "AnswerInput"
779
+ },
780
+ AnswerInput: {},
736
781
  AssetContributionActGenerateDocumentInput: {},
737
782
  AssetContributionActSignedDocumentInput: {
738
783
  meta: "AssetContributionActSignedMetaDocumentInput",
@@ -765,7 +810,7 @@ const AllTypesProps = {
765
810
  },
766
811
  Country: "enum",
767
812
  CreateAnnualGeneralMeetInput: {
768
- agenda: "AgendaMeetPointInput",
813
+ agenda: "AgendaGeneralMeetPointInput",
769
814
  close_at: "DateTime",
770
815
  open_at: "DateTime",
771
816
  proposal: "AnnualGeneralMeetingAgendaSignedDocumentInput"
@@ -806,6 +851,7 @@ const AllTypesProps = {
806
851
  },
807
852
  EditBranchInput: {},
808
853
  EntrepreneurDetailsInput: {},
854
+ ExtendedMeetStatus: "enum",
809
855
  ExtensionInput: {
810
856
  config: "JSON",
811
857
  created_at: "DateTime",
@@ -1005,6 +1051,9 @@ const AllTypesProps = {
1005
1051
  moderateRequest: {
1006
1052
  data: "ModerateRequestInput"
1007
1053
  },
1054
+ notifyOnAnnualGeneralMeet: {
1055
+ data: "NotifyOnAnnualGeneralMeetInput"
1056
+ },
1008
1057
  prohibitRequest: {
1009
1058
  data: "ProhibitRequestInput"
1010
1059
  },
@@ -1078,6 +1127,9 @@ const AllTypesProps = {
1078
1127
  data: "VoteOnAnnualGeneralMeetInput"
1079
1128
  }
1080
1129
  },
1130
+ NotifyOnAnnualGeneralMeetInput: {
1131
+ notification: "AnnualGeneralMeetingNotificationSignedDocumentInput"
1132
+ },
1081
1133
  OrganizationDetailsInput: {},
1082
1134
  OrganizationType: "enum",
1083
1135
  PaginationInput: {},
@@ -1192,9 +1244,7 @@ const AllTypesProps = {
1192
1244
  SignBySecretaryOnAnnualGeneralMeetInput: {
1193
1245
  secretary_decision: "AnnualGeneralMeetingDecisionSignedDocumentInput"
1194
1246
  },
1195
- SignatureInfoInput: {
1196
- meta: "JSON"
1197
- },
1247
+ SignatureInfoInput: {},
1198
1248
  SignedDigitalDocumentInput: {
1199
1249
  meta: "MetaDocumentInput",
1200
1250
  signatures: "SignatureInfoInput"
@@ -1394,9 +1444,12 @@ const ReturnTypes = {
1394
1444
  statement: "SignedBlockchainDocument",
1395
1445
  type: "String",
1396
1446
  username: "String",
1447
+ username_certificate: "UserCertificateUnion",
1397
1448
  validated: "Boolean",
1398
1449
  votes_against: "String",
1399
- votes_for: "String"
1450
+ votes_against_certificates: "UserCertificateUnion",
1451
+ votes_for: "String",
1452
+ votes_for_certificates: "UserCertificateUnion"
1400
1453
  },
1401
1454
  BlockchainInfoDTO: {
1402
1455
  block_cpu_limit: "Int",
@@ -1443,6 +1496,7 @@ const ReturnTypes = {
1443
1496
  phone: "String"
1444
1497
  },
1445
1498
  CooperativeOperatorAccount: {
1499
+ active_participants_count: "Float",
1446
1500
  announce: "String",
1447
1501
  coop_type: "String",
1448
1502
  created_at: "String",
@@ -1521,6 +1575,14 @@ const ReturnTypes = {
1521
1575
  phone: "String",
1522
1576
  username: "String"
1523
1577
  },
1578
+ EntrepreneurCertificate: {
1579
+ first_name: "String",
1580
+ inn: "String",
1581
+ last_name: "String",
1582
+ middle_name: "String",
1583
+ type: "AccountType",
1584
+ username: "String"
1585
+ },
1524
1586
  EntrepreneurDetails: {
1525
1587
  inn: "String",
1526
1588
  ogrn: "String"
@@ -1529,6 +1591,7 @@ const ReturnTypes = {
1529
1591
  account: "String",
1530
1592
  account_ram_deltas: "AccountRamDelta",
1531
1593
  action_ordinal: "Int",
1594
+ actor_certificate: "UserCertificateUnion",
1532
1595
  authorization: "ActionAuthorization",
1533
1596
  block_id: "String",
1534
1597
  block_num: "Int",
@@ -1542,8 +1605,7 @@ const ReturnTypes = {
1542
1605
  name: "String",
1543
1606
  receipt: "ActionReceipt",
1544
1607
  receiver: "String",
1545
- transaction_id: "String",
1546
- user: "UserDataUnion"
1608
+ transaction_id: "String"
1547
1609
  },
1548
1610
  Extension: {
1549
1611
  config: "JSON",
@@ -1583,6 +1645,13 @@ const ReturnTypes = {
1583
1645
  phone: "String",
1584
1646
  username: "String"
1585
1647
  },
1648
+ IndividualCertificate: {
1649
+ first_name: "String",
1650
+ last_name: "String",
1651
+ middle_name: "String",
1652
+ type: "AccountType",
1653
+ username: "String"
1654
+ },
1586
1655
  JSON: `scalar.JSON`,
1587
1656
  JSONObject: `scalar.JSONObject`,
1588
1657
  KeyWeight: {
@@ -1596,15 +1665,21 @@ const ReturnTypes = {
1596
1665
  created_at: "DateTime",
1597
1666
  current_quorum_percent: "Float",
1598
1667
  cycle: "Float",
1668
+ decision1: "DocumentAggregate",
1669
+ decision2: "DocumentAggregate",
1599
1670
  hash: "String",
1600
1671
  id: "Float",
1601
1672
  initiator: "String",
1673
+ initiator_certificate: "UserCertificateUnion",
1674
+ notified_users: "String",
1602
1675
  open_at: "DateTime",
1603
1676
  presider: "String",
1677
+ presider_certificate: "UserCertificateUnion",
1604
1678
  proposal: "DocumentAggregate",
1605
1679
  quorum_passed: "Boolean",
1606
1680
  quorum_percent: "Float",
1607
1681
  secretary: "String",
1682
+ secretary_certificate: "UserCertificateUnion",
1608
1683
  signed_ballots: "Float",
1609
1684
  status: "String",
1610
1685
  type: "String"
@@ -1621,20 +1696,46 @@ const ReturnTypes = {
1621
1696
  coopname: "String",
1622
1697
  hash: "String",
1623
1698
  initiator: "String",
1699
+ initiator_certificate: "UserCertificateUnion",
1624
1700
  open_at: "DateTime",
1625
1701
  presider: "String",
1702
+ presider_certificate: "UserCertificateUnion",
1626
1703
  proposal: "DocumentAggregate",
1627
- secretary: "String"
1704
+ secretary: "String",
1705
+ secretary_certificate: "UserCertificateUnion"
1628
1706
  },
1629
1707
  MeetProcessed: {
1630
- decision: "BlockchainAction",
1631
- hash: "String"
1708
+ coopname: "String",
1709
+ decision: "SignedDigitalDocument",
1710
+ decisionAggregate: "DocumentAggregate",
1711
+ hash: "String",
1712
+ presider: "String",
1713
+ presider_certificate: "UserCertificateUnion",
1714
+ quorum_passed: "Boolean",
1715
+ quorum_percent: "Int",
1716
+ results: "MeetQuestionResult",
1717
+ secretary: "String",
1718
+ secretary_certificate: "UserCertificateUnion",
1719
+ signed_ballots: "Int"
1632
1720
  },
1633
1721
  MeetProcessing: {
1722
+ extendedStatus: "ExtendedMeetStatus",
1634
1723
  hash: "String",
1724
+ isVoted: "Boolean",
1635
1725
  meet: "Meet",
1636
1726
  questions: "Question"
1637
1727
  },
1728
+ MeetQuestionResult: {
1729
+ accepted: "Boolean",
1730
+ context: "String",
1731
+ decision: "String",
1732
+ number: "Int",
1733
+ question_id: "Int",
1734
+ title: "String",
1735
+ votes_abstained: "Int",
1736
+ votes_against: "Int",
1737
+ votes_for: "Int"
1738
+ },
1638
1739
  MonoAccount: {
1639
1740
  email: "String",
1640
1741
  has_account: "Boolean",
@@ -1698,6 +1799,7 @@ const ReturnTypes = {
1698
1799
  login: "RegisteredAccount",
1699
1800
  logout: "Boolean",
1700
1801
  moderateRequest: "Transaction",
1802
+ notifyOnAnnualGeneralMeet: "MeetAggregate",
1701
1803
  prohibitRequest: "Transaction",
1702
1804
  publishProjectOfFreeDecision: "Boolean",
1703
1805
  publishRequest: "Transaction",
@@ -1737,6 +1839,14 @@ const ReturnTypes = {
1737
1839
  type: "String",
1738
1840
  username: "String"
1739
1841
  },
1842
+ OrganizationCertificate: {
1843
+ inn: "String",
1844
+ ogrn: "String",
1845
+ represented_by: "RepresentedByCertificate",
1846
+ short_name: "String",
1847
+ type: "AccountType",
1848
+ username: "String"
1849
+ },
1740
1850
  OrganizationDetails: {
1741
1851
  inn: "String",
1742
1852
  kpp: "String",
@@ -1883,6 +1993,12 @@ const ReturnTypes = {
1883
1993
  middle_name: "String",
1884
1994
  position: "String"
1885
1995
  },
1996
+ RepresentedByCertificate: {
1997
+ first_name: "String",
1998
+ last_name: "String",
1999
+ middle_name: "String",
2000
+ position: "String"
2001
+ },
1886
2002
  ResourceDelegationDTO: {
1887
2003
  cpu_weight: "String",
1888
2004
  from: "String",
@@ -1907,7 +2023,7 @@ const ReturnTypes = {
1907
2023
  signed_at: "String",
1908
2024
  signed_hash: "String",
1909
2025
  signer: "String",
1910
- signer_info: "UserDataUnion"
2026
+ signer_certificate: "UserCertificateUnion"
1911
2027
  },
1912
2028
  SignedBlockchainDocument: {
1913
2029
  doc_hash: "String",
@@ -1968,10 +2084,10 @@ const ReturnTypes = {
1968
2084
  username: "String",
1969
2085
  verifications: "Verification"
1970
2086
  },
1971
- UserDataUnion: {
1972
- "...on Entrepreneur": "Entrepreneur",
1973
- "...on Individual": "Individual",
1974
- "...on Organization": "Organization"
2087
+ UserCertificateUnion: {
2088
+ "...on EntrepreneurCertificate": "EntrepreneurCertificate",
2089
+ "...on IndividualCertificate": "IndividualCertificate",
2090
+ "...on OrganizationCertificate": "OrganizationCertificate"
1975
2091
  },
1976
2092
  Vars: {
1977
2093
  confidential_email: "String",
@@ -2533,6 +2649,19 @@ var Country = /* @__PURE__ */ ((Country2) => {
2533
2649
  Country2["Russia"] = "Russia";
2534
2650
  return Country2;
2535
2651
  })(Country || {});
2652
+ var ExtendedMeetStatus = /* @__PURE__ */ ((ExtendedMeetStatus2) => {
2653
+ ExtendedMeetStatus2["AUTHORIZED"] = "AUTHORIZED";
2654
+ ExtendedMeetStatus2["CLOSED"] = "CLOSED";
2655
+ ExtendedMeetStatus2["CREATED"] = "CREATED";
2656
+ ExtendedMeetStatus2["EXPIRED_NO_QUORUM"] = "EXPIRED_NO_QUORUM";
2657
+ ExtendedMeetStatus2["NONE"] = "NONE";
2658
+ ExtendedMeetStatus2["ONRESTART"] = "ONRESTART";
2659
+ ExtendedMeetStatus2["PRECLOSED"] = "PRECLOSED";
2660
+ ExtendedMeetStatus2["VOTING_COMPLETED"] = "VOTING_COMPLETED";
2661
+ ExtendedMeetStatus2["VOTING_IN_PROGRESS"] = "VOTING_IN_PROGRESS";
2662
+ ExtendedMeetStatus2["WAITING_FOR_OPENING"] = "WAITING_FOR_OPENING";
2663
+ return ExtendedMeetStatus2;
2664
+ })(ExtendedMeetStatus || {});
2536
2665
  var OrganizationType = /* @__PURE__ */ ((OrganizationType2) => {
2537
2666
  OrganizationType2["AO"] = "AO";
2538
2667
  OrganizationType2["COOP"] = "COOP";
@@ -2576,6 +2705,7 @@ const index$s = {
2576
2705
  AccountType: AccountType,
2577
2706
  Chain: Chain,
2578
2707
  Country: Country,
2708
+ ExtendedMeetStatus: ExtendedMeetStatus,
2579
2709
  GRAPHQL_TYPE_SEPARATOR: GRAPHQL_TYPE_SEPARATOR,
2580
2710
  Gql: Gql,
2581
2711
  GraphQLError: GraphQLError,
@@ -2856,10 +2986,35 @@ const rawTransactionSelector = {
2856
2986
  };
2857
2987
  Selector("Transaction")(rawTransactionSelector);
2858
2988
 
2859
- const rawUserUnionSelector = {
2860
- "...on Entrepreneur": rawEntrepreneurSelector,
2861
- "...on Individual": rawIndividualSelector,
2862
- "...on Organization": rawOrganizationSelector
2989
+ const rawUserCertificateUnionSelector = {
2990
+ "...on IndividualCertificate": {
2991
+ type: true,
2992
+ username: true,
2993
+ first_name: true,
2994
+ last_name: true,
2995
+ middle_name: true
2996
+ },
2997
+ "...on EntrepreneurCertificate": {
2998
+ type: true,
2999
+ username: true,
3000
+ first_name: true,
3001
+ last_name: true,
3002
+ inn: true,
3003
+ middle_name: true
3004
+ },
3005
+ "...on OrganizationCertificate": {
3006
+ type: true,
3007
+ username: true,
3008
+ short_name: true,
3009
+ inn: true,
3010
+ ogrn: true,
3011
+ represented_by: {
3012
+ first_name: true,
3013
+ last_name: true,
3014
+ middle_name: true,
3015
+ position: true
3016
+ }
3017
+ }
2863
3018
  };
2864
3019
 
2865
3020
  const rawPrivateAccountSelector = {
@@ -2920,37 +3075,37 @@ const registeredAccountSelector = Selector("RegisteredAccount")(
2920
3075
  rawRegisteredAccountSelector
2921
3076
  );
2922
3077
 
2923
- const name$1k = "registerAccount";
2924
- const mutation$17 = Selector("Mutation")({
2925
- [name$1k]: [{ data: $("data", "RegisterAccountInput!") }, registeredAccountSelector]
3078
+ const name$1l = "registerAccount";
3079
+ const mutation$18 = Selector("Mutation")({
3080
+ [name$1l]: [{ data: $("data", "RegisterAccountInput!") }, registeredAccountSelector]
2926
3081
  });
2927
3082
 
2928
3083
  const registerAccount = {
2929
3084
  __proto__: null,
2930
- mutation: mutation$17,
2931
- name: name$1k
3085
+ mutation: mutation$18,
3086
+ name: name$1l
2932
3087
  };
2933
3088
 
2934
- const name$1j = "resetKey";
2935
- const mutation$16 = Selector("Mutation")({
2936
- [name$1j]: [{ data: $("data", "ResetKeyInput!") }, true]
3089
+ const name$1k = "resetKey";
3090
+ const mutation$17 = Selector("Mutation")({
3091
+ [name$1k]: [{ data: $("data", "ResetKeyInput!") }, true]
2937
3092
  });
2938
3093
 
2939
3094
  const resetKey = {
2940
3095
  __proto__: null,
2941
- mutation: mutation$16,
2942
- name: name$1j
3096
+ mutation: mutation$17,
3097
+ name: name$1k
2943
3098
  };
2944
3099
 
2945
- const name$1i = "startResetKey";
2946
- const mutation$15 = Selector("Mutation")({
2947
- [name$1i]: [{ data: $("data", "StartResetKeyInput!") }, true]
3100
+ const name$1j = "startResetKey";
3101
+ const mutation$16 = Selector("Mutation")({
3102
+ [name$1j]: [{ data: $("data", "StartResetKeyInput!") }, true]
2948
3103
  });
2949
3104
 
2950
3105
  const startResetKey = {
2951
3106
  __proto__: null,
2952
- mutation: mutation$15,
2953
- name: name$1i
3107
+ mutation: mutation$16,
3108
+ name: name$1j
2954
3109
  };
2955
3110
 
2956
3111
  const paginationSelector = {
@@ -3079,9 +3234,9 @@ const rawSignatureInfoSelector$1 = {
3079
3234
  signature: true,
3080
3235
  signed_at: true,
3081
3236
  is_valid: true,
3082
- signer_info: rawUserUnionSelector,
3083
3237
  signed_hash: true,
3084
- meta: true
3238
+ meta: true,
3239
+ signer_certificate: rawUserCertificateUnionSelector
3085
3240
  };
3086
3241
  const rawDocumentSignatureSelector = {
3087
3242
  version: true,
@@ -3097,11 +3252,78 @@ const rawDocumentAggregateSelector = {
3097
3252
  rawDocument: rawGeneratedDocumentSelector
3098
3253
  };
3099
3254
 
3255
+ const rawSignatureInfoSelector = {
3256
+ id: true,
3257
+ signer: true,
3258
+ public_key: true,
3259
+ signature: true,
3260
+ signed_at: true,
3261
+ is_valid: true,
3262
+ signer_certificate: rawUserCertificateUnionSelector,
3263
+ signed_hash: true,
3264
+ meta: true
3265
+ };
3266
+ Selector("SignatureInfo")(rawSignatureInfoSelector);
3267
+
3268
+ const rawSignedBlockchainDocumentSelector = {
3269
+ version: true,
3270
+ hash: true,
3271
+ doc_hash: true,
3272
+ meta_hash: true,
3273
+ meta: true,
3274
+ signatures: rawSignatureInfoSelector
3275
+ };
3276
+ Selector("SignedBlockchainDocument")(rawSignedBlockchainDocumentSelector);
3277
+
3278
+ const rawMeetQuestionResultSelector = {
3279
+ question_id: true,
3280
+ number: true,
3281
+ title: true,
3282
+ decision: true,
3283
+ context: true,
3284
+ votes_for: true,
3285
+ votes_against: true,
3286
+ votes_abstained: true,
3287
+ accepted: true
3288
+ };
3289
+ const rawMeetProcessedSelector = {
3290
+ coopname: true,
3291
+ hash: true,
3292
+ presider: true,
3293
+ secretary: true,
3294
+ presider_certificate: rawUserCertificateUnionSelector,
3295
+ secretary_certificate: rawUserCertificateUnionSelector,
3296
+ results: rawMeetQuestionResultSelector,
3297
+ signed_ballots: true,
3298
+ quorum_percent: true,
3299
+ quorum_passed: true,
3300
+ decision: rawSignedBlockchainDocumentSelector,
3301
+ decisionAggregate: rawDocumentAggregateSelector
3302
+ };
3303
+ Selector("MeetQuestionResult")(rawMeetQuestionResultSelector);
3304
+ Selector("MeetProcessed")(rawMeetProcessedSelector);
3305
+
3100
3306
  const rawAgendaMeetPointSelector = {
3101
3307
  context: true,
3102
3308
  title: true,
3103
3309
  decision: true
3104
3310
  };
3311
+ const rawMeetPreProcessingSelector = {
3312
+ hash: true,
3313
+ coopname: true,
3314
+ initiator: true,
3315
+ initiator_certificate: rawUserCertificateUnionSelector,
3316
+ presider: true,
3317
+ secretary: true,
3318
+ presider_certificate: rawUserCertificateUnionSelector,
3319
+ secretary_certificate: rawUserCertificateUnionSelector,
3320
+ agenda: rawAgendaMeetPointSelector,
3321
+ open_at: true,
3322
+ close_at: true,
3323
+ proposal: rawDocumentAggregateSelector
3324
+ };
3325
+ Selector("MeetPreProcessing")(rawMeetPreProcessingSelector);
3326
+
3105
3327
  const rawQuestionSelector = {
3106
3328
  id: true,
3107
3329
  number: true,
@@ -3123,8 +3345,11 @@ const rawMeetSelector = {
3123
3345
  coopname: true,
3124
3346
  type: true,
3125
3347
  initiator: true,
3348
+ initiator_certificate: rawUserCertificateUnionSelector,
3126
3349
  presider: true,
3350
+ presider_certificate: rawUserCertificateUnionSelector,
3127
3351
  secretary: true,
3352
+ secretary_certificate: rawUserCertificateUnionSelector,
3128
3353
  status: true,
3129
3354
  created_at: true,
3130
3355
  open_at: true,
@@ -3135,28 +3360,20 @@ const rawMeetSelector = {
3135
3360
  cycle: true,
3136
3361
  quorum_passed: true,
3137
3362
  proposal: rawDocumentAggregateSelector,
3138
- authorization: rawDocumentAggregateSelector
3363
+ authorization: rawDocumentAggregateSelector,
3364
+ decision1: rawDocumentAggregateSelector,
3365
+ decision2: rawDocumentAggregateSelector,
3366
+ notified_users: true
3139
3367
  };
3140
3368
  const rawMeetProcessingSelector = {
3141
3369
  hash: true,
3142
3370
  meet: rawMeetSelector,
3143
- questions: rawQuestionSelector
3144
- };
3145
- const rawMeetPreProcessingSelector = {
3146
- hash: true,
3147
- coopname: true,
3148
- initiator: true,
3149
- presider: true,
3150
- secretary: true,
3151
- agenda: rawAgendaMeetPointSelector,
3152
- open_at: true,
3153
- close_at: true,
3154
- proposal: rawDocumentAggregateSelector
3155
- };
3156
- const rawMeetProcessedSelector = {
3157
- hash: true,
3158
- decision: rawBlockchainActionSelector
3371
+ questions: rawQuestionSelector,
3372
+ isVoted: true,
3373
+ extendedStatus: true
3159
3374
  };
3375
+ Selector("MeetProcessing")(rawMeetProcessingSelector);
3376
+
3160
3377
  const rawMeetAggregateSelector = {
3161
3378
  hash: true,
3162
3379
  pre: rawMeetPreProcessingSelector,
@@ -3204,29 +3421,6 @@ Selector("BlockchainInfoDTO")(
3204
3421
  rawBlockchainInfoSelector
3205
3422
  );
3206
3423
 
3207
- const rawSignatureInfoSelector = {
3208
- id: true,
3209
- signer: true,
3210
- public_key: true,
3211
- signature: true,
3212
- signed_at: true,
3213
- is_valid: true,
3214
- signer_info: rawUserUnionSelector,
3215
- signed_hash: true,
3216
- meta: true
3217
- };
3218
- Selector("SignatureInfo")(rawSignatureInfoSelector);
3219
-
3220
- const rawSignedBlockchainDocumentSelector = {
3221
- version: true,
3222
- hash: true,
3223
- doc_hash: true,
3224
- meta_hash: true,
3225
- meta: true,
3226
- signatures: rawSignatureInfoSelector
3227
- };
3228
- Selector("SignedBlockchainDocument")(rawSignedBlockchainDocumentSelector);
3229
-
3230
3424
  const rawCooperatorAccountSelector = {
3231
3425
  announce: true,
3232
3426
  coop_type: true,
@@ -3258,7 +3452,8 @@ const rawCooperatorAccountSelector = {
3258
3452
  notice: true,
3259
3453
  procedure: true,
3260
3454
  verificator: true
3261
- }
3455
+ },
3456
+ active_participants_count: true
3262
3457
  };
3263
3458
  Selector("CooperativeOperatorAccount")(
3264
3459
  rawCooperatorAccountSelector
@@ -3316,15 +3511,15 @@ const rawSystemInfoSelector = {
3316
3511
  };
3317
3512
  const systemInfoSelector = Selector("SystemInfo")(rawSystemInfoSelector);
3318
3513
 
3319
- const name$1h = "updateAccount";
3320
- const mutation$14 = Selector("Mutation")({
3321
- [name$1h]: [{ data: $("data", "UpdateAccountInput!") }, accountSelector]
3514
+ const name$1i = "updateAccount";
3515
+ const mutation$15 = Selector("Mutation")({
3516
+ [name$1i]: [{ data: $("data", "UpdateAccountInput!") }, accountSelector]
3322
3517
  });
3323
3518
 
3324
3519
  const updateAccount = {
3325
3520
  __proto__: null,
3326
- mutation: mutation$14,
3327
- name: name$1h
3521
+ mutation: mutation$15,
3522
+ name: name$1i
3328
3523
  };
3329
3524
 
3330
3525
  const index$r = {
@@ -3335,50 +3530,50 @@ const index$r = {
3335
3530
  UpdateAccount: updateAccount
3336
3531
  };
3337
3532
 
3338
- const name$1g = "generatePrivacyAgreement";
3533
+ const name$1h = "generatePrivacyAgreement";
3534
+ const mutation$14 = Selector("Mutation")({
3535
+ [name$1h]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
3536
+ });
3537
+
3538
+ const generatePrivacyAgreement = {
3539
+ __proto__: null,
3540
+ mutation: mutation$14,
3541
+ name: name$1h
3542
+ };
3543
+
3544
+ const name$1g = "generateSignatureAgreement";
3339
3545
  const mutation$13 = Selector("Mutation")({
3340
3546
  [name$1g]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
3341
3547
  });
3342
3548
 
3343
- const generatePrivacyAgreement = {
3549
+ const generateSignatureAgreement = {
3344
3550
  __proto__: null,
3345
3551
  mutation: mutation$13,
3346
3552
  name: name$1g
3347
3553
  };
3348
3554
 
3349
- const name$1f = "generateSignatureAgreement";
3555
+ const name$1f = "generateWalletAgreement";
3350
3556
  const mutation$12 = Selector("Mutation")({
3351
3557
  [name$1f]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
3352
3558
  });
3353
3559
 
3354
- const generateSignatureAgreement = {
3560
+ const generateWalletAgreement = {
3355
3561
  __proto__: null,
3356
3562
  mutation: mutation$12,
3357
3563
  name: name$1f
3358
3564
  };
3359
3565
 
3360
- const name$1e = "generateWalletAgreement";
3566
+ const name$1e = "generateUserAgreement";
3361
3567
  const mutation$11 = Selector("Mutation")({
3362
3568
  [name$1e]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
3363
3569
  });
3364
3570
 
3365
- const generateWalletAgreement = {
3571
+ const generateUserAgreement = {
3366
3572
  __proto__: null,
3367
3573
  mutation: mutation$11,
3368
3574
  name: name$1e
3369
3575
  };
3370
3576
 
3371
- const name$1d = "generateUserAgreement";
3372
- const mutation$10 = Selector("Mutation")({
3373
- [name$1d]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
3374
- });
3375
-
3376
- const generateUserAgreement = {
3377
- __proto__: null,
3378
- mutation: mutation$10,
3379
- name: name$1d
3380
- };
3381
-
3382
3577
  const index$q = {
3383
3578
  __proto__: null,
3384
3579
  GeneratePrivacyAgreement: generatePrivacyAgreement,
@@ -3387,37 +3582,37 @@ const index$q = {
3387
3582
  GenerateWalletAgreement: generateWalletAgreement
3388
3583
  };
3389
3584
 
3390
- const name$1c = "refresh";
3391
- const mutation$$ = Selector("Mutation")({
3392
- [name$1c]: [{ data: $("data", "RefreshInput!") }, registeredAccountSelector]
3585
+ const name$1d = "refresh";
3586
+ const mutation$10 = Selector("Mutation")({
3587
+ [name$1d]: [{ data: $("data", "RefreshInput!") }, registeredAccountSelector]
3393
3588
  });
3394
3589
 
3395
3590
  const refresh = {
3396
3591
  __proto__: null,
3397
- mutation: mutation$$,
3398
- name: name$1c
3592
+ mutation: mutation$10,
3593
+ name: name$1d
3399
3594
  };
3400
3595
 
3401
- const name$1b = "logout";
3402
- const mutation$_ = Selector("Mutation")({
3403
- [name$1b]: [{ data: $("data", "LogoutInput!") }, true]
3596
+ const name$1c = "logout";
3597
+ const mutation$$ = Selector("Mutation")({
3598
+ [name$1c]: [{ data: $("data", "LogoutInput!") }, true]
3404
3599
  });
3405
3600
 
3406
3601
  const logout = {
3407
3602
  __proto__: null,
3408
- mutation: mutation$_,
3409
- name: name$1b
3603
+ mutation: mutation$$,
3604
+ name: name$1c
3410
3605
  };
3411
3606
 
3412
- const name$1a = "login";
3413
- const mutation$Z = Selector("Mutation")({
3414
- [name$1a]: [{ data: $("data", "LoginInput!") }, registeredAccountSelector]
3607
+ const name$1b = "login";
3608
+ const mutation$_ = Selector("Mutation")({
3609
+ [name$1b]: [{ data: $("data", "LoginInput!") }, registeredAccountSelector]
3415
3610
  });
3416
3611
 
3417
3612
  const login = {
3418
3613
  __proto__: null,
3419
- mutation: mutation$Z,
3420
- name: name$1a
3614
+ mutation: mutation$_,
3615
+ name: name$1b
3421
3616
  };
3422
3617
 
3423
3618
  const index$p = {
@@ -3427,83 +3622,83 @@ const index$p = {
3427
3622
  Refresh: refresh
3428
3623
  };
3429
3624
 
3430
- const name$19 = "addTrustedAccount";
3431
- const mutation$Y = Selector("Mutation")({
3432
- [name$19]: [{ data: $("data", "AddTrustedAccountInput!") }, branchSelector]
3625
+ const name$1a = "addTrustedAccount";
3626
+ const mutation$Z = Selector("Mutation")({
3627
+ [name$1a]: [{ data: $("data", "AddTrustedAccountInput!") }, branchSelector]
3433
3628
  });
3434
3629
 
3435
3630
  const addTrustedAccount = {
3631
+ __proto__: null,
3632
+ mutation: mutation$Z,
3633
+ name: name$1a
3634
+ };
3635
+
3636
+ const name$19 = "createBranch";
3637
+ const mutation$Y = Selector("Mutation")({
3638
+ [name$19]: [{ data: $("data", "CreateBranchInput!") }, branchSelector]
3639
+ });
3640
+
3641
+ const createBranch = {
3436
3642
  __proto__: null,
3437
3643
  mutation: mutation$Y,
3438
3644
  name: name$19
3439
3645
  };
3440
3646
 
3441
- const name$18 = "createBranch";
3647
+ const name$18 = "deleteBranch";
3442
3648
  const mutation$X = Selector("Mutation")({
3443
- [name$18]: [{ data: $("data", "CreateBranchInput!") }, branchSelector]
3649
+ [name$18]: [{ data: $("data", "DeleteBranchInput!") }, true]
3444
3650
  });
3445
3651
 
3446
- const createBranch = {
3652
+ const deleteBranch = {
3447
3653
  __proto__: null,
3448
3654
  mutation: mutation$X,
3449
3655
  name: name$18
3450
3656
  };
3451
3657
 
3452
- const name$17 = "deleteBranch";
3658
+ const name$17 = "deleteTrustedAccount";
3453
3659
  const mutation$W = Selector("Mutation")({
3454
- [name$17]: [{ data: $("data", "DeleteBranchInput!") }, true]
3660
+ [name$17]: [{ data: $("data", "DeleteTrustedAccountInput!") }, branchSelector]
3455
3661
  });
3456
3662
 
3457
- const deleteBranch = {
3663
+ const deleteTrustedAccount = {
3458
3664
  __proto__: null,
3459
3665
  mutation: mutation$W,
3460
3666
  name: name$17
3461
3667
  };
3462
3668
 
3463
- const name$16 = "deleteTrustedAccount";
3669
+ const name$16 = "editBranch";
3464
3670
  const mutation$V = Selector("Mutation")({
3465
- [name$16]: [{ data: $("data", "DeleteTrustedAccountInput!") }, branchSelector]
3671
+ [name$16]: [{ data: $("data", "EditBranchInput!") }, branchSelector]
3466
3672
  });
3467
3673
 
3468
- const deleteTrustedAccount = {
3674
+ const editBranch = {
3469
3675
  __proto__: null,
3470
3676
  mutation: mutation$V,
3471
3677
  name: name$16
3472
3678
  };
3473
3679
 
3474
- const name$15 = "editBranch";
3680
+ const name$15 = "generateSelectBranchDocument";
3475
3681
  const mutation$U = Selector("Mutation")({
3476
- [name$15]: [{ data: $("data", "EditBranchInput!") }, branchSelector]
3682
+ [name$15]: [{ data: $("data", "SelectBranchGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
3477
3683
  });
3478
3684
 
3479
- const editBranch = {
3685
+ const generateSelectBranchDocument = {
3480
3686
  __proto__: null,
3481
3687
  mutation: mutation$U,
3482
3688
  name: name$15
3483
3689
  };
3484
3690
 
3485
- const name$14 = "generateSelectBranchDocument";
3691
+ const name$14 = "selectBranch";
3486
3692
  const mutation$T = Selector("Mutation")({
3487
- [name$14]: [{ data: $("data", "SelectBranchGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
3693
+ [name$14]: [{ data: $("data", "SelectBranchInput!") }, true]
3488
3694
  });
3489
3695
 
3490
- const generateSelectBranchDocument = {
3696
+ const selectBranch = {
3491
3697
  __proto__: null,
3492
3698
  mutation: mutation$T,
3493
3699
  name: name$14
3494
3700
  };
3495
3701
 
3496
- const name$13 = "selectBranch";
3497
- const mutation$S = Selector("Mutation")({
3498
- [name$13]: [{ data: $("data", "SelectBranchInput!") }, true]
3499
- });
3500
-
3501
- const selectBranch = {
3502
- __proto__: null,
3503
- mutation: mutation$S,
3504
- name: name$13
3505
- };
3506
-
3507
3702
  const index$o = {
3508
3703
  __proto__: null,
3509
3704
  AddTrustedAccount: addTrustedAccount,
@@ -3515,259 +3710,259 @@ const index$o = {
3515
3710
  SelectBranch: selectBranch
3516
3711
  };
3517
3712
 
3518
- const name$12 = "acceptChildOrder";
3519
- const mutation$R = Selector("Mutation")({
3520
- [name$12]: [{ data: $("data", "AcceptChildOrderInput!") }, rawTransactionSelector]
3713
+ const name$13 = "acceptChildOrder";
3714
+ const mutation$S = Selector("Mutation")({
3715
+ [name$13]: [{ data: $("data", "AcceptChildOrderInput!") }, rawTransactionSelector]
3521
3716
  });
3522
3717
 
3523
3718
  const acceptChildOrder = {
3719
+ __proto__: null,
3720
+ mutation: mutation$S,
3721
+ name: name$13
3722
+ };
3723
+
3724
+ const name$12 = "cancelRequest";
3725
+ const mutation$R = Selector("Mutation")({
3726
+ [name$12]: [{ data: $("data", "CancelRequestInput!") }, rawTransactionSelector]
3727
+ });
3728
+
3729
+ const cancelRequest = {
3524
3730
  __proto__: null,
3525
3731
  mutation: mutation$R,
3526
3732
  name: name$12
3527
3733
  };
3528
3734
 
3529
- const name$11 = "cancelRequest";
3735
+ const name$11 = "confirmReceiveOnRequest";
3530
3736
  const mutation$Q = Selector("Mutation")({
3531
- [name$11]: [{ data: $("data", "CancelRequestInput!") }, rawTransactionSelector]
3737
+ [name$11]: [{ data: $("data", "ConfirmReceiveOnRequestInput!") }, rawTransactionSelector]
3532
3738
  });
3533
3739
 
3534
- const cancelRequest = {
3740
+ const completeReceiveOnRequest = {
3535
3741
  __proto__: null,
3536
3742
  mutation: mutation$Q,
3537
3743
  name: name$11
3538
3744
  };
3539
3745
 
3540
- const name$10 = "confirmReceiveOnRequest";
3746
+ const name$10 = "completeRequest";
3541
3747
  const mutation$P = Selector("Mutation")({
3542
- [name$10]: [{ data: $("data", "ConfirmReceiveOnRequestInput!") }, rawTransactionSelector]
3748
+ [name$10]: [{ data: $("data", "CompleteRequestInput!") }, rawTransactionSelector]
3543
3749
  });
3544
3750
 
3545
- const completeReceiveOnRequest = {
3751
+ const completeRequest = {
3546
3752
  __proto__: null,
3547
3753
  mutation: mutation$P,
3548
3754
  name: name$10
3549
3755
  };
3550
3756
 
3551
- const name$$ = "completeRequest";
3757
+ const name$$ = "confirmSupplyOnRequest";
3552
3758
  const mutation$O = Selector("Mutation")({
3553
- [name$$]: [{ data: $("data", "CompleteRequestInput!") }, rawTransactionSelector]
3759
+ [name$$]: [{ data: $("data", "ConfirmSupplyOnRequestInput!") }, rawTransactionSelector]
3554
3760
  });
3555
3761
 
3556
- const completeRequest = {
3762
+ const confirmSupplyOnRequest = {
3557
3763
  __proto__: null,
3558
3764
  mutation: mutation$O,
3559
3765
  name: name$$
3560
3766
  };
3561
3767
 
3562
- const name$_ = "confirmSupplyOnRequest";
3768
+ const name$_ = "createChildOrder";
3563
3769
  const mutation$N = Selector("Mutation")({
3564
- [name$_]: [{ data: $("data", "ConfirmSupplyOnRequestInput!") }, rawTransactionSelector]
3770
+ [name$_]: [{ data: $("data", "CreateChildOrderInput!") }, rawTransactionSelector]
3565
3771
  });
3566
3772
 
3567
- const confirmSupplyOnRequest = {
3773
+ const createChildOrder = {
3568
3774
  __proto__: null,
3569
3775
  mutation: mutation$N,
3570
3776
  name: name$_
3571
3777
  };
3572
3778
 
3573
- const name$Z = "createChildOrder";
3779
+ const name$Z = "createParentOffer";
3574
3780
  const mutation$M = Selector("Mutation")({
3575
- [name$Z]: [{ data: $("data", "CreateChildOrderInput!") }, rawTransactionSelector]
3781
+ [name$Z]: [{ data: $("data", "CreateParentOfferInput!") }, rawTransactionSelector]
3576
3782
  });
3577
3783
 
3578
- const createChildOrder = {
3784
+ const createParentOffer = {
3579
3785
  __proto__: null,
3580
3786
  mutation: mutation$M,
3581
3787
  name: name$Z
3582
3788
  };
3583
3789
 
3584
- const name$Y = "createParentOffer";
3790
+ const name$Y = "declineRequest";
3585
3791
  const mutation$L = Selector("Mutation")({
3586
- [name$Y]: [{ data: $("data", "CreateParentOfferInput!") }, rawTransactionSelector]
3792
+ [name$Y]: [{ data: $("data", "DeclineRequestInput!") }, rawTransactionSelector]
3587
3793
  });
3588
3794
 
3589
- const createParentOffer = {
3795
+ const declineRequest = {
3590
3796
  __proto__: null,
3591
3797
  mutation: mutation$L,
3592
3798
  name: name$Y
3593
3799
  };
3594
3800
 
3595
- const name$X = "declineRequest";
3801
+ const name$X = "deliverOnRequest";
3596
3802
  const mutation$K = Selector("Mutation")({
3597
- [name$X]: [{ data: $("data", "DeclineRequestInput!") }, rawTransactionSelector]
3803
+ [name$X]: [{ data: $("data", "DeliverOnRequestInput!") }, rawTransactionSelector]
3598
3804
  });
3599
3805
 
3600
- const declineRequest = {
3806
+ const deliverOnRequest = {
3601
3807
  __proto__: null,
3602
3808
  mutation: mutation$K,
3603
3809
  name: name$X
3604
3810
  };
3605
3811
 
3606
- const name$W = "deliverOnRequest";
3812
+ const name$W = "disputeOnRequest";
3607
3813
  const mutation$J = Selector("Mutation")({
3608
- [name$W]: [{ data: $("data", "DeliverOnRequestInput!") }, rawTransactionSelector]
3814
+ [name$W]: [{ data: $("data", "DisputeOnRequestInput!") }, rawTransactionSelector]
3609
3815
  });
3610
3816
 
3611
- const deliverOnRequest = {
3817
+ const disputeOnRequest = {
3612
3818
  __proto__: null,
3613
3819
  mutation: mutation$J,
3614
3820
  name: name$W
3615
3821
  };
3616
3822
 
3617
- const name$V = "disputeOnRequest";
3823
+ const name$V = "generateAssetContributionAct";
3618
3824
  const mutation$I = Selector("Mutation")({
3619
- [name$V]: [{ data: $("data", "DisputeOnRequestInput!") }, rawTransactionSelector]
3825
+ [name$V]: [{ data: $("data", "AssetContributionActGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
3620
3826
  });
3621
3827
 
3622
- const disputeOnRequest = {
3828
+ const generateAssetContributionAct = {
3623
3829
  __proto__: null,
3624
3830
  mutation: mutation$I,
3625
3831
  name: name$V
3626
3832
  };
3627
3833
 
3628
- const name$U = "generateAssetContributionAct";
3834
+ const name$U = "generateAssetContributionDecision";
3629
3835
  const mutation$H = Selector("Mutation")({
3630
- [name$U]: [{ data: $("data", "AssetContributionActGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
3836
+ [name$U]: [{ data: $("data", "AssetContributionDecisionGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
3631
3837
  });
3632
3838
 
3633
- const generateAssetContributionAct = {
3839
+ const generateAssetContributionDecision = {
3634
3840
  __proto__: null,
3635
3841
  mutation: mutation$H,
3636
3842
  name: name$U
3637
3843
  };
3638
3844
 
3639
- const name$T = "generateAssetContributionDecision";
3845
+ const name$T = "generateAssetContributionStatement";
3640
3846
  const mutation$G = Selector("Mutation")({
3641
- [name$T]: [{ data: $("data", "AssetContributionDecisionGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
3847
+ [name$T]: [{ data: $("data", "AssetContributionStatementGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
3642
3848
  });
3643
3849
 
3644
- const generateAssetContributionDecision = {
3850
+ const generateAssetContributionStatement = {
3645
3851
  __proto__: null,
3646
3852
  mutation: mutation$G,
3647
3853
  name: name$T
3648
3854
  };
3649
3855
 
3650
- const name$S = "generateAssetContributionStatement";
3856
+ const name$S = "generateReturnByAssetAct";
3651
3857
  const mutation$F = Selector("Mutation")({
3652
- [name$S]: [{ data: $("data", "AssetContributionStatementGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
3858
+ [name$S]: [{ data: $("data", "ReturnByAssetActGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
3653
3859
  });
3654
3860
 
3655
- const generateAssetContributionStatement = {
3861
+ const generateReturnByAssetAct = {
3656
3862
  __proto__: null,
3657
3863
  mutation: mutation$F,
3658
3864
  name: name$S
3659
3865
  };
3660
3866
 
3661
- const name$R = "generateReturnByAssetAct";
3867
+ const name$R = "generateReturnByAssetDecision";
3662
3868
  const mutation$E = Selector("Mutation")({
3663
- [name$R]: [{ data: $("data", "ReturnByAssetActGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
3869
+ [name$R]: [{ data: $("data", "ReturnByAssetDecisionGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
3664
3870
  });
3665
3871
 
3666
- const generateReturnByAssetAct = {
3872
+ const generateReturnByAssetDecision = {
3667
3873
  __proto__: null,
3668
3874
  mutation: mutation$E,
3669
3875
  name: name$R
3670
3876
  };
3671
3877
 
3672
- const name$Q = "generateReturnByAssetDecision";
3878
+ const name$Q = "generateReturnByAssetStatement";
3673
3879
  const mutation$D = Selector("Mutation")({
3674
- [name$Q]: [{ data: $("data", "ReturnByAssetDecisionGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
3880
+ [name$Q]: [{ data: $("data", "ReturnByAssetStatementGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
3675
3881
  });
3676
3882
 
3677
- const generateReturnByAssetDecision = {
3883
+ const generateReturnByAssetStatement = {
3678
3884
  __proto__: null,
3679
3885
  mutation: mutation$D,
3680
3886
  name: name$Q
3681
3887
  };
3682
3888
 
3683
- const name$P = "generateReturnByAssetStatement";
3889
+ const name$P = "moderateRequest";
3684
3890
  const mutation$C = Selector("Mutation")({
3685
- [name$P]: [{ data: $("data", "ReturnByAssetStatementGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
3891
+ [name$P]: [{ data: $("data", "ModerateRequestInput!") }, rawTransactionSelector]
3686
3892
  });
3687
3893
 
3688
- const generateReturnByAssetStatement = {
3894
+ const moderateRequest = {
3689
3895
  __proto__: null,
3690
3896
  mutation: mutation$C,
3691
3897
  name: name$P
3692
3898
  };
3693
3899
 
3694
- const name$O = "moderateRequest";
3900
+ const name$O = "prohibitRequest";
3695
3901
  const mutation$B = Selector("Mutation")({
3696
- [name$O]: [{ data: $("data", "ModerateRequestInput!") }, rawTransactionSelector]
3902
+ [name$O]: [{ data: $("data", "ProhibitRequestInput!") }, rawTransactionSelector]
3697
3903
  });
3698
3904
 
3699
- const moderateRequest = {
3905
+ const prohibitRequest = {
3700
3906
  __proto__: null,
3701
3907
  mutation: mutation$B,
3702
3908
  name: name$O
3703
3909
  };
3704
3910
 
3705
- const name$N = "prohibitRequest";
3911
+ const name$N = "publishRequest";
3706
3912
  const mutation$A = Selector("Mutation")({
3707
- [name$N]: [{ data: $("data", "ProhibitRequestInput!") }, rawTransactionSelector]
3913
+ [name$N]: [{ data: $("data", "PublishRequestInput!") }, rawTransactionSelector]
3708
3914
  });
3709
3915
 
3710
- const prohibitRequest = {
3916
+ const publishRequest = {
3711
3917
  __proto__: null,
3712
3918
  mutation: mutation$A,
3713
3919
  name: name$N
3714
3920
  };
3715
3921
 
3716
- const name$M = "publishRequest";
3922
+ const name$M = "receiveOnRequest";
3717
3923
  const mutation$z = Selector("Mutation")({
3718
- [name$M]: [{ data: $("data", "PublishRequestInput!") }, rawTransactionSelector]
3924
+ [name$M]: [{ data: $("data", "ReceiveOnRequestInput!") }, rawTransactionSelector]
3719
3925
  });
3720
3926
 
3721
- const publishRequest = {
3927
+ const receiveOnRequest = {
3722
3928
  __proto__: null,
3723
3929
  mutation: mutation$z,
3724
3930
  name: name$M
3725
3931
  };
3726
3932
 
3727
- const name$L = "receiveOnRequest";
3933
+ const name$L = "supplyOnRequest";
3728
3934
  const mutation$y = Selector("Mutation")({
3729
- [name$L]: [{ data: $("data", "ReceiveOnRequestInput!") }, rawTransactionSelector]
3935
+ [name$L]: [{ data: $("data", "SupplyOnRequestInput!") }, rawTransactionSelector]
3730
3936
  });
3731
3937
 
3732
- const receiveOnRequest = {
3938
+ const supplyOnRequest = {
3733
3939
  __proto__: null,
3734
3940
  mutation: mutation$y,
3735
3941
  name: name$L
3736
3942
  };
3737
3943
 
3738
- const name$K = "supplyOnRequest";
3944
+ const name$K = "unpublishRequest";
3739
3945
  const mutation$x = Selector("Mutation")({
3740
- [name$K]: [{ data: $("data", "SupplyOnRequestInput!") }, rawTransactionSelector]
3946
+ [name$K]: [{ data: $("data", "UnpublishRequestInput!") }, rawTransactionSelector]
3741
3947
  });
3742
3948
 
3743
- const supplyOnRequest = {
3949
+ const unpublishRequest = {
3744
3950
  __proto__: null,
3745
3951
  mutation: mutation$x,
3746
3952
  name: name$K
3747
3953
  };
3748
3954
 
3749
- const name$J = "unpublishRequest";
3955
+ const name$J = "updateRequest";
3750
3956
  const mutation$w = Selector("Mutation")({
3751
- [name$J]: [{ data: $("data", "UnpublishRequestInput!") }, rawTransactionSelector]
3957
+ [name$J]: [{ data: $("data", "UpdateRequestInput!") }, rawTransactionSelector]
3752
3958
  });
3753
3959
 
3754
- const unpublishRequest = {
3960
+ const updateRequest = {
3755
3961
  __proto__: null,
3756
3962
  mutation: mutation$w,
3757
3963
  name: name$J
3758
3964
  };
3759
3965
 
3760
- const name$I = "updateRequest";
3761
- const mutation$v = Selector("Mutation")({
3762
- [name$I]: [{ data: $("data", "UpdateRequestInput!") }, rawTransactionSelector]
3763
- });
3764
-
3765
- const updateRequest = {
3766
- __proto__: null,
3767
- mutation: mutation$v,
3768
- name: name$I
3769
- };
3770
-
3771
3966
  const index$n = {
3772
3967
  __proto__: null,
3773
3968
  AcceptChildOrder: acceptChildOrder,
@@ -3795,37 +3990,37 @@ const index$n = {
3795
3990
  UpdateRequest: updateRequest
3796
3991
  };
3797
3992
 
3798
- const name$H = "installExtension";
3799
- const mutation$u = Selector("Mutation")({
3800
- [name$H]: [{ data: $("data", "ExtensionInput!") }, extensionSelector]
3993
+ const name$I = "installExtension";
3994
+ const mutation$v = Selector("Mutation")({
3995
+ [name$I]: [{ data: $("data", "ExtensionInput!") }, extensionSelector]
3801
3996
  });
3802
3997
 
3803
3998
  const installExtension = {
3804
3999
  __proto__: null,
3805
- mutation: mutation$u,
3806
- name: name$H
4000
+ mutation: mutation$v,
4001
+ name: name$I
3807
4002
  };
3808
4003
 
3809
- const name$G = "uninstallExtension";
3810
- const mutation$t = Selector("Mutation")({
3811
- [name$G]: [{ data: $("data", "UninstallExtensionInput!") }, true]
4004
+ const name$H = "uninstallExtension";
4005
+ const mutation$u = Selector("Mutation")({
4006
+ [name$H]: [{ data: $("data", "UninstallExtensionInput!") }, true]
3812
4007
  });
3813
4008
 
3814
4009
  const uninstallExtension = {
3815
4010
  __proto__: null,
3816
- mutation: mutation$t,
3817
- name: name$G
4011
+ mutation: mutation$u,
4012
+ name: name$H
3818
4013
  };
3819
4014
 
3820
- const name$F = "updateExtension";
3821
- const mutation$s = Selector("Mutation")({
3822
- [name$F]: [{ data: $("data", "ExtensionInput!") }, extensionSelector]
4015
+ const name$G = "updateExtension";
4016
+ const mutation$t = Selector("Mutation")({
4017
+ [name$G]: [{ data: $("data", "ExtensionInput!") }, extensionSelector]
3823
4018
  });
3824
4019
 
3825
4020
  const updateExtension = {
3826
4021
  __proto__: null,
3827
- mutation: mutation$s,
3828
- name: name$F
4022
+ mutation: mutation$t,
4023
+ name: name$G
3829
4024
  };
3830
4025
 
3831
4026
  const index$m = {
@@ -3835,48 +4030,48 @@ const index$m = {
3835
4030
  UpdateExtension: updateExtension
3836
4031
  };
3837
4032
 
3838
- const name$E = "generateProjectOfFreeDecision";
3839
- const mutation$r = Selector("Mutation")({
3840
- [name$E]: [{ data: $("data", "ProjectFreeDecisionGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
4033
+ const name$F = "generateProjectOfFreeDecision";
4034
+ const mutation$s = Selector("Mutation")({
4035
+ [name$F]: [{ data: $("data", "ProjectFreeDecisionGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
3841
4036
  });
3842
4037
 
3843
4038
  const generateProjectOfFreeDecisionDocument = {
3844
4039
  __proto__: null,
3845
- mutation: mutation$r,
3846
- name: name$E
4040
+ mutation: mutation$s,
4041
+ name: name$F
3847
4042
  };
3848
4043
 
3849
- const name$D = "generateFreeDecision";
3850
- const mutation$q = Selector("Mutation")({
3851
- [name$D]: [{ data: $("data", "FreeDecisionGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
4044
+ const name$E = "generateFreeDecision";
4045
+ const mutation$r = Selector("Mutation")({
4046
+ [name$E]: [{ data: $("data", "FreeDecisionGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
3852
4047
  });
3853
4048
 
3854
4049
  const generateFreeDecision = {
3855
4050
  __proto__: null,
3856
- mutation: mutation$q,
3857
- name: name$D
4051
+ mutation: mutation$r,
4052
+ name: name$E
3858
4053
  };
3859
4054
 
3860
- const name$C = "publishProjectOfFreeDecision";
3861
- const mutation$p = Selector("Mutation")({
3862
- [name$C]: [{ data: $("data", "PublishProjectFreeDecisionInput!") }, true]
4055
+ const name$D = "publishProjectOfFreeDecision";
4056
+ const mutation$q = Selector("Mutation")({
4057
+ [name$D]: [{ data: $("data", "PublishProjectFreeDecisionInput!") }, true]
3863
4058
  });
3864
4059
 
3865
4060
  const publishProjectOfFreeDecision = {
3866
4061
  __proto__: null,
3867
- mutation: mutation$p,
3868
- name: name$C
4062
+ mutation: mutation$q,
4063
+ name: name$D
3869
4064
  };
3870
4065
 
3871
- const name$B = "createProjectOfFreeDecision";
3872
- const mutation$o = Selector("Mutation")({
3873
- [name$B]: [{ data: $("data", "CreateProjectFreeDecisionInput!") }, createdProjectFreeDecisionSelector]
4066
+ const name$C = "createProjectOfFreeDecision";
4067
+ const mutation$p = Selector("Mutation")({
4068
+ [name$C]: [{ data: $("data", "CreateProjectFreeDecisionInput!") }, createdProjectFreeDecisionSelector]
3874
4069
  });
3875
4070
 
3876
4071
  const createProjectOfFreeDecision = {
3877
4072
  __proto__: null,
3878
- mutation: mutation$o,
3879
- name: name$B
4073
+ mutation: mutation$p,
4074
+ name: name$C
3880
4075
  };
3881
4076
 
3882
4077
  const index$l = {
@@ -3887,94 +4082,105 @@ const index$l = {
3887
4082
  PublishProjectOfFreeDecision: publishProjectOfFreeDecision
3888
4083
  };
3889
4084
 
3890
- const name$A = "createAnnualGeneralMeet";
3891
- const mutation$n = Selector("Mutation")({
3892
- [name$A]: [{ data: $("data", "CreateAnnualGeneralMeetInput!") }, meetAggregateSelector]
4085
+ const name$B = "createAnnualGeneralMeet";
4086
+ const mutation$o = Selector("Mutation")({
4087
+ [name$B]: [{ data: $("data", "CreateAnnualGeneralMeetInput!") }, meetAggregateSelector]
3893
4088
  });
3894
4089
 
3895
4090
  const createAnnualGeneralMeet = {
4091
+ __proto__: null,
4092
+ mutation: mutation$o,
4093
+ name: name$B
4094
+ };
4095
+
4096
+ const name$A = "generateAnnualGeneralMeetAgendaDocument";
4097
+ const mutation$n = Selector("Mutation")({
4098
+ [name$A]: [
4099
+ {
4100
+ data: $("data", "AnnualGeneralMeetingAgendaGenerateDocumentInput!"),
4101
+ options: $("options", "GenerateDocumentOptionsInput")
4102
+ },
4103
+ documentSelector
4104
+ ]
4105
+ });
4106
+
4107
+ const generateAnnualGeneralMeetAgendaDocument = {
3896
4108
  __proto__: null,
3897
4109
  mutation: mutation$n,
3898
4110
  name: name$A
3899
4111
  };
3900
4112
 
3901
- const name$z = "generateAnnualGeneralMeetAgendaDocument";
4113
+ const name$z = "generateAnnualGeneralMeetDecisionDocument";
3902
4114
  const mutation$m = Selector("Mutation")({
3903
4115
  [name$z]: [
3904
4116
  {
3905
- data: $("data", "AnnualGeneralMeetingAgendaGenerateDocumentInput!"),
4117
+ data: $("data", "AnnualGeneralMeetingDecisionGenerateDocumentInput!"),
3906
4118
  options: $("options", "GenerateDocumentOptionsInput")
3907
4119
  },
3908
4120
  documentSelector
3909
4121
  ]
3910
4122
  });
3911
4123
 
3912
- const generateAnnualGeneralMeetAgendaDocument = {
4124
+ const generateAnnualGeneralMeetDecisionDocument = {
3913
4125
  __proto__: null,
3914
4126
  mutation: mutation$m,
3915
4127
  name: name$z
3916
4128
  };
3917
4129
 
3918
- const name$y = "generateAnnualGeneralMeetDecisionDocument";
4130
+ const name$y = "generateAnnualGeneralMeetNotificationDocument";
3919
4131
  const mutation$l = Selector("Mutation")({
3920
4132
  [name$y]: [
3921
4133
  {
3922
- data: $("data", "AnnualGeneralMeetingDecisionGenerateDocumentInput!"),
4134
+ data: $("data", "AnnualGeneralMeetingNotificationGenerateDocumentInput!"),
3923
4135
  options: $("options", "GenerateDocumentOptionsInput")
3924
4136
  },
3925
4137
  documentSelector
3926
4138
  ]
3927
4139
  });
3928
4140
 
3929
- const generateAnnualGeneralMeetDecisionDocument = {
4141
+ const generateAnnualGeneralMeetNotificationDocument = {
3930
4142
  __proto__: null,
3931
4143
  mutation: mutation$l,
3932
4144
  name: name$y
3933
4145
  };
3934
4146
 
3935
- const name$x = "generateAnnualGeneralMeetNotificationDocument";
4147
+ const name$x = "generateBallotForAnnualGeneralMeetDocument";
3936
4148
  const mutation$k = Selector("Mutation")({
3937
4149
  [name$x]: [
3938
4150
  {
3939
- data: $("data", "AnnualGeneralMeetingNotificationGenerateDocumentInput!"),
4151
+ data: $("data", "AnnualGeneralMeetingVotingBallotGenerateDocumentInput!"),
3940
4152
  options: $("options", "GenerateDocumentOptionsInput")
3941
4153
  },
3942
4154
  documentSelector
3943
4155
  ]
3944
4156
  });
3945
4157
 
3946
- const generateAnnualGeneralMeetNotificationDocument = {
4158
+ const generateBallotForAnnualGeneralMeetDocument = {
3947
4159
  __proto__: null,
3948
4160
  mutation: mutation$k,
3949
4161
  name: name$x
3950
4162
  };
3951
4163
 
3952
- const name$w = "generateBallotForAnnualGeneralMeetDocument";
4164
+ const name$w = "generateSovietDecisionOnAnnualMeetDocument";
3953
4165
  const mutation$j = Selector("Mutation")({
3954
- [name$w]: [
3955
- {
3956
- data: $("data", "AnnualGeneralMeetingVotingBallotGenerateDocumentInput!"),
3957
- options: $("options", "GenerateDocumentOptionsInput")
3958
- },
3959
- documentSelector
3960
- ]
4166
+ [name$w]: [{
4167
+ data: $("data", "AnnualGeneralMeetingSovietDecisionGenerateDocumentInput!"),
4168
+ options: $("options", "GenerateDocumentOptionsInput")
4169
+ }, documentSelector]
3961
4170
  });
3962
4171
 
3963
- const generateBallotForAnnualGeneralMeetDocument = {
4172
+ const generateSovietDecisionOnAnnualMeetDocument = {
3964
4173
  __proto__: null,
3965
4174
  mutation: mutation$j,
3966
4175
  name: name$w
3967
4176
  };
3968
4177
 
3969
- const name$v = "generateSovietDecisionOnAnnualMeetDocument";
4178
+ const name$v = "notifyOnAnnualGeneralMeet";
3970
4179
  const mutation$i = Selector("Mutation")({
3971
- [name$v]: [{
3972
- data: $("data", "AnnualGeneralMeetingSovietDecisionGenerateDocumentInput!"),
3973
- options: $("options", "GenerateDocumentOptionsInput")
3974
- }, documentSelector]
4180
+ [name$v]: [{ data: $("data", "NotifyOnAnnualGeneralMeetInput!") }, meetAggregateSelector]
3975
4181
  });
3976
4182
 
3977
- const generateSovietDecisionOnAnnualMeetDocument = {
4183
+ const notifyOnAnnualGeneralMeet = {
3978
4184
  __proto__: null,
3979
4185
  mutation: mutation$i,
3980
4186
  name: name$v
@@ -4032,6 +4238,7 @@ const index$k = {
4032
4238
  GenerateAnnualGeneralMeetNotificationDocument: generateAnnualGeneralMeetNotificationDocument,
4033
4239
  GenerateBallotForAnnualGeneralMeetDocument: generateBallotForAnnualGeneralMeetDocument,
4034
4240
  GenerateSovietDecisionOnAnnualMeetDocument: generateSovietDecisionOnAnnualMeetDocument,
4241
+ NotifyOnAnnualGeneralMeet: notifyOnAnnualGeneralMeet,
4035
4242
  RestartAnnualGeneralMeet: restartAnnualGeneralMeet,
4036
4243
  SignByPresiderOnAnnualGeneralMeet: signByPresiderOnAnnualGeneralMeet,
4037
4244
  SignBySecretaryOnAnnualGeneralMeet: signBySecretaryOnAnnualGeneralMeet,
@@ -4313,18 +4520,18 @@ const rawBlockchainDecisionSelector = {
4313
4520
  callback_contract: true,
4314
4521
  confirm_callback: true,
4315
4522
  decline_callback: true,
4316
- hash: true
4523
+ hash: true,
4524
+ username_certificate: rawUserCertificateUnionSelector,
4525
+ votes_for_certificates: rawUserCertificateUnionSelector,
4526
+ votes_against_certificates: rawUserCertificateUnionSelector
4317
4527
  };
4318
4528
  Selector("BlockchainDecision")(rawBlockchainDecisionSelector);
4319
4529
 
4320
4530
  const rawExtendedBlockchainActionSelector = {
4321
4531
  ...rawBlockchainActionSelector,
4322
- user: {
4323
- "...on Entrepreneur": rawEntrepreneurSelector,
4324
- "...on Individual": rawIndividualSelector,
4325
- "...on Organization": rawOrganizationSelector
4326
- }
4532
+ actor_certificate: rawUserCertificateUnionSelector
4327
4533
  };
4534
+
4328
4535
  const rawActDetailAggregateSelector = {
4329
4536
  action: rawExtendedBlockchainActionSelector,
4330
4537
  documentAggregate: rawDocumentAggregateSelector
@@ -4654,8 +4861,8 @@ const _Client = class _Client {
4654
4861
  signature
4655
4862
  }
4656
4863
  };
4657
- const { [name$1a]: result } = await this.thunder("mutation")(
4658
- mutation$Z,
4864
+ const { [name$1b]: result } = await this.thunder("mutation")(
4865
+ mutation$_,
4659
4866
  {
4660
4867
  variables
4661
4868
  }