@incomy/platform-sdk 0.6.0-beta.2408 → 0.6.0-beta.2446

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.
@@ -9,7 +9,7 @@ export declare class MembersService {
9
9
  * @returns MemberPaginatedList OK
10
10
  * @throws ApiError
11
11
  */
12
- static getProjectsMembers({ projectId, query, orderByName, limit, next, includeBalance, includeDeletability, }: {
12
+ static getProjectsMembers({ projectId, query, orderByName, limit, next, includeBalance, includeDeletability, types, labelIds, companyIds, memberIds, from, to, }: {
13
13
  projectId: string;
14
14
  query?: string;
15
15
  orderByName?: 'Desc' | 'Asc';
@@ -17,6 +17,12 @@ export declare class MembersService {
17
17
  next?: string;
18
18
  includeBalance?: boolean;
19
19
  includeDeletability?: boolean;
20
+ types?: Array<'income' | 'outcome' | 'transfer' | 'receivable' | 'settlement' | 'multiEvent'>;
21
+ labelIds?: Array<string>;
22
+ companyIds?: Array<string>;
23
+ memberIds?: Array<string>;
24
+ from?: string;
25
+ to?: string;
20
26
  }): CancelablePromise<MemberPaginatedList>;
21
27
  /**
22
28
  * @returns Member OK
@@ -5,7 +5,7 @@ export class MembersService {
5
5
  * @returns MemberPaginatedList OK
6
6
  * @throws ApiError
7
7
  */
8
- static getProjectsMembers({ projectId, query, orderByName, limit = 100, next, includeBalance = false, includeDeletability = false, }) {
8
+ static getProjectsMembers({ projectId, query, orderByName, limit = 100, next, includeBalance = false, includeDeletability = false, types, labelIds, companyIds, memberIds, from, to, }) {
9
9
  return __request(OpenAPI, {
10
10
  method: 'GET',
11
11
  url: '/projects/{projectId}/members',
@@ -19,6 +19,12 @@ export class MembersService {
19
19
  'next': next,
20
20
  'includeBalance': includeBalance,
21
21
  'includeDeletability': includeDeletability,
22
+ 'types': types,
23
+ 'labelIds': labelIds,
24
+ 'companyIds': companyIds,
25
+ 'memberIds': memberIds,
26
+ 'from': from,
27
+ 'to': to,
22
28
  },
23
29
  });
24
30
  }
@@ -9,7 +9,7 @@ export declare class ProjectWalletsService {
9
9
  * @returns ProjectWalletPaginatedList OK
10
10
  * @throws ApiError
11
11
  */
12
- static getProjectsWallets({ projectId, query, orderByName, limit, next, includeBalance, includeDeletability, }: {
12
+ static getProjectsWallets({ projectId, query, orderByName, limit, next, includeBalance, includeDeletability, types, walletIds, labelIds, companyIds, from, to, }: {
13
13
  projectId: string;
14
14
  query?: string;
15
15
  orderByName?: 'Desc' | 'Asc';
@@ -17,6 +17,12 @@ export declare class ProjectWalletsService {
17
17
  next?: string;
18
18
  includeBalance?: boolean;
19
19
  includeDeletability?: boolean;
20
+ types?: Array<'income' | 'outcome' | 'transfer' | 'receivable' | 'settlement' | 'multiEvent'>;
21
+ walletIds?: Array<string>;
22
+ labelIds?: Array<string>;
23
+ companyIds?: Array<string>;
24
+ from?: string;
25
+ to?: string;
20
26
  }): CancelablePromise<ProjectWalletPaginatedList>;
21
27
  /**
22
28
  * @returns ProjectWallet OK
@@ -5,7 +5,7 @@ export class ProjectWalletsService {
5
5
  * @returns ProjectWalletPaginatedList OK
6
6
  * @throws ApiError
7
7
  */
8
- static getProjectsWallets({ projectId, query, orderByName, limit = 10, next, includeBalance = false, includeDeletability = false, }) {
8
+ static getProjectsWallets({ projectId, query, orderByName, limit = 10, next, includeBalance = false, includeDeletability = false, types, walletIds, labelIds, companyIds, from, to, }) {
9
9
  return __request(OpenAPI, {
10
10
  method: 'GET',
11
11
  url: '/projects/{projectId}/wallets',
@@ -19,6 +19,12 @@ export class ProjectWalletsService {
19
19
  'next': next,
20
20
  'includeBalance': includeBalance,
21
21
  'includeDeletability': includeDeletability,
22
+ 'types': types,
23
+ 'walletIds': walletIds,
24
+ 'labelIds': labelIds,
25
+ 'companyIds': companyIds,
26
+ 'from': from,
27
+ 'to': to,
22
28
  },
23
29
  });
24
30
  }
@@ -61,8 +61,16 @@ export declare class ProjectsService {
61
61
  * @returns BalanceReport OK
62
62
  * @throws ApiError
63
63
  */
64
- static getProjectsBalance({ projectId, }: {
64
+ static getProjectsBalance({ projectId, query, types, walletIds, labelIds, companyIds, memberIds, from, to, }: {
65
65
  projectId: string;
66
+ query?: string;
67
+ types?: Array<'income' | 'outcome' | 'transfer' | 'receivable' | 'settlement' | 'multiEvent'>;
68
+ walletIds?: Array<string>;
69
+ labelIds?: Array<string>;
70
+ companyIds?: Array<string>;
71
+ memberIds?: Array<string>;
72
+ from?: string;
73
+ to?: string;
66
74
  }): CancelablePromise<BalanceReport>;
67
75
  /**
68
76
  * @returns MemberBalancePaginatedList OK
@@ -87,13 +87,23 @@ export class ProjectsService {
87
87
  * @returns BalanceReport OK
88
88
  * @throws ApiError
89
89
  */
90
- static getProjectsBalance({ projectId, }) {
90
+ static getProjectsBalance({ projectId, query, types, walletIds, labelIds, companyIds, memberIds, from, to, }) {
91
91
  return __request(OpenAPI, {
92
92
  method: 'GET',
93
93
  url: '/projects/{projectId}/balance',
94
94
  path: {
95
95
  'projectId': projectId,
96
96
  },
97
+ query: {
98
+ 'query': query,
99
+ 'types': types,
100
+ 'walletIds': walletIds,
101
+ 'labelIds': labelIds,
102
+ 'companyIds': companyIds,
103
+ 'memberIds': memberIds,
104
+ 'from': from,
105
+ 'to': to,
106
+ },
97
107
  });
98
108
  }
99
109
  /**
package/meta.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
- "sdkVersion": "0.6.0-beta.2408",
3
- "generatedAt": "2026-07-12T19:32:41.308Z",
4
- "apiCommit": "8fffd1d9",
5
- "pipelineUrl": "https://gitlab.com/incomy/platform/-/pipelines/2671011355",
2
+ "sdkVersion": "0.6.0-beta.2446",
3
+ "generatedAt": "2026-07-13T17:49:18.289Z",
4
+ "apiCommit": "115081d0",
5
+ "pipelineUrl": "https://gitlab.com/incomy/platform/-/pipelines/2673458043",
6
6
  "sources": {
7
7
  "hub": {
8
- "sha256": "30dae3f929ec253bba0b94e1276e72296b00952c293445bdc0347a56c4811d75"
8
+ "sha256": "8120077e0b3f76df3ac50e73b780e7af148346a2d56f0a53ebab0a67afea9e9b"
9
9
  }
10
10
  }
11
11
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@incomy/platform-sdk",
3
- "version": "0.6.0-beta.2408",
3
+ "version": "0.6.0-beta.2446",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "files": [