@kypacs/sdk 1.0.0 → 1.1.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.
package/README.md CHANGED
@@ -158,7 +158,8 @@ for await (const verification of client.verifications.listAll({ status: 'APPROVE
158
158
  console.log(verification.id);
159
159
  }
160
160
 
161
- // Also available on screenings, cases, and businesses:
161
+ // Also available on screenings, cases, businesses, transactions, transactionMonitoring,
162
+ // sar, and monitoring.listAllAlerts / monitoring.listAllExpiringDocuments:
162
163
  for await (const screening of client.screenings.listAll()) {
163
164
  console.log(screening.id);
164
165
  }
@@ -278,6 +279,67 @@ client.billing.createCheckoutSession(data) // Start a checkout flow
278
279
  client.billing.createPortalSession() // Open the billing portal
279
280
  ```
280
281
 
282
+ ### Transactions (AML transaction monitoring)
283
+
284
+ ```typescript
285
+ client.transactions.ingestBatch(data) // Submit a batch of transactions for monitoring
286
+ client.transactions.getBatchStatus(batchId) // Poll batch processing status
287
+ client.transactions.list(params?) // List transactions (paginated)
288
+ client.transactions.get(id) // Get a transaction with its alerts
289
+ client.transactions.listAll(params?) // Auto-paginate all results
290
+ ```
291
+
292
+ ### Transaction-Monitoring Alerts
293
+
294
+ ```typescript
295
+ client.transactionMonitoring.list(params?) // List alerts (paginated)
296
+ client.transactionMonitoring.get(id) // Get alert detail
297
+ client.transactionMonitoring.updateStatus(id, data) // Transition (INVESTIGATING / CLOSED_FALSE_POSITIVE / ESCALATED_TO_SAR)
298
+ client.transactionMonitoring.listAll(params?) // Auto-paginate all results
299
+ ```
300
+
301
+ ### Ongoing Monitoring (re-screening & document expiry)
302
+
303
+ ```typescript
304
+ client.monitoring.getStatus() // Re-screening config + aggregate counts
305
+ client.monitoring.triggerRescreening() // Manually enqueue a re-screening run
306
+ client.monitoring.listExpiringDocuments(params?) // Documents approaching expiry (paginated)
307
+ client.monitoring.listAlerts(params?) // Monitoring alerts (paginated)
308
+ client.monitoring.acknowledgeAlert(id) // Acknowledge a monitoring alert
309
+ client.monitoring.listAllAlerts(params?) // Auto-paginate alerts
310
+ client.monitoring.listAllExpiringDocuments(params?) // Auto-paginate expiring documents
311
+ ```
312
+
313
+ ### SAR (Suspicious Activity Reports)
314
+
315
+ ```typescript
316
+ client.sar.create(data) // Create a draft SAR from a case
317
+ client.sar.list(params?) // List SARs (paginated)
318
+ client.sar.get(id) // Get a SAR
319
+ client.sar.updateNarrative(id, data) // Update narrative (DRAFT / REJECTED only)
320
+ client.sar.submit(id) // Finalise — generates goAML XML + PDF exports
321
+ client.sar.getDownload(id, 'xml' | 'pdf') // Pre-signed download URL for the submitted export
322
+ client.sar.preview(id, 'xml' | 'pdf') // Pre-signed preview URL (no state change)
323
+ client.sar.updateSubmissionRef(id, data) // Record/amend the FIU submission reference
324
+ client.sar.acknowledge(id, data?) // Mark as ACKNOWLEDGED by the FIU
325
+ client.sar.reject(id, data?) // Record an FIU rejection (re-editable)
326
+ client.sar.listAll(params?) // Auto-paginate all results
327
+ ```
328
+
329
+ ### Compliance Rules & Verification Sequences
330
+
331
+ ```typescript
332
+ client.rules.get(jurisdiction?) // Effective rules (defaults + overrides)
333
+ client.rules.update(data) // Patch the tenant compliance-rules config
334
+ client.rules.listJurisdictions() // Supported jurisdictions + EDD triggers
335
+ client.rules.getCountryRisk() // Country risk-rating table
336
+ client.rules.listDefaultSequences() // Built-in default verification sequences
337
+ client.rules.getSequenceConfig() // Tenant verification-sequence config
338
+ client.rules.updateSequenceConfig(data) // Patch the tenant verification-sequence config
339
+ client.rules.resolveSequence({ jurisdiction, type? }) // Resolve the effective sequence
340
+ client.rules.getExecutionSummary(verificationId) // Sequence execution trail for a verification
341
+ ```
342
+
281
343
  ## TypeScript Types
282
344
 
283
345
  All request/response types are exported:
@@ -290,6 +352,11 @@ import type {
290
352
  Screening,
291
353
  Case,
292
354
  BusinessEntity,
355
+ Transaction,
356
+ TmAlert,
357
+ MonitoringStatus,
358
+ Sar,
359
+ ComplianceRules,
293
360
  PaginatedList,
294
361
  } from '@kypacs/sdk';
295
362
  ```
package/dist/.tsbuildinfo CHANGED
@@ -1 +1 @@
1
- {"fileNames":["../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../src/errors.ts","../src/config.ts","../src/http.ts","../src/types/generated.ts","../src/types/api.ts","../src/resources/billing.ts","../src/resources/businesses.ts","../src/resources/cases.ts","../src/resources/documents.ts","../src/resources/reports.ts","../src/resources/screenings.ts","../src/resources/tenants.ts","../src/resources/users.ts","../src/resources/verifications.ts","../src/resources/webhooks.ts","../src/client.ts","../src/webhook-verification.ts","../src/index.ts","../src/types/openapi-spec.generated.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/compatibility/disposable.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/compatibility/indexable.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/compatibility/iterators.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/compatibility/index.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/globals.typedarray.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/buffer.buffer.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/globals.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/web-globals/abortcontroller.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/web-globals/domexception.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/web-globals/events.d.ts","../../../node_modules/.pnpm/buffer@6.0.3/node_modules/buffer/index.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/header.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/readable.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/file.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/fetch.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/formdata.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/connector.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/client.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/errors.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-origin.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool-stats.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/handlers.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-client.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-pool.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-errors.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-handler.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/api.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/interceptors.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/util.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cookies.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/patch.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/websocket.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/eventsource.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/filereader.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/content-type.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cache.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/index.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/web-globals/fetch.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/assert.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/assert/strict.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/async_hooks.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/buffer.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/child_process.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/cluster.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/console.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/constants.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/crypto.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/dgram.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/dns.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/dns/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/domain.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/events.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/fs.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/fs/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/http.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/http2.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/https.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/inspector.generated.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/module.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/net.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/os.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/path.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/process.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/punycode.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/querystring.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/readline.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/readline/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/repl.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/sea.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/stream.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/stream/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/stream/web.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/string_decoder.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/test.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/timers.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/timers/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/tls.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/trace_events.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/tty.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/url.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/util.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/v8.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/vm.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/wasi.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/worker_threads.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/zlib.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/index.d.ts"],"fileIdsList":[[83,127,130],[83,129,130],[130],[83,130,135,163],[83,130,131,136,141,149,160,171],[83,130,131,132,141,149],[83,130],[78,79,80,83,130],[83,130,133,172],[83,130,134,135,142,150],[83,130,135,160,168],[83,130,136,138,141,149],[83,129,130,137],[83,130,138,139],[83,130,140,141],[83,129,130,141],[83,130,141,142,143,160,171],[83,130,141,142,143,156,160,163],[83,130,138,141,144,149,160,171],[83,130,141,142,144,145,149,160,168,171],[83,130,144,146,160,168,171],[81,82,83,84,85,86,87,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177],[83,130,141,147],[83,130,148,171,176],[83,130,138,141,149,160],[83,130,150],[83,130,151],[83,129,130,152],[83,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177],[83,130,154],[83,130,155],[83,130,141,156,157],[83,130,156,158,172,174],[83,130,141,160,161,163],[83,130,162,163],[83,130,160,161],[83,130,163],[83,130,164],[83,127,130,160,165],[83,130,141,166,167],[83,130,166,167],[83,130,135,149,160,168],[83,130,169],[83,130,149,170],[83,130,144,155,171],[83,130,135,172],[83,130,160,173],[83,130,148,174],[83,130,175],[83,125,130],[83,125,130,141,143,152,160,163,171,174,176],[83,130,160,177],[83,97,101,130,171],[83,97,130,160,171],[83,92,130],[83,94,97,130,168,171],[83,130,149,168],[83,130,178],[83,92,130,178],[83,94,97,130,149,171],[83,89,90,93,96,130,141,160,171],[83,97,104,130],[83,89,95,130],[83,97,118,119,130],[83,93,97,130,163,171,178],[83,118,130,178],[83,91,92,130,178],[83,97,130],[83,91,92,93,94,95,96,97,98,99,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,119,120,121,122,123,124,130],[83,97,112,130],[83,97,104,105,130],[83,95,97,105,106,130],[83,96,130],[83,89,92,97,130],[83,97,101,105,106,130],[83,101,130],[83,95,97,100,130,171],[83,89,94,97,104,130],[83,130,160],[83,92,97,118,130,176,178],[60,61,64,65,66,67,68,69,70,71,72,73,83,130],[59,83,130],[59,60,83,130],[59,60,62,63,68,74,75,83,130],[61,63,83,130],[61,83,130],[62,83,130],[83,130,135]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"a9857102eb7712240b473f99ab92d093b940ba9b1c173c93566abbb93fb9b6ec","signature":"d742cac899e4dd15e251d55e24d5f6ac56871a03d9363d1697299b9e6d219ce1","impliedFormat":1},{"version":"2b161ebc5db14ea9d5fe7c412ad6ddea6412065346eb6307386a247e94cd6535","signature":"8d7f124b0514123416a71507f1e4f367e8336b7968667fd35e3b6936ed59bbf5","impliedFormat":1},{"version":"b7d01d75c084eeff44c155f69ef6480b3690633aee85fae247142e2eeb884b96","signature":"dd8105e21ae0b16a15820e48237172e070c28fc10bbb24ba75cd843db2d52675","impliedFormat":1},{"version":"18c8b0de1e911292aa3e0a3a01ee28a3bee40c10d1f8c03ab938a514884620d0","signature":"b5459a5d6b9659b3b284a86694af4b9cfda2269f51fecbcab7a750db0b715b2e","impliedFormat":1},{"version":"fabcbb7f925962552b6abbd410fd37ca5e894aa26eec886afc7d3e55e209cc2e","signature":"2b64d9670b6c22d75de28d884756075dc09bd5f2cc7ac7163313dcf4c1163578","impliedFormat":1},{"version":"d363447917f924f59b0c6845916124d85dc800c659aefcb55403ef839757bb9d","signature":"85b2f969cf46a3621cf252e51c55fb76bf22eb44de0ff0b991915fdecdf064ed","impliedFormat":1},{"version":"d7d855506e74ce94b8d22855fc7518f2d5b86b09879a44bb02e1716c614d48ac","signature":"bae9eecc022737835c270909abcc1e93b936127e58c93db9d428dd4012aa4034","impliedFormat":1},{"version":"38ca38e51fceae5b7d8e051c665fad74377751ae8710a0e4289ede3d3a3e79da","signature":"9b4dbc26b710237453994b2b4a60765689c9ee1b885fadf2d36f07b21daa8fc8","impliedFormat":1},{"version":"2ca2a5f9b94199e00bbc56310dee79922e52a82273c0b0ed280dc58610430e8f","signature":"283c8ff2029652f7cb692714384176807c2248cf11527ad107eb2c1de63d6bc0","impliedFormat":1},{"version":"a1ba023992bb65699eee84f6fce56366b5bea24e3b0875c736d94d120785e893","signature":"15c877f19ba95ab4bff918a7afc63b6b4ee661a96850cbe532cd351ad065abe1","impliedFormat":1},{"version":"0a8fb0084b386e510c5e4c8ae3fff1356c14770de181c0ec0e862faf5e88bf82","signature":"c17955417f8345e8955c7f672c42267e5d34e9720df02443bdac01766402684b","impliedFormat":1},{"version":"581639c792c616c1c3b67e6a49e5be833411ef61ac71e08131029b0f780cb0c4","signature":"da7f0ae300b59b929827a9c99fbbadff7ee677a13bb4184e75acb0783e88eb08","impliedFormat":1},{"version":"5f81ef8c774d085a74925db57884eca32c2f7f3552a6c473640e533487a673bb","signature":"4452e783ebdc28dc33dc5362be531e95f1a04426df79a15598c36ddc3b00ecda","impliedFormat":1},{"version":"fd09648c2511ccb045618c1ed3ba20fb50598c572a2473859d088ee682b3d1e2","signature":"ed5ac4319f85c5d32dd7310224d3377b557d3b676fe1d23f83c09fe1abccd06e","impliedFormat":1},{"version":"6f1246bf6ef6772bc13b8dca6206abf9a3abb6ff7736ee14708214549c7da22f","signature":"5ac830481e3c9849573b5bbc46aa8c451d5eb2d148a8c29908d3bbb627844ae8","impliedFormat":1},{"version":"4e731ccbd81e99647b77020a3bd7c89fe3eec49fac8564d20281b5e3b9209bc3","signature":"adf525d32b989c33b055288546606858e580b2c4880b371ecd8c00d9526c3ea3","impliedFormat":1},{"version":"dc12129440387c2cabfdbd789e82cf9d90bee94d3d28286dea2913ac7745249c","signature":"6239b0097a868d2a5bf6022eef0013ba6f08c7a6be656bcd8b0f33dc7761f847","impliedFormat":1},{"version":"fc0c26d394d175f277f02a36883aa3bed926933b554ca8edd38c48279286ee6c","signature":"bd654adf26b4bbdd48d8a6d0af5be65dfc4b11b38cba3e34a406fbb4085ec1a2","impliedFormat":1},{"version":"a3fe9b267de2aae1e666892a1bb5548076ff621b29a033d0abd7e77d95779c6b","signature":"4afda66da7a29b5fd646c1b19b6f326cfc79378d3136140d582d9276d496f16d","impliedFormat":1},{"version":"70521b6ab0dcba37539e5303104f29b721bfb2940b2776da4cc818c07e1fefc1","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","affectsGlobalScope":true,"impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"98cffbf06d6bab333473c70a893770dbe990783904002c4f1a960447b4b53dca","affectsGlobalScope":true,"impliedFormat":1},{"version":"ba481bca06f37d3f2c137ce343c7d5937029b2468f8e26111f3c9d9963d6568d","affectsGlobalScope":true,"impliedFormat":1},{"version":"6d9ef24f9a22a88e3e9b3b3d8c40ab1ddb0853f1bfbd5c843c37800138437b61","affectsGlobalScope":true,"impliedFormat":1},{"version":"1db0b7dca579049ca4193d034d835f6bfe73096c73663e5ef9a0b5779939f3d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"f26b11d8d8e4b8028f1c7d618b22274c892e4b0ef5b3678a8ccbad85419aef43","affectsGlobalScope":true,"impliedFormat":1},{"version":"4967529644e391115ca5592184d4b63980569adf60ee685f968fd59ab1557188","impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","impliedFormat":1},{"version":"a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","impliedFormat":1},{"version":"317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"b52476feb4a0cbcb25e5931b930fc73cb6643fb1a5060bf8a3dda0eeae5b4b68","affectsGlobalScope":true,"impliedFormat":1},{"version":"e2677634fe27e87348825bb041651e22d50a613e2fdf6a4a3ade971d71bac37e","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"8c0bcd6c6b67b4b503c11e91a1fb91522ed585900eab2ab1f61bba7d7caa9d6f","impliedFormat":1},{"version":"8cd19276b6590b3ebbeeb030ac271871b9ed0afc3074ac88a94ed2449174b776","affectsGlobalScope":true,"impliedFormat":1},{"version":"696eb8d28f5949b87d894b26dc97318ef944c794a9a4e4f62360cd1d1958014b","impliedFormat":1},{"version":"3f8fa3061bd7402970b399300880d55257953ee6d3cd408722cb9ac20126460c","impliedFormat":1},{"version":"35ec8b6760fd7138bbf5809b84551e31028fb2ba7b6dc91d95d098bf212ca8b4","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"68bd56c92c2bd7d2339457eb84d63e7de3bd56a69b25f3576e1568d21a162398","affectsGlobalScope":true,"impliedFormat":1},{"version":"3e93b123f7c2944969d291b35fed2af79a6e9e27fdd5faa99748a51c07c02d28","impliedFormat":1},{"version":"9d19808c8c291a9010a6c788e8532a2da70f811adb431c97520803e0ec649991","impliedFormat":1},{"version":"87aad3dd9752067dc875cfaa466fc44246451c0c560b820796bdd528e29bef40","impliedFormat":1},{"version":"4aacb0dd020eeaef65426153686cc639a78ec2885dc72ad220be1d25f1a439df","impliedFormat":1},{"version":"f0bd7e6d931657b59605c44112eaf8b980ba7f957a5051ed21cb93d978cf2f45","impliedFormat":1},{"version":"8db0ae9cb14d9955b14c214f34dae1b9ef2baee2fe4ce794a4cd3ac2531e3255","affectsGlobalScope":true,"impliedFormat":1},{"version":"15fc6f7512c86810273af28f224251a5a879e4261b4d4c7e532abfbfc3983134","impliedFormat":1},{"version":"58adba1a8ab2d10b54dc1dced4e41f4e7c9772cbbac40939c0dc8ce2cdb1d442","impliedFormat":1},{"version":"641942a78f9063caa5d6b777c99304b7d1dc7328076038c6d94d8a0b81fc95c1","impliedFormat":1},{"version":"714435130b9015fae551788df2a88038471a5a11eb471f27c4ede86552842bc9","impliedFormat":1},{"version":"855cd5f7eb396f5f1ab1bc0f8580339bff77b68a770f84c6b254e319bbfd1ac7","impliedFormat":1},{"version":"5650cf3dace09e7c25d384e3e6b818b938f68f4e8de96f52d9c5a1b3db068e86","impliedFormat":1},{"version":"1354ca5c38bd3fd3836a68e0f7c9f91f172582ba30ab15bb8c075891b91502b7","affectsGlobalScope":true,"impliedFormat":1},{"version":"27fdb0da0daf3b337c5530c5f266efe046a6ceb606e395b346974e4360c36419","impliedFormat":1},{"version":"2d2fcaab481b31a5882065c7951255703ddbe1c0e507af56ea42d79ac3911201","impliedFormat":1},{"version":"a192fe8ec33f75edbc8d8f3ed79f768dfae11ff5735e7fe52bfa69956e46d78d","impliedFormat":1},{"version":"ca867399f7db82df981d6915bcbb2d81131d7d1ef683bc782b59f71dda59bc85","affectsGlobalScope":true,"impliedFormat":1},{"version":"372413016d17d804e1d139418aca0c68e47a83fb6669490857f4b318de8cccb3","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e043a1bc8fbf2a255bccf9bf27e0f1caf916c3b0518ea34aa72357c0afd42ec","impliedFormat":1},{"version":"b4f70ec656a11d570e1a9edce07d118cd58d9760239e2ece99306ee9dfe61d02","impliedFormat":1},{"version":"3bc2f1e2c95c04048212c569ed38e338873f6a8593930cf5a7ef24ffb38fc3b6","impliedFormat":1},{"version":"6e70e9570e98aae2b825b533aa6292b6abd542e8d9f6e9475e88e1d7ba17c866","impliedFormat":1},{"version":"f9d9d753d430ed050dc1bf2667a1bab711ccbb1c1507183d794cc195a5b085cc","impliedFormat":1},{"version":"9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","impliedFormat":1},{"version":"47ab634529c5955b6ad793474ae188fce3e6163e3a3fb5edd7e0e48f14435333","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"45650f47bfb376c8a8ed39d4bcda5902ab899a3150029684ee4c10676d9fbaee","impliedFormat":1},{"version":"fad4e3c207fe23922d0b2d06b01acbfb9714c4f2685cf80fd384c8a100c82fd0","affectsGlobalScope":true,"impliedFormat":1},{"version":"74cf591a0f63db318651e0e04cb55f8791385f86e987a67fd4d2eaab8191f730","impliedFormat":1},{"version":"5eab9b3dc9b34f185417342436ec3f106898da5f4801992d8ff38ab3aff346b5","impliedFormat":1},{"version":"12ed4559eba17cd977aa0db658d25c4047067444b51acfdcbf38470630642b23","affectsGlobalScope":true,"impliedFormat":1},{"version":"f3ffabc95802521e1e4bcba4c88d8615176dc6e09111d920c7a213bdda6e1d65","impliedFormat":1},{"version":"809821b8a065e3234a55b3a9d7846231ed18d66dd749f2494c66288d890daf7f","impliedFormat":1},{"version":"ae56f65caf3be91108707bd8dfbccc2a57a91feb5daabf7165a06a945545ed26","impliedFormat":1},{"version":"a136d5de521da20f31631a0a96bf712370779d1c05b7015d7019a9b2a0446ca9","impliedFormat":1},{"version":"c3b41e74b9a84b88b1dca61ec39eee25c0dbc8e7d519ba11bb070918cfacf656","affectsGlobalScope":true,"impliedFormat":1},{"version":"4737a9dc24d0e68b734e6cfbcea0c15a2cfafeb493485e27905f7856988c6b29","affectsGlobalScope":true,"impliedFormat":1},{"version":"36d8d3e7506b631c9582c251a2c0b8a28855af3f76719b12b534c6edf952748d","impliedFormat":1},{"version":"1ca69210cc42729e7ca97d3a9ad48f2e9cb0042bada4075b588ae5387debd318","impliedFormat":1},{"version":"f5ebe66baaf7c552cfa59d75f2bfba679f329204847db3cec385acda245e574e","impliedFormat":1},{"version":"ed59add13139f84da271cafd32e2171876b0a0af2f798d0c663e8eeb867732cf","affectsGlobalScope":true,"impliedFormat":1},{"version":"b7c5e2ea4a9749097c347454805e933844ed207b6eefec6b7cfd418b5f5f7b28","impliedFormat":1},{"version":"b1810689b76fd473bd12cc9ee219f8e62f54a7d08019a235d07424afbf074d25","impliedFormat":1}],"root":[[59,77]],"options":{"composite":true,"declaration":true,"declarationMap":true,"esModuleInterop":true,"exactOptionalPropertyTypes":false,"module":199,"noImplicitOverride":true,"noPropertyAccessFromIndexSignature":true,"noUncheckedIndexedAccess":true,"outDir":"./","rootDir":"../src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":9,"tsBuildInfoFile":"./.tsbuildinfo"},"referencedMap":[[127,1],[128,1],[129,2],[83,3],[130,4],[131,5],[132,6],[78,7],[81,8],[79,7],[80,7],[133,9],[134,10],[135,11],[136,12],[137,13],[138,14],[139,14],[140,15],[141,16],[142,17],[143,18],[84,7],[82,7],[144,19],[145,20],[146,21],[178,22],[147,23],[148,24],[149,25],[150,26],[151,27],[152,28],[153,29],[154,30],[155,31],[156,32],[157,32],[158,33],[159,7],[160,34],[162,35],[161,36],[163,37],[164,38],[165,39],[166,40],[167,41],[168,42],[169,43],[170,44],[171,45],[172,46],[173,47],[174,48],[175,49],[85,7],[86,7],[87,7],[126,50],[176,51],[177,52],[88,7],[57,7],[58,7],[10,7],[12,7],[11,7],[2,7],[13,7],[14,7],[15,7],[16,7],[17,7],[18,7],[19,7],[20,7],[3,7],[21,7],[22,7],[4,7],[23,7],[27,7],[24,7],[25,7],[26,7],[28,7],[29,7],[30,7],[5,7],[31,7],[32,7],[33,7],[34,7],[6,7],[38,7],[35,7],[36,7],[37,7],[39,7],[7,7],[40,7],[45,7],[46,7],[41,7],[42,7],[43,7],[44,7],[8,7],[50,7],[47,7],[48,7],[49,7],[51,7],[9,7],[52,7],[53,7],[54,7],[56,7],[55,7],[1,7],[104,53],[114,54],[103,53],[124,55],[95,56],[94,57],[123,58],[117,59],[122,60],[97,61],[111,62],[96,63],[120,64],[92,65],[91,58],[121,66],[93,67],[98,68],[99,7],[102,68],[89,7],[125,69],[115,70],[106,71],[107,72],[109,73],[105,74],[108,75],[118,58],[100,76],[101,77],[110,78],[90,79],[113,70],[112,68],[116,7],[119,80],[74,81],[60,82],[59,7],[61,83],[76,84],[64,85],[65,85],[66,85],[67,85],[68,86],[69,85],[70,85],[71,85],[72,85],[73,85],[63,87],[62,7],[77,7],[75,88]],"latestChangedDtsFile":"./types/openapi-spec.generated.d.ts","version":"5.9.3"}
1
+ {"fileNames":["../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../src/errors.ts","../src/config.ts","../src/http.ts","../src/types/generated.ts","../src/types/api.ts","../src/resources/billing.ts","../src/resources/businesses.ts","../src/resources/cases.ts","../src/resources/documents.ts","../src/resources/monitoring.ts","../src/resources/reports.ts","../src/resources/rules.ts","../src/resources/sar.ts","../src/resources/screenings.ts","../src/resources/tenants.ts","../src/resources/transaction-monitoring.ts","../src/resources/transactions.ts","../src/resources/users.ts","../src/resources/verifications.ts","../src/resources/webhooks.ts","../src/client.ts","../src/webhook-verification.ts","../src/index.ts","../src/types/openapi-spec.generated.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/compatibility/disposable.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/compatibility/indexable.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/compatibility/iterators.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/compatibility/index.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/globals.typedarray.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/buffer.buffer.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/globals.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/web-globals/abortcontroller.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/web-globals/domexception.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/web-globals/events.d.ts","../../../node_modules/.pnpm/buffer@6.0.3/node_modules/buffer/index.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/header.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/readable.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/file.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/fetch.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/formdata.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/connector.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/client.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/errors.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-origin.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool-stats.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/handlers.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-client.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-pool.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-errors.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-handler.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/api.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/interceptors.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/util.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cookies.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/patch.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/websocket.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/eventsource.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/filereader.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/content-type.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cache.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/index.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/web-globals/fetch.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/assert.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/assert/strict.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/async_hooks.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/buffer.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/child_process.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/cluster.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/console.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/constants.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/crypto.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/dgram.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/dns.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/dns/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/domain.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/events.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/fs.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/fs/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/http.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/http2.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/https.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/inspector.generated.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/module.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/net.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/os.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/path.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/process.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/punycode.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/querystring.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/readline.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/readline/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/repl.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/sea.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/stream.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/stream/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/stream/web.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/string_decoder.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/test.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/timers.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/timers/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/tls.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/trace_events.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/tty.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/url.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/util.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/v8.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/vm.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/wasi.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/worker_threads.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/zlib.d.ts","../../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/index.d.ts"],"fileIdsList":[[88,132,135],[88,134,135],[135],[88,135,140,168],[88,135,136,141,146,154,165,176],[88,135,136,137,146,154],[88,135],[83,84,85,88,135],[88,135,138,177],[88,135,139,140,147,155],[88,135,140,165,173],[88,135,141,143,146,154],[88,134,135,142],[88,135,143,144],[88,135,145,146],[88,134,135,146],[88,135,146,147,148,165,176],[88,135,146,147,148,161,165,168],[88,135,143,146,149,154,165,176],[88,135,146,147,149,150,154,165,173,176],[88,135,149,151,165,173,176],[86,87,88,89,90,91,92,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182],[88,135,146,152],[88,135,153,176,181],[88,135,143,146,154,165],[88,135,155],[88,135,156],[88,134,135,157],[88,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182],[88,135,159],[88,135,160],[88,135,146,161,162],[88,135,161,163,177,179],[88,135,146,165,166,168],[88,135,167,168],[88,135,165,166],[88,135,168],[88,135,169],[88,132,135,165,170],[88,135,146,171,172],[88,135,171,172],[88,135,140,154,165,173],[88,135,174],[88,135,154,175],[88,135,149,160,176],[88,135,140,177],[88,135,165,178],[88,135,153,179],[88,135,180],[88,130,135],[88,130,135,146,148,157,165,168,176,179,181],[88,135,165,182],[88,102,106,135,176],[88,102,135,165,176],[88,97,135],[88,99,102,135,173,176],[88,135,154,173],[88,135,183],[88,97,135,183],[88,99,102,135,154,176],[88,94,95,98,101,135,146,165,176],[88,102,109,135],[88,94,100,135],[88,102,123,124,135],[88,98,102,135,168,176,183],[88,123,135,183],[88,96,97,135,183],[88,102,135],[88,96,97,98,99,100,101,102,103,104,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,124,125,126,127,128,129,135],[88,102,117,135],[88,102,109,110,135],[88,100,102,110,111,135],[88,101,135],[88,94,97,102,135],[88,102,106,110,111,135],[88,106,135],[88,100,102,105,135,176],[88,94,99,102,109,135],[88,135,165],[88,97,102,123,135,181,183],[60,61,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,88,135],[59,88,135],[59,60,88,135],[59,60,62,63,68,69,70,71,74,75,79,80,88,135],[61,63,88,135],[61,88,135],[62,88,135],[88,135,140]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"a9857102eb7712240b473f99ab92d093b940ba9b1c173c93566abbb93fb9b6ec","signature":"d742cac899e4dd15e251d55e24d5f6ac56871a03d9363d1697299b9e6d219ce1","impliedFormat":1},{"version":"2b161ebc5db14ea9d5fe7c412ad6ddea6412065346eb6307386a247e94cd6535","signature":"8d7f124b0514123416a71507f1e4f367e8336b7968667fd35e3b6936ed59bbf5","impliedFormat":1},{"version":"b7d01d75c084eeff44c155f69ef6480b3690633aee85fae247142e2eeb884b96","signature":"dd8105e21ae0b16a15820e48237172e070c28fc10bbb24ba75cd843db2d52675","impliedFormat":1},{"version":"18c8b0de1e911292aa3e0a3a01ee28a3bee40c10d1f8c03ab938a514884620d0","signature":"b5459a5d6b9659b3b284a86694af4b9cfda2269f51fecbcab7a750db0b715b2e","impliedFormat":1},{"version":"d891dedabc4fc14938b0a46bbbd300416e03687de460d98b19337a9a53155875","signature":"bb2737aa3adedcd52cb78f45540cad9ec863d63bd67a9fa5f627cb550b767a4d","impliedFormat":1},{"version":"d363447917f924f59b0c6845916124d85dc800c659aefcb55403ef839757bb9d","signature":"85b2f969cf46a3621cf252e51c55fb76bf22eb44de0ff0b991915fdecdf064ed","impliedFormat":1},{"version":"d7d855506e74ce94b8d22855fc7518f2d5b86b09879a44bb02e1716c614d48ac","signature":"bae9eecc022737835c270909abcc1e93b936127e58c93db9d428dd4012aa4034","impliedFormat":1},{"version":"38ca38e51fceae5b7d8e051c665fad74377751ae8710a0e4289ede3d3a3e79da","signature":"9b4dbc26b710237453994b2b4a60765689c9ee1b885fadf2d36f07b21daa8fc8","impliedFormat":1},{"version":"2ca2a5f9b94199e00bbc56310dee79922e52a82273c0b0ed280dc58610430e8f","signature":"283c8ff2029652f7cb692714384176807c2248cf11527ad107eb2c1de63d6bc0","impliedFormat":1},{"version":"f34361d7c0a10327e8fef100a7195048c067be7313ab3ec332706ff58f629c5b","signature":"8ec734b8d268b30a1c47abce6b41c8746b369c2898c580d06891a55f60685dd8","impliedFormat":1},{"version":"a1ba023992bb65699eee84f6fce56366b5bea24e3b0875c736d94d120785e893","signature":"15c877f19ba95ab4bff918a7afc63b6b4ee661a96850cbe532cd351ad065abe1","impliedFormat":1},{"version":"eefcc65501aa0fe56cbf811d5858653c2520af1f1c62afd4489535134cca21a8","signature":"bada6e4c3db8df106e58791f7f55bd34eedae0b14ee8f8d9bf6a99ed303e83b1","impliedFormat":1},{"version":"cde907a9760d70fb738bf8b0daf2a84877b5ecf7769cc3536ef01418e8268d33","signature":"0d9579883b031489b0561296ae5144ab8c3abf2ed5a80c75ae9ff71d6636f01b","impliedFormat":1},{"version":"0a8fb0084b386e510c5e4c8ae3fff1356c14770de181c0ec0e862faf5e88bf82","signature":"c17955417f8345e8955c7f672c42267e5d34e9720df02443bdac01766402684b","impliedFormat":1},{"version":"581639c792c616c1c3b67e6a49e5be833411ef61ac71e08131029b0f780cb0c4","signature":"da7f0ae300b59b929827a9c99fbbadff7ee677a13bb4184e75acb0783e88eb08","impliedFormat":1},{"version":"eb0dae0c3b55649d5577b24ba7328ed030f0416073e7377ee3e4961753bb8797","signature":"eb122c2187ca1eb53e82166208c98816043268cd82416abf0348cc73d71d11f4","impliedFormat":1},{"version":"0c52e3db039cfd50fa91d68616cabc424f95507d60e2cb03c272a5ff5f5f1e8c","signature":"77a33fc5389c92e9fad730077787ef99819895d8c078f28dbdcaba725497134e","impliedFormat":1},{"version":"5f81ef8c774d085a74925db57884eca32c2f7f3552a6c473640e533487a673bb","signature":"4452e783ebdc28dc33dc5362be531e95f1a04426df79a15598c36ddc3b00ecda","impliedFormat":1},{"version":"fd09648c2511ccb045618c1ed3ba20fb50598c572a2473859d088ee682b3d1e2","signature":"ed5ac4319f85c5d32dd7310224d3377b557d3b676fe1d23f83c09fe1abccd06e","impliedFormat":1},{"version":"6f1246bf6ef6772bc13b8dca6206abf9a3abb6ff7736ee14708214549c7da22f","signature":"5ac830481e3c9849573b5bbc46aa8c451d5eb2d148a8c29908d3bbb627844ae8","impliedFormat":1},{"version":"d5b12f42d9f5f20bff6491ac3aa0cf60625888aec4bfc485415bfacb2fe2cbcf","signature":"b7c56ea8c64ec1d5a52e2123b0b2cffad874db5b896204382adb766b18a50a15","impliedFormat":1},{"version":"dc12129440387c2cabfdbd789e82cf9d90bee94d3d28286dea2913ac7745249c","signature":"6239b0097a868d2a5bf6022eef0013ba6f08c7a6be656bcd8b0f33dc7761f847","impliedFormat":1},{"version":"300624e8a7f4d3fce99a88f47257d58f1734a9413ca6d0bccd4a8040bc6cd5ea","signature":"22d3475ba126bf1e0512c2beaa8c50a0543cc02587a845a5c309b4cffc01cd7d","impliedFormat":1},{"version":"a3fe9b267de2aae1e666892a1bb5548076ff621b29a033d0abd7e77d95779c6b","signature":"4afda66da7a29b5fd646c1b19b6f326cfc79378d3136140d582d9276d496f16d","impliedFormat":1},{"version":"70521b6ab0dcba37539e5303104f29b721bfb2940b2776da4cc818c07e1fefc1","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","affectsGlobalScope":true,"impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"98cffbf06d6bab333473c70a893770dbe990783904002c4f1a960447b4b53dca","affectsGlobalScope":true,"impliedFormat":1},{"version":"ba481bca06f37d3f2c137ce343c7d5937029b2468f8e26111f3c9d9963d6568d","affectsGlobalScope":true,"impliedFormat":1},{"version":"6d9ef24f9a22a88e3e9b3b3d8c40ab1ddb0853f1bfbd5c843c37800138437b61","affectsGlobalScope":true,"impliedFormat":1},{"version":"1db0b7dca579049ca4193d034d835f6bfe73096c73663e5ef9a0b5779939f3d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"f26b11d8d8e4b8028f1c7d618b22274c892e4b0ef5b3678a8ccbad85419aef43","affectsGlobalScope":true,"impliedFormat":1},{"version":"4967529644e391115ca5592184d4b63980569adf60ee685f968fd59ab1557188","impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","impliedFormat":1},{"version":"a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","impliedFormat":1},{"version":"317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"b52476feb4a0cbcb25e5931b930fc73cb6643fb1a5060bf8a3dda0eeae5b4b68","affectsGlobalScope":true,"impliedFormat":1},{"version":"e2677634fe27e87348825bb041651e22d50a613e2fdf6a4a3ade971d71bac37e","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"8c0bcd6c6b67b4b503c11e91a1fb91522ed585900eab2ab1f61bba7d7caa9d6f","impliedFormat":1},{"version":"8cd19276b6590b3ebbeeb030ac271871b9ed0afc3074ac88a94ed2449174b776","affectsGlobalScope":true,"impliedFormat":1},{"version":"696eb8d28f5949b87d894b26dc97318ef944c794a9a4e4f62360cd1d1958014b","impliedFormat":1},{"version":"3f8fa3061bd7402970b399300880d55257953ee6d3cd408722cb9ac20126460c","impliedFormat":1},{"version":"35ec8b6760fd7138bbf5809b84551e31028fb2ba7b6dc91d95d098bf212ca8b4","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"68bd56c92c2bd7d2339457eb84d63e7de3bd56a69b25f3576e1568d21a162398","affectsGlobalScope":true,"impliedFormat":1},{"version":"3e93b123f7c2944969d291b35fed2af79a6e9e27fdd5faa99748a51c07c02d28","impliedFormat":1},{"version":"9d19808c8c291a9010a6c788e8532a2da70f811adb431c97520803e0ec649991","impliedFormat":1},{"version":"87aad3dd9752067dc875cfaa466fc44246451c0c560b820796bdd528e29bef40","impliedFormat":1},{"version":"4aacb0dd020eeaef65426153686cc639a78ec2885dc72ad220be1d25f1a439df","impliedFormat":1},{"version":"f0bd7e6d931657b59605c44112eaf8b980ba7f957a5051ed21cb93d978cf2f45","impliedFormat":1},{"version":"8db0ae9cb14d9955b14c214f34dae1b9ef2baee2fe4ce794a4cd3ac2531e3255","affectsGlobalScope":true,"impliedFormat":1},{"version":"15fc6f7512c86810273af28f224251a5a879e4261b4d4c7e532abfbfc3983134","impliedFormat":1},{"version":"58adba1a8ab2d10b54dc1dced4e41f4e7c9772cbbac40939c0dc8ce2cdb1d442","impliedFormat":1},{"version":"641942a78f9063caa5d6b777c99304b7d1dc7328076038c6d94d8a0b81fc95c1","impliedFormat":1},{"version":"714435130b9015fae551788df2a88038471a5a11eb471f27c4ede86552842bc9","impliedFormat":1},{"version":"855cd5f7eb396f5f1ab1bc0f8580339bff77b68a770f84c6b254e319bbfd1ac7","impliedFormat":1},{"version":"5650cf3dace09e7c25d384e3e6b818b938f68f4e8de96f52d9c5a1b3db068e86","impliedFormat":1},{"version":"1354ca5c38bd3fd3836a68e0f7c9f91f172582ba30ab15bb8c075891b91502b7","affectsGlobalScope":true,"impliedFormat":1},{"version":"27fdb0da0daf3b337c5530c5f266efe046a6ceb606e395b346974e4360c36419","impliedFormat":1},{"version":"2d2fcaab481b31a5882065c7951255703ddbe1c0e507af56ea42d79ac3911201","impliedFormat":1},{"version":"a192fe8ec33f75edbc8d8f3ed79f768dfae11ff5735e7fe52bfa69956e46d78d","impliedFormat":1},{"version":"ca867399f7db82df981d6915bcbb2d81131d7d1ef683bc782b59f71dda59bc85","affectsGlobalScope":true,"impliedFormat":1},{"version":"372413016d17d804e1d139418aca0c68e47a83fb6669490857f4b318de8cccb3","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e043a1bc8fbf2a255bccf9bf27e0f1caf916c3b0518ea34aa72357c0afd42ec","impliedFormat":1},{"version":"b4f70ec656a11d570e1a9edce07d118cd58d9760239e2ece99306ee9dfe61d02","impliedFormat":1},{"version":"3bc2f1e2c95c04048212c569ed38e338873f6a8593930cf5a7ef24ffb38fc3b6","impliedFormat":1},{"version":"6e70e9570e98aae2b825b533aa6292b6abd542e8d9f6e9475e88e1d7ba17c866","impliedFormat":1},{"version":"f9d9d753d430ed050dc1bf2667a1bab711ccbb1c1507183d794cc195a5b085cc","impliedFormat":1},{"version":"9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","impliedFormat":1},{"version":"47ab634529c5955b6ad793474ae188fce3e6163e3a3fb5edd7e0e48f14435333","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"45650f47bfb376c8a8ed39d4bcda5902ab899a3150029684ee4c10676d9fbaee","impliedFormat":1},{"version":"fad4e3c207fe23922d0b2d06b01acbfb9714c4f2685cf80fd384c8a100c82fd0","affectsGlobalScope":true,"impliedFormat":1},{"version":"74cf591a0f63db318651e0e04cb55f8791385f86e987a67fd4d2eaab8191f730","impliedFormat":1},{"version":"5eab9b3dc9b34f185417342436ec3f106898da5f4801992d8ff38ab3aff346b5","impliedFormat":1},{"version":"12ed4559eba17cd977aa0db658d25c4047067444b51acfdcbf38470630642b23","affectsGlobalScope":true,"impliedFormat":1},{"version":"f3ffabc95802521e1e4bcba4c88d8615176dc6e09111d920c7a213bdda6e1d65","impliedFormat":1},{"version":"809821b8a065e3234a55b3a9d7846231ed18d66dd749f2494c66288d890daf7f","impliedFormat":1},{"version":"ae56f65caf3be91108707bd8dfbccc2a57a91feb5daabf7165a06a945545ed26","impliedFormat":1},{"version":"a136d5de521da20f31631a0a96bf712370779d1c05b7015d7019a9b2a0446ca9","impliedFormat":1},{"version":"c3b41e74b9a84b88b1dca61ec39eee25c0dbc8e7d519ba11bb070918cfacf656","affectsGlobalScope":true,"impliedFormat":1},{"version":"4737a9dc24d0e68b734e6cfbcea0c15a2cfafeb493485e27905f7856988c6b29","affectsGlobalScope":true,"impliedFormat":1},{"version":"36d8d3e7506b631c9582c251a2c0b8a28855af3f76719b12b534c6edf952748d","impliedFormat":1},{"version":"1ca69210cc42729e7ca97d3a9ad48f2e9cb0042bada4075b588ae5387debd318","impliedFormat":1},{"version":"f5ebe66baaf7c552cfa59d75f2bfba679f329204847db3cec385acda245e574e","impliedFormat":1},{"version":"ed59add13139f84da271cafd32e2171876b0a0af2f798d0c663e8eeb867732cf","affectsGlobalScope":true,"impliedFormat":1},{"version":"b7c5e2ea4a9749097c347454805e933844ed207b6eefec6b7cfd418b5f5f7b28","impliedFormat":1},{"version":"b1810689b76fd473bd12cc9ee219f8e62f54a7d08019a235d07424afbf074d25","impliedFormat":1}],"root":[[59,82]],"options":{"composite":true,"declaration":true,"declarationMap":true,"esModuleInterop":true,"exactOptionalPropertyTypes":false,"module":199,"noImplicitOverride":true,"noPropertyAccessFromIndexSignature":true,"noUncheckedIndexedAccess":true,"outDir":"./","rootDir":"../src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":9,"tsBuildInfoFile":"./.tsbuildinfo"},"referencedMap":[[132,1],[133,1],[134,2],[88,3],[135,4],[136,5],[137,6],[83,7],[86,8],[84,7],[85,7],[138,9],[139,10],[140,11],[141,12],[142,13],[143,14],[144,14],[145,15],[146,16],[147,17],[148,18],[89,7],[87,7],[149,19],[150,20],[151,21],[183,22],[152,23],[153,24],[154,25],[155,26],[156,27],[157,28],[158,29],[159,30],[160,31],[161,32],[162,32],[163,33],[164,7],[165,34],[167,35],[166,36],[168,37],[169,38],[170,39],[171,40],[172,41],[173,42],[174,43],[175,44],[176,45],[177,46],[178,47],[179,48],[180,49],[90,7],[91,7],[92,7],[131,50],[181,51],[182,52],[93,7],[57,7],[58,7],[10,7],[12,7],[11,7],[2,7],[13,7],[14,7],[15,7],[16,7],[17,7],[18,7],[19,7],[20,7],[3,7],[21,7],[22,7],[4,7],[23,7],[27,7],[24,7],[25,7],[26,7],[28,7],[29,7],[30,7],[5,7],[31,7],[32,7],[33,7],[34,7],[6,7],[38,7],[35,7],[36,7],[37,7],[39,7],[7,7],[40,7],[45,7],[46,7],[41,7],[42,7],[43,7],[44,7],[8,7],[50,7],[47,7],[48,7],[49,7],[51,7],[9,7],[52,7],[53,7],[54,7],[56,7],[55,7],[1,7],[109,53],[119,54],[108,53],[129,55],[100,56],[99,57],[128,58],[122,59],[127,60],[102,61],[116,62],[101,63],[125,64],[97,65],[96,58],[126,66],[98,67],[103,68],[104,7],[107,68],[94,7],[130,69],[120,70],[111,71],[112,72],[114,73],[110,74],[113,75],[123,58],[105,76],[106,77],[115,78],[95,79],[118,70],[117,68],[121,7],[124,80],[79,81],[60,82],[59,7],[61,83],[81,84],[64,85],[65,85],[66,85],[67,85],[68,85],[69,86],[70,85],[71,85],[72,85],[73,85],[74,85],[75,85],[76,85],[77,85],[78,85],[63,87],[62,7],[82,7],[80,88]],"latestChangedDtsFile":"./webhook-verification.d.ts","version":"5.9.3"}
package/dist/client.d.ts CHANGED
@@ -2,9 +2,14 @@ import { BillingResource } from './resources/billing.js';
2
2
  import { BusinessesResource } from './resources/businesses.js';
3
3
  import { CasesResource } from './resources/cases.js';
4
4
  import { DocumentsResource } from './resources/documents.js';
5
+ import { MonitoringResource } from './resources/monitoring.js';
5
6
  import { ReportsResource } from './resources/reports.js';
7
+ import { RulesResource } from './resources/rules.js';
8
+ import { SarResource } from './resources/sar.js';
6
9
  import { ScreeningsResource } from './resources/screenings.js';
7
10
  import { TenantsResource } from './resources/tenants.js';
11
+ import { TransactionMonitoringResource } from './resources/transaction-monitoring.js';
12
+ import { TransactionsResource } from './resources/transactions.js';
8
13
  import { UsersResource } from './resources/users.js';
9
14
  import { VerificationsResource } from './resources/verifications.js';
10
15
  import { WebhooksResource } from './resources/webhooks.js';
@@ -20,6 +25,16 @@ export declare class PaciKycClient {
20
25
  readonly users: UsersResource;
21
26
  readonly billing: BillingResource;
22
27
  readonly reports: ReportsResource;
28
+ /** Customer transaction history feeding ongoing AML transaction monitoring. */
29
+ readonly transactions: TransactionsResource;
30
+ /** Alerts produced by the transaction-monitoring rule engine. */
31
+ readonly transactionMonitoring: TransactionMonitoringResource;
32
+ /** Ongoing due diligence: periodic re-screening and document-expiry tracking. */
33
+ readonly monitoring: MonitoringResource;
34
+ /** Suspicious Activity Reports (Tonga FIU goAML workflow). */
35
+ readonly sar: SarResource;
36
+ /** Tenant compliance-rules configuration and verification sequences. */
37
+ readonly rules: RulesResource;
23
38
  private readonly http;
24
39
  constructor(config: PaciKycClientConfig);
25
40
  }
@@ -1 +1 @@
1
- {"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../src/client.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AACzD,OAAO,EAAE,kBAAkB,EAAE,MAAM,2BAA2B,CAAC;AAC/D,OAAO,EAAE,aAAa,EAAE,MAAM,sBAAsB,CAAC;AACrD,OAAO,EAAE,iBAAiB,EAAE,MAAM,0BAA0B,CAAC;AAC7D,OAAO,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AACzD,OAAO,EAAE,kBAAkB,EAAE,MAAM,2BAA2B,CAAC;AAC/D,OAAO,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AACzD,OAAO,EAAE,aAAa,EAAE,MAAM,sBAAsB,CAAC;AACrD,OAAO,EAAE,qBAAqB,EAAE,MAAM,8BAA8B,CAAC;AACrE,OAAO,EAAE,gBAAgB,EAAE,MAAM,yBAAyB,CAAC;AAE3D,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,aAAa,CAAC;AAEvD,qBAAa,aAAa;IACxB,SAAgB,aAAa,EAAE,qBAAqB,CAAC;IACrD,SAAgB,SAAS,EAAE,iBAAiB,CAAC;IAC7C,SAAgB,UAAU,EAAE,kBAAkB,CAAC;IAC/C,SAAgB,KAAK,EAAE,aAAa,CAAC;IACrC,SAAgB,UAAU,EAAE,kBAAkB,CAAC;IAC/C,SAAgB,QAAQ,EAAE,gBAAgB,CAAC;IAC3C,SAAgB,OAAO,EAAE,eAAe,CAAC;IACzC,SAAgB,KAAK,EAAE,aAAa,CAAC;IACrC,SAAgB,OAAO,EAAE,eAAe,CAAC;IACzC,SAAgB,OAAO,EAAE,eAAe,CAAC;IAEzC,OAAO,CAAC,QAAQ,CAAC,IAAI,CAAa;gBAEtB,MAAM,EAAE,mBAAmB;CAexC"}
1
+ {"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../src/client.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AACzD,OAAO,EAAE,kBAAkB,EAAE,MAAM,2BAA2B,CAAC;AAC/D,OAAO,EAAE,aAAa,EAAE,MAAM,sBAAsB,CAAC;AACrD,OAAO,EAAE,iBAAiB,EAAE,MAAM,0BAA0B,CAAC;AAC7D,OAAO,EAAE,kBAAkB,EAAE,MAAM,2BAA2B,CAAC;AAC/D,OAAO,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AACzD,OAAO,EAAE,aAAa,EAAE,MAAM,sBAAsB,CAAC;AACrD,OAAO,EAAE,WAAW,EAAE,MAAM,oBAAoB,CAAC;AACjD,OAAO,EAAE,kBAAkB,EAAE,MAAM,2BAA2B,CAAC;AAC/D,OAAO,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AACzD,OAAO,EAAE,6BAA6B,EAAE,MAAM,uCAAuC,CAAC;AACtF,OAAO,EAAE,oBAAoB,EAAE,MAAM,6BAA6B,CAAC;AACnE,OAAO,EAAE,aAAa,EAAE,MAAM,sBAAsB,CAAC;AACrD,OAAO,EAAE,qBAAqB,EAAE,MAAM,8BAA8B,CAAC;AACrE,OAAO,EAAE,gBAAgB,EAAE,MAAM,yBAAyB,CAAC;AAE3D,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,aAAa,CAAC;AAEvD,qBAAa,aAAa;IACxB,SAAgB,aAAa,EAAE,qBAAqB,CAAC;IACrD,SAAgB,SAAS,EAAE,iBAAiB,CAAC;IAC7C,SAAgB,UAAU,EAAE,kBAAkB,CAAC;IAC/C,SAAgB,KAAK,EAAE,aAAa,CAAC;IACrC,SAAgB,UAAU,EAAE,kBAAkB,CAAC;IAC/C,SAAgB,QAAQ,EAAE,gBAAgB,CAAC;IAC3C,SAAgB,OAAO,EAAE,eAAe,CAAC;IACzC,SAAgB,KAAK,EAAE,aAAa,CAAC;IACrC,SAAgB,OAAO,EAAE,eAAe,CAAC;IACzC,SAAgB,OAAO,EAAE,eAAe,CAAC;IACzC,+EAA+E;IAC/E,SAAgB,YAAY,EAAE,oBAAoB,CAAC;IACnD,iEAAiE;IACjE,SAAgB,qBAAqB,EAAE,6BAA6B,CAAC;IACrE,iFAAiF;IACjF,SAAgB,UAAU,EAAE,kBAAkB,CAAC;IAC/C,8DAA8D;IAC9D,SAAgB,GAAG,EAAE,WAAW,CAAC;IACjC,wEAAwE;IACxE,SAAgB,KAAK,EAAE,aAAa,CAAC;IAErC,OAAO,CAAC,QAAQ,CAAC,IAAI,CAAa;gBAEtB,MAAM,EAAE,mBAAmB;CAoBxC"}
package/dist/client.js CHANGED
@@ -7,9 +7,14 @@ const billing_js_1 = require("./resources/billing.js");
7
7
  const businesses_js_1 = require("./resources/businesses.js");
8
8
  const cases_js_1 = require("./resources/cases.js");
9
9
  const documents_js_1 = require("./resources/documents.js");
10
+ const monitoring_js_1 = require("./resources/monitoring.js");
10
11
  const reports_js_1 = require("./resources/reports.js");
12
+ const rules_js_1 = require("./resources/rules.js");
13
+ const sar_js_1 = require("./resources/sar.js");
11
14
  const screenings_js_1 = require("./resources/screenings.js");
12
15
  const tenants_js_1 = require("./resources/tenants.js");
16
+ const transaction_monitoring_js_1 = require("./resources/transaction-monitoring.js");
17
+ const transactions_js_1 = require("./resources/transactions.js");
13
18
  const users_js_1 = require("./resources/users.js");
14
19
  const verifications_js_1 = require("./resources/verifications.js");
15
20
  const webhooks_js_1 = require("./resources/webhooks.js");
@@ -24,6 +29,16 @@ class PaciKycClient {
24
29
  users;
25
30
  billing;
26
31
  reports;
32
+ /** Customer transaction history feeding ongoing AML transaction monitoring. */
33
+ transactions;
34
+ /** Alerts produced by the transaction-monitoring rule engine. */
35
+ transactionMonitoring;
36
+ /** Ongoing due diligence: periodic re-screening and document-expiry tracking. */
37
+ monitoring;
38
+ /** Suspicious Activity Reports (Tonga FIU goAML workflow). */
39
+ sar;
40
+ /** Tenant compliance-rules configuration and verification sequences. */
41
+ rules;
27
42
  http;
28
43
  constructor(config) {
29
44
  const resolved = (0, config_js_1.resolveConfig)(config);
@@ -38,6 +53,11 @@ class PaciKycClient {
38
53
  this.users = new users_js_1.UsersResource(this.http);
39
54
  this.billing = new billing_js_1.BillingResource(this.http);
40
55
  this.reports = new reports_js_1.ReportsResource(this.http);
56
+ this.transactions = new transactions_js_1.TransactionsResource(this.http);
57
+ this.transactionMonitoring = new transaction_monitoring_js_1.TransactionMonitoringResource(this.http);
58
+ this.monitoring = new monitoring_js_1.MonitoringResource(this.http);
59
+ this.sar = new sar_js_1.SarResource(this.http);
60
+ this.rules = new rules_js_1.RulesResource(this.http);
41
61
  }
42
62
  }
43
63
  exports.PaciKycClient = PaciKycClient;
@@ -1 +1 @@
1
- {"version":3,"file":"client.js","sourceRoot":"","sources":["../src/client.ts"],"names":[],"mappings":";;;AAAA,2CAA4C;AAC5C,uCAAuC;AACvC,uDAAyD;AACzD,6DAA+D;AAC/D,mDAAqD;AACrD,2DAA6D;AAC7D,uDAAyD;AACzD,6DAA+D;AAC/D,uDAAyD;AACzD,mDAAqD;AACrD,mEAAqE;AACrE,yDAA2D;AAI3D,MAAa,aAAa;IACR,aAAa,CAAwB;IACrC,SAAS,CAAoB;IAC7B,UAAU,CAAqB;IAC/B,KAAK,CAAgB;IACrB,UAAU,CAAqB;IAC/B,QAAQ,CAAmB;IAC3B,OAAO,CAAkB;IACzB,KAAK,CAAgB;IACrB,OAAO,CAAkB;IACzB,OAAO,CAAkB;IAExB,IAAI,CAAa;IAElC,YAAY,MAA2B;QACrC,MAAM,QAAQ,GAAG,IAAA,yBAAa,EAAC,MAAM,CAAC,CAAC;QACvC,IAAI,CAAC,IAAI,GAAG,IAAI,oBAAU,CAAC,QAAQ,CAAC,CAAC;QAErC,IAAI,CAAC,aAAa,GAAG,IAAI,wCAAqB,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QAC1D,IAAI,CAAC,SAAS,GAAG,IAAI,gCAAiB,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QAClD,IAAI,CAAC,UAAU,GAAG,IAAI,kCAAkB,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QACpD,IAAI,CAAC,KAAK,GAAG,IAAI,wBAAa,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QAC1C,IAAI,CAAC,UAAU,GAAG,IAAI,kCAAkB,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QACpD,IAAI,CAAC,QAAQ,GAAG,IAAI,8BAAgB,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QAChD,IAAI,CAAC,OAAO,GAAG,IAAI,4BAAe,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QAC9C,IAAI,CAAC,KAAK,GAAG,IAAI,wBAAa,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QAC1C,IAAI,CAAC,OAAO,GAAG,IAAI,4BAAe,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QAC9C,IAAI,CAAC,OAAO,GAAG,IAAI,4BAAe,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;IAChD,CAAC;CACF;AA7BD,sCA6BC"}
1
+ {"version":3,"file":"client.js","sourceRoot":"","sources":["../src/client.ts"],"names":[],"mappings":";;;AAAA,2CAA4C;AAC5C,uCAAuC;AACvC,uDAAyD;AACzD,6DAA+D;AAC/D,mDAAqD;AACrD,2DAA6D;AAC7D,6DAA+D;AAC/D,uDAAyD;AACzD,mDAAqD;AACrD,+CAAiD;AACjD,6DAA+D;AAC/D,uDAAyD;AACzD,qFAAsF;AACtF,iEAAmE;AACnE,mDAAqD;AACrD,mEAAqE;AACrE,yDAA2D;AAI3D,MAAa,aAAa;IACR,aAAa,CAAwB;IACrC,SAAS,CAAoB;IAC7B,UAAU,CAAqB;IAC/B,KAAK,CAAgB;IACrB,UAAU,CAAqB;IAC/B,QAAQ,CAAmB;IAC3B,OAAO,CAAkB;IACzB,KAAK,CAAgB;IACrB,OAAO,CAAkB;IACzB,OAAO,CAAkB;IACzC,+EAA+E;IAC/D,YAAY,CAAuB;IACnD,iEAAiE;IACjD,qBAAqB,CAAgC;IACrE,iFAAiF;IACjE,UAAU,CAAqB;IAC/C,8DAA8D;IAC9C,GAAG,CAAc;IACjC,wEAAwE;IACxD,KAAK,CAAgB;IAEpB,IAAI,CAAa;IAElC,YAAY,MAA2B;QACrC,MAAM,QAAQ,GAAG,IAAA,yBAAa,EAAC,MAAM,CAAC,CAAC;QACvC,IAAI,CAAC,IAAI,GAAG,IAAI,oBAAU,CAAC,QAAQ,CAAC,CAAC;QAErC,IAAI,CAAC,aAAa,GAAG,IAAI,wCAAqB,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QAC1D,IAAI,CAAC,SAAS,GAAG,IAAI,gCAAiB,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QAClD,IAAI,CAAC,UAAU,GAAG,IAAI,kCAAkB,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QACpD,IAAI,CAAC,KAAK,GAAG,IAAI,wBAAa,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QAC1C,IAAI,CAAC,UAAU,GAAG,IAAI,kCAAkB,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QACpD,IAAI,CAAC,QAAQ,GAAG,IAAI,8BAAgB,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QAChD,IAAI,CAAC,OAAO,GAAG,IAAI,4BAAe,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QAC9C,IAAI,CAAC,KAAK,GAAG,IAAI,wBAAa,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QAC1C,IAAI,CAAC,OAAO,GAAG,IAAI,4BAAe,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QAC9C,IAAI,CAAC,OAAO,GAAG,IAAI,4BAAe,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QAC9C,IAAI,CAAC,YAAY,GAAG,IAAI,sCAAoB,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QACxD,IAAI,CAAC,qBAAqB,GAAG,IAAI,yDAA6B,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QAC1E,IAAI,CAAC,UAAU,GAAG,IAAI,kCAAkB,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QACpD,IAAI,CAAC,GAAG,GAAG,IAAI,oBAAW,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QACtC,IAAI,CAAC,KAAK,GAAG,IAAI,wBAAa,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;IAC5C,CAAC;CACF;AA5CD,sCA4CC"}
package/dist/index.d.ts CHANGED
@@ -1,10 +1,15 @@
1
1
  export { PaciKycClient } from './client.js';
2
2
  export { verifyWebhookSignature } from './webhook-verification.js';
3
3
  export { ReportsResource } from './resources/reports.js';
4
+ export { TransactionsResource } from './resources/transactions.js';
5
+ export { TransactionMonitoringResource } from './resources/transaction-monitoring.js';
6
+ export { MonitoringResource } from './resources/monitoring.js';
7
+ export { SarResource } from './resources/sar.js';
8
+ export { RulesResource } from './resources/rules.js';
4
9
  export type { ReportParams, VerificationReport, ScreeningReport, ComplianceReport, UsageMetricsReport, FullReport, } from './resources/reports.js';
5
10
  export type { PaciKycClientConfig } from './config.js';
6
11
  export type { VerifyWebhookSignatureParams } from './webhook-verification.js';
7
12
  export { PaciKycError, AuthenticationError, AuthorizationError, NotFoundError, ValidationError, RateLimitError, PlanLimitError, ServerError, } from './errors.js';
8
- export type { PaginatedList, Verification, VerificationDetail, VerificationStatus, VerificationType, CreateVerificationInput, UpdateVerificationInput, DecideInput, InviteLink, InviteLinkParams, VerificationListParams, Document, DocumentStatus, DocumentType, UploadUrlInput, UploadUrlResult, DownloadUrlResult, Screening, ScreeningDetail, ScreeningStatus, MatchStatus, CreateScreeningInput, BatchScreeningInput, BatchResult, ReviewInput, EntityDetails, ScreeningListParams, Case, CaseDetail, CaseNote, CaseStatus, CasePriority, AssignInput, AddNoteInput, EscalateInput, ResolveInput, CaseStats, CaseListParams, BusinessEntity, BusinessDetail, BusinessStatus, CompanySummary, BusinessSearchInput, CreateBusinessInput, AddUboInput, BeneficialOwner, BusinessListParams, WebhookEndpoint, CreateWebhookInput, UpdateWebhookInput, TestResult, Tenant, TenantDetail, TenantStatus, CreateTenantInput, UpdateTenantInput, TenantListParams, User, UserRole, UserStatus, CreateUserInput, UpdateUserInput, UserListParams, Subscription, SubscriptionStatus, UsageSummary, Invoice, CreateCheckoutInput, CheckoutSession, PortalSession, } from './types/api.js';
13
+ export type { PaginatedList, Verification, VerificationDetail, VerificationStatus, VerificationType, CreateVerificationInput, UpdateVerificationInput, DecideInput, InviteLink, InviteLinkParams, VerificationListParams, Document, DocumentStatus, DocumentType, UploadUrlInput, UploadUrlResult, DownloadUrlResult, Screening, ScreeningDetail, ScreeningStatus, MatchStatus, CreateScreeningInput, BatchScreeningInput, BatchResult, ReviewInput, EntityDetails, ScreeningListParams, Case, CaseDetail, CaseNote, CaseStatus, CasePriority, AssignInput, AddNoteInput, EscalateInput, ResolveInput, CaseStats, CaseListParams, BusinessEntity, BusinessDetail, BusinessStatus, CompanySummary, BusinessSearchInput, CreateBusinessInput, AddUboInput, BeneficialOwner, BusinessListParams, WebhookEndpoint, CreateWebhookInput, UpdateWebhookInput, TestResult, Tenant, TenantDetail, TenantStatus, CreateTenantInput, UpdateTenantInput, TenantListParams, User, UserRole, UserStatus, CreateUserInput, UpdateUserInput, UserListParams, Subscription, SubscriptionStatus, UsageSummary, Invoice, CreateCheckoutInput, CheckoutSession, PortalSession, Transaction, TransactionDetail, TransactionList, TransactionListParams, IngestTransactionBatchInput, IngestTransactionBatchResult, TransactionBatchRow, TmAlert, TmAlertList, TmAlertSeverity, TmAlertStatus, TmAlertStatusTransition, TmAlertListParams, UpdateTmAlertStatusInput, MonitoringStatus, TriggerRescreeningResult, ExpiringDocument, ExpiringDocumentsList, ExpiringDocumentsListParams, MonitoringAlert, MonitoringAlertsList, MonitoringAlertsListParams, Sar, SarStatus, SarList, SarListParams, SarDownload, SarExportFormat, CreateSarInput, UpdateSarNarrativeInput, UpdateSarSubmissionRefInput, SarTransitionInput, ComplianceRules, ComplianceRule, UpdateComplianceRulesInput, JurisdictionRules, CountryRiskTable, DefaultSequence, TenantSequenceConfig, UpdateSequenceConfigInput, ResolvedSequence, ResolveSequenceParams, SequenceExecutionSummary, } from './types/api.js';
9
14
  export type { paths, components, operations } from './types/generated.js';
10
15
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,aAAa,CAAC;AAC5C,OAAO,EAAE,sBAAsB,EAAE,MAAM,2BAA2B,CAAC;AACnE,OAAO,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AAEzD,YAAY,EACV,YAAY,EACZ,kBAAkB,EAClB,eAAe,EACf,gBAAgB,EAChB,kBAAkB,EAClB,UAAU,GACX,MAAM,wBAAwB,CAAC;AAEhC,YAAY,EAAE,mBAAmB,EAAE,MAAM,aAAa,CAAC;AACvD,YAAY,EAAE,4BAA4B,EAAE,MAAM,2BAA2B,CAAC;AAE9E,OAAO,EACL,YAAY,EACZ,mBAAmB,EACnB,kBAAkB,EAClB,aAAa,EACb,eAAe,EACf,cAAc,EACd,cAAc,EACd,WAAW,GACZ,MAAM,aAAa,CAAC;AAErB,YAAY,EACV,aAAa,EACb,YAAY,EACZ,kBAAkB,EAClB,kBAAkB,EAClB,gBAAgB,EAChB,uBAAuB,EACvB,uBAAuB,EACvB,WAAW,EACX,UAAU,EACV,gBAAgB,EAChB,sBAAsB,EACtB,QAAQ,EACR,cAAc,EACd,YAAY,EACZ,cAAc,EACd,eAAe,EACf,iBAAiB,EACjB,SAAS,EACT,eAAe,EACf,eAAe,EACf,WAAW,EACX,oBAAoB,EACpB,mBAAmB,EACnB,WAAW,EACX,WAAW,EACX,aAAa,EACb,mBAAmB,EACnB,IAAI,EACJ,UAAU,EACV,QAAQ,EACR,UAAU,EACV,YAAY,EACZ,WAAW,EACX,YAAY,EACZ,aAAa,EACb,YAAY,EACZ,SAAS,EACT,cAAc,EACd,cAAc,EACd,cAAc,EACd,cAAc,EACd,cAAc,EACd,mBAAmB,EACnB,mBAAmB,EACnB,WAAW,EACX,eAAe,EACf,kBAAkB,EAClB,eAAe,EACf,kBAAkB,EAClB,kBAAkB,EAClB,UAAU,EACV,MAAM,EACN,YAAY,EACZ,YAAY,EACZ,iBAAiB,EACjB,iBAAiB,EACjB,gBAAgB,EAChB,IAAI,EACJ,QAAQ,EACR,UAAU,EACV,eAAe,EACf,eAAe,EACf,cAAc,EACd,YAAY,EACZ,kBAAkB,EAClB,YAAY,EACZ,OAAO,EACP,mBAAmB,EACnB,eAAe,EACf,aAAa,GACd,MAAM,gBAAgB,CAAC;AAGxB,YAAY,EAAE,KAAK,EAAE,UAAU,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
package/dist/index.js CHANGED
@@ -1,12 +1,22 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ServerError = exports.PlanLimitError = exports.RateLimitError = exports.ValidationError = exports.NotFoundError = exports.AuthorizationError = exports.AuthenticationError = exports.PaciKycError = exports.ReportsResource = exports.verifyWebhookSignature = exports.PaciKycClient = void 0;
3
+ exports.ServerError = exports.PlanLimitError = exports.RateLimitError = exports.ValidationError = exports.NotFoundError = exports.AuthorizationError = exports.AuthenticationError = exports.PaciKycError = exports.RulesResource = exports.SarResource = exports.MonitoringResource = exports.TransactionMonitoringResource = exports.TransactionsResource = exports.ReportsResource = exports.verifyWebhookSignature = exports.PaciKycClient = void 0;
4
4
  var client_js_1 = require("./client.js");
5
5
  Object.defineProperty(exports, "PaciKycClient", { enumerable: true, get: function () { return client_js_1.PaciKycClient; } });
6
6
  var webhook_verification_js_1 = require("./webhook-verification.js");
7
7
  Object.defineProperty(exports, "verifyWebhookSignature", { enumerable: true, get: function () { return webhook_verification_js_1.verifyWebhookSignature; } });
8
8
  var reports_js_1 = require("./resources/reports.js");
9
9
  Object.defineProperty(exports, "ReportsResource", { enumerable: true, get: function () { return reports_js_1.ReportsResource; } });
10
+ var transactions_js_1 = require("./resources/transactions.js");
11
+ Object.defineProperty(exports, "TransactionsResource", { enumerable: true, get: function () { return transactions_js_1.TransactionsResource; } });
12
+ var transaction_monitoring_js_1 = require("./resources/transaction-monitoring.js");
13
+ Object.defineProperty(exports, "TransactionMonitoringResource", { enumerable: true, get: function () { return transaction_monitoring_js_1.TransactionMonitoringResource; } });
14
+ var monitoring_js_1 = require("./resources/monitoring.js");
15
+ Object.defineProperty(exports, "MonitoringResource", { enumerable: true, get: function () { return monitoring_js_1.MonitoringResource; } });
16
+ var sar_js_1 = require("./resources/sar.js");
17
+ Object.defineProperty(exports, "SarResource", { enumerable: true, get: function () { return sar_js_1.SarResource; } });
18
+ var rules_js_1 = require("./resources/rules.js");
19
+ Object.defineProperty(exports, "RulesResource", { enumerable: true, get: function () { return rules_js_1.RulesResource; } });
10
20
  var errors_js_1 = require("./errors.js");
11
21
  Object.defineProperty(exports, "PaciKycError", { enumerable: true, get: function () { return errors_js_1.PaciKycError; } });
12
22
  Object.defineProperty(exports, "AuthenticationError", { enumerable: true, get: function () { return errors_js_1.AuthenticationError; } });
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;AAAA,yCAA4C;AAAnC,0GAAA,aAAa,OAAA;AACtB,qEAAmE;AAA1D,iIAAA,sBAAsB,OAAA;AAC/B,qDAAyD;AAAhD,6GAAA,eAAe,OAAA;AAcxB,yCASqB;AARnB,yGAAA,YAAY,OAAA;AACZ,gHAAA,mBAAmB,OAAA;AACnB,+GAAA,kBAAkB,OAAA;AAClB,0GAAA,aAAa,OAAA;AACb,4GAAA,eAAe,OAAA;AACf,2GAAA,cAAc,OAAA;AACd,2GAAA,cAAc,OAAA;AACd,wGAAA,WAAW,OAAA"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;AAAA,yCAA4C;AAAnC,0GAAA,aAAa,OAAA;AACtB,qEAAmE;AAA1D,iIAAA,sBAAsB,OAAA;AAC/B,qDAAyD;AAAhD,6GAAA,eAAe,OAAA;AACxB,+DAAmE;AAA1D,uHAAA,oBAAoB,OAAA;AAC7B,mFAAsF;AAA7E,0IAAA,6BAA6B,OAAA;AACtC,2DAA+D;AAAtD,mHAAA,kBAAkB,OAAA;AAC3B,6CAAiD;AAAxC,qGAAA,WAAW,OAAA;AACpB,iDAAqD;AAA5C,yGAAA,aAAa,OAAA;AActB,yCASqB;AARnB,yGAAA,YAAY,OAAA;AACZ,gHAAA,mBAAmB,OAAA;AACnB,+GAAA,kBAAkB,OAAA;AAClB,0GAAA,aAAa,OAAA;AACb,4GAAA,eAAe,OAAA;AACf,2GAAA,cAAc,OAAA;AACd,2GAAA,cAAc,OAAA;AACd,wGAAA,WAAW,OAAA"}
@@ -0,0 +1,22 @@
1
+ import type { HttpClient } from '../http.js';
2
+ import type { ExpiringDocument, ExpiringDocumentsList, ExpiringDocumentsListParams, MonitoringAlert, MonitoringAlertsList, MonitoringAlertsListParams, MonitoringStatus, TriggerRescreeningResult } from '../types/api.js';
3
+ /**
4
+ * Ongoing customer due-diligence: periodic sanctions/PEP re-screening and
5
+ * identity-document expiry tracking. Distinct from
6
+ * {@link import('./transaction-monitoring.js').TransactionMonitoringResource},
7
+ * which watches transactional behaviour.
8
+ */
9
+ export declare class MonitoringResource {
10
+ private readonly http;
11
+ constructor(http: HttpClient);
12
+ /** Re-screening configuration plus aggregate counts (screened, matches, expiring docs, in-progress re-verifications). */
13
+ getStatus(): Promise<MonitoringStatus>;
14
+ /** Manually enqueue a re-screening run for the tenant. Accepted asynchronously (HTTP 202). */
15
+ triggerRescreening(): Promise<TriggerRescreeningResult>;
16
+ listExpiringDocuments(params?: ExpiringDocumentsListParams): Promise<ExpiringDocumentsList>;
17
+ listAlerts(params?: MonitoringAlertsListParams): Promise<MonitoringAlertsList>;
18
+ acknowledgeAlert(id: string): Promise<MonitoringAlert>;
19
+ listAllAlerts(params?: Omit<MonitoringAlertsListParams, 'page'>): AsyncGenerator<MonitoringAlert, void, undefined>;
20
+ listAllExpiringDocuments(params?: Omit<ExpiringDocumentsListParams, 'page'>): AsyncGenerator<ExpiringDocument, void, undefined>;
21
+ }
22
+ //# sourceMappingURL=monitoring.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"monitoring.d.ts","sourceRoot":"","sources":["../../src/resources/monitoring.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAC7C,OAAO,KAAK,EACV,gBAAgB,EAChB,qBAAqB,EACrB,2BAA2B,EAC3B,eAAe,EACf,oBAAoB,EACpB,0BAA0B,EAC1B,gBAAgB,EAChB,wBAAwB,EACzB,MAAM,iBAAiB,CAAC;AAIzB;;;;;GAKG;AACH,qBAAa,kBAAkB;IACjB,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAAJ,IAAI,EAAE,UAAU;IAE7C,yHAAyH;IACzH,SAAS,IAAI,OAAO,CAAC,gBAAgB,CAAC;IAItC,8FAA8F;IAC9F,kBAAkB,IAAI,OAAO,CAAC,wBAAwB,CAAC;IAIvD,qBAAqB,CAAC,MAAM,CAAC,EAAE,2BAA2B,GAAG,OAAO,CAAC,qBAAqB,CAAC;IAO3F,UAAU,CAAC,MAAM,CAAC,EAAE,0BAA0B,GAAG,OAAO,CAAC,oBAAoB,CAAC;IAO9E,gBAAgB,CAAC,EAAE,EAAE,MAAM,GAAG,OAAO,CAAC,eAAe,CAAC;IAI/C,aAAa,CAClB,MAAM,CAAC,EAAE,IAAI,CAAC,0BAA0B,EAAE,MAAM,CAAC,GAChD,cAAc,CAAC,eAAe,EAAE,IAAI,EAAE,SAAS,CAAC;IAc5C,wBAAwB,CAC7B,MAAM,CAAC,EAAE,IAAI,CAAC,2BAA2B,EAAE,MAAM,CAAC,GACjD,cAAc,CAAC,gBAAgB,EAAE,IAAI,EAAE,SAAS,CAAC;CAarD"}
@@ -0,0 +1,61 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.MonitoringResource = void 0;
4
+ const BASE_PATH = '/api/v1/monitoring';
5
+ /**
6
+ * Ongoing customer due-diligence: periodic sanctions/PEP re-screening and
7
+ * identity-document expiry tracking. Distinct from
8
+ * {@link import('./transaction-monitoring.js').TransactionMonitoringResource},
9
+ * which watches transactional behaviour.
10
+ */
11
+ class MonitoringResource {
12
+ http;
13
+ constructor(http) {
14
+ this.http = http;
15
+ }
16
+ /** Re-screening configuration plus aggregate counts (screened, matches, expiring docs, in-progress re-verifications). */
17
+ getStatus() {
18
+ return this.http.get(`${BASE_PATH}/status`);
19
+ }
20
+ /** Manually enqueue a re-screening run for the tenant. Accepted asynchronously (HTTP 202). */
21
+ triggerRescreening() {
22
+ return this.http.post(`${BASE_PATH}/trigger`);
23
+ }
24
+ listExpiringDocuments(params) {
25
+ return this.http.get(`${BASE_PATH}/expiring-documents`, params);
26
+ }
27
+ listAlerts(params) {
28
+ return this.http.get(`${BASE_PATH}/alerts`, params);
29
+ }
30
+ acknowledgeAlert(id) {
31
+ return this.http.post(`${BASE_PATH}/alerts/${id}/acknowledge`);
32
+ }
33
+ async *listAllAlerts(params) {
34
+ let page = 1;
35
+ const limit = params?.limit ?? 50;
36
+ while (true) {
37
+ const result = await this.listAlerts({ ...params, page, limit });
38
+ for (const item of result.data) {
39
+ yield item;
40
+ }
41
+ if (page >= result.totalPages)
42
+ break;
43
+ page++;
44
+ }
45
+ }
46
+ async *listAllExpiringDocuments(params) {
47
+ let page = 1;
48
+ const limit = params?.limit ?? 50;
49
+ while (true) {
50
+ const result = await this.listExpiringDocuments({ ...params, page, limit });
51
+ for (const item of result.data) {
52
+ yield item;
53
+ }
54
+ if (page >= result.totalPages)
55
+ break;
56
+ page++;
57
+ }
58
+ }
59
+ }
60
+ exports.MonitoringResource = MonitoringResource;
61
+ //# sourceMappingURL=monitoring.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"monitoring.js","sourceRoot":"","sources":["../../src/resources/monitoring.ts"],"names":[],"mappings":";;;AAYA,MAAM,SAAS,GAAG,oBAAoB,CAAC;AAEvC;;;;;GAKG;AACH,MAAa,kBAAkB;IACA;IAA7B,YAA6B,IAAgB;QAAhB,SAAI,GAAJ,IAAI,CAAY;IAAG,CAAC;IAEjD,yHAAyH;IACzH,SAAS;QACP,OAAO,IAAI,CAAC,IAAI,CAAC,GAAG,CAAmB,GAAG,SAAS,SAAS,CAAC,CAAC;IAChE,CAAC;IAED,8FAA8F;IAC9F,kBAAkB;QAChB,OAAO,IAAI,CAAC,IAAI,CAAC,IAAI,CAA2B,GAAG,SAAS,UAAU,CAAC,CAAC;IAC1E,CAAC;IAED,qBAAqB,CAAC,MAAoC;QACxD,OAAO,IAAI,CAAC,IAAI,CAAC,GAAG,CAClB,GAAG,SAAS,qBAAqB,EACjC,MAA+D,CAChE,CAAC;IACJ,CAAC;IAED,UAAU,CAAC,MAAmC;QAC5C,OAAO,IAAI,CAAC,IAAI,CAAC,GAAG,CAClB,GAAG,SAAS,SAAS,EACrB,MAA+D,CAChE,CAAC;IACJ,CAAC;IAED,gBAAgB,CAAC,EAAU;QACzB,OAAO,IAAI,CAAC,IAAI,CAAC,IAAI,CAAkB,GAAG,SAAS,WAAW,EAAE,cAAc,CAAC,CAAC;IAClF,CAAC;IAED,KAAK,CAAC,CAAC,aAAa,CAClB,MAAiD;QAEjD,IAAI,IAAI,GAAG,CAAC,CAAC;QACb,MAAM,KAAK,GAAG,MAAM,EAAE,KAAK,IAAI,EAAE,CAAC;QAElC,OAAO,IAAI,EAAE,CAAC;YACZ,MAAM,MAAM,GAAG,MAAM,IAAI,CAAC,UAAU,CAAC,EAAE,GAAG,MAAM,EAAE,IAAI,EAAE,KAAK,EAAE,CAAC,CAAC;YACjE,KAAK,MAAM,IAAI,IAAI,MAAM,CAAC,IAAI,EAAE,CAAC;gBAC/B,MAAM,IAAI,CAAC;YACb,CAAC;YACD,IAAI,IAAI,IAAI,MAAM,CAAC,UAAU;gBAAE,MAAM;YACrC,IAAI,EAAE,CAAC;QACT,CAAC;IACH,CAAC;IAED,KAAK,CAAC,CAAC,wBAAwB,CAC7B,MAAkD;QAElD,IAAI,IAAI,GAAG,CAAC,CAAC;QACb,MAAM,KAAK,GAAG,MAAM,EAAE,KAAK,IAAI,EAAE,CAAC;QAElC,OAAO,IAAI,EAAE,CAAC;YACZ,MAAM,MAAM,GAAG,MAAM,IAAI,CAAC,qBAAqB,CAAC,EAAE,GAAG,MAAM,EAAE,IAAI,EAAE,KAAK,EAAE,CAAC,CAAC;YAC5E,KAAK,MAAM,IAAI,IAAI,MAAM,CAAC,IAAI,EAAE,CAAC;gBAC/B,MAAM,IAAI,CAAC;YACb,CAAC;YACD,IAAI,IAAI,IAAI,MAAM,CAAC,UAAU;gBAAE,MAAM;YACrC,IAAI,EAAE,CAAC;QACT,CAAC;IACH,CAAC;CACF;AA9DD,gDA8DC"}
@@ -0,0 +1,29 @@
1
+ import type { HttpClient } from '../http.js';
2
+ import type { ComplianceRules, CountryRiskTable, DefaultSequence, JurisdictionRules, ResolvedSequence, ResolveSequenceParams, SequenceExecutionSummary, TenantSequenceConfig, UpdateComplianceRulesInput, UpdateSequenceConfigInput } from '../types/api.js';
3
+ /**
4
+ * Tenant compliance-rules configuration and per-jurisdiction verification
5
+ * sequences (the merged default + tenant-override view).
6
+ */
7
+ export declare class RulesResource {
8
+ private readonly http;
9
+ constructor(http: HttpClient);
10
+ /** Effective rules for the tenant (defaults merged with overrides), optionally scoped to a jurisdiction. */
11
+ get(jurisdiction?: string): Promise<ComplianceRules>;
12
+ /** Apply a partial update to the tenant compliance-rules configuration (Professional plan+). */
13
+ update(data: UpdateComplianceRulesInput): Promise<ComplianceRules>;
14
+ /** Supported jurisdictions with rule summaries and EDD triggers. */
15
+ listJurisdictions(): Promise<JurisdictionRules>;
16
+ /** Country risk-rating table including tenant-specific overrides. */
17
+ getCountryRisk(): Promise<CountryRiskTable>;
18
+ /** Built-in default verification sequences for every supported jurisdiction. */
19
+ listDefaultSequences(): Promise<DefaultSequence[]>;
20
+ /** The tenant's verification-sequence configuration, including custom overrides. */
21
+ getSequenceConfig(): Promise<TenantSequenceConfig>;
22
+ /** Apply a partial update to the tenant verification-sequence configuration (Professional plan+). */
23
+ updateSequenceConfig(data: UpdateSequenceConfigInput): Promise<TenantSequenceConfig>;
24
+ /** The effective sequence that would run for a jurisdiction/type, accounting for overrides and defaults. */
25
+ resolveSequence(params: ResolveSequenceParams): Promise<ResolvedSequence>;
26
+ /** Step-by-step sequence execution trail for a verification. */
27
+ getExecutionSummary(verificationId: string): Promise<SequenceExecutionSummary>;
28
+ }
29
+ //# sourceMappingURL=rules.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"rules.d.ts","sourceRoot":"","sources":["../../src/resources/rules.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAC7C,OAAO,KAAK,EACV,eAAe,EACf,gBAAgB,EAChB,eAAe,EACf,iBAAiB,EACjB,gBAAgB,EAChB,qBAAqB,EACrB,wBAAwB,EACxB,oBAAoB,EACpB,0BAA0B,EAC1B,yBAAyB,EAC1B,MAAM,iBAAiB,CAAC;AAIzB;;;GAGG;AACH,qBAAa,aAAa;IACZ,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAAJ,IAAI,EAAE,UAAU;IAE7C,4GAA4G;IAC5G,GAAG,CAAC,YAAY,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,eAAe,CAAC;IAIpD,gGAAgG;IAChG,MAAM,CAAC,IAAI,EAAE,0BAA0B,GAAG,OAAO,CAAC,eAAe,CAAC;IAIlE,oEAAoE;IACpE,iBAAiB,IAAI,OAAO,CAAC,iBAAiB,CAAC;IAI/C,qEAAqE;IACrE,cAAc,IAAI,OAAO,CAAC,gBAAgB,CAAC;IAI3C,gFAAgF;IAChF,oBAAoB,IAAI,OAAO,CAAC,eAAe,EAAE,CAAC;IAIlD,oFAAoF;IACpF,iBAAiB,IAAI,OAAO,CAAC,oBAAoB,CAAC;IAIlD,qGAAqG;IACrG,oBAAoB,CAAC,IAAI,EAAE,yBAAyB,GAAG,OAAO,CAAC,oBAAoB,CAAC;IAIpF,4GAA4G;IAC5G,eAAe,CAAC,MAAM,EAAE,qBAAqB,GAAG,OAAO,CAAC,gBAAgB,CAAC;IAOzE,gEAAgE;IAChE,mBAAmB,CAAC,cAAc,EAAE,MAAM,GAAG,OAAO,CAAC,wBAAwB,CAAC;CAK/E"}
@@ -0,0 +1,55 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.RulesResource = void 0;
4
+ const BASE_PATH = '/api/v1/rules';
5
+ /**
6
+ * Tenant compliance-rules configuration and per-jurisdiction verification
7
+ * sequences (the merged default + tenant-override view).
8
+ */
9
+ class RulesResource {
10
+ http;
11
+ constructor(http) {
12
+ this.http = http;
13
+ }
14
+ /** Effective rules for the tenant (defaults merged with overrides), optionally scoped to a jurisdiction. */
15
+ get(jurisdiction) {
16
+ return this.http.get(BASE_PATH, jurisdiction ? { jurisdiction } : undefined);
17
+ }
18
+ /** Apply a partial update to the tenant compliance-rules configuration (Professional plan+). */
19
+ update(data) {
20
+ return this.http.put(BASE_PATH, data);
21
+ }
22
+ /** Supported jurisdictions with rule summaries and EDD triggers. */
23
+ listJurisdictions() {
24
+ return this.http.get(`${BASE_PATH}/jurisdictions`);
25
+ }
26
+ /** Country risk-rating table including tenant-specific overrides. */
27
+ getCountryRisk() {
28
+ return this.http.get(`${BASE_PATH}/country-risk`);
29
+ }
30
+ /** Built-in default verification sequences for every supported jurisdiction. */
31
+ listDefaultSequences() {
32
+ return this.http.get(`${BASE_PATH}/sequences/defaults`);
33
+ }
34
+ /** The tenant's verification-sequence configuration, including custom overrides. */
35
+ getSequenceConfig() {
36
+ return this.http.get(`${BASE_PATH}/sequences`);
37
+ }
38
+ /** Apply a partial update to the tenant verification-sequence configuration (Professional plan+). */
39
+ updateSequenceConfig(data) {
40
+ return this.http.put(`${BASE_PATH}/sequences`, data);
41
+ }
42
+ /** The effective sequence that would run for a jurisdiction/type, accounting for overrides and defaults. */
43
+ resolveSequence(params) {
44
+ return this.http.get(`${BASE_PATH}/sequences/resolve`, {
45
+ jurisdiction: params.jurisdiction,
46
+ type: params.type,
47
+ });
48
+ }
49
+ /** Step-by-step sequence execution trail for a verification. */
50
+ getExecutionSummary(verificationId) {
51
+ return this.http.get(`${BASE_PATH}/sequences/execution/${verificationId}`);
52
+ }
53
+ }
54
+ exports.RulesResource = RulesResource;
55
+ //# sourceMappingURL=rules.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"rules.js","sourceRoot":"","sources":["../../src/resources/rules.ts"],"names":[],"mappings":";;;AAcA,MAAM,SAAS,GAAG,eAAe,CAAC;AAElC;;;GAGG;AACH,MAAa,aAAa;IACK;IAA7B,YAA6B,IAAgB;QAAhB,SAAI,GAAJ,IAAI,CAAY;IAAG,CAAC;IAEjD,4GAA4G;IAC5G,GAAG,CAAC,YAAqB;QACvB,OAAO,IAAI,CAAC,IAAI,CAAC,GAAG,CAAkB,SAAS,EAAE,YAAY,CAAC,CAAC,CAAC,EAAE,YAAY,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC;IAChG,CAAC;IAED,gGAAgG;IAChG,MAAM,CAAC,IAAgC;QACrC,OAAO,IAAI,CAAC,IAAI,CAAC,GAAG,CAAkB,SAAS,EAAE,IAAI,CAAC,CAAC;IACzD,CAAC;IAED,oEAAoE;IACpE,iBAAiB;QACf,OAAO,IAAI,CAAC,IAAI,CAAC,GAAG,CAAoB,GAAG,SAAS,gBAAgB,CAAC,CAAC;IACxE,CAAC;IAED,qEAAqE;IACrE,cAAc;QACZ,OAAO,IAAI,CAAC,IAAI,CAAC,GAAG,CAAmB,GAAG,SAAS,eAAe,CAAC,CAAC;IACtE,CAAC;IAED,gFAAgF;IAChF,oBAAoB;QAClB,OAAO,IAAI,CAAC,IAAI,CAAC,GAAG,CAAoB,GAAG,SAAS,qBAAqB,CAAC,CAAC;IAC7E,CAAC;IAED,oFAAoF;IACpF,iBAAiB;QACf,OAAO,IAAI,CAAC,IAAI,CAAC,GAAG,CAAuB,GAAG,SAAS,YAAY,CAAC,CAAC;IACvE,CAAC;IAED,qGAAqG;IACrG,oBAAoB,CAAC,IAA+B;QAClD,OAAO,IAAI,CAAC,IAAI,CAAC,GAAG,CAAuB,GAAG,SAAS,YAAY,EAAE,IAAI,CAAC,CAAC;IAC7E,CAAC;IAED,4GAA4G;IAC5G,eAAe,CAAC,MAA6B;QAC3C,OAAO,IAAI,CAAC,IAAI,CAAC,GAAG,CAAmB,GAAG,SAAS,oBAAoB,EAAE;YACvE,YAAY,EAAE,MAAM,CAAC,YAAY;YACjC,IAAI,EAAE,MAAM,CAAC,IAAI;SAClB,CAAC,CAAC;IACL,CAAC;IAED,gEAAgE;IAChE,mBAAmB,CAAC,cAAsB;QACxC,OAAO,IAAI,CAAC,IAAI,CAAC,GAAG,CAClB,GAAG,SAAS,wBAAwB,cAAc,EAAE,CACrD,CAAC;IACJ,CAAC;CACF;AApDD,sCAoDC"}
@@ -0,0 +1,30 @@
1
+ import type { HttpClient } from '../http.js';
2
+ import type { CreateSarInput, Sar, SarDownload, SarExportFormat, SarList, SarListParams, SarTransitionInput, UpdateSarNarrativeInput, UpdateSarSubmissionRefInput } from '../types/api.js';
3
+ /**
4
+ * Suspicious Activity Reports. Draft → submit (generates goAML 4.x XML + PDF
5
+ * to SeaweedFS) → acknowledge / reject. A SAR is created from a case.
6
+ */
7
+ export declare class SarResource {
8
+ private readonly http;
9
+ constructor(http: HttpClient);
10
+ /** Create a draft SAR from a case. */
11
+ create(data: CreateSarInput): Promise<Sar>;
12
+ list(params?: SarListParams): Promise<SarList>;
13
+ get(id: string): Promise<Sar>;
14
+ /** Update the narrative. Allowed only when DRAFT or REJECTED; a REJECTED SAR moves back to DRAFT. */
15
+ updateNarrative(id: string, data: UpdateSarNarrativeInput): Promise<Sar>;
16
+ /** Finalise the SAR: generates goAML XML + PDF exports and emits `sar.submitted`. Only from DRAFT. */
17
+ submit(id: string): Promise<Sar>;
18
+ /** Pre-signed download URL for the submitted export (15-minute expiry). */
19
+ getDownload(id: string, format: SarExportFormat): Promise<SarDownload>;
20
+ /** Pre-signed preview URL built from the current draft narrative, without changing state. DRAFT/REJECTED only. */
21
+ preview(id: string, format: SarExportFormat): Promise<SarDownload>;
22
+ /** Record/amend the FIU-issued submission reference. SUBMITTED or ACKNOWLEDGED only (TENANT_ADMIN). */
23
+ updateSubmissionRef(id: string, data: UpdateSarSubmissionRefInput): Promise<Sar>;
24
+ /** Mark a SUBMITTED SAR as ACKNOWLEDGED by the FIU (terminal). */
25
+ acknowledge(id: string, data?: SarTransitionInput): Promise<Sar>;
26
+ /** Record an FIU rejection; the SAR becomes re-editable (back to DRAFT). */
27
+ reject(id: string, data?: SarTransitionInput): Promise<Sar>;
28
+ listAll(params?: Omit<SarListParams, 'page'>): AsyncGenerator<Sar, void, undefined>;
29
+ }
30
+ //# sourceMappingURL=sar.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"sar.d.ts","sourceRoot":"","sources":["../../src/resources/sar.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAC7C,OAAO,KAAK,EACV,cAAc,EACd,GAAG,EACH,WAAW,EACX,eAAe,EACf,OAAO,EACP,aAAa,EACb,kBAAkB,EAClB,uBAAuB,EACvB,2BAA2B,EAC5B,MAAM,iBAAiB,CAAC;AAIzB;;;GAGG;AACH,qBAAa,WAAW;IACV,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAAJ,IAAI,EAAE,UAAU;IAE7C,sCAAsC;IACtC,MAAM,CAAC,IAAI,EAAE,cAAc,GAAG,OAAO,CAAC,GAAG,CAAC;IAI1C,IAAI,CAAC,MAAM,CAAC,EAAE,aAAa,GAAG,OAAO,CAAC,OAAO,CAAC;IAO9C,GAAG,CAAC,EAAE,EAAE,MAAM,GAAG,OAAO,CAAC,GAAG,CAAC;IAI7B,qGAAqG;IACrG,eAAe,CAAC,EAAE,EAAE,MAAM,EAAE,IAAI,EAAE,uBAAuB,GAAG,OAAO,CAAC,GAAG,CAAC;IAIxE,sGAAsG;IACtG,MAAM,CAAC,EAAE,EAAE,MAAM,GAAG,OAAO,CAAC,GAAG,CAAC;IAIhC,2EAA2E;IAC3E,WAAW,CAAC,EAAE,EAAE,MAAM,EAAE,MAAM,EAAE,eAAe,GAAG,OAAO,CAAC,WAAW,CAAC;IAItE,kHAAkH;IAClH,OAAO,CAAC,EAAE,EAAE,MAAM,EAAE,MAAM,EAAE,eAAe,GAAG,OAAO,CAAC,WAAW,CAAC;IAIlE,uGAAuG;IACvG,mBAAmB,CAAC,EAAE,EAAE,MAAM,EAAE,IAAI,EAAE,2BAA2B,GAAG,OAAO,CAAC,GAAG,CAAC;IAIhF,kEAAkE;IAClE,WAAW,CAAC,EAAE,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,kBAAkB,GAAG,OAAO,CAAC,GAAG,CAAC;IAIhE,4EAA4E;IAC5E,MAAM,CAAC,EAAE,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,kBAAkB,GAAG,OAAO,CAAC,GAAG,CAAC;IAIpD,OAAO,CAAC,MAAM,CAAC,EAAE,IAAI,CAAC,aAAa,EAAE,MAAM,CAAC,GAAG,cAAc,CAAC,GAAG,EAAE,IAAI,EAAE,SAAS,CAAC;CAa3F"}
@@ -0,0 +1,67 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.SarResource = void 0;
4
+ const BASE_PATH = '/api/v1/sar';
5
+ /**
6
+ * Suspicious Activity Reports. Draft → submit (generates goAML 4.x XML + PDF
7
+ * to SeaweedFS) → acknowledge / reject. A SAR is created from a case.
8
+ */
9
+ class SarResource {
10
+ http;
11
+ constructor(http) {
12
+ this.http = http;
13
+ }
14
+ /** Create a draft SAR from a case. */
15
+ create(data) {
16
+ return this.http.post(BASE_PATH, data);
17
+ }
18
+ list(params) {
19
+ return this.http.get(BASE_PATH, params);
20
+ }
21
+ get(id) {
22
+ return this.http.get(`${BASE_PATH}/${id}`);
23
+ }
24
+ /** Update the narrative. Allowed only when DRAFT or REJECTED; a REJECTED SAR moves back to DRAFT. */
25
+ updateNarrative(id, data) {
26
+ return this.http.patch(`${BASE_PATH}/${id}`, data);
27
+ }
28
+ /** Finalise the SAR: generates goAML XML + PDF exports and emits `sar.submitted`. Only from DRAFT. */
29
+ submit(id) {
30
+ return this.http.post(`${BASE_PATH}/${id}/submit`);
31
+ }
32
+ /** Pre-signed download URL for the submitted export (15-minute expiry). */
33
+ getDownload(id, format) {
34
+ return this.http.get(`${BASE_PATH}/${id}/download`, { format });
35
+ }
36
+ /** Pre-signed preview URL built from the current draft narrative, without changing state. DRAFT/REJECTED only. */
37
+ preview(id, format) {
38
+ return this.http.get(`${BASE_PATH}/${id}/preview`, { format });
39
+ }
40
+ /** Record/amend the FIU-issued submission reference. SUBMITTED or ACKNOWLEDGED only (TENANT_ADMIN). */
41
+ updateSubmissionRef(id, data) {
42
+ return this.http.patch(`${BASE_PATH}/${id}/submission-ref`, data);
43
+ }
44
+ /** Mark a SUBMITTED SAR as ACKNOWLEDGED by the FIU (terminal). */
45
+ acknowledge(id, data) {
46
+ return this.http.post(`${BASE_PATH}/${id}/acknowledge`, data);
47
+ }
48
+ /** Record an FIU rejection; the SAR becomes re-editable (back to DRAFT). */
49
+ reject(id, data) {
50
+ return this.http.post(`${BASE_PATH}/${id}/reject`, data);
51
+ }
52
+ async *listAll(params) {
53
+ let page = 1;
54
+ const limit = params?.limit ?? 50;
55
+ while (true) {
56
+ const result = await this.list({ ...params, page, limit });
57
+ for (const item of result.data) {
58
+ yield item;
59
+ }
60
+ if (page * limit >= result.total || result.data.length === 0)
61
+ break;
62
+ page++;
63
+ }
64
+ }
65
+ }
66
+ exports.SarResource = SarResource;
67
+ //# sourceMappingURL=sar.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"sar.js","sourceRoot":"","sources":["../../src/resources/sar.ts"],"names":[],"mappings":";;;AAaA,MAAM,SAAS,GAAG,aAAa,CAAC;AAEhC;;;GAGG;AACH,MAAa,WAAW;IACO;IAA7B,YAA6B,IAAgB;QAAhB,SAAI,GAAJ,IAAI,CAAY;IAAG,CAAC;IAEjD,sCAAsC;IACtC,MAAM,CAAC,IAAoB;QACzB,OAAO,IAAI,CAAC,IAAI,CAAC,IAAI,CAAM,SAAS,EAAE,IAAI,CAAC,CAAC;IAC9C,CAAC;IAED,IAAI,CAAC,MAAsB;QACzB,OAAO,IAAI,CAAC,IAAI,CAAC,GAAG,CAClB,SAAS,EACT,MAA+D,CAChE,CAAC;IACJ,CAAC;IAED,GAAG,CAAC,EAAU;QACZ,OAAO,IAAI,CAAC,IAAI,CAAC,GAAG,CAAM,GAAG,SAAS,IAAI,EAAE,EAAE,CAAC,CAAC;IAClD,CAAC;IAED,qGAAqG;IACrG,eAAe,CAAC,EAAU,EAAE,IAA6B;QACvD,OAAO,IAAI,CAAC,IAAI,CAAC,KAAK,CAAM,GAAG,SAAS,IAAI,EAAE,EAAE,EAAE,IAAI,CAAC,CAAC;IAC1D,CAAC;IAED,sGAAsG;IACtG,MAAM,CAAC,EAAU;QACf,OAAO,IAAI,CAAC,IAAI,CAAC,IAAI,CAAM,GAAG,SAAS,IAAI,EAAE,SAAS,CAAC,CAAC;IAC1D,CAAC;IAED,2EAA2E;IAC3E,WAAW,CAAC,EAAU,EAAE,MAAuB;QAC7C,OAAO,IAAI,CAAC,IAAI,CAAC,GAAG,CAAc,GAAG,SAAS,IAAI,EAAE,WAAW,EAAE,EAAE,MAAM,EAAE,CAAC,CAAC;IAC/E,CAAC;IAED,kHAAkH;IAClH,OAAO,CAAC,EAAU,EAAE,MAAuB;QACzC,OAAO,IAAI,CAAC,IAAI,CAAC,GAAG,CAAc,GAAG,SAAS,IAAI,EAAE,UAAU,EAAE,EAAE,MAAM,EAAE,CAAC,CAAC;IAC9E,CAAC;IAED,uGAAuG;IACvG,mBAAmB,CAAC,EAAU,EAAE,IAAiC;QAC/D,OAAO,IAAI,CAAC,IAAI,CAAC,KAAK,CAAM,GAAG,SAAS,IAAI,EAAE,iBAAiB,EAAE,IAAI,CAAC,CAAC;IACzE,CAAC;IAED,kEAAkE;IAClE,WAAW,CAAC,EAAU,EAAE,IAAyB;QAC/C,OAAO,IAAI,CAAC,IAAI,CAAC,IAAI,CAAM,GAAG,SAAS,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACrE,CAAC;IAED,4EAA4E;IAC5E,MAAM,CAAC,EAAU,EAAE,IAAyB;QAC1C,OAAO,IAAI,CAAC,IAAI,CAAC,IAAI,CAAM,GAAG,SAAS,IAAI,EAAE,SAAS,EAAE,IAAI,CAAC,CAAC;IAChE,CAAC;IAED,KAAK,CAAC,CAAC,OAAO,CAAC,MAAoC;QACjD,IAAI,IAAI,GAAG,CAAC,CAAC;QACb,MAAM,KAAK,GAAG,MAAM,EAAE,KAAK,IAAI,EAAE,CAAC;QAElC,OAAO,IAAI,EAAE,CAAC;YACZ,MAAM,MAAM,GAAG,MAAM,IAAI,CAAC,IAAI,CAAC,EAAE,GAAG,MAAM,EAAE,IAAI,EAAE,KAAK,EAAE,CAAC,CAAC;YAC3D,KAAK,MAAM,IAAI,IAAI,MAAM,CAAC,IAAI,EAAE,CAAC;gBAC/B,MAAM,IAAI,CAAC;YACb,CAAC;YACD,IAAI,IAAI,GAAG,KAAK,IAAI,MAAM,CAAC,KAAK,IAAI,MAAM,CAAC,IAAI,CAAC,MAAM,KAAK,CAAC;gBAAE,MAAM;YACpE,IAAI,EAAE,CAAC;QACT,CAAC;IACH,CAAC;CACF;AAnED,kCAmEC"}
@@ -0,0 +1,18 @@
1
+ import type { HttpClient } from '../http.js';
2
+ import type { TmAlert, TmAlertList, TmAlertListParams, UpdateTmAlertStatusInput } from '../types/api.js';
3
+ /**
4
+ * Alerts produced by the AML transaction-monitoring rule engine (structuring,
5
+ * velocity, dormant-active, PEP-transacting, corridor risk, counterparty
6
+ * sanctions). Feed transactions in via
7
+ * {@link import('./transactions.js').TransactionsResource.ingestBatch}.
8
+ */
9
+ export declare class TransactionMonitoringResource {
10
+ private readonly http;
11
+ constructor(http: HttpClient);
12
+ list(params?: TmAlertListParams): Promise<TmAlertList>;
13
+ get(id: string): Promise<TmAlert>;
14
+ /** Transition an alert (e.g. `INVESTIGATING`, `CLOSED_FALSE_POSITIVE`, `ESCALATED_TO_SAR`). */
15
+ updateStatus(id: string, data: UpdateTmAlertStatusInput): Promise<TmAlert>;
16
+ listAll(params?: Omit<TmAlertListParams, 'page'>): AsyncGenerator<TmAlert, void, undefined>;
17
+ }
18
+ //# sourceMappingURL=transaction-monitoring.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"transaction-monitoring.d.ts","sourceRoot":"","sources":["../../src/resources/transaction-monitoring.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAC7C,OAAO,KAAK,EACV,OAAO,EACP,WAAW,EACX,iBAAiB,EACjB,wBAAwB,EACzB,MAAM,iBAAiB,CAAC;AAIzB;;;;;GAKG;AACH,qBAAa,6BAA6B;IAC5B,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAAJ,IAAI,EAAE,UAAU;IAE7C,IAAI,CAAC,MAAM,CAAC,EAAE,iBAAiB,GAAG,OAAO,CAAC,WAAW,CAAC;IAOtD,GAAG,CAAC,EAAE,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,CAAC;IAIjC,+FAA+F;IAC/F,YAAY,CAAC,EAAE,EAAE,MAAM,EAAE,IAAI,EAAE,wBAAwB,GAAG,OAAO,CAAC,OAAO,CAAC;IAInE,OAAO,CACZ,MAAM,CAAC,EAAE,IAAI,CAAC,iBAAiB,EAAE,MAAM,CAAC,GACvC,cAAc,CAAC,OAAO,EAAE,IAAI,EAAE,SAAS,CAAC;CAa5C"}
@@ -0,0 +1,41 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.TransactionMonitoringResource = void 0;
4
+ const BASE_PATH = '/api/v1/tm/alerts';
5
+ /**
6
+ * Alerts produced by the AML transaction-monitoring rule engine (structuring,
7
+ * velocity, dormant-active, PEP-transacting, corridor risk, counterparty
8
+ * sanctions). Feed transactions in via
9
+ * {@link import('./transactions.js').TransactionsResource.ingestBatch}.
10
+ */
11
+ class TransactionMonitoringResource {
12
+ http;
13
+ constructor(http) {
14
+ this.http = http;
15
+ }
16
+ list(params) {
17
+ return this.http.get(BASE_PATH, params);
18
+ }
19
+ get(id) {
20
+ return this.http.get(`${BASE_PATH}/${id}`);
21
+ }
22
+ /** Transition an alert (e.g. `INVESTIGATING`, `CLOSED_FALSE_POSITIVE`, `ESCALATED_TO_SAR`). */
23
+ updateStatus(id, data) {
24
+ return this.http.patch(`${BASE_PATH}/${id}`, data);
25
+ }
26
+ async *listAll(params) {
27
+ let page = 1;
28
+ const limit = params?.limit ?? 50;
29
+ while (true) {
30
+ const result = await this.list({ ...params, page, limit });
31
+ for (const item of result.data) {
32
+ yield item;
33
+ }
34
+ if (page * limit >= result.total || result.data.length === 0)
35
+ break;
36
+ page++;
37
+ }
38
+ }
39
+ }
40
+ exports.TransactionMonitoringResource = TransactionMonitoringResource;
41
+ //# sourceMappingURL=transaction-monitoring.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"transaction-monitoring.js","sourceRoot":"","sources":["../../src/resources/transaction-monitoring.ts"],"names":[],"mappings":";;;AAQA,MAAM,SAAS,GAAG,mBAAmB,CAAC;AAEtC;;;;;GAKG;AACH,MAAa,6BAA6B;IACX;IAA7B,YAA6B,IAAgB;QAAhB,SAAI,GAAJ,IAAI,CAAY;IAAG,CAAC;IAEjD,IAAI,CAAC,MAA0B;QAC7B,OAAO,IAAI,CAAC,IAAI,CAAC,GAAG,CAClB,SAAS,EACT,MAA+D,CAChE,CAAC;IACJ,CAAC;IAED,GAAG,CAAC,EAAU;QACZ,OAAO,IAAI,CAAC,IAAI,CAAC,GAAG,CAAU,GAAG,SAAS,IAAI,EAAE,EAAE,CAAC,CAAC;IACtD,CAAC;IAED,+FAA+F;IAC/F,YAAY,CAAC,EAAU,EAAE,IAA8B;QACrD,OAAO,IAAI,CAAC,IAAI,CAAC,KAAK,CAAU,GAAG,SAAS,IAAI,EAAE,EAAE,EAAE,IAAI,CAAC,CAAC;IAC9D,CAAC;IAED,KAAK,CAAC,CAAC,OAAO,CACZ,MAAwC;QAExC,IAAI,IAAI,GAAG,CAAC,CAAC;QACb,MAAM,KAAK,GAAG,MAAM,EAAE,KAAK,IAAI,EAAE,CAAC;QAElC,OAAO,IAAI,EAAE,CAAC;YACZ,MAAM,MAAM,GAAG,MAAM,IAAI,CAAC,IAAI,CAAC,EAAE,GAAG,MAAM,EAAE,IAAI,EAAE,KAAK,EAAE,CAAC,CAAC;YAC3D,KAAK,MAAM,IAAI,IAAI,MAAM,CAAC,IAAI,EAAE,CAAC;gBAC/B,MAAM,IAAI,CAAC;YACb,CAAC;YACD,IAAI,IAAI,GAAG,KAAK,IAAI,MAAM,CAAC,KAAK,IAAI,MAAM,CAAC,IAAI,CAAC,MAAM,KAAK,CAAC;gBAAE,MAAM;YACpE,IAAI,EAAE,CAAC;QACT,CAAC;IACH,CAAC;CACF;AAlCD,sEAkCC"}
@@ -0,0 +1,19 @@
1
+ import type { HttpClient } from '../http.js';
2
+ import type { IngestTransactionBatchInput, IngestTransactionBatchResult, Transaction, TransactionDetail, TransactionList, TransactionListParams } from '../types/api.js';
3
+ /**
4
+ * Customer transaction history fed into ongoing AML transaction monitoring.
5
+ * Submit batches with {@link ingestBatch}; the rule engine produces alerts
6
+ * surfaced via {@link import('./transaction-monitoring.js').TransactionMonitoringResource}.
7
+ */
8
+ export declare class TransactionsResource {
9
+ private readonly http;
10
+ constructor(http: HttpClient);
11
+ /** Submit a batch of transactions for monitoring. Accepted asynchronously (HTTP 202). */
12
+ ingestBatch(data: IngestTransactionBatchInput): Promise<IngestTransactionBatchResult>;
13
+ /** Poll the processing status of a previously submitted batch. */
14
+ getBatchStatus(batchId: string): Promise<IngestTransactionBatchResult>;
15
+ list(params?: TransactionListParams): Promise<TransactionList>;
16
+ get(id: string): Promise<TransactionDetail>;
17
+ listAll(params?: Omit<TransactionListParams, 'page'>): AsyncGenerator<Transaction, void, undefined>;
18
+ }
19
+ //# sourceMappingURL=transactions.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"transactions.d.ts","sourceRoot":"","sources":["../../src/resources/transactions.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAC7C,OAAO,KAAK,EACV,2BAA2B,EAC3B,4BAA4B,EAC5B,WAAW,EACX,iBAAiB,EACjB,eAAe,EACf,qBAAqB,EACtB,MAAM,iBAAiB,CAAC;AAIzB;;;;GAIG;AACH,qBAAa,oBAAoB;IACnB,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAAJ,IAAI,EAAE,UAAU;IAE7C,yFAAyF;IACzF,WAAW,CAAC,IAAI,EAAE,2BAA2B,GAAG,OAAO,CAAC,4BAA4B,CAAC;IAIrF,kEAAkE;IAClE,cAAc,CAAC,OAAO,EAAE,MAAM,GAAG,OAAO,CAAC,4BAA4B,CAAC;IAItE,IAAI,CAAC,MAAM,CAAC,EAAE,qBAAqB,GAAG,OAAO,CAAC,eAAe,CAAC;IAO9D,GAAG,CAAC,EAAE,EAAE,MAAM,GAAG,OAAO,CAAC,iBAAiB,CAAC;IAIpC,OAAO,CACZ,MAAM,CAAC,EAAE,IAAI,CAAC,qBAAqB,EAAE,MAAM,CAAC,GAC3C,cAAc,CAAC,WAAW,EAAE,IAAI,EAAE,SAAS,CAAC;CAahD"}
@@ -0,0 +1,44 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.TransactionsResource = void 0;
4
+ const BASE_PATH = '/api/v1/transactions';
5
+ /**
6
+ * Customer transaction history fed into ongoing AML transaction monitoring.
7
+ * Submit batches with {@link ingestBatch}; the rule engine produces alerts
8
+ * surfaced via {@link import('./transaction-monitoring.js').TransactionMonitoringResource}.
9
+ */
10
+ class TransactionsResource {
11
+ http;
12
+ constructor(http) {
13
+ this.http = http;
14
+ }
15
+ /** Submit a batch of transactions for monitoring. Accepted asynchronously (HTTP 202). */
16
+ ingestBatch(data) {
17
+ return this.http.post(`${BASE_PATH}/batches`, data);
18
+ }
19
+ /** Poll the processing status of a previously submitted batch. */
20
+ getBatchStatus(batchId) {
21
+ return this.http.get(`${BASE_PATH}/batches/${batchId}`);
22
+ }
23
+ list(params) {
24
+ return this.http.get(BASE_PATH, params);
25
+ }
26
+ get(id) {
27
+ return this.http.get(`${BASE_PATH}/${id}`);
28
+ }
29
+ async *listAll(params) {
30
+ let page = 1;
31
+ const limit = params?.limit ?? 50;
32
+ while (true) {
33
+ const result = await this.list({ ...params, page, limit });
34
+ for (const item of result.data) {
35
+ yield item;
36
+ }
37
+ if (page >= result.totalPages)
38
+ break;
39
+ page++;
40
+ }
41
+ }
42
+ }
43
+ exports.TransactionsResource = TransactionsResource;
44
+ //# sourceMappingURL=transactions.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"transactions.js","sourceRoot":"","sources":["../../src/resources/transactions.ts"],"names":[],"mappings":";;;AAUA,MAAM,SAAS,GAAG,sBAAsB,CAAC;AAEzC;;;;GAIG;AACH,MAAa,oBAAoB;IACF;IAA7B,YAA6B,IAAgB;QAAhB,SAAI,GAAJ,IAAI,CAAY;IAAG,CAAC;IAEjD,yFAAyF;IACzF,WAAW,CAAC,IAAiC;QAC3C,OAAO,IAAI,CAAC,IAAI,CAAC,IAAI,CAA+B,GAAG,SAAS,UAAU,EAAE,IAAI,CAAC,CAAC;IACpF,CAAC;IAED,kEAAkE;IAClE,cAAc,CAAC,OAAe;QAC5B,OAAO,IAAI,CAAC,IAAI,CAAC,GAAG,CAA+B,GAAG,SAAS,YAAY,OAAO,EAAE,CAAC,CAAC;IACxF,CAAC;IAED,IAAI,CAAC,MAA8B;QACjC,OAAO,IAAI,CAAC,IAAI,CAAC,GAAG,CAClB,SAAS,EACT,MAA+D,CAChE,CAAC;IACJ,CAAC;IAED,GAAG,CAAC,EAAU;QACZ,OAAO,IAAI,CAAC,IAAI,CAAC,GAAG,CAAoB,GAAG,SAAS,IAAI,EAAE,EAAE,CAAC,CAAC;IAChE,CAAC;IAED,KAAK,CAAC,CAAC,OAAO,CACZ,MAA4C;QAE5C,IAAI,IAAI,GAAG,CAAC,CAAC;QACb,MAAM,KAAK,GAAG,MAAM,EAAE,KAAK,IAAI,EAAE,CAAC;QAElC,OAAO,IAAI,EAAE,CAAC;YACZ,MAAM,MAAM,GAAG,MAAM,IAAI,CAAC,IAAI,CAAC,EAAE,GAAG,MAAM,EAAE,IAAI,EAAE,KAAK,EAAE,CAAC,CAAC;YAC3D,KAAK,MAAM,IAAI,IAAI,MAAM,CAAC,IAAI,EAAE,CAAC;gBAC/B,MAAM,IAAI,CAAC;YACb,CAAC;YACD,IAAI,IAAI,IAAI,MAAM,CAAC,UAAU;gBAAE,MAAM;YACrC,IAAI,EAAE,CAAC;QACT,CAAC;IACH,CAAC;CACF;AAvCD,oDAuCC"}
@@ -133,6 +133,86 @@ export interface UserListParams extends ListQuery {
133
133
  role?: string;
134
134
  status?: string;
135
135
  }
136
+ export type Transaction = Schemas['TransactionResponseDto'];
137
+ export type TransactionDetail = Schemas['TransactionDetailResponseDto'];
138
+ export type TransactionList = Schemas['TransactionListResponseDto'];
139
+ export type IngestTransactionBatchInput = Schemas['IngestTransactionBatchSwaggerDto'];
140
+ export type IngestTransactionBatchResult = Schemas['IngestTransactionBatchResponseDto'];
141
+ export type TransactionBatchRow = Schemas['TransactionBatchRowSwaggerDto'];
142
+ export interface TransactionListParams extends Pick<ListQuery, 'page' | 'limit'> {
143
+ direction?: 'INBOUND' | 'OUTBOUND' | 'INTERNAL';
144
+ verificationId?: string;
145
+ from?: string;
146
+ to?: string;
147
+ }
148
+ export type TmAlert = Schemas['TmAlertResponseDto'];
149
+ export type TmAlertList = Schemas['TmAlertListResponseDto'];
150
+ export type TmAlertSeverity = TmAlert['severity'];
151
+ export type TmAlertStatus = TmAlert['status'];
152
+ /** Status transitions accepted by `PATCH /tm/alerts/:id`. */
153
+ export type TmAlertStatusTransition = 'INVESTIGATING' | 'CLOSED_FALSE_POSITIVE' | 'ESCALATED_TO_SAR';
154
+ export interface UpdateTmAlertStatusInput {
155
+ status: TmAlertStatusTransition;
156
+ }
157
+ export interface TmAlertListParams extends Pick<ListQuery, 'page' | 'limit'> {
158
+ status?: TmAlertStatus;
159
+ severity?: TmAlertSeverity;
160
+ verificationId?: string;
161
+ from?: string;
162
+ to?: string;
163
+ }
164
+ export type MonitoringStatus = Schemas['MonitoringStatusResponseDto'];
165
+ export type TriggerRescreeningResult = Schemas['TriggerRescreeningResponseDto'];
166
+ export type ExpiringDocument = Schemas['ExpiringDocumentResponseDto'];
167
+ export type ExpiringDocumentsList = Schemas['ExpiringDocumentsListResponseDto'];
168
+ export type MonitoringAlert = Schemas['MonitoringAlertResponseDto'];
169
+ export type MonitoringAlertsList = Schemas['MonitoringAlertsListResponseDto'];
170
+ export interface ExpiringDocumentsListParams extends Pick<ListQuery, 'page' | 'limit'> {
171
+ /** Look-ahead window in days (default: server-defined). */
172
+ withinDays?: number;
173
+ }
174
+ export interface MonitoringAlertsListParams extends Pick<ListQuery, 'page' | 'limit'> {
175
+ status?: string;
176
+ }
177
+ export type Sar = Schemas['SarResponseDto'];
178
+ export type SarStatus = Sar extends {
179
+ status: infer S;
180
+ } ? S : string;
181
+ export type CreateSarInput = Schemas['CreateSarSwaggerDto'];
182
+ export type UpdateSarNarrativeInput = Schemas['UpdateSarNarrativeSwaggerDto'];
183
+ export type SarDownload = Schemas['SarDownloadResponseDto'];
184
+ export type SarExportFormat = 'xml' | 'pdf';
185
+ export interface UpdateSarSubmissionRefInput {
186
+ submissionRef: string;
187
+ }
188
+ export interface SarTransitionInput {
189
+ submissionRef?: string;
190
+ }
191
+ export interface SarListParams extends Pick<ListQuery, 'page' | 'limit'> {
192
+ status?: SarStatus;
193
+ }
194
+ export interface SarList {
195
+ data: Sar[];
196
+ total: number;
197
+ page: number;
198
+ limit: number;
199
+ }
200
+ export type ComplianceRules = Schemas['RulesResponseDto'];
201
+ export type ComplianceRule = Schemas['ComplianceRuleDto'];
202
+ /** Partial update of the tenant compliance-rules configuration. */
203
+ export type UpdateComplianceRulesInput = Record<string, unknown>;
204
+ export type JurisdictionRules = Schemas['JurisdictionListResponseDto'];
205
+ export type CountryRiskTable = Schemas['CountryRiskResponseDto'];
206
+ export type DefaultSequence = Schemas['DefaultSequenceItemDto'];
207
+ export type TenantSequenceConfig = Schemas['TenantSequenceConfigDto'];
208
+ /** Partial update of the tenant verification-sequence configuration. */
209
+ export type UpdateSequenceConfigInput = Record<string, unknown>;
210
+ export type ResolvedSequence = Schemas['ResolveSequenceResponseDto'];
211
+ export type SequenceExecutionSummary = Schemas['SequenceExecutionResponseDto'];
212
+ export interface ResolveSequenceParams {
213
+ jurisdiction: string;
214
+ type?: 'INDIVIDUAL' | 'BUSINESS';
215
+ }
136
216
  export type Subscription = Schemas['BillingStatusResponseDto'];
137
217
  export type SubscriptionStatus = Subscription extends {
138
218
  status: infer S;
@@ -1 +1 @@
1
- {"version":3,"file":"api.d.ts","sourceRoot":"","sources":["../../src/types/api.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"api.d.ts","sourceRoot":"","sources":["../../src/types/api.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kypacs/sdk",
3
- "version": "1.0.0",
3
+ "version": "1.1.0",
4
4
  "description": "TypeScript SDK for the KYPACS API — typed methods for KYC/KYB verification, AML screening, and compliance management",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",