@incomy/platform-sdk 0.0.0-0dd0946e → 0.0.0-215c2fbb
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/services/core/index.d.ts +9 -8
- package/dist/services/core/index.js +2 -2
- package/dist/services/core/models/Balance.d.ts +0 -2
- package/dist/services/core/models/BalanceReport.d.ts +2 -2
- package/dist/services/core/models/BucketableBalance.d.ts +6 -0
- package/dist/services/core/models/InputFieldDefinition.d.ts +1 -1
- package/dist/services/core/models/MemberBalanceReport.d.ts +3 -3
- package/dist/services/core/models/Operation.d.ts +2 -1
- package/dist/services/core/models/{Group.d.ts → Project.d.ts} +1 -1
- package/dist/services/core/models/{GroupEdit.d.ts → ProjectEdit.d.ts} +1 -1
- package/dist/services/core/models/ProjectInsert.d.ts +3 -0
- package/dist/services/core/models/{GroupWallet.d.ts → ProjectWallet.d.ts} +1 -1
- package/dist/services/core/models/{GroupWalletEdit.d.ts → ProjectWalletEdit.d.ts} +1 -1
- package/dist/services/core/models/{GroupWalletInsert.d.ts → ProjectWalletInsert.d.ts} +1 -1
- package/dist/services/core/models/ProjectWalletInsert.js +1 -0
- package/dist/services/core/models/Settlement.d.ts +1 -0
- package/dist/services/core/models/WalletBalance.d.ts +0 -2
- package/dist/services/core/services/BucketsService.d.ts +10 -10
- package/dist/services/core/services/BucketsService.js +20 -20
- package/dist/services/core/services/EntriesService.d.ts +10 -10
- package/dist/services/core/services/EntriesService.js +20 -20
- package/dist/services/core/services/ProjectWalletsService.d.ts +57 -0
- package/dist/services/core/services/ProjectWalletsService.js +118 -0
- package/dist/services/core/services/ProjectsService.d.ts +97 -0
- package/dist/services/core/services/{GroupsService.js → ProjectsService.js} +65 -49
- package/dist/services/core/services/TemplatesService.d.ts +10 -10
- package/dist/services/core/services/TemplatesService.js +20 -20
- package/package.json +1 -1
- package/dist/services/core/models/GroupInsert.d.ts +0 -3
- package/dist/services/core/services/GroupWalletsService.d.ts +0 -49
- package/dist/services/core/services/GroupWalletsService.js +0 -102
- package/dist/services/core/services/GroupsService.d.ts +0 -89
- /package/dist/services/core/models/{Group.js → BucketableBalance.js} +0 -0
- /package/dist/services/core/models/{GroupEdit.js → Project.js} +0 -0
- /package/dist/services/core/models/{GroupInsert.js → ProjectEdit.js} +0 -0
- /package/dist/services/core/models/{GroupWallet.js → ProjectInsert.js} +0 -0
- /package/dist/services/core/models/{GroupWalletEdit.js → ProjectWallet.js} +0 -0
- /package/dist/services/core/models/{GroupWalletInsert.js → ProjectWalletEdit.js} +0 -0
|
@@ -6,6 +6,7 @@ export type { ActualBalance } from './models/ActualBalance';
|
|
|
6
6
|
export type { Balance } from './models/Balance';
|
|
7
7
|
export type { BalanceReport } from './models/BalanceReport';
|
|
8
8
|
export type { Bucket } from './models/Bucket';
|
|
9
|
+
export type { BucketableBalance } from './models/BucketableBalance';
|
|
9
10
|
export type { BucketBalance } from './models/BucketBalance';
|
|
10
11
|
export type { BucketBreakdown } from './models/BucketBreakdown';
|
|
11
12
|
export type { BucketEdit } from './models/BucketEdit';
|
|
@@ -13,12 +14,6 @@ export type { BucketInsert } from './models/BucketInsert';
|
|
|
13
14
|
export type { Entry } from './models/Entry';
|
|
14
15
|
export type { EntryEdit } from './models/EntryEdit';
|
|
15
16
|
export type { EntryInsert } from './models/EntryInsert';
|
|
16
|
-
export type { Group } from './models/Group';
|
|
17
|
-
export type { GroupEdit } from './models/GroupEdit';
|
|
18
|
-
export type { GroupInsert } from './models/GroupInsert';
|
|
19
|
-
export type { GroupWallet } from './models/GroupWallet';
|
|
20
|
-
export type { GroupWalletEdit } from './models/GroupWalletEdit';
|
|
21
|
-
export type { GroupWalletInsert } from './models/GroupWalletInsert';
|
|
22
17
|
export type { InputFieldDefinition } from './models/InputFieldDefinition';
|
|
23
18
|
export type { Member } from './models/Member';
|
|
24
19
|
export type { MemberBalanceReport } from './models/MemberBalanceReport';
|
|
@@ -29,6 +24,12 @@ export type { MoneyExpression } from './models/MoneyExpression';
|
|
|
29
24
|
export type { Operation } from './models/Operation';
|
|
30
25
|
export type { OperationEdit } from './models/OperationEdit';
|
|
31
26
|
export type { OperationInsert } from './models/OperationInsert';
|
|
27
|
+
export type { Project } from './models/Project';
|
|
28
|
+
export type { ProjectEdit } from './models/ProjectEdit';
|
|
29
|
+
export type { ProjectInsert } from './models/ProjectInsert';
|
|
30
|
+
export type { ProjectWallet } from './models/ProjectWallet';
|
|
31
|
+
export type { ProjectWalletEdit } from './models/ProjectWalletEdit';
|
|
32
|
+
export type { ProjectWalletInsert } from './models/ProjectWalletInsert';
|
|
32
33
|
export type { Settlement } from './models/Settlement';
|
|
33
34
|
export type { SettlementEdit } from './models/SettlementEdit';
|
|
34
35
|
export type { SettlementInsert } from './models/SettlementInsert';
|
|
@@ -47,6 +48,6 @@ export type { TemplateSettlementDefinition } from './models/TemplateSettlementDe
|
|
|
47
48
|
export type { WalletBalance } from './models/WalletBalance';
|
|
48
49
|
export { BucketsService } from './services/BucketsService';
|
|
49
50
|
export { EntriesService } from './services/EntriesService';
|
|
50
|
-
export {
|
|
51
|
-
export {
|
|
51
|
+
export { ProjectsService } from './services/ProjectsService';
|
|
52
|
+
export { ProjectWalletsService } from './services/ProjectWalletsService';
|
|
52
53
|
export { TemplatesService } from './services/TemplatesService';
|
|
@@ -7,6 +7,6 @@ export { CancelablePromise, CancelError } from './core/CancelablePromise';
|
|
|
7
7
|
export { OpenAPI } from './core/OpenAPI';
|
|
8
8
|
export { BucketsService } from './services/BucketsService';
|
|
9
9
|
export { EntriesService } from './services/EntriesService';
|
|
10
|
-
export {
|
|
11
|
-
export {
|
|
10
|
+
export { ProjectsService } from './services/ProjectsService';
|
|
11
|
+
export { ProjectWalletsService } from './services/ProjectWalletsService';
|
|
12
12
|
export { TemplatesService } from './services/TemplatesService';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { ActualBalance } from './ActualBalance';
|
|
2
|
-
import type {
|
|
2
|
+
import type { BucketableBalance } from './BucketableBalance';
|
|
3
3
|
export type BalanceReport = {
|
|
4
4
|
actualBalance: ActualBalance;
|
|
5
|
-
effectiveBalance:
|
|
5
|
+
effectiveBalance: BucketableBalance;
|
|
6
6
|
};
|
|
@@ -2,11 +2,12 @@ import type { BucketBreakdown } from './BucketBreakdown';
|
|
|
2
2
|
import type { Money } from './Money';
|
|
3
3
|
export type Operation = {
|
|
4
4
|
id: string;
|
|
5
|
+
entryId: string;
|
|
5
6
|
name: string;
|
|
6
7
|
time: string;
|
|
7
8
|
originWalletId?: string | null;
|
|
8
9
|
targetWalletId?: string | null;
|
|
9
10
|
type: 'in' | 'out' | 'transfer';
|
|
10
11
|
money: Money;
|
|
11
|
-
bucketBreakdown
|
|
12
|
+
bucketBreakdown?: Array<BucketBreakdown> | null;
|
|
12
13
|
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -4,38 +4,38 @@ import type { BucketInsert } from '../models/BucketInsert';
|
|
|
4
4
|
import type { CancelablePromise } from '../core/CancelablePromise';
|
|
5
5
|
export declare class BucketsService {
|
|
6
6
|
/**
|
|
7
|
-
* @param
|
|
7
|
+
* @param projectId
|
|
8
8
|
* @returns Bucket OK
|
|
9
9
|
* @throws ApiError
|
|
10
10
|
*/
|
|
11
|
-
static
|
|
11
|
+
static getProjectsBuckets(projectId: string): CancelablePromise<Array<Bucket>>;
|
|
12
12
|
/**
|
|
13
|
-
* @param
|
|
13
|
+
* @param projectId
|
|
14
14
|
* @param requestBody
|
|
15
15
|
* @returns Bucket OK
|
|
16
16
|
* @throws ApiError
|
|
17
17
|
*/
|
|
18
|
-
static
|
|
18
|
+
static postProjectsBuckets(projectId: string, requestBody?: BucketInsert): CancelablePromise<Bucket>;
|
|
19
19
|
/**
|
|
20
|
-
* @param
|
|
20
|
+
* @param projectId
|
|
21
21
|
* @param bucketId
|
|
22
22
|
* @returns Bucket OK
|
|
23
23
|
* @throws ApiError
|
|
24
24
|
*/
|
|
25
|
-
static
|
|
25
|
+
static getProjectsBuckets1(projectId: string, bucketId: string): CancelablePromise<Bucket>;
|
|
26
26
|
/**
|
|
27
|
-
* @param
|
|
27
|
+
* @param projectId
|
|
28
28
|
* @param bucketId
|
|
29
29
|
* @param requestBody
|
|
30
30
|
* @returns Bucket OK
|
|
31
31
|
* @throws ApiError
|
|
32
32
|
*/
|
|
33
|
-
static
|
|
33
|
+
static patchProjectsBuckets(projectId: string, bucketId: string, requestBody?: BucketEdit): CancelablePromise<Bucket>;
|
|
34
34
|
/**
|
|
35
|
-
* @param
|
|
35
|
+
* @param projectId
|
|
36
36
|
* @param bucketId
|
|
37
37
|
* @returns any OK
|
|
38
38
|
* @throws ApiError
|
|
39
39
|
*/
|
|
40
|
-
static
|
|
40
|
+
static deleteProjectsBuckets(projectId: string, bucketId: string): CancelablePromise<any>;
|
|
41
41
|
}
|
|
@@ -2,65 +2,65 @@ import { OpenAPI } from '../core/OpenAPI';
|
|
|
2
2
|
import { request as __request } from '../core/request';
|
|
3
3
|
export class BucketsService {
|
|
4
4
|
/**
|
|
5
|
-
* @param
|
|
5
|
+
* @param projectId
|
|
6
6
|
* @returns Bucket OK
|
|
7
7
|
* @throws ApiError
|
|
8
8
|
*/
|
|
9
|
-
static
|
|
9
|
+
static getProjectsBuckets(projectId) {
|
|
10
10
|
return __request(OpenAPI, {
|
|
11
11
|
method: 'GET',
|
|
12
|
-
url: '/
|
|
12
|
+
url: '/projects/{projectId}/buckets',
|
|
13
13
|
path: {
|
|
14
|
-
'
|
|
14
|
+
'projectId': projectId,
|
|
15
15
|
},
|
|
16
16
|
});
|
|
17
17
|
}
|
|
18
18
|
/**
|
|
19
|
-
* @param
|
|
19
|
+
* @param projectId
|
|
20
20
|
* @param requestBody
|
|
21
21
|
* @returns Bucket OK
|
|
22
22
|
* @throws ApiError
|
|
23
23
|
*/
|
|
24
|
-
static
|
|
24
|
+
static postProjectsBuckets(projectId, requestBody) {
|
|
25
25
|
return __request(OpenAPI, {
|
|
26
26
|
method: 'POST',
|
|
27
|
-
url: '/
|
|
27
|
+
url: '/projects/{projectId}/buckets',
|
|
28
28
|
path: {
|
|
29
|
-
'
|
|
29
|
+
'projectId': projectId,
|
|
30
30
|
},
|
|
31
31
|
body: requestBody,
|
|
32
32
|
mediaType: 'application/json;odata.metadata=minimal;odata.streaming=true',
|
|
33
33
|
});
|
|
34
34
|
}
|
|
35
35
|
/**
|
|
36
|
-
* @param
|
|
36
|
+
* @param projectId
|
|
37
37
|
* @param bucketId
|
|
38
38
|
* @returns Bucket OK
|
|
39
39
|
* @throws ApiError
|
|
40
40
|
*/
|
|
41
|
-
static
|
|
41
|
+
static getProjectsBuckets1(projectId, bucketId) {
|
|
42
42
|
return __request(OpenAPI, {
|
|
43
43
|
method: 'GET',
|
|
44
|
-
url: '/
|
|
44
|
+
url: '/projects/{projectId}/buckets/{bucketId}',
|
|
45
45
|
path: {
|
|
46
|
-
'
|
|
46
|
+
'projectId': projectId,
|
|
47
47
|
'bucketId': bucketId,
|
|
48
48
|
},
|
|
49
49
|
});
|
|
50
50
|
}
|
|
51
51
|
/**
|
|
52
|
-
* @param
|
|
52
|
+
* @param projectId
|
|
53
53
|
* @param bucketId
|
|
54
54
|
* @param requestBody
|
|
55
55
|
* @returns Bucket OK
|
|
56
56
|
* @throws ApiError
|
|
57
57
|
*/
|
|
58
|
-
static
|
|
58
|
+
static patchProjectsBuckets(projectId, bucketId, requestBody) {
|
|
59
59
|
return __request(OpenAPI, {
|
|
60
60
|
method: 'PATCH',
|
|
61
|
-
url: '/
|
|
61
|
+
url: '/projects/{projectId}/buckets/{bucketId}',
|
|
62
62
|
path: {
|
|
63
|
-
'
|
|
63
|
+
'projectId': projectId,
|
|
64
64
|
'bucketId': bucketId,
|
|
65
65
|
},
|
|
66
66
|
body: requestBody,
|
|
@@ -68,17 +68,17 @@ export class BucketsService {
|
|
|
68
68
|
});
|
|
69
69
|
}
|
|
70
70
|
/**
|
|
71
|
-
* @param
|
|
71
|
+
* @param projectId
|
|
72
72
|
* @param bucketId
|
|
73
73
|
* @returns any OK
|
|
74
74
|
* @throws ApiError
|
|
75
75
|
*/
|
|
76
|
-
static
|
|
76
|
+
static deleteProjectsBuckets(projectId, bucketId) {
|
|
77
77
|
return __request(OpenAPI, {
|
|
78
78
|
method: 'DELETE',
|
|
79
|
-
url: '/
|
|
79
|
+
url: '/projects/{projectId}/buckets/{bucketId}',
|
|
80
80
|
path: {
|
|
81
|
-
'
|
|
81
|
+
'projectId': projectId,
|
|
82
82
|
'bucketId': bucketId,
|
|
83
83
|
},
|
|
84
84
|
});
|
|
@@ -4,41 +4,41 @@ import type { EntryInsert } from '../models/EntryInsert';
|
|
|
4
4
|
import type { CancelablePromise } from '../core/CancelablePromise';
|
|
5
5
|
export declare class EntriesService {
|
|
6
6
|
/**
|
|
7
|
-
* @param
|
|
7
|
+
* @param projectId
|
|
8
8
|
* @param templateId
|
|
9
9
|
* @param includeBalance
|
|
10
10
|
* @returns Entry OK
|
|
11
11
|
* @throws ApiError
|
|
12
12
|
*/
|
|
13
|
-
static
|
|
13
|
+
static getProjectsEntries(projectId: string, templateId?: string, includeBalance?: boolean): CancelablePromise<Array<Entry>>;
|
|
14
14
|
/**
|
|
15
|
-
* @param
|
|
15
|
+
* @param projectId
|
|
16
16
|
* @param requestBody
|
|
17
17
|
* @returns Entry OK
|
|
18
18
|
* @throws ApiError
|
|
19
19
|
*/
|
|
20
|
-
static
|
|
20
|
+
static postProjectsEntries(projectId: string, requestBody?: EntryInsert): CancelablePromise<Entry>;
|
|
21
21
|
/**
|
|
22
|
-
* @param
|
|
22
|
+
* @param projectId
|
|
23
23
|
* @param entryId
|
|
24
24
|
* @param includeBalance
|
|
25
25
|
* @returns Entry OK
|
|
26
26
|
* @throws ApiError
|
|
27
27
|
*/
|
|
28
|
-
static
|
|
28
|
+
static getProjectsEntries1(projectId: string, entryId: string, includeBalance?: boolean): CancelablePromise<Entry>;
|
|
29
29
|
/**
|
|
30
|
-
* @param
|
|
30
|
+
* @param projectId
|
|
31
31
|
* @param entryId
|
|
32
32
|
* @param requestBody
|
|
33
33
|
* @returns Entry OK
|
|
34
34
|
* @throws ApiError
|
|
35
35
|
*/
|
|
36
|
-
static
|
|
36
|
+
static patchProjectsEntries(projectId: string, entryId: string, requestBody?: EntryEdit): CancelablePromise<Entry>;
|
|
37
37
|
/**
|
|
38
|
-
* @param
|
|
38
|
+
* @param projectId
|
|
39
39
|
* @param entryId
|
|
40
40
|
* @returns any OK
|
|
41
41
|
* @throws ApiError
|
|
42
42
|
*/
|
|
43
|
-
static
|
|
43
|
+
static deleteProjectsEntries(projectId: string, entryId: string): CancelablePromise<any>;
|
|
44
44
|
}
|
|
@@ -2,18 +2,18 @@ import { OpenAPI } from '../core/OpenAPI';
|
|
|
2
2
|
import { request as __request } from '../core/request';
|
|
3
3
|
export class EntriesService {
|
|
4
4
|
/**
|
|
5
|
-
* @param
|
|
5
|
+
* @param projectId
|
|
6
6
|
* @param templateId
|
|
7
7
|
* @param includeBalance
|
|
8
8
|
* @returns Entry OK
|
|
9
9
|
* @throws ApiError
|
|
10
10
|
*/
|
|
11
|
-
static
|
|
11
|
+
static getProjectsEntries(projectId, templateId, includeBalance = false) {
|
|
12
12
|
return __request(OpenAPI, {
|
|
13
13
|
method: 'GET',
|
|
14
|
-
url: '/
|
|
14
|
+
url: '/projects/{projectId}/entries',
|
|
15
15
|
path: {
|
|
16
|
-
'
|
|
16
|
+
'projectId': projectId,
|
|
17
17
|
},
|
|
18
18
|
query: {
|
|
19
19
|
'templateId': templateId,
|
|
@@ -22,35 +22,35 @@ export class EntriesService {
|
|
|
22
22
|
});
|
|
23
23
|
}
|
|
24
24
|
/**
|
|
25
|
-
* @param
|
|
25
|
+
* @param projectId
|
|
26
26
|
* @param requestBody
|
|
27
27
|
* @returns Entry OK
|
|
28
28
|
* @throws ApiError
|
|
29
29
|
*/
|
|
30
|
-
static
|
|
30
|
+
static postProjectsEntries(projectId, requestBody) {
|
|
31
31
|
return __request(OpenAPI, {
|
|
32
32
|
method: 'POST',
|
|
33
|
-
url: '/
|
|
33
|
+
url: '/projects/{projectId}/entries',
|
|
34
34
|
path: {
|
|
35
|
-
'
|
|
35
|
+
'projectId': projectId,
|
|
36
36
|
},
|
|
37
37
|
body: requestBody,
|
|
38
38
|
mediaType: 'application/json;odata.metadata=minimal;odata.streaming=true',
|
|
39
39
|
});
|
|
40
40
|
}
|
|
41
41
|
/**
|
|
42
|
-
* @param
|
|
42
|
+
* @param projectId
|
|
43
43
|
* @param entryId
|
|
44
44
|
* @param includeBalance
|
|
45
45
|
* @returns Entry OK
|
|
46
46
|
* @throws ApiError
|
|
47
47
|
*/
|
|
48
|
-
static
|
|
48
|
+
static getProjectsEntries1(projectId, entryId, includeBalance = false) {
|
|
49
49
|
return __request(OpenAPI, {
|
|
50
50
|
method: 'GET',
|
|
51
|
-
url: '/
|
|
51
|
+
url: '/projects/{projectId}/entries/{entryId}',
|
|
52
52
|
path: {
|
|
53
|
-
'
|
|
53
|
+
'projectId': projectId,
|
|
54
54
|
'entryId': entryId,
|
|
55
55
|
},
|
|
56
56
|
query: {
|
|
@@ -59,18 +59,18 @@ export class EntriesService {
|
|
|
59
59
|
});
|
|
60
60
|
}
|
|
61
61
|
/**
|
|
62
|
-
* @param
|
|
62
|
+
* @param projectId
|
|
63
63
|
* @param entryId
|
|
64
64
|
* @param requestBody
|
|
65
65
|
* @returns Entry OK
|
|
66
66
|
* @throws ApiError
|
|
67
67
|
*/
|
|
68
|
-
static
|
|
68
|
+
static patchProjectsEntries(projectId, entryId, requestBody) {
|
|
69
69
|
return __request(OpenAPI, {
|
|
70
70
|
method: 'PATCH',
|
|
71
|
-
url: '/
|
|
71
|
+
url: '/projects/{projectId}/entries/{entryId}',
|
|
72
72
|
path: {
|
|
73
|
-
'
|
|
73
|
+
'projectId': projectId,
|
|
74
74
|
'entryId': entryId,
|
|
75
75
|
},
|
|
76
76
|
body: requestBody,
|
|
@@ -78,17 +78,17 @@ export class EntriesService {
|
|
|
78
78
|
});
|
|
79
79
|
}
|
|
80
80
|
/**
|
|
81
|
-
* @param
|
|
81
|
+
* @param projectId
|
|
82
82
|
* @param entryId
|
|
83
83
|
* @returns any OK
|
|
84
84
|
* @throws ApiError
|
|
85
85
|
*/
|
|
86
|
-
static
|
|
86
|
+
static deleteProjectsEntries(projectId, entryId) {
|
|
87
87
|
return __request(OpenAPI, {
|
|
88
88
|
method: 'DELETE',
|
|
89
|
-
url: '/
|
|
89
|
+
url: '/projects/{projectId}/entries/{entryId}',
|
|
90
90
|
path: {
|
|
91
|
-
'
|
|
91
|
+
'projectId': projectId,
|
|
92
92
|
'entryId': entryId,
|
|
93
93
|
},
|
|
94
94
|
});
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
import type { Balance } from '../models/Balance';
|
|
2
|
+
import type { Operation } from '../models/Operation';
|
|
3
|
+
import type { ProjectWallet } from '../models/ProjectWallet';
|
|
4
|
+
import type { ProjectWalletEdit } from '../models/ProjectWalletEdit';
|
|
5
|
+
import type { ProjectWalletInsert } from '../models/ProjectWalletInsert';
|
|
6
|
+
import type { CancelablePromise } from '../core/CancelablePromise';
|
|
7
|
+
export declare class ProjectWalletsService {
|
|
8
|
+
/**
|
|
9
|
+
* @param projectId
|
|
10
|
+
* @returns ProjectWallet OK
|
|
11
|
+
* @throws ApiError
|
|
12
|
+
*/
|
|
13
|
+
static getProjectsWallets(projectId: string): CancelablePromise<Array<ProjectWallet>>;
|
|
14
|
+
/**
|
|
15
|
+
* @param projectId
|
|
16
|
+
* @param requestBody
|
|
17
|
+
* @returns ProjectWallet OK
|
|
18
|
+
* @throws ApiError
|
|
19
|
+
*/
|
|
20
|
+
static postProjectsWallets(projectId: string, requestBody?: ProjectWalletInsert): CancelablePromise<ProjectWallet>;
|
|
21
|
+
/**
|
|
22
|
+
* @param projectId
|
|
23
|
+
* @param walletId
|
|
24
|
+
* @returns ProjectWallet OK
|
|
25
|
+
* @throws ApiError
|
|
26
|
+
*/
|
|
27
|
+
static getProjectsWallets1(projectId: string, walletId: string): CancelablePromise<ProjectWallet>;
|
|
28
|
+
/**
|
|
29
|
+
* @param projectId
|
|
30
|
+
* @param walletId
|
|
31
|
+
* @param requestBody
|
|
32
|
+
* @returns ProjectWallet OK
|
|
33
|
+
* @throws ApiError
|
|
34
|
+
*/
|
|
35
|
+
static patchProjectsWallets(projectId: string, walletId: string, requestBody?: ProjectWalletEdit): CancelablePromise<ProjectWallet>;
|
|
36
|
+
/**
|
|
37
|
+
* @param projectId
|
|
38
|
+
* @param walletId
|
|
39
|
+
* @returns any OK
|
|
40
|
+
* @throws ApiError
|
|
41
|
+
*/
|
|
42
|
+
static deleteProjectsWallets(projectId: string, walletId: string): CancelablePromise<any>;
|
|
43
|
+
/**
|
|
44
|
+
* @param projectId
|
|
45
|
+
* @param walletId
|
|
46
|
+
* @returns Balance OK
|
|
47
|
+
* @throws ApiError
|
|
48
|
+
*/
|
|
49
|
+
static getProjectsWalletsBalance(projectId: string, walletId: string): CancelablePromise<Balance>;
|
|
50
|
+
/**
|
|
51
|
+
* @param projectId
|
|
52
|
+
* @param walletId
|
|
53
|
+
* @returns Operation OK
|
|
54
|
+
* @throws ApiError
|
|
55
|
+
*/
|
|
56
|
+
static getProjectsWalletsOperations(projectId: string, walletId: string): CancelablePromise<Array<Operation>>;
|
|
57
|
+
}
|