@coopenomics/sdk 2025.6.14 → 2025.6.24
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 +273 -229
- package/dist/index.d.cts +523 -305
- package/dist/index.d.mts +523 -305
- package/dist/index.d.ts +523 -305
- package/dist/index.mjs +273 -229
- package/package.json +3 -3
package/dist/index.d.cts
CHANGED
|
@@ -257,7 +257,7 @@ type ScalarCoders = {
|
|
|
257
257
|
JSON?: ScalarResolver;
|
|
258
258
|
JSONObject?: ScalarResolver;
|
|
259
259
|
};
|
|
260
|
-
type ZEUS_UNIONS = GraphQLTypes["PaymentMethodData"] | GraphQLTypes["UserCertificateUnion"];
|
|
260
|
+
type ZEUS_UNIONS = GraphQLTypes["PaymentMethodData"] | GraphQLTypes["PrivateAccountSearchData"] | GraphQLTypes["UserCertificateUnion"];
|
|
261
261
|
type ValueTypes = {
|
|
262
262
|
["AcceptChildOrderInput"]: {
|
|
263
263
|
/** Имя аккаунта кооператива */
|
|
@@ -432,6 +432,8 @@ type ValueTypes = {
|
|
|
432
432
|
created_at?: string | undefined | null | Variable<any, string>;
|
|
433
433
|
/** Имя генератора, использованного для создания документа */
|
|
434
434
|
generator?: string | undefined | null | Variable<any, string>;
|
|
435
|
+
/** Флаг повторного собрания */
|
|
436
|
+
is_repeated: boolean | Variable<any, string>;
|
|
435
437
|
/** Язык документа */
|
|
436
438
|
lang?: string | undefined | null | Variable<any, string>;
|
|
437
439
|
/** Ссылки, связанные с документом */
|
|
@@ -470,6 +472,8 @@ type ValueTypes = {
|
|
|
470
472
|
created_at: string | Variable<any, string>;
|
|
471
473
|
/** Имя генератора, использованного для создания документа */
|
|
472
474
|
generator: string | Variable<any, string>;
|
|
475
|
+
/** Флаг повторного собрания */
|
|
476
|
+
is_repeated: boolean | Variable<any, string>;
|
|
473
477
|
/** Язык документа */
|
|
474
478
|
lang: string | Variable<any, string>;
|
|
475
479
|
/** Ссылки, связанные с документом */
|
|
@@ -626,6 +630,8 @@ type ValueTypes = {
|
|
|
626
630
|
decision_id: number | Variable<any, string>;
|
|
627
631
|
/** Имя генератора, использованного для создания документа */
|
|
628
632
|
generator?: string | undefined | null | Variable<any, string>;
|
|
633
|
+
/** Флаг повторного собрания */
|
|
634
|
+
is_repeated: boolean | Variable<any, string>;
|
|
629
635
|
/** Язык документа */
|
|
630
636
|
lang?: string | undefined | null | Variable<any, string>;
|
|
631
637
|
/** Ссылки, связанные с документом */
|
|
@@ -1897,6 +1903,8 @@ type ValueTypes = {
|
|
|
1897
1903
|
initiator?: boolean | `@${string}`;
|
|
1898
1904
|
/** Сертификат инициатора собрания */
|
|
1899
1905
|
initiator_certificate?: ValueTypes["UserCertificateUnion"];
|
|
1906
|
+
/** Уровень собрания */
|
|
1907
|
+
level?: boolean | `@${string}`;
|
|
1900
1908
|
/** Список пользователей, которые подписали уведомление */
|
|
1901
1909
|
notified_users?: boolean | `@${string}`;
|
|
1902
1910
|
/** Дата открытия собрания */
|
|
@@ -2671,6 +2679,23 @@ type ValueTypes = {
|
|
|
2671
2679
|
type?: boolean | `@${string}`;
|
|
2672
2680
|
__typename?: boolean | `@${string}`;
|
|
2673
2681
|
}>;
|
|
2682
|
+
["PrivateAccountSearchData"]: AliasType<{
|
|
2683
|
+
["...on Entrepreneur"]?: ValueTypes["Entrepreneur"];
|
|
2684
|
+
["...on Individual"]?: ValueTypes["Individual"];
|
|
2685
|
+
["...on Organization"]?: ValueTypes["Organization"];
|
|
2686
|
+
__typename?: boolean | `@${string}`;
|
|
2687
|
+
}>;
|
|
2688
|
+
["PrivateAccountSearchResult"]: AliasType<{
|
|
2689
|
+
/** Данные найденного аккаунта */
|
|
2690
|
+
data?: ValueTypes["PrivateAccountSearchData"];
|
|
2691
|
+
/** Поля, в которых найдены совпадения */
|
|
2692
|
+
highlightedFields?: boolean | `@${string}`;
|
|
2693
|
+
/** Оценка релевантности результата */
|
|
2694
|
+
score?: boolean | `@${string}`;
|
|
2695
|
+
/** Тип аккаунта */
|
|
2696
|
+
type?: boolean | `@${string}`;
|
|
2697
|
+
__typename?: boolean | `@${string}`;
|
|
2698
|
+
}>;
|
|
2674
2699
|
["ProhibitRequestInput"]: {
|
|
2675
2700
|
/** Имя аккаунта кооператива */
|
|
2676
2701
|
coopname: string | Variable<any, string>;
|
|
@@ -2805,6 +2830,9 @@ type ValueTypes = {
|
|
|
2805
2830
|
}, ValueTypes["PaymentPaginationResult"]];
|
|
2806
2831
|
/** Получить сводную публичную информацию о системе */
|
|
2807
2832
|
getSystemInfo?: ValueTypes["SystemInfo"];
|
|
2833
|
+
searchPrivateAccounts?: [{
|
|
2834
|
+
data: ValueTypes["SearchPrivateAccountsInput"] | Variable<any, string>;
|
|
2835
|
+
}, ValueTypes["PrivateAccountSearchResult"]];
|
|
2808
2836
|
__typename?: boolean | `@${string}`;
|
|
2809
2837
|
}>;
|
|
2810
2838
|
/** Вопрос повестки собрания с результатами голосования */
|
|
@@ -3152,6 +3180,10 @@ type ValueTypes = {
|
|
|
3152
3180
|
phone?: boolean | `@${string}`;
|
|
3153
3181
|
__typename?: boolean | `@${string}`;
|
|
3154
3182
|
}>;
|
|
3183
|
+
["SearchPrivateAccountsInput"]: {
|
|
3184
|
+
/** Поисковый запрос для поиска приватных аккаунтов */
|
|
3185
|
+
query: string | Variable<any, string>;
|
|
3186
|
+
};
|
|
3155
3187
|
["SelectBranchGenerateDocumentInput"]: {
|
|
3156
3188
|
/** Номер блока, на котором был создан документ */
|
|
3157
3189
|
block_num?: number | undefined | null | Variable<any, string>;
|
|
@@ -3821,6 +3853,8 @@ type ResolverInputTypes = {
|
|
|
3821
3853
|
created_at?: string | undefined | null;
|
|
3822
3854
|
/** Имя генератора, использованного для создания документа */
|
|
3823
3855
|
generator?: string | undefined | null;
|
|
3856
|
+
/** Флаг повторного собрания */
|
|
3857
|
+
is_repeated: boolean;
|
|
3824
3858
|
/** Язык документа */
|
|
3825
3859
|
lang?: string | undefined | null;
|
|
3826
3860
|
/** Ссылки, связанные с документом */
|
|
@@ -3859,6 +3893,8 @@ type ResolverInputTypes = {
|
|
|
3859
3893
|
created_at: string;
|
|
3860
3894
|
/** Имя генератора, использованного для создания документа */
|
|
3861
3895
|
generator: string;
|
|
3896
|
+
/** Флаг повторного собрания */
|
|
3897
|
+
is_repeated: boolean;
|
|
3862
3898
|
/** Язык документа */
|
|
3863
3899
|
lang: string;
|
|
3864
3900
|
/** Ссылки, связанные с документом */
|
|
@@ -4015,6 +4051,8 @@ type ResolverInputTypes = {
|
|
|
4015
4051
|
decision_id: number;
|
|
4016
4052
|
/** Имя генератора, использованного для создания документа */
|
|
4017
4053
|
generator?: string | undefined | null;
|
|
4054
|
+
/** Флаг повторного собрания */
|
|
4055
|
+
is_repeated: boolean;
|
|
4018
4056
|
/** Язык документа */
|
|
4019
4057
|
lang?: string | undefined | null;
|
|
4020
4058
|
/** Ссылки, связанные с документом */
|
|
@@ -5286,6 +5324,8 @@ type ResolverInputTypes = {
|
|
|
5286
5324
|
initiator?: boolean | `@${string}`;
|
|
5287
5325
|
/** Сертификат инициатора собрания */
|
|
5288
5326
|
initiator_certificate?: ResolverInputTypes["UserCertificateUnion"];
|
|
5327
|
+
/** Уровень собрания */
|
|
5328
|
+
level?: boolean | `@${string}`;
|
|
5289
5329
|
/** Список пользователей, которые подписали уведомление */
|
|
5290
5330
|
notified_users?: boolean | `@${string}`;
|
|
5291
5331
|
/** Дата открытия собрания */
|
|
@@ -6060,6 +6100,23 @@ type ResolverInputTypes = {
|
|
|
6060
6100
|
type?: boolean | `@${string}`;
|
|
6061
6101
|
__typename?: boolean | `@${string}`;
|
|
6062
6102
|
}>;
|
|
6103
|
+
["PrivateAccountSearchData"]: AliasType<{
|
|
6104
|
+
Entrepreneur?: ResolverInputTypes["Entrepreneur"];
|
|
6105
|
+
Individual?: ResolverInputTypes["Individual"];
|
|
6106
|
+
Organization?: ResolverInputTypes["Organization"];
|
|
6107
|
+
__typename?: boolean | `@${string}`;
|
|
6108
|
+
}>;
|
|
6109
|
+
["PrivateAccountSearchResult"]: AliasType<{
|
|
6110
|
+
/** Данные найденного аккаунта */
|
|
6111
|
+
data?: ResolverInputTypes["PrivateAccountSearchData"];
|
|
6112
|
+
/** Поля, в которых найдены совпадения */
|
|
6113
|
+
highlightedFields?: boolean | `@${string}`;
|
|
6114
|
+
/** Оценка релевантности результата */
|
|
6115
|
+
score?: boolean | `@${string}`;
|
|
6116
|
+
/** Тип аккаунта */
|
|
6117
|
+
type?: boolean | `@${string}`;
|
|
6118
|
+
__typename?: boolean | `@${string}`;
|
|
6119
|
+
}>;
|
|
6063
6120
|
["ProhibitRequestInput"]: {
|
|
6064
6121
|
/** Имя аккаунта кооператива */
|
|
6065
6122
|
coopname: string;
|
|
@@ -6194,6 +6251,9 @@ type ResolverInputTypes = {
|
|
|
6194
6251
|
}, ResolverInputTypes["PaymentPaginationResult"]];
|
|
6195
6252
|
/** Получить сводную публичную информацию о системе */
|
|
6196
6253
|
getSystemInfo?: ResolverInputTypes["SystemInfo"];
|
|
6254
|
+
searchPrivateAccounts?: [{
|
|
6255
|
+
data: ResolverInputTypes["SearchPrivateAccountsInput"];
|
|
6256
|
+
}, ResolverInputTypes["PrivateAccountSearchResult"]];
|
|
6197
6257
|
__typename?: boolean | `@${string}`;
|
|
6198
6258
|
}>;
|
|
6199
6259
|
/** Вопрос повестки собрания с результатами голосования */
|
|
@@ -6541,6 +6601,10 @@ type ResolverInputTypes = {
|
|
|
6541
6601
|
phone?: boolean | `@${string}`;
|
|
6542
6602
|
__typename?: boolean | `@${string}`;
|
|
6543
6603
|
}>;
|
|
6604
|
+
["SearchPrivateAccountsInput"]: {
|
|
6605
|
+
/** Поисковый запрос для поиска приватных аккаунтов */
|
|
6606
|
+
query: string;
|
|
6607
|
+
};
|
|
6544
6608
|
["SelectBranchGenerateDocumentInput"]: {
|
|
6545
6609
|
/** Номер блока, на котором был создан документ */
|
|
6546
6610
|
block_num?: number | undefined | null;
|
|
@@ -7204,6 +7268,8 @@ type ModelTypes = {
|
|
|
7204
7268
|
created_at?: string | undefined | null;
|
|
7205
7269
|
/** Имя генератора, использованного для создания документа */
|
|
7206
7270
|
generator?: string | undefined | null;
|
|
7271
|
+
/** Флаг повторного собрания */
|
|
7272
|
+
is_repeated: boolean;
|
|
7207
7273
|
/** Язык документа */
|
|
7208
7274
|
lang?: string | undefined | null;
|
|
7209
7275
|
/** Ссылки, связанные с документом */
|
|
@@ -7242,6 +7308,8 @@ type ModelTypes = {
|
|
|
7242
7308
|
created_at: string;
|
|
7243
7309
|
/** Имя генератора, использованного для создания документа */
|
|
7244
7310
|
generator: string;
|
|
7311
|
+
/** Флаг повторного собрания */
|
|
7312
|
+
is_repeated: boolean;
|
|
7245
7313
|
/** Язык документа */
|
|
7246
7314
|
lang: string;
|
|
7247
7315
|
/** Ссылки, связанные с документом */
|
|
@@ -7398,6 +7466,8 @@ type ModelTypes = {
|
|
|
7398
7466
|
decision_id: number;
|
|
7399
7467
|
/** Имя генератора, использованного для создания документа */
|
|
7400
7468
|
generator?: string | undefined | null;
|
|
7469
|
+
/** Флаг повторного собрания */
|
|
7470
|
+
is_repeated: boolean;
|
|
7401
7471
|
/** Язык документа */
|
|
7402
7472
|
lang?: string | undefined | null;
|
|
7403
7473
|
/** Ссылки, связанные с документом */
|
|
@@ -8639,6 +8709,8 @@ type ModelTypes = {
|
|
|
8639
8709
|
initiator: string;
|
|
8640
8710
|
/** Сертификат инициатора собрания */
|
|
8641
8711
|
initiator_certificate?: ModelTypes["UserCertificateUnion"] | undefined | null;
|
|
8712
|
+
/** Уровень собрания */
|
|
8713
|
+
level: string;
|
|
8642
8714
|
/** Список пользователей, которые подписали уведомление */
|
|
8643
8715
|
notified_users: Array<string>;
|
|
8644
8716
|
/** Дата открытия собрания */
|
|
@@ -9292,6 +9364,17 @@ type ModelTypes = {
|
|
|
9292
9364
|
/** Тип аккаунта */
|
|
9293
9365
|
type: ModelTypes["AccountType"];
|
|
9294
9366
|
};
|
|
9367
|
+
["PrivateAccountSearchData"]: ModelTypes["Entrepreneur"] | ModelTypes["Individual"] | ModelTypes["Organization"];
|
|
9368
|
+
["PrivateAccountSearchResult"]: {
|
|
9369
|
+
/** Данные найденного аккаунта */
|
|
9370
|
+
data: ModelTypes["PrivateAccountSearchData"];
|
|
9371
|
+
/** Поля, в которых найдены совпадения */
|
|
9372
|
+
highlightedFields?: Array<string> | undefined | null;
|
|
9373
|
+
/** Оценка релевантности результата */
|
|
9374
|
+
score?: number | undefined | null;
|
|
9375
|
+
/** Тип аккаунта */
|
|
9376
|
+
type: string;
|
|
9377
|
+
};
|
|
9295
9378
|
["ProhibitRequestInput"]: {
|
|
9296
9379
|
/** Имя аккаунта кооператива */
|
|
9297
9380
|
coopname: string;
|
|
@@ -9413,6 +9496,8 @@ type ModelTypes = {
|
|
|
9413
9496
|
getPayments: ModelTypes["PaymentPaginationResult"];
|
|
9414
9497
|
/** Получить сводную публичную информацию о системе */
|
|
9415
9498
|
getSystemInfo: ModelTypes["SystemInfo"];
|
|
9499
|
+
/** Поиск приватных данных аккаунтов по запросу. Поиск осуществляется по полям ФИО, ИНН, ОГРН, наименованию организации и другим приватным данным. */
|
|
9500
|
+
searchPrivateAccounts: Array<ModelTypes["PrivateAccountSearchResult"]>;
|
|
9416
9501
|
};
|
|
9417
9502
|
/** Вопрос повестки собрания с результатами голосования */
|
|
9418
9503
|
["Question"]: {
|
|
@@ -9751,6 +9836,10 @@ type ModelTypes = {
|
|
|
9751
9836
|
/** Мобильный телефон получателя */
|
|
9752
9837
|
phone: string;
|
|
9753
9838
|
};
|
|
9839
|
+
["SearchPrivateAccountsInput"]: {
|
|
9840
|
+
/** Поисковый запрос для поиска приватных аккаунтов */
|
|
9841
|
+
query: string;
|
|
9842
|
+
};
|
|
9754
9843
|
["SelectBranchGenerateDocumentInput"]: {
|
|
9755
9844
|
/** Номер блока, на котором был создан документ */
|
|
9756
9845
|
block_num?: number | undefined | null;
|
|
@@ -10405,6 +10494,8 @@ type GraphQLTypes = {
|
|
|
10405
10494
|
created_at?: string | undefined | null;
|
|
10406
10495
|
/** Имя генератора, использованного для создания документа */
|
|
10407
10496
|
generator?: string | undefined | null;
|
|
10497
|
+
/** Флаг повторного собрания */
|
|
10498
|
+
is_repeated: boolean;
|
|
10408
10499
|
/** Язык документа */
|
|
10409
10500
|
lang?: string | undefined | null;
|
|
10410
10501
|
/** Ссылки, связанные с документом */
|
|
@@ -10443,6 +10534,8 @@ type GraphQLTypes = {
|
|
|
10443
10534
|
created_at: string;
|
|
10444
10535
|
/** Имя генератора, использованного для создания документа */
|
|
10445
10536
|
generator: string;
|
|
10537
|
+
/** Флаг повторного собрания */
|
|
10538
|
+
is_repeated: boolean;
|
|
10446
10539
|
/** Язык документа */
|
|
10447
10540
|
lang: string;
|
|
10448
10541
|
/** Ссылки, связанные с документом */
|
|
@@ -10599,6 +10692,8 @@ type GraphQLTypes = {
|
|
|
10599
10692
|
decision_id: number;
|
|
10600
10693
|
/** Имя генератора, использованного для создания документа */
|
|
10601
10694
|
generator?: string | undefined | null;
|
|
10695
|
+
/** Флаг повторного собрания */
|
|
10696
|
+
is_repeated: boolean;
|
|
10602
10697
|
/** Язык документа */
|
|
10603
10698
|
lang?: string | undefined | null;
|
|
10604
10699
|
/** Ссылки, связанные с документом */
|
|
@@ -11877,6 +11972,8 @@ type GraphQLTypes = {
|
|
|
11877
11972
|
initiator: string;
|
|
11878
11973
|
/** Сертификат инициатора собрания */
|
|
11879
11974
|
initiator_certificate?: GraphQLTypes["UserCertificateUnion"] | undefined | null;
|
|
11975
|
+
/** Уровень собрания */
|
|
11976
|
+
level: string;
|
|
11880
11977
|
/** Список пользователей, которые подписали уведомление */
|
|
11881
11978
|
notified_users: Array<string>;
|
|
11882
11979
|
/** Дата открытия собрания */
|
|
@@ -12557,6 +12654,23 @@ type GraphQLTypes = {
|
|
|
12557
12654
|
/** Тип аккаунта */
|
|
12558
12655
|
type: GraphQLTypes["AccountType"];
|
|
12559
12656
|
};
|
|
12657
|
+
["PrivateAccountSearchData"]: {
|
|
12658
|
+
__typename: "Entrepreneur" | "Individual" | "Organization";
|
|
12659
|
+
['...on Entrepreneur']: '__union' & GraphQLTypes["Entrepreneur"];
|
|
12660
|
+
['...on Individual']: '__union' & GraphQLTypes["Individual"];
|
|
12661
|
+
['...on Organization']: '__union' & GraphQLTypes["Organization"];
|
|
12662
|
+
};
|
|
12663
|
+
["PrivateAccountSearchResult"]: {
|
|
12664
|
+
__typename: "PrivateAccountSearchResult";
|
|
12665
|
+
/** Данные найденного аккаунта */
|
|
12666
|
+
data: GraphQLTypes["PrivateAccountSearchData"];
|
|
12667
|
+
/** Поля, в которых найдены совпадения */
|
|
12668
|
+
highlightedFields?: Array<string> | undefined | null;
|
|
12669
|
+
/** Оценка релевантности результата */
|
|
12670
|
+
score?: number | undefined | null;
|
|
12671
|
+
/** Тип аккаунта */
|
|
12672
|
+
type: string;
|
|
12673
|
+
};
|
|
12560
12674
|
["ProhibitRequestInput"]: {
|
|
12561
12675
|
/** Имя аккаунта кооператива */
|
|
12562
12676
|
coopname: string;
|
|
@@ -12680,6 +12794,8 @@ type GraphQLTypes = {
|
|
|
12680
12794
|
getPayments: GraphQLTypes["PaymentPaginationResult"];
|
|
12681
12795
|
/** Получить сводную публичную информацию о системе */
|
|
12682
12796
|
getSystemInfo: GraphQLTypes["SystemInfo"];
|
|
12797
|
+
/** Поиск приватных данных аккаунтов по запросу. Поиск осуществляется по полям ФИО, ИНН, ОГРН, наименованию организации и другим приватным данным. */
|
|
12798
|
+
searchPrivateAccounts: Array<GraphQLTypes["PrivateAccountSearchResult"]>;
|
|
12683
12799
|
};
|
|
12684
12800
|
/** Вопрос повестки собрания с результатами голосования */
|
|
12685
12801
|
["Question"]: {
|
|
@@ -13026,6 +13142,10 @@ type GraphQLTypes = {
|
|
|
13026
13142
|
/** Мобильный телефон получателя */
|
|
13027
13143
|
phone: string;
|
|
13028
13144
|
};
|
|
13145
|
+
["SearchPrivateAccountsInput"]: {
|
|
13146
|
+
/** Поисковый запрос для поиска приватных аккаунтов */
|
|
13147
|
+
query: string;
|
|
13148
|
+
};
|
|
13029
13149
|
["SelectBranchGenerateDocumentInput"]: {
|
|
13030
13150
|
/** Номер блока, на котором был создан документ */
|
|
13031
13151
|
block_num?: number | undefined | null;
|
|
@@ -13690,6 +13810,7 @@ type ZEUS_VARIABLES = {
|
|
|
13690
13810
|
["ReturnByAssetStatementGenerateDocumentInput"]: ValueTypes["ReturnByAssetStatementGenerateDocumentInput"];
|
|
13691
13811
|
["ReturnByAssetStatementSignedDocumentInput"]: ValueTypes["ReturnByAssetStatementSignedDocumentInput"];
|
|
13692
13812
|
["ReturnByAssetStatementSignedMetaDocumentInput"]: ValueTypes["ReturnByAssetStatementSignedMetaDocumentInput"];
|
|
13813
|
+
["SearchPrivateAccountsInput"]: ValueTypes["SearchPrivateAccountsInput"];
|
|
13693
13814
|
["SelectBranchGenerateDocumentInput"]: ValueTypes["SelectBranchGenerateDocumentInput"];
|
|
13694
13815
|
["SelectBranchInput"]: ValueTypes["SelectBranchInput"];
|
|
13695
13816
|
["SelectBranchSignedDocumentInput"]: ValueTypes["SelectBranchSignedDocumentInput"];
|
|
@@ -14262,7 +14383,7 @@ declare namespace Classes {
|
|
|
14262
14383
|
export { Classes_Account as Account, Classes_Blockchain as Blockchain, Classes_Canvas as Canvas, Classes_Crypto as Crypto, Classes_Document as Document, type Classes_IVoteData as IVoteData, Classes_Vote as Vote };
|
|
14263
14384
|
}
|
|
14264
14385
|
|
|
14265
|
-
declare const name$
|
|
14386
|
+
declare const name$1l = "registerAccount";
|
|
14266
14387
|
declare const mutation$18: {
|
|
14267
14388
|
registerAccount: [{
|
|
14268
14389
|
data: Variable<"RegisterAccountInput!", "data">;
|
|
@@ -14457,58 +14578,58 @@ declare const mutation$18: {
|
|
|
14457
14578
|
};
|
|
14458
14579
|
}];
|
|
14459
14580
|
};
|
|
14460
|
-
interface IInput$
|
|
14581
|
+
interface IInput$1m {
|
|
14461
14582
|
/**
|
|
14462
14583
|
* @private
|
|
14463
14584
|
*/
|
|
14464
14585
|
[key: string]: unknown;
|
|
14465
14586
|
data: ModelTypes['RegisterAccountInput'];
|
|
14466
14587
|
}
|
|
14467
|
-
type IOutput$
|
|
14588
|
+
type IOutput$1m = InputType<GraphQLTypes['Mutation'], typeof mutation$18>;
|
|
14468
14589
|
|
|
14469
14590
|
declare namespace registerAccount {
|
|
14470
|
-
export { type IInput$
|
|
14591
|
+
export { type IInput$1m as IInput, type IOutput$1m as IOutput, mutation$18 as mutation, name$1l as name };
|
|
14471
14592
|
}
|
|
14472
14593
|
|
|
14473
|
-
declare const name$
|
|
14594
|
+
declare const name$1k = "resetKey";
|
|
14474
14595
|
declare const mutation$17: {
|
|
14475
14596
|
resetKey: [{
|
|
14476
14597
|
data: Variable<"ResetKeyInput!", "data">;
|
|
14477
14598
|
}, true];
|
|
14478
14599
|
};
|
|
14479
|
-
interface IInput$
|
|
14600
|
+
interface IInput$1l {
|
|
14480
14601
|
/**
|
|
14481
14602
|
* @private
|
|
14482
14603
|
*/
|
|
14483
14604
|
[key: string]: unknown;
|
|
14484
14605
|
data: ModelTypes['ResetKeyInput'];
|
|
14485
14606
|
}
|
|
14486
|
-
type IOutput$
|
|
14607
|
+
type IOutput$1l = InputType<GraphQLTypes['Mutation'], typeof mutation$17>;
|
|
14487
14608
|
|
|
14488
14609
|
declare namespace resetKey {
|
|
14489
|
-
export { type IInput$
|
|
14610
|
+
export { type IInput$1l as IInput, type IOutput$1l as IOutput, mutation$17 as mutation, name$1k as name };
|
|
14490
14611
|
}
|
|
14491
14612
|
|
|
14492
|
-
declare const name$
|
|
14613
|
+
declare const name$1j = "startResetKey";
|
|
14493
14614
|
declare const mutation$16: {
|
|
14494
14615
|
startResetKey: [{
|
|
14495
14616
|
data: Variable<"StartResetKeyInput!", "data">;
|
|
14496
14617
|
}, true];
|
|
14497
14618
|
};
|
|
14498
|
-
interface IInput$
|
|
14619
|
+
interface IInput$1k {
|
|
14499
14620
|
/**
|
|
14500
14621
|
* @private
|
|
14501
14622
|
*/
|
|
14502
14623
|
[key: string]: unknown;
|
|
14503
14624
|
data: ModelTypes['StartResetKeyInput'];
|
|
14504
14625
|
}
|
|
14505
|
-
type IOutput$
|
|
14626
|
+
type IOutput$1k = InputType<GraphQLTypes['Mutation'], typeof mutation$16>;
|
|
14506
14627
|
|
|
14507
14628
|
declare namespace startResetKey {
|
|
14508
|
-
export { type IInput$
|
|
14629
|
+
export { type IInput$1k as IInput, type IOutput$1k as IOutput, mutation$16 as mutation, name$1j as name };
|
|
14509
14630
|
}
|
|
14510
14631
|
|
|
14511
|
-
declare const name$
|
|
14632
|
+
declare const name$1i = "updateAccount";
|
|
14512
14633
|
declare const mutation$15: {
|
|
14513
14634
|
updateAccount: [{
|
|
14514
14635
|
data: Variable<"UpdateAccountInput!", "data">;
|
|
@@ -14691,17 +14812,17 @@ declare const mutation$15: {
|
|
|
14691
14812
|
};
|
|
14692
14813
|
}];
|
|
14693
14814
|
};
|
|
14694
|
-
interface IInput$
|
|
14815
|
+
interface IInput$1j {
|
|
14695
14816
|
/**
|
|
14696
14817
|
* @private
|
|
14697
14818
|
*/
|
|
14698
14819
|
[key: string]: unknown;
|
|
14699
14820
|
data: ModelTypes['UpdateAccountInput'];
|
|
14700
14821
|
}
|
|
14701
|
-
type IOutput$
|
|
14822
|
+
type IOutput$1j = InputType<GraphQLTypes['Mutation'], typeof mutation$15>;
|
|
14702
14823
|
|
|
14703
14824
|
declare namespace updateAccount {
|
|
14704
|
-
export { type IInput$
|
|
14825
|
+
export { type IInput$1j as IInput, type IOutput$1j as IOutput, mutation$15 as mutation, name$1i as name };
|
|
14705
14826
|
}
|
|
14706
14827
|
|
|
14707
14828
|
/** Зарегистрировать аккаунт пользователя в системе */
|
|
@@ -14710,7 +14831,7 @@ declare namespace index$p {
|
|
|
14710
14831
|
export { registerAccount as RegisterAccount, resetKey as ResetKey, startResetKey as StartResetKey, updateAccount as UpdateAccount };
|
|
14711
14832
|
}
|
|
14712
14833
|
|
|
14713
|
-
declare const name$
|
|
14834
|
+
declare const name$1h = "generatePrivacyAgreement";
|
|
14714
14835
|
declare const mutation$14: {
|
|
14715
14836
|
generatePrivacyAgreement: [{
|
|
14716
14837
|
data: Variable<"GenerateDocumentInput!", "data">;
|
|
@@ -14723,7 +14844,7 @@ declare const mutation$14: {
|
|
|
14723
14844
|
meta: boolean;
|
|
14724
14845
|
}];
|
|
14725
14846
|
};
|
|
14726
|
-
interface IInput$
|
|
14847
|
+
interface IInput$1i {
|
|
14727
14848
|
/**
|
|
14728
14849
|
* @private
|
|
14729
14850
|
*/
|
|
@@ -14731,13 +14852,13 @@ interface IInput$1h {
|
|
|
14731
14852
|
data: ModelTypes['GenerateDocumentInput'];
|
|
14732
14853
|
options?: ModelTypes['GenerateDocumentOptionsInput'];
|
|
14733
14854
|
}
|
|
14734
|
-
type IOutput$
|
|
14855
|
+
type IOutput$1i = InputType<GraphQLTypes['Mutation'], typeof mutation$14>;
|
|
14735
14856
|
|
|
14736
14857
|
declare namespace generatePrivacyAgreement {
|
|
14737
|
-
export { type IInput$
|
|
14858
|
+
export { type IInput$1i as IInput, type IOutput$1i as IOutput, mutation$14 as mutation, name$1h as name };
|
|
14738
14859
|
}
|
|
14739
14860
|
|
|
14740
|
-
declare const name$
|
|
14861
|
+
declare const name$1g = "generateSignatureAgreement";
|
|
14741
14862
|
declare const mutation$13: {
|
|
14742
14863
|
generateSignatureAgreement: [{
|
|
14743
14864
|
data: Variable<"GenerateDocumentInput!", "data">;
|
|
@@ -14750,7 +14871,7 @@ declare const mutation$13: {
|
|
|
14750
14871
|
meta: boolean;
|
|
14751
14872
|
}];
|
|
14752
14873
|
};
|
|
14753
|
-
interface IInput$
|
|
14874
|
+
interface IInput$1h {
|
|
14754
14875
|
/**
|
|
14755
14876
|
* @private
|
|
14756
14877
|
*/
|
|
@@ -14758,13 +14879,13 @@ interface IInput$1g {
|
|
|
14758
14879
|
data: ModelTypes['GenerateDocumentInput'];
|
|
14759
14880
|
options?: ModelTypes['GenerateDocumentOptionsInput'];
|
|
14760
14881
|
}
|
|
14761
|
-
type IOutput$
|
|
14882
|
+
type IOutput$1h = InputType<GraphQLTypes['Mutation'], typeof mutation$13>;
|
|
14762
14883
|
|
|
14763
14884
|
declare namespace generateSignatureAgreement {
|
|
14764
|
-
export { type IInput$
|
|
14885
|
+
export { type IInput$1h as IInput, type IOutput$1h as IOutput, mutation$13 as mutation, name$1g as name };
|
|
14765
14886
|
}
|
|
14766
14887
|
|
|
14767
|
-
declare const name$
|
|
14888
|
+
declare const name$1f = "generateWalletAgreement";
|
|
14768
14889
|
declare const mutation$12: {
|
|
14769
14890
|
generateWalletAgreement: [{
|
|
14770
14891
|
data: Variable<"GenerateDocumentInput!", "data">;
|
|
@@ -14777,7 +14898,7 @@ declare const mutation$12: {
|
|
|
14777
14898
|
meta: boolean;
|
|
14778
14899
|
}];
|
|
14779
14900
|
};
|
|
14780
|
-
interface IInput$
|
|
14901
|
+
interface IInput$1g {
|
|
14781
14902
|
/**
|
|
14782
14903
|
* @private
|
|
14783
14904
|
*/
|
|
@@ -14785,13 +14906,13 @@ interface IInput$1f {
|
|
|
14785
14906
|
data: ModelTypes['GenerateDocumentInput'];
|
|
14786
14907
|
options?: ModelTypes['GenerateDocumentOptionsInput'];
|
|
14787
14908
|
}
|
|
14788
|
-
type IOutput$
|
|
14909
|
+
type IOutput$1g = InputType<GraphQLTypes['Mutation'], typeof mutation$12>;
|
|
14789
14910
|
|
|
14790
14911
|
declare namespace generateWalletAgreement {
|
|
14791
|
-
export { type IInput$
|
|
14912
|
+
export { type IInput$1g as IInput, type IOutput$1g as IOutput, mutation$12 as mutation, name$1f as name };
|
|
14792
14913
|
}
|
|
14793
14914
|
|
|
14794
|
-
declare const name$
|
|
14915
|
+
declare const name$1e = "generateUserAgreement";
|
|
14795
14916
|
declare const mutation$11: {
|
|
14796
14917
|
generateUserAgreement: [{
|
|
14797
14918
|
data: Variable<"GenerateDocumentInput!", "data">;
|
|
@@ -14804,7 +14925,7 @@ declare const mutation$11: {
|
|
|
14804
14925
|
meta: boolean;
|
|
14805
14926
|
}];
|
|
14806
14927
|
};
|
|
14807
|
-
interface IInput$
|
|
14928
|
+
interface IInput$1f {
|
|
14808
14929
|
/**
|
|
14809
14930
|
* @private
|
|
14810
14931
|
*/
|
|
@@ -14812,10 +14933,10 @@ interface IInput$1e {
|
|
|
14812
14933
|
data: ModelTypes['GenerateDocumentInput'];
|
|
14813
14934
|
options?: ModelTypes['GenerateDocumentOptionsInput'];
|
|
14814
14935
|
}
|
|
14815
|
-
type IOutput$
|
|
14936
|
+
type IOutput$1f = InputType<GraphQLTypes['Mutation'], typeof mutation$11>;
|
|
14816
14937
|
|
|
14817
14938
|
declare namespace generateUserAgreement {
|
|
14818
|
-
export { type IInput$
|
|
14939
|
+
export { type IInput$1f as IInput, type IOutput$1f as IOutput, mutation$11 as mutation, name$1e as name };
|
|
14819
14940
|
}
|
|
14820
14941
|
|
|
14821
14942
|
/** Сгенерировать документ согласия с политикой конфиденциальности. */
|
|
@@ -14824,7 +14945,7 @@ declare namespace index$o {
|
|
|
14824
14945
|
export { generatePrivacyAgreement as GeneratePrivacyAgreement, generateSignatureAgreement as GenerateSignatureAgreement, generateUserAgreement as GenerateUserAgreement, generateWalletAgreement as GenerateWalletAgreement };
|
|
14825
14946
|
}
|
|
14826
14947
|
|
|
14827
|
-
declare const name$
|
|
14948
|
+
declare const name$1d = "refresh";
|
|
14828
14949
|
declare const mutation$10: {
|
|
14829
14950
|
refresh: [{
|
|
14830
14951
|
data: Variable<"RefreshInput!", "data">;
|
|
@@ -15019,39 +15140,39 @@ declare const mutation$10: {
|
|
|
15019
15140
|
};
|
|
15020
15141
|
}];
|
|
15021
15142
|
};
|
|
15022
|
-
interface IInput$
|
|
15143
|
+
interface IInput$1e {
|
|
15023
15144
|
/**
|
|
15024
15145
|
* @private
|
|
15025
15146
|
*/
|
|
15026
15147
|
[key: string]: unknown;
|
|
15027
15148
|
data: ModelTypes['RefreshInput'];
|
|
15028
15149
|
}
|
|
15029
|
-
type IOutput$
|
|
15150
|
+
type IOutput$1e = InputType<GraphQLTypes['Mutation'], typeof mutation$10>;
|
|
15030
15151
|
|
|
15031
15152
|
declare namespace refresh {
|
|
15032
|
-
export { type IInput$
|
|
15153
|
+
export { type IInput$1e as IInput, type IOutput$1e as IOutput, mutation$10 as mutation, name$1d as name };
|
|
15033
15154
|
}
|
|
15034
15155
|
|
|
15035
|
-
declare const name$
|
|
15156
|
+
declare const name$1c = "logout";
|
|
15036
15157
|
declare const mutation$$: {
|
|
15037
15158
|
logout: [{
|
|
15038
15159
|
data: Variable<"LogoutInput!", "data">;
|
|
15039
15160
|
}, true];
|
|
15040
15161
|
};
|
|
15041
|
-
interface IInput$
|
|
15162
|
+
interface IInput$1d {
|
|
15042
15163
|
/**
|
|
15043
15164
|
* @private
|
|
15044
15165
|
*/
|
|
15045
15166
|
[key: string]: unknown;
|
|
15046
15167
|
data: ModelTypes['LogoutInput'];
|
|
15047
15168
|
}
|
|
15048
|
-
type IOutput$
|
|
15169
|
+
type IOutput$1d = InputType<GraphQLTypes['Mutation'], typeof mutation$$>;
|
|
15049
15170
|
|
|
15050
15171
|
declare namespace logout {
|
|
15051
|
-
export { type IInput$
|
|
15172
|
+
export { type IInput$1d as IInput, type IOutput$1d as IOutput, mutation$$ as mutation, name$1c as name };
|
|
15052
15173
|
}
|
|
15053
15174
|
|
|
15054
|
-
declare const name$
|
|
15175
|
+
declare const name$1b = "login";
|
|
15055
15176
|
declare const mutation$_: {
|
|
15056
15177
|
login: [{
|
|
15057
15178
|
data: Variable<"LoginInput!", "data">;
|
|
@@ -15246,17 +15367,17 @@ declare const mutation$_: {
|
|
|
15246
15367
|
};
|
|
15247
15368
|
}];
|
|
15248
15369
|
};
|
|
15249
|
-
interface IInput$
|
|
15370
|
+
interface IInput$1c {
|
|
15250
15371
|
/**
|
|
15251
15372
|
* @private
|
|
15252
15373
|
*/
|
|
15253
15374
|
[key: string]: unknown;
|
|
15254
15375
|
data: ModelTypes['LoginInput'];
|
|
15255
15376
|
}
|
|
15256
|
-
type IOutput$
|
|
15377
|
+
type IOutput$1c = InputType<GraphQLTypes['Mutation'], typeof mutation$_>;
|
|
15257
15378
|
|
|
15258
15379
|
declare namespace login {
|
|
15259
|
-
export { type IInput$
|
|
15380
|
+
export { type IInput$1c as IInput, type IOutput$1c as IOutput, mutation$_ as mutation, name$1b as name };
|
|
15260
15381
|
}
|
|
15261
15382
|
|
|
15262
15383
|
/** Обновить токен доступа аккаунта */
|
|
@@ -15265,7 +15386,7 @@ declare namespace index$n {
|
|
|
15265
15386
|
export { login as Login, logout as Logout, refresh as Refresh };
|
|
15266
15387
|
}
|
|
15267
15388
|
|
|
15268
|
-
declare const name$
|
|
15389
|
+
declare const name$1a = "addTrustedAccount";
|
|
15269
15390
|
declare const mutation$Z: {
|
|
15270
15391
|
addTrustedAccount: [{
|
|
15271
15392
|
data: Variable<"AddTrustedAccountInput!", "data">;
|
|
@@ -15348,20 +15469,20 @@ declare const mutation$Z: {
|
|
|
15348
15469
|
type: boolean;
|
|
15349
15470
|
}];
|
|
15350
15471
|
};
|
|
15351
|
-
interface IInput$
|
|
15472
|
+
interface IInput$1b {
|
|
15352
15473
|
/**
|
|
15353
15474
|
* @private
|
|
15354
15475
|
*/
|
|
15355
15476
|
[key: string]: unknown;
|
|
15356
15477
|
data: ModelTypes['AddTrustedAccountInput'];
|
|
15357
15478
|
}
|
|
15358
|
-
type IOutput$
|
|
15479
|
+
type IOutput$1b = InputType<GraphQLTypes['Mutation'], typeof mutation$Z>;
|
|
15359
15480
|
|
|
15360
15481
|
declare namespace addTrustedAccount {
|
|
15361
|
-
export { type IInput$
|
|
15482
|
+
export { type IInput$1b as IInput, type IOutput$1b as IOutput, mutation$Z as mutation, name$1a as name };
|
|
15362
15483
|
}
|
|
15363
15484
|
|
|
15364
|
-
declare const name$
|
|
15485
|
+
declare const name$19 = "createBranch";
|
|
15365
15486
|
declare const mutation$Y: {
|
|
15366
15487
|
createBranch: [{
|
|
15367
15488
|
data: Variable<"CreateBranchInput!", "data">;
|
|
@@ -15444,39 +15565,39 @@ declare const mutation$Y: {
|
|
|
15444
15565
|
type: boolean;
|
|
15445
15566
|
}];
|
|
15446
15567
|
};
|
|
15447
|
-
interface IInput$
|
|
15568
|
+
interface IInput$1a {
|
|
15448
15569
|
/**
|
|
15449
15570
|
* @private
|
|
15450
15571
|
*/
|
|
15451
15572
|
[key: string]: unknown;
|
|
15452
15573
|
data: ModelTypes['CreateBranchInput'];
|
|
15453
15574
|
}
|
|
15454
|
-
type IOutput$
|
|
15575
|
+
type IOutput$1a = InputType<GraphQLTypes['Mutation'], typeof mutation$Y>;
|
|
15455
15576
|
|
|
15456
15577
|
declare namespace createBranch {
|
|
15457
|
-
export { type IInput$
|
|
15578
|
+
export { type IInput$1a as IInput, type IOutput$1a as IOutput, mutation$Y as mutation, name$19 as name };
|
|
15458
15579
|
}
|
|
15459
15580
|
|
|
15460
|
-
declare const name$
|
|
15581
|
+
declare const name$18 = "deleteBranch";
|
|
15461
15582
|
declare const mutation$X: {
|
|
15462
15583
|
deleteBranch: [{
|
|
15463
15584
|
data: Variable<"DeleteBranchInput!", "data">;
|
|
15464
15585
|
}, true];
|
|
15465
15586
|
};
|
|
15466
|
-
interface IInput$
|
|
15587
|
+
interface IInput$19 {
|
|
15467
15588
|
/**
|
|
15468
15589
|
* @private
|
|
15469
15590
|
*/
|
|
15470
15591
|
[key: string]: unknown;
|
|
15471
15592
|
data: ModelTypes['DeleteBranchInput'];
|
|
15472
15593
|
}
|
|
15473
|
-
type IOutput$
|
|
15594
|
+
type IOutput$19 = InputType<GraphQLTypes['Mutation'], typeof mutation$X>;
|
|
15474
15595
|
|
|
15475
15596
|
declare namespace deleteBranch {
|
|
15476
|
-
export { type IInput$
|
|
15597
|
+
export { type IInput$19 as IInput, type IOutput$19 as IOutput, mutation$X as mutation, name$18 as name };
|
|
15477
15598
|
}
|
|
15478
15599
|
|
|
15479
|
-
declare const name$
|
|
15600
|
+
declare const name$17 = "deleteTrustedAccount";
|
|
15480
15601
|
declare const mutation$W: {
|
|
15481
15602
|
deleteTrustedAccount: [{
|
|
15482
15603
|
data: Variable<"DeleteTrustedAccountInput!", "data">;
|
|
@@ -15559,20 +15680,20 @@ declare const mutation$W: {
|
|
|
15559
15680
|
type: boolean;
|
|
15560
15681
|
}];
|
|
15561
15682
|
};
|
|
15562
|
-
interface IInput$
|
|
15683
|
+
interface IInput$18 {
|
|
15563
15684
|
/**
|
|
15564
15685
|
* @private
|
|
15565
15686
|
*/
|
|
15566
15687
|
[key: string]: unknown;
|
|
15567
15688
|
data: ModelTypes['DeleteTrustedAccountInput'];
|
|
15568
15689
|
}
|
|
15569
|
-
type IOutput$
|
|
15690
|
+
type IOutput$18 = InputType<GraphQLTypes['Mutation'], typeof mutation$W>;
|
|
15570
15691
|
|
|
15571
15692
|
declare namespace deleteTrustedAccount {
|
|
15572
|
-
export { type IInput$
|
|
15693
|
+
export { type IInput$18 as IInput, type IOutput$18 as IOutput, mutation$W as mutation, name$17 as name };
|
|
15573
15694
|
}
|
|
15574
15695
|
|
|
15575
|
-
declare const name$
|
|
15696
|
+
declare const name$16 = "editBranch";
|
|
15576
15697
|
declare const mutation$V: {
|
|
15577
15698
|
editBranch: [{
|
|
15578
15699
|
data: Variable<"EditBranchInput!", "data">;
|
|
@@ -15655,20 +15776,20 @@ declare const mutation$V: {
|
|
|
15655
15776
|
type: boolean;
|
|
15656
15777
|
}];
|
|
15657
15778
|
};
|
|
15658
|
-
interface IInput$
|
|
15779
|
+
interface IInput$17 {
|
|
15659
15780
|
/**
|
|
15660
15781
|
* @private
|
|
15661
15782
|
*/
|
|
15662
15783
|
[key: string]: unknown;
|
|
15663
15784
|
data: ModelTypes['EditBranchInput'];
|
|
15664
15785
|
}
|
|
15665
|
-
type IOutput$
|
|
15786
|
+
type IOutput$17 = InputType<GraphQLTypes['Mutation'], typeof mutation$V>;
|
|
15666
15787
|
|
|
15667
15788
|
declare namespace editBranch {
|
|
15668
|
-
export { type IInput$
|
|
15789
|
+
export { type IInput$17 as IInput, type IOutput$17 as IOutput, mutation$V as mutation, name$16 as name };
|
|
15669
15790
|
}
|
|
15670
15791
|
|
|
15671
|
-
declare const name$
|
|
15792
|
+
declare const name$15 = "generateSelectBranchDocument";
|
|
15672
15793
|
declare const mutation$U: {
|
|
15673
15794
|
generateSelectBranchDocument: [{
|
|
15674
15795
|
data: Variable<"SelectBranchGenerateDocumentInput!", "data">;
|
|
@@ -15681,7 +15802,7 @@ declare const mutation$U: {
|
|
|
15681
15802
|
meta: boolean;
|
|
15682
15803
|
}];
|
|
15683
15804
|
};
|
|
15684
|
-
interface IInput$
|
|
15805
|
+
interface IInput$16 {
|
|
15685
15806
|
/**
|
|
15686
15807
|
* @private
|
|
15687
15808
|
*/
|
|
@@ -15689,29 +15810,29 @@ interface IInput$15 {
|
|
|
15689
15810
|
data: ModelTypes['SelectBranchGenerateDocumentInput'];
|
|
15690
15811
|
options?: ModelTypes['GenerateDocumentOptionsInput'];
|
|
15691
15812
|
}
|
|
15692
|
-
type IOutput$
|
|
15813
|
+
type IOutput$16 = InputType<GraphQLTypes['Mutation'], typeof mutation$U>;
|
|
15693
15814
|
|
|
15694
15815
|
declare namespace generateSelectBranchDocument {
|
|
15695
|
-
export { type IInput$
|
|
15816
|
+
export { type IInput$16 as IInput, type IOutput$16 as IOutput, mutation$U as mutation, name$15 as name };
|
|
15696
15817
|
}
|
|
15697
15818
|
|
|
15698
|
-
declare const name$
|
|
15819
|
+
declare const name$14 = "selectBranch";
|
|
15699
15820
|
declare const mutation$T: {
|
|
15700
15821
|
selectBranch: [{
|
|
15701
15822
|
data: Variable<"SelectBranchInput!", "data">;
|
|
15702
15823
|
}, true];
|
|
15703
15824
|
};
|
|
15704
|
-
interface IInput$
|
|
15825
|
+
interface IInput$15 {
|
|
15705
15826
|
/**
|
|
15706
15827
|
* @private
|
|
15707
15828
|
*/
|
|
15708
15829
|
[key: string]: unknown;
|
|
15709
15830
|
data: ModelTypes['SelectBranchInput'];
|
|
15710
15831
|
}
|
|
15711
|
-
type IOutput$
|
|
15832
|
+
type IOutput$15 = InputType<GraphQLTypes['Mutation'], typeof mutation$T>;
|
|
15712
15833
|
|
|
15713
15834
|
declare namespace selectBranch {
|
|
15714
|
-
export { type IInput$
|
|
15835
|
+
export { type IInput$15 as IInput, type IOutput$15 as IOutput, mutation$T as mutation, name$14 as name };
|
|
15715
15836
|
}
|
|
15716
15837
|
|
|
15717
15838
|
/** Добавить доверенное лицо кооперативного участка */
|
|
@@ -15720,7 +15841,7 @@ declare namespace index$m {
|
|
|
15720
15841
|
export { addTrustedAccount as AddTrustedAccount, createBranch as CreateBranch, deleteBranch as DeleteBranch, deleteTrustedAccount as DeleteTrustedAccount, editBranch as EditBranch, generateSelectBranchDocument as GenerateSelectBranchDocument, selectBranch as SelectBranch };
|
|
15721
15842
|
}
|
|
15722
15843
|
|
|
15723
|
-
declare const name$
|
|
15844
|
+
declare const name$13 = "acceptChildOrder";
|
|
15724
15845
|
declare const mutation$S: {
|
|
15725
15846
|
acceptChildOrder: [{
|
|
15726
15847
|
data: Variable<"AcceptChildOrderInput!", "data">;
|
|
@@ -15736,20 +15857,20 @@ declare const mutation$S: {
|
|
|
15736
15857
|
transaction: boolean;
|
|
15737
15858
|
}];
|
|
15738
15859
|
};
|
|
15739
|
-
interface IInput$
|
|
15860
|
+
interface IInput$14 {
|
|
15740
15861
|
/**
|
|
15741
15862
|
* @private
|
|
15742
15863
|
*/
|
|
15743
15864
|
[key: string]: unknown;
|
|
15744
15865
|
data: ModelTypes['AcceptChildOrderInput'];
|
|
15745
15866
|
}
|
|
15746
|
-
type IOutput$
|
|
15867
|
+
type IOutput$14 = InputType<GraphQLTypes['Mutation'], typeof mutation$S>;
|
|
15747
15868
|
|
|
15748
15869
|
declare namespace acceptChildOrder {
|
|
15749
|
-
export { type IInput$
|
|
15870
|
+
export { type IInput$14 as IInput, type IOutput$14 as IOutput, mutation$S as mutation, name$13 as name };
|
|
15750
15871
|
}
|
|
15751
15872
|
|
|
15752
|
-
declare const name$
|
|
15873
|
+
declare const name$12 = "cancelRequest";
|
|
15753
15874
|
declare const mutation$R: {
|
|
15754
15875
|
cancelRequest: [{
|
|
15755
15876
|
data: Variable<"CancelRequestInput!", "data">;
|
|
@@ -15765,20 +15886,20 @@ declare const mutation$R: {
|
|
|
15765
15886
|
transaction: boolean;
|
|
15766
15887
|
}];
|
|
15767
15888
|
};
|
|
15768
|
-
interface IInput$
|
|
15889
|
+
interface IInput$13 {
|
|
15769
15890
|
/**
|
|
15770
15891
|
* @private
|
|
15771
15892
|
*/
|
|
15772
15893
|
[key: string]: unknown;
|
|
15773
15894
|
data: ModelTypes['CancelRequestInput'];
|
|
15774
15895
|
}
|
|
15775
|
-
type IOutput$
|
|
15896
|
+
type IOutput$13 = InputType<GraphQLTypes['Mutation'], typeof mutation$R>;
|
|
15776
15897
|
|
|
15777
15898
|
declare namespace cancelRequest {
|
|
15778
|
-
export { type IInput$
|
|
15899
|
+
export { type IInput$13 as IInput, type IOutput$13 as IOutput, mutation$R as mutation, name$12 as name };
|
|
15779
15900
|
}
|
|
15780
15901
|
|
|
15781
|
-
declare const name$
|
|
15902
|
+
declare const name$11 = "confirmReceiveOnRequest";
|
|
15782
15903
|
declare const mutation$Q: {
|
|
15783
15904
|
confirmReceiveOnRequest: [{
|
|
15784
15905
|
data: Variable<"ConfirmReceiveOnRequestInput!", "data">;
|
|
@@ -15794,20 +15915,20 @@ declare const mutation$Q: {
|
|
|
15794
15915
|
transaction: boolean;
|
|
15795
15916
|
}];
|
|
15796
15917
|
};
|
|
15797
|
-
interface IInput$
|
|
15918
|
+
interface IInput$12 {
|
|
15798
15919
|
/**
|
|
15799
15920
|
* @private
|
|
15800
15921
|
*/
|
|
15801
15922
|
[key: string]: unknown;
|
|
15802
15923
|
data: ModelTypes['ConfirmReceiveOnRequestInput'];
|
|
15803
15924
|
}
|
|
15804
|
-
type IOutput$
|
|
15925
|
+
type IOutput$12 = InputType<GraphQLTypes['Mutation'], typeof mutation$Q>;
|
|
15805
15926
|
|
|
15806
15927
|
declare namespace completeReceiveOnRequest {
|
|
15807
|
-
export { type IInput$
|
|
15928
|
+
export { type IInput$12 as IInput, type IOutput$12 as IOutput, mutation$Q as mutation, name$11 as name };
|
|
15808
15929
|
}
|
|
15809
15930
|
|
|
15810
|
-
declare const name
|
|
15931
|
+
declare const name$10 = "completeRequest";
|
|
15811
15932
|
declare const mutation$P: {
|
|
15812
15933
|
completeRequest: [{
|
|
15813
15934
|
data: Variable<"CompleteRequestInput!", "data">;
|
|
@@ -15823,20 +15944,20 @@ declare const mutation$P: {
|
|
|
15823
15944
|
transaction: boolean;
|
|
15824
15945
|
}];
|
|
15825
15946
|
};
|
|
15826
|
-
interface IInput$
|
|
15947
|
+
interface IInput$11 {
|
|
15827
15948
|
/**
|
|
15828
15949
|
* @private
|
|
15829
15950
|
*/
|
|
15830
15951
|
[key: string]: unknown;
|
|
15831
15952
|
data: ModelTypes['CompleteRequestInput'];
|
|
15832
15953
|
}
|
|
15833
|
-
type IOutput$
|
|
15954
|
+
type IOutput$11 = InputType<GraphQLTypes['Mutation'], typeof mutation$P>;
|
|
15834
15955
|
|
|
15835
15956
|
declare namespace completeRequest {
|
|
15836
|
-
export { type IInput$
|
|
15957
|
+
export { type IInput$11 as IInput, type IOutput$11 as IOutput, mutation$P as mutation, name$10 as name };
|
|
15837
15958
|
}
|
|
15838
15959
|
|
|
15839
|
-
declare const name
|
|
15960
|
+
declare const name$$ = "confirmSupplyOnRequest";
|
|
15840
15961
|
declare const mutation$O: {
|
|
15841
15962
|
confirmSupplyOnRequest: [{
|
|
15842
15963
|
data: Variable<"ConfirmSupplyOnRequestInput!", "data">;
|
|
@@ -15852,20 +15973,20 @@ declare const mutation$O: {
|
|
|
15852
15973
|
transaction: boolean;
|
|
15853
15974
|
}];
|
|
15854
15975
|
};
|
|
15855
|
-
interface IInput
|
|
15976
|
+
interface IInput$10 {
|
|
15856
15977
|
/**
|
|
15857
15978
|
* @private
|
|
15858
15979
|
*/
|
|
15859
15980
|
[key: string]: unknown;
|
|
15860
15981
|
data: ModelTypes['ConfirmSupplyOnRequestInput'];
|
|
15861
15982
|
}
|
|
15862
|
-
type IOutput
|
|
15983
|
+
type IOutput$10 = InputType<GraphQLTypes['Mutation'], typeof mutation$O>;
|
|
15863
15984
|
|
|
15864
15985
|
declare namespace confirmSupplyOnRequest {
|
|
15865
|
-
export { type IInput
|
|
15986
|
+
export { type IInput$10 as IInput, type IOutput$10 as IOutput, mutation$O as mutation, name$$ as name };
|
|
15866
15987
|
}
|
|
15867
15988
|
|
|
15868
|
-
declare const name$
|
|
15989
|
+
declare const name$_ = "createChildOrder";
|
|
15869
15990
|
declare const mutation$N: {
|
|
15870
15991
|
createChildOrder: [{
|
|
15871
15992
|
data: Variable<"CreateChildOrderInput!", "data">;
|
|
@@ -15881,20 +16002,20 @@ declare const mutation$N: {
|
|
|
15881
16002
|
transaction: boolean;
|
|
15882
16003
|
}];
|
|
15883
16004
|
};
|
|
15884
|
-
interface IInput
|
|
16005
|
+
interface IInput$$ {
|
|
15885
16006
|
/**
|
|
15886
16007
|
* @private
|
|
15887
16008
|
*/
|
|
15888
16009
|
[key: string]: unknown;
|
|
15889
16010
|
data: ModelTypes['CreateChildOrderInput'];
|
|
15890
16011
|
}
|
|
15891
|
-
type IOutput
|
|
16012
|
+
type IOutput$$ = InputType<GraphQLTypes['Mutation'], typeof mutation$N>;
|
|
15892
16013
|
|
|
15893
16014
|
declare namespace createChildOrder {
|
|
15894
|
-
export { type IInput
|
|
16015
|
+
export { type IInput$$ as IInput, type IOutput$$ as IOutput, mutation$N as mutation, name$_ as name };
|
|
15895
16016
|
}
|
|
15896
16017
|
|
|
15897
|
-
declare const name$
|
|
16018
|
+
declare const name$Z = "createParentOffer";
|
|
15898
16019
|
declare const mutation$M: {
|
|
15899
16020
|
createParentOffer: [{
|
|
15900
16021
|
data: Variable<"CreateParentOfferInput!", "data">;
|
|
@@ -15910,20 +16031,20 @@ declare const mutation$M: {
|
|
|
15910
16031
|
transaction: boolean;
|
|
15911
16032
|
}];
|
|
15912
16033
|
};
|
|
15913
|
-
interface IInput$
|
|
16034
|
+
interface IInput$_ {
|
|
15914
16035
|
/**
|
|
15915
16036
|
* @private
|
|
15916
16037
|
*/
|
|
15917
16038
|
[key: string]: unknown;
|
|
15918
16039
|
data: ModelTypes['CreateParentOfferInput'];
|
|
15919
16040
|
}
|
|
15920
|
-
type IOutput$
|
|
16041
|
+
type IOutput$_ = InputType<GraphQLTypes['Mutation'], typeof mutation$M>;
|
|
15921
16042
|
|
|
15922
16043
|
declare namespace createParentOffer {
|
|
15923
|
-
export { type IInput$
|
|
16044
|
+
export { type IInput$_ as IInput, type IOutput$_ as IOutput, mutation$M as mutation, name$Z as name };
|
|
15924
16045
|
}
|
|
15925
16046
|
|
|
15926
|
-
declare const name$
|
|
16047
|
+
declare const name$Y = "declineRequest";
|
|
15927
16048
|
declare const mutation$L: {
|
|
15928
16049
|
declineRequest: [{
|
|
15929
16050
|
data: Variable<"DeclineRequestInput!", "data">;
|
|
@@ -15939,20 +16060,20 @@ declare const mutation$L: {
|
|
|
15939
16060
|
transaction: boolean;
|
|
15940
16061
|
}];
|
|
15941
16062
|
};
|
|
15942
|
-
interface IInput$
|
|
16063
|
+
interface IInput$Z {
|
|
15943
16064
|
/**
|
|
15944
16065
|
* @private
|
|
15945
16066
|
*/
|
|
15946
16067
|
[key: string]: unknown;
|
|
15947
16068
|
data: ModelTypes['DeclineRequestInput'];
|
|
15948
16069
|
}
|
|
15949
|
-
type IOutput$
|
|
16070
|
+
type IOutput$Z = InputType<GraphQLTypes['Mutation'], typeof mutation$L>;
|
|
15950
16071
|
|
|
15951
16072
|
declare namespace declineRequest {
|
|
15952
|
-
export { type IInput$
|
|
16073
|
+
export { type IInput$Z as IInput, type IOutput$Z as IOutput, mutation$L as mutation, name$Y as name };
|
|
15953
16074
|
}
|
|
15954
16075
|
|
|
15955
|
-
declare const name$
|
|
16076
|
+
declare const name$X = "deliverOnRequest";
|
|
15956
16077
|
declare const mutation$K: {
|
|
15957
16078
|
deliverOnRequest: [{
|
|
15958
16079
|
data: Variable<"DeliverOnRequestInput!", "data">;
|
|
@@ -15968,20 +16089,20 @@ declare const mutation$K: {
|
|
|
15968
16089
|
transaction: boolean;
|
|
15969
16090
|
}];
|
|
15970
16091
|
};
|
|
15971
|
-
interface IInput$
|
|
16092
|
+
interface IInput$Y {
|
|
15972
16093
|
/**
|
|
15973
16094
|
* @private
|
|
15974
16095
|
*/
|
|
15975
16096
|
[key: string]: unknown;
|
|
15976
16097
|
data: ModelTypes['DeliverOnRequestInput'];
|
|
15977
16098
|
}
|
|
15978
|
-
type IOutput$
|
|
16099
|
+
type IOutput$Y = InputType<GraphQLTypes['Mutation'], typeof mutation$K>;
|
|
15979
16100
|
|
|
15980
16101
|
declare namespace deliverOnRequest {
|
|
15981
|
-
export { type IInput$
|
|
16102
|
+
export { type IInput$Y as IInput, type IOutput$Y as IOutput, mutation$K as mutation, name$X as name };
|
|
15982
16103
|
}
|
|
15983
16104
|
|
|
15984
|
-
declare const name$
|
|
16105
|
+
declare const name$W = "disputeOnRequest";
|
|
15985
16106
|
declare const mutation$J: {
|
|
15986
16107
|
disputeOnRequest: [{
|
|
15987
16108
|
data: Variable<"DisputeOnRequestInput!", "data">;
|
|
@@ -15997,20 +16118,20 @@ declare const mutation$J: {
|
|
|
15997
16118
|
transaction: boolean;
|
|
15998
16119
|
}];
|
|
15999
16120
|
};
|
|
16000
|
-
interface IInput$
|
|
16121
|
+
interface IInput$X {
|
|
16001
16122
|
/**
|
|
16002
16123
|
* @private
|
|
16003
16124
|
*/
|
|
16004
16125
|
[key: string]: unknown;
|
|
16005
16126
|
data: ModelTypes['DisputeOnRequestInput'];
|
|
16006
16127
|
}
|
|
16007
|
-
type IOutput$
|
|
16128
|
+
type IOutput$X = InputType<GraphQLTypes['Mutation'], typeof mutation$J>;
|
|
16008
16129
|
|
|
16009
16130
|
declare namespace disputeOnRequest {
|
|
16010
|
-
export { type IInput$
|
|
16131
|
+
export { type IInput$X as IInput, type IOutput$X as IOutput, mutation$J as mutation, name$W as name };
|
|
16011
16132
|
}
|
|
16012
16133
|
|
|
16013
|
-
declare const name$
|
|
16134
|
+
declare const name$V = "generateAssetContributionAct";
|
|
16014
16135
|
declare const mutation$I: {
|
|
16015
16136
|
generateAssetContributionAct: [{
|
|
16016
16137
|
data: Variable<"AssetContributionActGenerateDocumentInput!", "data">;
|
|
@@ -16023,7 +16144,7 @@ declare const mutation$I: {
|
|
|
16023
16144
|
meta: boolean;
|
|
16024
16145
|
}];
|
|
16025
16146
|
};
|
|
16026
|
-
interface IInput$
|
|
16147
|
+
interface IInput$W {
|
|
16027
16148
|
/**
|
|
16028
16149
|
* @private
|
|
16029
16150
|
*/
|
|
@@ -16031,13 +16152,13 @@ interface IInput$V {
|
|
|
16031
16152
|
data: ModelTypes['AssetContributionActGenerateDocumentInput'];
|
|
16032
16153
|
options?: ModelTypes['GenerateDocumentOptionsInput'];
|
|
16033
16154
|
}
|
|
16034
|
-
type IOutput$
|
|
16155
|
+
type IOutput$W = InputType<GraphQLTypes['Mutation'], typeof mutation$I>;
|
|
16035
16156
|
|
|
16036
16157
|
declare namespace generateAssetContributionAct {
|
|
16037
|
-
export { type IInput$
|
|
16158
|
+
export { type IInput$W as IInput, type IOutput$W as IOutput, mutation$I as mutation, name$V as name };
|
|
16038
16159
|
}
|
|
16039
16160
|
|
|
16040
|
-
declare const name$
|
|
16161
|
+
declare const name$U = "generateAssetContributionDecision";
|
|
16041
16162
|
declare const mutation$H: {
|
|
16042
16163
|
generateAssetContributionDecision: [{
|
|
16043
16164
|
data: Variable<"AssetContributionDecisionGenerateDocumentInput!", "data">;
|
|
@@ -16050,7 +16171,7 @@ declare const mutation$H: {
|
|
|
16050
16171
|
meta: boolean;
|
|
16051
16172
|
}];
|
|
16052
16173
|
};
|
|
16053
|
-
interface IInput$
|
|
16174
|
+
interface IInput$V {
|
|
16054
16175
|
/**
|
|
16055
16176
|
* @private
|
|
16056
16177
|
*/
|
|
@@ -16058,13 +16179,13 @@ interface IInput$U {
|
|
|
16058
16179
|
data: ModelTypes['AssetContributionDecisionGenerateDocumentInput'];
|
|
16059
16180
|
options?: ModelTypes['GenerateDocumentOptionsInput'];
|
|
16060
16181
|
}
|
|
16061
|
-
type IOutput$
|
|
16182
|
+
type IOutput$V = InputType<GraphQLTypes['Mutation'], typeof mutation$H>;
|
|
16062
16183
|
|
|
16063
16184
|
declare namespace generateAssetContributionDecision {
|
|
16064
|
-
export { type IInput$
|
|
16185
|
+
export { type IInput$V as IInput, type IOutput$V as IOutput, mutation$H as mutation, name$U as name };
|
|
16065
16186
|
}
|
|
16066
16187
|
|
|
16067
|
-
declare const name$
|
|
16188
|
+
declare const name$T = "generateAssetContributionStatement";
|
|
16068
16189
|
declare const mutation$G: {
|
|
16069
16190
|
generateAssetContributionStatement: [{
|
|
16070
16191
|
data: Variable<"AssetContributionStatementGenerateDocumentInput!", "data">;
|
|
@@ -16077,7 +16198,7 @@ declare const mutation$G: {
|
|
|
16077
16198
|
meta: boolean;
|
|
16078
16199
|
}];
|
|
16079
16200
|
};
|
|
16080
|
-
interface IInput$
|
|
16201
|
+
interface IInput$U {
|
|
16081
16202
|
/**
|
|
16082
16203
|
* @private
|
|
16083
16204
|
*/
|
|
@@ -16085,13 +16206,13 @@ interface IInput$T {
|
|
|
16085
16206
|
data: ModelTypes['AssetContributionStatementGenerateDocumentInput'];
|
|
16086
16207
|
options?: ModelTypes['GenerateDocumentOptionsInput'];
|
|
16087
16208
|
}
|
|
16088
|
-
type IOutput$
|
|
16209
|
+
type IOutput$U = InputType<GraphQLTypes['Mutation'], typeof mutation$G>;
|
|
16089
16210
|
|
|
16090
16211
|
declare namespace generateAssetContributionStatement {
|
|
16091
|
-
export { type IInput$
|
|
16212
|
+
export { type IInput$U as IInput, type IOutput$U as IOutput, mutation$G as mutation, name$T as name };
|
|
16092
16213
|
}
|
|
16093
16214
|
|
|
16094
|
-
declare const name$
|
|
16215
|
+
declare const name$S = "generateReturnByAssetAct";
|
|
16095
16216
|
declare const mutation$F: {
|
|
16096
16217
|
generateReturnByAssetAct: [{
|
|
16097
16218
|
data: Variable<"ReturnByAssetActGenerateDocumentInput!", "data">;
|
|
@@ -16104,7 +16225,7 @@ declare const mutation$F: {
|
|
|
16104
16225
|
meta: boolean;
|
|
16105
16226
|
}];
|
|
16106
16227
|
};
|
|
16107
|
-
interface IInput$
|
|
16228
|
+
interface IInput$T {
|
|
16108
16229
|
/**
|
|
16109
16230
|
* @private
|
|
16110
16231
|
*/
|
|
@@ -16112,13 +16233,13 @@ interface IInput$S {
|
|
|
16112
16233
|
data: ModelTypes['ReturnByAssetActGenerateDocumentInput'];
|
|
16113
16234
|
options?: ModelTypes['GenerateDocumentOptionsInput'];
|
|
16114
16235
|
}
|
|
16115
|
-
type IOutput$
|
|
16236
|
+
type IOutput$T = InputType<GraphQLTypes['Mutation'], typeof mutation$F>;
|
|
16116
16237
|
|
|
16117
16238
|
declare namespace generateReturnByAssetAct {
|
|
16118
|
-
export { type IInput$
|
|
16239
|
+
export { type IInput$T as IInput, type IOutput$T as IOutput, mutation$F as mutation, name$S as name };
|
|
16119
16240
|
}
|
|
16120
16241
|
|
|
16121
|
-
declare const name$
|
|
16242
|
+
declare const name$R = "generateReturnByAssetDecision";
|
|
16122
16243
|
declare const mutation$E: {
|
|
16123
16244
|
generateReturnByAssetDecision: [{
|
|
16124
16245
|
data: Variable<"ReturnByAssetDecisionGenerateDocumentInput!", "data">;
|
|
@@ -16131,7 +16252,7 @@ declare const mutation$E: {
|
|
|
16131
16252
|
meta: boolean;
|
|
16132
16253
|
}];
|
|
16133
16254
|
};
|
|
16134
|
-
interface IInput$
|
|
16255
|
+
interface IInput$S {
|
|
16135
16256
|
/**
|
|
16136
16257
|
* @private
|
|
16137
16258
|
*/
|
|
@@ -16139,13 +16260,13 @@ interface IInput$R {
|
|
|
16139
16260
|
data: ModelTypes['ReturnByAssetDecisionGenerateDocumentInput'];
|
|
16140
16261
|
options?: ModelTypes['GenerateDocumentOptionsInput'];
|
|
16141
16262
|
}
|
|
16142
|
-
type IOutput$
|
|
16263
|
+
type IOutput$S = InputType<GraphQLTypes['Mutation'], typeof mutation$E>;
|
|
16143
16264
|
|
|
16144
16265
|
declare namespace generateReturnByAssetDecision {
|
|
16145
|
-
export { type IInput$
|
|
16266
|
+
export { type IInput$S as IInput, type IOutput$S as IOutput, mutation$E as mutation, name$R as name };
|
|
16146
16267
|
}
|
|
16147
16268
|
|
|
16148
|
-
declare const name$
|
|
16269
|
+
declare const name$Q = "generateReturnByAssetStatement";
|
|
16149
16270
|
declare const mutation$D: {
|
|
16150
16271
|
generateReturnByAssetStatement: [{
|
|
16151
16272
|
data: Variable<"ReturnByAssetStatementGenerateDocumentInput!", "data">;
|
|
@@ -16158,7 +16279,7 @@ declare const mutation$D: {
|
|
|
16158
16279
|
meta: boolean;
|
|
16159
16280
|
}];
|
|
16160
16281
|
};
|
|
16161
|
-
interface IInput$
|
|
16282
|
+
interface IInput$R {
|
|
16162
16283
|
/**
|
|
16163
16284
|
* @private
|
|
16164
16285
|
*/
|
|
@@ -16166,13 +16287,13 @@ interface IInput$Q {
|
|
|
16166
16287
|
data: ModelTypes['ReturnByAssetStatementGenerateDocumentInput'];
|
|
16167
16288
|
options?: ModelTypes['GenerateDocumentOptionsInput'];
|
|
16168
16289
|
}
|
|
16169
|
-
type IOutput$
|
|
16290
|
+
type IOutput$R = InputType<GraphQLTypes['Mutation'], typeof mutation$D>;
|
|
16170
16291
|
|
|
16171
16292
|
declare namespace generateReturnByAssetStatement {
|
|
16172
|
-
export { type IInput$
|
|
16293
|
+
export { type IInput$R as IInput, type IOutput$R as IOutput, mutation$D as mutation, name$Q as name };
|
|
16173
16294
|
}
|
|
16174
16295
|
|
|
16175
|
-
declare const name$
|
|
16296
|
+
declare const name$P = "moderateRequest";
|
|
16176
16297
|
declare const mutation$C: {
|
|
16177
16298
|
moderateRequest: [{
|
|
16178
16299
|
data: Variable<"ModerateRequestInput!", "data">;
|
|
@@ -16188,20 +16309,20 @@ declare const mutation$C: {
|
|
|
16188
16309
|
transaction: boolean;
|
|
16189
16310
|
}];
|
|
16190
16311
|
};
|
|
16191
|
-
interface IInput$
|
|
16312
|
+
interface IInput$Q {
|
|
16192
16313
|
/**
|
|
16193
16314
|
* @private
|
|
16194
16315
|
*/
|
|
16195
16316
|
[key: string]: unknown;
|
|
16196
16317
|
data: ModelTypes['ModerateRequestInput'];
|
|
16197
16318
|
}
|
|
16198
|
-
type IOutput$
|
|
16319
|
+
type IOutput$Q = InputType<GraphQLTypes['Mutation'], typeof mutation$C>;
|
|
16199
16320
|
|
|
16200
16321
|
declare namespace moderateRequest {
|
|
16201
|
-
export { type IInput$
|
|
16322
|
+
export { type IInput$Q as IInput, type IOutput$Q as IOutput, mutation$C as mutation, name$P as name };
|
|
16202
16323
|
}
|
|
16203
16324
|
|
|
16204
|
-
declare const name$
|
|
16325
|
+
declare const name$O = "prohibitRequest";
|
|
16205
16326
|
declare const mutation$B: {
|
|
16206
16327
|
prohibitRequest: [{
|
|
16207
16328
|
data: Variable<"ProhibitRequestInput!", "data">;
|
|
@@ -16217,20 +16338,20 @@ declare const mutation$B: {
|
|
|
16217
16338
|
transaction: boolean;
|
|
16218
16339
|
}];
|
|
16219
16340
|
};
|
|
16220
|
-
interface IInput$
|
|
16341
|
+
interface IInput$P {
|
|
16221
16342
|
/**
|
|
16222
16343
|
* @private
|
|
16223
16344
|
*/
|
|
16224
16345
|
[key: string]: unknown;
|
|
16225
16346
|
data: ModelTypes['ProhibitRequestInput'];
|
|
16226
16347
|
}
|
|
16227
|
-
type IOutput$
|
|
16348
|
+
type IOutput$P = InputType<GraphQLTypes['Mutation'], typeof mutation$B>;
|
|
16228
16349
|
|
|
16229
16350
|
declare namespace prohibitRequest {
|
|
16230
|
-
export { type IInput$
|
|
16351
|
+
export { type IInput$P as IInput, type IOutput$P as IOutput, mutation$B as mutation, name$O as name };
|
|
16231
16352
|
}
|
|
16232
16353
|
|
|
16233
|
-
declare const name$
|
|
16354
|
+
declare const name$N = "publishRequest";
|
|
16234
16355
|
declare const mutation$A: {
|
|
16235
16356
|
publishRequest: [{
|
|
16236
16357
|
data: Variable<"PublishRequestInput!", "data">;
|
|
@@ -16246,20 +16367,20 @@ declare const mutation$A: {
|
|
|
16246
16367
|
transaction: boolean;
|
|
16247
16368
|
}];
|
|
16248
16369
|
};
|
|
16249
|
-
interface IInput$
|
|
16370
|
+
interface IInput$O {
|
|
16250
16371
|
/**
|
|
16251
16372
|
* @private
|
|
16252
16373
|
*/
|
|
16253
16374
|
[key: string]: unknown;
|
|
16254
16375
|
data: ModelTypes['PublishRequestInput'];
|
|
16255
16376
|
}
|
|
16256
|
-
type IOutput$
|
|
16377
|
+
type IOutput$O = InputType<GraphQLTypes['Mutation'], typeof mutation$A>;
|
|
16257
16378
|
|
|
16258
16379
|
declare namespace publishRequest {
|
|
16259
|
-
export { type IInput$
|
|
16380
|
+
export { type IInput$O as IInput, type IOutput$O as IOutput, mutation$A as mutation, name$N as name };
|
|
16260
16381
|
}
|
|
16261
16382
|
|
|
16262
|
-
declare const name$
|
|
16383
|
+
declare const name$M = "receiveOnRequest";
|
|
16263
16384
|
declare const mutation$z: {
|
|
16264
16385
|
receiveOnRequest: [{
|
|
16265
16386
|
data: Variable<"ReceiveOnRequestInput!", "data">;
|
|
@@ -16275,20 +16396,20 @@ declare const mutation$z: {
|
|
|
16275
16396
|
transaction: boolean;
|
|
16276
16397
|
}];
|
|
16277
16398
|
};
|
|
16278
|
-
interface IInput$
|
|
16399
|
+
interface IInput$N {
|
|
16279
16400
|
/**
|
|
16280
16401
|
* @private
|
|
16281
16402
|
*/
|
|
16282
16403
|
[key: string]: unknown;
|
|
16283
16404
|
data: ModelTypes['ReceiveOnRequestInput'];
|
|
16284
16405
|
}
|
|
16285
|
-
type IOutput$
|
|
16406
|
+
type IOutput$N = InputType<GraphQLTypes['Mutation'], typeof mutation$z>;
|
|
16286
16407
|
|
|
16287
16408
|
declare namespace receiveOnRequest {
|
|
16288
|
-
export { type IInput$
|
|
16409
|
+
export { type IInput$N as IInput, type IOutput$N as IOutput, mutation$z as mutation, name$M as name };
|
|
16289
16410
|
}
|
|
16290
16411
|
|
|
16291
|
-
declare const name$
|
|
16412
|
+
declare const name$L = "supplyOnRequest";
|
|
16292
16413
|
declare const mutation$y: {
|
|
16293
16414
|
supplyOnRequest: [{
|
|
16294
16415
|
data: Variable<"SupplyOnRequestInput!", "data">;
|
|
@@ -16304,20 +16425,20 @@ declare const mutation$y: {
|
|
|
16304
16425
|
transaction: boolean;
|
|
16305
16426
|
}];
|
|
16306
16427
|
};
|
|
16307
|
-
interface IInput$
|
|
16428
|
+
interface IInput$M {
|
|
16308
16429
|
/**
|
|
16309
16430
|
* @private
|
|
16310
16431
|
*/
|
|
16311
16432
|
[key: string]: unknown;
|
|
16312
16433
|
data: ModelTypes['SupplyOnRequestInput'];
|
|
16313
16434
|
}
|
|
16314
|
-
type IOutput$
|
|
16435
|
+
type IOutput$M = InputType<GraphQLTypes['Mutation'], typeof mutation$y>;
|
|
16315
16436
|
|
|
16316
16437
|
declare namespace supplyOnRequest {
|
|
16317
|
-
export { type IInput$
|
|
16438
|
+
export { type IInput$M as IInput, type IOutput$M as IOutput, mutation$y as mutation, name$L as name };
|
|
16318
16439
|
}
|
|
16319
16440
|
|
|
16320
|
-
declare const name$
|
|
16441
|
+
declare const name$K = "unpublishRequest";
|
|
16321
16442
|
declare const mutation$x: {
|
|
16322
16443
|
unpublishRequest: [{
|
|
16323
16444
|
data: Variable<"UnpublishRequestInput!", "data">;
|
|
@@ -16333,20 +16454,20 @@ declare const mutation$x: {
|
|
|
16333
16454
|
transaction: boolean;
|
|
16334
16455
|
}];
|
|
16335
16456
|
};
|
|
16336
|
-
interface IInput$
|
|
16457
|
+
interface IInput$L {
|
|
16337
16458
|
/**
|
|
16338
16459
|
* @private
|
|
16339
16460
|
*/
|
|
16340
16461
|
[key: string]: unknown;
|
|
16341
16462
|
data: ModelTypes['UnpublishRequestInput'];
|
|
16342
16463
|
}
|
|
16343
|
-
type IOutput$
|
|
16464
|
+
type IOutput$L = InputType<GraphQLTypes['Mutation'], typeof mutation$x>;
|
|
16344
16465
|
|
|
16345
16466
|
declare namespace unpublishRequest {
|
|
16346
|
-
export { type IInput$
|
|
16467
|
+
export { type IInput$L as IInput, type IOutput$L as IOutput, mutation$x as mutation, name$K as name };
|
|
16347
16468
|
}
|
|
16348
16469
|
|
|
16349
|
-
declare const name$
|
|
16470
|
+
declare const name$J = "updateRequest";
|
|
16350
16471
|
declare const mutation$w: {
|
|
16351
16472
|
updateRequest: [{
|
|
16352
16473
|
data: Variable<"UpdateRequestInput!", "data">;
|
|
@@ -16362,17 +16483,17 @@ declare const mutation$w: {
|
|
|
16362
16483
|
transaction: boolean;
|
|
16363
16484
|
}];
|
|
16364
16485
|
};
|
|
16365
|
-
interface IInput$
|
|
16486
|
+
interface IInput$K {
|
|
16366
16487
|
/**
|
|
16367
16488
|
* @private
|
|
16368
16489
|
*/
|
|
16369
16490
|
[key: string]: unknown;
|
|
16370
16491
|
data: ModelTypes['UpdateRequestInput'];
|
|
16371
16492
|
}
|
|
16372
|
-
type IOutput$
|
|
16493
|
+
type IOutput$K = InputType<GraphQLTypes['Mutation'], typeof mutation$w>;
|
|
16373
16494
|
|
|
16374
16495
|
declare namespace updateRequest {
|
|
16375
|
-
export { type IInput$
|
|
16496
|
+
export { type IInput$K as IInput, type IOutput$K as IOutput, mutation$w as mutation, name$J as name };
|
|
16376
16497
|
}
|
|
16377
16498
|
|
|
16378
16499
|
/** Подтвердить поставку имущества на заявку */
|
|
@@ -16381,7 +16502,7 @@ declare namespace index$l {
|
|
|
16381
16502
|
export { acceptChildOrder as AcceptChildOrder, cancelRequest as CancelRequest, completeReceiveOnRequest as CompleteReceiveOnRequest, completeRequest as CompleteRequest, confirmSupplyOnRequest as ConfirmSupplyOnRequest, createChildOrder as CreateChildOrder, createParentOffer as CreateParentOffer, declineRequest as DeclineRequest, deliverOnRequest as DeliverOnRequest, disputeOnRequest as DisputeOnRequest, generateAssetContributionAct as GenerateAssetContributionAct, generateAssetContributionDecision as GenerateAssetContributionDecision, generateAssetContributionStatement as GenerateAssetContributionStatement, generateReturnByAssetAct as GenerateReturnByAssetAct, generateReturnByAssetDecision as GenerateReturnByAssetDecision, generateReturnByAssetStatement as GenerateReturnByAssetStatement, moderateRequest as ModerateRequest, prohibitRequest as ProhibitRequest, publishRequest as PublishRequest, receiveOnRequest as ReceiveOnRequest, supplyOnRequest as SupplyOnRequest, unpublishRequest as UnpublishRequest, updateRequest as UpdateRequest };
|
|
16382
16503
|
}
|
|
16383
16504
|
|
|
16384
|
-
declare const name$
|
|
16505
|
+
declare const name$I = "installExtension";
|
|
16385
16506
|
declare const mutation$v: {
|
|
16386
16507
|
installExtension: [{
|
|
16387
16508
|
data: Variable<"ExtensionInput!", "data">;
|
|
@@ -16406,39 +16527,39 @@ declare const mutation$v: {
|
|
|
16406
16527
|
instructions: boolean;
|
|
16407
16528
|
}];
|
|
16408
16529
|
};
|
|
16409
|
-
interface IInput$
|
|
16530
|
+
interface IInput$J {
|
|
16410
16531
|
/**
|
|
16411
16532
|
* @private
|
|
16412
16533
|
*/
|
|
16413
16534
|
[key: string]: unknown;
|
|
16414
16535
|
data: ModelTypes['ExtensionInput'];
|
|
16415
16536
|
}
|
|
16416
|
-
type IOutput$
|
|
16537
|
+
type IOutput$J = InputType<GraphQLTypes['Mutation'], typeof mutation$v>;
|
|
16417
16538
|
|
|
16418
16539
|
declare namespace installExtension {
|
|
16419
|
-
export { type IInput$
|
|
16540
|
+
export { type IInput$J as IInput, type IOutput$J as IOutput, mutation$v as mutation, name$I as name };
|
|
16420
16541
|
}
|
|
16421
16542
|
|
|
16422
|
-
declare const name$
|
|
16543
|
+
declare const name$H = "uninstallExtension";
|
|
16423
16544
|
declare const mutation$u: {
|
|
16424
16545
|
uninstallExtension: [{
|
|
16425
16546
|
data: Variable<"UninstallExtensionInput!", "data">;
|
|
16426
16547
|
}, true];
|
|
16427
16548
|
};
|
|
16428
|
-
interface IInput$
|
|
16549
|
+
interface IInput$I {
|
|
16429
16550
|
/**
|
|
16430
16551
|
* @private
|
|
16431
16552
|
*/
|
|
16432
16553
|
[key: string]: unknown;
|
|
16433
16554
|
data: ModelTypes['UninstallExtensionInput'];
|
|
16434
16555
|
}
|
|
16435
|
-
type IOutput$
|
|
16556
|
+
type IOutput$I = InputType<GraphQLTypes['Mutation'], typeof mutation$u>;
|
|
16436
16557
|
|
|
16437
16558
|
declare namespace uninstallExtension {
|
|
16438
|
-
export { type IInput$
|
|
16559
|
+
export { type IInput$I as IInput, type IOutput$I as IOutput, mutation$u as mutation, name$H as name };
|
|
16439
16560
|
}
|
|
16440
16561
|
|
|
16441
|
-
declare const name$
|
|
16562
|
+
declare const name$G = "updateExtension";
|
|
16442
16563
|
declare const mutation$t: {
|
|
16443
16564
|
updateExtension: [{
|
|
16444
16565
|
data: Variable<"ExtensionInput!", "data">;
|
|
@@ -16463,17 +16584,17 @@ declare const mutation$t: {
|
|
|
16463
16584
|
instructions: boolean;
|
|
16464
16585
|
}];
|
|
16465
16586
|
};
|
|
16466
|
-
interface IInput$
|
|
16587
|
+
interface IInput$H {
|
|
16467
16588
|
/**
|
|
16468
16589
|
* @private
|
|
16469
16590
|
*/
|
|
16470
16591
|
[key: string]: unknown;
|
|
16471
16592
|
data: ModelTypes['ExtensionInput'];
|
|
16472
16593
|
}
|
|
16473
|
-
type IOutput$
|
|
16594
|
+
type IOutput$H = InputType<GraphQLTypes['Mutation'], typeof mutation$t>;
|
|
16474
16595
|
|
|
16475
16596
|
declare namespace updateExtension {
|
|
16476
|
-
export { type IInput$
|
|
16597
|
+
export { type IInput$H as IInput, type IOutput$H as IOutput, mutation$t as mutation, name$G as name };
|
|
16477
16598
|
}
|
|
16478
16599
|
|
|
16479
16600
|
/** Установить расширение */
|
|
@@ -16482,7 +16603,7 @@ declare namespace index$k {
|
|
|
16482
16603
|
export { installExtension as InstallExtension, uninstallExtension as UninstallExtension, updateExtension as UpdateExtension };
|
|
16483
16604
|
}
|
|
16484
16605
|
|
|
16485
|
-
declare const name$
|
|
16606
|
+
declare const name$F = "generateProjectOfFreeDecision";
|
|
16486
16607
|
declare const mutation$s: {
|
|
16487
16608
|
generateProjectOfFreeDecision: [{
|
|
16488
16609
|
data: Variable<"ProjectFreeDecisionGenerateDocumentInput!", "data">;
|
|
@@ -16495,7 +16616,7 @@ declare const mutation$s: {
|
|
|
16495
16616
|
meta: boolean;
|
|
16496
16617
|
}];
|
|
16497
16618
|
};
|
|
16498
|
-
interface IInput$
|
|
16619
|
+
interface IInput$G {
|
|
16499
16620
|
/**
|
|
16500
16621
|
* @private
|
|
16501
16622
|
*/
|
|
@@ -16503,13 +16624,13 @@ interface IInput$F {
|
|
|
16503
16624
|
data: ModelTypes['ProjectFreeDecisionGenerateDocumentInput'];
|
|
16504
16625
|
options?: ModelTypes['GenerateDocumentOptionsInput'];
|
|
16505
16626
|
}
|
|
16506
|
-
type IOutput$
|
|
16627
|
+
type IOutput$G = InputType<GraphQLTypes['Mutation'], typeof mutation$s>;
|
|
16507
16628
|
|
|
16508
16629
|
declare namespace generateProjectOfFreeDecisionDocument {
|
|
16509
|
-
export { type IInput$
|
|
16630
|
+
export { type IInput$G as IInput, type IOutput$G as IOutput, mutation$s as mutation, name$F as name };
|
|
16510
16631
|
}
|
|
16511
16632
|
|
|
16512
|
-
declare const name$
|
|
16633
|
+
declare const name$E = "generateFreeDecision";
|
|
16513
16634
|
declare const mutation$r: {
|
|
16514
16635
|
generateFreeDecision: [{
|
|
16515
16636
|
data: Variable<"FreeDecisionGenerateDocumentInput!", "data">;
|
|
@@ -16522,7 +16643,7 @@ declare const mutation$r: {
|
|
|
16522
16643
|
meta: boolean;
|
|
16523
16644
|
}];
|
|
16524
16645
|
};
|
|
16525
|
-
interface IInput$
|
|
16646
|
+
interface IInput$F {
|
|
16526
16647
|
/**
|
|
16527
16648
|
* @private
|
|
16528
16649
|
*/
|
|
@@ -16530,32 +16651,32 @@ interface IInput$E {
|
|
|
16530
16651
|
data: ModelTypes['FreeDecisionGenerateDocumentInput'];
|
|
16531
16652
|
options?: ModelTypes['GenerateDocumentOptionsInput'];
|
|
16532
16653
|
}
|
|
16533
|
-
type IOutput$
|
|
16654
|
+
type IOutput$F = InputType<GraphQLTypes['Mutation'], typeof mutation$r>;
|
|
16534
16655
|
|
|
16535
16656
|
declare namespace generateFreeDecision {
|
|
16536
|
-
export { type IInput$
|
|
16657
|
+
export { type IInput$F as IInput, type IOutput$F as IOutput, mutation$r as mutation, name$E as name };
|
|
16537
16658
|
}
|
|
16538
16659
|
|
|
16539
|
-
declare const name$
|
|
16660
|
+
declare const name$D = "publishProjectOfFreeDecision";
|
|
16540
16661
|
declare const mutation$q: {
|
|
16541
16662
|
publishProjectOfFreeDecision: [{
|
|
16542
16663
|
data: Variable<"PublishProjectFreeDecisionInput!", "data">;
|
|
16543
16664
|
}, true];
|
|
16544
16665
|
};
|
|
16545
|
-
interface IInput$
|
|
16666
|
+
interface IInput$E {
|
|
16546
16667
|
/**
|
|
16547
16668
|
* @private
|
|
16548
16669
|
*/
|
|
16549
16670
|
[key: string]: unknown;
|
|
16550
16671
|
data: ModelTypes['PublishProjectFreeDecisionInput'];
|
|
16551
16672
|
}
|
|
16552
|
-
type IOutput$
|
|
16673
|
+
type IOutput$E = InputType<GraphQLTypes['Mutation'], typeof mutation$q>;
|
|
16553
16674
|
|
|
16554
16675
|
declare namespace publishProjectOfFreeDecision {
|
|
16555
|
-
export { type IInput$
|
|
16676
|
+
export { type IInput$E as IInput, type IOutput$E as IOutput, mutation$q as mutation, name$D as name };
|
|
16556
16677
|
}
|
|
16557
16678
|
|
|
16558
|
-
declare const name$
|
|
16679
|
+
declare const name$C = "createProjectOfFreeDecision";
|
|
16559
16680
|
declare const mutation$p: {
|
|
16560
16681
|
createProjectOfFreeDecision: [{
|
|
16561
16682
|
data: Variable<"CreateProjectFreeDecisionInput!", "data">;
|
|
@@ -16565,17 +16686,17 @@ declare const mutation$p: {
|
|
|
16565
16686
|
question: boolean;
|
|
16566
16687
|
}];
|
|
16567
16688
|
};
|
|
16568
|
-
interface IInput$
|
|
16689
|
+
interface IInput$D {
|
|
16569
16690
|
/**
|
|
16570
16691
|
* @private
|
|
16571
16692
|
*/
|
|
16572
16693
|
[key: string]: unknown;
|
|
16573
16694
|
data: ModelTypes['CreateProjectFreeDecisionInput'];
|
|
16574
16695
|
}
|
|
16575
|
-
type IOutput$
|
|
16696
|
+
type IOutput$D = InputType<GraphQLTypes['Mutation'], typeof mutation$p>;
|
|
16576
16697
|
|
|
16577
16698
|
declare namespace createProjectOfFreeDecision {
|
|
16578
|
-
export { type IInput$
|
|
16699
|
+
export { type IInput$D as IInput, type IOutput$D as IOutput, mutation$p as mutation, name$C as name };
|
|
16579
16700
|
}
|
|
16580
16701
|
|
|
16581
16702
|
/** Сгенерировать документ проекта свободного решения */
|
|
@@ -16584,7 +16705,7 @@ declare namespace index$j {
|
|
|
16584
16705
|
export { createProjectOfFreeDecision as CreateProjectOfFreeDecision, generateFreeDecision as GenerateFreeDecision, generateProjectOfFreeDecisionDocument as GenerateProjectOfFreeDecision, publishProjectOfFreeDecision as PublishProjectOfFreeDecision };
|
|
16585
16706
|
}
|
|
16586
16707
|
|
|
16587
|
-
declare const name$
|
|
16708
|
+
declare const name$B = "createAnnualGeneralMeet";
|
|
16588
16709
|
/**
|
|
16589
16710
|
* Сгенерировать документ предложения повестки очередного общего собрания пайщиков
|
|
16590
16711
|
*/
|
|
@@ -17092,6 +17213,7 @@ declare const mutation$o: {
|
|
|
17092
17213
|
};
|
|
17093
17214
|
};
|
|
17094
17215
|
notified_users: boolean;
|
|
17216
|
+
level: boolean;
|
|
17095
17217
|
};
|
|
17096
17218
|
questions: {
|
|
17097
17219
|
id: boolean;
|
|
@@ -17297,20 +17419,20 @@ declare const mutation$o: {
|
|
|
17297
17419
|
};
|
|
17298
17420
|
}];
|
|
17299
17421
|
};
|
|
17300
|
-
interface IInput$
|
|
17422
|
+
interface IInput$C {
|
|
17301
17423
|
/**
|
|
17302
17424
|
* @private
|
|
17303
17425
|
*/
|
|
17304
17426
|
[key: string]: unknown;
|
|
17305
17427
|
data: ModelTypes['CreateAnnualGeneralMeetInput'];
|
|
17306
17428
|
}
|
|
17307
|
-
type IOutput$
|
|
17429
|
+
type IOutput$C = InputType<GraphQLTypes['Mutation'], typeof mutation$o>;
|
|
17308
17430
|
|
|
17309
17431
|
declare namespace createAnnualGeneralMeet {
|
|
17310
|
-
export { type IInput$
|
|
17432
|
+
export { type IInput$C as IInput, type IOutput$C as IOutput, mutation$o as mutation, name$B as name };
|
|
17311
17433
|
}
|
|
17312
17434
|
|
|
17313
|
-
declare const name$
|
|
17435
|
+
declare const name$A = "generateAnnualGeneralMeetAgendaDocument";
|
|
17314
17436
|
/**
|
|
17315
17437
|
* Генерация документа повестки годового общего собрания пайщиков
|
|
17316
17438
|
*/
|
|
@@ -17326,7 +17448,7 @@ declare const mutation$n: {
|
|
|
17326
17448
|
meta: boolean;
|
|
17327
17449
|
}];
|
|
17328
17450
|
};
|
|
17329
|
-
interface IInput$
|
|
17451
|
+
interface IInput$B {
|
|
17330
17452
|
/**
|
|
17331
17453
|
* @private
|
|
17332
17454
|
*/
|
|
@@ -17334,13 +17456,13 @@ interface IInput$A {
|
|
|
17334
17456
|
data: ModelTypes['AnnualGeneralMeetingAgendaGenerateDocumentInput'];
|
|
17335
17457
|
options?: ModelTypes['GenerateDocumentOptionsInput'];
|
|
17336
17458
|
}
|
|
17337
|
-
type IOutput$
|
|
17459
|
+
type IOutput$B = InputType<GraphQLTypes['Mutation'], typeof mutation$n>;
|
|
17338
17460
|
|
|
17339
17461
|
declare namespace generateAnnualGeneralMeetAgendaDocument {
|
|
17340
|
-
export { type IInput$
|
|
17462
|
+
export { type IInput$B as IInput, type IOutput$B as IOutput, mutation$n as mutation, name$A as name };
|
|
17341
17463
|
}
|
|
17342
17464
|
|
|
17343
|
-
declare const name$
|
|
17465
|
+
declare const name$z = "generateAnnualGeneralMeetDecisionDocument";
|
|
17344
17466
|
/**
|
|
17345
17467
|
* Генерация документа решения годового общего собрания пайщиков
|
|
17346
17468
|
*/
|
|
@@ -17356,7 +17478,7 @@ declare const mutation$m: {
|
|
|
17356
17478
|
meta: boolean;
|
|
17357
17479
|
}];
|
|
17358
17480
|
};
|
|
17359
|
-
interface IInput$
|
|
17481
|
+
interface IInput$A {
|
|
17360
17482
|
/**
|
|
17361
17483
|
* @private
|
|
17362
17484
|
*/
|
|
@@ -17364,13 +17486,13 @@ interface IInput$z {
|
|
|
17364
17486
|
data: ModelTypes['AnnualGeneralMeetingDecisionGenerateDocumentInput'];
|
|
17365
17487
|
options?: ModelTypes['GenerateDocumentOptionsInput'];
|
|
17366
17488
|
}
|
|
17367
|
-
type IOutput$
|
|
17489
|
+
type IOutput$A = InputType<GraphQLTypes['Mutation'], typeof mutation$m>;
|
|
17368
17490
|
|
|
17369
17491
|
declare namespace generateAnnualGeneralMeetDecisionDocument {
|
|
17370
|
-
export { type IInput$
|
|
17492
|
+
export { type IInput$A as IInput, type IOutput$A as IOutput, mutation$m as mutation, name$z as name };
|
|
17371
17493
|
}
|
|
17372
17494
|
|
|
17373
|
-
declare const name$
|
|
17495
|
+
declare const name$y = "generateAnnualGeneralMeetNotificationDocument";
|
|
17374
17496
|
/**
|
|
17375
17497
|
* Генерация документа уведомления о проведении годового общего собрания пайщиков
|
|
17376
17498
|
*/
|
|
@@ -17386,7 +17508,7 @@ declare const mutation$l: {
|
|
|
17386
17508
|
meta: boolean;
|
|
17387
17509
|
}];
|
|
17388
17510
|
};
|
|
17389
|
-
interface IInput$
|
|
17511
|
+
interface IInput$z {
|
|
17390
17512
|
/**
|
|
17391
17513
|
* @private
|
|
17392
17514
|
*/
|
|
@@ -17394,13 +17516,13 @@ interface IInput$y {
|
|
|
17394
17516
|
data: ModelTypes['AnnualGeneralMeetingNotificationGenerateDocumentInput'];
|
|
17395
17517
|
options?: ModelTypes['GenerateDocumentOptionsInput'];
|
|
17396
17518
|
}
|
|
17397
|
-
type IOutput$
|
|
17519
|
+
type IOutput$z = InputType<GraphQLTypes['Mutation'], typeof mutation$l>;
|
|
17398
17520
|
|
|
17399
17521
|
declare namespace generateAnnualGeneralMeetNotificationDocument {
|
|
17400
|
-
export { type IInput$
|
|
17522
|
+
export { type IInput$z as IInput, type IOutput$z as IOutput, mutation$l as mutation, name$y as name };
|
|
17401
17523
|
}
|
|
17402
17524
|
|
|
17403
|
-
declare const name$
|
|
17525
|
+
declare const name$x = "generateBallotForAnnualGeneralMeetDocument";
|
|
17404
17526
|
/**
|
|
17405
17527
|
* Генерация бюллетеня для голосования на общем собрании пайщиков
|
|
17406
17528
|
*/
|
|
@@ -17416,7 +17538,7 @@ declare const mutation$k: {
|
|
|
17416
17538
|
meta: boolean;
|
|
17417
17539
|
}];
|
|
17418
17540
|
};
|
|
17419
|
-
interface IInput$
|
|
17541
|
+
interface IInput$y {
|
|
17420
17542
|
/**
|
|
17421
17543
|
* @private
|
|
17422
17544
|
*/
|
|
@@ -17424,13 +17546,13 @@ interface IInput$x {
|
|
|
17424
17546
|
data: ModelTypes['AnnualGeneralMeetingVotingBallotGenerateDocumentInput'];
|
|
17425
17547
|
options?: ModelTypes['GenerateDocumentOptionsInput'];
|
|
17426
17548
|
}
|
|
17427
|
-
type IOutput$
|
|
17549
|
+
type IOutput$y = InputType<GraphQLTypes['Mutation'], typeof mutation$k>;
|
|
17428
17550
|
|
|
17429
17551
|
declare namespace generateBallotForAnnualGeneralMeetDocument {
|
|
17430
|
-
export { type IInput$
|
|
17552
|
+
export { type IInput$y as IInput, type IOutput$y as IOutput, mutation$k as mutation, name$x as name };
|
|
17431
17553
|
}
|
|
17432
17554
|
|
|
17433
|
-
declare const name$
|
|
17555
|
+
declare const name$w = "generateSovietDecisionOnAnnualMeetDocument";
|
|
17434
17556
|
/**
|
|
17435
17557
|
* Генерация документа решения совета о проведении годового общего собрания пайщиков
|
|
17436
17558
|
*/
|
|
@@ -17446,7 +17568,7 @@ declare const mutation$j: {
|
|
|
17446
17568
|
meta: boolean;
|
|
17447
17569
|
}];
|
|
17448
17570
|
};
|
|
17449
|
-
interface IInput$
|
|
17571
|
+
interface IInput$x {
|
|
17450
17572
|
/**
|
|
17451
17573
|
* @private
|
|
17452
17574
|
*/
|
|
@@ -17454,13 +17576,13 @@ interface IInput$w {
|
|
|
17454
17576
|
data: ModelTypes['AnnualGeneralMeetingSovietDecisionGenerateDocumentInput'];
|
|
17455
17577
|
options?: ModelTypes['GenerateDocumentOptionsInput'];
|
|
17456
17578
|
}
|
|
17457
|
-
type IOutput$
|
|
17579
|
+
type IOutput$x = InputType<GraphQLTypes['Mutation'], typeof mutation$j>;
|
|
17458
17580
|
|
|
17459
17581
|
declare namespace generateSovietDecisionOnAnnualMeetDocument {
|
|
17460
|
-
export { type IInput$
|
|
17582
|
+
export { type IInput$x as IInput, type IOutput$x as IOutput, mutation$j as mutation, name$w as name };
|
|
17461
17583
|
}
|
|
17462
17584
|
|
|
17463
|
-
declare const name$
|
|
17585
|
+
declare const name$v = "notifyOnAnnualGeneralMeet";
|
|
17464
17586
|
/**
|
|
17465
17587
|
* Уведомление о проведении общего собрания пайщиков
|
|
17466
17588
|
*/
|
|
@@ -17968,6 +18090,7 @@ declare const mutation$i: {
|
|
|
17968
18090
|
};
|
|
17969
18091
|
};
|
|
17970
18092
|
notified_users: boolean;
|
|
18093
|
+
level: boolean;
|
|
17971
18094
|
};
|
|
17972
18095
|
questions: {
|
|
17973
18096
|
id: boolean;
|
|
@@ -18173,20 +18296,20 @@ declare const mutation$i: {
|
|
|
18173
18296
|
};
|
|
18174
18297
|
}];
|
|
18175
18298
|
};
|
|
18176
|
-
interface IInput$
|
|
18299
|
+
interface IInput$w {
|
|
18177
18300
|
/**
|
|
18178
18301
|
* @private
|
|
18179
18302
|
*/
|
|
18180
18303
|
[key: string]: unknown;
|
|
18181
18304
|
data: ModelTypes['NotifyOnAnnualGeneralMeetInput'];
|
|
18182
18305
|
}
|
|
18183
|
-
type IOutput$
|
|
18306
|
+
type IOutput$w = InputType<GraphQLTypes['Mutation'], typeof mutation$i>;
|
|
18184
18307
|
|
|
18185
18308
|
declare namespace notifyOnAnnualGeneralMeet {
|
|
18186
|
-
export { type IInput$
|
|
18309
|
+
export { type IInput$w as IInput, type IOutput$w as IOutput, mutation$i as mutation, name$v as name };
|
|
18187
18310
|
}
|
|
18188
18311
|
|
|
18189
|
-
declare const name$
|
|
18312
|
+
declare const name$u = "restartAnnualGeneralMeet";
|
|
18190
18313
|
/**
|
|
18191
18314
|
* Перезапуск годового общего собрания пайщиков
|
|
18192
18315
|
*/
|
|
@@ -18694,6 +18817,7 @@ declare const mutation$h: {
|
|
|
18694
18817
|
};
|
|
18695
18818
|
};
|
|
18696
18819
|
notified_users: boolean;
|
|
18820
|
+
level: boolean;
|
|
18697
18821
|
};
|
|
18698
18822
|
questions: {
|
|
18699
18823
|
id: boolean;
|
|
@@ -18899,20 +19023,20 @@ declare const mutation$h: {
|
|
|
18899
19023
|
};
|
|
18900
19024
|
}];
|
|
18901
19025
|
};
|
|
18902
|
-
interface IInput$
|
|
19026
|
+
interface IInput$v {
|
|
18903
19027
|
/**
|
|
18904
19028
|
* @private
|
|
18905
19029
|
*/
|
|
18906
19030
|
[key: string]: unknown;
|
|
18907
19031
|
data: ModelTypes['RestartAnnualGeneralMeetInput'];
|
|
18908
19032
|
}
|
|
18909
|
-
type IOutput$
|
|
19033
|
+
type IOutput$v = InputType<GraphQLTypes['Mutation'], typeof mutation$h>;
|
|
18910
19034
|
|
|
18911
19035
|
declare namespace restartAnnualGeneralMeet {
|
|
18912
|
-
export { type IInput$
|
|
19036
|
+
export { type IInput$v as IInput, type IOutput$v as IOutput, mutation$h as mutation, name$u as name };
|
|
18913
19037
|
}
|
|
18914
19038
|
|
|
18915
|
-
declare const name$
|
|
19039
|
+
declare const name$t = "signByPresiderOnAnnualGeneralMeet";
|
|
18916
19040
|
/**
|
|
18917
19041
|
* Подписание решения председателем на годовом общем собрании пайщиков
|
|
18918
19042
|
*/
|
|
@@ -19420,6 +19544,7 @@ declare const mutation$g: {
|
|
|
19420
19544
|
};
|
|
19421
19545
|
};
|
|
19422
19546
|
notified_users: boolean;
|
|
19547
|
+
level: boolean;
|
|
19423
19548
|
};
|
|
19424
19549
|
questions: {
|
|
19425
19550
|
id: boolean;
|
|
@@ -19625,20 +19750,20 @@ declare const mutation$g: {
|
|
|
19625
19750
|
};
|
|
19626
19751
|
}];
|
|
19627
19752
|
};
|
|
19628
|
-
interface IInput$
|
|
19753
|
+
interface IInput$u {
|
|
19629
19754
|
/**
|
|
19630
19755
|
* @private
|
|
19631
19756
|
*/
|
|
19632
19757
|
[key: string]: unknown;
|
|
19633
19758
|
data: ModelTypes['SignByPresiderOnAnnualGeneralMeetInput'];
|
|
19634
19759
|
}
|
|
19635
|
-
type IOutput$
|
|
19760
|
+
type IOutput$u = InputType<GraphQLTypes['Mutation'], typeof mutation$g>;
|
|
19636
19761
|
|
|
19637
19762
|
declare namespace signByPresiderOnAnnualGeneralMeet {
|
|
19638
|
-
export { type IInput$
|
|
19763
|
+
export { type IInput$u as IInput, type IOutput$u as IOutput, mutation$g as mutation, name$t as name };
|
|
19639
19764
|
}
|
|
19640
19765
|
|
|
19641
|
-
declare const name$
|
|
19766
|
+
declare const name$s = "signBySecretaryOnAnnualGeneralMeet";
|
|
19642
19767
|
/**
|
|
19643
19768
|
* Подписание решения секретарём на годовом общем собрании пайщиков
|
|
19644
19769
|
*/
|
|
@@ -20146,6 +20271,7 @@ declare const mutation$f: {
|
|
|
20146
20271
|
};
|
|
20147
20272
|
};
|
|
20148
20273
|
notified_users: boolean;
|
|
20274
|
+
level: boolean;
|
|
20149
20275
|
};
|
|
20150
20276
|
questions: {
|
|
20151
20277
|
id: boolean;
|
|
@@ -20351,20 +20477,20 @@ declare const mutation$f: {
|
|
|
20351
20477
|
};
|
|
20352
20478
|
}];
|
|
20353
20479
|
};
|
|
20354
|
-
interface IInput$
|
|
20480
|
+
interface IInput$t {
|
|
20355
20481
|
/**
|
|
20356
20482
|
* @private
|
|
20357
20483
|
*/
|
|
20358
20484
|
[key: string]: unknown;
|
|
20359
20485
|
data: ModelTypes['SignBySecretaryOnAnnualGeneralMeetInput'];
|
|
20360
20486
|
}
|
|
20361
|
-
type IOutput$
|
|
20487
|
+
type IOutput$t = InputType<GraphQLTypes['Mutation'], typeof mutation$f>;
|
|
20362
20488
|
|
|
20363
20489
|
declare namespace signBySecretaryOnAnnualGeneralMeet {
|
|
20364
|
-
export { type IInput$
|
|
20490
|
+
export { type IInput$t as IInput, type IOutput$t as IOutput, mutation$f as mutation, name$s as name };
|
|
20365
20491
|
}
|
|
20366
20492
|
|
|
20367
|
-
declare const name$
|
|
20493
|
+
declare const name$r = "voteOnAnnualGeneralMeet";
|
|
20368
20494
|
/**
|
|
20369
20495
|
* Голосование на общем собрании пайщиков
|
|
20370
20496
|
*/
|
|
@@ -20872,6 +20998,7 @@ declare const mutation$e: {
|
|
|
20872
20998
|
};
|
|
20873
20999
|
};
|
|
20874
21000
|
notified_users: boolean;
|
|
21001
|
+
level: boolean;
|
|
20875
21002
|
};
|
|
20876
21003
|
questions: {
|
|
20877
21004
|
id: boolean;
|
|
@@ -21077,17 +21204,17 @@ declare const mutation$e: {
|
|
|
21077
21204
|
};
|
|
21078
21205
|
}];
|
|
21079
21206
|
};
|
|
21080
|
-
interface IInput$
|
|
21207
|
+
interface IInput$s {
|
|
21081
21208
|
/**
|
|
21082
21209
|
* @private
|
|
21083
21210
|
*/
|
|
21084
21211
|
[key: string]: unknown;
|
|
21085
21212
|
data: ModelTypes['VoteOnAnnualGeneralMeetInput'];
|
|
21086
21213
|
}
|
|
21087
|
-
type IOutput$
|
|
21214
|
+
type IOutput$s = InputType<GraphQLTypes['Mutation'], typeof mutation$e>;
|
|
21088
21215
|
|
|
21089
21216
|
declare namespace voteOnAnnualGeneralMeet {
|
|
21090
|
-
export { type IInput$
|
|
21217
|
+
export { type IInput$s as IInput, type IOutput$s as IOutput, mutation$e as mutation, name$r as name };
|
|
21091
21218
|
}
|
|
21092
21219
|
|
|
21093
21220
|
/** Сгенерировать документ предложения повестки очередного общего собрания пайщиков */
|
|
@@ -21096,7 +21223,7 @@ declare namespace index$i {
|
|
|
21096
21223
|
export { createAnnualGeneralMeet as CreateAnnualGeneralMeet, generateAnnualGeneralMeetAgendaDocument as GenerateAnnualGeneralMeetAgendaDocument, generateAnnualGeneralMeetDecisionDocument as GenerateAnnualGeneralMeetDecisionDocument, generateAnnualGeneralMeetNotificationDocument as GenerateAnnualGeneralMeetNotificationDocument, generateBallotForAnnualGeneralMeetDocument as GenerateBallotForAnnualGeneralMeetDocument, generateSovietDecisionOnAnnualMeetDocument as GenerateSovietDecisionOnAnnualMeetDocument, notifyOnAnnualGeneralMeet as NotifyOnAnnualGeneralMeet, restartAnnualGeneralMeet as RestartAnnualGeneralMeet, signByPresiderOnAnnualGeneralMeet as SignByPresiderOnAnnualGeneralMeet, signBySecretaryOnAnnualGeneralMeet as SignBySecretaryOnAnnualGeneralMeet, voteOnAnnualGeneralMeet as VoteOnAnnualGeneralMeet };
|
|
21097
21224
|
}
|
|
21098
21225
|
|
|
21099
|
-
declare const name$
|
|
21226
|
+
declare const name$q = "addParticipant";
|
|
21100
21227
|
declare const mutation$d: {
|
|
21101
21228
|
addParticipant: [{
|
|
21102
21229
|
data: Variable<"AddParticipantInput!", "data">;
|
|
@@ -21279,20 +21406,20 @@ declare const mutation$d: {
|
|
|
21279
21406
|
};
|
|
21280
21407
|
}];
|
|
21281
21408
|
};
|
|
21282
|
-
interface IInput$
|
|
21409
|
+
interface IInput$r {
|
|
21283
21410
|
/**
|
|
21284
21411
|
* @private
|
|
21285
21412
|
*/
|
|
21286
21413
|
[key: string]: unknown;
|
|
21287
21414
|
data: ModelTypes['AddParticipantInput'];
|
|
21288
21415
|
}
|
|
21289
|
-
type IOutput$
|
|
21416
|
+
type IOutput$r = InputType<GraphQLTypes['Mutation'], typeof mutation$d>;
|
|
21290
21417
|
|
|
21291
21418
|
declare namespace addParticipant {
|
|
21292
|
-
export { type IInput$
|
|
21419
|
+
export { type IInput$r as IInput, type IOutput$r as IOutput, mutation$d as mutation, name$q as name };
|
|
21293
21420
|
}
|
|
21294
21421
|
|
|
21295
|
-
declare const name$
|
|
21422
|
+
declare const name$p = "generateParticipantApplication";
|
|
21296
21423
|
declare const mutation$c: {
|
|
21297
21424
|
generateParticipantApplication: [{
|
|
21298
21425
|
data: Variable<"ParticipantApplicationGenerateDocumentInput!", "data">;
|
|
@@ -21305,7 +21432,7 @@ declare const mutation$c: {
|
|
|
21305
21432
|
meta: boolean;
|
|
21306
21433
|
}];
|
|
21307
21434
|
};
|
|
21308
|
-
interface IInput$
|
|
21435
|
+
interface IInput$q {
|
|
21309
21436
|
/**
|
|
21310
21437
|
* @private
|
|
21311
21438
|
*/
|
|
@@ -21313,13 +21440,13 @@ interface IInput$p {
|
|
|
21313
21440
|
data: ModelTypes['ParticipantApplicationGenerateDocumentInput'];
|
|
21314
21441
|
options?: ModelTypes['GenerateDocumentOptionsInput'];
|
|
21315
21442
|
}
|
|
21316
|
-
type IOutput$
|
|
21443
|
+
type IOutput$q = InputType<GraphQLTypes['Mutation'], typeof mutation$c>;
|
|
21317
21444
|
|
|
21318
21445
|
declare namespace generateParticipantApplication {
|
|
21319
|
-
export { type IInput$
|
|
21446
|
+
export { type IInput$q as IInput, type IOutput$q as IOutput, mutation$c as mutation, name$p as name };
|
|
21320
21447
|
}
|
|
21321
21448
|
|
|
21322
|
-
declare const name$
|
|
21449
|
+
declare const name$o = "generateParticipantApplicationDecision";
|
|
21323
21450
|
declare const mutation$b: {
|
|
21324
21451
|
generateParticipantApplicationDecision: [{
|
|
21325
21452
|
data: Variable<"ParticipantApplicationDecisionGenerateDocumentInput!", "data">;
|
|
@@ -21332,7 +21459,7 @@ declare const mutation$b: {
|
|
|
21332
21459
|
meta: boolean;
|
|
21333
21460
|
}];
|
|
21334
21461
|
};
|
|
21335
|
-
interface IInput$
|
|
21462
|
+
interface IInput$p {
|
|
21336
21463
|
/**
|
|
21337
21464
|
* @private
|
|
21338
21465
|
*/
|
|
@@ -21340,13 +21467,13 @@ interface IInput$o {
|
|
|
21340
21467
|
data: ModelTypes['ParticipantApplicationDecisionGenerateDocumentInput'];
|
|
21341
21468
|
options?: ModelTypes['GenerateDocumentOptionsInput'];
|
|
21342
21469
|
}
|
|
21343
|
-
type IOutput$
|
|
21470
|
+
type IOutput$p = InputType<GraphQLTypes['Mutation'], typeof mutation$b>;
|
|
21344
21471
|
|
|
21345
21472
|
declare namespace generateParticipantApplicationDecision {
|
|
21346
|
-
export { type IInput$
|
|
21473
|
+
export { type IInput$p as IInput, type IOutput$p as IOutput, mutation$b as mutation, name$o as name };
|
|
21347
21474
|
}
|
|
21348
21475
|
|
|
21349
|
-
declare const name$
|
|
21476
|
+
declare const name$n = "registerParticipant";
|
|
21350
21477
|
declare const mutation$a: {
|
|
21351
21478
|
registerParticipant: [{
|
|
21352
21479
|
data: Variable<"RegisterParticipantInput!", "data">;
|
|
@@ -21529,17 +21656,17 @@ declare const mutation$a: {
|
|
|
21529
21656
|
};
|
|
21530
21657
|
}];
|
|
21531
21658
|
};
|
|
21532
|
-
interface IInput$
|
|
21659
|
+
interface IInput$o {
|
|
21533
21660
|
/**
|
|
21534
21661
|
* @private
|
|
21535
21662
|
*/
|
|
21536
21663
|
[key: string]: unknown;
|
|
21537
21664
|
data: ModelTypes['RegisterParticipantInput'];
|
|
21538
21665
|
}
|
|
21539
|
-
type IOutput$
|
|
21666
|
+
type IOutput$o = InputType<GraphQLTypes['Mutation'], typeof mutation$a>;
|
|
21540
21667
|
|
|
21541
21668
|
declare namespace registerParticipant {
|
|
21542
|
-
export { type IInput$
|
|
21669
|
+
export { type IInput$o as IInput, type IOutput$o as IOutput, mutation$a as mutation, name$n as name };
|
|
21543
21670
|
}
|
|
21544
21671
|
|
|
21545
21672
|
/**
|
|
@@ -21581,7 +21708,7 @@ declare namespace index$h {
|
|
|
21581
21708
|
export { addParticipant as AddParticipant, generateParticipantApplication as GenerateParticipantApplication, generateParticipantApplicationDecision as GenerateParticipantApplicationDecision, registerParticipant as RegisterParticipant };
|
|
21582
21709
|
}
|
|
21583
21710
|
|
|
21584
|
-
declare const name$
|
|
21711
|
+
declare const name$m = "createBankAccount";
|
|
21585
21712
|
declare const mutation$9: {
|
|
21586
21713
|
createBankAccount: [{
|
|
21587
21714
|
data: Variable<"CreateBankAccountInput!", "data">;
|
|
@@ -21611,39 +21738,39 @@ declare const mutation$9: {
|
|
|
21611
21738
|
username: boolean;
|
|
21612
21739
|
}];
|
|
21613
21740
|
};
|
|
21614
|
-
interface IInput$
|
|
21741
|
+
interface IInput$n {
|
|
21615
21742
|
/**
|
|
21616
21743
|
* @private
|
|
21617
21744
|
*/
|
|
21618
21745
|
[key: string]: unknown;
|
|
21619
21746
|
data: ModelTypes['CreateBankAccountInput'];
|
|
21620
21747
|
}
|
|
21621
|
-
type IOutput$
|
|
21748
|
+
type IOutput$n = InputType<GraphQLTypes['Mutation'], typeof mutation$9>;
|
|
21622
21749
|
|
|
21623
21750
|
declare namespace createBankAccount {
|
|
21624
|
-
export { type IInput$
|
|
21751
|
+
export { type IInput$n as IInput, type IOutput$n as IOutput, mutation$9 as mutation, name$m as name };
|
|
21625
21752
|
}
|
|
21626
21753
|
|
|
21627
|
-
declare const name$
|
|
21754
|
+
declare const name$l = "deletePaymentMethod";
|
|
21628
21755
|
declare const mutation$8: {
|
|
21629
21756
|
deletePaymentMethod: [{
|
|
21630
21757
|
data: Variable<"DeletePaymentMethodInput!", "data">;
|
|
21631
21758
|
}, true];
|
|
21632
21759
|
};
|
|
21633
|
-
interface IInput$
|
|
21760
|
+
interface IInput$m {
|
|
21634
21761
|
/**
|
|
21635
21762
|
* @private
|
|
21636
21763
|
*/
|
|
21637
21764
|
[key: string]: unknown;
|
|
21638
21765
|
data: ModelTypes['DeletePaymentMethodInput'];
|
|
21639
21766
|
}
|
|
21640
|
-
type IOutput$
|
|
21767
|
+
type IOutput$m = InputType<GraphQLTypes['Mutation'], typeof mutation$8>;
|
|
21641
21768
|
|
|
21642
21769
|
declare namespace deletePaymentMethod {
|
|
21643
|
-
export { type IInput$
|
|
21770
|
+
export { type IInput$m as IInput, type IOutput$m as IOutput, mutation$8 as mutation, name$l as name };
|
|
21644
21771
|
}
|
|
21645
21772
|
|
|
21646
|
-
declare const name$
|
|
21773
|
+
declare const name$k = "updateBankAccount";
|
|
21647
21774
|
declare const mutation$7: {
|
|
21648
21775
|
updateBankAccount: [{
|
|
21649
21776
|
data: Variable<"UpdateBankAccountInput!", "data">;
|
|
@@ -21673,17 +21800,17 @@ declare const mutation$7: {
|
|
|
21673
21800
|
username: boolean;
|
|
21674
21801
|
}];
|
|
21675
21802
|
};
|
|
21676
|
-
interface IInput$
|
|
21803
|
+
interface IInput$l {
|
|
21677
21804
|
/**
|
|
21678
21805
|
* @private
|
|
21679
21806
|
*/
|
|
21680
21807
|
[key: string]: unknown;
|
|
21681
21808
|
data: ModelTypes['UpdateBankAccountInput'];
|
|
21682
21809
|
}
|
|
21683
|
-
type IOutput$
|
|
21810
|
+
type IOutput$l = InputType<GraphQLTypes['Mutation'], typeof mutation$7>;
|
|
21684
21811
|
|
|
21685
21812
|
declare namespace updateBankAccount {
|
|
21686
|
-
export { type IInput$
|
|
21813
|
+
export { type IInput$l as IInput, type IOutput$l as IOutput, mutation$7 as mutation, name$k as name };
|
|
21687
21814
|
}
|
|
21688
21815
|
|
|
21689
21816
|
/** Добавить метод оплаты */
|
|
@@ -21692,7 +21819,7 @@ declare namespace index$g {
|
|
|
21692
21819
|
export { createBankAccount as CreateBankAccount, deletePaymentMethod as DeletePaymentMethod, updateBankAccount as UpdateBankAccount };
|
|
21693
21820
|
}
|
|
21694
21821
|
|
|
21695
|
-
declare const name$
|
|
21822
|
+
declare const name$j = "createInitialPayment";
|
|
21696
21823
|
declare const mutation$6: {
|
|
21697
21824
|
createInitialPayment: [{
|
|
21698
21825
|
data: Variable<"CreateInitialPaymentInput!", "data">;
|
|
@@ -21898,20 +22025,20 @@ declare const mutation$6: {
|
|
|
21898
22025
|
username: boolean;
|
|
21899
22026
|
}];
|
|
21900
22027
|
};
|
|
21901
|
-
interface IInput$
|
|
22028
|
+
interface IInput$k {
|
|
21902
22029
|
/**
|
|
21903
22030
|
* @private
|
|
21904
22031
|
*/
|
|
21905
22032
|
[key: string]: unknown;
|
|
21906
22033
|
data: ModelTypes['CreateInitialPaymentInput'];
|
|
21907
22034
|
}
|
|
21908
|
-
type IOutput$
|
|
22035
|
+
type IOutput$k = InputType<GraphQLTypes['Mutation'], typeof mutation$6>;
|
|
21909
22036
|
|
|
21910
22037
|
declare namespace createInitial {
|
|
21911
|
-
export { type IInput$
|
|
22038
|
+
export { type IInput$k as IInput, type IOutput$k as IOutput, mutation$6 as mutation, name$j as name };
|
|
21912
22039
|
}
|
|
21913
22040
|
|
|
21914
|
-
declare const name$
|
|
22041
|
+
declare const name$i = "createDepositPayment";
|
|
21915
22042
|
declare const mutation$5: {
|
|
21916
22043
|
createDepositPayment: [{
|
|
21917
22044
|
data: Variable<"CreateDepositPaymentInput!", "data">;
|
|
@@ -22117,20 +22244,20 @@ declare const mutation$5: {
|
|
|
22117
22244
|
username: boolean;
|
|
22118
22245
|
}];
|
|
22119
22246
|
};
|
|
22120
|
-
interface IInput$
|
|
22247
|
+
interface IInput$j {
|
|
22121
22248
|
/**
|
|
22122
22249
|
* @private
|
|
22123
22250
|
*/
|
|
22124
22251
|
[key: string]: unknown;
|
|
22125
22252
|
data: ModelTypes['CreateDepositPaymentInput'];
|
|
22126
22253
|
}
|
|
22127
|
-
type IOutput$
|
|
22254
|
+
type IOutput$j = InputType<GraphQLTypes['Mutation'], typeof mutation$5>;
|
|
22128
22255
|
|
|
22129
22256
|
declare namespace createDeposit {
|
|
22130
|
-
export { type IInput$
|
|
22257
|
+
export { type IInput$j as IInput, type IOutput$j as IOutput, mutation$5 as mutation, name$i as name };
|
|
22131
22258
|
}
|
|
22132
22259
|
|
|
22133
|
-
declare const name$
|
|
22260
|
+
declare const name$h = "setPaymentStatus";
|
|
22134
22261
|
declare const mutation$4: {
|
|
22135
22262
|
setPaymentStatus: [{
|
|
22136
22263
|
data: Variable<"SetPaymentStatusInput!", "data">;
|
|
@@ -22336,17 +22463,17 @@ declare const mutation$4: {
|
|
|
22336
22463
|
username: boolean;
|
|
22337
22464
|
}];
|
|
22338
22465
|
};
|
|
22339
|
-
interface IInput$
|
|
22466
|
+
interface IInput$i {
|
|
22340
22467
|
/**
|
|
22341
22468
|
* @private
|
|
22342
22469
|
*/
|
|
22343
22470
|
[key: string]: unknown;
|
|
22344
22471
|
data: ModelTypes['SetPaymentStatusInput'];
|
|
22345
22472
|
}
|
|
22346
|
-
type IOutput$
|
|
22473
|
+
type IOutput$i = InputType<GraphQLTypes['Mutation'], typeof mutation$4>;
|
|
22347
22474
|
|
|
22348
22475
|
declare namespace setPaymentStatus {
|
|
22349
|
-
export { type IInput$
|
|
22476
|
+
export { type IInput$i as IInput, type IOutput$i as IOutput, mutation$4 as mutation, name$h as name };
|
|
22350
22477
|
}
|
|
22351
22478
|
|
|
22352
22479
|
/** Создание объекта регистрационного платежа производится мутацией CreateInitial. Выполнение мутации возвращает идентификатор платежа и данные для его совершения в зависимости от выбранного платежного провайдера. */
|
|
@@ -22355,7 +22482,7 @@ declare namespace index$f {
|
|
|
22355
22482
|
export { createDeposit as CreateDepositPayment, createInitial as CreateInitialPayment, setPaymentStatus as SetPaymentStatus };
|
|
22356
22483
|
}
|
|
22357
22484
|
|
|
22358
|
-
declare const name$
|
|
22485
|
+
declare const name$g = "initSystem";
|
|
22359
22486
|
declare const mutation$3: {
|
|
22360
22487
|
initSystem: [{
|
|
22361
22488
|
data: Variable<"Init!", "data">;
|
|
@@ -22584,20 +22711,20 @@ declare const mutation$3: {
|
|
|
22584
22711
|
};
|
|
22585
22712
|
}];
|
|
22586
22713
|
};
|
|
22587
|
-
interface IInput$
|
|
22714
|
+
interface IInput$h {
|
|
22588
22715
|
/**
|
|
22589
22716
|
* @private
|
|
22590
22717
|
*/
|
|
22591
22718
|
[key: string]: unknown;
|
|
22592
22719
|
data: ModelTypes['Init'];
|
|
22593
22720
|
}
|
|
22594
|
-
type IOutput$
|
|
22721
|
+
type IOutput$h = InputType<GraphQLTypes['Mutation'], typeof mutation$3>;
|
|
22595
22722
|
|
|
22596
22723
|
declare namespace initSystem {
|
|
22597
|
-
export { type IInput$
|
|
22724
|
+
export { type IInput$h as IInput, type IOutput$h as IOutput, mutation$3 as mutation, name$g as name };
|
|
22598
22725
|
}
|
|
22599
22726
|
|
|
22600
|
-
declare const name$
|
|
22727
|
+
declare const name$f = "installSystem";
|
|
22601
22728
|
declare const mutation$2: {
|
|
22602
22729
|
installSystem: [{
|
|
22603
22730
|
data: Variable<"Install!", "data">;
|
|
@@ -22826,39 +22953,39 @@ declare const mutation$2: {
|
|
|
22826
22953
|
};
|
|
22827
22954
|
}];
|
|
22828
22955
|
};
|
|
22829
|
-
interface IInput$
|
|
22956
|
+
interface IInput$g {
|
|
22830
22957
|
/**
|
|
22831
22958
|
* @private
|
|
22832
22959
|
*/
|
|
22833
22960
|
[key: string]: unknown;
|
|
22834
22961
|
data: ModelTypes['Install'];
|
|
22835
22962
|
}
|
|
22836
|
-
type IOutput$
|
|
22963
|
+
type IOutput$g = InputType<GraphQLTypes['Mutation'], typeof mutation$2>;
|
|
22837
22964
|
|
|
22838
22965
|
declare namespace installSystem {
|
|
22839
|
-
export { type IInput$
|
|
22966
|
+
export { type IInput$g as IInput, type IOutput$g as IOutput, mutation$2 as mutation, name$f as name };
|
|
22840
22967
|
}
|
|
22841
22968
|
|
|
22842
|
-
declare const name$
|
|
22969
|
+
declare const name$e = "setWif";
|
|
22843
22970
|
declare const mutation$1: {
|
|
22844
22971
|
setWif: [{
|
|
22845
22972
|
data: Variable<"Update!", "data">;
|
|
22846
22973
|
}, true];
|
|
22847
22974
|
};
|
|
22848
|
-
interface IInput$
|
|
22975
|
+
interface IInput$f {
|
|
22849
22976
|
/**
|
|
22850
22977
|
* @private
|
|
22851
22978
|
*/
|
|
22852
22979
|
[key: string]: unknown;
|
|
22853
22980
|
data: ModelTypes['SetWifInput'];
|
|
22854
22981
|
}
|
|
22855
|
-
type IOutput$
|
|
22982
|
+
type IOutput$f = InputType<GraphQLTypes['Mutation'], typeof mutation$1>;
|
|
22856
22983
|
|
|
22857
22984
|
declare namespace setWif {
|
|
22858
|
-
export { type IInput$
|
|
22985
|
+
export { type IInput$f as IInput, type IOutput$f as IOutput, mutation$1 as mutation, name$e as name };
|
|
22859
22986
|
}
|
|
22860
22987
|
|
|
22861
|
-
declare const name$
|
|
22988
|
+
declare const name$d = "updateSystem";
|
|
22862
22989
|
declare const mutation: {
|
|
22863
22990
|
updateSystem: [{
|
|
22864
22991
|
data: Variable<"Update!", "data">;
|
|
@@ -23087,18 +23214,18 @@ declare const mutation: {
|
|
|
23087
23214
|
};
|
|
23088
23215
|
}];
|
|
23089
23216
|
};
|
|
23090
|
-
interface IInput$
|
|
23217
|
+
interface IInput$e {
|
|
23091
23218
|
/**
|
|
23092
23219
|
* @private
|
|
23093
23220
|
*/
|
|
23094
23221
|
[key: string]: unknown;
|
|
23095
23222
|
data: ModelTypes['Update'];
|
|
23096
23223
|
}
|
|
23097
|
-
type IOutput$
|
|
23224
|
+
type IOutput$e = InputType<GraphQLTypes['Mutation'], typeof mutation>;
|
|
23098
23225
|
|
|
23099
23226
|
declare const updateSystem_mutation: typeof mutation;
|
|
23100
23227
|
declare namespace updateSystem {
|
|
23101
|
-
export { type IInput$
|
|
23228
|
+
export { type IInput$e as IInput, type IOutput$e as IOutput, updateSystem_mutation as mutation, name$d as name };
|
|
23102
23229
|
}
|
|
23103
23230
|
|
|
23104
23231
|
/** Произвести инициализацию программного обеспечения перед установкой совета методом install */
|
|
@@ -23111,11 +23238,11 @@ declare namespace Mutations {
|
|
|
23111
23238
|
export { index$p as Accounts, index$o as Agreements, index$n as Auth, index$m as Branches, index$l as Cooplace, index$k as Extensions, index$j as FreeDecisions, index$i as Meet, index$h as Participants, index$g as PaymentMethods, index$f as Payments, index$e as System };
|
|
23112
23239
|
}
|
|
23113
23240
|
|
|
23114
|
-
declare const name$
|
|
23241
|
+
declare const name$c = "getAccount";
|
|
23115
23242
|
/**
|
|
23116
23243
|
* Извлекает комплексную информацию о аккаунте
|
|
23117
23244
|
*/
|
|
23118
|
-
declare const query$
|
|
23245
|
+
declare const query$d: {
|
|
23119
23246
|
getAccount: [{
|
|
23120
23247
|
data: Variable<"GetAccountInput!", "data">;
|
|
23121
23248
|
}, {
|
|
@@ -23297,24 +23424,24 @@ declare const query$c: {
|
|
|
23297
23424
|
};
|
|
23298
23425
|
}];
|
|
23299
23426
|
};
|
|
23300
|
-
interface IInput$
|
|
23427
|
+
interface IInput$d {
|
|
23301
23428
|
/**
|
|
23302
23429
|
* @private
|
|
23303
23430
|
*/
|
|
23304
23431
|
[key: string]: unknown;
|
|
23305
23432
|
data: ModelTypes['GetAccountInput'];
|
|
23306
23433
|
}
|
|
23307
|
-
type IOutput$
|
|
23434
|
+
type IOutput$d = InputType<GraphQLTypes['Query'], typeof query$d>;
|
|
23308
23435
|
|
|
23309
23436
|
declare namespace getAccount {
|
|
23310
|
-
export { type IInput$
|
|
23437
|
+
export { type IInput$d as IInput, type IOutput$d as IOutput, name$c as name, query$d as query };
|
|
23311
23438
|
}
|
|
23312
23439
|
|
|
23313
|
-
declare const name$
|
|
23440
|
+
declare const name$b = "getAccounts";
|
|
23314
23441
|
/**
|
|
23315
23442
|
* Извлекает комплексную информацию о аккаунтах с постраничным отображением
|
|
23316
23443
|
*/
|
|
23317
|
-
declare const query$
|
|
23444
|
+
declare const query$c: {
|
|
23318
23445
|
getAccounts: [{
|
|
23319
23446
|
data: Variable<"GetAccountsInput", "data">;
|
|
23320
23447
|
options: Variable<"PaginationInput", "options">;
|
|
@@ -23502,7 +23629,7 @@ declare const query$b: {
|
|
|
23502
23629
|
currentPage: boolean;
|
|
23503
23630
|
}];
|
|
23504
23631
|
};
|
|
23505
|
-
interface IInput$
|
|
23632
|
+
interface IInput$c {
|
|
23506
23633
|
/**
|
|
23507
23634
|
* @private
|
|
23508
23635
|
*/
|
|
@@ -23510,9 +23637,94 @@ interface IInput$b {
|
|
|
23510
23637
|
data?: ModelTypes['GetAccountsInput'];
|
|
23511
23638
|
options?: ModelTypes['PaginationInput'];
|
|
23512
23639
|
}
|
|
23513
|
-
type IOutput$
|
|
23640
|
+
type IOutput$c = InputType<GraphQLTypes['Query'], typeof query$c>;
|
|
23514
23641
|
|
|
23515
23642
|
declare namespace getAccounts {
|
|
23643
|
+
export { type IInput$c as IInput, type IOutput$c as IOutput, name$b as name, query$c as query };
|
|
23644
|
+
}
|
|
23645
|
+
|
|
23646
|
+
declare const name$a = "searchPrivateAccounts";
|
|
23647
|
+
/**
|
|
23648
|
+
* Поиск приватных данных аккаунтов по запросу
|
|
23649
|
+
*/
|
|
23650
|
+
declare const query$b: {
|
|
23651
|
+
searchPrivateAccounts: [{
|
|
23652
|
+
data: Variable<"SearchPrivateAccountsInput!", "data">;
|
|
23653
|
+
}, {
|
|
23654
|
+
type: boolean;
|
|
23655
|
+
score: boolean;
|
|
23656
|
+
highlightedFields: boolean;
|
|
23657
|
+
data: {
|
|
23658
|
+
'...on Individual': {
|
|
23659
|
+
email: boolean;
|
|
23660
|
+
full_address: boolean;
|
|
23661
|
+
phone: boolean;
|
|
23662
|
+
first_name: boolean;
|
|
23663
|
+
last_name: boolean;
|
|
23664
|
+
middle_name: boolean;
|
|
23665
|
+
birthdate: boolean;
|
|
23666
|
+
passport: {
|
|
23667
|
+
number: boolean;
|
|
23668
|
+
code: boolean;
|
|
23669
|
+
issued_at: boolean;
|
|
23670
|
+
issued_by: boolean;
|
|
23671
|
+
series: boolean;
|
|
23672
|
+
};
|
|
23673
|
+
username: boolean;
|
|
23674
|
+
};
|
|
23675
|
+
'...on Entrepreneur': {
|
|
23676
|
+
birthdate: boolean;
|
|
23677
|
+
city: boolean;
|
|
23678
|
+
country: boolean;
|
|
23679
|
+
details: {
|
|
23680
|
+
inn: boolean;
|
|
23681
|
+
ogrn: boolean;
|
|
23682
|
+
};
|
|
23683
|
+
email: boolean;
|
|
23684
|
+
first_name: boolean;
|
|
23685
|
+
full_address: boolean;
|
|
23686
|
+
last_name: boolean;
|
|
23687
|
+
middle_name: boolean;
|
|
23688
|
+
phone: boolean;
|
|
23689
|
+
username: boolean;
|
|
23690
|
+
};
|
|
23691
|
+
'...on Organization': {
|
|
23692
|
+
city: boolean;
|
|
23693
|
+
country: boolean;
|
|
23694
|
+
details: {
|
|
23695
|
+
inn: boolean;
|
|
23696
|
+
kpp: boolean;
|
|
23697
|
+
ogrn: boolean;
|
|
23698
|
+
};
|
|
23699
|
+
email: boolean;
|
|
23700
|
+
fact_address: boolean;
|
|
23701
|
+
full_address: boolean;
|
|
23702
|
+
full_name: boolean;
|
|
23703
|
+
phone: boolean;
|
|
23704
|
+
represented_by: {
|
|
23705
|
+
based_on: boolean;
|
|
23706
|
+
first_name: boolean;
|
|
23707
|
+
last_name: boolean;
|
|
23708
|
+
middle_name: boolean;
|
|
23709
|
+
position: boolean;
|
|
23710
|
+
};
|
|
23711
|
+
short_name: boolean;
|
|
23712
|
+
type: boolean;
|
|
23713
|
+
username: boolean;
|
|
23714
|
+
};
|
|
23715
|
+
};
|
|
23716
|
+
}];
|
|
23717
|
+
};
|
|
23718
|
+
interface IInput$b {
|
|
23719
|
+
/**
|
|
23720
|
+
* @private
|
|
23721
|
+
*/
|
|
23722
|
+
[key: string]: unknown;
|
|
23723
|
+
data: ModelTypes['SearchPrivateAccountsInput'];
|
|
23724
|
+
}
|
|
23725
|
+
type IOutput$b = InputType<GraphQLTypes['Query'], typeof query$b>;
|
|
23726
|
+
|
|
23727
|
+
declare namespace searchPrivateAccounts {
|
|
23516
23728
|
export { type IInput$b as IInput, type IOutput$b as IOutput, name$a as name, query$b as query };
|
|
23517
23729
|
}
|
|
23518
23730
|
|
|
@@ -23521,7 +23733,7 @@ declare namespace getAccounts {
|
|
|
23521
23733
|
/** Получить сводную информацию о аккаунте */
|
|
23522
23734
|
|
|
23523
23735
|
declare namespace index$d {
|
|
23524
|
-
export { getAccount as GetAccount, getAccounts as GetAccounts };
|
|
23736
|
+
export { getAccount as GetAccount, getAccounts as GetAccounts, searchPrivateAccounts as SearchPrivateAccounts };
|
|
23525
23737
|
}
|
|
23526
23738
|
|
|
23527
23739
|
declare const name$9 = "getAgenda";
|
|
@@ -25711,6 +25923,7 @@ declare const query$4: {
|
|
|
25711
25923
|
};
|
|
25712
25924
|
};
|
|
25713
25925
|
notified_users: boolean;
|
|
25926
|
+
level: boolean;
|
|
25714
25927
|
};
|
|
25715
25928
|
questions: {
|
|
25716
25929
|
id: boolean;
|
|
@@ -26437,6 +26650,7 @@ declare const query$3: {
|
|
|
26437
26650
|
};
|
|
26438
26651
|
};
|
|
26439
26652
|
notified_users: boolean;
|
|
26653
|
+
level: boolean;
|
|
26440
26654
|
};
|
|
26441
26655
|
questions: {
|
|
26442
26656
|
id: boolean;
|
|
@@ -27426,7 +27640,7 @@ declare class Client {
|
|
|
27426
27640
|
* @param wif Приватный ключ в формате WIF.
|
|
27427
27641
|
* @returns Результат логина.
|
|
27428
27642
|
*/
|
|
27429
|
-
login(email: string, wif: string): Promise<IOutput$
|
|
27643
|
+
login(email: string, wif: string): Promise<IOutput$1c['login']>;
|
|
27430
27644
|
/**
|
|
27431
27645
|
* Установка токена авторизации.
|
|
27432
27646
|
* @param token Токен для заголовков Authorization.
|
|
@@ -27493,8 +27707,11 @@ declare class Client {
|
|
|
27493
27707
|
options?: ValueTypes["PaginationInput"] | undefined | null | Variable<any, string>;
|
|
27494
27708
|
}, ValueTypes["PaymentPaginationResult"]];
|
|
27495
27709
|
getSystemInfo?: ValueTypes["SystemInfo"];
|
|
27710
|
+
searchPrivateAccounts?: [{
|
|
27711
|
+
data: ValueTypes["SearchPrivateAccountsInput"] | Variable<any, string>;
|
|
27712
|
+
}, ValueTypes["PrivateAccountSearchResult"]];
|
|
27496
27713
|
__typename?: boolean | `@${string}`;
|
|
27497
|
-
}>>(o: Z & { [P in keyof Z]: P extends "__alias" | "__typename" | "__directives" | "getAccount" | "getAccounts" | "getAgenda" | "getBranches" | "getDesktop" | "getDocuments" | "getExtensions" | "getMeet" | "getMeets" | "getPaymentMethods" | "getPayments" | "getSystemInfo" ? Z[P] : never; }, ops?: OperationOptions & {
|
|
27714
|
+
}>>(o: Z & { [P in keyof Z]: P extends "__alias" | "__typename" | "__directives" | "getAccount" | "getAccounts" | "getAgenda" | "getBranches" | "getDesktop" | "getDocuments" | "getExtensions" | "getMeet" | "getMeets" | "getPaymentMethods" | "getPayments" | "getSystemInfo" | "searchPrivateAccounts" ? Z[P] : never; }, ops?: OperationOptions & {
|
|
27498
27715
|
variables?: Record<string, unknown>;
|
|
27499
27716
|
}) => Promise<InputType<{
|
|
27500
27717
|
__typename: "Query";
|
|
@@ -27510,6 +27727,7 @@ declare class Client {
|
|
|
27510
27727
|
getPaymentMethods: GraphQLTypes["PaymentMethodPaginationResult"];
|
|
27511
27728
|
getPayments: GraphQLTypes["PaymentPaginationResult"];
|
|
27512
27729
|
getSystemInfo: GraphQLTypes["SystemInfo"];
|
|
27730
|
+
searchPrivateAccounts: Array<GraphQLTypes["PrivateAccountSearchResult"]>;
|
|
27513
27731
|
}, Z, Omit<ScalarDefinition, string> & ScalarDefinition>>;
|
|
27514
27732
|
/**
|
|
27515
27733
|
* Доступ к GraphQL-мутациям.
|