@corsa-labs/sdk 4.6.0 → 4.7.0

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 (73) hide show
  1. package/dist/ComplianceClient.d.ts +4 -0
  2. package/dist/ComplianceClient.js +6 -0
  3. package/dist/ComplianceClient.js.map +1 -1
  4. package/dist/models/ActionConfigDto.d.ts +19 -0
  5. package/dist/models/ActionConfigDto.js +15 -0
  6. package/dist/models/ActionConfigDto.js.map +1 -0
  7. package/dist/models/ChecklistItemResponseDto.d.ts +74 -0
  8. package/dist/models/ChecklistItemResponseDto.js +18 -0
  9. package/dist/models/ChecklistItemResponseDto.js.map +1 -0
  10. package/dist/models/ChecklistResponseDto.d.ts +62 -0
  11. package/dist/models/ChecklistResponseDto.js +26 -0
  12. package/dist/models/ChecklistResponseDto.js.map +1 -0
  13. package/dist/models/ChecklistTemplateItemResponseDto.d.ts +45 -0
  14. package/dist/models/ChecklistTemplateItemResponseDto.js +18 -0
  15. package/dist/models/ChecklistTemplateItemResponseDto.js.map +1 -0
  16. package/dist/models/ChecklistTemplateResponseDto.d.ts +50 -0
  17. package/dist/models/ChecklistTemplateResponseDto.js +17 -0
  18. package/dist/models/ChecklistTemplateResponseDto.js.map +1 -0
  19. package/dist/models/ConditionDto.d.ts +47 -0
  20. package/dist/models/ConditionDto.js +23 -0
  21. package/dist/models/ConditionDto.js.map +1 -0
  22. package/dist/models/ConditionsDto.d.ts +11 -0
  23. package/dist/models/ConditionsDto.js +3 -0
  24. package/dist/models/ConditionsDto.js.map +1 -0
  25. package/dist/models/CorporateClientDto.d.ts +6 -5
  26. package/dist/models/CorporateClientDto.js.map +1 -1
  27. package/dist/models/CreateChecklistTemplateItemDto.d.ts +0 -11
  28. package/dist/models/CreateChecklistTemplateItemDto.js.map +1 -1
  29. package/dist/models/CreateCorporateClientDto.d.ts +1 -0
  30. package/dist/models/CreateCorporateClientDto.js.map +1 -1
  31. package/dist/models/CreateIndividualClientDto.d.ts +1 -0
  32. package/dist/models/CreateIndividualClientDto.js.map +1 -1
  33. package/dist/models/CreateRuleDto.d.ts +38 -0
  34. package/dist/models/CreateRuleDto.js +16 -0
  35. package/dist/models/CreateRuleDto.js.map +1 -0
  36. package/dist/models/DeleteRuleDto.d.ts +6 -0
  37. package/dist/models/DeleteRuleDto.js +3 -0
  38. package/dist/models/DeleteRuleDto.js.map +1 -0
  39. package/dist/models/DisableRuleDto.d.ts +6 -0
  40. package/dist/models/DisableRuleDto.js +3 -0
  41. package/dist/models/DisableRuleDto.js.map +1 -0
  42. package/dist/models/IndividualClientDto.d.ts +5 -4
  43. package/dist/models/IndividualClientDto.js.map +1 -1
  44. package/dist/models/RuleResponseDto.d.ts +25 -0
  45. package/dist/models/RuleResponseDto.js +19 -0
  46. package/dist/models/RuleResponseDto.js.map +1 -0
  47. package/dist/models/UpdateChecklistItemDto.d.ts +9 -6
  48. package/dist/models/UpdateChecklistItemDto.js.map +1 -1
  49. package/dist/models/UpdateChecklistTemplateItemDto.d.ts +0 -11
  50. package/dist/models/UpdateChecklistTemplateItemDto.js.map +1 -1
  51. package/dist/models/UpdateCorporateClientDto.d.ts +2 -0
  52. package/dist/models/UpdateCorporateClientDto.js.map +1 -1
  53. package/dist/models/UpdateIndividualClientDto.d.ts +2 -0
  54. package/dist/models/UpdateIndividualClientDto.js.map +1 -1
  55. package/dist/models/UpdateRuleDto.d.ts +20 -0
  56. package/dist/models/UpdateRuleDto.js +13 -0
  57. package/dist/models/UpdateRuleDto.js.map +1 -0
  58. package/dist/models/UpdateTransactionDto.d.ts +28 -0
  59. package/dist/models/UpdateTransactionDto.js +3 -0
  60. package/dist/models/UpdateTransactionDto.js.map +1 -0
  61. package/dist/services/ChecklistTemplatesService.d.ts +72 -0
  62. package/dist/services/ChecklistTemplatesService.js +177 -0
  63. package/dist/services/ChecklistTemplatesService.js.map +1 -0
  64. package/dist/services/ChecklistsService.d.ts +8 -70
  65. package/dist/services/ChecklistsService.js +8 -173
  66. package/dist/services/ChecklistsService.js.map +1 -1
  67. package/dist/services/RulesService.d.ts +249 -0
  68. package/dist/services/RulesService.js +333 -0
  69. package/dist/services/RulesService.js.map +1 -0
  70. package/dist/services/TransactionsService.d.ts +12 -3
  71. package/dist/services/TransactionsService.js +22 -4
  72. package/dist/services/TransactionsService.js.map +1 -1
  73. package/package.json +1 -1
@@ -0,0 +1,333 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.RulesService = void 0;
4
+ class RulesService {
5
+ httpRequest;
6
+ constructor(httpRequest) {
7
+ this.httpRequest = httpRequest;
8
+ }
9
+ /**
10
+ * Create a new rule (draft)
11
+ * Create a new rule (draft)
12
+ * @param requestBody
13
+ * @returns RuleResponseDto
14
+ * @throws ApiError
15
+ */
16
+ createRule(requestBody) {
17
+ return this.httpRequest.request({
18
+ method: 'POST',
19
+ url: '/rules',
20
+ body: requestBody,
21
+ mediaType: 'application/json',
22
+ });
23
+ }
24
+ /**
25
+ * List rules with pagination
26
+ * List rules with pagination
27
+ * @param page Page number to retrieve. If you provide invalid value the default page number will applied
28
+ *
29
+ * **Example:** 1
30
+ *
31
+ *
32
+ * **Default Value:** 1
33
+ *
34
+ *
35
+ * @param limit Number of records per page.
36
+ *
37
+ *
38
+ * **Example:** 20
39
+ *
40
+ *
41
+ *
42
+ * **Default Value:** 20
43
+ *
44
+ *
45
+ *
46
+ * **Max Value:** 100
47
+ *
48
+ *
49
+ * If provided value is greater than max value, max value will be applied.
50
+ *
51
+ * @param filterId Filter by id query param.
52
+ *
53
+ * **Format:** filter.id={$not}:OPERATION:VALUE
54
+ *
55
+ *
56
+ *
57
+ * **Example:** filter.id=$eq:John Doe&filter.id=$in:John Doe
58
+ *
59
+ * **Available Operations**
60
+ * - $eq
61
+ *
62
+ * - $in
63
+ *
64
+ * - $and
65
+ *
66
+ * - $or
67
+ * @param filterName Filter by name query param.
68
+ *
69
+ * **Format:** filter.name={$not}:OPERATION:VALUE
70
+ *
71
+ *
72
+ *
73
+ * **Example:** filter.name=$eq:John Doe&filter.name=$ilike:John Doe
74
+ *
75
+ * **Available Operations**
76
+ * - $eq
77
+ *
78
+ * - $ilike
79
+ *
80
+ * - $in
81
+ *
82
+ * - $and
83
+ *
84
+ * - $or
85
+ * @param filterStatus Filter by status query param.
86
+ *
87
+ * **Format:** filter.status={$not}:OPERATION:VALUE
88
+ *
89
+ *
90
+ *
91
+ * **Example:** filter.status=$eq:John Doe&filter.status=$in:John Doe
92
+ *
93
+ * **Available Operations**
94
+ * - $eq
95
+ *
96
+ * - $in
97
+ *
98
+ * - $and
99
+ *
100
+ * - $or
101
+ * @param filterPriority Filter by priority query param.
102
+ *
103
+ * **Format:** filter.priority={$not}:OPERATION:VALUE
104
+ *
105
+ *
106
+ *
107
+ * **Example:** filter.priority=$eq:John Doe&filter.priority=$in:John Doe
108
+ *
109
+ * **Available Operations**
110
+ * - $eq
111
+ *
112
+ * - $in
113
+ *
114
+ * - $and
115
+ *
116
+ * - $or
117
+ * @param filterUpdatedAt Filter by updatedAt query param.
118
+ *
119
+ * **Format:** filter.updatedAt={$not}:OPERATION:VALUE
120
+ *
121
+ *
122
+ *
123
+ * **Example:** filter.updatedAt=$btw:John Doe&filter.updatedAt=$gte:John Doe
124
+ *
125
+ * **Available Operations**
126
+ * - $gte
127
+ *
128
+ * - $lte
129
+ *
130
+ * - $btw
131
+ *
132
+ * - $and
133
+ *
134
+ * - $or
135
+ * @param filterCreatedAt Filter by createdAt query param.
136
+ *
137
+ * **Format:** filter.createdAt={$not}:OPERATION:VALUE
138
+ *
139
+ *
140
+ *
141
+ * **Example:** filter.createdAt=$btw:John Doe&filter.createdAt=$gte:John Doe
142
+ *
143
+ * **Available Operations**
144
+ * - $gte
145
+ *
146
+ * - $lte
147
+ *
148
+ * - $btw
149
+ *
150
+ * - $and
151
+ *
152
+ * - $or
153
+ * @param sortBy Parameter to sort by.
154
+ * To sort by multiple fields, just provide query param multiple types. The order in url defines an order of sorting
155
+ *
156
+ * **Format:** {fieldName}:{DIRECTION}
157
+ *
158
+ *
159
+ * **Example:** sortBy=id:DESC&sortBy=name:DESC
160
+ *
161
+ *
162
+ * **Default Value:** updatedAt:DESC
163
+ *
164
+ * **Available Fields**
165
+ * - id
166
+ *
167
+ * - name
168
+ *
169
+ * - updatedAt
170
+ *
171
+ * - createdAt
172
+ *
173
+ * - status
174
+ *
175
+ * - priority
176
+ *
177
+ * @param search Search term to filter result values
178
+ *
179
+ * **Example:** John
180
+ *
181
+ *
182
+ * **Default Value:** No default value
183
+ *
184
+ *
185
+ * @param searchBy List of fields to search by term to filter result values
186
+ *
187
+ * **Example:** name,description
188
+ *
189
+ *
190
+ * **Default Value:** By default all fields mentioned below will be used to search by term
191
+ *
192
+ * **Available Fields**
193
+ * - name
194
+ *
195
+ * - description
196
+ *
197
+ * @returns any
198
+ * @throws ApiError
199
+ */
200
+ listRules(page, limit, filterId, filterName, filterStatus, filterPriority, filterUpdatedAt, filterCreatedAt, sortBy, search, searchBy) {
201
+ return this.httpRequest.request({
202
+ method: 'GET',
203
+ url: '/rules',
204
+ query: {
205
+ 'page': page,
206
+ 'limit': limit,
207
+ 'filter.id': filterId,
208
+ 'filter.name': filterName,
209
+ 'filter.status': filterStatus,
210
+ 'filter.priority': filterPriority,
211
+ 'filter.updatedAt': filterUpdatedAt,
212
+ 'filter.createdAt': filterCreatedAt,
213
+ 'sortBy': sortBy,
214
+ 'search': search,
215
+ 'searchBy': searchBy,
216
+ },
217
+ });
218
+ }
219
+ /**
220
+ * Update a draft rule
221
+ * Update a draft rule
222
+ * @param id
223
+ * @param requestBody
224
+ * @returns RuleResponseDto
225
+ * @throws ApiError
226
+ */
227
+ updateRule(id, requestBody) {
228
+ return this.httpRequest.request({
229
+ method: 'PUT',
230
+ url: '/rules/{id}',
231
+ path: {
232
+ 'id': id,
233
+ },
234
+ body: requestBody,
235
+ mediaType: 'application/json',
236
+ });
237
+ }
238
+ /**
239
+ * Get a rule by ID
240
+ * Get a rule by ID
241
+ * @param id
242
+ * @param version
243
+ * @returns RuleResponseDto
244
+ * @throws ApiError
245
+ */
246
+ getRule(id, version) {
247
+ return this.httpRequest.request({
248
+ method: 'GET',
249
+ url: '/rules/{id}',
250
+ path: {
251
+ 'id': id,
252
+ },
253
+ query: {
254
+ 'version': version,
255
+ },
256
+ });
257
+ }
258
+ /**
259
+ * Update an active rule
260
+ * Update an active rule
261
+ * @param id
262
+ * @param requestBody
263
+ * @returns RuleResponseDto
264
+ * @throws ApiError
265
+ */
266
+ updateActiveRule(id, requestBody) {
267
+ return this.httpRequest.request({
268
+ method: 'PUT',
269
+ url: '/rules/{id}/update-active',
270
+ path: {
271
+ 'id': id,
272
+ },
273
+ body: requestBody,
274
+ mediaType: 'application/json',
275
+ });
276
+ }
277
+ /**
278
+ * Activate a rule
279
+ * Activate a rule
280
+ * @param id
281
+ * @returns RuleResponseDto
282
+ * @throws ApiError
283
+ */
284
+ activateRule(id) {
285
+ return this.httpRequest.request({
286
+ method: 'POST',
287
+ url: '/rules/{id}/activate',
288
+ path: {
289
+ 'id': id,
290
+ },
291
+ });
292
+ }
293
+ /**
294
+ * Disable an active rule
295
+ * Disable an active rule
296
+ * @param id
297
+ * @param requestBody
298
+ * @returns RuleResponseDto
299
+ * @throws ApiError
300
+ */
301
+ disableRule(id, requestBody) {
302
+ return this.httpRequest.request({
303
+ method: 'POST',
304
+ url: '/rules/{id}/disable',
305
+ path: {
306
+ 'id': id,
307
+ },
308
+ body: requestBody,
309
+ mediaType: 'application/json',
310
+ });
311
+ }
312
+ /**
313
+ * Delete a non-active rule (soft delete)
314
+ * Delete a non-active rule (soft delete)
315
+ * @param id
316
+ * @param requestBody
317
+ * @returns any
318
+ * @throws ApiError
319
+ */
320
+ deleteRule(id, requestBody) {
321
+ return this.httpRequest.request({
322
+ method: 'POST',
323
+ url: '/rules/{id}/delete',
324
+ path: {
325
+ 'id': id,
326
+ },
327
+ body: requestBody,
328
+ mediaType: 'application/json',
329
+ });
330
+ }
331
+ }
332
+ exports.RulesService = RulesService;
333
+ //# sourceMappingURL=RulesService.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"RulesService.js","sourceRoot":"","sources":["../../services/RulesService.ts"],"names":[],"mappings":"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"}
@@ -1,18 +1,19 @@
1
1
  import type { TransactionDto } from '../models/TransactionDto';
2
2
  import type { TransactionStatusDto } from '../models/TransactionStatusDto';
3
+ import type { UpdateTransactionDto } from '../models/UpdateTransactionDto';
3
4
  import type { CancelablePromise } from '../core/CancelablePromise';
4
5
  import type { BaseHttpRequest } from '../core/BaseHttpRequest';
5
6
  export declare class TransactionsService {
6
7
  readonly httpRequest: BaseHttpRequest;
7
8
  constructor(httpRequest: BaseHttpRequest);
8
9
  /**
9
- * Update the status of a transaction
10
+ * Update a transaction
10
11
  * @param id
11
12
  * @param requestBody
12
- * @returns any
13
+ * @returns TransactionDto
13
14
  * @throws ApiError
14
15
  */
15
- updateTransactionStatus(id: string, requestBody: TransactionStatusDto): CancelablePromise<any>;
16
+ updateTransaction(id: string, requestBody: UpdateTransactionDto): CancelablePromise<TransactionDto>;
16
17
  /**
17
18
  * Get a transaction by ID or referenceId
18
19
  * @param id
@@ -21,4 +22,12 @@ export declare class TransactionsService {
21
22
  * @throws ApiError
22
23
  */
23
24
  getTransactionById(id: string, integrationId?: string): CancelablePromise<TransactionDto>;
25
+ /**
26
+ * Update the status of a transaction
27
+ * @param id
28
+ * @param requestBody
29
+ * @returns any
30
+ * @throws ApiError
31
+ */
32
+ updateTransactionStatus(id: string, requestBody: TransactionStatusDto): CancelablePromise<any>;
24
33
  }
@@ -7,16 +7,16 @@ class TransactionsService {
7
7
  this.httpRequest = httpRequest;
8
8
  }
9
9
  /**
10
- * Update the status of a transaction
10
+ * Update a transaction
11
11
  * @param id
12
12
  * @param requestBody
13
- * @returns any
13
+ * @returns TransactionDto
14
14
  * @throws ApiError
15
15
  */
16
- updateTransactionStatus(id, requestBody) {
16
+ updateTransaction(id, requestBody) {
17
17
  return this.httpRequest.request({
18
18
  method: 'PUT',
19
- url: '/v1/transactions/{id}/updateStatus',
19
+ url: '/v1/transactions/{id}',
20
20
  path: {
21
21
  'id': id,
22
22
  },
@@ -43,6 +43,24 @@ class TransactionsService {
43
43
  },
44
44
  });
45
45
  }
46
+ /**
47
+ * Update the status of a transaction
48
+ * @param id
49
+ * @param requestBody
50
+ * @returns any
51
+ * @throws ApiError
52
+ */
53
+ updateTransactionStatus(id, requestBody) {
54
+ return this.httpRequest.request({
55
+ method: 'PUT',
56
+ url: '/v1/transactions/{id}/updateStatus',
57
+ path: {
58
+ 'id': id,
59
+ },
60
+ body: requestBody,
61
+ mediaType: 'application/json',
62
+ });
63
+ }
46
64
  }
47
65
  exports.TransactionsService = TransactionsService;
48
66
  //# sourceMappingURL=TransactionsService.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"TransactionsService.js","sourceRoot":"","sources":["../../services/TransactionsService.ts"],"names":[],"mappings":";;;AAQA,MAAa,mBAAmB;IACA;IAA5B,YAA4B,WAA4B;QAA5B,gBAAW,GAAX,WAAW,CAAiB;IAAG,CAAC;IAC5D;;;;;;OAMG;IACI,uBAAuB,CAC1B,EAAU,EACV,WAAiC;QAEjC,OAAO,IAAI,CAAC,WAAW,CAAC,OAAO,CAAC;YAC5B,MAAM,EAAE,KAAK;YACb,GAAG,EAAE,oCAAoC;YACzC,IAAI,EAAE;gBACF,IAAI,EAAE,EAAE;aACX;YACD,IAAI,EAAE,WAAW;YACjB,SAAS,EAAE,kBAAkB;SAChC,CAAC,CAAC;IACP,CAAC;IACD;;;;;;OAMG;IACI,kBAAkB,CACrB,EAAU,EACV,aAAsB;QAEtB,OAAO,IAAI,CAAC,WAAW,CAAC,OAAO,CAAC;YAC5B,MAAM,EAAE,KAAK;YACb,GAAG,EAAE,uBAAuB;YAC5B,IAAI,EAAE;gBACF,IAAI,EAAE,EAAE;aACX;YACD,KAAK,EAAE;gBACH,eAAe,EAAE,aAAa;aACjC;SACJ,CAAC,CAAC;IACP,CAAC;CACJ;AA7CD,kDA6CC"}
1
+ {"version":3,"file":"TransactionsService.js","sourceRoot":"","sources":["../../services/TransactionsService.ts"],"names":[],"mappings":";;;AASA,MAAa,mBAAmB;IACA;IAA5B,YAA4B,WAA4B;QAA5B,gBAAW,GAAX,WAAW,CAAiB;IAAG,CAAC;IAC5D;;;;;;OAMG;IACI,iBAAiB,CACpB,EAAU,EACV,WAAiC;QAEjC,OAAO,IAAI,CAAC,WAAW,CAAC,OAAO,CAAC;YAC5B,MAAM,EAAE,KAAK;YACb,GAAG,EAAE,uBAAuB;YAC5B,IAAI,EAAE;gBACF,IAAI,EAAE,EAAE;aACX;YACD,IAAI,EAAE,WAAW;YACjB,SAAS,EAAE,kBAAkB;SAChC,CAAC,CAAC;IACP,CAAC;IACD;;;;;;OAMG;IACI,kBAAkB,CACrB,EAAU,EACV,aAAsB;QAEtB,OAAO,IAAI,CAAC,WAAW,CAAC,OAAO,CAAC;YAC5B,MAAM,EAAE,KAAK;YACb,GAAG,EAAE,uBAAuB;YAC5B,IAAI,EAAE;gBACF,IAAI,EAAE,EAAE;aACX;YACD,KAAK,EAAE;gBACH,eAAe,EAAE,aAAa;aACjC;SACJ,CAAC,CAAC;IACP,CAAC;IACD;;;;;;OAMG;IACI,uBAAuB,CAC1B,EAAU,EACV,WAAiC;QAEjC,OAAO,IAAI,CAAC,WAAW,CAAC,OAAO,CAAC;YAC5B,MAAM,EAAE,KAAK;YACb,GAAG,EAAE,oCAAoC;YACzC,IAAI,EAAE;gBACF,IAAI,EAAE,EAAE;aACX;YACD,IAAI,EAAE,WAAW;YACjB,SAAS,EAAE,kBAAkB;SAChC,CAAC,CAAC;IACP,CAAC;CACJ;AAlED,kDAkEC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@corsa-labs/sdk",
3
- "version": "4.6.0",
3
+ "version": "4.7.0",
4
4
  "description": "SDK for Corsa API",
5
5
  "main": "dist/main.js",
6
6
  "types": "dist/main.d.ts",