@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.
Files changed (38) hide show
  1. package/dist/services/core/index.d.ts +9 -8
  2. package/dist/services/core/index.js +2 -2
  3. package/dist/services/core/models/Balance.d.ts +0 -2
  4. package/dist/services/core/models/BalanceReport.d.ts +2 -2
  5. package/dist/services/core/models/BucketableBalance.d.ts +6 -0
  6. package/dist/services/core/models/InputFieldDefinition.d.ts +1 -1
  7. package/dist/services/core/models/MemberBalanceReport.d.ts +3 -3
  8. package/dist/services/core/models/Operation.d.ts +2 -1
  9. package/dist/services/core/models/{Group.d.ts → Project.d.ts} +1 -1
  10. package/dist/services/core/models/{GroupEdit.d.ts → ProjectEdit.d.ts} +1 -1
  11. package/dist/services/core/models/ProjectInsert.d.ts +3 -0
  12. package/dist/services/core/models/{GroupWallet.d.ts → ProjectWallet.d.ts} +1 -1
  13. package/dist/services/core/models/{GroupWalletEdit.d.ts → ProjectWalletEdit.d.ts} +1 -1
  14. package/dist/services/core/models/{GroupWalletInsert.d.ts → ProjectWalletInsert.d.ts} +1 -1
  15. package/dist/services/core/models/ProjectWalletInsert.js +1 -0
  16. package/dist/services/core/models/Settlement.d.ts +1 -0
  17. package/dist/services/core/models/WalletBalance.d.ts +0 -2
  18. package/dist/services/core/services/BucketsService.d.ts +10 -10
  19. package/dist/services/core/services/BucketsService.js +20 -20
  20. package/dist/services/core/services/EntriesService.d.ts +10 -10
  21. package/dist/services/core/services/EntriesService.js +20 -20
  22. package/dist/services/core/services/ProjectWalletsService.d.ts +57 -0
  23. package/dist/services/core/services/ProjectWalletsService.js +118 -0
  24. package/dist/services/core/services/ProjectsService.d.ts +97 -0
  25. package/dist/services/core/services/{GroupsService.js → ProjectsService.js} +65 -49
  26. package/dist/services/core/services/TemplatesService.d.ts +10 -10
  27. package/dist/services/core/services/TemplatesService.js +20 -20
  28. package/package.json +1 -1
  29. package/dist/services/core/models/GroupInsert.d.ts +0 -3
  30. package/dist/services/core/services/GroupWalletsService.d.ts +0 -49
  31. package/dist/services/core/services/GroupWalletsService.js +0 -102
  32. package/dist/services/core/services/GroupsService.d.ts +0 -89
  33. /package/dist/services/core/models/{Group.js → BucketableBalance.js} +0 -0
  34. /package/dist/services/core/models/{GroupEdit.js → Project.js} +0 -0
  35. /package/dist/services/core/models/{GroupInsert.js → ProjectEdit.js} +0 -0
  36. /package/dist/services/core/models/{GroupWallet.js → ProjectInsert.js} +0 -0
  37. /package/dist/services/core/models/{GroupWalletEdit.js → ProjectWallet.js} +0 -0
  38. /package/dist/services/core/models/{GroupWalletInsert.js → ProjectWalletEdit.js} +0 -0
@@ -1,102 +0,0 @@
1
- import { OpenAPI } from '../core/OpenAPI';
2
- import { request as __request } from '../core/request';
3
- export class GroupWalletsService {
4
- /**
5
- * @param groupId
6
- * @returns GroupWallet OK
7
- * @throws ApiError
8
- */
9
- static getGroupsWallets(groupId) {
10
- return __request(OpenAPI, {
11
- method: 'GET',
12
- url: '/groups/{groupId}/wallets',
13
- path: {
14
- 'groupId': groupId,
15
- },
16
- });
17
- }
18
- /**
19
- * @param groupId
20
- * @param requestBody
21
- * @returns GroupWallet OK
22
- * @throws ApiError
23
- */
24
- static postGroupsWallets(groupId, requestBody) {
25
- return __request(OpenAPI, {
26
- method: 'POST',
27
- url: '/groups/{groupId}/wallets',
28
- path: {
29
- 'groupId': groupId,
30
- },
31
- body: requestBody,
32
- mediaType: 'application/json;odata.metadata=minimal;odata.streaming=true',
33
- });
34
- }
35
- /**
36
- * @param groupId
37
- * @param walletId
38
- * @returns GroupWallet OK
39
- * @throws ApiError
40
- */
41
- static getGroupsWallets1(groupId, walletId) {
42
- return __request(OpenAPI, {
43
- method: 'GET',
44
- url: '/groups/{groupId}/wallets/{walletId}',
45
- path: {
46
- 'groupId': groupId,
47
- 'walletId': walletId,
48
- },
49
- });
50
- }
51
- /**
52
- * @param groupId
53
- * @param walletId
54
- * @param requestBody
55
- * @returns GroupWallet OK
56
- * @throws ApiError
57
- */
58
- static patchGroupsWallets(groupId, walletId, requestBody) {
59
- return __request(OpenAPI, {
60
- method: 'PATCH',
61
- url: '/groups/{groupId}/wallets/{walletId}',
62
- path: {
63
- 'groupId': groupId,
64
- 'walletId': walletId,
65
- },
66
- body: requestBody,
67
- mediaType: 'application/json;odata.metadata=minimal;odata.streaming=true',
68
- });
69
- }
70
- /**
71
- * @param groupId
72
- * @param walletId
73
- * @returns any OK
74
- * @throws ApiError
75
- */
76
- static deleteGroupsWallets(groupId, walletId) {
77
- return __request(OpenAPI, {
78
- method: 'DELETE',
79
- url: '/groups/{groupId}/wallets/{walletId}',
80
- path: {
81
- 'groupId': groupId,
82
- 'walletId': walletId,
83
- },
84
- });
85
- }
86
- /**
87
- * @param groupId
88
- * @param walletId
89
- * @returns Balance OK
90
- * @throws ApiError
91
- */
92
- static getGroupsWalletsBalance(groupId, walletId) {
93
- return __request(OpenAPI, {
94
- method: 'GET',
95
- url: '/groups/{groupId}/wallets/{walletId}/balance',
96
- path: {
97
- 'groupId': groupId,
98
- 'walletId': walletId,
99
- },
100
- });
101
- }
102
- }
@@ -1,89 +0,0 @@
1
- import type { BalanceReport } from '../models/BalanceReport';
2
- import type { Group } from '../models/Group';
3
- import type { GroupEdit } from '../models/GroupEdit';
4
- import type { GroupInsert } from '../models/GroupInsert';
5
- import type { Member } from '../models/Member';
6
- import type { MemberBalanceReport } from '../models/MemberBalanceReport';
7
- import type { MemberEdit } from '../models/MemberEdit';
8
- import type { MemberInsert } from '../models/MemberInsert';
9
- import type { CancelablePromise } from '../core/CancelablePromise';
10
- export declare class GroupsService {
11
- /**
12
- * @returns Group OK
13
- * @throws ApiError
14
- */
15
- static getGroups(): CancelablePromise<Array<Group>>;
16
- /**
17
- * @param requestBody
18
- * @returns Group OK
19
- * @throws ApiError
20
- */
21
- static postGroups(requestBody?: GroupInsert): CancelablePromise<Group>;
22
- /**
23
- * @param groupId
24
- * @returns Group OK
25
- * @throws ApiError
26
- */
27
- static getGroups1(groupId: string): CancelablePromise<Group>;
28
- /**
29
- * @param groupId
30
- * @param requestBody
31
- * @returns Group OK
32
- * @throws ApiError
33
- */
34
- static patchGroups(groupId: string, requestBody?: GroupEdit): CancelablePromise<Group>;
35
- /**
36
- * @param groupId
37
- * @returns any OK
38
- * @throws ApiError
39
- */
40
- static deleteGroups(groupId: string): CancelablePromise<any>;
41
- /**
42
- * @param groupId
43
- * @returns BalanceReport OK
44
- * @throws ApiError
45
- */
46
- static getGroupsBalance(groupId: string): CancelablePromise<BalanceReport>;
47
- /**
48
- * @param groupId
49
- * @returns Member OK
50
- * @throws ApiError
51
- */
52
- static getGroupsMembers(groupId: string): CancelablePromise<Array<Member>>;
53
- /**
54
- * @param groupId
55
- * @param requestBody
56
- * @returns Member OK
57
- * @throws ApiError
58
- */
59
- static postGroupsMembers(groupId: string, requestBody?: MemberInsert): CancelablePromise<Member>;
60
- /**
61
- * @param groupId
62
- * @param memberId
63
- * @returns Member OK
64
- * @throws ApiError
65
- */
66
- static getGroupsMembers1(groupId: string, memberId: string): CancelablePromise<Member>;
67
- /**
68
- * @param groupId
69
- * @param memberId
70
- * @param requestBody
71
- * @returns Member OK
72
- * @throws ApiError
73
- */
74
- static patchGroupsMembers(groupId: string, memberId: string, requestBody?: MemberEdit): CancelablePromise<Member>;
75
- /**
76
- * @param groupId
77
- * @param memberId
78
- * @returns any OK
79
- * @throws ApiError
80
- */
81
- static deleteGroupsMembers(groupId: string, memberId: string): CancelablePromise<any>;
82
- /**
83
- * @param groupId
84
- * @param memberId
85
- * @returns MemberBalanceReport OK
86
- * @throws ApiError
87
- */
88
- static getGroupsMembersBalance(groupId: string, memberId: string): CancelablePromise<MemberBalanceReport>;
89
- }