@blazedpath/commons 0.0.4

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 (224) hide show
  1. package/README.md +3 -0
  2. package/blz-base/health/index.js +215 -0
  3. package/blz-base/index.js +1466 -0
  4. package/blz-cache/LruCache.js +44 -0
  5. package/blz-cache/index.js +29 -0
  6. package/blz-config/index.js +434 -0
  7. package/blz-core/index.js +364 -0
  8. package/blz-cryptography/index.js +54 -0
  9. package/blz-datetimes/index.js +356 -0
  10. package/blz-file/example.dat +2545 -0
  11. package/blz-file/fileService.js +205 -0
  12. package/blz-file/index.js +94 -0
  13. package/blz-file/index.test.js +31 -0
  14. package/blz-file/lab.js +33 -0
  15. package/blz-hazelcast/index.js +189 -0
  16. package/blz-hazelcast/lib/credentials.js +25 -0
  17. package/blz-hazelcast/lib/credentialsFactory.js +12 -0
  18. package/blz-hazelcast/lib/hazelcastCache.js +234 -0
  19. package/blz-iterable/index.js +446 -0
  20. package/blz-json-schema/index.js +11 -0
  21. package/blz-jwt/index.js +121 -0
  22. package/blz-kafka/index.js +522 -0
  23. package/blz-math/index.js +131 -0
  24. package/blz-mongodb/index.js +326 -0
  25. package/blz-rds/__test__/scape.test.js +58 -0
  26. package/blz-rds/blz-rds-executor.js +578 -0
  27. package/blz-rds/blz-rds-helper.js +310 -0
  28. package/blz-rds/commands/core/add.js +13 -0
  29. package/blz-rds/commands/core/and.js +18 -0
  30. package/blz-rds/commands/core/asc.js +10 -0
  31. package/blz-rds/commands/core/avg.js +10 -0
  32. package/blz-rds/commands/core/column-ref.js +8 -0
  33. package/blz-rds/commands/core/count-distinct.js +10 -0
  34. package/blz-rds/commands/core/count.js +10 -0
  35. package/blz-rds/commands/core/decimal.js +8 -0
  36. package/blz-rds/commands/core/desc.js +10 -0
  37. package/blz-rds/commands/core/distinct.js +10 -0
  38. package/blz-rds/commands/core/divide.js +11 -0
  39. package/blz-rds/commands/core/embedded-exists.js +17 -0
  40. package/blz-rds/commands/core/embedded-select.js +17 -0
  41. package/blz-rds/commands/core/equals.js +9 -0
  42. package/blz-rds/commands/core/false.js +8 -0
  43. package/blz-rds/commands/core/greater-or-equal.js +9 -0
  44. package/blz-rds/commands/core/greater.js +9 -0
  45. package/blz-rds/commands/core/in.js +9 -0
  46. package/blz-rds/commands/core/integer.js +8 -0
  47. package/blz-rds/commands/core/is-not-null.js +11 -0
  48. package/blz-rds/commands/core/is-null-or-value.js +10 -0
  49. package/blz-rds/commands/core/is-null.js +11 -0
  50. package/blz-rds/commands/core/less-or-equal.js +9 -0
  51. package/blz-rds/commands/core/less-unary.js +12 -0
  52. package/blz-rds/commands/core/less.js +9 -0
  53. package/blz-rds/commands/core/like.js +12 -0
  54. package/blz-rds/commands/core/max.js +10 -0
  55. package/blz-rds/commands/core/min.js +10 -0
  56. package/blz-rds/commands/core/multiply.js +13 -0
  57. package/blz-rds/commands/core/not-equals.js +9 -0
  58. package/blz-rds/commands/core/not-in.js +9 -0
  59. package/blz-rds/commands/core/not.js +13 -0
  60. package/blz-rds/commands/core/null.js +8 -0
  61. package/blz-rds/commands/core/nvl.js +11 -0
  62. package/blz-rds/commands/core/or.js +13 -0
  63. package/blz-rds/commands/core/parameter.js +34 -0
  64. package/blz-rds/commands/core/remainder.js +16 -0
  65. package/blz-rds/commands/core/string.js +8 -0
  66. package/blz-rds/commands/core/subtract.js +13 -0
  67. package/blz-rds/commands/core/sum.js +10 -0
  68. package/blz-rds/commands/core/true.js +8 -0
  69. package/blz-rds/commands/core/tuple.js +13 -0
  70. package/blz-rds/commands/datetimes/add-days.js +11 -0
  71. package/blz-rds/commands/datetimes/add-hours.js +11 -0
  72. package/blz-rds/commands/datetimes/add-milliseconds.js +11 -0
  73. package/blz-rds/commands/datetimes/add-minutes.js +11 -0
  74. package/blz-rds/commands/datetimes/add-months.js +11 -0
  75. package/blz-rds/commands/datetimes/add-seconds.js +11 -0
  76. package/blz-rds/commands/datetimes/add-years.js +11 -0
  77. package/blz-rds/commands/datetimes/date-diff.js +11 -0
  78. package/blz-rds/commands/datetimes/date.js +12 -0
  79. package/blz-rds/commands/datetimes/datetime-diff.js +11 -0
  80. package/blz-rds/commands/datetimes/datetime.js +15 -0
  81. package/blz-rds/commands/datetimes/day.js +10 -0
  82. package/blz-rds/commands/datetimes/hour.js +10 -0
  83. package/blz-rds/commands/datetimes/millisecond.js +10 -0
  84. package/blz-rds/commands/datetimes/minute.js +10 -0
  85. package/blz-rds/commands/datetimes/month-text.js +10 -0
  86. package/blz-rds/commands/datetimes/month.js +10 -0
  87. package/blz-rds/commands/datetimes/now.js +9 -0
  88. package/blz-rds/commands/datetimes/second.js +10 -0
  89. package/blz-rds/commands/datetimes/subtract-days.js +11 -0
  90. package/blz-rds/commands/datetimes/subtract-hours.js +11 -0
  91. package/blz-rds/commands/datetimes/subtract-milliseconds.js +11 -0
  92. package/blz-rds/commands/datetimes/subtract-minutes.js +11 -0
  93. package/blz-rds/commands/datetimes/subtract-seconds.js +11 -0
  94. package/blz-rds/commands/datetimes/time-diff.js +11 -0
  95. package/blz-rds/commands/datetimes/time.js +13 -0
  96. package/blz-rds/commands/datetimes/today.js +9 -0
  97. package/blz-rds/commands/datetimes/week-day-text.js +10 -0
  98. package/blz-rds/commands/datetimes/week-day.js +10 -0
  99. package/blz-rds/commands/datetimes/week.js +10 -0
  100. package/blz-rds/commands/datetimes/year.js +10 -0
  101. package/blz-rds/commands/math/abs.js +10 -0
  102. package/blz-rds/commands/math/acos.js +10 -0
  103. package/blz-rds/commands/math/asin.js +10 -0
  104. package/blz-rds/commands/math/atan.js +10 -0
  105. package/blz-rds/commands/math/atan2.js +11 -0
  106. package/blz-rds/commands/math/ceil.js +10 -0
  107. package/blz-rds/commands/math/cos.js +10 -0
  108. package/blz-rds/commands/math/cosh.js +10 -0
  109. package/blz-rds/commands/math/exp.js +10 -0
  110. package/blz-rds/commands/math/floor.js +10 -0
  111. package/blz-rds/commands/math/log.js +18 -0
  112. package/blz-rds/commands/math/log10.js +10 -0
  113. package/blz-rds/commands/math/pow.js +11 -0
  114. package/blz-rds/commands/math/random.js +9 -0
  115. package/blz-rds/commands/math/round.js +18 -0
  116. package/blz-rds/commands/math/sign.js +10 -0
  117. package/blz-rds/commands/math/sin.js +10 -0
  118. package/blz-rds/commands/math/sinh.js +10 -0
  119. package/blz-rds/commands/math/sqrt.js +10 -0
  120. package/blz-rds/commands/math/tan.js +10 -0
  121. package/blz-rds/commands/math/tanh.js +10 -0
  122. package/blz-rds/commands/math/trunc.js +18 -0
  123. package/blz-rds/commands/strings/concat.js +20 -0
  124. package/blz-rds/commands/strings/contains.js +12 -0
  125. package/blz-rds/commands/strings/ends-with.js +12 -0
  126. package/blz-rds/commands/strings/index-of.js +11 -0
  127. package/blz-rds/commands/strings/is-null-or-empty.js +11 -0
  128. package/blz-rds/commands/strings/is-null-or-white-space.js +11 -0
  129. package/blz-rds/commands/strings/join.js +22 -0
  130. package/blz-rds/commands/strings/last-index-of.js +11 -0
  131. package/blz-rds/commands/strings/length.js +10 -0
  132. package/blz-rds/commands/strings/pad-left.js +20 -0
  133. package/blz-rds/commands/strings/pad-right.js +20 -0
  134. package/blz-rds/commands/strings/replace.js +12 -0
  135. package/blz-rds/commands/strings/starts-with.js +12 -0
  136. package/blz-rds/commands/strings/substring.js +12 -0
  137. package/blz-rds/commands/strings/to-lower.js +10 -0
  138. package/blz-rds/commands/strings/to-upper.js +10 -0
  139. package/blz-rds/commands/strings/trim-end.js +10 -0
  140. package/blz-rds/commands/strings/trim-start.js +10 -0
  141. package/blz-rds/commands/strings/trim.js +10 -0
  142. package/blz-rds/index.js +744 -0
  143. package/blz-rds-mysql/base.js +857 -0
  144. package/blz-rds-mysql/connection-manager.js +129 -0
  145. package/blz-rds-mysql/execute-bulk-insert.js +35 -0
  146. package/blz-rds-mysql/execute-bulk-merge.js +45 -0
  147. package/blz-rds-mysql/execute-non-query.js +34 -0
  148. package/blz-rds-mysql/execute-query.js +50 -0
  149. package/blz-rds-mysql/index.js +41 -0
  150. package/blz-rds-mysql/stored-procedure.js +207 -0
  151. package/blz-rds-mysql/syntaxis.json +114 -0
  152. package/blz-rds-mysqlx/base.js +846 -0
  153. package/blz-rds-mysqlx/connection-manager.js +141 -0
  154. package/blz-rds-mysqlx/execute-bulk-insert.js +35 -0
  155. package/blz-rds-mysqlx/execute-bulk-merge.js +45 -0
  156. package/blz-rds-mysqlx/execute-non-query.js +29 -0
  157. package/blz-rds-mysqlx/execute-query.js +39 -0
  158. package/blz-rds-mysqlx/index.js +41 -0
  159. package/blz-rds-mysqlx/stored-procedure.js +179 -0
  160. package/blz-rds-mysqlx/syntaxis.json +105 -0
  161. package/blz-rds-oracle/index.js +540 -0
  162. package/blz-rds-oracle/syntaxis.json +112 -0
  163. package/blz-rds-postgres/base.js +861 -0
  164. package/blz-rds-postgres/connection-manager.js +225 -0
  165. package/blz-rds-postgres/execute-bulk-insert.js +81 -0
  166. package/blz-rds-postgres/execute-bulk-merge.js +93 -0
  167. package/blz-rds-postgres/execute-non-query.js +23 -0
  168. package/blz-rds-postgres/execute-query.js +37 -0
  169. package/blz-rds-postgres/index.js +41 -0
  170. package/blz-rds-postgres/result-set.js +51 -0
  171. package/blz-rds-postgres/stored-procedure.js +116 -0
  172. package/blz-rds-postgres/syntaxis.json +114 -0
  173. package/blz-redis/index.js +217 -0
  174. package/blz-redis/lib/redisCache.js +265 -0
  175. package/blz-regex/index.js +25 -0
  176. package/blz-security/.eslintrc.js +15 -0
  177. package/blz-security/__test__/AuthorizationKpn.yaml +1043 -0
  178. package/blz-security/__test__/FinancingSetting.yaml +177 -0
  179. package/blz-security/__test__/KpnConfigPortal.yaml +330 -0
  180. package/blz-security/__test__/OrderManagement.yaml +5190 -0
  181. package/blz-security/__test__/Security.yaml +128 -0
  182. package/blz-security/__test__/autorization.test.js +105 -0
  183. package/blz-security/__test__/orderManagement.test.js +26 -0
  184. package/blz-security/__test__/secureUrl.test.js +79 -0
  185. package/blz-security/__test__/solveMergeRule.test.js +109 -0
  186. package/blz-security/__test__/sqlInjectionGuard.test.js +203 -0
  187. package/blz-security/__test__/xssGuard.test.js +204 -0
  188. package/blz-security/authorizationService.js +536 -0
  189. package/blz-security/config/global.js +8 -0
  190. package/blz-security/config/welcome +8 -0
  191. package/blz-security/doc/README.md +75 -0
  192. package/blz-security/filescanner/index.js +46 -0
  193. package/blz-security/helpers/consts.js +229 -0
  194. package/blz-security/helpers/utils.js +267 -0
  195. package/blz-security/implementations/cache.js +90 -0
  196. package/blz-security/implementations/oidc.js +404 -0
  197. package/blz-security/implementations/pkceCacheStore.js +23 -0
  198. package/blz-security/implementations/saml.js +10 -0
  199. package/blz-security/implementations/uma.js +63 -0
  200. package/blz-security/implementations/webAuthn.js +9 -0
  201. package/blz-security/implementations/wstg.js +72 -0
  202. package/blz-security/index.js +77 -0
  203. package/blz-security/lab/index.js +27 -0
  204. package/blz-security/middleware/HapiServerAzureAd.js +641 -0
  205. package/blz-security/middleware/HapiServerKeycloak.js +840 -0
  206. package/blz-security/middleware/HapiServerSimToken.js +247 -0
  207. package/blz-security/middleware/hapi.js +515 -0
  208. package/blz-security/middleware/hapiServer.js +974 -0
  209. package/blz-security/navigationMemoryRepository.js +15 -0
  210. package/blz-security/navigationMongoDbRepository.js +73 -0
  211. package/blz-security/secureUrlService.js +47 -0
  212. package/blz-security/securityService.js +409 -0
  213. package/blz-security/sqlInjectionGuard.js +162 -0
  214. package/blz-security/templates/forbidden.html +0 -0
  215. package/blz-security/templates/session-iframe-azure-ad.html +7 -0
  216. package/blz-security/templates/session-iframe.html +73 -0
  217. package/blz-security/templates/unauthorized.html +1 -0
  218. package/blz-security/xssGuard.js +87 -0
  219. package/blz-strings/index.js +167 -0
  220. package/blz-uuid/index.js +7 -0
  221. package/blz-yaml/index.js +19 -0
  222. package/index.js +84 -0
  223. package/package.json +97 -0
  224. package/process-managers/index.js +422 -0
@@ -0,0 +1,1043 @@
1
+ permissions:
2
+ - name: config_disable_all
3
+ domain: config
4
+ rules:
5
+ - path: /accounts/**
6
+ enable: false
7
+ - path: /actions/**
8
+ enable: false
9
+ - path: /api/common-business-ext/**
10
+ enable: false
11
+ - path: /api/collections-management-ext/**
12
+ enable: false
13
+ - path: /api/debtor-management-ext/**
14
+ enable: false
15
+ - path: /api/dim-management-ext/**
16
+ enable: false
17
+ - path: /api/dunning-management-ext/**
18
+ enable: false
19
+ - path: /api/ext-communication-manager/**
20
+ enable: false
21
+ - path: /api/ext-scoring/**
22
+ enable: false
23
+ - path: /api/ext-task-management/**
24
+ enable: false
25
+ - path: /api/ledger-account-management-ext/**
26
+ enable: false
27
+ - path: /api/locations-ext/addresses/**
28
+ enable: false
29
+ - path: /api/ms-insight-management/**
30
+ enable: false
31
+ - path: /api/ms-conciliations/**
32
+ enable: false
33
+ - path: /api/ms-entry-proces/**
34
+ enable: false
35
+ - path: /api/ms-financing-setting/**
36
+ enable: false
37
+ - path: /api/ms-watcher/**
38
+ enable: false
39
+ - path: /api/party-management-ext/**
40
+ enable: false
41
+ - path: /api/parties/**
42
+ enable: false
43
+ - path: /api/segmentation-management-ext/**
44
+ enable: false
45
+ - path: /api/service/role
46
+ enable: false
47
+ - path: /api/service/roles
48
+ enable: false
49
+ - path: /api/special-marks-management-ext/**
50
+ enable: false
51
+ - path: /approval-instances/**
52
+ enable: false
53
+ - path: /bkr/**
54
+ enable: false
55
+ - path: /blacklist-home/**
56
+ enable: false
57
+ - path: /bulk-actions/**
58
+ enable: false
59
+ - path: /cb-approval-domain/**
60
+ enable: false
61
+ - path: /cb-approval-reject-reason/**
62
+ enable: false
63
+ - path: /cb-approval-spec/**
64
+ enable: false
65
+ - path: /cb-approval-spec-type/**
66
+ enable: false
67
+ - path: /channels/**
68
+ enable: false
69
+ - path: claims-message
70
+ enable: false
71
+ - path: /colm/**
72
+ enable: false
73
+ - path: /collection-home/**
74
+ enable: false
75
+ - path: /cmp-plc-massive-reassignment-view/**
76
+ enable: false
77
+ - path: /cmp-plc-placed-entity/**
78
+ enable: false
79
+ - path: /cmp-plc-placement-View/**
80
+ enable: false
81
+ - path: /cmp-plc-placement-trace/**
82
+ enable: false
83
+ - path: /cmp-plc-placement-type-former/**
84
+ enable: false
85
+ - path: /cmp-plc-placement-version/**
86
+ enable: false
87
+ - path: /con-aggregated-transactions/**
88
+ enable: false
89
+ - path: /configuration-scorings/**
90
+ enable: false
91
+ - path: /configuration-scorings-variables/**
92
+ enable: false
93
+ - path: /con-criteria-sets/**
94
+ enable: false
95
+ - path: /con-transactions/**
96
+ enable: false
97
+ - path: container-container
98
+ enable: false
99
+ - path: customer-message
100
+ enable: false
101
+ - path: /debtor/**
102
+ enable: false
103
+ - path: /debtor-account-stage/**
104
+ enable: false
105
+ - path: debtor-account-stage
106
+ enable: false
107
+ - path: debtor-stage
108
+ enable: false
109
+ - path: /debtor-stage/**
110
+ enable: false
111
+ - path: /debtors/**
112
+ enable: false
113
+ - path: /dim-messages/**
114
+ enable: false
115
+ - path: /dim-messages-entity/**
116
+ enable: false
117
+ - path: /dispute-settings/**
118
+ enable: false
119
+ - path: /dunning/**
120
+ enable: false
121
+ - path: /entry-process-config/**
122
+ enable: false
123
+ - path: /entry-process-config-old/**
124
+ enable: false
125
+ - path: /ep-config/**
126
+ enable: false
127
+ - path: /ep-manua-historicall-credit/**
128
+ enable: false
129
+ - path: /ep-manua-historicall-debit/**
130
+ enable: false
131
+ - path: /ep-manual-credit/**
132
+ enable: false
133
+ - path: /ep-manual-debit/**
134
+ enable: false
135
+ - path: /ep-manual-selected/**
136
+ enable: false
137
+ - path: /ep-out-manual-credit
138
+ enable: false
139
+ - path: /ep-out-manual-debit/**
140
+ enable: false
141
+ - path: /exemptions/reasons/**
142
+ enable: false
143
+ - path: /exemptions/settings/**
144
+ enable: false
145
+ - path: /fnc/**
146
+ enable: false
147
+ - path: /gender/**
148
+ enable: false
149
+ - path: /holidays/**
150
+ enable: false
151
+ - path: /identification-type/**
152
+ enable: false
153
+ - path: /industry-type/**
154
+ enable: false
155
+ - path: /lam-creditors/**
156
+ enable: false
157
+ - path: /ledger/**
158
+ enable: false
159
+ - path: /operations/**
160
+ enable: false
161
+ - path: /organization-types/**
162
+ enable: false
163
+ - path: /paymentcommit/**
164
+ enable: false
165
+ - path: /plc-place-entity/**
166
+ enable: false
167
+ - path: /plc-placement-config/**
168
+ enable: false
169
+ - path: /plc-placement-types/**
170
+ enable: false
171
+ - path: /pm-contact-medium-types/**
172
+ enable: false
173
+ - path: /pm-genders/**
174
+ enable: false
175
+ - path: /pm-identification-types/**
176
+ enable: false
177
+ - path: /predefined-filters/**
178
+ enable: false
179
+ - path: /roles/**
180
+ enable: false
181
+ - path: /segmentation/**
182
+ enable: false
183
+ - path: /sim-scenarios/**
184
+ enable: false
185
+ - path: /sim-simulations/**
186
+ enable: false
187
+ - path: /sim-strategies/**
188
+ enable: false
189
+ - path: /special-marks/**
190
+ enable: false
191
+ - path: /template-decisions/**
192
+ enable: false
193
+ - path: /templates/**
194
+ enable: false
195
+ - path: /tsch-executions/**
196
+ enable: false
197
+ - path: /tsch-http-operations/**
198
+ enable: false
199
+ - path: /tsch-tasks/**
200
+ enable: false
201
+ - path: /watcher-types/**
202
+ enable: false
203
+ - path: /watchers/**
204
+ enable: false
205
+ - path: container-container
206
+ enable: false
207
+ - path: sdd-container
208
+ enable: false
209
+ - path: sct-container
210
+ enable: false
211
+ - path: camt053-container
212
+ enable: false
213
+ - path: transaction-type-container
214
+ enable: false
215
+ - path: autopay-parameters
216
+ enable: false
217
+ - path: refund-parameters
218
+ enable: false
219
+ - path: invoice-container
220
+ enable: false
221
+ - path: placement-collector
222
+ enable: false
223
+ - path: placement-debtor
224
+ enable: false
225
+ - path: placement-types
226
+ enable: false
227
+ - path: typeFormer
228
+ enable: false
229
+ - name: config_home
230
+ domain: config
231
+ rules:
232
+ - path: /collection-home
233
+ - name: config_debtor_management
234
+ domain: config
235
+ rules:
236
+ - path: /api/debtor-management-ext/**
237
+ - path: debtor-stage
238
+ - path: debtor-account-stage
239
+ - path: /debtor/**
240
+ - path: /debtor-account-stage/**
241
+ - path: /debtor-stage/**
242
+ - path: /debtors/**
243
+ - name: config_ledger_management
244
+ domain: config
245
+ rules:
246
+ - path: /api/ledger-account-management-ext/**
247
+ - path: /api/ledger/**
248
+ - path: /api/accounts/**
249
+ - path: /ledger/**
250
+ - path: /accounts/**
251
+ - path: /lam/**
252
+ - path: /lam-creditors/**
253
+ - name: config_party_management
254
+ domain: config
255
+ rules:
256
+ - path: /api/party-management-ext/**
257
+ - path: /identification-type/**
258
+ - path: /contact-medium-type/**
259
+ - path: /organization-types/**
260
+ - path: /ledger/statement-cycle/**
261
+ - path: /industry-type/**
262
+ - path: /gender/**
263
+ - path: /api/parties/**
264
+ - path: /pm-contact-medium-types/**
265
+ - path: /pm-genders/**
266
+ - path: /pm-identification-types/**
267
+ - name: config_payment_methods
268
+ domain: config
269
+ rules:
270
+ - path: /debtor/banks/**
271
+ - path: /debtor/payment-method/**
272
+ - path: /catalogs/paymentmethod/**
273
+ - path: /api/debtor-management-ext/catalogs/paymentmethod/**
274
+ - path: /api/debtor-management-ext/catalogs/banks/**
275
+ - name: config_import_messages
276
+ domain: config
277
+ rules:
278
+ - path: claims-message
279
+ - path: customer-message
280
+ - path: /dim-messages/**
281
+ - path: /dim-messages-entity/**
282
+ - path: /dim-messages/history/**
283
+ - path: /catalogs/paymentmethod/**
284
+ - path: /api/dim-management-ext/**
285
+ - path: /api/ms-conciliations/conciliations-dimensions/**
286
+ - name: config_collections_management
287
+ domain: config
288
+ rules:
289
+ - path: container-container
290
+ - path: sdd-container
291
+ - path: sct-container
292
+ - path: camt053-container
293
+ - path: transaction-type-container
294
+ - path: autopay-parameters
295
+ - path: refund-parameters
296
+ - path: invoice-container
297
+ - path: /operations/executions/**
298
+ - path: /colm/**
299
+ - path: /api/collections-management-ext/**
300
+ - name: config_scoring
301
+ domain: config
302
+ rules:
303
+ - path: /configuration-scorings/**
304
+ - path: /configuration-scorings-variables/**
305
+ - path: /debtors/accountScoring/**
306
+ - path: /configuration-scorings/**
307
+ - path: /api/ext-scoring/configuration/**
308
+ - name: config_segmentation
309
+ domain: config
310
+ rules:
311
+ - path: /segmentation/types/**
312
+ - path: /configuration-scorings-variables/**
313
+ - path: /debtors/accountScoring/**
314
+ - path: /segmentation/segments/**
315
+ - path: /debtors/**
316
+ - path: /debtors/accountSegment/**
317
+ - path: /segmentation/**
318
+ - path: /api/segmentation-management-ext/segmentation/**
319
+ - name: config_watchers
320
+ domain: config
321
+ rules:
322
+ - path: /predefined-filters/**
323
+ - path: /actions/**
324
+ - path: /watcher-types/**
325
+ - path: /watchers/**
326
+ - path: /api/ms-watcher/**
327
+ - name: config_special_marks
328
+ domain: config
329
+ rules:
330
+ - path: /api/special-marks-management-ext/**
331
+ - path: /special-marks/**
332
+ - name: config_payment_agreement
333
+ domain: config
334
+ rules:
335
+ - path: /fnc/**
336
+ - path: /paymentcommit/**
337
+ - path: /api/dunning-management-ext/processes/paymentCommitments/**
338
+ - path: /api/ms-financing-setting/**
339
+ - name: config_placements
340
+ domain: config
341
+ rules:
342
+ - path: placement-collector
343
+ - path: placement-debtor
344
+ - path: placement-types
345
+ - path: typeFormer
346
+ - path: /plc-place-entity/**
347
+ - path: /plc-placement-types/**
348
+ - path: /plc-placement-config/**
349
+ - path: /cmp-plc-placement-View/**
350
+ - path: /cmp-plc-placement-trace/**
351
+ - path: /cmp-plc-placed-entity/**
352
+ - path: /cmp-plc-placement-version/**
353
+ - path: /cmp-plc-placement-type-former/**
354
+ - path: /cmp-plc-massive-reassignment-view/**
355
+ - path: /api/ms-placements/**
356
+ - name: config_concilliations
357
+ domain: config
358
+ rules:
359
+ - path: /con-aggregated-transactions/**
360
+ - path: /api/dunning-management-ext/**
361
+ - path: /dunning/**
362
+ - name: config_communication_management
363
+ domain: config
364
+ rules:
365
+ - path: /channels/**
366
+ - path: /templates/**
367
+ - path: /template-decisions/**
368
+ - path: /api/ext-communication-manager/**
369
+ - name: config_simulation
370
+ domain: config
371
+ rules:
372
+ - path: /sim-scenarios/**
373
+ - path: /special-marks/provider/**
374
+ - path: /sim-simulations/**
375
+ - path: /sim-strategies/**
376
+ - path: /api/ms-simulation/**
377
+ - name: config_roles
378
+ domain: config
379
+ rules:
380
+ - path: /roles/**
381
+ - path: /api/service/roles/**
382
+ - path: /api/service/role/**
383
+ - name: config_bulk_management
384
+ domain: config
385
+ rules:
386
+ - path: /bulk-actions/**
387
+ - name: config_inbox
388
+ domain: config
389
+ rules:
390
+ - path: /inbox/config
391
+ - name: config_task_executor
392
+ domain: config
393
+ rules:
394
+ - path: /tsch-tasks/**
395
+ - path: /tsch-http-operations/**
396
+ - path: /tsch-executions/**
397
+ - path: /api/ext-task-scheduler/**
398
+ - name: config_entry_process_manual_allocation
399
+ domain: config
400
+ rules:
401
+ - path: /ep-manua-historicall-credit/**
402
+ - path: /ep-manua-historicall-credit/**
403
+ - path: /ep-manua-historicall-credit/**
404
+ - path: /ep-manua-historicall-debit/**
405
+ - path: /ep-manual-credit/**
406
+ - path: /ep-manual-debit/**
407
+ - path: /ep-manual-selected/**
408
+ - path: /ep-out-manual-credit/**
409
+ - path: /ep-out-manual-debit/**
410
+ - path: /api/ms-entry-process/unmatched/**
411
+ - path: /api/ms-entry-process/unmatched-historial/**
412
+ - name: config_entry_process_configuration
413
+ domain: config
414
+ rules:
415
+ - path: /entry-process-config/**
416
+ - path: /entry-process-config-old/**
417
+ - path: /ep-config/**
418
+ - name: config_approval
419
+ domain: config
420
+ rules:
421
+ - path: /approval-instances/**
422
+ - path: /cb-approval-domain/**
423
+ - path: /cb-approval-reject-reason/**
424
+ - path: /cb-approval-spec/**
425
+ - path: /cb-approval-spec-type/**
426
+ - name: config_administration
427
+ domain: config
428
+ rules:
429
+ - path: /api/**
430
+ - path: /bkr/**
431
+ - path: /blacklist-home/**
432
+ - path: /bulk-actions/**
433
+ - path: /con-criteria-sets/**
434
+ - path: /con-transactions/**
435
+ - path: /dispute-settings/**
436
+ - path: /exemptions/**
437
+ - path: /holidays/**
438
+ ## Agent Portal ############################################################################################################
439
+ - name: agent_disable_all
440
+ rules:
441
+ # Main Menu
442
+ - path: /collection-home
443
+ enable: false
444
+ - path: /payment-responsibles
445
+ enable: false
446
+ - path: /taskManagement/**
447
+ enable: false
448
+ - path: consumer-debtor
449
+ enable: false
450
+ - path: organization-debtor
451
+ enable: false
452
+ - path: /ep-manual-credit/**
453
+ enable: false
454
+ - path: /ep-out-manual-credit
455
+ enable: false
456
+ - path: /ep-manua-historicall-credit
457
+ enable: false
458
+ - path: /ep-manual-debit
459
+ enable: false
460
+ - path: /ep-manual-debit/**
461
+ enable: false
462
+ - path: /ep-out-manual-debit
463
+ enable: false
464
+ - path: /ep-manua-historicall-debit
465
+ enable: false
466
+
467
+ # region Consumer Costumer Widgets Rules
468
+ # Filters (Alphabetic Order List, this rule will be disabled in all roles always)
469
+ - path: /debtors/**
470
+ actions: filters_AlphabeticOrderList
471
+ enable: false
472
+
473
+ # Body - 360 Cards
474
+ - path: /debtors/**
475
+ actions: cc_depositAccountCard
476
+ enable: false
477
+
478
+ - path: /debtors/**
479
+ actions: cc_creditDisputeCard
480
+ enable: false
481
+
482
+ - path: /debtors/**
483
+ actions: cc_settlementDiscountCard
484
+ enable: false
485
+
486
+ # Dunning screen
487
+ - path: /debtors/**
488
+ actions: cc_dunningSuspendAccount
489
+ enable: false
490
+
491
+ - path: /debtors/**
492
+ actions: cc_dunningUpdatePercentage
493
+ enable: false
494
+
495
+ - path: /debtors/**
496
+ actions: cc_dunningResendInvoice
497
+ enable: false
498
+
499
+ - path: /debtors/**
500
+ actions: cc_dunningSendReminder
501
+ enable: false
502
+
503
+ - path: /debtors/**
504
+ actions: cc_dunningResetAging
505
+ enable: false
506
+
507
+ - path: /debtors/**
508
+ actions: cc_dunningTerminationOfServices
509
+ enable: false
510
+
511
+ - path: /debtors/**
512
+ actions: cc_dunningChangefPaymentResponsible
513
+ enable: false
514
+
515
+ - path: /debtors/**
516
+ actions: cc_dunningSecurityDeposit
517
+ enable: false
518
+
519
+ - path: /debtors/**
520
+ actions: cc_dunningChangePaymentMethod
521
+ enable: false
522
+
523
+ - path: /debtors/**
524
+ actions: cc_dunningCaptureCreditDispute
525
+ enable: false
526
+
527
+ - path: /debtors/**
528
+ actions: cc_dunningCaptureChargeDispute
529
+ enable: false
530
+
531
+ - path: /debtors/**
532
+ actions: cc_dunningReverseWriteOff
533
+ enable: false
534
+
535
+ - path: /debtors/**
536
+ actions: cc_dunningChangePlacementStatus
537
+ enable: false
538
+
539
+ - path: /debtors/**
540
+ actions: cc_dunningAssignmentPlacement
541
+ enable: false
542
+
543
+ - path: /debtors/**
544
+ actions: cc_dunningResendPaymentEmail
545
+ enable: false
546
+
547
+ # Billing account > Statements tab
548
+ - path: /debtors/**
549
+ actions: cc_billingAcountStatemantDownload
550
+ enable: false
551
+
552
+ - path: /debtors/**
553
+ actions: cc_billingAcountStatemantResend
554
+ enable: false
555
+
556
+ # *** Generic Rule to apply in multiple widgets where a role disables all ***
557
+ - path: /debtors/**
558
+ actions: cc_dunningDisabled
559
+ enable: false
560
+
561
+ # Financing Account Bkr Send Message
562
+ - path: /debtors/**
563
+ actions: cc_bkrSendMessage
564
+ enable: false
565
+ # endregion
566
+
567
+ # region Business Customer
568
+
569
+ # Body - 360 Cards
570
+ - path: /debtors/**
571
+ actions: bc_depositAccountCard
572
+ enable: false
573
+
574
+ - path: /debtors/**
575
+ actions: bc_creditDisputeCard
576
+ enable: false
577
+
578
+ - path: /debtors/**
579
+ actions: bc_settlementDiscountCard
580
+ enable: false
581
+
582
+ # Dunning screen
583
+ - path: /debtors/**
584
+ actions: bc_dunningSuspendAccount
585
+ enable: false
586
+
587
+ - path: /debtors/**
588
+ actions: bc_dunningUpdatePercentage
589
+ enable: false
590
+
591
+ - path: /debtors/**
592
+ actions: bc_dunningResendInvoice
593
+ enable: false
594
+
595
+ - path: /debtors/**
596
+ actions: bc_dunningSendReminder
597
+ enable: false
598
+
599
+ - path: /debtors/**
600
+ actions: bc_dunningResetAging
601
+ enable: false
602
+
603
+ - path: /debtors/**
604
+ actions: bc_dunningTerminationOfServices
605
+ enable: false
606
+
607
+ - path: /debtors/**
608
+ actions: bc_dunningChangefPaymentResponsible
609
+ enable: false
610
+
611
+ - path: /debtors/**
612
+ actions: bc_dunningSecurityDeposit
613
+ enable: false
614
+
615
+ - path: /debtors/**
616
+ actions: bc_dunningChangePaymentMethod
617
+ enable: false
618
+
619
+ - path: /debtors/**
620
+ actions: bc_dunningCaptureCreditDispute
621
+ enable: false
622
+
623
+ - path: /debtors/**
624
+ actions: bc_dunningCaptureChargeDispute
625
+ enable: false
626
+
627
+ - path: /debtors/**
628
+ actions: bc_dunningReverseWriteOff
629
+ enable: false
630
+
631
+ - path: /debtors/**
632
+ actions: bc_dunningChangePlacementStatus
633
+ enable: false
634
+
635
+ - path: /debtors/**
636
+ actions: bc_dunningAssignmentPlacement
637
+ enable: false
638
+
639
+ - path: /debtors/**
640
+ actions: bc_dunningResendPaymentEmail
641
+ enable: false
642
+
643
+ - path: /debtors/**
644
+ actions: profile_viewOnly
645
+ enable: false
646
+
647
+ # Billing account > Statements tab
648
+ - path: /debtors/**
649
+ actions: bc_billingAcountStatemantDownload
650
+ enable: false
651
+
652
+ - path: /debtors/**
653
+ actions: bc_billingAcountStatemantResend
654
+ enable: false
655
+
656
+ # Financing Account Bkr Send Message
657
+ - path: /debtors/**
658
+ actions: bc_bkrSendMessage
659
+ enable: false
660
+ # endregion
661
+
662
+ # region Block access to any backend api that comes in the RestMappings call.
663
+ - path: /api/ms-entry-process/**
664
+ enable: false
665
+ - path: /api/collections-management-ext/**
666
+ enable: false
667
+ - path: /api/debtor-management-ext/**
668
+ enable: false
669
+ - path: /api/ledger-account-management-ext/**
670
+ enable: false
671
+ - path: /api/ext-task-management/**
672
+ enable: false
673
+ - path: /api/ms-financing-management/**
674
+ enable: false
675
+ - path: /api/ms-insight-management/**
676
+ enable: false
677
+ - path: /api/ms-financing-setting-ext/**
678
+ enable: false
679
+ - path: /api/dunning-management-ext/**
680
+ enable: false
681
+ - path: /api/special-marks-management-ext/**
682
+ enable: false
683
+ - path: /api/dim-management-ext/**
684
+ enable: false
685
+ - path: /api/common-business-ext/**
686
+ enable: false
687
+ - path: /api/communications-management-ext/**
688
+ enable: false
689
+ - path: /api/party-management-ext/**
690
+ enable: false
691
+ - path: /api/locations-ext/**
692
+ enable: false
693
+ - path: /api/ms-operation-executor/**
694
+ enable: false
695
+ - path: /api/ms-operation-scheduler/**
696
+ enable: false
697
+ - path: /api/ms-placement/**
698
+ enable: false
699
+ - path: /api/entity-logs-management-ms/**
700
+ enable: false
701
+ - path: /api/ext-approval-management/**
702
+ enable: false
703
+ - path: /api/kpn-integrations/**
704
+ enable: false
705
+ - path: /api/bkr-ext/**
706
+ enable: false
707
+ - path: /api/document-management-ext/**
708
+ enable: false
709
+ - path: /api/ms-omnibox-ext/**
710
+ enable: false
711
+ # endregion
712
+ domain: agent
713
+ # Home Rules
714
+ - name: agent_home
715
+ rules:
716
+ - path: /collection-home
717
+ domain: agent
718
+ # Consumer Costumer Rules
719
+ - name: agent_consumer_costumer
720
+ rules:
721
+ - path: consumer-debtor
722
+ - path: /debtors
723
+ - path: /debtor/**
724
+ domain: agent
725
+ # 360 View
726
+ - name: agent_consumer_costumer_360View_settlementDiscountCard
727
+ rules:
728
+ - path: /debtors/**
729
+ actions: cc_settlementDiscountCard
730
+ enable: true
731
+ domain: agent
732
+ # Dunning screen
733
+ - name: agent_consumer_costumer_dunning_SuspendAccountCard
734
+ rules:
735
+ - path: /debtors/**
736
+ actions: cc_dunningSuspendAccount
737
+ enable: true
738
+ domain: agent
739
+ - name: agent_consumer_costumer_dunning_UpdatePercentageCard
740
+ rules:
741
+ - path: /debtors/**
742
+ actions: cc_dunningUpdatePercentage
743
+ enable: true
744
+ domain: agent
745
+ - name: agent_consumer_costumer_dunning_ResetAgingCard
746
+ rules:
747
+ - path: /debtors/**
748
+ actions: cc_dunningResetAging
749
+ enable: true
750
+ domain: agent
751
+ - name: agent_consumer_costumer_dunning_TerminationOfServicesCard
752
+ rules:
753
+ - path: /debtors/**
754
+ actions: cc_dunningTerminationOfServices
755
+ enable: true
756
+ domain: agent
757
+ - name: agent_consumer_costumer_dunning_ChangePaymentResponsibleCard
758
+ rules:
759
+ - path: /debtors/**
760
+ actions: cc_dunningChangePaymentResponsible
761
+ enable: true
762
+ domain: agent
763
+ - name: agent_consumer_costumer_dunning_CaptureChargeDisputeCard
764
+ rules:
765
+ - path: /debtors/**
766
+ actions: cc_dunningCaptureChargeDispute
767
+ enable: true
768
+ domain: agent
769
+ - name: agent_consumer_costumer_dunning_ReverseWriteOffCard
770
+ rules:
771
+ - path: /debtors/**
772
+ actions: cc_dunningReverseWriteOff
773
+ enable: true
774
+ domain: agent
775
+ - name: agent_consumer_costumer_dunning_ChangePlacementStatusCard
776
+ rules:
777
+ - path: /debtors/**
778
+ actions: cc_dunningChangePlacementStatus
779
+ enable: true
780
+ domain: agent
781
+ - name: agent_consumer_costumer_dunning_AssignmentPlacementCard
782
+ rules:
783
+ - path: /debtors/**
784
+ actions: cc_dunningAssignmentPlacement
785
+ enable: true
786
+ domain: agent
787
+ # Financing Account Bkr Send Message
788
+ - name: agent_costumer_financing_accounts_bkr_send_message
789
+ rules:
790
+ - path: /debtors/**
791
+ actions: cc_bkrSendMessage
792
+ enable: true
793
+ domain: agent
794
+
795
+ # Business Customer Rules
796
+ - name: agent_business_costumer
797
+ rules:
798
+ - path: organization-debtor
799
+ - path: /debtors
800
+ - path: /debtor/**
801
+ domain: agent
802
+
803
+ # 360 View
804
+ - name: agent_business_costumer_360View_settlementDiscountCard
805
+ rules:
806
+ - path: /debtors/**
807
+ actions: bc_settlementDiscountCard
808
+ enable: true
809
+ domain: agent
810
+
811
+ # Dunning screen
812
+ - name: agent_business_costumer_dunning_SuspendAccountCard
813
+ rules:
814
+ - path: /debtors/**
815
+ actions: bc_dunningSuspendAccount
816
+ enable: true
817
+ domain: agent
818
+ - name: agent_business_costumer_dunning_UpdatePercentageCard
819
+ rules:
820
+ - path: /debtors/**
821
+ actions: bc_dunningUpdatePercentage
822
+ enable: true
823
+ domain: agent
824
+ - name: agent_business_costumer_dunning_ResetAgingCard
825
+ rules:
826
+ - path: /debtors/**
827
+ actions: bc_dunningResetAging
828
+ enable: true
829
+ domain: agent
830
+ - name: agent_business_costumer_dunning_TerminationOfServicesCard
831
+ rules:
832
+ - path: /debtors/**
833
+ actions: bc_dunningTerminationOfServices
834
+ enable: true
835
+ domain: agent
836
+ - name: agent_business_costumer_dunning_ChangePaymentResponsibleCard
837
+ rules:
838
+ - path: /debtors/**
839
+ actions: bc_dunningChangePaymentResponsible
840
+ enable: true
841
+ domain: agent
842
+ - name: agent_business_costumer_dunning_CaptureChargeDisputeCard
843
+ rules:
844
+ - path: /debtors/**
845
+ actions: bc_dunningCaptureChargeDispute
846
+ enable: true
847
+ domain: agent
848
+ - name: agent_business_costumer_dunning_ReverseWriteOffCard
849
+ rules:
850
+ - path: /debtors/**
851
+ actions: bc_dunningReverseWriteOff
852
+ enable: true
853
+ domain: agent
854
+ - name: agent_business_costumer_dunning_ChangePlacementStatusCard
855
+ rules:
856
+ - path: /debtors/**
857
+ actions: bc_dunningChangePlacementStatus
858
+ enable: true
859
+ domain: agent
860
+ - name: agent_business_costumer_dunning_AssignmentPlacementCard
861
+ rules:
862
+ - path: /debtors/**
863
+ actions: bc_dunningAssignmentPlacement
864
+ enable: true
865
+ domain: agent
866
+ - name: agent_profile_viewOnly_shows_menu
867
+ rules:
868
+ - path: /debtors/**
869
+ actions: profile_viewOnly
870
+ enable: true
871
+ domain: agent
872
+ # Financing Account Bkr Send Message
873
+ - name: agent_business_financing_accounts_bkr_send_message
874
+ rules:
875
+ - path: /debtors/**
876
+ actions: bc_bkrSendMessage
877
+ enable: true
878
+ domain: agent
879
+ # Payment Responsible Rules
880
+ - name: agent_payment_responsibles
881
+ rules:
882
+ - path: /payment-responsibles
883
+ domain: agent
884
+ # Task Management Rules
885
+ - name: agent_task_management
886
+ rules:
887
+ - path: /taskManagement/**
888
+ domain: agent
889
+ # Entry Process Rules
890
+ - name: agent_entry_process
891
+ rules:
892
+ - path: /ep-manual-credit/**
893
+ - path: /ep-out-manual-credit
894
+ - path: /ep-manua-historicall-credit
895
+ - path: /ep-manual-debit
896
+ - path: /ep-manual-debit/**
897
+ - path: /ep-out-manual-debit
898
+ - path: /ep-manua-historicall-debit
899
+ domain: agent
900
+ - name: agent_portal_apis
901
+ rules:
902
+ - path: /api/ms-entry-process/**
903
+ - path: /api/collections-management-ext/**
904
+ - path: /api/debtor-management-ext/**
905
+ - path: /api/ledger-account-management-ext/**
906
+ - path: /api/ext-task-management/**
907
+ - path: /api/ms-financing-management/**
908
+ - path: /api/ms-omnibox-ext/**
909
+ - path: /api/ms-insight-management/**
910
+ - path: /api/ms-financing-setting-ext/**
911
+ - path: /api/dunning-management-ext/**
912
+ - path: /api/special-marks-management-ext/**
913
+ - path: /api/dim-management-ext/**
914
+ - path: /api/common-business-ext/**
915
+ - path: /api/communications-management-ext/**
916
+ - path: /api/party-management-ext/**
917
+ - path: /api/locations-ext/**
918
+ - path: /api/ms-operation-executor/**
919
+ - path: /api/ms-operation-scheduler/**
920
+ - path: /api/ms-placement/**
921
+ - path: /api/entity-logs-management-ms/**
922
+ - path: /api/ext-approval-management/**
923
+ - path: /api/kpn-integrations/**
924
+ - path: /api/bkr-ext/**
925
+ - path: /api/document-management-ext/**
926
+ domain: agent
927
+
928
+ - name: agent_viewonly_portal_apis
929
+ rules:
930
+ - path: /api/debtor-management-ext/**
931
+ actions: GET
932
+ - path: /api/ledger-account-management-ext/**
933
+ actions: GET
934
+ - path: /api/ms-financing-management/**
935
+ actions: GET
936
+ - path: /api/ms-omnibox-ext/**
937
+ actions: GET
938
+ - path: /api/ms-insight-management/**
939
+ actions: GET
940
+ - path: /api/party-management-ext/**
941
+ actions: GET
942
+ - path: /api/locations-ext/**
943
+ actions: GET
944
+ - path: /api/entity-logs-management-ms/**
945
+ actions: GET
946
+ - path: /api/document-management-ext/**
947
+ actions: GET
948
+ domain: agent
949
+
950
+ roles:
951
+ - name: ConfigBase
952
+ applyToAll: true
953
+ permissions:
954
+ - config_disable_all
955
+ - name: PCS.BackOffice
956
+ permissions:
957
+ - config_home
958
+ - config_entry_process_manual_allocation
959
+ - name: PCS.Admin
960
+ extends:
961
+ - PCS.BackOffice
962
+ permissions:
963
+ - config_debtor_management
964
+ - config_ledger_management
965
+ - config_party_management
966
+ - config_payment_methods
967
+ - config_import_messages
968
+ - config_collections_management
969
+ - config_scoring
970
+ - config_segmentation
971
+ - config_watchers
972
+ - config_special_marks
973
+ - config_payment_agreement
974
+ - config_placements
975
+ - config_concilliations
976
+ - config_communication_management
977
+ - config_simulation
978
+ - config_roles
979
+ - config_bulk_management
980
+ - config_task_executor
981
+ - config_entry_process_configuration
982
+ - config_approval
983
+ - config_administration
984
+ - config_inbox
985
+ # *** Agent Portal ***
986
+ - name: AgentBase
987
+ applyToAll: true
988
+ permissions:
989
+ - agent_disable_all
990
+ - name: Collections.ViewOnly
991
+ permissions:
992
+ - agent_home
993
+ - agent_consumer_costumer
994
+ - agent_business_costumer
995
+ - agent_viewonly_portal_apis
996
+ - agent_profile_viewOnly_shows_menu
997
+ - name: PCS.Agent
998
+ extends:
999
+ - Collections.ViewOnly
1000
+ permissions:
1001
+ - agent_task_management
1002
+ - agent_entry_process
1003
+ - agent_portal_apis
1004
+ - agent_business_costumer_dunning_AssignmentPlacementCard
1005
+ - name: PCS.Supervisor
1006
+ extends:
1007
+ - PCS.Agent
1008
+ permissions:
1009
+ - agent_payment_responsibles
1010
+ - agent_consumer_costumer_360View_settlementDiscountCard
1011
+ - agent_consumer_costumer_dunning_SuspendAccountCard
1012
+ - agent_consumer_costumer_dunning_UpdatePercentageCard
1013
+ - agent_consumer_costumer_dunning_ResetAgingCard
1014
+ - agent_consumer_costumer_dunning_TerminationOfServicesCard
1015
+ - agent_consumer_costumer_dunning_ChangePaymentResponsibleCard
1016
+ - agent_consumer_costumer_dunning_CaptureChargeDisputeCard
1017
+ - agent_consumer_costumer_dunning_ReverseWriteOffCard
1018
+ - agent_consumer_costumer_dunning_ChangePlacementStatusCard
1019
+ - agent_consumer_costumer_dunning_AssignmentPlacementCard
1020
+ - agent_business_costumer_360View_settlementDiscountCard
1021
+ - agent_business_costumer_dunning_SuspendAccountCard
1022
+ - agent_business_costumer_dunning_UpdatePercentageCard
1023
+ - agent_business_costumer_dunning_ResetAgingCard
1024
+ - agent_business_costumer_dunning_TerminationOfServicesCard
1025
+ - agent_business_costumer_dunning_ChangePaymentResponsibleCard
1026
+ - agent_business_costumer_dunning_CaptureChargeDisputeCard
1027
+ - agent_business_costumer_dunning_ReverseWriteOffCard
1028
+ - agent_business_costumer_dunning_ChangePlacementStatusCard
1029
+ - agent_business_costumer_dunning_AssignmentPlacementCard
1030
+ - name: Configuration.Admin
1031
+ extends:
1032
+ - PCS.Admin
1033
+ - PCS.Supervisor
1034
+ permissions:
1035
+ - agent_costumer_financing_accounts_bkr_send_message
1036
+ - agent_business_financing_accounts_bkr_send_message
1037
+
1038
+ - name: Collections.FinanceBV
1039
+ extends:
1040
+ - PCS.Agent
1041
+ permissions:
1042
+ - agent_payment_responsibles
1043
+