@coopenomics/sdk 2025.11.14-alpha-2 → 2025.11.15-alpha-1

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
@@ -3719,9 +3719,11 @@ const ReturnTypes = {
3719
3719
  cooperator_account: "CooperativeOperatorAccount",
3720
3720
  coopname: "String",
3721
3721
  is_providered: "Boolean",
3722
+ is_unioned: "Boolean",
3722
3723
  settings: "Settings",
3723
3724
  symbols: "Symbols",
3724
3725
  system_status: "SystemStatus",
3726
+ union_link: "String",
3725
3727
  vars: "Vars"
3726
3728
  },
3727
3729
  Token: {
@@ -3774,6 +3776,7 @@ const ReturnTypes = {
3774
3776
  privacy_agreement: "AgreementVar",
3775
3777
  short_abbr: "String",
3776
3778
  signature_agreement: "AgreementVar",
3779
+ statute_link: "String",
3777
3780
  user_agreement: "AgreementVar",
3778
3781
  wallet_agreement: "AgreementVar",
3779
3782
  website: "String"
@@ -6130,6 +6133,7 @@ const rawVarsSelector = {
6130
6133
  name: true,
6131
6134
  participant_application: rawAgreementVarSelector,
6132
6135
  passport_request: true,
6136
+ statute_link: true,
6133
6137
  privacy_agreement: rawAgreementVarSelector,
6134
6138
  short_abbr: true,
6135
6139
  signature_agreement: rawAgreementVarSelector,
@@ -6153,6 +6157,8 @@ const rawSystemInfoSelector = {
6153
6157
  blockchain_account: rawBlockchainAccountSelector,
6154
6158
  system_status: true,
6155
6159
  is_providered: true,
6160
+ is_unioned: true,
6161
+ union_link: true,
6156
6162
  contacts: rawContactsSelector,
6157
6163
  vars: rawVarsSelector,
6158
6164
  symbols: rawSymbolsSelector,
package/dist/index.d.cts CHANGED
@@ -6381,10 +6381,11 @@ type ValueTypes = {
6381
6381
  full_abbr_genitive: string | Variable<any, string>;
6382
6382
  name: string | Variable<any, string>;
6383
6383
  participant_application: ValueTypes["AgreementVarInput"] | Variable<any, string>;
6384
- passport_request: string | Variable<any, string>;
6384
+ passport_request?: string | undefined | null | Variable<any, string>;
6385
6385
  privacy_agreement: ValueTypes["AgreementVarInput"] | Variable<any, string>;
6386
6386
  short_abbr: string | Variable<any, string>;
6387
6387
  signature_agreement: ValueTypes["AgreementVarInput"] | Variable<any, string>;
6388
+ statute_link: string | Variable<any, string>;
6388
6389
  user_agreement: ValueTypes["AgreementVarInput"] | Variable<any, string>;
6389
6390
  wallet_agreement: ValueTypes["AgreementVarInput"] | Variable<any, string>;
6390
6391
  website: string | Variable<any, string>;
@@ -6617,12 +6618,16 @@ type ValueTypes = {
6617
6618
  coopname?: boolean | `@${string}`;
6618
6619
  /** Доступен ли функционал провайдера для подписок и запуска ПО */
6619
6620
  is_providered?: boolean | `@${string}`;
6621
+ /** Требуется ли членство в союзе кооперативов для подключения к кооперативной экономике */
6622
+ is_unioned?: boolean | `@${string}`;
6620
6623
  /** Настройки системы */
6621
6624
  settings?: ValueTypes["Settings"];
6622
6625
  /** Символы и их точности блокчейна */
6623
6626
  symbols?: ValueTypes["Symbols"];
6624
6627
  /** Статус контроллера кооператива */
6625
6628
  system_status?: boolean | `@${string}`;
6629
+ /** Ссылка на анкету для получения членства в союзе кооперативов */
6630
+ union_link?: boolean | `@${string}`;
6626
6631
  /** Переменные кооператива */
6627
6632
  vars?: ValueTypes["Vars"];
6628
6633
  __typename?: boolean | `@${string}`;
@@ -6897,6 +6902,7 @@ type ValueTypes = {
6897
6902
  privacy_agreement?: ValueTypes["AgreementVar"];
6898
6903
  short_abbr?: boolean | `@${string}`;
6899
6904
  signature_agreement?: ValueTypes["AgreementVar"];
6905
+ statute_link?: boolean | `@${string}`;
6900
6906
  user_agreement?: ValueTypes["AgreementVar"];
6901
6907
  wallet_agreement?: ValueTypes["AgreementVar"];
6902
6908
  website?: boolean | `@${string}`;
@@ -6917,6 +6923,7 @@ type ValueTypes = {
6917
6923
  privacy_agreement: ValueTypes["AgreementInput"] | Variable<any, string>;
6918
6924
  short_abbr: string | Variable<any, string>;
6919
6925
  signature_agreement: ValueTypes["AgreementInput"] | Variable<any, string>;
6926
+ statute_link: string | Variable<any, string>;
6920
6927
  user_agreement: ValueTypes["AgreementInput"] | Variable<any, string>;
6921
6928
  wallet_agreement: ValueTypes["AgreementInput"] | Variable<any, string>;
6922
6929
  website: string | Variable<any, string>;
@@ -13136,10 +13143,11 @@ type ResolverInputTypes = {
13136
13143
  full_abbr_genitive: string;
13137
13144
  name: string;
13138
13145
  participant_application: ResolverInputTypes["AgreementVarInput"];
13139
- passport_request: string;
13146
+ passport_request?: string | undefined | null;
13140
13147
  privacy_agreement: ResolverInputTypes["AgreementVarInput"];
13141
13148
  short_abbr: string;
13142
13149
  signature_agreement: ResolverInputTypes["AgreementVarInput"];
13150
+ statute_link: string;
13143
13151
  user_agreement: ResolverInputTypes["AgreementVarInput"];
13144
13152
  wallet_agreement: ResolverInputTypes["AgreementVarInput"];
13145
13153
  website: string;
@@ -13372,12 +13380,16 @@ type ResolverInputTypes = {
13372
13380
  coopname?: boolean | `@${string}`;
13373
13381
  /** Доступен ли функционал провайдера для подписок и запуска ПО */
13374
13382
  is_providered?: boolean | `@${string}`;
13383
+ /** Требуется ли членство в союзе кооперативов для подключения к кооперативной экономике */
13384
+ is_unioned?: boolean | `@${string}`;
13375
13385
  /** Настройки системы */
13376
13386
  settings?: ResolverInputTypes["Settings"];
13377
13387
  /** Символы и их точности блокчейна */
13378
13388
  symbols?: ResolverInputTypes["Symbols"];
13379
13389
  /** Статус контроллера кооператива */
13380
13390
  system_status?: boolean | `@${string}`;
13391
+ /** Ссылка на анкету для получения членства в союзе кооперативов */
13392
+ union_link?: boolean | `@${string}`;
13381
13393
  /** Переменные кооператива */
13382
13394
  vars?: ResolverInputTypes["Vars"];
13383
13395
  __typename?: boolean | `@${string}`;
@@ -13652,6 +13664,7 @@ type ResolverInputTypes = {
13652
13664
  privacy_agreement?: ResolverInputTypes["AgreementVar"];
13653
13665
  short_abbr?: boolean | `@${string}`;
13654
13666
  signature_agreement?: ResolverInputTypes["AgreementVar"];
13667
+ statute_link?: boolean | `@${string}`;
13655
13668
  user_agreement?: ResolverInputTypes["AgreementVar"];
13656
13669
  wallet_agreement?: ResolverInputTypes["AgreementVar"];
13657
13670
  website?: boolean | `@${string}`;
@@ -13672,6 +13685,7 @@ type ResolverInputTypes = {
13672
13685
  privacy_agreement: ResolverInputTypes["AgreementInput"];
13673
13686
  short_abbr: string;
13674
13687
  signature_agreement: ResolverInputTypes["AgreementInput"];
13688
+ statute_link: string;
13675
13689
  user_agreement: ResolverInputTypes["AgreementInput"];
13676
13690
  wallet_agreement: ResolverInputTypes["AgreementInput"];
13677
13691
  website: string;
@@ -19456,10 +19470,11 @@ type ModelTypes = {
19456
19470
  full_abbr_genitive: string;
19457
19471
  name: string;
19458
19472
  participant_application: ModelTypes["AgreementVarInput"];
19459
- passport_request: string;
19473
+ passport_request?: string | undefined | null;
19460
19474
  privacy_agreement: ModelTypes["AgreementVarInput"];
19461
19475
  short_abbr: string;
19462
19476
  signature_agreement: ModelTypes["AgreementVarInput"];
19477
+ statute_link: string;
19463
19478
  user_agreement: ModelTypes["AgreementVarInput"];
19464
19479
  wallet_agreement: ModelTypes["AgreementVarInput"];
19465
19480
  website: string;
@@ -19683,12 +19698,16 @@ type ModelTypes = {
19683
19698
  coopname: string;
19684
19699
  /** Доступен ли функционал провайдера для подписок и запуска ПО */
19685
19700
  is_providered: boolean;
19701
+ /** Требуется ли членство в союзе кооперативов для подключения к кооперативной экономике */
19702
+ is_unioned: boolean;
19686
19703
  /** Настройки системы */
19687
19704
  settings: ModelTypes["Settings"];
19688
19705
  /** Символы и их точности блокчейна */
19689
19706
  symbols: ModelTypes["Symbols"];
19690
19707
  /** Статус контроллера кооператива */
19691
19708
  system_status: ModelTypes["SystemStatus"];
19709
+ /** Ссылка на анкету для получения членства в союзе кооперативов */
19710
+ union_link: string;
19692
19711
  /** Переменные кооператива */
19693
19712
  vars?: ModelTypes["Vars"] | undefined | null;
19694
19713
  };
@@ -19951,6 +19970,7 @@ type ModelTypes = {
19951
19970
  privacy_agreement: ModelTypes["AgreementVar"];
19952
19971
  short_abbr: string;
19953
19972
  signature_agreement: ModelTypes["AgreementVar"];
19973
+ statute_link?: string | undefined | null;
19954
19974
  user_agreement: ModelTypes["AgreementVar"];
19955
19975
  wallet_agreement: ModelTypes["AgreementVar"];
19956
19976
  website: string;
@@ -19970,6 +19990,7 @@ type ModelTypes = {
19970
19990
  privacy_agreement: ModelTypes["AgreementInput"];
19971
19991
  short_abbr: string;
19972
19992
  signature_agreement: ModelTypes["AgreementInput"];
19993
+ statute_link: string;
19973
19994
  user_agreement: ModelTypes["AgreementInput"];
19974
19995
  wallet_agreement: ModelTypes["AgreementInput"];
19975
19996
  website: string;
@@ -25924,10 +25945,11 @@ type GraphQLTypes = {
25924
25945
  full_abbr_genitive: string;
25925
25946
  name: string;
25926
25947
  participant_application: GraphQLTypes["AgreementVarInput"];
25927
- passport_request: string;
25948
+ passport_request?: string | undefined | null;
25928
25949
  privacy_agreement: GraphQLTypes["AgreementVarInput"];
25929
25950
  short_abbr: string;
25930
25951
  signature_agreement: GraphQLTypes["AgreementVarInput"];
25952
+ statute_link: string;
25931
25953
  user_agreement: GraphQLTypes["AgreementVarInput"];
25932
25954
  wallet_agreement: GraphQLTypes["AgreementVarInput"];
25933
25955
  website: string;
@@ -26161,12 +26183,16 @@ type GraphQLTypes = {
26161
26183
  coopname: string;
26162
26184
  /** Доступен ли функционал провайдера для подписок и запуска ПО */
26163
26185
  is_providered: boolean;
26186
+ /** Требуется ли членство в союзе кооперативов для подключения к кооперативной экономике */
26187
+ is_unioned: boolean;
26164
26188
  /** Настройки системы */
26165
26189
  settings: GraphQLTypes["Settings"];
26166
26190
  /** Символы и их точности блокчейна */
26167
26191
  symbols: GraphQLTypes["Symbols"];
26168
26192
  /** Статус контроллера кооператива */
26169
26193
  system_status: GraphQLTypes["SystemStatus"];
26194
+ /** Ссылка на анкету для получения членства в союзе кооперативов */
26195
+ union_link: string;
26170
26196
  /** Переменные кооператива */
26171
26197
  vars?: GraphQLTypes["Vars"] | undefined | null;
26172
26198
  };
@@ -26441,6 +26467,7 @@ type GraphQLTypes = {
26441
26467
  privacy_agreement: GraphQLTypes["AgreementVar"];
26442
26468
  short_abbr: string;
26443
26469
  signature_agreement: GraphQLTypes["AgreementVar"];
26470
+ statute_link?: string | undefined | null;
26444
26471
  user_agreement: GraphQLTypes["AgreementVar"];
26445
26472
  wallet_agreement: GraphQLTypes["AgreementVar"];
26446
26473
  website: string;
@@ -26460,6 +26487,7 @@ type GraphQLTypes = {
26460
26487
  privacy_agreement: GraphQLTypes["AgreementInput"];
26461
26488
  short_abbr: string;
26462
26489
  signature_agreement: GraphQLTypes["AgreementInput"];
26490
+ statute_link: string;
26463
26491
  user_agreement: GraphQLTypes["AgreementInput"];
26464
26492
  wallet_agreement: GraphQLTypes["AgreementInput"];
26465
26493
  website: string;
@@ -41060,6 +41088,8 @@ declare const mutation$9: {
41060
41088
  };
41061
41089
  system_status: boolean;
41062
41090
  is_providered: boolean;
41091
+ is_unioned: boolean;
41092
+ union_link: boolean;
41063
41093
  contacts: {
41064
41094
  chairman: {
41065
41095
  first_name: boolean;
@@ -41094,6 +41124,7 @@ declare const mutation$9: {
41094
41124
  protocol_number: boolean;
41095
41125
  };
41096
41126
  passport_request: boolean;
41127
+ statute_link: boolean;
41097
41128
  privacy_agreement: {
41098
41129
  protocol_day_month_year: boolean;
41099
41130
  protocol_number: boolean;
@@ -41318,6 +41349,8 @@ declare const mutation$8: {
41318
41349
  };
41319
41350
  system_status: boolean;
41320
41351
  is_providered: boolean;
41352
+ is_unioned: boolean;
41353
+ union_link: boolean;
41321
41354
  contacts: {
41322
41355
  chairman: {
41323
41356
  first_name: boolean;
@@ -41352,6 +41385,7 @@ declare const mutation$8: {
41352
41385
  protocol_number: boolean;
41353
41386
  };
41354
41387
  passport_request: boolean;
41388
+ statute_link: boolean;
41355
41389
  privacy_agreement: {
41356
41390
  protocol_day_month_year: boolean;
41357
41391
  protocol_number: boolean;
@@ -41644,6 +41678,8 @@ declare const mutation$4: {
41644
41678
  };
41645
41679
  system_status: boolean;
41646
41680
  is_providered: boolean;
41681
+ is_unioned: boolean;
41682
+ union_link: boolean;
41647
41683
  contacts: {
41648
41684
  chairman: {
41649
41685
  first_name: boolean;
@@ -41678,6 +41714,7 @@ declare const mutation$4: {
41678
41714
  protocol_number: boolean;
41679
41715
  };
41680
41716
  passport_request: boolean;
41717
+ statute_link: boolean;
41681
41718
  privacy_agreement: {
41682
41719
  protocol_day_month_year: boolean;
41683
41720
  protocol_number: boolean;
@@ -50606,6 +50643,8 @@ declare const query: {
50606
50643
  };
50607
50644
  system_status: boolean;
50608
50645
  is_providered: boolean;
50646
+ is_unioned: boolean;
50647
+ union_link: boolean;
50609
50648
  contacts: {
50610
50649
  chairman: {
50611
50650
  first_name: boolean;
@@ -50640,6 +50679,7 @@ declare const query: {
50640
50679
  protocol_number: boolean;
50641
50680
  };
50642
50681
  passport_request: boolean;
50682
+ statute_link: boolean;
50643
50683
  privacy_agreement: {
50644
50684
  protocol_day_month_year: boolean;
50645
50685
  protocol_number: boolean;
package/dist/index.d.mts CHANGED
@@ -6381,10 +6381,11 @@ type ValueTypes = {
6381
6381
  full_abbr_genitive: string | Variable<any, string>;
6382
6382
  name: string | Variable<any, string>;
6383
6383
  participant_application: ValueTypes["AgreementVarInput"] | Variable<any, string>;
6384
- passport_request: string | Variable<any, string>;
6384
+ passport_request?: string | undefined | null | Variable<any, string>;
6385
6385
  privacy_agreement: ValueTypes["AgreementVarInput"] | Variable<any, string>;
6386
6386
  short_abbr: string | Variable<any, string>;
6387
6387
  signature_agreement: ValueTypes["AgreementVarInput"] | Variable<any, string>;
6388
+ statute_link: string | Variable<any, string>;
6388
6389
  user_agreement: ValueTypes["AgreementVarInput"] | Variable<any, string>;
6389
6390
  wallet_agreement: ValueTypes["AgreementVarInput"] | Variable<any, string>;
6390
6391
  website: string | Variable<any, string>;
@@ -6617,12 +6618,16 @@ type ValueTypes = {
6617
6618
  coopname?: boolean | `@${string}`;
6618
6619
  /** Доступен ли функционал провайдера для подписок и запуска ПО */
6619
6620
  is_providered?: boolean | `@${string}`;
6621
+ /** Требуется ли членство в союзе кооперативов для подключения к кооперативной экономике */
6622
+ is_unioned?: boolean | `@${string}`;
6620
6623
  /** Настройки системы */
6621
6624
  settings?: ValueTypes["Settings"];
6622
6625
  /** Символы и их точности блокчейна */
6623
6626
  symbols?: ValueTypes["Symbols"];
6624
6627
  /** Статус контроллера кооператива */
6625
6628
  system_status?: boolean | `@${string}`;
6629
+ /** Ссылка на анкету для получения членства в союзе кооперативов */
6630
+ union_link?: boolean | `@${string}`;
6626
6631
  /** Переменные кооператива */
6627
6632
  vars?: ValueTypes["Vars"];
6628
6633
  __typename?: boolean | `@${string}`;
@@ -6897,6 +6902,7 @@ type ValueTypes = {
6897
6902
  privacy_agreement?: ValueTypes["AgreementVar"];
6898
6903
  short_abbr?: boolean | `@${string}`;
6899
6904
  signature_agreement?: ValueTypes["AgreementVar"];
6905
+ statute_link?: boolean | `@${string}`;
6900
6906
  user_agreement?: ValueTypes["AgreementVar"];
6901
6907
  wallet_agreement?: ValueTypes["AgreementVar"];
6902
6908
  website?: boolean | `@${string}`;
@@ -6917,6 +6923,7 @@ type ValueTypes = {
6917
6923
  privacy_agreement: ValueTypes["AgreementInput"] | Variable<any, string>;
6918
6924
  short_abbr: string | Variable<any, string>;
6919
6925
  signature_agreement: ValueTypes["AgreementInput"] | Variable<any, string>;
6926
+ statute_link: string | Variable<any, string>;
6920
6927
  user_agreement: ValueTypes["AgreementInput"] | Variable<any, string>;
6921
6928
  wallet_agreement: ValueTypes["AgreementInput"] | Variable<any, string>;
6922
6929
  website: string | Variable<any, string>;
@@ -13136,10 +13143,11 @@ type ResolverInputTypes = {
13136
13143
  full_abbr_genitive: string;
13137
13144
  name: string;
13138
13145
  participant_application: ResolverInputTypes["AgreementVarInput"];
13139
- passport_request: string;
13146
+ passport_request?: string | undefined | null;
13140
13147
  privacy_agreement: ResolverInputTypes["AgreementVarInput"];
13141
13148
  short_abbr: string;
13142
13149
  signature_agreement: ResolverInputTypes["AgreementVarInput"];
13150
+ statute_link: string;
13143
13151
  user_agreement: ResolverInputTypes["AgreementVarInput"];
13144
13152
  wallet_agreement: ResolverInputTypes["AgreementVarInput"];
13145
13153
  website: string;
@@ -13372,12 +13380,16 @@ type ResolverInputTypes = {
13372
13380
  coopname?: boolean | `@${string}`;
13373
13381
  /** Доступен ли функционал провайдера для подписок и запуска ПО */
13374
13382
  is_providered?: boolean | `@${string}`;
13383
+ /** Требуется ли членство в союзе кооперативов для подключения к кооперативной экономике */
13384
+ is_unioned?: boolean | `@${string}`;
13375
13385
  /** Настройки системы */
13376
13386
  settings?: ResolverInputTypes["Settings"];
13377
13387
  /** Символы и их точности блокчейна */
13378
13388
  symbols?: ResolverInputTypes["Symbols"];
13379
13389
  /** Статус контроллера кооператива */
13380
13390
  system_status?: boolean | `@${string}`;
13391
+ /** Ссылка на анкету для получения членства в союзе кооперативов */
13392
+ union_link?: boolean | `@${string}`;
13381
13393
  /** Переменные кооператива */
13382
13394
  vars?: ResolverInputTypes["Vars"];
13383
13395
  __typename?: boolean | `@${string}`;
@@ -13652,6 +13664,7 @@ type ResolverInputTypes = {
13652
13664
  privacy_agreement?: ResolverInputTypes["AgreementVar"];
13653
13665
  short_abbr?: boolean | `@${string}`;
13654
13666
  signature_agreement?: ResolverInputTypes["AgreementVar"];
13667
+ statute_link?: boolean | `@${string}`;
13655
13668
  user_agreement?: ResolverInputTypes["AgreementVar"];
13656
13669
  wallet_agreement?: ResolverInputTypes["AgreementVar"];
13657
13670
  website?: boolean | `@${string}`;
@@ -13672,6 +13685,7 @@ type ResolverInputTypes = {
13672
13685
  privacy_agreement: ResolverInputTypes["AgreementInput"];
13673
13686
  short_abbr: string;
13674
13687
  signature_agreement: ResolverInputTypes["AgreementInput"];
13688
+ statute_link: string;
13675
13689
  user_agreement: ResolverInputTypes["AgreementInput"];
13676
13690
  wallet_agreement: ResolverInputTypes["AgreementInput"];
13677
13691
  website: string;
@@ -19456,10 +19470,11 @@ type ModelTypes = {
19456
19470
  full_abbr_genitive: string;
19457
19471
  name: string;
19458
19472
  participant_application: ModelTypes["AgreementVarInput"];
19459
- passport_request: string;
19473
+ passport_request?: string | undefined | null;
19460
19474
  privacy_agreement: ModelTypes["AgreementVarInput"];
19461
19475
  short_abbr: string;
19462
19476
  signature_agreement: ModelTypes["AgreementVarInput"];
19477
+ statute_link: string;
19463
19478
  user_agreement: ModelTypes["AgreementVarInput"];
19464
19479
  wallet_agreement: ModelTypes["AgreementVarInput"];
19465
19480
  website: string;
@@ -19683,12 +19698,16 @@ type ModelTypes = {
19683
19698
  coopname: string;
19684
19699
  /** Доступен ли функционал провайдера для подписок и запуска ПО */
19685
19700
  is_providered: boolean;
19701
+ /** Требуется ли членство в союзе кооперативов для подключения к кооперативной экономике */
19702
+ is_unioned: boolean;
19686
19703
  /** Настройки системы */
19687
19704
  settings: ModelTypes["Settings"];
19688
19705
  /** Символы и их точности блокчейна */
19689
19706
  symbols: ModelTypes["Symbols"];
19690
19707
  /** Статус контроллера кооператива */
19691
19708
  system_status: ModelTypes["SystemStatus"];
19709
+ /** Ссылка на анкету для получения членства в союзе кооперативов */
19710
+ union_link: string;
19692
19711
  /** Переменные кооператива */
19693
19712
  vars?: ModelTypes["Vars"] | undefined | null;
19694
19713
  };
@@ -19951,6 +19970,7 @@ type ModelTypes = {
19951
19970
  privacy_agreement: ModelTypes["AgreementVar"];
19952
19971
  short_abbr: string;
19953
19972
  signature_agreement: ModelTypes["AgreementVar"];
19973
+ statute_link?: string | undefined | null;
19954
19974
  user_agreement: ModelTypes["AgreementVar"];
19955
19975
  wallet_agreement: ModelTypes["AgreementVar"];
19956
19976
  website: string;
@@ -19970,6 +19990,7 @@ type ModelTypes = {
19970
19990
  privacy_agreement: ModelTypes["AgreementInput"];
19971
19991
  short_abbr: string;
19972
19992
  signature_agreement: ModelTypes["AgreementInput"];
19993
+ statute_link: string;
19973
19994
  user_agreement: ModelTypes["AgreementInput"];
19974
19995
  wallet_agreement: ModelTypes["AgreementInput"];
19975
19996
  website: string;
@@ -25924,10 +25945,11 @@ type GraphQLTypes = {
25924
25945
  full_abbr_genitive: string;
25925
25946
  name: string;
25926
25947
  participant_application: GraphQLTypes["AgreementVarInput"];
25927
- passport_request: string;
25948
+ passport_request?: string | undefined | null;
25928
25949
  privacy_agreement: GraphQLTypes["AgreementVarInput"];
25929
25950
  short_abbr: string;
25930
25951
  signature_agreement: GraphQLTypes["AgreementVarInput"];
25952
+ statute_link: string;
25931
25953
  user_agreement: GraphQLTypes["AgreementVarInput"];
25932
25954
  wallet_agreement: GraphQLTypes["AgreementVarInput"];
25933
25955
  website: string;
@@ -26161,12 +26183,16 @@ type GraphQLTypes = {
26161
26183
  coopname: string;
26162
26184
  /** Доступен ли функционал провайдера для подписок и запуска ПО */
26163
26185
  is_providered: boolean;
26186
+ /** Требуется ли членство в союзе кооперативов для подключения к кооперативной экономике */
26187
+ is_unioned: boolean;
26164
26188
  /** Настройки системы */
26165
26189
  settings: GraphQLTypes["Settings"];
26166
26190
  /** Символы и их точности блокчейна */
26167
26191
  symbols: GraphQLTypes["Symbols"];
26168
26192
  /** Статус контроллера кооператива */
26169
26193
  system_status: GraphQLTypes["SystemStatus"];
26194
+ /** Ссылка на анкету для получения членства в союзе кооперативов */
26195
+ union_link: string;
26170
26196
  /** Переменные кооператива */
26171
26197
  vars?: GraphQLTypes["Vars"] | undefined | null;
26172
26198
  };
@@ -26441,6 +26467,7 @@ type GraphQLTypes = {
26441
26467
  privacy_agreement: GraphQLTypes["AgreementVar"];
26442
26468
  short_abbr: string;
26443
26469
  signature_agreement: GraphQLTypes["AgreementVar"];
26470
+ statute_link?: string | undefined | null;
26444
26471
  user_agreement: GraphQLTypes["AgreementVar"];
26445
26472
  wallet_agreement: GraphQLTypes["AgreementVar"];
26446
26473
  website: string;
@@ -26460,6 +26487,7 @@ type GraphQLTypes = {
26460
26487
  privacy_agreement: GraphQLTypes["AgreementInput"];
26461
26488
  short_abbr: string;
26462
26489
  signature_agreement: GraphQLTypes["AgreementInput"];
26490
+ statute_link: string;
26463
26491
  user_agreement: GraphQLTypes["AgreementInput"];
26464
26492
  wallet_agreement: GraphQLTypes["AgreementInput"];
26465
26493
  website: string;
@@ -41060,6 +41088,8 @@ declare const mutation$9: {
41060
41088
  };
41061
41089
  system_status: boolean;
41062
41090
  is_providered: boolean;
41091
+ is_unioned: boolean;
41092
+ union_link: boolean;
41063
41093
  contacts: {
41064
41094
  chairman: {
41065
41095
  first_name: boolean;
@@ -41094,6 +41124,7 @@ declare const mutation$9: {
41094
41124
  protocol_number: boolean;
41095
41125
  };
41096
41126
  passport_request: boolean;
41127
+ statute_link: boolean;
41097
41128
  privacy_agreement: {
41098
41129
  protocol_day_month_year: boolean;
41099
41130
  protocol_number: boolean;
@@ -41318,6 +41349,8 @@ declare const mutation$8: {
41318
41349
  };
41319
41350
  system_status: boolean;
41320
41351
  is_providered: boolean;
41352
+ is_unioned: boolean;
41353
+ union_link: boolean;
41321
41354
  contacts: {
41322
41355
  chairman: {
41323
41356
  first_name: boolean;
@@ -41352,6 +41385,7 @@ declare const mutation$8: {
41352
41385
  protocol_number: boolean;
41353
41386
  };
41354
41387
  passport_request: boolean;
41388
+ statute_link: boolean;
41355
41389
  privacy_agreement: {
41356
41390
  protocol_day_month_year: boolean;
41357
41391
  protocol_number: boolean;
@@ -41644,6 +41678,8 @@ declare const mutation$4: {
41644
41678
  };
41645
41679
  system_status: boolean;
41646
41680
  is_providered: boolean;
41681
+ is_unioned: boolean;
41682
+ union_link: boolean;
41647
41683
  contacts: {
41648
41684
  chairman: {
41649
41685
  first_name: boolean;
@@ -41678,6 +41714,7 @@ declare const mutation$4: {
41678
41714
  protocol_number: boolean;
41679
41715
  };
41680
41716
  passport_request: boolean;
41717
+ statute_link: boolean;
41681
41718
  privacy_agreement: {
41682
41719
  protocol_day_month_year: boolean;
41683
41720
  protocol_number: boolean;
@@ -50606,6 +50643,8 @@ declare const query: {
50606
50643
  };
50607
50644
  system_status: boolean;
50608
50645
  is_providered: boolean;
50646
+ is_unioned: boolean;
50647
+ union_link: boolean;
50609
50648
  contacts: {
50610
50649
  chairman: {
50611
50650
  first_name: boolean;
@@ -50640,6 +50679,7 @@ declare const query: {
50640
50679
  protocol_number: boolean;
50641
50680
  };
50642
50681
  passport_request: boolean;
50682
+ statute_link: boolean;
50643
50683
  privacy_agreement: {
50644
50684
  protocol_day_month_year: boolean;
50645
50685
  protocol_number: boolean;
package/dist/index.d.ts CHANGED
@@ -6381,10 +6381,11 @@ type ValueTypes = {
6381
6381
  full_abbr_genitive: string | Variable<any, string>;
6382
6382
  name: string | Variable<any, string>;
6383
6383
  participant_application: ValueTypes["AgreementVarInput"] | Variable<any, string>;
6384
- passport_request: string | Variable<any, string>;
6384
+ passport_request?: string | undefined | null | Variable<any, string>;
6385
6385
  privacy_agreement: ValueTypes["AgreementVarInput"] | Variable<any, string>;
6386
6386
  short_abbr: string | Variable<any, string>;
6387
6387
  signature_agreement: ValueTypes["AgreementVarInput"] | Variable<any, string>;
6388
+ statute_link: string | Variable<any, string>;
6388
6389
  user_agreement: ValueTypes["AgreementVarInput"] | Variable<any, string>;
6389
6390
  wallet_agreement: ValueTypes["AgreementVarInput"] | Variable<any, string>;
6390
6391
  website: string | Variable<any, string>;
@@ -6617,12 +6618,16 @@ type ValueTypes = {
6617
6618
  coopname?: boolean | `@${string}`;
6618
6619
  /** Доступен ли функционал провайдера для подписок и запуска ПО */
6619
6620
  is_providered?: boolean | `@${string}`;
6621
+ /** Требуется ли членство в союзе кооперативов для подключения к кооперативной экономике */
6622
+ is_unioned?: boolean | `@${string}`;
6620
6623
  /** Настройки системы */
6621
6624
  settings?: ValueTypes["Settings"];
6622
6625
  /** Символы и их точности блокчейна */
6623
6626
  symbols?: ValueTypes["Symbols"];
6624
6627
  /** Статус контроллера кооператива */
6625
6628
  system_status?: boolean | `@${string}`;
6629
+ /** Ссылка на анкету для получения членства в союзе кооперативов */
6630
+ union_link?: boolean | `@${string}`;
6626
6631
  /** Переменные кооператива */
6627
6632
  vars?: ValueTypes["Vars"];
6628
6633
  __typename?: boolean | `@${string}`;
@@ -6897,6 +6902,7 @@ type ValueTypes = {
6897
6902
  privacy_agreement?: ValueTypes["AgreementVar"];
6898
6903
  short_abbr?: boolean | `@${string}`;
6899
6904
  signature_agreement?: ValueTypes["AgreementVar"];
6905
+ statute_link?: boolean | `@${string}`;
6900
6906
  user_agreement?: ValueTypes["AgreementVar"];
6901
6907
  wallet_agreement?: ValueTypes["AgreementVar"];
6902
6908
  website?: boolean | `@${string}`;
@@ -6917,6 +6923,7 @@ type ValueTypes = {
6917
6923
  privacy_agreement: ValueTypes["AgreementInput"] | Variable<any, string>;
6918
6924
  short_abbr: string | Variable<any, string>;
6919
6925
  signature_agreement: ValueTypes["AgreementInput"] | Variable<any, string>;
6926
+ statute_link: string | Variable<any, string>;
6920
6927
  user_agreement: ValueTypes["AgreementInput"] | Variable<any, string>;
6921
6928
  wallet_agreement: ValueTypes["AgreementInput"] | Variable<any, string>;
6922
6929
  website: string | Variable<any, string>;
@@ -13136,10 +13143,11 @@ type ResolverInputTypes = {
13136
13143
  full_abbr_genitive: string;
13137
13144
  name: string;
13138
13145
  participant_application: ResolverInputTypes["AgreementVarInput"];
13139
- passport_request: string;
13146
+ passport_request?: string | undefined | null;
13140
13147
  privacy_agreement: ResolverInputTypes["AgreementVarInput"];
13141
13148
  short_abbr: string;
13142
13149
  signature_agreement: ResolverInputTypes["AgreementVarInput"];
13150
+ statute_link: string;
13143
13151
  user_agreement: ResolverInputTypes["AgreementVarInput"];
13144
13152
  wallet_agreement: ResolverInputTypes["AgreementVarInput"];
13145
13153
  website: string;
@@ -13372,12 +13380,16 @@ type ResolverInputTypes = {
13372
13380
  coopname?: boolean | `@${string}`;
13373
13381
  /** Доступен ли функционал провайдера для подписок и запуска ПО */
13374
13382
  is_providered?: boolean | `@${string}`;
13383
+ /** Требуется ли членство в союзе кооперативов для подключения к кооперативной экономике */
13384
+ is_unioned?: boolean | `@${string}`;
13375
13385
  /** Настройки системы */
13376
13386
  settings?: ResolverInputTypes["Settings"];
13377
13387
  /** Символы и их точности блокчейна */
13378
13388
  symbols?: ResolverInputTypes["Symbols"];
13379
13389
  /** Статус контроллера кооператива */
13380
13390
  system_status?: boolean | `@${string}`;
13391
+ /** Ссылка на анкету для получения членства в союзе кооперативов */
13392
+ union_link?: boolean | `@${string}`;
13381
13393
  /** Переменные кооператива */
13382
13394
  vars?: ResolverInputTypes["Vars"];
13383
13395
  __typename?: boolean | `@${string}`;
@@ -13652,6 +13664,7 @@ type ResolverInputTypes = {
13652
13664
  privacy_agreement?: ResolverInputTypes["AgreementVar"];
13653
13665
  short_abbr?: boolean | `@${string}`;
13654
13666
  signature_agreement?: ResolverInputTypes["AgreementVar"];
13667
+ statute_link?: boolean | `@${string}`;
13655
13668
  user_agreement?: ResolverInputTypes["AgreementVar"];
13656
13669
  wallet_agreement?: ResolverInputTypes["AgreementVar"];
13657
13670
  website?: boolean | `@${string}`;
@@ -13672,6 +13685,7 @@ type ResolverInputTypes = {
13672
13685
  privacy_agreement: ResolverInputTypes["AgreementInput"];
13673
13686
  short_abbr: string;
13674
13687
  signature_agreement: ResolverInputTypes["AgreementInput"];
13688
+ statute_link: string;
13675
13689
  user_agreement: ResolverInputTypes["AgreementInput"];
13676
13690
  wallet_agreement: ResolverInputTypes["AgreementInput"];
13677
13691
  website: string;
@@ -19456,10 +19470,11 @@ type ModelTypes = {
19456
19470
  full_abbr_genitive: string;
19457
19471
  name: string;
19458
19472
  participant_application: ModelTypes["AgreementVarInput"];
19459
- passport_request: string;
19473
+ passport_request?: string | undefined | null;
19460
19474
  privacy_agreement: ModelTypes["AgreementVarInput"];
19461
19475
  short_abbr: string;
19462
19476
  signature_agreement: ModelTypes["AgreementVarInput"];
19477
+ statute_link: string;
19463
19478
  user_agreement: ModelTypes["AgreementVarInput"];
19464
19479
  wallet_agreement: ModelTypes["AgreementVarInput"];
19465
19480
  website: string;
@@ -19683,12 +19698,16 @@ type ModelTypes = {
19683
19698
  coopname: string;
19684
19699
  /** Доступен ли функционал провайдера для подписок и запуска ПО */
19685
19700
  is_providered: boolean;
19701
+ /** Требуется ли членство в союзе кооперативов для подключения к кооперативной экономике */
19702
+ is_unioned: boolean;
19686
19703
  /** Настройки системы */
19687
19704
  settings: ModelTypes["Settings"];
19688
19705
  /** Символы и их точности блокчейна */
19689
19706
  symbols: ModelTypes["Symbols"];
19690
19707
  /** Статус контроллера кооператива */
19691
19708
  system_status: ModelTypes["SystemStatus"];
19709
+ /** Ссылка на анкету для получения членства в союзе кооперативов */
19710
+ union_link: string;
19692
19711
  /** Переменные кооператива */
19693
19712
  vars?: ModelTypes["Vars"] | undefined | null;
19694
19713
  };
@@ -19951,6 +19970,7 @@ type ModelTypes = {
19951
19970
  privacy_agreement: ModelTypes["AgreementVar"];
19952
19971
  short_abbr: string;
19953
19972
  signature_agreement: ModelTypes["AgreementVar"];
19973
+ statute_link?: string | undefined | null;
19954
19974
  user_agreement: ModelTypes["AgreementVar"];
19955
19975
  wallet_agreement: ModelTypes["AgreementVar"];
19956
19976
  website: string;
@@ -19970,6 +19990,7 @@ type ModelTypes = {
19970
19990
  privacy_agreement: ModelTypes["AgreementInput"];
19971
19991
  short_abbr: string;
19972
19992
  signature_agreement: ModelTypes["AgreementInput"];
19993
+ statute_link: string;
19973
19994
  user_agreement: ModelTypes["AgreementInput"];
19974
19995
  wallet_agreement: ModelTypes["AgreementInput"];
19975
19996
  website: string;
@@ -25924,10 +25945,11 @@ type GraphQLTypes = {
25924
25945
  full_abbr_genitive: string;
25925
25946
  name: string;
25926
25947
  participant_application: GraphQLTypes["AgreementVarInput"];
25927
- passport_request: string;
25948
+ passport_request?: string | undefined | null;
25928
25949
  privacy_agreement: GraphQLTypes["AgreementVarInput"];
25929
25950
  short_abbr: string;
25930
25951
  signature_agreement: GraphQLTypes["AgreementVarInput"];
25952
+ statute_link: string;
25931
25953
  user_agreement: GraphQLTypes["AgreementVarInput"];
25932
25954
  wallet_agreement: GraphQLTypes["AgreementVarInput"];
25933
25955
  website: string;
@@ -26161,12 +26183,16 @@ type GraphQLTypes = {
26161
26183
  coopname: string;
26162
26184
  /** Доступен ли функционал провайдера для подписок и запуска ПО */
26163
26185
  is_providered: boolean;
26186
+ /** Требуется ли членство в союзе кооперативов для подключения к кооперативной экономике */
26187
+ is_unioned: boolean;
26164
26188
  /** Настройки системы */
26165
26189
  settings: GraphQLTypes["Settings"];
26166
26190
  /** Символы и их точности блокчейна */
26167
26191
  symbols: GraphQLTypes["Symbols"];
26168
26192
  /** Статус контроллера кооператива */
26169
26193
  system_status: GraphQLTypes["SystemStatus"];
26194
+ /** Ссылка на анкету для получения членства в союзе кооперативов */
26195
+ union_link: string;
26170
26196
  /** Переменные кооператива */
26171
26197
  vars?: GraphQLTypes["Vars"] | undefined | null;
26172
26198
  };
@@ -26441,6 +26467,7 @@ type GraphQLTypes = {
26441
26467
  privacy_agreement: GraphQLTypes["AgreementVar"];
26442
26468
  short_abbr: string;
26443
26469
  signature_agreement: GraphQLTypes["AgreementVar"];
26470
+ statute_link?: string | undefined | null;
26444
26471
  user_agreement: GraphQLTypes["AgreementVar"];
26445
26472
  wallet_agreement: GraphQLTypes["AgreementVar"];
26446
26473
  website: string;
@@ -26460,6 +26487,7 @@ type GraphQLTypes = {
26460
26487
  privacy_agreement: GraphQLTypes["AgreementInput"];
26461
26488
  short_abbr: string;
26462
26489
  signature_agreement: GraphQLTypes["AgreementInput"];
26490
+ statute_link: string;
26463
26491
  user_agreement: GraphQLTypes["AgreementInput"];
26464
26492
  wallet_agreement: GraphQLTypes["AgreementInput"];
26465
26493
  website: string;
@@ -41060,6 +41088,8 @@ declare const mutation$9: {
41060
41088
  };
41061
41089
  system_status: boolean;
41062
41090
  is_providered: boolean;
41091
+ is_unioned: boolean;
41092
+ union_link: boolean;
41063
41093
  contacts: {
41064
41094
  chairman: {
41065
41095
  first_name: boolean;
@@ -41094,6 +41124,7 @@ declare const mutation$9: {
41094
41124
  protocol_number: boolean;
41095
41125
  };
41096
41126
  passport_request: boolean;
41127
+ statute_link: boolean;
41097
41128
  privacy_agreement: {
41098
41129
  protocol_day_month_year: boolean;
41099
41130
  protocol_number: boolean;
@@ -41318,6 +41349,8 @@ declare const mutation$8: {
41318
41349
  };
41319
41350
  system_status: boolean;
41320
41351
  is_providered: boolean;
41352
+ is_unioned: boolean;
41353
+ union_link: boolean;
41321
41354
  contacts: {
41322
41355
  chairman: {
41323
41356
  first_name: boolean;
@@ -41352,6 +41385,7 @@ declare const mutation$8: {
41352
41385
  protocol_number: boolean;
41353
41386
  };
41354
41387
  passport_request: boolean;
41388
+ statute_link: boolean;
41355
41389
  privacy_agreement: {
41356
41390
  protocol_day_month_year: boolean;
41357
41391
  protocol_number: boolean;
@@ -41644,6 +41678,8 @@ declare const mutation$4: {
41644
41678
  };
41645
41679
  system_status: boolean;
41646
41680
  is_providered: boolean;
41681
+ is_unioned: boolean;
41682
+ union_link: boolean;
41647
41683
  contacts: {
41648
41684
  chairman: {
41649
41685
  first_name: boolean;
@@ -41678,6 +41714,7 @@ declare const mutation$4: {
41678
41714
  protocol_number: boolean;
41679
41715
  };
41680
41716
  passport_request: boolean;
41717
+ statute_link: boolean;
41681
41718
  privacy_agreement: {
41682
41719
  protocol_day_month_year: boolean;
41683
41720
  protocol_number: boolean;
@@ -50606,6 +50643,8 @@ declare const query: {
50606
50643
  };
50607
50644
  system_status: boolean;
50608
50645
  is_providered: boolean;
50646
+ is_unioned: boolean;
50647
+ union_link: boolean;
50609
50648
  contacts: {
50610
50649
  chairman: {
50611
50650
  first_name: boolean;
@@ -50640,6 +50679,7 @@ declare const query: {
50640
50679
  protocol_number: boolean;
50641
50680
  };
50642
50681
  passport_request: boolean;
50682
+ statute_link: boolean;
50643
50683
  privacy_agreement: {
50644
50684
  protocol_day_month_year: boolean;
50645
50685
  protocol_number: boolean;
package/dist/index.mjs CHANGED
@@ -3700,9 +3700,11 @@ const ReturnTypes = {
3700
3700
  cooperator_account: "CooperativeOperatorAccount",
3701
3701
  coopname: "String",
3702
3702
  is_providered: "Boolean",
3703
+ is_unioned: "Boolean",
3703
3704
  settings: "Settings",
3704
3705
  symbols: "Symbols",
3705
3706
  system_status: "SystemStatus",
3707
+ union_link: "String",
3706
3708
  vars: "Vars"
3707
3709
  },
3708
3710
  Token: {
@@ -3755,6 +3757,7 @@ const ReturnTypes = {
3755
3757
  privacy_agreement: "AgreementVar",
3756
3758
  short_abbr: "String",
3757
3759
  signature_agreement: "AgreementVar",
3760
+ statute_link: "String",
3758
3761
  user_agreement: "AgreementVar",
3759
3762
  wallet_agreement: "AgreementVar",
3760
3763
  website: "String"
@@ -6111,6 +6114,7 @@ const rawVarsSelector = {
6111
6114
  name: true,
6112
6115
  participant_application: rawAgreementVarSelector,
6113
6116
  passport_request: true,
6117
+ statute_link: true,
6114
6118
  privacy_agreement: rawAgreementVarSelector,
6115
6119
  short_abbr: true,
6116
6120
  signature_agreement: rawAgreementVarSelector,
@@ -6134,6 +6138,8 @@ const rawSystemInfoSelector = {
6134
6138
  blockchain_account: rawBlockchainAccountSelector,
6135
6139
  system_status: true,
6136
6140
  is_providered: true,
6141
+ is_unioned: true,
6142
+ union_link: true,
6137
6143
  contacts: rawContactsSelector,
6138
6144
  vars: rawVarsSelector,
6139
6145
  symbols: rawSymbolsSelector,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@coopenomics/sdk",
3
3
  "type": "module",
4
- "version": "2025.11.14-alpha-2",
4
+ "version": "2025.11.15-alpha-1",
5
5
  "private": false,
6
6
  "packageManager": "pnpm@9.9.0",
7
7
  "description": "",
@@ -48,7 +48,7 @@
48
48
  "@wharfkit/contract": "^1.1.5",
49
49
  "@wharfkit/session": "^1.4.0",
50
50
  "@wharfkit/wallet-plugin-privatekey": "^1.1.0",
51
- "cooptypes": "2025.11.14-alpha-2",
51
+ "cooptypes": "2025.11.15-alpha-1",
52
52
  "graphql": "^16.9.0",
53
53
  "graphql-request": "^7.1.2",
54
54
  "graphql-tag": "^2.12.6",
@@ -76,5 +76,5 @@
76
76
  "vite": "^5.4.3",
77
77
  "vitest": "^2.0.5"
78
78
  },
79
- "gitHead": "9e1dd02d708a4b7905f0cb4543e61a193c0948c8"
79
+ "gitHead": "3671c05573f13ccdfc23fc90c43dd5e7a7b8fd1d"
80
80
  }