@coopenomics/sdk 2025.7.28 → 2025.9.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +344 -295
- package/dist/index.d.cts +597 -381
- package/dist/index.d.mts +597 -381
- package/dist/index.d.ts +597 -381
- package/dist/index.mjs +344 -295
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -1894,6 +1894,20 @@ type ValueTypes = {
|
|
|
1894
1894
|
/** Фильтр по имени */
|
|
1895
1895
|
name?: string | undefined | null | Variable<any, string>;
|
|
1896
1896
|
};
|
|
1897
|
+
["GetLedgerHistoryInput"]: {
|
|
1898
|
+
/** ID счета для фильтрации. Если не указан, возвращаются операции по всем счетам */
|
|
1899
|
+
account_id?: number | undefined | null | Variable<any, string>;
|
|
1900
|
+
/** Имя кооператива */
|
|
1901
|
+
coopname: string | Variable<any, string>;
|
|
1902
|
+
/** Количество записей на странице (по умолчанию 10, максимум 100) */
|
|
1903
|
+
limit?: number | undefined | null | Variable<any, string>;
|
|
1904
|
+
/** Номер страницы (по умолчанию 1) */
|
|
1905
|
+
page?: number | undefined | null | Variable<any, string>;
|
|
1906
|
+
/** Поле для сортировки (created_at, global_sequence) */
|
|
1907
|
+
sortBy?: string | undefined | null | Variable<any, string>;
|
|
1908
|
+
/** Направление сортировки (ASC или DESC) */
|
|
1909
|
+
sortOrder?: string | undefined | null | Variable<any, string>;
|
|
1910
|
+
};
|
|
1897
1911
|
["GetLedgerInput"]: {
|
|
1898
1912
|
/** Имя кооператива для получения состояния ledger */
|
|
1899
1913
|
coopname: string | Variable<any, string>;
|
|
@@ -1979,6 +1993,34 @@ type ValueTypes = {
|
|
|
1979
1993
|
weight?: boolean | `@${string}`;
|
|
1980
1994
|
__typename?: boolean | `@${string}`;
|
|
1981
1995
|
}>;
|
|
1996
|
+
["LedgerHistoryResponse"]: AliasType<{
|
|
1997
|
+
/** Текущая страница */
|
|
1998
|
+
currentPage?: boolean | `@${string}`;
|
|
1999
|
+
/** Список операций */
|
|
2000
|
+
items?: ValueTypes["LedgerOperation"];
|
|
2001
|
+
/** Общее количество операций */
|
|
2002
|
+
totalCount?: boolean | `@${string}`;
|
|
2003
|
+
/** Общее количество страниц */
|
|
2004
|
+
totalPages?: boolean | `@${string}`;
|
|
2005
|
+
__typename?: boolean | `@${string}`;
|
|
2006
|
+
}>;
|
|
2007
|
+
["LedgerOperation"]: AliasType<{
|
|
2008
|
+
/** ID счета */
|
|
2009
|
+
account_id?: boolean | `@${string}`;
|
|
2010
|
+
/** Тип операции */
|
|
2011
|
+
action?: boolean | `@${string}`;
|
|
2012
|
+
/** Комментарий к операции */
|
|
2013
|
+
comment?: boolean | `@${string}`;
|
|
2014
|
+
/** Имя кооператива */
|
|
2015
|
+
coopname?: boolean | `@${string}`;
|
|
2016
|
+
/** Дата и время создания операции */
|
|
2017
|
+
created_at?: boolean | `@${string}`;
|
|
2018
|
+
/** Номер глобальной последовательности блокчейна */
|
|
2019
|
+
global_sequence?: boolean | `@${string}`;
|
|
2020
|
+
/** Сумма операции */
|
|
2021
|
+
quantity?: boolean | `@${string}`;
|
|
2022
|
+
__typename?: boolean | `@${string}`;
|
|
2023
|
+
}>;
|
|
1982
2024
|
["LedgerState"]: AliasType<{
|
|
1983
2025
|
/** План счетов с актуальными данными */
|
|
1984
2026
|
chartOfAccounts?: ValueTypes["ChartOfAccountsItem"];
|
|
@@ -2951,6 +2993,9 @@ type ValueTypes = {
|
|
|
2951
2993
|
getLedger?: [{
|
|
2952
2994
|
data: ValueTypes["GetLedgerInput"] | Variable<any, string>;
|
|
2953
2995
|
}, ValueTypes["LedgerState"]];
|
|
2996
|
+
getLedgerHistory?: [{
|
|
2997
|
+
data: ValueTypes["GetLedgerHistoryInput"] | Variable<any, string>;
|
|
2998
|
+
}, ValueTypes["LedgerHistoryResponse"]];
|
|
2954
2999
|
getMeet?: [{
|
|
2955
3000
|
data: ValueTypes["GetMeetInput"] | Variable<any, string>;
|
|
2956
3001
|
}, ValueTypes["MeetAggregate"]];
|
|
@@ -5606,6 +5651,20 @@ type ResolverInputTypes = {
|
|
|
5606
5651
|
/** Фильтр по имени */
|
|
5607
5652
|
name?: string | undefined | null;
|
|
5608
5653
|
};
|
|
5654
|
+
["GetLedgerHistoryInput"]: {
|
|
5655
|
+
/** ID счета для фильтрации. Если не указан, возвращаются операции по всем счетам */
|
|
5656
|
+
account_id?: number | undefined | null;
|
|
5657
|
+
/** Имя кооператива */
|
|
5658
|
+
coopname: string;
|
|
5659
|
+
/** Количество записей на странице (по умолчанию 10, максимум 100) */
|
|
5660
|
+
limit?: number | undefined | null;
|
|
5661
|
+
/** Номер страницы (по умолчанию 1) */
|
|
5662
|
+
page?: number | undefined | null;
|
|
5663
|
+
/** Поле для сортировки (created_at, global_sequence) */
|
|
5664
|
+
sortBy?: string | undefined | null;
|
|
5665
|
+
/** Направление сортировки (ASC или DESC) */
|
|
5666
|
+
sortOrder?: string | undefined | null;
|
|
5667
|
+
};
|
|
5609
5668
|
["GetLedgerInput"]: {
|
|
5610
5669
|
/** Имя кооператива для получения состояния ledger */
|
|
5611
5670
|
coopname: string;
|
|
@@ -5691,6 +5750,34 @@ type ResolverInputTypes = {
|
|
|
5691
5750
|
weight?: boolean | `@${string}`;
|
|
5692
5751
|
__typename?: boolean | `@${string}`;
|
|
5693
5752
|
}>;
|
|
5753
|
+
["LedgerHistoryResponse"]: AliasType<{
|
|
5754
|
+
/** Текущая страница */
|
|
5755
|
+
currentPage?: boolean | `@${string}`;
|
|
5756
|
+
/** Список операций */
|
|
5757
|
+
items?: ResolverInputTypes["LedgerOperation"];
|
|
5758
|
+
/** Общее количество операций */
|
|
5759
|
+
totalCount?: boolean | `@${string}`;
|
|
5760
|
+
/** Общее количество страниц */
|
|
5761
|
+
totalPages?: boolean | `@${string}`;
|
|
5762
|
+
__typename?: boolean | `@${string}`;
|
|
5763
|
+
}>;
|
|
5764
|
+
["LedgerOperation"]: AliasType<{
|
|
5765
|
+
/** ID счета */
|
|
5766
|
+
account_id?: boolean | `@${string}`;
|
|
5767
|
+
/** Тип операции */
|
|
5768
|
+
action?: boolean | `@${string}`;
|
|
5769
|
+
/** Комментарий к операции */
|
|
5770
|
+
comment?: boolean | `@${string}`;
|
|
5771
|
+
/** Имя кооператива */
|
|
5772
|
+
coopname?: boolean | `@${string}`;
|
|
5773
|
+
/** Дата и время создания операции */
|
|
5774
|
+
created_at?: boolean | `@${string}`;
|
|
5775
|
+
/** Номер глобальной последовательности блокчейна */
|
|
5776
|
+
global_sequence?: boolean | `@${string}`;
|
|
5777
|
+
/** Сумма операции */
|
|
5778
|
+
quantity?: boolean | `@${string}`;
|
|
5779
|
+
__typename?: boolean | `@${string}`;
|
|
5780
|
+
}>;
|
|
5694
5781
|
["LedgerState"]: AliasType<{
|
|
5695
5782
|
/** План счетов с актуальными данными */
|
|
5696
5783
|
chartOfAccounts?: ResolverInputTypes["ChartOfAccountsItem"];
|
|
@@ -6663,6 +6750,9 @@ type ResolverInputTypes = {
|
|
|
6663
6750
|
getLedger?: [{
|
|
6664
6751
|
data: ResolverInputTypes["GetLedgerInput"];
|
|
6665
6752
|
}, ResolverInputTypes["LedgerState"]];
|
|
6753
|
+
getLedgerHistory?: [{
|
|
6754
|
+
data: ResolverInputTypes["GetLedgerHistoryInput"];
|
|
6755
|
+
}, ResolverInputTypes["LedgerHistoryResponse"]];
|
|
6666
6756
|
getMeet?: [{
|
|
6667
6757
|
data: ResolverInputTypes["GetMeetInput"];
|
|
6668
6758
|
}, ResolverInputTypes["MeetAggregate"]];
|
|
@@ -9281,6 +9371,20 @@ type ModelTypes = {
|
|
|
9281
9371
|
/** Фильтр по имени */
|
|
9282
9372
|
name?: string | undefined | null;
|
|
9283
9373
|
};
|
|
9374
|
+
["GetLedgerHistoryInput"]: {
|
|
9375
|
+
/** ID счета для фильтрации. Если не указан, возвращаются операции по всем счетам */
|
|
9376
|
+
account_id?: number | undefined | null;
|
|
9377
|
+
/** Имя кооператива */
|
|
9378
|
+
coopname: string;
|
|
9379
|
+
/** Количество записей на странице (по умолчанию 10, максимум 100) */
|
|
9380
|
+
limit?: number | undefined | null;
|
|
9381
|
+
/** Номер страницы (по умолчанию 1) */
|
|
9382
|
+
page?: number | undefined | null;
|
|
9383
|
+
/** Поле для сортировки (created_at, global_sequence) */
|
|
9384
|
+
sortBy?: string | undefined | null;
|
|
9385
|
+
/** Направление сортировки (ASC или DESC) */
|
|
9386
|
+
sortOrder?: string | undefined | null;
|
|
9387
|
+
};
|
|
9284
9388
|
["GetLedgerInput"]: {
|
|
9285
9389
|
/** Имя кооператива для получения состояния ledger */
|
|
9286
9390
|
coopname: string;
|
|
@@ -9363,6 +9467,32 @@ type ModelTypes = {
|
|
|
9363
9467
|
/** Вес */
|
|
9364
9468
|
weight: number;
|
|
9365
9469
|
};
|
|
9470
|
+
["LedgerHistoryResponse"]: {
|
|
9471
|
+
/** Текущая страница */
|
|
9472
|
+
currentPage: number;
|
|
9473
|
+
/** Список операций */
|
|
9474
|
+
items: Array<ModelTypes["LedgerOperation"]>;
|
|
9475
|
+
/** Общее количество операций */
|
|
9476
|
+
totalCount: number;
|
|
9477
|
+
/** Общее количество страниц */
|
|
9478
|
+
totalPages: number;
|
|
9479
|
+
};
|
|
9480
|
+
["LedgerOperation"]: {
|
|
9481
|
+
/** ID счета */
|
|
9482
|
+
account_id: number;
|
|
9483
|
+
/** Тип операции */
|
|
9484
|
+
action: string;
|
|
9485
|
+
/** Комментарий к операции */
|
|
9486
|
+
comment?: string | undefined | null;
|
|
9487
|
+
/** Имя кооператива */
|
|
9488
|
+
coopname: string;
|
|
9489
|
+
/** Дата и время создания операции */
|
|
9490
|
+
created_at: ModelTypes["DateTime"];
|
|
9491
|
+
/** Номер глобальной последовательности блокчейна */
|
|
9492
|
+
global_sequence: number;
|
|
9493
|
+
/** Сумма операции */
|
|
9494
|
+
quantity: string;
|
|
9495
|
+
};
|
|
9366
9496
|
["LedgerState"]: {
|
|
9367
9497
|
/** План счетов с актуальными данными */
|
|
9368
9498
|
chartOfAccounts: Array<ModelTypes["ChartOfAccountsItem"]>;
|
|
@@ -10190,6 +10320,8 @@ type ModelTypes = {
|
|
|
10190
10320
|
getExtensions: Array<ModelTypes["Extension"]>;
|
|
10191
10321
|
/** Получить полное состояние плана счетов кооператива. Возвращает все счета из стандартного плана счетов с актуальными данными из блокчейна. Если счет не активен в блокчейне, возвращает нулевые значения. */
|
|
10192
10322
|
getLedger: ModelTypes["LedgerState"];
|
|
10323
|
+
/** Получить историю операций по счетам кооператива. Возвращает список операций с возможностью фильтрации по account_id и пагинацией. Операции сортируются по дате создания (новые первыми). */
|
|
10324
|
+
getLedgerHistory: ModelTypes["LedgerHistoryResponse"];
|
|
10193
10325
|
/** Получить данные собрания по хешу */
|
|
10194
10326
|
getMeet: ModelTypes["MeetAggregate"];
|
|
10195
10327
|
/** Получить список всех собраний кооператива */
|
|
@@ -12814,6 +12946,20 @@ type GraphQLTypes = {
|
|
|
12814
12946
|
/** Фильтр по имени */
|
|
12815
12947
|
name?: string | undefined | null;
|
|
12816
12948
|
};
|
|
12949
|
+
["GetLedgerHistoryInput"]: {
|
|
12950
|
+
/** ID счета для фильтрации. Если не указан, возвращаются операции по всем счетам */
|
|
12951
|
+
account_id?: number | undefined | null;
|
|
12952
|
+
/** Имя кооператива */
|
|
12953
|
+
coopname: string;
|
|
12954
|
+
/** Количество записей на странице (по умолчанию 10, максимум 100) */
|
|
12955
|
+
limit?: number | undefined | null;
|
|
12956
|
+
/** Номер страницы (по умолчанию 1) */
|
|
12957
|
+
page?: number | undefined | null;
|
|
12958
|
+
/** Поле для сортировки (created_at, global_sequence) */
|
|
12959
|
+
sortBy?: string | undefined | null;
|
|
12960
|
+
/** Направление сортировки (ASC или DESC) */
|
|
12961
|
+
sortOrder?: string | undefined | null;
|
|
12962
|
+
};
|
|
12817
12963
|
["GetLedgerInput"]: {
|
|
12818
12964
|
/** Имя кооператива для получения состояния ledger */
|
|
12819
12965
|
coopname: string;
|
|
@@ -12903,6 +13049,34 @@ type GraphQLTypes = {
|
|
|
12903
13049
|
/** Вес */
|
|
12904
13050
|
weight: number;
|
|
12905
13051
|
};
|
|
13052
|
+
["LedgerHistoryResponse"]: {
|
|
13053
|
+
__typename: "LedgerHistoryResponse";
|
|
13054
|
+
/** Текущая страница */
|
|
13055
|
+
currentPage: number;
|
|
13056
|
+
/** Список операций */
|
|
13057
|
+
items: Array<GraphQLTypes["LedgerOperation"]>;
|
|
13058
|
+
/** Общее количество операций */
|
|
13059
|
+
totalCount: number;
|
|
13060
|
+
/** Общее количество страниц */
|
|
13061
|
+
totalPages: number;
|
|
13062
|
+
};
|
|
13063
|
+
["LedgerOperation"]: {
|
|
13064
|
+
__typename: "LedgerOperation";
|
|
13065
|
+
/** ID счета */
|
|
13066
|
+
account_id: number;
|
|
13067
|
+
/** Тип операции */
|
|
13068
|
+
action: string;
|
|
13069
|
+
/** Комментарий к операции */
|
|
13070
|
+
comment?: string | undefined | null;
|
|
13071
|
+
/** Имя кооператива */
|
|
13072
|
+
coopname: string;
|
|
13073
|
+
/** Дата и время создания операции */
|
|
13074
|
+
created_at: GraphQLTypes["DateTime"];
|
|
13075
|
+
/** Номер глобальной последовательности блокчейна */
|
|
13076
|
+
global_sequence: number;
|
|
13077
|
+
/** Сумма операции */
|
|
13078
|
+
quantity: string;
|
|
13079
|
+
};
|
|
12906
13080
|
["LedgerState"]: {
|
|
12907
13081
|
__typename: "LedgerState";
|
|
12908
13082
|
/** План счетов с актуальными данными */
|
|
@@ -13768,6 +13942,8 @@ type GraphQLTypes = {
|
|
|
13768
13942
|
getExtensions: Array<GraphQLTypes["Extension"]>;
|
|
13769
13943
|
/** Получить полное состояние плана счетов кооператива. Возвращает все счета из стандартного плана счетов с актуальными данными из блокчейна. Если счет не активен в блокчейне, возвращает нулевые значения. */
|
|
13770
13944
|
getLedger: GraphQLTypes["LedgerState"];
|
|
13945
|
+
/** Получить историю операций по счетам кооператива. Возвращает список операций с возможностью фильтрации по account_id и пагинацией. Операции сортируются по дате создания (новые первыми). */
|
|
13946
|
+
getLedgerHistory: GraphQLTypes["LedgerHistoryResponse"];
|
|
13771
13947
|
/** Получить данные собрания по хешу */
|
|
13772
13948
|
getMeet: GraphQLTypes["MeetAggregate"];
|
|
13773
13949
|
/** Получить список всех собраний кооператива */
|
|
@@ -14922,6 +15098,7 @@ type ZEUS_VARIABLES = {
|
|
|
14922
15098
|
["GetBranchesInput"]: ValueTypes["GetBranchesInput"];
|
|
14923
15099
|
["GetDocumentsInput"]: ValueTypes["GetDocumentsInput"];
|
|
14924
15100
|
["GetExtensionsInput"]: ValueTypes["GetExtensionsInput"];
|
|
15101
|
+
["GetLedgerHistoryInput"]: ValueTypes["GetLedgerHistoryInput"];
|
|
14925
15102
|
["GetLedgerInput"]: ValueTypes["GetLedgerInput"];
|
|
14926
15103
|
["GetMeetInput"]: ValueTypes["GetMeetInput"];
|
|
14927
15104
|
["GetMeetsInput"]: ValueTypes["GetMeetsInput"];
|
|
@@ -15551,7 +15728,7 @@ declare namespace Classes {
|
|
|
15551
15728
|
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 };
|
|
15552
15729
|
}
|
|
15553
15730
|
|
|
15554
|
-
declare const name$
|
|
15731
|
+
declare const name$1w = "registerAccount";
|
|
15555
15732
|
declare const mutation$1f: {
|
|
15556
15733
|
registerAccount: [{
|
|
15557
15734
|
data: Variable<"RegisterAccountInput!", "data">;
|
|
@@ -15748,58 +15925,58 @@ declare const mutation$1f: {
|
|
|
15748
15925
|
};
|
|
15749
15926
|
}];
|
|
15750
15927
|
};
|
|
15751
|
-
interface IInput$
|
|
15928
|
+
interface IInput$1x {
|
|
15752
15929
|
/**
|
|
15753
15930
|
* @private
|
|
15754
15931
|
*/
|
|
15755
15932
|
[key: string]: unknown;
|
|
15756
15933
|
data: ModelTypes['RegisterAccountInput'];
|
|
15757
15934
|
}
|
|
15758
|
-
type IOutput$
|
|
15935
|
+
type IOutput$1x = InputType<GraphQLTypes['Mutation'], typeof mutation$1f>;
|
|
15759
15936
|
|
|
15760
15937
|
declare namespace registerAccount {
|
|
15761
|
-
export { type IInput$
|
|
15938
|
+
export { type IInput$1x as IInput, type IOutput$1x as IOutput, mutation$1f as mutation, name$1w as name };
|
|
15762
15939
|
}
|
|
15763
15940
|
|
|
15764
|
-
declare const name$
|
|
15941
|
+
declare const name$1v = "resetKey";
|
|
15765
15942
|
declare const mutation$1e: {
|
|
15766
15943
|
resetKey: [{
|
|
15767
15944
|
data: Variable<"ResetKeyInput!", "data">;
|
|
15768
15945
|
}, true];
|
|
15769
15946
|
};
|
|
15770
|
-
interface IInput$
|
|
15947
|
+
interface IInput$1w {
|
|
15771
15948
|
/**
|
|
15772
15949
|
* @private
|
|
15773
15950
|
*/
|
|
15774
15951
|
[key: string]: unknown;
|
|
15775
15952
|
data: ModelTypes['ResetKeyInput'];
|
|
15776
15953
|
}
|
|
15777
|
-
type IOutput$
|
|
15954
|
+
type IOutput$1w = InputType<GraphQLTypes['Mutation'], typeof mutation$1e>;
|
|
15778
15955
|
|
|
15779
15956
|
declare namespace resetKey {
|
|
15780
|
-
export { type IInput$
|
|
15957
|
+
export { type IInput$1w as IInput, type IOutput$1w as IOutput, mutation$1e as mutation, name$1v as name };
|
|
15781
15958
|
}
|
|
15782
15959
|
|
|
15783
|
-
declare const name$
|
|
15960
|
+
declare const name$1u = "startResetKey";
|
|
15784
15961
|
declare const mutation$1d: {
|
|
15785
15962
|
startResetKey: [{
|
|
15786
15963
|
data: Variable<"StartResetKeyInput!", "data">;
|
|
15787
15964
|
}, true];
|
|
15788
15965
|
};
|
|
15789
|
-
interface IInput$
|
|
15966
|
+
interface IInput$1v {
|
|
15790
15967
|
/**
|
|
15791
15968
|
* @private
|
|
15792
15969
|
*/
|
|
15793
15970
|
[key: string]: unknown;
|
|
15794
15971
|
data: ModelTypes['StartResetKeyInput'];
|
|
15795
15972
|
}
|
|
15796
|
-
type IOutput$
|
|
15973
|
+
type IOutput$1v = InputType<GraphQLTypes['Mutation'], typeof mutation$1d>;
|
|
15797
15974
|
|
|
15798
15975
|
declare namespace startResetKey {
|
|
15799
|
-
export { type IInput$
|
|
15976
|
+
export { type IInput$1v as IInput, type IOutput$1v as IOutput, mutation$1d as mutation, name$1u as name };
|
|
15800
15977
|
}
|
|
15801
15978
|
|
|
15802
|
-
declare const name$
|
|
15979
|
+
declare const name$1t = "updateAccount";
|
|
15803
15980
|
declare const mutation$1c: {
|
|
15804
15981
|
updateAccount: [{
|
|
15805
15982
|
data: Variable<"UpdateAccountInput!", "data">;
|
|
@@ -15984,17 +16161,17 @@ declare const mutation$1c: {
|
|
|
15984
16161
|
};
|
|
15985
16162
|
}];
|
|
15986
16163
|
};
|
|
15987
|
-
interface IInput$
|
|
16164
|
+
interface IInput$1u {
|
|
15988
16165
|
/**
|
|
15989
16166
|
* @private
|
|
15990
16167
|
*/
|
|
15991
16168
|
[key: string]: unknown;
|
|
15992
16169
|
data: ModelTypes['UpdateAccountInput'];
|
|
15993
16170
|
}
|
|
15994
|
-
type IOutput$
|
|
16171
|
+
type IOutput$1u = InputType<GraphQLTypes['Mutation'], typeof mutation$1c>;
|
|
15995
16172
|
|
|
15996
16173
|
declare namespace updateAccount {
|
|
15997
|
-
export { type IInput$
|
|
16174
|
+
export { type IInput$1u as IInput, type IOutput$1u as IOutput, mutation$1c as mutation, name$1t as name };
|
|
15998
16175
|
}
|
|
15999
16176
|
|
|
16000
16177
|
/** Зарегистрировать аккаунт пользователя в системе */
|
|
@@ -16003,7 +16180,7 @@ declare namespace index$t {
|
|
|
16003
16180
|
export { registerAccount as RegisterAccount, resetKey as ResetKey, startResetKey as StartResetKey, updateAccount as UpdateAccount };
|
|
16004
16181
|
}
|
|
16005
16182
|
|
|
16006
|
-
declare const name$
|
|
16183
|
+
declare const name$1s = "generatePrivacyAgreement";
|
|
16007
16184
|
declare const mutation$1b: {
|
|
16008
16185
|
generatePrivacyAgreement: [{
|
|
16009
16186
|
data: Variable<"GenerateDocumentInput!", "data">;
|
|
@@ -16016,7 +16193,7 @@ declare const mutation$1b: {
|
|
|
16016
16193
|
meta: boolean;
|
|
16017
16194
|
}];
|
|
16018
16195
|
};
|
|
16019
|
-
interface IInput$
|
|
16196
|
+
interface IInput$1t {
|
|
16020
16197
|
/**
|
|
16021
16198
|
* @private
|
|
16022
16199
|
*/
|
|
@@ -16024,13 +16201,13 @@ interface IInput$1s {
|
|
|
16024
16201
|
data: ModelTypes['GenerateDocumentInput'];
|
|
16025
16202
|
options?: ModelTypes['GenerateDocumentOptionsInput'];
|
|
16026
16203
|
}
|
|
16027
|
-
type IOutput$
|
|
16204
|
+
type IOutput$1t = InputType<GraphQLTypes['Mutation'], typeof mutation$1b>;
|
|
16028
16205
|
|
|
16029
16206
|
declare namespace generatePrivacyAgreement {
|
|
16030
|
-
export { type IInput$
|
|
16207
|
+
export { type IInput$1t as IInput, type IOutput$1t as IOutput, mutation$1b as mutation, name$1s as name };
|
|
16031
16208
|
}
|
|
16032
16209
|
|
|
16033
|
-
declare const name$
|
|
16210
|
+
declare const name$1r = "generateSignatureAgreement";
|
|
16034
16211
|
declare const mutation$1a: {
|
|
16035
16212
|
generateSignatureAgreement: [{
|
|
16036
16213
|
data: Variable<"GenerateDocumentInput!", "data">;
|
|
@@ -16043,7 +16220,7 @@ declare const mutation$1a: {
|
|
|
16043
16220
|
meta: boolean;
|
|
16044
16221
|
}];
|
|
16045
16222
|
};
|
|
16046
|
-
interface IInput$
|
|
16223
|
+
interface IInput$1s {
|
|
16047
16224
|
/**
|
|
16048
16225
|
* @private
|
|
16049
16226
|
*/
|
|
@@ -16051,13 +16228,13 @@ interface IInput$1r {
|
|
|
16051
16228
|
data: ModelTypes['GenerateDocumentInput'];
|
|
16052
16229
|
options?: ModelTypes['GenerateDocumentOptionsInput'];
|
|
16053
16230
|
}
|
|
16054
|
-
type IOutput$
|
|
16231
|
+
type IOutput$1s = InputType<GraphQLTypes['Mutation'], typeof mutation$1a>;
|
|
16055
16232
|
|
|
16056
16233
|
declare namespace generateSignatureAgreement {
|
|
16057
|
-
export { type IInput$
|
|
16234
|
+
export { type IInput$1s as IInput, type IOutput$1s as IOutput, mutation$1a as mutation, name$1r as name };
|
|
16058
16235
|
}
|
|
16059
16236
|
|
|
16060
|
-
declare const name$
|
|
16237
|
+
declare const name$1q = "generateWalletAgreement";
|
|
16061
16238
|
declare const mutation$19: {
|
|
16062
16239
|
generateWalletAgreement: [{
|
|
16063
16240
|
data: Variable<"GenerateDocumentInput!", "data">;
|
|
@@ -16070,7 +16247,7 @@ declare const mutation$19: {
|
|
|
16070
16247
|
meta: boolean;
|
|
16071
16248
|
}];
|
|
16072
16249
|
};
|
|
16073
|
-
interface IInput$
|
|
16250
|
+
interface IInput$1r {
|
|
16074
16251
|
/**
|
|
16075
16252
|
* @private
|
|
16076
16253
|
*/
|
|
@@ -16078,13 +16255,13 @@ interface IInput$1q {
|
|
|
16078
16255
|
data: ModelTypes['GenerateDocumentInput'];
|
|
16079
16256
|
options?: ModelTypes['GenerateDocumentOptionsInput'];
|
|
16080
16257
|
}
|
|
16081
|
-
type IOutput$
|
|
16258
|
+
type IOutput$1r = InputType<GraphQLTypes['Mutation'], typeof mutation$19>;
|
|
16082
16259
|
|
|
16083
16260
|
declare namespace generateWalletAgreement {
|
|
16084
|
-
export { type IInput$
|
|
16261
|
+
export { type IInput$1r as IInput, type IOutput$1r as IOutput, mutation$19 as mutation, name$1q as name };
|
|
16085
16262
|
}
|
|
16086
16263
|
|
|
16087
|
-
declare const name$
|
|
16264
|
+
declare const name$1p = "generateUserAgreement";
|
|
16088
16265
|
declare const mutation$18: {
|
|
16089
16266
|
generateUserAgreement: [{
|
|
16090
16267
|
data: Variable<"GenerateDocumentInput!", "data">;
|
|
@@ -16097,7 +16274,7 @@ declare const mutation$18: {
|
|
|
16097
16274
|
meta: boolean;
|
|
16098
16275
|
}];
|
|
16099
16276
|
};
|
|
16100
|
-
interface IInput$
|
|
16277
|
+
interface IInput$1q {
|
|
16101
16278
|
/**
|
|
16102
16279
|
* @private
|
|
16103
16280
|
*/
|
|
@@ -16105,10 +16282,10 @@ interface IInput$1p {
|
|
|
16105
16282
|
data: ModelTypes['GenerateDocumentInput'];
|
|
16106
16283
|
options?: ModelTypes['GenerateDocumentOptionsInput'];
|
|
16107
16284
|
}
|
|
16108
|
-
type IOutput$
|
|
16285
|
+
type IOutput$1q = InputType<GraphQLTypes['Mutation'], typeof mutation$18>;
|
|
16109
16286
|
|
|
16110
16287
|
declare namespace generateUserAgreement {
|
|
16111
|
-
export { type IInput$
|
|
16288
|
+
export { type IInput$1q as IInput, type IOutput$1q as IOutput, mutation$18 as mutation, name$1p as name };
|
|
16112
16289
|
}
|
|
16113
16290
|
|
|
16114
16291
|
/** Сгенерировать документ согласия с политикой конфиденциальности. */
|
|
@@ -16117,7 +16294,7 @@ declare namespace index$s {
|
|
|
16117
16294
|
export { generatePrivacyAgreement as GeneratePrivacyAgreement, generateSignatureAgreement as GenerateSignatureAgreement, generateUserAgreement as GenerateUserAgreement, generateWalletAgreement as GenerateWalletAgreement };
|
|
16118
16295
|
}
|
|
16119
16296
|
|
|
16120
|
-
declare const name$
|
|
16297
|
+
declare const name$1o = "refresh";
|
|
16121
16298
|
declare const mutation$17: {
|
|
16122
16299
|
refresh: [{
|
|
16123
16300
|
data: Variable<"RefreshInput!", "data">;
|
|
@@ -16314,39 +16491,39 @@ declare const mutation$17: {
|
|
|
16314
16491
|
};
|
|
16315
16492
|
}];
|
|
16316
16493
|
};
|
|
16317
|
-
interface IInput$
|
|
16494
|
+
interface IInput$1p {
|
|
16318
16495
|
/**
|
|
16319
16496
|
* @private
|
|
16320
16497
|
*/
|
|
16321
16498
|
[key: string]: unknown;
|
|
16322
16499
|
data: ModelTypes['RefreshInput'];
|
|
16323
16500
|
}
|
|
16324
|
-
type IOutput$
|
|
16501
|
+
type IOutput$1p = InputType<GraphQLTypes['Mutation'], typeof mutation$17>;
|
|
16325
16502
|
|
|
16326
16503
|
declare namespace refresh {
|
|
16327
|
-
export { type IInput$
|
|
16504
|
+
export { type IInput$1p as IInput, type IOutput$1p as IOutput, mutation$17 as mutation, name$1o as name };
|
|
16328
16505
|
}
|
|
16329
16506
|
|
|
16330
|
-
declare const name$
|
|
16507
|
+
declare const name$1n = "logout";
|
|
16331
16508
|
declare const mutation$16: {
|
|
16332
16509
|
logout: [{
|
|
16333
16510
|
data: Variable<"LogoutInput!", "data">;
|
|
16334
16511
|
}, true];
|
|
16335
16512
|
};
|
|
16336
|
-
interface IInput$
|
|
16513
|
+
interface IInput$1o {
|
|
16337
16514
|
/**
|
|
16338
16515
|
* @private
|
|
16339
16516
|
*/
|
|
16340
16517
|
[key: string]: unknown;
|
|
16341
16518
|
data: ModelTypes['LogoutInput'];
|
|
16342
16519
|
}
|
|
16343
|
-
type IOutput$
|
|
16520
|
+
type IOutput$1o = InputType<GraphQLTypes['Mutation'], typeof mutation$16>;
|
|
16344
16521
|
|
|
16345
16522
|
declare namespace logout {
|
|
16346
|
-
export { type IInput$
|
|
16523
|
+
export { type IInput$1o as IInput, type IOutput$1o as IOutput, mutation$16 as mutation, name$1n as name };
|
|
16347
16524
|
}
|
|
16348
16525
|
|
|
16349
|
-
declare const name$
|
|
16526
|
+
declare const name$1m = "login";
|
|
16350
16527
|
declare const mutation$15: {
|
|
16351
16528
|
login: [{
|
|
16352
16529
|
data: Variable<"LoginInput!", "data">;
|
|
@@ -16543,17 +16720,17 @@ declare const mutation$15: {
|
|
|
16543
16720
|
};
|
|
16544
16721
|
}];
|
|
16545
16722
|
};
|
|
16546
|
-
interface IInput$
|
|
16723
|
+
interface IInput$1n {
|
|
16547
16724
|
/**
|
|
16548
16725
|
* @private
|
|
16549
16726
|
*/
|
|
16550
16727
|
[key: string]: unknown;
|
|
16551
16728
|
data: ModelTypes['LoginInput'];
|
|
16552
16729
|
}
|
|
16553
|
-
type IOutput$
|
|
16730
|
+
type IOutput$1n = InputType<GraphQLTypes['Mutation'], typeof mutation$15>;
|
|
16554
16731
|
|
|
16555
16732
|
declare namespace login {
|
|
16556
|
-
export { type IInput$
|
|
16733
|
+
export { type IInput$1n as IInput, type IOutput$1n as IOutput, mutation$15 as mutation, name$1m as name };
|
|
16557
16734
|
}
|
|
16558
16735
|
|
|
16559
16736
|
/** Обновить токен доступа аккаунта */
|
|
@@ -16562,7 +16739,7 @@ declare namespace index$r {
|
|
|
16562
16739
|
export { login as Login, logout as Logout, refresh as Refresh };
|
|
16563
16740
|
}
|
|
16564
16741
|
|
|
16565
|
-
declare const name$
|
|
16742
|
+
declare const name$1l = "addTrustedAccount";
|
|
16566
16743
|
declare const mutation$14: {
|
|
16567
16744
|
addTrustedAccount: [{
|
|
16568
16745
|
data: Variable<"AddTrustedAccountInput!", "data">;
|
|
@@ -16645,20 +16822,20 @@ declare const mutation$14: {
|
|
|
16645
16822
|
type: boolean;
|
|
16646
16823
|
}];
|
|
16647
16824
|
};
|
|
16648
|
-
interface IInput$
|
|
16825
|
+
interface IInput$1m {
|
|
16649
16826
|
/**
|
|
16650
16827
|
* @private
|
|
16651
16828
|
*/
|
|
16652
16829
|
[key: string]: unknown;
|
|
16653
16830
|
data: ModelTypes['AddTrustedAccountInput'];
|
|
16654
16831
|
}
|
|
16655
|
-
type IOutput$
|
|
16832
|
+
type IOutput$1m = InputType<GraphQLTypes['Mutation'], typeof mutation$14>;
|
|
16656
16833
|
|
|
16657
16834
|
declare namespace addTrustedAccount {
|
|
16658
|
-
export { type IInput$
|
|
16835
|
+
export { type IInput$1m as IInput, type IOutput$1m as IOutput, mutation$14 as mutation, name$1l as name };
|
|
16659
16836
|
}
|
|
16660
16837
|
|
|
16661
|
-
declare const name$
|
|
16838
|
+
declare const name$1k = "createBranch";
|
|
16662
16839
|
declare const mutation$13: {
|
|
16663
16840
|
createBranch: [{
|
|
16664
16841
|
data: Variable<"CreateBranchInput!", "data">;
|
|
@@ -16741,39 +16918,39 @@ declare const mutation$13: {
|
|
|
16741
16918
|
type: boolean;
|
|
16742
16919
|
}];
|
|
16743
16920
|
};
|
|
16744
|
-
interface IInput$
|
|
16921
|
+
interface IInput$1l {
|
|
16745
16922
|
/**
|
|
16746
16923
|
* @private
|
|
16747
16924
|
*/
|
|
16748
16925
|
[key: string]: unknown;
|
|
16749
16926
|
data: ModelTypes['CreateBranchInput'];
|
|
16750
16927
|
}
|
|
16751
|
-
type IOutput$
|
|
16928
|
+
type IOutput$1l = InputType<GraphQLTypes['Mutation'], typeof mutation$13>;
|
|
16752
16929
|
|
|
16753
16930
|
declare namespace createBranch {
|
|
16754
|
-
export { type IInput$
|
|
16931
|
+
export { type IInput$1l as IInput, type IOutput$1l as IOutput, mutation$13 as mutation, name$1k as name };
|
|
16755
16932
|
}
|
|
16756
16933
|
|
|
16757
|
-
declare const name$
|
|
16934
|
+
declare const name$1j = "deleteBranch";
|
|
16758
16935
|
declare const mutation$12: {
|
|
16759
16936
|
deleteBranch: [{
|
|
16760
16937
|
data: Variable<"DeleteBranchInput!", "data">;
|
|
16761
16938
|
}, true];
|
|
16762
16939
|
};
|
|
16763
|
-
interface IInput$
|
|
16940
|
+
interface IInput$1k {
|
|
16764
16941
|
/**
|
|
16765
16942
|
* @private
|
|
16766
16943
|
*/
|
|
16767
16944
|
[key: string]: unknown;
|
|
16768
16945
|
data: ModelTypes['DeleteBranchInput'];
|
|
16769
16946
|
}
|
|
16770
|
-
type IOutput$
|
|
16947
|
+
type IOutput$1k = InputType<GraphQLTypes['Mutation'], typeof mutation$12>;
|
|
16771
16948
|
|
|
16772
16949
|
declare namespace deleteBranch {
|
|
16773
|
-
export { type IInput$
|
|
16950
|
+
export { type IInput$1k as IInput, type IOutput$1k as IOutput, mutation$12 as mutation, name$1j as name };
|
|
16774
16951
|
}
|
|
16775
16952
|
|
|
16776
|
-
declare const name$
|
|
16953
|
+
declare const name$1i = "deleteTrustedAccount";
|
|
16777
16954
|
declare const mutation$11: {
|
|
16778
16955
|
deleteTrustedAccount: [{
|
|
16779
16956
|
data: Variable<"DeleteTrustedAccountInput!", "data">;
|
|
@@ -16856,20 +17033,20 @@ declare const mutation$11: {
|
|
|
16856
17033
|
type: boolean;
|
|
16857
17034
|
}];
|
|
16858
17035
|
};
|
|
16859
|
-
interface IInput$
|
|
17036
|
+
interface IInput$1j {
|
|
16860
17037
|
/**
|
|
16861
17038
|
* @private
|
|
16862
17039
|
*/
|
|
16863
17040
|
[key: string]: unknown;
|
|
16864
17041
|
data: ModelTypes['DeleteTrustedAccountInput'];
|
|
16865
17042
|
}
|
|
16866
|
-
type IOutput$
|
|
17043
|
+
type IOutput$1j = InputType<GraphQLTypes['Mutation'], typeof mutation$11>;
|
|
16867
17044
|
|
|
16868
17045
|
declare namespace deleteTrustedAccount {
|
|
16869
|
-
export { type IInput$
|
|
17046
|
+
export { type IInput$1j as IInput, type IOutput$1j as IOutput, mutation$11 as mutation, name$1i as name };
|
|
16870
17047
|
}
|
|
16871
17048
|
|
|
16872
|
-
declare const name$
|
|
17049
|
+
declare const name$1h = "editBranch";
|
|
16873
17050
|
declare const mutation$10: {
|
|
16874
17051
|
editBranch: [{
|
|
16875
17052
|
data: Variable<"EditBranchInput!", "data">;
|
|
@@ -16952,20 +17129,20 @@ declare const mutation$10: {
|
|
|
16952
17129
|
type: boolean;
|
|
16953
17130
|
}];
|
|
16954
17131
|
};
|
|
16955
|
-
interface IInput$
|
|
17132
|
+
interface IInput$1i {
|
|
16956
17133
|
/**
|
|
16957
17134
|
* @private
|
|
16958
17135
|
*/
|
|
16959
17136
|
[key: string]: unknown;
|
|
16960
17137
|
data: ModelTypes['EditBranchInput'];
|
|
16961
17138
|
}
|
|
16962
|
-
type IOutput$
|
|
17139
|
+
type IOutput$1i = InputType<GraphQLTypes['Mutation'], typeof mutation$10>;
|
|
16963
17140
|
|
|
16964
17141
|
declare namespace editBranch {
|
|
16965
|
-
export { type IInput$
|
|
17142
|
+
export { type IInput$1i as IInput, type IOutput$1i as IOutput, mutation$10 as mutation, name$1h as name };
|
|
16966
17143
|
}
|
|
16967
17144
|
|
|
16968
|
-
declare const name$
|
|
17145
|
+
declare const name$1g = "generateSelectBranchDocument";
|
|
16969
17146
|
declare const mutation$$: {
|
|
16970
17147
|
generateSelectBranchDocument: [{
|
|
16971
17148
|
data: Variable<"SelectBranchGenerateDocumentInput!", "data">;
|
|
@@ -16978,7 +17155,7 @@ declare const mutation$$: {
|
|
|
16978
17155
|
meta: boolean;
|
|
16979
17156
|
}];
|
|
16980
17157
|
};
|
|
16981
|
-
interface IInput$
|
|
17158
|
+
interface IInput$1h {
|
|
16982
17159
|
/**
|
|
16983
17160
|
* @private
|
|
16984
17161
|
*/
|
|
@@ -16986,29 +17163,29 @@ interface IInput$1g {
|
|
|
16986
17163
|
data: ModelTypes['SelectBranchGenerateDocumentInput'];
|
|
16987
17164
|
options?: ModelTypes['GenerateDocumentOptionsInput'];
|
|
16988
17165
|
}
|
|
16989
|
-
type IOutput$
|
|
17166
|
+
type IOutput$1h = InputType<GraphQLTypes['Mutation'], typeof mutation$$>;
|
|
16990
17167
|
|
|
16991
17168
|
declare namespace generateSelectBranchDocument {
|
|
16992
|
-
export { type IInput$
|
|
17169
|
+
export { type IInput$1h as IInput, type IOutput$1h as IOutput, mutation$$ as mutation, name$1g as name };
|
|
16993
17170
|
}
|
|
16994
17171
|
|
|
16995
|
-
declare const name$
|
|
17172
|
+
declare const name$1f = "selectBranch";
|
|
16996
17173
|
declare const mutation$_: {
|
|
16997
17174
|
selectBranch: [{
|
|
16998
17175
|
data: Variable<"SelectBranchInput!", "data">;
|
|
16999
17176
|
}, true];
|
|
17000
17177
|
};
|
|
17001
|
-
interface IInput$
|
|
17178
|
+
interface IInput$1g {
|
|
17002
17179
|
/**
|
|
17003
17180
|
* @private
|
|
17004
17181
|
*/
|
|
17005
17182
|
[key: string]: unknown;
|
|
17006
17183
|
data: ModelTypes['SelectBranchInput'];
|
|
17007
17184
|
}
|
|
17008
|
-
type IOutput$
|
|
17185
|
+
type IOutput$1g = InputType<GraphQLTypes['Mutation'], typeof mutation$_>;
|
|
17009
17186
|
|
|
17010
17187
|
declare namespace selectBranch {
|
|
17011
|
-
export { type IInput$
|
|
17188
|
+
export { type IInput$1g as IInput, type IOutput$1g as IOutput, mutation$_ as mutation, name$1f as name };
|
|
17012
17189
|
}
|
|
17013
17190
|
|
|
17014
17191
|
/** Добавить доверенное лицо кооперативного участка */
|
|
@@ -17017,7 +17194,7 @@ declare namespace index$q {
|
|
|
17017
17194
|
export { addTrustedAccount as AddTrustedAccount, createBranch as CreateBranch, deleteBranch as DeleteBranch, deleteTrustedAccount as DeleteTrustedAccount, editBranch as EditBranch, generateSelectBranchDocument as GenerateSelectBranchDocument, selectBranch as SelectBranch };
|
|
17018
17195
|
}
|
|
17019
17196
|
|
|
17020
|
-
declare const name$
|
|
17197
|
+
declare const name$1e = "acceptChildOrder";
|
|
17021
17198
|
declare const mutation$Z: {
|
|
17022
17199
|
acceptChildOrder: [{
|
|
17023
17200
|
data: Variable<"AcceptChildOrderInput!", "data">;
|
|
@@ -17033,20 +17210,20 @@ declare const mutation$Z: {
|
|
|
17033
17210
|
transaction: boolean;
|
|
17034
17211
|
}];
|
|
17035
17212
|
};
|
|
17036
|
-
interface IInput$
|
|
17213
|
+
interface IInput$1f {
|
|
17037
17214
|
/**
|
|
17038
17215
|
* @private
|
|
17039
17216
|
*/
|
|
17040
17217
|
[key: string]: unknown;
|
|
17041
17218
|
data: ModelTypes['AcceptChildOrderInput'];
|
|
17042
17219
|
}
|
|
17043
|
-
type IOutput$
|
|
17220
|
+
type IOutput$1f = InputType<GraphQLTypes['Mutation'], typeof mutation$Z>;
|
|
17044
17221
|
|
|
17045
17222
|
declare namespace acceptChildOrder {
|
|
17046
|
-
export { type IInput$
|
|
17223
|
+
export { type IInput$1f as IInput, type IOutput$1f as IOutput, mutation$Z as mutation, name$1e as name };
|
|
17047
17224
|
}
|
|
17048
17225
|
|
|
17049
|
-
declare const name$
|
|
17226
|
+
declare const name$1d = "cancelRequest";
|
|
17050
17227
|
declare const mutation$Y: {
|
|
17051
17228
|
cancelRequest: [{
|
|
17052
17229
|
data: Variable<"CancelRequestInput!", "data">;
|
|
@@ -17062,20 +17239,20 @@ declare const mutation$Y: {
|
|
|
17062
17239
|
transaction: boolean;
|
|
17063
17240
|
}];
|
|
17064
17241
|
};
|
|
17065
|
-
interface IInput$
|
|
17242
|
+
interface IInput$1e {
|
|
17066
17243
|
/**
|
|
17067
17244
|
* @private
|
|
17068
17245
|
*/
|
|
17069
17246
|
[key: string]: unknown;
|
|
17070
17247
|
data: ModelTypes['CancelRequestInput'];
|
|
17071
17248
|
}
|
|
17072
|
-
type IOutput$
|
|
17249
|
+
type IOutput$1e = InputType<GraphQLTypes['Mutation'], typeof mutation$Y>;
|
|
17073
17250
|
|
|
17074
17251
|
declare namespace cancelRequest {
|
|
17075
|
-
export { type IInput$
|
|
17252
|
+
export { type IInput$1e as IInput, type IOutput$1e as IOutput, mutation$Y as mutation, name$1d as name };
|
|
17076
17253
|
}
|
|
17077
17254
|
|
|
17078
|
-
declare const name$
|
|
17255
|
+
declare const name$1c = "confirmReceiveOnRequest";
|
|
17079
17256
|
declare const mutation$X: {
|
|
17080
17257
|
confirmReceiveOnRequest: [{
|
|
17081
17258
|
data: Variable<"ConfirmReceiveOnRequestInput!", "data">;
|
|
@@ -17091,20 +17268,20 @@ declare const mutation$X: {
|
|
|
17091
17268
|
transaction: boolean;
|
|
17092
17269
|
}];
|
|
17093
17270
|
};
|
|
17094
|
-
interface IInput$
|
|
17271
|
+
interface IInput$1d {
|
|
17095
17272
|
/**
|
|
17096
17273
|
* @private
|
|
17097
17274
|
*/
|
|
17098
17275
|
[key: string]: unknown;
|
|
17099
17276
|
data: ModelTypes['ConfirmReceiveOnRequestInput'];
|
|
17100
17277
|
}
|
|
17101
|
-
type IOutput$
|
|
17278
|
+
type IOutput$1d = InputType<GraphQLTypes['Mutation'], typeof mutation$X>;
|
|
17102
17279
|
|
|
17103
17280
|
declare namespace completeReceiveOnRequest {
|
|
17104
|
-
export { type IInput$
|
|
17281
|
+
export { type IInput$1d as IInput, type IOutput$1d as IOutput, mutation$X as mutation, name$1c as name };
|
|
17105
17282
|
}
|
|
17106
17283
|
|
|
17107
|
-
declare const name$
|
|
17284
|
+
declare const name$1b = "completeRequest";
|
|
17108
17285
|
declare const mutation$W: {
|
|
17109
17286
|
completeRequest: [{
|
|
17110
17287
|
data: Variable<"CompleteRequestInput!", "data">;
|
|
@@ -17120,20 +17297,20 @@ declare const mutation$W: {
|
|
|
17120
17297
|
transaction: boolean;
|
|
17121
17298
|
}];
|
|
17122
17299
|
};
|
|
17123
|
-
interface IInput$
|
|
17300
|
+
interface IInput$1c {
|
|
17124
17301
|
/**
|
|
17125
17302
|
* @private
|
|
17126
17303
|
*/
|
|
17127
17304
|
[key: string]: unknown;
|
|
17128
17305
|
data: ModelTypes['CompleteRequestInput'];
|
|
17129
17306
|
}
|
|
17130
|
-
type IOutput$
|
|
17307
|
+
type IOutput$1c = InputType<GraphQLTypes['Mutation'], typeof mutation$W>;
|
|
17131
17308
|
|
|
17132
17309
|
declare namespace completeRequest {
|
|
17133
|
-
export { type IInput$
|
|
17310
|
+
export { type IInput$1c as IInput, type IOutput$1c as IOutput, mutation$W as mutation, name$1b as name };
|
|
17134
17311
|
}
|
|
17135
17312
|
|
|
17136
|
-
declare const name$
|
|
17313
|
+
declare const name$1a = "confirmSupplyOnRequest";
|
|
17137
17314
|
declare const mutation$V: {
|
|
17138
17315
|
confirmSupplyOnRequest: [{
|
|
17139
17316
|
data: Variable<"ConfirmSupplyOnRequestInput!", "data">;
|
|
@@ -17149,20 +17326,20 @@ declare const mutation$V: {
|
|
|
17149
17326
|
transaction: boolean;
|
|
17150
17327
|
}];
|
|
17151
17328
|
};
|
|
17152
|
-
interface IInput$
|
|
17329
|
+
interface IInput$1b {
|
|
17153
17330
|
/**
|
|
17154
17331
|
* @private
|
|
17155
17332
|
*/
|
|
17156
17333
|
[key: string]: unknown;
|
|
17157
17334
|
data: ModelTypes['ConfirmSupplyOnRequestInput'];
|
|
17158
17335
|
}
|
|
17159
|
-
type IOutput$
|
|
17336
|
+
type IOutput$1b = InputType<GraphQLTypes['Mutation'], typeof mutation$V>;
|
|
17160
17337
|
|
|
17161
17338
|
declare namespace confirmSupplyOnRequest {
|
|
17162
|
-
export { type IInput$
|
|
17339
|
+
export { type IInput$1b as IInput, type IOutput$1b as IOutput, mutation$V as mutation, name$1a as name };
|
|
17163
17340
|
}
|
|
17164
17341
|
|
|
17165
|
-
declare const name$
|
|
17342
|
+
declare const name$19 = "createChildOrder";
|
|
17166
17343
|
declare const mutation$U: {
|
|
17167
17344
|
createChildOrder: [{
|
|
17168
17345
|
data: Variable<"CreateChildOrderInput!", "data">;
|
|
@@ -17178,20 +17355,20 @@ declare const mutation$U: {
|
|
|
17178
17355
|
transaction: boolean;
|
|
17179
17356
|
}];
|
|
17180
17357
|
};
|
|
17181
|
-
interface IInput$
|
|
17358
|
+
interface IInput$1a {
|
|
17182
17359
|
/**
|
|
17183
17360
|
* @private
|
|
17184
17361
|
*/
|
|
17185
17362
|
[key: string]: unknown;
|
|
17186
17363
|
data: ModelTypes['CreateChildOrderInput'];
|
|
17187
17364
|
}
|
|
17188
|
-
type IOutput$
|
|
17365
|
+
type IOutput$1a = InputType<GraphQLTypes['Mutation'], typeof mutation$U>;
|
|
17189
17366
|
|
|
17190
17367
|
declare namespace createChildOrder {
|
|
17191
|
-
export { type IInput$
|
|
17368
|
+
export { type IInput$1a as IInput, type IOutput$1a as IOutput, mutation$U as mutation, name$19 as name };
|
|
17192
17369
|
}
|
|
17193
17370
|
|
|
17194
|
-
declare const name$
|
|
17371
|
+
declare const name$18 = "createParentOffer";
|
|
17195
17372
|
declare const mutation$T: {
|
|
17196
17373
|
createParentOffer: [{
|
|
17197
17374
|
data: Variable<"CreateParentOfferInput!", "data">;
|
|
@@ -17207,20 +17384,20 @@ declare const mutation$T: {
|
|
|
17207
17384
|
transaction: boolean;
|
|
17208
17385
|
}];
|
|
17209
17386
|
};
|
|
17210
|
-
interface IInput$
|
|
17387
|
+
interface IInput$19 {
|
|
17211
17388
|
/**
|
|
17212
17389
|
* @private
|
|
17213
17390
|
*/
|
|
17214
17391
|
[key: string]: unknown;
|
|
17215
17392
|
data: ModelTypes['CreateParentOfferInput'];
|
|
17216
17393
|
}
|
|
17217
|
-
type IOutput$
|
|
17394
|
+
type IOutput$19 = InputType<GraphQLTypes['Mutation'], typeof mutation$T>;
|
|
17218
17395
|
|
|
17219
17396
|
declare namespace createParentOffer {
|
|
17220
|
-
export { type IInput$
|
|
17397
|
+
export { type IInput$19 as IInput, type IOutput$19 as IOutput, mutation$T as mutation, name$18 as name };
|
|
17221
17398
|
}
|
|
17222
17399
|
|
|
17223
|
-
declare const name$
|
|
17400
|
+
declare const name$17 = "declineRequest";
|
|
17224
17401
|
declare const mutation$S: {
|
|
17225
17402
|
declineRequest: [{
|
|
17226
17403
|
data: Variable<"DeclineRequestInput!", "data">;
|
|
@@ -17236,20 +17413,20 @@ declare const mutation$S: {
|
|
|
17236
17413
|
transaction: boolean;
|
|
17237
17414
|
}];
|
|
17238
17415
|
};
|
|
17239
|
-
interface IInput$
|
|
17416
|
+
interface IInput$18 {
|
|
17240
17417
|
/**
|
|
17241
17418
|
* @private
|
|
17242
17419
|
*/
|
|
17243
17420
|
[key: string]: unknown;
|
|
17244
17421
|
data: ModelTypes['DeclineRequestInput'];
|
|
17245
17422
|
}
|
|
17246
|
-
type IOutput$
|
|
17423
|
+
type IOutput$18 = InputType<GraphQLTypes['Mutation'], typeof mutation$S>;
|
|
17247
17424
|
|
|
17248
17425
|
declare namespace declineRequest {
|
|
17249
|
-
export { type IInput$
|
|
17426
|
+
export { type IInput$18 as IInput, type IOutput$18 as IOutput, mutation$S as mutation, name$17 as name };
|
|
17250
17427
|
}
|
|
17251
17428
|
|
|
17252
|
-
declare const name$
|
|
17429
|
+
declare const name$16 = "deliverOnRequest";
|
|
17253
17430
|
declare const mutation$R: {
|
|
17254
17431
|
deliverOnRequest: [{
|
|
17255
17432
|
data: Variable<"DeliverOnRequestInput!", "data">;
|
|
@@ -17265,20 +17442,20 @@ declare const mutation$R: {
|
|
|
17265
17442
|
transaction: boolean;
|
|
17266
17443
|
}];
|
|
17267
17444
|
};
|
|
17268
|
-
interface IInput$
|
|
17445
|
+
interface IInput$17 {
|
|
17269
17446
|
/**
|
|
17270
17447
|
* @private
|
|
17271
17448
|
*/
|
|
17272
17449
|
[key: string]: unknown;
|
|
17273
17450
|
data: ModelTypes['DeliverOnRequestInput'];
|
|
17274
17451
|
}
|
|
17275
|
-
type IOutput$
|
|
17452
|
+
type IOutput$17 = InputType<GraphQLTypes['Mutation'], typeof mutation$R>;
|
|
17276
17453
|
|
|
17277
17454
|
declare namespace deliverOnRequest {
|
|
17278
|
-
export { type IInput$
|
|
17455
|
+
export { type IInput$17 as IInput, type IOutput$17 as IOutput, mutation$R as mutation, name$16 as name };
|
|
17279
17456
|
}
|
|
17280
17457
|
|
|
17281
|
-
declare const name$
|
|
17458
|
+
declare const name$15 = "disputeOnRequest";
|
|
17282
17459
|
declare const mutation$Q: {
|
|
17283
17460
|
disputeOnRequest: [{
|
|
17284
17461
|
data: Variable<"DisputeOnRequestInput!", "data">;
|
|
@@ -17294,20 +17471,20 @@ declare const mutation$Q: {
|
|
|
17294
17471
|
transaction: boolean;
|
|
17295
17472
|
}];
|
|
17296
17473
|
};
|
|
17297
|
-
interface IInput$
|
|
17474
|
+
interface IInput$16 {
|
|
17298
17475
|
/**
|
|
17299
17476
|
* @private
|
|
17300
17477
|
*/
|
|
17301
17478
|
[key: string]: unknown;
|
|
17302
17479
|
data: ModelTypes['DisputeOnRequestInput'];
|
|
17303
17480
|
}
|
|
17304
|
-
type IOutput$
|
|
17481
|
+
type IOutput$16 = InputType<GraphQLTypes['Mutation'], typeof mutation$Q>;
|
|
17305
17482
|
|
|
17306
17483
|
declare namespace disputeOnRequest {
|
|
17307
|
-
export { type IInput$
|
|
17484
|
+
export { type IInput$16 as IInput, type IOutput$16 as IOutput, mutation$Q as mutation, name$15 as name };
|
|
17308
17485
|
}
|
|
17309
17486
|
|
|
17310
|
-
declare const name$
|
|
17487
|
+
declare const name$14 = "generateAssetContributionAct";
|
|
17311
17488
|
declare const mutation$P: {
|
|
17312
17489
|
generateAssetContributionAct: [{
|
|
17313
17490
|
data: Variable<"AssetContributionActGenerateDocumentInput!", "data">;
|
|
@@ -17320,7 +17497,7 @@ declare const mutation$P: {
|
|
|
17320
17497
|
meta: boolean;
|
|
17321
17498
|
}];
|
|
17322
17499
|
};
|
|
17323
|
-
interface IInput$
|
|
17500
|
+
interface IInput$15 {
|
|
17324
17501
|
/**
|
|
17325
17502
|
* @private
|
|
17326
17503
|
*/
|
|
@@ -17328,13 +17505,13 @@ interface IInput$14 {
|
|
|
17328
17505
|
data: ModelTypes['AssetContributionActGenerateDocumentInput'];
|
|
17329
17506
|
options?: ModelTypes['GenerateDocumentOptionsInput'];
|
|
17330
17507
|
}
|
|
17331
|
-
type IOutput$
|
|
17508
|
+
type IOutput$15 = InputType<GraphQLTypes['Mutation'], typeof mutation$P>;
|
|
17332
17509
|
|
|
17333
17510
|
declare namespace generateAssetContributionAct {
|
|
17334
|
-
export { type IInput$
|
|
17511
|
+
export { type IInput$15 as IInput, type IOutput$15 as IOutput, mutation$P as mutation, name$14 as name };
|
|
17335
17512
|
}
|
|
17336
17513
|
|
|
17337
|
-
declare const name$
|
|
17514
|
+
declare const name$13 = "generateAssetContributionDecision";
|
|
17338
17515
|
declare const mutation$O: {
|
|
17339
17516
|
generateAssetContributionDecision: [{
|
|
17340
17517
|
data: Variable<"AssetContributionDecisionGenerateDocumentInput!", "data">;
|
|
@@ -17347,7 +17524,7 @@ declare const mutation$O: {
|
|
|
17347
17524
|
meta: boolean;
|
|
17348
17525
|
}];
|
|
17349
17526
|
};
|
|
17350
|
-
interface IInput$
|
|
17527
|
+
interface IInput$14 {
|
|
17351
17528
|
/**
|
|
17352
17529
|
* @private
|
|
17353
17530
|
*/
|
|
@@ -17355,13 +17532,13 @@ interface IInput$13 {
|
|
|
17355
17532
|
data: ModelTypes['AssetContributionDecisionGenerateDocumentInput'];
|
|
17356
17533
|
options?: ModelTypes['GenerateDocumentOptionsInput'];
|
|
17357
17534
|
}
|
|
17358
|
-
type IOutput$
|
|
17535
|
+
type IOutput$14 = InputType<GraphQLTypes['Mutation'], typeof mutation$O>;
|
|
17359
17536
|
|
|
17360
17537
|
declare namespace generateAssetContributionDecision {
|
|
17361
|
-
export { type IInput$
|
|
17538
|
+
export { type IInput$14 as IInput, type IOutput$14 as IOutput, mutation$O as mutation, name$13 as name };
|
|
17362
17539
|
}
|
|
17363
17540
|
|
|
17364
|
-
declare const name$
|
|
17541
|
+
declare const name$12 = "generateAssetContributionStatement";
|
|
17365
17542
|
declare const mutation$N: {
|
|
17366
17543
|
generateAssetContributionStatement: [{
|
|
17367
17544
|
data: Variable<"AssetContributionStatementGenerateDocumentInput!", "data">;
|
|
@@ -17374,7 +17551,7 @@ declare const mutation$N: {
|
|
|
17374
17551
|
meta: boolean;
|
|
17375
17552
|
}];
|
|
17376
17553
|
};
|
|
17377
|
-
interface IInput$
|
|
17554
|
+
interface IInput$13 {
|
|
17378
17555
|
/**
|
|
17379
17556
|
* @private
|
|
17380
17557
|
*/
|
|
@@ -17382,13 +17559,13 @@ interface IInput$12 {
|
|
|
17382
17559
|
data: ModelTypes['AssetContributionStatementGenerateDocumentInput'];
|
|
17383
17560
|
options?: ModelTypes['GenerateDocumentOptionsInput'];
|
|
17384
17561
|
}
|
|
17385
|
-
type IOutput$
|
|
17562
|
+
type IOutput$13 = InputType<GraphQLTypes['Mutation'], typeof mutation$N>;
|
|
17386
17563
|
|
|
17387
17564
|
declare namespace generateAssetContributionStatement {
|
|
17388
|
-
export { type IInput$
|
|
17565
|
+
export { type IInput$13 as IInput, type IOutput$13 as IOutput, mutation$N as mutation, name$12 as name };
|
|
17389
17566
|
}
|
|
17390
17567
|
|
|
17391
|
-
declare const name$
|
|
17568
|
+
declare const name$11 = "generateReturnByAssetAct";
|
|
17392
17569
|
declare const mutation$M: {
|
|
17393
17570
|
generateReturnByAssetAct: [{
|
|
17394
17571
|
data: Variable<"ReturnByAssetActGenerateDocumentInput!", "data">;
|
|
@@ -17401,7 +17578,7 @@ declare const mutation$M: {
|
|
|
17401
17578
|
meta: boolean;
|
|
17402
17579
|
}];
|
|
17403
17580
|
};
|
|
17404
|
-
interface IInput$
|
|
17581
|
+
interface IInput$12 {
|
|
17405
17582
|
/**
|
|
17406
17583
|
* @private
|
|
17407
17584
|
*/
|
|
@@ -17409,13 +17586,13 @@ interface IInput$11 {
|
|
|
17409
17586
|
data: ModelTypes['ReturnByAssetActGenerateDocumentInput'];
|
|
17410
17587
|
options?: ModelTypes['GenerateDocumentOptionsInput'];
|
|
17411
17588
|
}
|
|
17412
|
-
type IOutput$
|
|
17589
|
+
type IOutput$12 = InputType<GraphQLTypes['Mutation'], typeof mutation$M>;
|
|
17413
17590
|
|
|
17414
17591
|
declare namespace generateReturnByAssetAct {
|
|
17415
|
-
export { type IInput$
|
|
17592
|
+
export { type IInput$12 as IInput, type IOutput$12 as IOutput, mutation$M as mutation, name$11 as name };
|
|
17416
17593
|
}
|
|
17417
17594
|
|
|
17418
|
-
declare const name
|
|
17595
|
+
declare const name$10 = "generateReturnByAssetDecision";
|
|
17419
17596
|
declare const mutation$L: {
|
|
17420
17597
|
generateReturnByAssetDecision: [{
|
|
17421
17598
|
data: Variable<"ReturnByAssetDecisionGenerateDocumentInput!", "data">;
|
|
@@ -17428,7 +17605,7 @@ declare const mutation$L: {
|
|
|
17428
17605
|
meta: boolean;
|
|
17429
17606
|
}];
|
|
17430
17607
|
};
|
|
17431
|
-
interface IInput$
|
|
17608
|
+
interface IInput$11 {
|
|
17432
17609
|
/**
|
|
17433
17610
|
* @private
|
|
17434
17611
|
*/
|
|
@@ -17436,13 +17613,13 @@ interface IInput$10 {
|
|
|
17436
17613
|
data: ModelTypes['ReturnByAssetDecisionGenerateDocumentInput'];
|
|
17437
17614
|
options?: ModelTypes['GenerateDocumentOptionsInput'];
|
|
17438
17615
|
}
|
|
17439
|
-
type IOutput$
|
|
17616
|
+
type IOutput$11 = InputType<GraphQLTypes['Mutation'], typeof mutation$L>;
|
|
17440
17617
|
|
|
17441
17618
|
declare namespace generateReturnByAssetDecision {
|
|
17442
|
-
export { type IInput$
|
|
17619
|
+
export { type IInput$11 as IInput, type IOutput$11 as IOutput, mutation$L as mutation, name$10 as name };
|
|
17443
17620
|
}
|
|
17444
17621
|
|
|
17445
|
-
declare const name
|
|
17622
|
+
declare const name$$ = "generateReturnByAssetStatement";
|
|
17446
17623
|
declare const mutation$K: {
|
|
17447
17624
|
generateReturnByAssetStatement: [{
|
|
17448
17625
|
data: Variable<"ReturnByAssetStatementGenerateDocumentInput!", "data">;
|
|
@@ -17455,7 +17632,7 @@ declare const mutation$K: {
|
|
|
17455
17632
|
meta: boolean;
|
|
17456
17633
|
}];
|
|
17457
17634
|
};
|
|
17458
|
-
interface IInput
|
|
17635
|
+
interface IInput$10 {
|
|
17459
17636
|
/**
|
|
17460
17637
|
* @private
|
|
17461
17638
|
*/
|
|
@@ -17463,13 +17640,13 @@ interface IInput$$ {
|
|
|
17463
17640
|
data: ModelTypes['ReturnByAssetStatementGenerateDocumentInput'];
|
|
17464
17641
|
options?: ModelTypes['GenerateDocumentOptionsInput'];
|
|
17465
17642
|
}
|
|
17466
|
-
type IOutput
|
|
17643
|
+
type IOutput$10 = InputType<GraphQLTypes['Mutation'], typeof mutation$K>;
|
|
17467
17644
|
|
|
17468
17645
|
declare namespace generateReturnByAssetStatement {
|
|
17469
|
-
export { type IInput
|
|
17646
|
+
export { type IInput$10 as IInput, type IOutput$10 as IOutput, mutation$K as mutation, name$$ as name };
|
|
17470
17647
|
}
|
|
17471
17648
|
|
|
17472
|
-
declare const name$
|
|
17649
|
+
declare const name$_ = "moderateRequest";
|
|
17473
17650
|
declare const mutation$J: {
|
|
17474
17651
|
moderateRequest: [{
|
|
17475
17652
|
data: Variable<"ModerateRequestInput!", "data">;
|
|
@@ -17485,20 +17662,20 @@ declare const mutation$J: {
|
|
|
17485
17662
|
transaction: boolean;
|
|
17486
17663
|
}];
|
|
17487
17664
|
};
|
|
17488
|
-
interface IInput
|
|
17665
|
+
interface IInput$$ {
|
|
17489
17666
|
/**
|
|
17490
17667
|
* @private
|
|
17491
17668
|
*/
|
|
17492
17669
|
[key: string]: unknown;
|
|
17493
17670
|
data: ModelTypes['ModerateRequestInput'];
|
|
17494
17671
|
}
|
|
17495
|
-
type IOutput
|
|
17672
|
+
type IOutput$$ = InputType<GraphQLTypes['Mutation'], typeof mutation$J>;
|
|
17496
17673
|
|
|
17497
17674
|
declare namespace moderateRequest {
|
|
17498
|
-
export { type IInput
|
|
17675
|
+
export { type IInput$$ as IInput, type IOutput$$ as IOutput, mutation$J as mutation, name$_ as name };
|
|
17499
17676
|
}
|
|
17500
17677
|
|
|
17501
|
-
declare const name$
|
|
17678
|
+
declare const name$Z = "prohibitRequest";
|
|
17502
17679
|
declare const mutation$I: {
|
|
17503
17680
|
prohibitRequest: [{
|
|
17504
17681
|
data: Variable<"ProhibitRequestInput!", "data">;
|
|
@@ -17514,20 +17691,20 @@ declare const mutation$I: {
|
|
|
17514
17691
|
transaction: boolean;
|
|
17515
17692
|
}];
|
|
17516
17693
|
};
|
|
17517
|
-
interface IInput$
|
|
17694
|
+
interface IInput$_ {
|
|
17518
17695
|
/**
|
|
17519
17696
|
* @private
|
|
17520
17697
|
*/
|
|
17521
17698
|
[key: string]: unknown;
|
|
17522
17699
|
data: ModelTypes['ProhibitRequestInput'];
|
|
17523
17700
|
}
|
|
17524
|
-
type IOutput$
|
|
17701
|
+
type IOutput$_ = InputType<GraphQLTypes['Mutation'], typeof mutation$I>;
|
|
17525
17702
|
|
|
17526
17703
|
declare namespace prohibitRequest {
|
|
17527
|
-
export { type IInput$
|
|
17704
|
+
export { type IInput$_ as IInput, type IOutput$_ as IOutput, mutation$I as mutation, name$Z as name };
|
|
17528
17705
|
}
|
|
17529
17706
|
|
|
17530
|
-
declare const name$
|
|
17707
|
+
declare const name$Y = "publishRequest";
|
|
17531
17708
|
declare const mutation$H: {
|
|
17532
17709
|
publishRequest: [{
|
|
17533
17710
|
data: Variable<"PublishRequestInput!", "data">;
|
|
@@ -17543,20 +17720,20 @@ declare const mutation$H: {
|
|
|
17543
17720
|
transaction: boolean;
|
|
17544
17721
|
}];
|
|
17545
17722
|
};
|
|
17546
|
-
interface IInput$
|
|
17723
|
+
interface IInput$Z {
|
|
17547
17724
|
/**
|
|
17548
17725
|
* @private
|
|
17549
17726
|
*/
|
|
17550
17727
|
[key: string]: unknown;
|
|
17551
17728
|
data: ModelTypes['PublishRequestInput'];
|
|
17552
17729
|
}
|
|
17553
|
-
type IOutput$
|
|
17730
|
+
type IOutput$Z = InputType<GraphQLTypes['Mutation'], typeof mutation$H>;
|
|
17554
17731
|
|
|
17555
17732
|
declare namespace publishRequest {
|
|
17556
|
-
export { type IInput$
|
|
17733
|
+
export { type IInput$Z as IInput, type IOutput$Z as IOutput, mutation$H as mutation, name$Y as name };
|
|
17557
17734
|
}
|
|
17558
17735
|
|
|
17559
|
-
declare const name$
|
|
17736
|
+
declare const name$X = "receiveOnRequest";
|
|
17560
17737
|
declare const mutation$G: {
|
|
17561
17738
|
receiveOnRequest: [{
|
|
17562
17739
|
data: Variable<"ReceiveOnRequestInput!", "data">;
|
|
@@ -17572,20 +17749,20 @@ declare const mutation$G: {
|
|
|
17572
17749
|
transaction: boolean;
|
|
17573
17750
|
}];
|
|
17574
17751
|
};
|
|
17575
|
-
interface IInput$
|
|
17752
|
+
interface IInput$Y {
|
|
17576
17753
|
/**
|
|
17577
17754
|
* @private
|
|
17578
17755
|
*/
|
|
17579
17756
|
[key: string]: unknown;
|
|
17580
17757
|
data: ModelTypes['ReceiveOnRequestInput'];
|
|
17581
17758
|
}
|
|
17582
|
-
type IOutput$
|
|
17759
|
+
type IOutput$Y = InputType<GraphQLTypes['Mutation'], typeof mutation$G>;
|
|
17583
17760
|
|
|
17584
17761
|
declare namespace receiveOnRequest {
|
|
17585
|
-
export { type IInput$
|
|
17762
|
+
export { type IInput$Y as IInput, type IOutput$Y as IOutput, mutation$G as mutation, name$X as name };
|
|
17586
17763
|
}
|
|
17587
17764
|
|
|
17588
|
-
declare const name$
|
|
17765
|
+
declare const name$W = "supplyOnRequest";
|
|
17589
17766
|
declare const mutation$F: {
|
|
17590
17767
|
supplyOnRequest: [{
|
|
17591
17768
|
data: Variable<"SupplyOnRequestInput!", "data">;
|
|
@@ -17601,20 +17778,20 @@ declare const mutation$F: {
|
|
|
17601
17778
|
transaction: boolean;
|
|
17602
17779
|
}];
|
|
17603
17780
|
};
|
|
17604
|
-
interface IInput$
|
|
17781
|
+
interface IInput$X {
|
|
17605
17782
|
/**
|
|
17606
17783
|
* @private
|
|
17607
17784
|
*/
|
|
17608
17785
|
[key: string]: unknown;
|
|
17609
17786
|
data: ModelTypes['SupplyOnRequestInput'];
|
|
17610
17787
|
}
|
|
17611
|
-
type IOutput$
|
|
17788
|
+
type IOutput$X = InputType<GraphQLTypes['Mutation'], typeof mutation$F>;
|
|
17612
17789
|
|
|
17613
17790
|
declare namespace supplyOnRequest {
|
|
17614
|
-
export { type IInput$
|
|
17791
|
+
export { type IInput$X as IInput, type IOutput$X as IOutput, mutation$F as mutation, name$W as name };
|
|
17615
17792
|
}
|
|
17616
17793
|
|
|
17617
|
-
declare const name$
|
|
17794
|
+
declare const name$V = "unpublishRequest";
|
|
17618
17795
|
declare const mutation$E: {
|
|
17619
17796
|
unpublishRequest: [{
|
|
17620
17797
|
data: Variable<"UnpublishRequestInput!", "data">;
|
|
@@ -17630,20 +17807,20 @@ declare const mutation$E: {
|
|
|
17630
17807
|
transaction: boolean;
|
|
17631
17808
|
}];
|
|
17632
17809
|
};
|
|
17633
|
-
interface IInput$
|
|
17810
|
+
interface IInput$W {
|
|
17634
17811
|
/**
|
|
17635
17812
|
* @private
|
|
17636
17813
|
*/
|
|
17637
17814
|
[key: string]: unknown;
|
|
17638
17815
|
data: ModelTypes['UnpublishRequestInput'];
|
|
17639
17816
|
}
|
|
17640
|
-
type IOutput$
|
|
17817
|
+
type IOutput$W = InputType<GraphQLTypes['Mutation'], typeof mutation$E>;
|
|
17641
17818
|
|
|
17642
17819
|
declare namespace unpublishRequest {
|
|
17643
|
-
export { type IInput$
|
|
17820
|
+
export { type IInput$W as IInput, type IOutput$W as IOutput, mutation$E as mutation, name$V as name };
|
|
17644
17821
|
}
|
|
17645
17822
|
|
|
17646
|
-
declare const name$
|
|
17823
|
+
declare const name$U = "updateRequest";
|
|
17647
17824
|
declare const mutation$D: {
|
|
17648
17825
|
updateRequest: [{
|
|
17649
17826
|
data: Variable<"UpdateRequestInput!", "data">;
|
|
@@ -17659,17 +17836,17 @@ declare const mutation$D: {
|
|
|
17659
17836
|
transaction: boolean;
|
|
17660
17837
|
}];
|
|
17661
17838
|
};
|
|
17662
|
-
interface IInput$
|
|
17839
|
+
interface IInput$V {
|
|
17663
17840
|
/**
|
|
17664
17841
|
* @private
|
|
17665
17842
|
*/
|
|
17666
17843
|
[key: string]: unknown;
|
|
17667
17844
|
data: ModelTypes['UpdateRequestInput'];
|
|
17668
17845
|
}
|
|
17669
|
-
type IOutput$
|
|
17846
|
+
type IOutput$V = InputType<GraphQLTypes['Mutation'], typeof mutation$D>;
|
|
17670
17847
|
|
|
17671
17848
|
declare namespace updateRequest {
|
|
17672
|
-
export { type IInput$
|
|
17849
|
+
export { type IInput$V as IInput, type IOutput$V as IOutput, mutation$D as mutation, name$U as name };
|
|
17673
17850
|
}
|
|
17674
17851
|
|
|
17675
17852
|
/** Подтвердить поставку имущества на заявку */
|
|
@@ -17678,7 +17855,7 @@ declare namespace index$p {
|
|
|
17678
17855
|
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 };
|
|
17679
17856
|
}
|
|
17680
17857
|
|
|
17681
|
-
declare const name$
|
|
17858
|
+
declare const name$T = "installExtension";
|
|
17682
17859
|
declare const mutation$C: {
|
|
17683
17860
|
installExtension: [{
|
|
17684
17861
|
data: Variable<"ExtensionInput!", "data">;
|
|
@@ -17703,39 +17880,39 @@ declare const mutation$C: {
|
|
|
17703
17880
|
instructions: boolean;
|
|
17704
17881
|
}];
|
|
17705
17882
|
};
|
|
17706
|
-
interface IInput$
|
|
17883
|
+
interface IInput$U {
|
|
17707
17884
|
/**
|
|
17708
17885
|
* @private
|
|
17709
17886
|
*/
|
|
17710
17887
|
[key: string]: unknown;
|
|
17711
17888
|
data: ModelTypes['ExtensionInput'];
|
|
17712
17889
|
}
|
|
17713
|
-
type IOutput$
|
|
17890
|
+
type IOutput$U = InputType<GraphQLTypes['Mutation'], typeof mutation$C>;
|
|
17714
17891
|
|
|
17715
17892
|
declare namespace installExtension {
|
|
17716
|
-
export { type IInput$
|
|
17893
|
+
export { type IInput$U as IInput, type IOutput$U as IOutput, mutation$C as mutation, name$T as name };
|
|
17717
17894
|
}
|
|
17718
17895
|
|
|
17719
|
-
declare const name$
|
|
17896
|
+
declare const name$S = "uninstallExtension";
|
|
17720
17897
|
declare const mutation$B: {
|
|
17721
17898
|
uninstallExtension: [{
|
|
17722
17899
|
data: Variable<"UninstallExtensionInput!", "data">;
|
|
17723
17900
|
}, true];
|
|
17724
17901
|
};
|
|
17725
|
-
interface IInput$
|
|
17902
|
+
interface IInput$T {
|
|
17726
17903
|
/**
|
|
17727
17904
|
* @private
|
|
17728
17905
|
*/
|
|
17729
17906
|
[key: string]: unknown;
|
|
17730
17907
|
data: ModelTypes['UninstallExtensionInput'];
|
|
17731
17908
|
}
|
|
17732
|
-
type IOutput$
|
|
17909
|
+
type IOutput$T = InputType<GraphQLTypes['Mutation'], typeof mutation$B>;
|
|
17733
17910
|
|
|
17734
17911
|
declare namespace uninstallExtension {
|
|
17735
|
-
export { type IInput$
|
|
17912
|
+
export { type IInput$T as IInput, type IOutput$T as IOutput, mutation$B as mutation, name$S as name };
|
|
17736
17913
|
}
|
|
17737
17914
|
|
|
17738
|
-
declare const name$
|
|
17915
|
+
declare const name$R = "updateExtension";
|
|
17739
17916
|
declare const mutation$A: {
|
|
17740
17917
|
updateExtension: [{
|
|
17741
17918
|
data: Variable<"ExtensionInput!", "data">;
|
|
@@ -17760,17 +17937,17 @@ declare const mutation$A: {
|
|
|
17760
17937
|
instructions: boolean;
|
|
17761
17938
|
}];
|
|
17762
17939
|
};
|
|
17763
|
-
interface IInput$
|
|
17940
|
+
interface IInput$S {
|
|
17764
17941
|
/**
|
|
17765
17942
|
* @private
|
|
17766
17943
|
*/
|
|
17767
17944
|
[key: string]: unknown;
|
|
17768
17945
|
data: ModelTypes['ExtensionInput'];
|
|
17769
17946
|
}
|
|
17770
|
-
type IOutput$
|
|
17947
|
+
type IOutput$S = InputType<GraphQLTypes['Mutation'], typeof mutation$A>;
|
|
17771
17948
|
|
|
17772
17949
|
declare namespace updateExtension {
|
|
17773
|
-
export { type IInput$
|
|
17950
|
+
export { type IInput$S as IInput, type IOutput$S as IOutput, mutation$A as mutation, name$R as name };
|
|
17774
17951
|
}
|
|
17775
17952
|
|
|
17776
17953
|
/** Установить расширение */
|
|
@@ -17779,7 +17956,7 @@ declare namespace index$o {
|
|
|
17779
17956
|
export { installExtension as InstallExtension, uninstallExtension as UninstallExtension, updateExtension as UpdateExtension };
|
|
17780
17957
|
}
|
|
17781
17958
|
|
|
17782
|
-
declare const name$
|
|
17959
|
+
declare const name$Q = "generateProjectOfFreeDecision";
|
|
17783
17960
|
declare const mutation$z: {
|
|
17784
17961
|
generateProjectOfFreeDecision: [{
|
|
17785
17962
|
data: Variable<"ProjectFreeDecisionGenerateDocumentInput!", "data">;
|
|
@@ -17792,7 +17969,7 @@ declare const mutation$z: {
|
|
|
17792
17969
|
meta: boolean;
|
|
17793
17970
|
}];
|
|
17794
17971
|
};
|
|
17795
|
-
interface IInput$
|
|
17972
|
+
interface IInput$R {
|
|
17796
17973
|
/**
|
|
17797
17974
|
* @private
|
|
17798
17975
|
*/
|
|
@@ -17800,13 +17977,13 @@ interface IInput$Q {
|
|
|
17800
17977
|
data: ModelTypes['ProjectFreeDecisionGenerateDocumentInput'];
|
|
17801
17978
|
options?: ModelTypes['GenerateDocumentOptionsInput'];
|
|
17802
17979
|
}
|
|
17803
|
-
type IOutput$
|
|
17980
|
+
type IOutput$R = InputType<GraphQLTypes['Mutation'], typeof mutation$z>;
|
|
17804
17981
|
|
|
17805
17982
|
declare namespace generateProjectOfFreeDecisionDocument {
|
|
17806
|
-
export { type IInput$
|
|
17983
|
+
export { type IInput$R as IInput, type IOutput$R as IOutput, mutation$z as mutation, name$Q as name };
|
|
17807
17984
|
}
|
|
17808
17985
|
|
|
17809
|
-
declare const name$
|
|
17986
|
+
declare const name$P = "generateFreeDecision";
|
|
17810
17987
|
declare const mutation$y: {
|
|
17811
17988
|
generateFreeDecision: [{
|
|
17812
17989
|
data: Variable<"FreeDecisionGenerateDocumentInput!", "data">;
|
|
@@ -17819,7 +17996,7 @@ declare const mutation$y: {
|
|
|
17819
17996
|
meta: boolean;
|
|
17820
17997
|
}];
|
|
17821
17998
|
};
|
|
17822
|
-
interface IInput$
|
|
17999
|
+
interface IInput$Q {
|
|
17823
18000
|
/**
|
|
17824
18001
|
* @private
|
|
17825
18002
|
*/
|
|
@@ -17827,32 +18004,32 @@ interface IInput$P {
|
|
|
17827
18004
|
data: ModelTypes['FreeDecisionGenerateDocumentInput'];
|
|
17828
18005
|
options?: ModelTypes['GenerateDocumentOptionsInput'];
|
|
17829
18006
|
}
|
|
17830
|
-
type IOutput$
|
|
18007
|
+
type IOutput$Q = InputType<GraphQLTypes['Mutation'], typeof mutation$y>;
|
|
17831
18008
|
|
|
17832
18009
|
declare namespace generateFreeDecision {
|
|
17833
|
-
export { type IInput$
|
|
18010
|
+
export { type IInput$Q as IInput, type IOutput$Q as IOutput, mutation$y as mutation, name$P as name };
|
|
17834
18011
|
}
|
|
17835
18012
|
|
|
17836
|
-
declare const name$
|
|
18013
|
+
declare const name$O = "publishProjectOfFreeDecision";
|
|
17837
18014
|
declare const mutation$x: {
|
|
17838
18015
|
publishProjectOfFreeDecision: [{
|
|
17839
18016
|
data: Variable<"PublishProjectFreeDecisionInput!", "data">;
|
|
17840
18017
|
}, true];
|
|
17841
18018
|
};
|
|
17842
|
-
interface IInput$
|
|
18019
|
+
interface IInput$P {
|
|
17843
18020
|
/**
|
|
17844
18021
|
* @private
|
|
17845
18022
|
*/
|
|
17846
18023
|
[key: string]: unknown;
|
|
17847
18024
|
data: ModelTypes['PublishProjectFreeDecisionInput'];
|
|
17848
18025
|
}
|
|
17849
|
-
type IOutput$
|
|
18026
|
+
type IOutput$P = InputType<GraphQLTypes['Mutation'], typeof mutation$x>;
|
|
17850
18027
|
|
|
17851
18028
|
declare namespace publishProjectOfFreeDecision {
|
|
17852
|
-
export { type IInput$
|
|
18029
|
+
export { type IInput$P as IInput, type IOutput$P as IOutput, mutation$x as mutation, name$O as name };
|
|
17853
18030
|
}
|
|
17854
18031
|
|
|
17855
|
-
declare const name$
|
|
18032
|
+
declare const name$N = "createProjectOfFreeDecision";
|
|
17856
18033
|
declare const mutation$w: {
|
|
17857
18034
|
createProjectOfFreeDecision: [{
|
|
17858
18035
|
data: Variable<"CreateProjectFreeDecisionInput!", "data">;
|
|
@@ -17862,17 +18039,17 @@ declare const mutation$w: {
|
|
|
17862
18039
|
question: boolean;
|
|
17863
18040
|
}];
|
|
17864
18041
|
};
|
|
17865
|
-
interface IInput$
|
|
18042
|
+
interface IInput$O {
|
|
17866
18043
|
/**
|
|
17867
18044
|
* @private
|
|
17868
18045
|
*/
|
|
17869
18046
|
[key: string]: unknown;
|
|
17870
18047
|
data: ModelTypes['CreateProjectFreeDecisionInput'];
|
|
17871
18048
|
}
|
|
17872
|
-
type IOutput$
|
|
18049
|
+
type IOutput$O = InputType<GraphQLTypes['Mutation'], typeof mutation$w>;
|
|
17873
18050
|
|
|
17874
18051
|
declare namespace createProjectOfFreeDecision {
|
|
17875
|
-
export { type IInput$
|
|
18052
|
+
export { type IInput$O as IInput, type IOutput$O as IOutput, mutation$w as mutation, name$N as name };
|
|
17876
18053
|
}
|
|
17877
18054
|
|
|
17878
18055
|
/** Сгенерировать документ проекта свободного решения */
|
|
@@ -17881,7 +18058,7 @@ declare namespace index$n {
|
|
|
17881
18058
|
export { createProjectOfFreeDecision as CreateProjectOfFreeDecision, generateFreeDecision as GenerateFreeDecision, generateProjectOfFreeDecisionDocument as GenerateProjectOfFreeDecision, publishProjectOfFreeDecision as PublishProjectOfFreeDecision };
|
|
17882
18059
|
}
|
|
17883
18060
|
|
|
17884
|
-
declare const name$
|
|
18061
|
+
declare const name$M = "setPaymentStatus";
|
|
17885
18062
|
declare const mutation$v: {
|
|
17886
18063
|
setPaymentStatus: [{
|
|
17887
18064
|
data: Variable<"SetPaymentStatusInput!", "data">;
|
|
@@ -17953,18 +18130,18 @@ declare const mutation$v: {
|
|
|
17953
18130
|
is_final: boolean;
|
|
17954
18131
|
}];
|
|
17955
18132
|
};
|
|
17956
|
-
interface IInput$
|
|
18133
|
+
interface IInput$N {
|
|
17957
18134
|
data: ModelTypes['SetPaymentStatusInput'];
|
|
17958
18135
|
}
|
|
17959
|
-
type IOutput$
|
|
17960
|
-
[name$
|
|
18136
|
+
type IOutput$N = {
|
|
18137
|
+
[name$M]: ModelTypes['GatewayPayment'];
|
|
17961
18138
|
};
|
|
17962
18139
|
|
|
17963
18140
|
declare namespace updatePaymentStatus {
|
|
17964
|
-
export { type IInput$
|
|
18141
|
+
export { type IInput$N as IInput, type IOutput$N as IOutput, mutation$v as mutation, name$M as name };
|
|
17965
18142
|
}
|
|
17966
18143
|
|
|
17967
|
-
declare const name$
|
|
18144
|
+
declare const name$L = "createInitialPayment";
|
|
17968
18145
|
declare const mutation$u: {
|
|
17969
18146
|
createInitialPayment: [{
|
|
17970
18147
|
data: Variable<"CreateInitialPaymentInput!", "data">;
|
|
@@ -18036,16 +18213,16 @@ declare const mutation$u: {
|
|
|
18036
18213
|
is_final: boolean;
|
|
18037
18214
|
}];
|
|
18038
18215
|
};
|
|
18039
|
-
interface IInput$
|
|
18216
|
+
interface IInput$M {
|
|
18040
18217
|
data: ModelTypes['CreateInitialPaymentInput'];
|
|
18041
18218
|
}
|
|
18042
|
-
type IOutput$
|
|
18219
|
+
type IOutput$M = InputType<GraphQLTypes['Mutation'], typeof mutation$u>;
|
|
18043
18220
|
|
|
18044
18221
|
declare namespace createInitialPayment$1 {
|
|
18045
|
-
export { type IInput$
|
|
18222
|
+
export { type IInput$M as IInput, type IOutput$M as IOutput, mutation$u as mutation, name$L as name };
|
|
18046
18223
|
}
|
|
18047
18224
|
|
|
18048
|
-
declare const name$
|
|
18225
|
+
declare const name$K = "createDepositPayment";
|
|
18049
18226
|
declare const mutation$t: {
|
|
18050
18227
|
createDepositPayment: [{
|
|
18051
18228
|
data: Variable<"CreateDepositPaymentInput!", "data">;
|
|
@@ -18117,13 +18294,13 @@ declare const mutation$t: {
|
|
|
18117
18294
|
is_final: boolean;
|
|
18118
18295
|
}];
|
|
18119
18296
|
};
|
|
18120
|
-
interface IInput$
|
|
18297
|
+
interface IInput$L {
|
|
18121
18298
|
data: ModelTypes['CreateDepositPaymentInput'];
|
|
18122
18299
|
}
|
|
18123
|
-
type IOutput$
|
|
18300
|
+
type IOutput$L = InputType<GraphQLTypes['Mutation'], typeof mutation$t>;
|
|
18124
18301
|
|
|
18125
18302
|
declare namespace createDepositPayment$1 {
|
|
18126
|
-
export { type IInput$
|
|
18303
|
+
export { type IInput$L as IInput, type IOutput$L as IOutput, mutation$t as mutation, name$K as name };
|
|
18127
18304
|
}
|
|
18128
18305
|
|
|
18129
18306
|
/** Управление статусом платежа осущствляется мутацией setPaymentStatus. При переходе платежа в статус PAID вызывается эффект в блокчейне, который завершает операцию автоматическим переводом платежа в статус COMPLETED. При установке статуса REFUNDED запускается процесс отмены платежа в блокчейне. Остальные статусы не приводят к эффектам в блокчейне. */
|
|
@@ -18132,7 +18309,7 @@ declare namespace index$m {
|
|
|
18132
18309
|
export { createDepositPayment$1 as CreateDepositPayment, createInitialPayment$1 as CreateInitialPayment, updatePaymentStatus as SetPaymentStatus };
|
|
18133
18310
|
}
|
|
18134
18311
|
|
|
18135
|
-
declare const name$
|
|
18312
|
+
declare const name$J = "createAnnualGeneralMeet";
|
|
18136
18313
|
/**
|
|
18137
18314
|
* Сгенерировать документ предложения повестки очередного общего собрания пайщиков
|
|
18138
18315
|
*/
|
|
@@ -18846,20 +19023,20 @@ declare const mutation$s: {
|
|
|
18846
19023
|
};
|
|
18847
19024
|
}];
|
|
18848
19025
|
};
|
|
18849
|
-
interface IInput$
|
|
19026
|
+
interface IInput$K {
|
|
18850
19027
|
/**
|
|
18851
19028
|
* @private
|
|
18852
19029
|
*/
|
|
18853
19030
|
[key: string]: unknown;
|
|
18854
19031
|
data: ModelTypes['CreateAnnualGeneralMeetInput'];
|
|
18855
19032
|
}
|
|
18856
|
-
type IOutput$
|
|
19033
|
+
type IOutput$K = InputType<GraphQLTypes['Mutation'], typeof mutation$s>;
|
|
18857
19034
|
|
|
18858
19035
|
declare namespace createAnnualGeneralMeet {
|
|
18859
|
-
export { type IInput$
|
|
19036
|
+
export { type IInput$K as IInput, type IOutput$K as IOutput, mutation$s as mutation, name$J as name };
|
|
18860
19037
|
}
|
|
18861
19038
|
|
|
18862
|
-
declare const name$
|
|
19039
|
+
declare const name$I = "generateAnnualGeneralMeetAgendaDocument";
|
|
18863
19040
|
/**
|
|
18864
19041
|
* Генерация документа повестки годового общего собрания пайщиков
|
|
18865
19042
|
*/
|
|
@@ -18875,7 +19052,7 @@ declare const mutation$r: {
|
|
|
18875
19052
|
meta: boolean;
|
|
18876
19053
|
}];
|
|
18877
19054
|
};
|
|
18878
|
-
interface IInput$
|
|
19055
|
+
interface IInput$J {
|
|
18879
19056
|
/**
|
|
18880
19057
|
* @private
|
|
18881
19058
|
*/
|
|
@@ -18883,13 +19060,13 @@ interface IInput$I {
|
|
|
18883
19060
|
data: ModelTypes['AnnualGeneralMeetingAgendaGenerateDocumentInput'];
|
|
18884
19061
|
options?: ModelTypes['GenerateDocumentOptionsInput'];
|
|
18885
19062
|
}
|
|
18886
|
-
type IOutput$
|
|
19063
|
+
type IOutput$J = InputType<GraphQLTypes['Mutation'], typeof mutation$r>;
|
|
18887
19064
|
|
|
18888
19065
|
declare namespace generateAnnualGeneralMeetAgendaDocument {
|
|
18889
|
-
export { type IInput$
|
|
19066
|
+
export { type IInput$J as IInput, type IOutput$J as IOutput, mutation$r as mutation, name$I as name };
|
|
18890
19067
|
}
|
|
18891
19068
|
|
|
18892
|
-
declare const name$
|
|
19069
|
+
declare const name$H = "generateAnnualGeneralMeetDecisionDocument";
|
|
18893
19070
|
/**
|
|
18894
19071
|
* Генерация документа решения годового общего собрания пайщиков
|
|
18895
19072
|
*/
|
|
@@ -18905,7 +19082,7 @@ declare const mutation$q: {
|
|
|
18905
19082
|
meta: boolean;
|
|
18906
19083
|
}];
|
|
18907
19084
|
};
|
|
18908
|
-
interface IInput$
|
|
19085
|
+
interface IInput$I {
|
|
18909
19086
|
/**
|
|
18910
19087
|
* @private
|
|
18911
19088
|
*/
|
|
@@ -18913,13 +19090,13 @@ interface IInput$H {
|
|
|
18913
19090
|
data: ModelTypes['AnnualGeneralMeetingDecisionGenerateDocumentInput'];
|
|
18914
19091
|
options?: ModelTypes['GenerateDocumentOptionsInput'];
|
|
18915
19092
|
}
|
|
18916
|
-
type IOutput$
|
|
19093
|
+
type IOutput$I = InputType<GraphQLTypes['Mutation'], typeof mutation$q>;
|
|
18917
19094
|
|
|
18918
19095
|
declare namespace generateAnnualGeneralMeetDecisionDocument {
|
|
18919
|
-
export { type IInput$
|
|
19096
|
+
export { type IInput$I as IInput, type IOutput$I as IOutput, mutation$q as mutation, name$H as name };
|
|
18920
19097
|
}
|
|
18921
19098
|
|
|
18922
|
-
declare const name$
|
|
19099
|
+
declare const name$G = "generateAnnualGeneralMeetNotificationDocument";
|
|
18923
19100
|
/**
|
|
18924
19101
|
* Генерация документа уведомления о проведении годового общего собрания пайщиков
|
|
18925
19102
|
*/
|
|
@@ -18935,7 +19112,7 @@ declare const mutation$p: {
|
|
|
18935
19112
|
meta: boolean;
|
|
18936
19113
|
}];
|
|
18937
19114
|
};
|
|
18938
|
-
interface IInput$
|
|
19115
|
+
interface IInput$H {
|
|
18939
19116
|
/**
|
|
18940
19117
|
* @private
|
|
18941
19118
|
*/
|
|
@@ -18943,13 +19120,13 @@ interface IInput$G {
|
|
|
18943
19120
|
data: ModelTypes['AnnualGeneralMeetingNotificationGenerateDocumentInput'];
|
|
18944
19121
|
options?: ModelTypes['GenerateDocumentOptionsInput'];
|
|
18945
19122
|
}
|
|
18946
|
-
type IOutput$
|
|
19123
|
+
type IOutput$H = InputType<GraphQLTypes['Mutation'], typeof mutation$p>;
|
|
18947
19124
|
|
|
18948
19125
|
declare namespace generateAnnualGeneralMeetNotificationDocument {
|
|
18949
|
-
export { type IInput$
|
|
19126
|
+
export { type IInput$H as IInput, type IOutput$H as IOutput, mutation$p as mutation, name$G as name };
|
|
18950
19127
|
}
|
|
18951
19128
|
|
|
18952
|
-
declare const name$
|
|
19129
|
+
declare const name$F = "generateBallotForAnnualGeneralMeetDocument";
|
|
18953
19130
|
/**
|
|
18954
19131
|
* Генерация бюллетеня для голосования на общем собрании пайщиков
|
|
18955
19132
|
*/
|
|
@@ -18965,7 +19142,7 @@ declare const mutation$o: {
|
|
|
18965
19142
|
meta: boolean;
|
|
18966
19143
|
}];
|
|
18967
19144
|
};
|
|
18968
|
-
interface IInput$
|
|
19145
|
+
interface IInput$G {
|
|
18969
19146
|
/**
|
|
18970
19147
|
* @private
|
|
18971
19148
|
*/
|
|
@@ -18973,13 +19150,13 @@ interface IInput$F {
|
|
|
18973
19150
|
data: ModelTypes['AnnualGeneralMeetingVotingBallotGenerateDocumentInput'];
|
|
18974
19151
|
options?: ModelTypes['GenerateDocumentOptionsInput'];
|
|
18975
19152
|
}
|
|
18976
|
-
type IOutput$
|
|
19153
|
+
type IOutput$G = InputType<GraphQLTypes['Mutation'], typeof mutation$o>;
|
|
18977
19154
|
|
|
18978
19155
|
declare namespace generateBallotForAnnualGeneralMeetDocument {
|
|
18979
|
-
export { type IInput$
|
|
19156
|
+
export { type IInput$G as IInput, type IOutput$G as IOutput, mutation$o as mutation, name$F as name };
|
|
18980
19157
|
}
|
|
18981
19158
|
|
|
18982
|
-
declare const name$
|
|
19159
|
+
declare const name$E = "generateSovietDecisionOnAnnualMeetDocument";
|
|
18983
19160
|
/**
|
|
18984
19161
|
* Генерация документа решения совета о проведении годового общего собрания пайщиков
|
|
18985
19162
|
*/
|
|
@@ -18995,7 +19172,7 @@ declare const mutation$n: {
|
|
|
18995
19172
|
meta: boolean;
|
|
18996
19173
|
}];
|
|
18997
19174
|
};
|
|
18998
|
-
interface IInput$
|
|
19175
|
+
interface IInput$F {
|
|
18999
19176
|
/**
|
|
19000
19177
|
* @private
|
|
19001
19178
|
*/
|
|
@@ -19003,13 +19180,13 @@ interface IInput$E {
|
|
|
19003
19180
|
data: ModelTypes['AnnualGeneralMeetingSovietDecisionGenerateDocumentInput'];
|
|
19004
19181
|
options?: ModelTypes['GenerateDocumentOptionsInput'];
|
|
19005
19182
|
}
|
|
19006
|
-
type IOutput$
|
|
19183
|
+
type IOutput$F = InputType<GraphQLTypes['Mutation'], typeof mutation$n>;
|
|
19007
19184
|
|
|
19008
19185
|
declare namespace generateSovietDecisionOnAnnualMeetDocument {
|
|
19009
|
-
export { type IInput$
|
|
19186
|
+
export { type IInput$F as IInput, type IOutput$F as IOutput, mutation$n as mutation, name$E as name };
|
|
19010
19187
|
}
|
|
19011
19188
|
|
|
19012
|
-
declare const name$
|
|
19189
|
+
declare const name$D = "notifyOnAnnualGeneralMeet";
|
|
19013
19190
|
/**
|
|
19014
19191
|
* Уведомление о проведении общего собрания пайщиков
|
|
19015
19192
|
*/
|
|
@@ -19723,20 +19900,20 @@ declare const mutation$m: {
|
|
|
19723
19900
|
};
|
|
19724
19901
|
}];
|
|
19725
19902
|
};
|
|
19726
|
-
interface IInput$
|
|
19903
|
+
interface IInput$E {
|
|
19727
19904
|
/**
|
|
19728
19905
|
* @private
|
|
19729
19906
|
*/
|
|
19730
19907
|
[key: string]: unknown;
|
|
19731
19908
|
data: ModelTypes['NotifyOnAnnualGeneralMeetInput'];
|
|
19732
19909
|
}
|
|
19733
|
-
type IOutput$
|
|
19910
|
+
type IOutput$E = InputType<GraphQLTypes['Mutation'], typeof mutation$m>;
|
|
19734
19911
|
|
|
19735
19912
|
declare namespace notifyOnAnnualGeneralMeet {
|
|
19736
|
-
export { type IInput$
|
|
19913
|
+
export { type IInput$E as IInput, type IOutput$E as IOutput, mutation$m as mutation, name$D as name };
|
|
19737
19914
|
}
|
|
19738
19915
|
|
|
19739
|
-
declare const name$
|
|
19916
|
+
declare const name$C = "restartAnnualGeneralMeet";
|
|
19740
19917
|
/**
|
|
19741
19918
|
* Перезапуск годового общего собрания пайщиков
|
|
19742
19919
|
*/
|
|
@@ -20450,20 +20627,20 @@ declare const mutation$l: {
|
|
|
20450
20627
|
};
|
|
20451
20628
|
}];
|
|
20452
20629
|
};
|
|
20453
|
-
interface IInput$
|
|
20630
|
+
interface IInput$D {
|
|
20454
20631
|
/**
|
|
20455
20632
|
* @private
|
|
20456
20633
|
*/
|
|
20457
20634
|
[key: string]: unknown;
|
|
20458
20635
|
data: ModelTypes['RestartAnnualGeneralMeetInput'];
|
|
20459
20636
|
}
|
|
20460
|
-
type IOutput$
|
|
20637
|
+
type IOutput$D = InputType<GraphQLTypes['Mutation'], typeof mutation$l>;
|
|
20461
20638
|
|
|
20462
20639
|
declare namespace restartAnnualGeneralMeet {
|
|
20463
|
-
export { type IInput$
|
|
20640
|
+
export { type IInput$D as IInput, type IOutput$D as IOutput, mutation$l as mutation, name$C as name };
|
|
20464
20641
|
}
|
|
20465
20642
|
|
|
20466
|
-
declare const name$
|
|
20643
|
+
declare const name$B = "signByPresiderOnAnnualGeneralMeet";
|
|
20467
20644
|
/**
|
|
20468
20645
|
* Подписание решения председателем на годовом общем собрании пайщиков
|
|
20469
20646
|
*/
|
|
@@ -21177,20 +21354,20 @@ declare const mutation$k: {
|
|
|
21177
21354
|
};
|
|
21178
21355
|
}];
|
|
21179
21356
|
};
|
|
21180
|
-
interface IInput$
|
|
21357
|
+
interface IInput$C {
|
|
21181
21358
|
/**
|
|
21182
21359
|
* @private
|
|
21183
21360
|
*/
|
|
21184
21361
|
[key: string]: unknown;
|
|
21185
21362
|
data: ModelTypes['SignByPresiderOnAnnualGeneralMeetInput'];
|
|
21186
21363
|
}
|
|
21187
|
-
type IOutput$
|
|
21364
|
+
type IOutput$C = InputType<GraphQLTypes['Mutation'], typeof mutation$k>;
|
|
21188
21365
|
|
|
21189
21366
|
declare namespace signByPresiderOnAnnualGeneralMeet {
|
|
21190
|
-
export { type IInput$
|
|
21367
|
+
export { type IInput$C as IInput, type IOutput$C as IOutput, mutation$k as mutation, name$B as name };
|
|
21191
21368
|
}
|
|
21192
21369
|
|
|
21193
|
-
declare const name$
|
|
21370
|
+
declare const name$A = "signBySecretaryOnAnnualGeneralMeet";
|
|
21194
21371
|
/**
|
|
21195
21372
|
* Подписание решения секретарём на годовом общем собрании пайщиков
|
|
21196
21373
|
*/
|
|
@@ -21904,20 +22081,20 @@ declare const mutation$j: {
|
|
|
21904
22081
|
};
|
|
21905
22082
|
}];
|
|
21906
22083
|
};
|
|
21907
|
-
interface IInput$
|
|
22084
|
+
interface IInput$B {
|
|
21908
22085
|
/**
|
|
21909
22086
|
* @private
|
|
21910
22087
|
*/
|
|
21911
22088
|
[key: string]: unknown;
|
|
21912
22089
|
data: ModelTypes['SignBySecretaryOnAnnualGeneralMeetInput'];
|
|
21913
22090
|
}
|
|
21914
|
-
type IOutput$
|
|
22091
|
+
type IOutput$B = InputType<GraphQLTypes['Mutation'], typeof mutation$j>;
|
|
21915
22092
|
|
|
21916
22093
|
declare namespace signBySecretaryOnAnnualGeneralMeet {
|
|
21917
|
-
export { type IInput$
|
|
22094
|
+
export { type IInput$B as IInput, type IOutput$B as IOutput, mutation$j as mutation, name$A as name };
|
|
21918
22095
|
}
|
|
21919
22096
|
|
|
21920
|
-
declare const name$
|
|
22097
|
+
declare const name$z = "voteOnAnnualGeneralMeet";
|
|
21921
22098
|
/**
|
|
21922
22099
|
* Голосование на общем собрании пайщиков
|
|
21923
22100
|
*/
|
|
@@ -22631,17 +22808,17 @@ declare const mutation$i: {
|
|
|
22631
22808
|
};
|
|
22632
22809
|
}];
|
|
22633
22810
|
};
|
|
22634
|
-
interface IInput$
|
|
22811
|
+
interface IInput$A {
|
|
22635
22812
|
/**
|
|
22636
22813
|
* @private
|
|
22637
22814
|
*/
|
|
22638
22815
|
[key: string]: unknown;
|
|
22639
22816
|
data: ModelTypes['VoteOnAnnualGeneralMeetInput'];
|
|
22640
22817
|
}
|
|
22641
|
-
type IOutput$
|
|
22818
|
+
type IOutput$A = InputType<GraphQLTypes['Mutation'], typeof mutation$i>;
|
|
22642
22819
|
|
|
22643
22820
|
declare namespace voteOnAnnualGeneralMeet {
|
|
22644
|
-
export { type IInput$
|
|
22821
|
+
export { type IInput$A as IInput, type IOutput$A as IOutput, mutation$i as mutation, name$z as name };
|
|
22645
22822
|
}
|
|
22646
22823
|
|
|
22647
22824
|
/** Сгенерировать документ предложения повестки очередного общего собрания пайщиков */
|
|
@@ -22650,7 +22827,7 @@ declare namespace index$l {
|
|
|
22650
22827
|
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 };
|
|
22651
22828
|
}
|
|
22652
22829
|
|
|
22653
|
-
declare const name$
|
|
22830
|
+
declare const name$y = "createWebPushSubscription";
|
|
22654
22831
|
/**
|
|
22655
22832
|
* Создать веб-пуш подписку для пользователя
|
|
22656
22833
|
*/
|
|
@@ -22673,20 +22850,20 @@ declare const mutation$h: {
|
|
|
22673
22850
|
};
|
|
22674
22851
|
}];
|
|
22675
22852
|
};
|
|
22676
|
-
interface IInput$
|
|
22853
|
+
interface IInput$z {
|
|
22677
22854
|
/**
|
|
22678
22855
|
* @private
|
|
22679
22856
|
*/
|
|
22680
22857
|
[key: string]: unknown;
|
|
22681
22858
|
data: ModelTypes['CreateSubscriptionInput'];
|
|
22682
22859
|
}
|
|
22683
|
-
type IOutput$
|
|
22860
|
+
type IOutput$z = InputType<GraphQLTypes['Mutation'], typeof mutation$h>;
|
|
22684
22861
|
|
|
22685
22862
|
declare namespace createWebPushSubscription {
|
|
22686
|
-
export { type IInput$
|
|
22863
|
+
export { type IInput$z as IInput, type IOutput$z as IOutput, mutation$h as mutation, name$y as name };
|
|
22687
22864
|
}
|
|
22688
22865
|
|
|
22689
|
-
declare const name$
|
|
22866
|
+
declare const name$x = "deactivateWebPushSubscriptionById";
|
|
22690
22867
|
/**
|
|
22691
22868
|
* Деактивировать веб-пуш подписку по ID
|
|
22692
22869
|
*/
|
|
@@ -22695,17 +22872,17 @@ declare const mutation$g: {
|
|
|
22695
22872
|
data: Variable<"DeactivateSubscriptionInput!", "data">;
|
|
22696
22873
|
}, true];
|
|
22697
22874
|
};
|
|
22698
|
-
interface IInput$
|
|
22875
|
+
interface IInput$y {
|
|
22699
22876
|
/**
|
|
22700
22877
|
* @private
|
|
22701
22878
|
*/
|
|
22702
22879
|
[key: string]: unknown;
|
|
22703
22880
|
data: ModelTypes['DeactivateSubscriptionInput'];
|
|
22704
22881
|
}
|
|
22705
|
-
type IOutput$
|
|
22882
|
+
type IOutput$y = InputType<GraphQLTypes['Mutation'], typeof mutation$g>;
|
|
22706
22883
|
|
|
22707
22884
|
declare namespace deactivateWebPushSubscriptionById {
|
|
22708
|
-
export { type IInput$
|
|
22885
|
+
export { type IInput$y as IInput, type IOutput$y as IOutput, mutation$g as mutation, name$x as name };
|
|
22709
22886
|
}
|
|
22710
22887
|
|
|
22711
22888
|
/** Создать веб-пуш подписку для пользователя */
|
|
@@ -22714,7 +22891,7 @@ declare namespace index$k {
|
|
|
22714
22891
|
export { createWebPushSubscription as CreateWebPushSubscription, deactivateWebPushSubscriptionById as DeactivateWebPushSubscriptionById };
|
|
22715
22892
|
}
|
|
22716
22893
|
|
|
22717
|
-
declare const name$
|
|
22894
|
+
declare const name$w = "addParticipant";
|
|
22718
22895
|
declare const mutation$f: {
|
|
22719
22896
|
addParticipant: [{
|
|
22720
22897
|
data: Variable<"AddParticipantInput!", "data">;
|
|
@@ -22899,20 +23076,20 @@ declare const mutation$f: {
|
|
|
22899
23076
|
};
|
|
22900
23077
|
}];
|
|
22901
23078
|
};
|
|
22902
|
-
interface IInput$
|
|
23079
|
+
interface IInput$x {
|
|
22903
23080
|
/**
|
|
22904
23081
|
* @private
|
|
22905
23082
|
*/
|
|
22906
23083
|
[key: string]: unknown;
|
|
22907
23084
|
data: ModelTypes['AddParticipantInput'];
|
|
22908
23085
|
}
|
|
22909
|
-
type IOutput$
|
|
23086
|
+
type IOutput$x = InputType<GraphQLTypes['Mutation'], typeof mutation$f>;
|
|
22910
23087
|
|
|
22911
23088
|
declare namespace addParticipant {
|
|
22912
|
-
export { type IInput$
|
|
23089
|
+
export { type IInput$x as IInput, type IOutput$x as IOutput, mutation$f as mutation, name$w as name };
|
|
22913
23090
|
}
|
|
22914
23091
|
|
|
22915
|
-
declare const name$
|
|
23092
|
+
declare const name$v = "generateParticipantApplication";
|
|
22916
23093
|
declare const mutation$e: {
|
|
22917
23094
|
generateParticipantApplication: [{
|
|
22918
23095
|
data: Variable<"ParticipantApplicationGenerateDocumentInput!", "data">;
|
|
@@ -22925,7 +23102,7 @@ declare const mutation$e: {
|
|
|
22925
23102
|
meta: boolean;
|
|
22926
23103
|
}];
|
|
22927
23104
|
};
|
|
22928
|
-
interface IInput$
|
|
23105
|
+
interface IInput$w {
|
|
22929
23106
|
/**
|
|
22930
23107
|
* @private
|
|
22931
23108
|
*/
|
|
@@ -22933,13 +23110,13 @@ interface IInput$v {
|
|
|
22933
23110
|
data: ModelTypes['ParticipantApplicationGenerateDocumentInput'];
|
|
22934
23111
|
options?: ModelTypes['GenerateDocumentOptionsInput'];
|
|
22935
23112
|
}
|
|
22936
|
-
type IOutput$
|
|
23113
|
+
type IOutput$w = InputType<GraphQLTypes['Mutation'], typeof mutation$e>;
|
|
22937
23114
|
|
|
22938
23115
|
declare namespace generateParticipantApplication {
|
|
22939
|
-
export { type IInput$
|
|
23116
|
+
export { type IInput$w as IInput, type IOutput$w as IOutput, mutation$e as mutation, name$v as name };
|
|
22940
23117
|
}
|
|
22941
23118
|
|
|
22942
|
-
declare const name$
|
|
23119
|
+
declare const name$u = "generateParticipantApplicationDecision";
|
|
22943
23120
|
declare const mutation$d: {
|
|
22944
23121
|
generateParticipantApplicationDecision: [{
|
|
22945
23122
|
data: Variable<"ParticipantApplicationDecisionGenerateDocumentInput!", "data">;
|
|
@@ -22952,7 +23129,7 @@ declare const mutation$d: {
|
|
|
22952
23129
|
meta: boolean;
|
|
22953
23130
|
}];
|
|
22954
23131
|
};
|
|
22955
|
-
interface IInput$
|
|
23132
|
+
interface IInput$v {
|
|
22956
23133
|
/**
|
|
22957
23134
|
* @private
|
|
22958
23135
|
*/
|
|
@@ -22960,13 +23137,13 @@ interface IInput$u {
|
|
|
22960
23137
|
data: ModelTypes['ParticipantApplicationDecisionGenerateDocumentInput'];
|
|
22961
23138
|
options?: ModelTypes['GenerateDocumentOptionsInput'];
|
|
22962
23139
|
}
|
|
22963
|
-
type IOutput$
|
|
23140
|
+
type IOutput$v = InputType<GraphQLTypes['Mutation'], typeof mutation$d>;
|
|
22964
23141
|
|
|
22965
23142
|
declare namespace generateParticipantApplicationDecision {
|
|
22966
|
-
export { type IInput$
|
|
23143
|
+
export { type IInput$v as IInput, type IOutput$v as IOutput, mutation$d as mutation, name$u as name };
|
|
22967
23144
|
}
|
|
22968
23145
|
|
|
22969
|
-
declare const name$
|
|
23146
|
+
declare const name$t = "registerParticipant";
|
|
22970
23147
|
declare const mutation$c: {
|
|
22971
23148
|
registerParticipant: [{
|
|
22972
23149
|
data: Variable<"RegisterParticipantInput!", "data">;
|
|
@@ -23151,20 +23328,20 @@ declare const mutation$c: {
|
|
|
23151
23328
|
};
|
|
23152
23329
|
}];
|
|
23153
23330
|
};
|
|
23154
|
-
interface IInput$
|
|
23331
|
+
interface IInput$u {
|
|
23155
23332
|
/**
|
|
23156
23333
|
* @private
|
|
23157
23334
|
*/
|
|
23158
23335
|
[key: string]: unknown;
|
|
23159
23336
|
data: ModelTypes['RegisterParticipantInput'];
|
|
23160
23337
|
}
|
|
23161
|
-
type IOutput$
|
|
23338
|
+
type IOutput$u = InputType<GraphQLTypes['Mutation'], typeof mutation$c>;
|
|
23162
23339
|
|
|
23163
23340
|
declare namespace registerParticipant {
|
|
23164
|
-
export { type IInput$
|
|
23341
|
+
export { type IInput$u as IInput, type IOutput$u as IOutput, mutation$c as mutation, name$t as name };
|
|
23165
23342
|
}
|
|
23166
23343
|
|
|
23167
|
-
declare const name$
|
|
23344
|
+
declare const name$s = "createInitialPayment";
|
|
23168
23345
|
declare const mutation$b: {
|
|
23169
23346
|
createInitialPayment: [{
|
|
23170
23347
|
data: Variable<"CreateInitialPaymentInput!", "data">;
|
|
@@ -23236,13 +23413,13 @@ declare const mutation$b: {
|
|
|
23236
23413
|
is_final: boolean;
|
|
23237
23414
|
}];
|
|
23238
23415
|
};
|
|
23239
|
-
interface IInput$
|
|
23416
|
+
interface IInput$t {
|
|
23240
23417
|
data: ModelTypes['CreateInitialPaymentInput'];
|
|
23241
23418
|
}
|
|
23242
|
-
type IOutput$
|
|
23419
|
+
type IOutput$t = InputType<GraphQLTypes['Mutation'], typeof mutation$b>;
|
|
23243
23420
|
|
|
23244
23421
|
declare namespace createInitialPayment {
|
|
23245
|
-
export { type IInput$
|
|
23422
|
+
export { type IInput$t as IInput, type IOutput$t as IOutput, mutation$b as mutation, name$s as name };
|
|
23246
23423
|
}
|
|
23247
23424
|
|
|
23248
23425
|
/**
|
|
@@ -23284,7 +23461,7 @@ declare namespace index$j {
|
|
|
23284
23461
|
export { addParticipant as AddParticipant, createInitialPayment as CreateInitialPayment, generateParticipantApplication as GenerateParticipantApplication, generateParticipantApplicationDecision as GenerateParticipantApplicationDecision, registerParticipant as RegisterParticipant };
|
|
23285
23462
|
}
|
|
23286
23463
|
|
|
23287
|
-
declare const name$
|
|
23464
|
+
declare const name$r = "createBankAccount";
|
|
23288
23465
|
declare const mutation$a: {
|
|
23289
23466
|
createBankAccount: [{
|
|
23290
23467
|
data: Variable<"CreateBankAccountInput!", "data">;
|
|
@@ -23314,39 +23491,39 @@ declare const mutation$a: {
|
|
|
23314
23491
|
username: boolean;
|
|
23315
23492
|
}];
|
|
23316
23493
|
};
|
|
23317
|
-
interface IInput$
|
|
23494
|
+
interface IInput$s {
|
|
23318
23495
|
/**
|
|
23319
23496
|
* @private
|
|
23320
23497
|
*/
|
|
23321
23498
|
[key: string]: unknown;
|
|
23322
23499
|
data: ModelTypes['CreateBankAccountInput'];
|
|
23323
23500
|
}
|
|
23324
|
-
type IOutput$
|
|
23501
|
+
type IOutput$s = InputType<GraphQLTypes['Mutation'], typeof mutation$a>;
|
|
23325
23502
|
|
|
23326
23503
|
declare namespace createBankAccount {
|
|
23327
|
-
export { type IInput$
|
|
23504
|
+
export { type IInput$s as IInput, type IOutput$s as IOutput, mutation$a as mutation, name$r as name };
|
|
23328
23505
|
}
|
|
23329
23506
|
|
|
23330
|
-
declare const name$
|
|
23507
|
+
declare const name$q = "deletePaymentMethod";
|
|
23331
23508
|
declare const mutation$9: {
|
|
23332
23509
|
deletePaymentMethod: [{
|
|
23333
23510
|
data: Variable<"DeletePaymentMethodInput!", "data">;
|
|
23334
23511
|
}, true];
|
|
23335
23512
|
};
|
|
23336
|
-
interface IInput$
|
|
23513
|
+
interface IInput$r {
|
|
23337
23514
|
/**
|
|
23338
23515
|
* @private
|
|
23339
23516
|
*/
|
|
23340
23517
|
[key: string]: unknown;
|
|
23341
23518
|
data: ModelTypes['DeletePaymentMethodInput'];
|
|
23342
23519
|
}
|
|
23343
|
-
type IOutput$
|
|
23520
|
+
type IOutput$r = InputType<GraphQLTypes['Mutation'], typeof mutation$9>;
|
|
23344
23521
|
|
|
23345
23522
|
declare namespace deletePaymentMethod {
|
|
23346
|
-
export { type IInput$
|
|
23523
|
+
export { type IInput$r as IInput, type IOutput$r as IOutput, mutation$9 as mutation, name$q as name };
|
|
23347
23524
|
}
|
|
23348
23525
|
|
|
23349
|
-
declare const name$
|
|
23526
|
+
declare const name$p = "updateBankAccount";
|
|
23350
23527
|
declare const mutation$8: {
|
|
23351
23528
|
updateBankAccount: [{
|
|
23352
23529
|
data: Variable<"UpdateBankAccountInput!", "data">;
|
|
@@ -23376,17 +23553,17 @@ declare const mutation$8: {
|
|
|
23376
23553
|
username: boolean;
|
|
23377
23554
|
}];
|
|
23378
23555
|
};
|
|
23379
|
-
interface IInput$
|
|
23556
|
+
interface IInput$q {
|
|
23380
23557
|
/**
|
|
23381
23558
|
* @private
|
|
23382
23559
|
*/
|
|
23383
23560
|
[key: string]: unknown;
|
|
23384
23561
|
data: ModelTypes['UpdateBankAccountInput'];
|
|
23385
23562
|
}
|
|
23386
|
-
type IOutput$
|
|
23563
|
+
type IOutput$q = InputType<GraphQLTypes['Mutation'], typeof mutation$8>;
|
|
23387
23564
|
|
|
23388
23565
|
declare namespace updateBankAccount {
|
|
23389
|
-
export { type IInput$
|
|
23566
|
+
export { type IInput$q as IInput, type IOutput$q as IOutput, mutation$8 as mutation, name$p as name };
|
|
23390
23567
|
}
|
|
23391
23568
|
|
|
23392
23569
|
/** Добавить метод оплаты */
|
|
@@ -23395,7 +23572,7 @@ declare namespace index$i {
|
|
|
23395
23572
|
export { createBankAccount as CreateBankAccount, deletePaymentMethod as DeletePaymentMethod, updateBankAccount as UpdateBankAccount };
|
|
23396
23573
|
}
|
|
23397
23574
|
|
|
23398
|
-
declare const name$
|
|
23575
|
+
declare const name$o = "initSystem";
|
|
23399
23576
|
declare const mutation$7: {
|
|
23400
23577
|
initSystem: [{
|
|
23401
23578
|
data: Variable<"Init!", "data">;
|
|
@@ -23624,20 +23801,20 @@ declare const mutation$7: {
|
|
|
23624
23801
|
};
|
|
23625
23802
|
}];
|
|
23626
23803
|
};
|
|
23627
|
-
interface IInput$
|
|
23804
|
+
interface IInput$p {
|
|
23628
23805
|
/**
|
|
23629
23806
|
* @private
|
|
23630
23807
|
*/
|
|
23631
23808
|
[key: string]: unknown;
|
|
23632
23809
|
data: ModelTypes['Init'];
|
|
23633
23810
|
}
|
|
23634
|
-
type IOutput$
|
|
23811
|
+
type IOutput$p = InputType<GraphQLTypes['Mutation'], typeof mutation$7>;
|
|
23635
23812
|
|
|
23636
23813
|
declare namespace initSystem {
|
|
23637
|
-
export { type IInput$
|
|
23814
|
+
export { type IInput$p as IInput, type IOutput$p as IOutput, mutation$7 as mutation, name$o as name };
|
|
23638
23815
|
}
|
|
23639
23816
|
|
|
23640
|
-
declare const name$
|
|
23817
|
+
declare const name$n = "installSystem";
|
|
23641
23818
|
declare const mutation$6: {
|
|
23642
23819
|
installSystem: [{
|
|
23643
23820
|
data: Variable<"Install!", "data">;
|
|
@@ -23866,39 +24043,39 @@ declare const mutation$6: {
|
|
|
23866
24043
|
};
|
|
23867
24044
|
}];
|
|
23868
24045
|
};
|
|
23869
|
-
interface IInput$
|
|
24046
|
+
interface IInput$o {
|
|
23870
24047
|
/**
|
|
23871
24048
|
* @private
|
|
23872
24049
|
*/
|
|
23873
24050
|
[key: string]: unknown;
|
|
23874
24051
|
data: ModelTypes['Install'];
|
|
23875
24052
|
}
|
|
23876
|
-
type IOutput$
|
|
24053
|
+
type IOutput$o = InputType<GraphQLTypes['Mutation'], typeof mutation$6>;
|
|
23877
24054
|
|
|
23878
24055
|
declare namespace installSystem {
|
|
23879
|
-
export { type IInput$
|
|
24056
|
+
export { type IInput$o as IInput, type IOutput$o as IOutput, mutation$6 as mutation, name$n as name };
|
|
23880
24057
|
}
|
|
23881
24058
|
|
|
23882
|
-
declare const name$
|
|
24059
|
+
declare const name$m = "setWif";
|
|
23883
24060
|
declare const mutation$5: {
|
|
23884
24061
|
setWif: [{
|
|
23885
24062
|
data: Variable<"SetWifInput!", "data">;
|
|
23886
24063
|
}, true];
|
|
23887
24064
|
};
|
|
23888
|
-
interface IInput$
|
|
24065
|
+
interface IInput$n {
|
|
23889
24066
|
/**
|
|
23890
24067
|
* @private
|
|
23891
24068
|
*/
|
|
23892
24069
|
[key: string]: unknown;
|
|
23893
24070
|
data: ModelTypes['SetWifInput'];
|
|
23894
24071
|
}
|
|
23895
|
-
type IOutput$
|
|
24072
|
+
type IOutput$n = InputType<GraphQLTypes['Mutation'], typeof mutation$5>;
|
|
23896
24073
|
|
|
23897
24074
|
declare namespace saveWif {
|
|
23898
|
-
export { type IInput$
|
|
24075
|
+
export { type IInput$n as IInput, type IOutput$n as IOutput, mutation$5 as mutation, name$m as name };
|
|
23899
24076
|
}
|
|
23900
24077
|
|
|
23901
|
-
declare const name$
|
|
24078
|
+
declare const name$l = "updateSystem";
|
|
23902
24079
|
declare const mutation$4: {
|
|
23903
24080
|
updateSystem: [{
|
|
23904
24081
|
data: Variable<"Update!", "data">;
|
|
@@ -24127,17 +24304,17 @@ declare const mutation$4: {
|
|
|
24127
24304
|
};
|
|
24128
24305
|
}];
|
|
24129
24306
|
};
|
|
24130
|
-
interface IInput$
|
|
24307
|
+
interface IInput$m {
|
|
24131
24308
|
/**
|
|
24132
24309
|
* @private
|
|
24133
24310
|
*/
|
|
24134
24311
|
[key: string]: unknown;
|
|
24135
24312
|
data: ModelTypes['Update'];
|
|
24136
24313
|
}
|
|
24137
|
-
type IOutput$
|
|
24314
|
+
type IOutput$m = InputType<GraphQLTypes['Mutation'], typeof mutation$4>;
|
|
24138
24315
|
|
|
24139
24316
|
declare namespace updateSystem {
|
|
24140
|
-
export { type IInput$
|
|
24317
|
+
export { type IInput$m as IInput, type IOutput$m as IOutput, mutation$4 as mutation, name$l as name };
|
|
24141
24318
|
}
|
|
24142
24319
|
|
|
24143
24320
|
/** Произвести инициализацию программного обеспечения перед установкой совета методом install */
|
|
@@ -24146,7 +24323,7 @@ declare namespace index$h {
|
|
|
24146
24323
|
export { initSystem as InitSystem, installSystem as InstallSystem, saveWif as SaveWif, updateSystem as UpdateSystem };
|
|
24147
24324
|
}
|
|
24148
24325
|
|
|
24149
|
-
declare const name$
|
|
24326
|
+
declare const name$k = "createWithdraw";
|
|
24150
24327
|
declare const mutation$3: {
|
|
24151
24328
|
createWithdraw: [{
|
|
24152
24329
|
input: Variable<"CreateWithdrawInput!", "input">;
|
|
@@ -24154,18 +24331,18 @@ declare const mutation$3: {
|
|
|
24154
24331
|
withdraw_hash: boolean;
|
|
24155
24332
|
}];
|
|
24156
24333
|
};
|
|
24157
|
-
interface IInput$
|
|
24334
|
+
interface IInput$l {
|
|
24158
24335
|
input: ModelTypes['CreateWithdrawInput'];
|
|
24159
24336
|
}
|
|
24160
|
-
type IOutput$
|
|
24161
|
-
[name$
|
|
24337
|
+
type IOutput$l = {
|
|
24338
|
+
[name$k]: ModelTypes['CreateWithdrawResponse'];
|
|
24162
24339
|
};
|
|
24163
24340
|
|
|
24164
24341
|
declare namespace createWithdraw {
|
|
24165
|
-
export { type IInput$
|
|
24342
|
+
export { type IInput$l as IInput, type IOutput$l as IOutput, mutation$3 as mutation, name$k as name };
|
|
24166
24343
|
}
|
|
24167
24344
|
|
|
24168
|
-
declare const name$
|
|
24345
|
+
declare const name$j = "createDepositPayment";
|
|
24169
24346
|
declare const mutation$2: {
|
|
24170
24347
|
createDepositPayment: [{
|
|
24171
24348
|
data: Variable<"CreateDepositPaymentInput!", "data">;
|
|
@@ -24237,16 +24414,16 @@ declare const mutation$2: {
|
|
|
24237
24414
|
is_final: boolean;
|
|
24238
24415
|
}];
|
|
24239
24416
|
};
|
|
24240
|
-
interface IInput$
|
|
24417
|
+
interface IInput$k {
|
|
24241
24418
|
data: ModelTypes['CreateDepositPaymentInput'];
|
|
24242
24419
|
}
|
|
24243
|
-
type IOutput$
|
|
24420
|
+
type IOutput$k = InputType<GraphQLTypes['Mutation'], typeof mutation$2>;
|
|
24244
24421
|
|
|
24245
24422
|
declare namespace createDepositPayment {
|
|
24246
|
-
export { type IInput$
|
|
24423
|
+
export { type IInput$k as IInput, type IOutput$k as IOutput, mutation$2 as mutation, name$j as name };
|
|
24247
24424
|
}
|
|
24248
24425
|
|
|
24249
|
-
declare const name$
|
|
24426
|
+
declare const name$i = "generateReturnByMoneyStatementDocument";
|
|
24250
24427
|
declare const mutation$1: {
|
|
24251
24428
|
generateReturnByMoneyStatementDocument: [{
|
|
24252
24429
|
data: Variable<"ReturnByMoneyGenerateDocumentInput!", "data">;
|
|
@@ -24259,19 +24436,19 @@ declare const mutation$1: {
|
|
|
24259
24436
|
meta: boolean;
|
|
24260
24437
|
}];
|
|
24261
24438
|
};
|
|
24262
|
-
interface IInput$
|
|
24439
|
+
interface IInput$j {
|
|
24263
24440
|
data: ModelTypes['ReturnByMoneyGenerateDocumentInput'];
|
|
24264
24441
|
options?: ModelTypes['GenerateDocumentOptionsInput'];
|
|
24265
24442
|
}
|
|
24266
|
-
type IOutput$
|
|
24267
|
-
[name$
|
|
24443
|
+
type IOutput$j = {
|
|
24444
|
+
[name$i]: ModelTypes['GeneratedDocument'];
|
|
24268
24445
|
};
|
|
24269
24446
|
|
|
24270
24447
|
declare namespace generateReturnByMoneyStatementDocument {
|
|
24271
|
-
export { type IInput$
|
|
24448
|
+
export { type IInput$j as IInput, type IOutput$j as IOutput, mutation$1 as mutation, name$i as name };
|
|
24272
24449
|
}
|
|
24273
24450
|
|
|
24274
|
-
declare const name$
|
|
24451
|
+
declare const name$h = "generateReturnByMoneyDecisionDocument";
|
|
24275
24452
|
declare const mutation: {
|
|
24276
24453
|
generateReturnByMoneyDecisionDocument: [{
|
|
24277
24454
|
data: Variable<"ReturnByMoneyDecisionGenerateDocumentInput!", "data">;
|
|
@@ -24284,17 +24461,17 @@ declare const mutation: {
|
|
|
24284
24461
|
meta: boolean;
|
|
24285
24462
|
}];
|
|
24286
24463
|
};
|
|
24287
|
-
interface IInput$
|
|
24464
|
+
interface IInput$i {
|
|
24288
24465
|
data: ModelTypes['ReturnByMoneyDecisionGenerateDocumentInput'];
|
|
24289
24466
|
options?: ModelTypes['GenerateDocumentOptionsInput'];
|
|
24290
24467
|
}
|
|
24291
|
-
type IOutput$
|
|
24292
|
-
[name$
|
|
24468
|
+
type IOutput$i = {
|
|
24469
|
+
[name$h]: ModelTypes['GeneratedDocument'];
|
|
24293
24470
|
};
|
|
24294
24471
|
|
|
24295
24472
|
declare const generateReturnByMoneyDecisionDocument_mutation: typeof mutation;
|
|
24296
24473
|
declare namespace generateReturnByMoneyDecisionDocument {
|
|
24297
|
-
export { type IInput$
|
|
24474
|
+
export { type IInput$i as IInput, type IOutput$i as IOutput, generateReturnByMoneyDecisionDocument_mutation as mutation, name$h as name };
|
|
24298
24475
|
}
|
|
24299
24476
|
|
|
24300
24477
|
/** Создать заявку на вывод средств */
|
|
@@ -24307,11 +24484,11 @@ declare namespace Mutations {
|
|
|
24307
24484
|
export { index$t as Accounts, index$s as Agreements, index$r as Auth, index$q as Branches, index$p as Cooplace, index$o as Extensions, index$n as FreeDecisions, index$m as Gateway, index$l as Meet, index$k as Notification, index$j as Participants, index$i as PaymentMethods, index$h as System, index$g as Wallet };
|
|
24308
24485
|
}
|
|
24309
24486
|
|
|
24310
|
-
declare const name$
|
|
24487
|
+
declare const name$g = "getAccount";
|
|
24311
24488
|
/**
|
|
24312
24489
|
* Извлекает комплексную информацию о аккаунте
|
|
24313
24490
|
*/
|
|
24314
|
-
declare const query$
|
|
24491
|
+
declare const query$h: {
|
|
24315
24492
|
getAccount: [{
|
|
24316
24493
|
data: Variable<"GetAccountInput!", "data">;
|
|
24317
24494
|
}, {
|
|
@@ -24495,24 +24672,24 @@ declare const query$g: {
|
|
|
24495
24672
|
};
|
|
24496
24673
|
}];
|
|
24497
24674
|
};
|
|
24498
|
-
interface IInput$
|
|
24675
|
+
interface IInput$h {
|
|
24499
24676
|
/**
|
|
24500
24677
|
* @private
|
|
24501
24678
|
*/
|
|
24502
24679
|
[key: string]: unknown;
|
|
24503
24680
|
data: ModelTypes['GetAccountInput'];
|
|
24504
24681
|
}
|
|
24505
|
-
type IOutput$
|
|
24682
|
+
type IOutput$h = InputType<GraphQLTypes['Query'], typeof query$h>;
|
|
24506
24683
|
|
|
24507
24684
|
declare namespace getAccount {
|
|
24508
|
-
export { type IInput$
|
|
24685
|
+
export { type IInput$h as IInput, type IOutput$h as IOutput, name$g as name, query$h as query };
|
|
24509
24686
|
}
|
|
24510
24687
|
|
|
24511
|
-
declare const name$
|
|
24688
|
+
declare const name$f = "getAccounts";
|
|
24512
24689
|
/**
|
|
24513
24690
|
* Извлекает комплексную информацию о аккаунтах с постраничным отображением
|
|
24514
24691
|
*/
|
|
24515
|
-
declare const query$
|
|
24692
|
+
declare const query$g: {
|
|
24516
24693
|
getAccounts: [{
|
|
24517
24694
|
data: Variable<"GetAccountsInput", "data">;
|
|
24518
24695
|
options: Variable<"PaginationInput", "options">;
|
|
@@ -24702,7 +24879,7 @@ declare const query$f: {
|
|
|
24702
24879
|
currentPage: boolean;
|
|
24703
24880
|
}];
|
|
24704
24881
|
};
|
|
24705
|
-
interface IInput$
|
|
24882
|
+
interface IInput$g {
|
|
24706
24883
|
/**
|
|
24707
24884
|
* @private
|
|
24708
24885
|
*/
|
|
@@ -24710,17 +24887,17 @@ interface IInput$f {
|
|
|
24710
24887
|
data?: ModelTypes['GetAccountsInput'];
|
|
24711
24888
|
options?: ModelTypes['PaginationInput'];
|
|
24712
24889
|
}
|
|
24713
|
-
type IOutput$
|
|
24890
|
+
type IOutput$g = InputType<GraphQLTypes['Query'], typeof query$g>;
|
|
24714
24891
|
|
|
24715
24892
|
declare namespace getAccounts {
|
|
24716
|
-
export { type IInput$
|
|
24893
|
+
export { type IInput$g as IInput, type IOutput$g as IOutput, name$f as name, query$g as query };
|
|
24717
24894
|
}
|
|
24718
24895
|
|
|
24719
|
-
declare const name$
|
|
24896
|
+
declare const name$e = "searchPrivateAccounts";
|
|
24720
24897
|
/**
|
|
24721
24898
|
* Поиск приватных данных аккаунтов по запросу
|
|
24722
24899
|
*/
|
|
24723
|
-
declare const query$
|
|
24900
|
+
declare const query$f: {
|
|
24724
24901
|
searchPrivateAccounts: [{
|
|
24725
24902
|
data: Variable<"SearchPrivateAccountsInput!", "data">;
|
|
24726
24903
|
}, {
|
|
@@ -24788,17 +24965,17 @@ declare const query$e: {
|
|
|
24788
24965
|
};
|
|
24789
24966
|
}];
|
|
24790
24967
|
};
|
|
24791
|
-
interface IInput$
|
|
24968
|
+
interface IInput$f {
|
|
24792
24969
|
/**
|
|
24793
24970
|
* @private
|
|
24794
24971
|
*/
|
|
24795
24972
|
[key: string]: unknown;
|
|
24796
24973
|
data: ModelTypes['SearchPrivateAccountsInput'];
|
|
24797
24974
|
}
|
|
24798
|
-
type IOutput$
|
|
24975
|
+
type IOutput$f = InputType<GraphQLTypes['Query'], typeof query$f>;
|
|
24799
24976
|
|
|
24800
24977
|
declare namespace searchPrivateAccounts {
|
|
24801
|
-
export { type IInput$
|
|
24978
|
+
export { type IInput$f as IInput, type IOutput$f as IOutput, name$e as name, query$f as query };
|
|
24802
24979
|
}
|
|
24803
24980
|
|
|
24804
24981
|
/**
|
|
@@ -24809,11 +24986,11 @@ declare namespace index$f {
|
|
|
24809
24986
|
export { getAccount as GetAccount, getAccounts as GetAccounts, searchPrivateAccounts as SearchPrivateAccounts };
|
|
24810
24987
|
}
|
|
24811
24988
|
|
|
24812
|
-
declare const name$
|
|
24989
|
+
declare const name$d = "getAgenda";
|
|
24813
24990
|
/**
|
|
24814
24991
|
* Извлекает информацию о состоянии системы
|
|
24815
24992
|
*/
|
|
24816
|
-
declare const query$
|
|
24993
|
+
declare const query$e: {
|
|
24817
24994
|
getAgenda: {
|
|
24818
24995
|
action: {
|
|
24819
24996
|
account: boolean;
|
|
@@ -25623,16 +25800,16 @@ declare const query$d: {
|
|
|
25623
25800
|
};
|
|
25624
25801
|
};
|
|
25625
25802
|
};
|
|
25626
|
-
interface IInput$
|
|
25803
|
+
interface IInput$e {
|
|
25627
25804
|
/**
|
|
25628
25805
|
* @private
|
|
25629
25806
|
*/
|
|
25630
25807
|
[key: string]: unknown;
|
|
25631
25808
|
}
|
|
25632
|
-
type IOutput$
|
|
25809
|
+
type IOutput$e = InputType<GraphQLTypes['Query'], typeof query$e>;
|
|
25633
25810
|
|
|
25634
25811
|
declare namespace getAgenda {
|
|
25635
|
-
export { type IInput$
|
|
25812
|
+
export { type IInput$e as IInput, type IOutput$e as IOutput, name$d as name, query$e as query };
|
|
25636
25813
|
}
|
|
25637
25814
|
|
|
25638
25815
|
/** Получить список вопросов совета кооператива для голосования */
|
|
@@ -25641,11 +25818,11 @@ declare namespace index$e {
|
|
|
25641
25818
|
export { getAgenda as GetAgenda };
|
|
25642
25819
|
}
|
|
25643
25820
|
|
|
25644
|
-
declare const name$
|
|
25821
|
+
declare const name$c = "getBranches";
|
|
25645
25822
|
/**
|
|
25646
25823
|
* Извлекает подробную информацию о кооперативных участках
|
|
25647
25824
|
*/
|
|
25648
|
-
declare const query$
|
|
25825
|
+
declare const query$d: {
|
|
25649
25826
|
getBranches: [{
|
|
25650
25827
|
data: Variable<"GetBranchesInput!", "data">;
|
|
25651
25828
|
}, {
|
|
@@ -25727,24 +25904,24 @@ declare const query$c: {
|
|
|
25727
25904
|
type: boolean;
|
|
25728
25905
|
}];
|
|
25729
25906
|
};
|
|
25730
|
-
interface IInput$
|
|
25907
|
+
interface IInput$d {
|
|
25731
25908
|
/**
|
|
25732
25909
|
* @private
|
|
25733
25910
|
*/
|
|
25734
25911
|
[key: string]: unknown;
|
|
25735
25912
|
data: ModelTypes['GetBranchesInput'];
|
|
25736
25913
|
}
|
|
25737
|
-
type IOutput$
|
|
25914
|
+
type IOutput$d = InputType<GraphQLTypes['Query'], typeof query$d>;
|
|
25738
25915
|
|
|
25739
25916
|
declare namespace getBranches {
|
|
25740
|
-
export { type IInput$
|
|
25917
|
+
export { type IInput$d as IInput, type IOutput$d as IOutput, name$c as name, query$d as query };
|
|
25741
25918
|
}
|
|
25742
25919
|
|
|
25743
|
-
declare const name$
|
|
25920
|
+
declare const name$b = "getBranches";
|
|
25744
25921
|
/**
|
|
25745
25922
|
* Извлекает информацию о кооперативных участках для пользователя с ролью user
|
|
25746
25923
|
*/
|
|
25747
|
-
declare const query$
|
|
25924
|
+
declare const query$c: {
|
|
25748
25925
|
getBranches: [{
|
|
25749
25926
|
data: Variable<"GetBranchesInput!", "data">;
|
|
25750
25927
|
}, {
|
|
@@ -25792,17 +25969,17 @@ declare const query$b: {
|
|
|
25792
25969
|
type: boolean;
|
|
25793
25970
|
}];
|
|
25794
25971
|
};
|
|
25795
|
-
interface IInput$
|
|
25972
|
+
interface IInput$c {
|
|
25796
25973
|
/**
|
|
25797
25974
|
* @private
|
|
25798
25975
|
*/
|
|
25799
25976
|
[key: string]: unknown;
|
|
25800
25977
|
data: ModelTypes['GetBranchesInput'];
|
|
25801
25978
|
}
|
|
25802
|
-
type IOutput$
|
|
25979
|
+
type IOutput$c = InputType<GraphQLTypes['Query'], typeof query$c>;
|
|
25803
25980
|
|
|
25804
25981
|
declare namespace getPublicBranches {
|
|
25805
|
-
export { type IInput$
|
|
25982
|
+
export { type IInput$c as IInput, type IOutput$c as IOutput, name$b as name, query$c as query };
|
|
25806
25983
|
}
|
|
25807
25984
|
|
|
25808
25985
|
/** Получить список кооперативных участков */
|
|
@@ -25811,11 +25988,11 @@ declare namespace index$d {
|
|
|
25811
25988
|
export { getBranches as GetBranches, getPublicBranches as GetPublicBranches };
|
|
25812
25989
|
}
|
|
25813
25990
|
|
|
25814
|
-
declare const name$
|
|
25991
|
+
declare const name$a = "getDesktop";
|
|
25815
25992
|
/**
|
|
25816
25993
|
* Извлекает рабочий стол
|
|
25817
25994
|
*/
|
|
25818
|
-
declare const query$
|
|
25995
|
+
declare const query$b: {
|
|
25819
25996
|
getDesktop: {
|
|
25820
25997
|
coopname: boolean;
|
|
25821
25998
|
layout: boolean;
|
|
@@ -25827,16 +26004,16 @@ declare const query$a: {
|
|
|
25827
26004
|
};
|
|
25828
26005
|
};
|
|
25829
26006
|
};
|
|
25830
|
-
interface IInput$
|
|
26007
|
+
interface IInput$b {
|
|
25831
26008
|
/**
|
|
25832
26009
|
* @private
|
|
25833
26010
|
*/
|
|
25834
26011
|
[key: string]: unknown;
|
|
25835
26012
|
}
|
|
25836
|
-
type IOutput$
|
|
26013
|
+
type IOutput$b = InputType<GraphQLTypes['Query'], typeof query$b>;
|
|
25837
26014
|
|
|
25838
26015
|
declare namespace getDesktop {
|
|
25839
|
-
export { type IInput$
|
|
26016
|
+
export { type IInput$b as IInput, type IOutput$b as IOutput, name$a as name, query$b as query };
|
|
25840
26017
|
}
|
|
25841
26018
|
|
|
25842
26019
|
/** Получить состав приложений рабочего стола */
|
|
@@ -25845,11 +26022,11 @@ declare namespace index$c {
|
|
|
25845
26022
|
export { getDesktop as GetDesktop };
|
|
25846
26023
|
}
|
|
25847
26024
|
|
|
25848
|
-
declare const name$
|
|
26025
|
+
declare const name$9 = "getDocuments";
|
|
25849
26026
|
/**
|
|
25850
26027
|
* Извлекает документы с агрегатами
|
|
25851
26028
|
*/
|
|
25852
|
-
declare const query$
|
|
26029
|
+
declare const query$a: {
|
|
25853
26030
|
getDocuments: [{
|
|
25854
26031
|
data: Variable<"GetDocumentsInput!", "data">;
|
|
25855
26032
|
}, {
|
|
@@ -26424,28 +26601,28 @@ declare const query$9: {
|
|
|
26424
26601
|
currentPage: boolean;
|
|
26425
26602
|
}];
|
|
26426
26603
|
};
|
|
26427
|
-
interface IInput$
|
|
26604
|
+
interface IInput$a {
|
|
26428
26605
|
/**
|
|
26429
26606
|
* @private
|
|
26430
26607
|
*/
|
|
26431
26608
|
[key: string]: unknown;
|
|
26432
26609
|
data: ModelTypes['GetDocumentsInput'];
|
|
26433
26610
|
}
|
|
26434
|
-
type IOutput$
|
|
26611
|
+
type IOutput$a = InputType<GraphQLTypes['Query'], typeof query$a>;
|
|
26435
26612
|
|
|
26436
26613
|
declare namespace getDocuments {
|
|
26437
|
-
export { type IInput$
|
|
26614
|
+
export { type IInput$a as IInput, type IOutput$a as IOutput, name$9 as name, query$a as query };
|
|
26438
26615
|
}
|
|
26439
26616
|
|
|
26440
26617
|
declare namespace index$b {
|
|
26441
26618
|
export { getDocuments as GetDocuments };
|
|
26442
26619
|
}
|
|
26443
26620
|
|
|
26444
|
-
declare const name$
|
|
26621
|
+
declare const name$8 = "getExtensions";
|
|
26445
26622
|
/**
|
|
26446
26623
|
* Извлекает расширения
|
|
26447
26624
|
*/
|
|
26448
|
-
declare const query$
|
|
26625
|
+
declare const query$9: {
|
|
26449
26626
|
getExtensions: [{
|
|
26450
26627
|
data: Variable<"GetExtensionsInput", "data">;
|
|
26451
26628
|
}, {
|
|
@@ -26469,17 +26646,17 @@ declare const query$8: {
|
|
|
26469
26646
|
instructions: boolean;
|
|
26470
26647
|
}];
|
|
26471
26648
|
};
|
|
26472
|
-
interface IInput$
|
|
26649
|
+
interface IInput$9 {
|
|
26473
26650
|
/**
|
|
26474
26651
|
* @private
|
|
26475
26652
|
*/
|
|
26476
26653
|
[key: string]: unknown;
|
|
26477
26654
|
data: ModelTypes['GetExtensionsInput'];
|
|
26478
26655
|
}
|
|
26479
|
-
type IOutput$
|
|
26656
|
+
type IOutput$9 = InputType<GraphQLTypes['Query'], typeof query$9>;
|
|
26480
26657
|
|
|
26481
26658
|
declare namespace getExtensions {
|
|
26482
|
-
export { type IInput$
|
|
26659
|
+
export { type IInput$9 as IInput, type IOutput$9 as IOutput, name$8 as name, query$9 as query };
|
|
26483
26660
|
}
|
|
26484
26661
|
|
|
26485
26662
|
/** Получить список расширений */
|
|
@@ -26488,8 +26665,8 @@ declare namespace index$a {
|
|
|
26488
26665
|
export { getExtensions as GetExtensions };
|
|
26489
26666
|
}
|
|
26490
26667
|
|
|
26491
|
-
declare const name$
|
|
26492
|
-
declare const query$
|
|
26668
|
+
declare const name$7 = "getPayments";
|
|
26669
|
+
declare const query$8: {
|
|
26493
26670
|
getPayments: [{
|
|
26494
26671
|
data: Variable<"PaymentFiltersInput", "data">;
|
|
26495
26672
|
options: Variable<"PaginationInput", "options">;
|
|
@@ -26566,14 +26743,14 @@ declare const query$7: {
|
|
|
26566
26743
|
currentPage: boolean;
|
|
26567
26744
|
}];
|
|
26568
26745
|
};
|
|
26569
|
-
interface IInput$
|
|
26746
|
+
interface IInput$8 {
|
|
26570
26747
|
data?: ModelTypes['PaymentFiltersInput'];
|
|
26571
26748
|
options?: ModelTypes['PaginationInput'];
|
|
26572
26749
|
}
|
|
26573
|
-
type IOutput$
|
|
26750
|
+
type IOutput$8 = InputType<GraphQLTypes['Query'], typeof query$8>;
|
|
26574
26751
|
|
|
26575
26752
|
declare namespace getPayments {
|
|
26576
|
-
export { type IInput$
|
|
26753
|
+
export { type IInput$8 as IInput, type IOutput$8 as IOutput, name$7 as name, query$8 as query };
|
|
26577
26754
|
}
|
|
26578
26755
|
|
|
26579
26756
|
/** Получить список платежей с возможностью фильтрации по типу, статусу и направлению. */
|
|
@@ -26582,11 +26759,11 @@ declare namespace index$9 {
|
|
|
26582
26759
|
export { getPayments as GetPayments };
|
|
26583
26760
|
}
|
|
26584
26761
|
|
|
26585
|
-
declare const name$
|
|
26762
|
+
declare const name$6 = "getLedger";
|
|
26586
26763
|
/**
|
|
26587
26764
|
* Получить полное состояние плана счетов кооператива
|
|
26588
26765
|
*/
|
|
26589
|
-
declare const query$
|
|
26766
|
+
declare const query$7: {
|
|
26590
26767
|
getLedger: [{
|
|
26591
26768
|
data: Variable<"GetLedgerInput!", "data">;
|
|
26592
26769
|
}, {
|
|
@@ -26601,23 +26778,58 @@ declare const query$6: {
|
|
|
26601
26778
|
};
|
|
26602
26779
|
}];
|
|
26603
26780
|
};
|
|
26604
|
-
interface IInput$
|
|
26781
|
+
interface IInput$7 {
|
|
26605
26782
|
/**
|
|
26606
26783
|
* @private
|
|
26607
26784
|
*/
|
|
26608
26785
|
[key: string]: unknown;
|
|
26609
26786
|
data: ModelTypes['GetLedgerInput'];
|
|
26610
26787
|
}
|
|
26611
|
-
type IOutput$
|
|
26788
|
+
type IOutput$7 = InputType<GraphQLTypes['Query'], typeof query$7>;
|
|
26612
26789
|
|
|
26613
26790
|
declare namespace getLedger {
|
|
26791
|
+
export { type IInput$7 as IInput, type IOutput$7 as IOutput, name$6 as name, query$7 as query };
|
|
26792
|
+
}
|
|
26793
|
+
|
|
26794
|
+
declare const name$5 = "getLedgerHistory";
|
|
26795
|
+
/**
|
|
26796
|
+
* Получить историю операций по счетам кооператива
|
|
26797
|
+
*/
|
|
26798
|
+
declare const query$6: {
|
|
26799
|
+
getLedgerHistory: [{
|
|
26800
|
+
data: Variable<"GetLedgerHistoryInput!", "data">;
|
|
26801
|
+
}, {
|
|
26802
|
+
items: {
|
|
26803
|
+
global_sequence: boolean;
|
|
26804
|
+
coopname: boolean;
|
|
26805
|
+
action: boolean;
|
|
26806
|
+
created_at: boolean;
|
|
26807
|
+
account_id: boolean;
|
|
26808
|
+
quantity: boolean;
|
|
26809
|
+
comment: boolean;
|
|
26810
|
+
};
|
|
26811
|
+
totalCount: boolean;
|
|
26812
|
+
totalPages: boolean;
|
|
26813
|
+
currentPage: boolean;
|
|
26814
|
+
}];
|
|
26815
|
+
};
|
|
26816
|
+
interface IInput$6 {
|
|
26817
|
+
/**
|
|
26818
|
+
* @private
|
|
26819
|
+
*/
|
|
26820
|
+
[key: string]: unknown;
|
|
26821
|
+
data: ModelTypes['GetLedgerHistoryInput'];
|
|
26822
|
+
}
|
|
26823
|
+
type IOutput$6 = InputType<GraphQLTypes['Query'], typeof query$6>;
|
|
26824
|
+
|
|
26825
|
+
declare namespace getLedgerHistory {
|
|
26614
26826
|
export { type IInput$6 as IInput, type IOutput$6 as IOutput, name$5 as name, query$6 as query };
|
|
26615
26827
|
}
|
|
26616
26828
|
|
|
26617
26829
|
/** Получить полное состояние плана счетов кооператива. Возвращает все счета из стандартного плана счетов с актуальными данными из блокчейна. Если счет не активен в блокчейне, возвращает нулевые значения. */
|
|
26618
26830
|
|
|
26619
26831
|
declare namespace index$8 {
|
|
26620
|
-
export { getLedger as GetLedger };
|
|
26832
|
+
export { getLedger as GetLedger, getLedgerHistory as GetLedgerHistory };
|
|
26621
26833
|
}
|
|
26622
26834
|
|
|
26623
26835
|
declare const name$4 = "getMeet";
|
|
@@ -28672,7 +28884,7 @@ declare class Client {
|
|
|
28672
28884
|
* @param wif Приватный ключ в формате WIF.
|
|
28673
28885
|
* @returns Результат логина.
|
|
28674
28886
|
*/
|
|
28675
|
-
login(email: string, wif: string): Promise<IOutput$
|
|
28887
|
+
login(email: string, wif: string): Promise<IOutput$1n['login']>;
|
|
28676
28888
|
/**
|
|
28677
28889
|
* Установка токена авторизации.
|
|
28678
28890
|
* @param token Токен для заголовков Authorization.
|
|
@@ -28728,6 +28940,9 @@ declare class Client {
|
|
|
28728
28940
|
getLedger?: [{
|
|
28729
28941
|
data: ValueTypes["GetLedgerInput"] | Variable<any, string>;
|
|
28730
28942
|
}, ValueTypes["LedgerState"]];
|
|
28943
|
+
getLedgerHistory?: [{
|
|
28944
|
+
data: ValueTypes["GetLedgerHistoryInput"] | Variable<any, string>;
|
|
28945
|
+
}, ValueTypes["LedgerHistoryResponse"]];
|
|
28731
28946
|
getMeet?: [{
|
|
28732
28947
|
data: ValueTypes["GetMeetInput"] | Variable<any, string>;
|
|
28733
28948
|
}, ValueTypes["MeetAggregate"]];
|
|
@@ -28750,7 +28965,7 @@ declare class Client {
|
|
|
28750
28965
|
data: ValueTypes["SearchPrivateAccountsInput"] | Variable<any, string>;
|
|
28751
28966
|
}, ValueTypes["PrivateAccountSearchResult"]];
|
|
28752
28967
|
__typename?: boolean | `@${string}`;
|
|
28753
|
-
}>>(o: Z & { [P in keyof Z]: P extends "__alias" | "__typename" | "__directives" | "getAccount" | "getAccounts" | "getAgenda" | "getBranches" | "getDesktop" | "getDocuments" | "getExtensions" | "getLedger" | "getMeet" | "getMeets" | "getPaymentMethods" | "getPayments" | "getSystemInfo" | "getUserWebPushSubscriptions" | "getWebPushSubscriptionStats" | "searchPrivateAccounts" ? Z[P] : never; }, ops?: OperationOptions & {
|
|
28968
|
+
}>>(o: Z & { [P in keyof Z]: P extends "__alias" | "__typename" | "__directives" | "getAccount" | "getAccounts" | "getAgenda" | "getBranches" | "getDesktop" | "getDocuments" | "getExtensions" | "getLedger" | "getLedgerHistory" | "getMeet" | "getMeets" | "getPaymentMethods" | "getPayments" | "getSystemInfo" | "getUserWebPushSubscriptions" | "getWebPushSubscriptionStats" | "searchPrivateAccounts" ? Z[P] : never; }, ops?: OperationOptions & {
|
|
28754
28969
|
variables?: Record<string, unknown>;
|
|
28755
28970
|
}) => Promise<InputType<{
|
|
28756
28971
|
__typename: "Query";
|
|
@@ -28762,6 +28977,7 @@ declare class Client {
|
|
|
28762
28977
|
getDocuments: GraphQLTypes["DocumentsAggregatePaginationResult"];
|
|
28763
28978
|
getExtensions: Array<GraphQLTypes["Extension"]>;
|
|
28764
28979
|
getLedger: GraphQLTypes["LedgerState"];
|
|
28980
|
+
getLedgerHistory: GraphQLTypes["LedgerHistoryResponse"];
|
|
28765
28981
|
getMeet: GraphQLTypes["MeetAggregate"];
|
|
28766
28982
|
getMeets: Array<GraphQLTypes["MeetAggregate"]>;
|
|
28767
28983
|
getPaymentMethods: GraphQLTypes["PaymentMethodPaginationResult"];
|