diff --git a/package.json b/package.json index a57d613bc28b..ed44baef109a 100644 --- a/package.json +++ b/package.json @@ -64,41 +64,38 @@ "jest-coverage": "jest --no-cache --coverage" }, "dependencies": { - "@types/buffer-from": "^1.1.0", + "@types/buffer-from": "^1.1.3", "@types/node": "*", - "@types/pako": "^1.0.3", + "@types/pako": "^1.0.7", "buffer-from": "^1.1.2", - "cross-fetch": "^3.1.5", - "form-data": "^4.0.4", + "cross-fetch": "^3.1.8", + "form-data": "^4.0.5", "loglevel": "^1.8.1", "pako": "^2.0.4" }, - "resolutions": { - "@pollyjs/adapter-node-http/nock": "^13.1.3" - }, "devDependencies": { "@cucumber/cucumber": "^9.2.0", "@cucumber/messages": "^22.0.0", "@pollyjs/adapter-node-http": "^6.0.5", "@pollyjs/core": "^6.0.5", "@pollyjs/persister-fs": "^6.0.5", - "@types/chai": "^4.3.4", - "@types/jest": "^29.5.2", + "@types/chai": "^4.3.20", + "@types/jest": "^29.5.14", "@typescript-eslint/eslint-plugin": "^5.54.0", - "@typescript-eslint/parser": "^5.54.0", - "chai": "^4.3.7", + "@typescript-eslint/parser": "^5.62.0", + "chai": "^4.3.10", "chai-quantifiers": "^1.0.17", - "dd-trace": "^4.3.0", + "dd-trace": "^4.55.0", "eslint": "^8.43.0", "eslint-plugin-import": "^2.27.5", "eslint-plugin-node": "^11.1.0", "eslint-plugin-unused-imports": "^2.0.0", "jest": "^29.5.0", - "nock": "^13.3.3", - "prettier": "^3.0.0", - "ts-jest": "^29.1.0", - "ts-node": "^10.9.1", - "typedoc": "^0.23.26", + "nock": "^13.3.8", + "prettier": "^3.0.3", + "ts-jest": "^29.1.5", + "ts-node": "^10.9.2", + "typedoc": "^0.23.28", "typescript": "4.8.4", "zstd.ts": "^1.1.3" }, diff --git a/packages/datadog-api-client-v1/apis/DashboardsApi.ts b/packages/datadog-api-client-v1/apis/DashboardsApi.ts index 4d9492751fdd..423d9e6ea6b8 100644 --- a/packages/datadog-api-client-v1/apis/DashboardsApi.ts +++ b/packages/datadog-api-client-v1/apis/DashboardsApi.ts @@ -1906,13 +1906,11 @@ export class DashboardsApi { param.start, options ); - const responseContext = await this.configuration.httpApi.send( - requestContext - ); + const responseContext = + await this.configuration.httpApi.send(requestContext); - const response = await this.responseProcessor.listDashboards( - responseContext - ); + const response = + await this.responseProcessor.listDashboards(responseContext); const responseDashboards = response.dashboards; if (responseDashboards === undefined) { break; diff --git a/packages/datadog-api-client-v1/apis/MonitorsApi.ts b/packages/datadog-api-client-v1/apis/MonitorsApi.ts index bd3e3836a486..c05984e98c09 100644 --- a/packages/datadog-api-client-v1/apis/MonitorsApi.ts +++ b/packages/datadog-api-client-v1/apis/MonitorsApi.ts @@ -1771,13 +1771,11 @@ export class MonitorsApi { param.pageSize, options ); - const responseContext = await this.configuration.httpApi.send( - requestContext - ); + const responseContext = + await this.configuration.httpApi.send(requestContext); - const response = await this.responseProcessor.listMonitors( - responseContext - ); + const response = + await this.responseProcessor.listMonitors(responseContext); const results = response; for (const item of results) { yield item; diff --git a/packages/datadog-api-client-v1/apis/NotebooksApi.ts b/packages/datadog-api-client-v1/apis/NotebooksApi.ts index 82ce89062480..7096bc2f9b88 100644 --- a/packages/datadog-api-client-v1/apis/NotebooksApi.ts +++ b/packages/datadog-api-client-v1/apis/NotebooksApi.ts @@ -820,13 +820,11 @@ export class NotebooksApi { param.type, options ); - const responseContext = await this.configuration.httpApi.send( - requestContext - ); + const responseContext = + await this.configuration.httpApi.send(requestContext); - const response = await this.responseProcessor.listNotebooks( - responseContext - ); + const response = + await this.responseProcessor.listNotebooks(responseContext); const responseData = response.data; if (responseData === undefined) { break; diff --git a/packages/datadog-api-client-v1/apis/ServiceLevelObjectiveCorrectionsApi.ts b/packages/datadog-api-client-v1/apis/ServiceLevelObjectiveCorrectionsApi.ts index d478499338d8..e3bfbf98e11b 100644 --- a/packages/datadog-api-client-v1/apis/ServiceLevelObjectiveCorrectionsApi.ts +++ b/packages/datadog-api-client-v1/apis/ServiceLevelObjectiveCorrectionsApi.ts @@ -697,13 +697,11 @@ export class ServiceLevelObjectiveCorrectionsApi { param.limit, options ); - const responseContext = await this.configuration.httpApi.send( - requestContext - ); + const responseContext = + await this.configuration.httpApi.send(requestContext); - const response = await this.responseProcessor.listSLOCorrection( - responseContext - ); + const response = + await this.responseProcessor.listSLOCorrection(responseContext); const responseData = response.data; if (responseData === undefined) { break; diff --git a/packages/datadog-api-client-v1/apis/ServiceLevelObjectivesApi.ts b/packages/datadog-api-client-v1/apis/ServiceLevelObjectivesApi.ts index 638e6647f182..7974a6afbeeb 100644 --- a/packages/datadog-api-client-v1/apis/ServiceLevelObjectivesApi.ts +++ b/packages/datadog-api-client-v1/apis/ServiceLevelObjectivesApi.ts @@ -1556,9 +1556,8 @@ export class ServiceLevelObjectivesApi { param.offset, options ); - const responseContext = await this.configuration.httpApi.send( - requestContext - ); + const responseContext = + await this.configuration.httpApi.send(requestContext); const response = await this.responseProcessor.listSLOs(responseContext); const responseData = response.data; diff --git a/packages/datadog-api-client-v1/apis/SyntheticsApi.ts b/packages/datadog-api-client-v1/apis/SyntheticsApi.ts index 4d494885ab85..c285c8da2379 100644 --- a/packages/datadog-api-client-v1/apis/SyntheticsApi.ts +++ b/packages/datadog-api-client-v1/apis/SyntheticsApi.ts @@ -4493,9 +4493,8 @@ export class SyntheticsApi { param.pageNumber, options ); - const responseContext = await this.configuration.httpApi.send( - requestContext - ); + const responseContext = + await this.configuration.httpApi.send(requestContext); const response = await this.responseProcessor.listTests(responseContext); const responseTests = response.tests; diff --git a/packages/datadog-api-client-v2/apis/AuditApi.ts b/packages/datadog-api-client-v2/apis/AuditApi.ts index d32ce12054e8..e413955a2626 100644 --- a/packages/datadog-api-client-v2/apis/AuditApi.ts +++ b/packages/datadog-api-client-v2/apis/AuditApi.ts @@ -368,13 +368,11 @@ export class AuditApi { param.pageLimit, options ); - const responseContext = await this.configuration.httpApi.send( - requestContext - ); + const responseContext = + await this.configuration.httpApi.send(requestContext); - const response = await this.responseProcessor.listAuditLogs( - responseContext - ); + const response = + await this.responseProcessor.listAuditLogs(responseContext); const responseData = response.data; if (responseData === undefined) { break; @@ -452,13 +450,11 @@ export class AuditApi { param.body, options ); - const responseContext = await this.configuration.httpApi.send( - requestContext - ); + const responseContext = + await this.configuration.httpApi.send(requestContext); - const response = await this.responseProcessor.searchAuditLogs( - responseContext - ); + const response = + await this.responseProcessor.searchAuditLogs(responseContext); const responseData = response.data; if (responseData === undefined) { break; diff --git a/packages/datadog-api-client-v2/apis/BitsAIApi.ts b/packages/datadog-api-client-v2/apis/BitsAIApi.ts index b81ee35744d4..ce9cb2b77a87 100644 --- a/packages/datadog-api-client-v2/apis/BitsAIApi.ts +++ b/packages/datadog-api-client-v2/apis/BitsAIApi.ts @@ -527,13 +527,11 @@ export class BitsAIApi { param.filterMonitorId, options ); - const responseContext = await this.configuration.httpApi.send( - requestContext - ); + const responseContext = + await this.configuration.httpApi.send(requestContext); - const response = await this.responseProcessor.listInvestigations( - responseContext - ); + const response = + await this.responseProcessor.listInvestigations(responseContext); const responseData = response.data; if (responseData === undefined) { break; diff --git a/packages/datadog-api-client-v2/apis/CIVisibilityPipelinesApi.ts b/packages/datadog-api-client-v2/apis/CIVisibilityPipelinesApi.ts index 32fddd271cfb..1fca0fb6a1ae 100644 --- a/packages/datadog-api-client-v2/apis/CIVisibilityPipelinesApi.ts +++ b/packages/datadog-api-client-v2/apis/CIVisibilityPipelinesApi.ts @@ -652,13 +652,11 @@ export class CIVisibilityPipelinesApi { param.pageLimit, options ); - const responseContext = await this.configuration.httpApi.send( - requestContext - ); + const responseContext = + await this.configuration.httpApi.send(requestContext); - const response = await this.responseProcessor.listCIAppPipelineEvents( - responseContext - ); + const response = + await this.responseProcessor.listCIAppPipelineEvents(responseContext); const responseData = response.data; if (responseData === undefined) { break; @@ -737,13 +735,11 @@ export class CIVisibilityPipelinesApi { param.body, options ); - const responseContext = await this.configuration.httpApi.send( - requestContext - ); + const responseContext = + await this.configuration.httpApi.send(requestContext); - const response = await this.responseProcessor.searchCIAppPipelineEvents( - responseContext - ); + const response = + await this.responseProcessor.searchCIAppPipelineEvents(responseContext); const responseData = response.data; if (responseData === undefined) { break; diff --git a/packages/datadog-api-client-v2/apis/CIVisibilityTestsApi.ts b/packages/datadog-api-client-v2/apis/CIVisibilityTestsApi.ts index c13ea320c073..ae56c22d0e98 100644 --- a/packages/datadog-api-client-v2/apis/CIVisibilityTestsApi.ts +++ b/packages/datadog-api-client-v2/apis/CIVisibilityTestsApi.ts @@ -509,13 +509,11 @@ export class CIVisibilityTestsApi { param.pageLimit, options ); - const responseContext = await this.configuration.httpApi.send( - requestContext - ); + const responseContext = + await this.configuration.httpApi.send(requestContext); - const response = await this.responseProcessor.listCIAppTestEvents( - responseContext - ); + const response = + await this.responseProcessor.listCIAppTestEvents(responseContext); const responseData = response.data; if (responseData === undefined) { break; @@ -591,13 +589,11 @@ export class CIVisibilityTestsApi { param.body, options ); - const responseContext = await this.configuration.httpApi.send( - requestContext - ); + const responseContext = + await this.configuration.httpApi.send(requestContext); - const response = await this.responseProcessor.searchCIAppTestEvents( - responseContext - ); + const response = + await this.responseProcessor.searchCIAppTestEvents(responseContext); const responseData = response.data; if (responseData === undefined) { break; diff --git a/packages/datadog-api-client-v2/apis/CaseManagementApi.ts b/packages/datadog-api-client-v2/apis/CaseManagementApi.ts index f3f96aeb44c4..3b6ce3b1ecc0 100644 --- a/packages/datadog-api-client-v2/apis/CaseManagementApi.ts +++ b/packages/datadog-api-client-v2/apis/CaseManagementApi.ts @@ -4595,13 +4595,11 @@ export class CaseManagementApi { param.sortAsc, options ); - const responseContext = await this.configuration.httpApi.send( - requestContext - ); + const responseContext = + await this.configuration.httpApi.send(requestContext); - const response = await this.responseProcessor.searchCases( - responseContext - ); + const response = + await this.responseProcessor.searchCases(responseContext); const responseData = response.data; if (responseData === undefined) { break; diff --git a/packages/datadog-api-client-v2/apis/ContainerImagesApi.ts b/packages/datadog-api-client-v2/apis/ContainerImagesApi.ts index 7d8f92a1a7bd..146f968492fa 100644 --- a/packages/datadog-api-client-v2/apis/ContainerImagesApi.ts +++ b/packages/datadog-api-client-v2/apis/ContainerImagesApi.ts @@ -243,13 +243,11 @@ export class ContainerImagesApi { param.pageCursor, options ); - const responseContext = await this.configuration.httpApi.send( - requestContext - ); + const responseContext = + await this.configuration.httpApi.send(requestContext); - const response = await this.responseProcessor.listContainerImages( - responseContext - ); + const response = + await this.responseProcessor.listContainerImages(responseContext); const responseData = response.data; if (responseData === undefined) { break; diff --git a/packages/datadog-api-client-v2/apis/ContainersApi.ts b/packages/datadog-api-client-v2/apis/ContainersApi.ts index 416ad9601edd..20260817d1f8 100644 --- a/packages/datadog-api-client-v2/apis/ContainersApi.ts +++ b/packages/datadog-api-client-v2/apis/ContainersApi.ts @@ -242,13 +242,11 @@ export class ContainersApi { param.pageCursor, options ); - const responseContext = await this.configuration.httpApi.send( - requestContext - ); + const responseContext = + await this.configuration.httpApi.send(requestContext); - const response = await this.responseProcessor.listContainers( - responseContext - ); + const response = + await this.responseProcessor.listContainers(responseContext); const responseData = response.data; if (responseData === undefined) { break; diff --git a/packages/datadog-api-client-v2/apis/DowntimesApi.ts b/packages/datadog-api-client-v2/apis/DowntimesApi.ts index f5945ee7141c..c30eacd7b685 100644 --- a/packages/datadog-api-client-v2/apis/DowntimesApi.ts +++ b/packages/datadog-api-client-v2/apis/DowntimesApi.ts @@ -879,13 +879,11 @@ export class DowntimesApi { param.pageLimit, options ); - const responseContext = await this.configuration.httpApi.send( - requestContext - ); + const responseContext = + await this.configuration.httpApi.send(requestContext); - const response = await this.responseProcessor.listDowntimes( - responseContext - ); + const response = + await this.responseProcessor.listDowntimes(responseContext); const responseData = response.data; if (responseData === undefined) { break; @@ -947,13 +945,11 @@ export class DowntimesApi { param.pageLimit, options ); - const responseContext = await this.configuration.httpApi.send( - requestContext - ); + const responseContext = + await this.configuration.httpApi.send(requestContext); - const response = await this.responseProcessor.listMonitorDowntimes( - responseContext - ); + const response = + await this.responseProcessor.listMonitorDowntimes(responseContext); const responseData = response.data; if (responseData === undefined) { break; diff --git a/packages/datadog-api-client-v2/apis/EventsApi.ts b/packages/datadog-api-client-v2/apis/EventsApi.ts index ea7b8eef26a6..11dbd9661eac 100644 --- a/packages/datadog-api-client-v2/apis/EventsApi.ts +++ b/packages/datadog-api-client-v2/apis/EventsApi.ts @@ -658,9 +658,8 @@ export class EventsApi { param.pageLimit, options ); - const responseContext = await this.configuration.httpApi.send( - requestContext - ); + const responseContext = + await this.configuration.httpApi.send(requestContext); const response = await this.responseProcessor.listEvents(responseContext); const responseData = response.data; @@ -738,13 +737,11 @@ export class EventsApi { param.body, options ); - const responseContext = await this.configuration.httpApi.send( - requestContext - ); + const responseContext = + await this.configuration.httpApi.send(requestContext); - const response = await this.responseProcessor.searchEvents( - responseContext - ); + const response = + await this.responseProcessor.searchEvents(responseContext); const responseData = response.data; if (responseData === undefined) { break; diff --git a/packages/datadog-api-client-v2/apis/IncidentsApi.ts b/packages/datadog-api-client-v2/apis/IncidentsApi.ts index 730fdfa7fab2..62c6871c312f 100644 --- a/packages/datadog-api-client-v2/apis/IncidentsApi.ts +++ b/packages/datadog-api-client-v2/apis/IncidentsApi.ts @@ -8493,13 +8493,11 @@ export class IncidentsApi { param.pageOffset, options ); - const responseContext = await this.configuration.httpApi.send( - requestContext - ); + const responseContext = + await this.configuration.httpApi.send(requestContext); - const response = await this.responseProcessor.listIncidents( - responseContext - ); + const response = + await this.responseProcessor.listIncidents(responseContext); const responseData = response.data; if (responseData === undefined) { break; @@ -8635,13 +8633,11 @@ export class IncidentsApi { param.pageOffset, options ); - const responseContext = await this.configuration.httpApi.send( - requestContext - ); + const responseContext = + await this.configuration.httpApi.send(requestContext); - const response = await this.responseProcessor.searchIncidents( - responseContext - ); + const response = + await this.responseProcessor.searchIncidents(responseContext); const responseData = response.data; if (responseData === undefined) { break; diff --git a/packages/datadog-api-client-v2/apis/LogsApi.ts b/packages/datadog-api-client-v2/apis/LogsApi.ts index 57fc63bfc094..1e3e81ab7fc9 100644 --- a/packages/datadog-api-client-v2/apis/LogsApi.ts +++ b/packages/datadog-api-client-v2/apis/LogsApi.ts @@ -676,9 +676,8 @@ export class LogsApi { param.body, options ); - const responseContext = await this.configuration.httpApi.send( - requestContext - ); + const responseContext = + await this.configuration.httpApi.send(requestContext); const response = await this.responseProcessor.listLogs(responseContext); const responseData = response.data; @@ -771,13 +770,11 @@ export class LogsApi { param.pageLimit, options ); - const responseContext = await this.configuration.httpApi.send( - requestContext - ); + const responseContext = + await this.configuration.httpApi.send(requestContext); - const response = await this.responseProcessor.listLogsGet( - responseContext - ); + const response = + await this.responseProcessor.listLogsGet(responseContext); const responseData = response.data; if (responseData === undefined) { break; diff --git a/packages/datadog-api-client-v2/apis/MetricsApi.ts b/packages/datadog-api-client-v2/apis/MetricsApi.ts index f23622ce0ebe..7ee1a611b174 100644 --- a/packages/datadog-api-client-v2/apis/MetricsApi.ts +++ b/packages/datadog-api-client-v2/apis/MetricsApi.ts @@ -2417,13 +2417,11 @@ export class MetricsApi { param.pageCursor, options ); - const responseContext = await this.configuration.httpApi.send( - requestContext - ); + const responseContext = + await this.configuration.httpApi.send(requestContext); - const response = await this.responseProcessor.listTagConfigurations( - responseContext - ); + const response = + await this.responseProcessor.listTagConfigurations(responseContext); const responseData = response.data; if (responseData === undefined) { break; diff --git a/packages/datadog-api-client-v2/apis/NetworkDeviceMonitoringApi.ts b/packages/datadog-api-client-v2/apis/NetworkDeviceMonitoringApi.ts index 8f9c341d0007..cee2546a306f 100644 --- a/packages/datadog-api-client-v2/apis/NetworkDeviceMonitoringApi.ts +++ b/packages/datadog-api-client-v2/apis/NetworkDeviceMonitoringApi.ts @@ -952,13 +952,11 @@ export class NetworkDeviceMonitoringApi { param.filterTag, options ); - const responseContext = await this.configuration.httpApi.send( - requestContext - ); + const responseContext = + await this.configuration.httpApi.send(requestContext); - const response = await this.responseProcessor.listDevices( - responseContext - ); + const response = + await this.responseProcessor.listDevices(responseContext); const responseData = response.data; if (responseData === undefined) { break; diff --git a/packages/datadog-api-client-v2/apis/PowerpackApi.ts b/packages/datadog-api-client-v2/apis/PowerpackApi.ts index 8f63f48e399a..bb845d34f4f7 100644 --- a/packages/datadog-api-client-v2/apis/PowerpackApi.ts +++ b/packages/datadog-api-client-v2/apis/PowerpackApi.ts @@ -683,13 +683,11 @@ export class PowerpackApi { param.pageOffset, options ); - const responseContext = await this.configuration.httpApi.send( - requestContext - ); + const responseContext = + await this.configuration.httpApi.send(requestContext); - const response = await this.responseProcessor.listPowerpacks( - responseContext - ); + const response = + await this.responseProcessor.listPowerpacks(responseContext); const responseData = response.data; if (responseData === undefined) { break; diff --git a/packages/datadog-api-client-v2/apis/ProcessesApi.ts b/packages/datadog-api-client-v2/apis/ProcessesApi.ts index 5eb9b9dd2f8d..c789b322c752 100644 --- a/packages/datadog-api-client-v2/apis/ProcessesApi.ts +++ b/packages/datadog-api-client-v2/apis/ProcessesApi.ts @@ -261,13 +261,11 @@ export class ProcessesApi { param.pageCursor, options ); - const responseContext = await this.configuration.httpApi.send( - requestContext - ); + const responseContext = + await this.configuration.httpApi.send(requestContext); - const response = await this.responseProcessor.listProcesses( - responseContext - ); + const response = + await this.responseProcessor.listProcesses(responseContext); const responseData = response.data; if (responseData === undefined) { break; diff --git a/packages/datadog-api-client-v2/apis/RUMApi.ts b/packages/datadog-api-client-v2/apis/RUMApi.ts index eb79dd653da1..93da69abf395 100644 --- a/packages/datadog-api-client-v2/apis/RUMApi.ts +++ b/packages/datadog-api-client-v2/apis/RUMApi.ts @@ -1093,13 +1093,11 @@ export class RUMApi { param.pageLimit, options ); - const responseContext = await this.configuration.httpApi.send( - requestContext - ); + const responseContext = + await this.configuration.httpApi.send(requestContext); - const response = await this.responseProcessor.listRUMEvents( - responseContext - ); + const response = + await this.responseProcessor.listRUMEvents(responseContext); const responseData = response.data; if (responseData === undefined) { break; @@ -1175,13 +1173,11 @@ export class RUMApi { param.body, options ); - const responseContext = await this.configuration.httpApi.send( - requestContext - ); + const responseContext = + await this.configuration.httpApi.send(requestContext); - const response = await this.responseProcessor.searchRUMEvents( - responseContext - ); + const response = + await this.responseProcessor.searchRUMEvents(responseContext); const responseData = response.data; if (responseData === undefined) { break; diff --git a/packages/datadog-api-client-v2/apis/ScorecardsApi.ts b/packages/datadog-api-client-v2/apis/ScorecardsApi.ts index 61ee6a5e070c..cb3235d68691 100644 --- a/packages/datadog-api-client-v2/apis/ScorecardsApi.ts +++ b/packages/datadog-api-client-v2/apis/ScorecardsApi.ts @@ -2173,13 +2173,11 @@ export class ScorecardsApi { param.filterRuleName, options ); - const responseContext = await this.configuration.httpApi.send( - requestContext - ); + const responseContext = + await this.configuration.httpApi.send(requestContext); - const response = await this.responseProcessor.listScorecardOutcomes( - responseContext - ); + const response = + await this.responseProcessor.listScorecardOutcomes(responseContext); const responseData = response.data; if (responseData === undefined) { break; @@ -2255,13 +2253,11 @@ export class ScorecardsApi { param.fieldsScorecard, options ); - const responseContext = await this.configuration.httpApi.send( - requestContext - ); + const responseContext = + await this.configuration.httpApi.send(requestContext); - const response = await this.responseProcessor.listScorecardRules( - responseContext - ); + const response = + await this.responseProcessor.listScorecardRules(responseContext); const responseData = response.data; if (responseData === undefined) { break; diff --git a/packages/datadog-api-client-v2/apis/SecurityMonitoringApi.ts b/packages/datadog-api-client-v2/apis/SecurityMonitoringApi.ts index 8a34dfe6d6af..b3fd3452d14a 100644 --- a/packages/datadog-api-client-v2/apis/SecurityMonitoringApi.ts +++ b/packages/datadog-api-client-v2/apis/SecurityMonitoringApi.ts @@ -13328,13 +13328,11 @@ export class SecurityMonitoringApi { param.detailedFindings, options ); - const responseContext = await this.configuration.httpApi.send( - requestContext - ); + const responseContext = + await this.configuration.httpApi.send(requestContext); - const response = await this.responseProcessor.listFindings( - responseContext - ); + const response = + await this.responseProcessor.listFindings(responseContext); const responseData = response.data; if (responseData === undefined) { break; @@ -13523,13 +13521,11 @@ export class SecurityMonitoringApi { param.sort, options ); - const responseContext = await this.configuration.httpApi.send( - requestContext - ); + const responseContext = + await this.configuration.httpApi.send(requestContext); - const response = await this.responseProcessor.listSecurityFindings( - responseContext - ); + const response = + await this.responseProcessor.listSecurityFindings(responseContext); const responseData = response.data; if (responseData === undefined) { break; @@ -13688,9 +13684,8 @@ export class SecurityMonitoringApi { param.pageLimit, options ); - const responseContext = await this.configuration.httpApi.send( - requestContext - ); + const responseContext = + await this.configuration.httpApi.send(requestContext); const response = await this.responseProcessor.listSecurityMonitoringSignals( @@ -14122,13 +14117,11 @@ export class SecurityMonitoringApi { param.body, options ); - const responseContext = await this.configuration.httpApi.send( - requestContext - ); + const responseContext = + await this.configuration.httpApi.send(requestContext); - const response = await this.responseProcessor.searchSecurityFindings( - responseContext - ); + const response = + await this.responseProcessor.searchSecurityFindings(responseContext); const responseData = response.data; if (responseData === undefined) { break; @@ -14228,9 +14221,8 @@ export class SecurityMonitoringApi { param.body, options ); - const responseContext = await this.configuration.httpApi.send( - requestContext - ); + const responseContext = + await this.configuration.httpApi.send(requestContext); const response = await this.responseProcessor.searchSecurityMonitoringSignals( diff --git a/packages/datadog-api-client-v2/apis/ServiceDefinitionApi.ts b/packages/datadog-api-client-v2/apis/ServiceDefinitionApi.ts index 4fb5f5a6b062..e094c5eeb67b 100644 --- a/packages/datadog-api-client-v2/apis/ServiceDefinitionApi.ts +++ b/packages/datadog-api-client-v2/apis/ServiceDefinitionApi.ts @@ -621,13 +621,11 @@ export class ServiceDefinitionApi { param.schemaVersion, options ); - const responseContext = await this.configuration.httpApi.send( - requestContext - ); + const responseContext = + await this.configuration.httpApi.send(requestContext); - const response = await this.responseProcessor.listServiceDefinitions( - responseContext - ); + const response = + await this.responseProcessor.listServiceDefinitions(responseContext); const responseData = response.data; if (responseData === undefined) { break; diff --git a/packages/datadog-api-client-v2/apis/SoftwareCatalogApi.ts b/packages/datadog-api-client-v2/apis/SoftwareCatalogApi.ts index c24f842d674a..b501c520d170 100644 --- a/packages/datadog-api-client-v2/apis/SoftwareCatalogApi.ts +++ b/packages/datadog-api-client-v2/apis/SoftwareCatalogApi.ts @@ -1202,13 +1202,11 @@ export class SoftwareCatalogApi { param.includeDiscovered, options ); - const responseContext = await this.configuration.httpApi.send( - requestContext - ); + const responseContext = + await this.configuration.httpApi.send(requestContext); - const response = await this.responseProcessor.listCatalogEntity( - responseContext - ); + const response = + await this.responseProcessor.listCatalogEntity(responseContext); const responseData = response.data; if (responseData === undefined) { break; @@ -1272,13 +1270,11 @@ export class SoftwareCatalogApi { param.filterName, options ); - const responseContext = await this.configuration.httpApi.send( - requestContext - ); + const responseContext = + await this.configuration.httpApi.send(requestContext); - const response = await this.responseProcessor.listCatalogKind( - responseContext - ); + const response = + await this.responseProcessor.listCatalogKind(responseContext); const responseData = response.data; if (responseData === undefined) { break; @@ -1348,13 +1344,11 @@ export class SoftwareCatalogApi { param.includeDiscovered, options ); - const responseContext = await this.configuration.httpApi.send( - requestContext - ); + const responseContext = + await this.configuration.httpApi.send(requestContext); - const response = await this.responseProcessor.listCatalogRelation( - responseContext - ); + const response = + await this.responseProcessor.listCatalogRelation(responseContext); const responseData = response.data; if (responseData === undefined) { break; diff --git a/packages/datadog-api-client-v2/apis/SpansApi.ts b/packages/datadog-api-client-v2/apis/SpansApi.ts index 53b25d667eae..44991fb241b2 100644 --- a/packages/datadog-api-client-v2/apis/SpansApi.ts +++ b/packages/datadog-api-client-v2/apis/SpansApi.ts @@ -525,9 +525,8 @@ export class SpansApi { param.body, options ); - const responseContext = await this.configuration.httpApi.send( - requestContext - ); + const responseContext = + await this.configuration.httpApi.send(requestContext); const response = await this.responseProcessor.listSpans(responseContext); const responseData = response.data; @@ -612,13 +611,11 @@ export class SpansApi { param.pageLimit, options ); - const responseContext = await this.configuration.httpApi.send( - requestContext - ); + const responseContext = + await this.configuration.httpApi.send(requestContext); - const response = await this.responseProcessor.listSpansGet( - responseContext - ); + const response = + await this.responseProcessor.listSpansGet(responseContext); const responseData = response.data; if (responseData === undefined) { break; diff --git a/packages/datadog-api-client-v2/apis/StaticAnalysisApi.ts b/packages/datadog-api-client-v2/apis/StaticAnalysisApi.ts index 7d32e9694696..27046c0bfe03 100644 --- a/packages/datadog-api-client-v2/apis/StaticAnalysisApi.ts +++ b/packages/datadog-api-client-v2/apis/StaticAnalysisApi.ts @@ -1963,13 +1963,11 @@ export class StaticAnalysisApi { param.pageLimit, options ); - const responseContext = await this.configuration.httpApi.send( - requestContext - ); + const responseContext = + await this.configuration.httpApi.send(requestContext); - const response = await this.responseProcessor.listCustomRuleRevisions( - responseContext - ); + const response = + await this.responseProcessor.listCustomRuleRevisions(responseContext); const responseData = response.data; if (responseData === undefined) { break; diff --git a/packages/datadog-api-client-v2/apis/TeamsApi.ts b/packages/datadog-api-client-v2/apis/TeamsApi.ts index cdeb7116cf15..3432291dc159 100644 --- a/packages/datadog-api-client-v2/apis/TeamsApi.ts +++ b/packages/datadog-api-client-v2/apis/TeamsApi.ts @@ -4536,13 +4536,11 @@ export class TeamsApi { param.filterKeyword, options ); - const responseContext = await this.configuration.httpApi.send( - requestContext - ); + const responseContext = + await this.configuration.httpApi.send(requestContext); - const response = await this.responseProcessor.getTeamMemberships( - responseContext - ); + const response = + await this.responseProcessor.getTeamMemberships(responseContext); const responseData = response.data; if (responseData === undefined) { break; @@ -4717,13 +4715,11 @@ export class TeamsApi { param.fieldsTeam, options ); - const responseContext = await this.configuration.httpApi.send( - requestContext - ); + const responseContext = + await this.configuration.httpApi.send(requestContext); - const response = await this.responseProcessor.listMemberTeams( - responseContext - ); + const response = + await this.responseProcessor.listMemberTeams(responseContext); const responseData = response.data; if (responseData === undefined) { break; @@ -4788,13 +4784,11 @@ export class TeamsApi { param.filterConnectionIds, options ); - const responseContext = await this.configuration.httpApi.send( - requestContext - ); + const responseContext = + await this.configuration.httpApi.send(requestContext); - const response = await this.responseProcessor.listTeamConnections( - responseContext - ); + const response = + await this.responseProcessor.listTeamConnections(responseContext); const responseData = response.data; if (responseData === undefined) { break; @@ -4855,13 +4849,11 @@ export class TeamsApi { param.filterSubTeam, options ); - const responseContext = await this.configuration.httpApi.send( - requestContext - ); + const responseContext = + await this.configuration.httpApi.send(requestContext); - const response = await this.responseProcessor.listTeamHierarchyLinks( - responseContext - ); + const response = + await this.responseProcessor.listTeamHierarchyLinks(responseContext); const responseData = response.data; if (responseData === undefined) { break; @@ -4929,9 +4921,8 @@ export class TeamsApi { param.fieldsTeam, options ); - const responseContext = await this.configuration.httpApi.send( - requestContext - ); + const responseContext = + await this.configuration.httpApi.send(requestContext); const response = await this.responseProcessor.listTeams(responseContext); const responseData = response.data; diff --git a/packages/datadog-api-client-v2/apis/TestOptimizationApi.ts b/packages/datadog-api-client-v2/apis/TestOptimizationApi.ts index 567eebc0448c..ec299dc27bd0 100644 --- a/packages/datadog-api-client-v2/apis/TestOptimizationApi.ts +++ b/packages/datadog-api-client-v2/apis/TestOptimizationApi.ts @@ -1039,13 +1039,11 @@ export class TestOptimizationApi { param.body, options ); - const responseContext = await this.configuration.httpApi.send( - requestContext - ); + const responseContext = + await this.configuration.httpApi.send(requestContext); - const response = await this.responseProcessor.searchFlakyTests( - responseContext - ); + const response = + await this.responseProcessor.searchFlakyTests(responseContext); const responseData = response.data; if (responseData === undefined) { break; diff --git a/packages/datadog-api-client-v2/apis/UsersApi.ts b/packages/datadog-api-client-v2/apis/UsersApi.ts index b0e324848365..8f7d820be429 100644 --- a/packages/datadog-api-client-v2/apis/UsersApi.ts +++ b/packages/datadog-api-client-v2/apis/UsersApi.ts @@ -1254,9 +1254,8 @@ export class UsersApi { param.filterStatus, options ); - const responseContext = await this.configuration.httpApi.send( - requestContext - ); + const responseContext = + await this.configuration.httpApi.send(requestContext); const response = await this.responseProcessor.listUsers(responseContext); const responseData = response.data; diff --git a/packages/datadog-api-client-v2/models/ObservabilityPipelineSensitiveDataScannerProcessorActionHashAction.ts b/packages/datadog-api-client-v2/models/ObservabilityPipelineSensitiveDataScannerProcessorActionHashAction.ts index e57cd898cc65..a5fea38610b1 100644 --- a/packages/datadog-api-client-v2/models/ObservabilityPipelineSensitiveDataScannerProcessorActionHashAction.ts +++ b/packages/datadog-api-client-v2/models/ObservabilityPipelineSensitiveDataScannerProcessorActionHashAction.ts @@ -11,5 +11,6 @@ import { UnparsedObject } from "../../datadog-api-client-common/util"; */ export type ObservabilityPipelineSensitiveDataScannerProcessorActionHashAction = - typeof HASH | UnparsedObject; + | typeof HASH + | UnparsedObject; export const HASH = "hash"; diff --git a/packages/datadog-api-client-v2/models/PatchMaintenanceRequestDataAttributesComponentsAffectedItemsStatus.ts b/packages/datadog-api-client-v2/models/PatchMaintenanceRequestDataAttributesComponentsAffectedItemsStatus.ts index 38d2eedbc37b..0bb85726e08d 100644 --- a/packages/datadog-api-client-v2/models/PatchMaintenanceRequestDataAttributesComponentsAffectedItemsStatus.ts +++ b/packages/datadog-api-client-v2/models/PatchMaintenanceRequestDataAttributesComponentsAffectedItemsStatus.ts @@ -11,6 +11,8 @@ import { UnparsedObject } from "../../datadog-api-client-common/util"; */ export type PatchMaintenanceRequestDataAttributesComponentsAffectedItemsStatus = - typeof OPERATIONAL | typeof MAINTENANCE | UnparsedObject; + | typeof OPERATIONAL + | typeof MAINTENANCE + | UnparsedObject; export const OPERATIONAL = "operational"; export const MAINTENANCE = "maintenance"; diff --git a/yarn.lock b/yarn.lock index 15b4ee01984c..8276a1038a82 100644 --- a/yarn.lock +++ b/yarn.lock @@ -516,47 +516,51 @@ resolved "https://registry.yarnpkg.com/@cucumber/tag-expressions/-/tag-expressions-5.0.1.tgz#94ed2299eaa9085f113d71cb4da1186ad57b3de9" integrity sha512-N43uWud8ZXuVjza423T9ZCIJsaZhFekmakt7S9bvogTxqdVGbRobjR663s0+uW0Rz9e+Pa8I6jUuWtoBLQD2Mw== -"@datadog/native-appsec@^3.2.0": - version "3.2.0" - resolved "https://registry.yarnpkg.com/@datadog/native-appsec/-/native-appsec-3.2.0.tgz#ddeca06cbaba9c6905903d09d18013f81eedc8c3" - integrity sha512-biAa7EFfuavjSWgSQaCit9CqGzr6Af5nhzfNNGJ38Y/Y387hDvLivAR374kK1z6XoxGZEOa+XPbVogmV/2Bcjw== +"@datadog/libdatadog@^0.3.0": + version "0.3.0" + resolved "https://registry.yarnpkg.com/@datadog/libdatadog/-/libdatadog-0.3.0.tgz#2fc1e2695872840bc8c356f66acf675da428d6f0" + integrity sha512-TbP8+WyXfh285T17FnLeLUOPl4SbkRYMqKgcmknID2mXHNrbt5XJgW9bnDgsrrtu31Q7FjWWw2WolgRLWyzLRA== + +"@datadog/native-appsec@8.4.0": + version "8.4.0" + resolved "https://registry.yarnpkg.com/@datadog/native-appsec/-/native-appsec-8.4.0.tgz#5c44d949ff8f40a94c334554db79c1c470653bae" + integrity sha512-LC47AnpVLpQFEUOP/nIIs+i0wLb8XYO+et3ACaJlHa2YJM3asR4KZTqQjDQNy08PTAUbVvYWKwfSR1qVsU/BeA== dependencies: node-gyp-build "^3.9.0" -"@datadog/native-iast-rewriter@2.0.1": - version "2.0.1" - resolved "https://registry.yarnpkg.com/@datadog/native-iast-rewriter/-/native-iast-rewriter-2.0.1.tgz#dc4a23796870f2d840053ae879c61547eda6bb89" - integrity sha512-Mm+FG3XxEbPrAfJQPOMHts7iZZXRvg9gnGeeFRGkyirmRcQcOpZO4wFe/8K61DUVa5pXpgAJQ2ZkBGYF1O9STg== +"@datadog/native-iast-rewriter@2.6.1": + version "2.6.1" + resolved "https://registry.yarnpkg.com/@datadog/native-iast-rewriter/-/native-iast-rewriter-2.6.1.tgz#5e5393628c73c57dcf08256299c0e8cf71deb14f" + integrity sha512-zv7cr/MzHg560jhAnHcO7f9pLi4qaYrBEcB+Gla0xkVouYSDsp8cGXIGG4fiGdAMHdt7SpDNS6+NcEAqD/v8Ig== dependencies: + lru-cache "^7.14.0" node-gyp-build "^4.5.0" -"@datadog/native-iast-taint-tracking@^1.5.0": - version "1.5.0" - resolved "https://registry.yarnpkg.com/@datadog/native-iast-taint-tracking/-/native-iast-taint-tracking-1.5.0.tgz#1a55eca6692079ac6167696682acb972aa0b0181" - integrity sha512-SOWIk1M6PZH0osNB191Voz2rKBPoF5hISWVSK9GiJPrD40+xjib1Z/bFDV7EkDn3kjOyordSBdNPG5zOqZJdyg== +"@datadog/native-iast-taint-tracking@3.2.0": + version "3.2.0" + resolved "https://registry.yarnpkg.com/@datadog/native-iast-taint-tracking/-/native-iast-taint-tracking-3.2.0.tgz#9fb6823d82f934e12c06ea1baa7399ca80deb2ec" + integrity sha512-Mc6FzCoyvU5yXLMsMS9yKnEqJMWoImAukJXolNWCTm+JQYCMf2yMsJ8pBAm7KyZKliamM9rCn7h7Tr2H3lXwjA== dependencies: node-gyp-build "^3.9.0" -"@datadog/native-metrics@^2.0.0": - version "2.0.0" - resolved "https://registry.yarnpkg.com/@datadog/native-metrics/-/native-metrics-2.0.0.tgz#65bf03313ee419956361e097551db36173e85712" - integrity sha512-YklGVwUtmKGYqFf1MNZuOHvTYdKuR4+Af1XkWcMD8BwOAjxmd9Z+97328rCOY8TFUJzlGUPaXzB8j2qgG/BMwA== +"@datadog/native-metrics@^3.1.0": + version "3.1.1" + resolved "https://registry.yarnpkg.com/@datadog/native-metrics/-/native-metrics-3.1.1.tgz#4e5c9775751af13e353e64e573ab724104538cee" + integrity sha512-MU1gHrolwryrU4X9g+fylA1KPH3S46oqJPEtVyrO+3Kh29z80fegmtyrU22bNt8LigPUK/EdPCnSbMe88QbnxQ== dependencies: node-addon-api "^6.1.0" node-gyp-build "^3.9.0" -"@datadog/pprof@2.2.3": - version "2.2.3" - resolved "https://registry.yarnpkg.com/@datadog/pprof/-/pprof-2.2.3.tgz#a22ca30e386f5aa8559f4b2e297b76c80551c26d" - integrity sha512-cZXvNBBzvTMUx2xOxp49cZJ7/HOF7geVxqeRbveeJUVKwi8ZxmU1rQGcWPFX4iEEtfQu1M3NqbhmNtYsMJdEsQ== +"@datadog/pprof@5.4.1": + version "5.4.1" + resolved "https://registry.yarnpkg.com/@datadog/pprof/-/pprof-5.4.1.tgz#08c9bcf5d8efb2eeafdfc9f5bb5402f79fb41266" + integrity sha512-IvpL96e/cuh8ugP5O8Czdup7XQOLHeIDgM5pac5W7Lc1YzGe5zTtebKFpitvb1CPw1YY+1qFx0pWGgKP2kOfHg== dependencies: delay "^5.0.0" - node-gyp-build "^3.9.0" + node-gyp-build "<4.0" p-limit "^3.1.0" - pify "^5.0.0" - pprof-format "^2.0.7" - source-map "^0.7.3" - split "^1.0.1" + pprof-format "^2.1.0" + source-map "^0.7.4" "@datadog/sketches-js@^2.1.0": version "2.1.0" @@ -614,6 +618,11 @@ resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz#b520529ec21d8e5945a1851dfd1c32e94e39ff45" integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA== +"@isaacs/ttlcache@^1.4.1": + version "1.4.1" + resolved "https://registry.yarnpkg.com/@isaacs/ttlcache/-/ttlcache-1.4.1.tgz#21fb23db34e9b6220c6ba023a0118a2dd3461ea2" + integrity sha512-RQgQ4uQ+pLbqXfOmieB91ejmLwvSgv9nLx6sT6sD83s7umBypgg+OIBOBbEUiJXrfpnp9j0mRhYYdzp9uqq3lA== + "@istanbuljs/load-nyc-config@^1.0.0": version "1.1.0" resolved "https://registry.yarnpkg.com/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz#fd3db1d59ecf7cf121e80650bb86712f9b55eced" @@ -888,10 +897,10 @@ "@nodelib/fs.scandir" "2.1.5" fastq "^1.6.0" -"@opentelemetry/api@^1.0.0": - version "1.4.1" - resolved "https://registry.yarnpkg.com/@opentelemetry/api/-/api-1.4.1.tgz#ff22eb2e5d476fbc2450a196e40dd243cc20c28f" - integrity sha512-O2yRJce1GOc6PAy3QxFM4NzFiWzvScDC1/5ihYBL6BUEVdq0XMWN01sppE+H6bBXbaFYipjwFLEWLg5PaSOThA== +"@opentelemetry/api@>=1.0.0 <1.9.0": + version "1.8.0" + resolved "https://registry.yarnpkg.com/@opentelemetry/api/-/api-1.8.0.tgz#5aa7abb48f23f693068ed2999ae627d2f7d902ec" + integrity sha512-I/s6F7yKUDdtMsoBWXJe8Qz40Tui5vsuKCWJEWVL+5q9sSWRzzx6v2KeNsOBEwd94j0eWkpWCH4yB6rZg9Mf0w== "@opentelemetry/core@^1.14.0": version "1.14.0" @@ -1115,17 +1124,17 @@ dependencies: "@babel/types" "^7.20.7" -"@types/buffer-from@^1.1.0": - version "1.1.0" - resolved "https://registry.yarnpkg.com/@types/buffer-from/-/buffer-from-1.1.0.tgz#fed6287e90fe524dc2b412e0fbc2222c1889c21f" - integrity sha512-BLFpLBcN+RPKUsFxqRkMiwqTOOdi+TrKr5OpLJ9qCnUdSxS6S80+QRX/mIhfR66u0Ykc4QTkReaejOM2ILh+9Q== +"@types/buffer-from@^1.1.3": + version "1.1.3" + resolved "https://registry.yarnpkg.com/@types/buffer-from/-/buffer-from-1.1.3.tgz#7dafd3ac76035e6c24498906c50dd4be32328d98" + integrity sha512-2lq4YC9uLUMGHkl2IDtX4tCXSo2+hwMpOJcY1qiIk1kybc31rIlPyM1HCVJhkPFIo75a/pOVxqyvwuf5TpCG/w== dependencies: "@types/node" "*" -"@types/chai@^4.3.4": - version "4.3.4" - resolved "https://registry.yarnpkg.com/@types/chai/-/chai-4.3.4.tgz#e913e8175db8307d78b4e8fa690408ba6b65dee4" - integrity sha512-KnRanxnpfpjUTqTCXslZSEdLfXExwgNxYPdiO2WGUj8+HDjFi8R3k5RVKPeSCzLjCcshCAtVO2QBbVuAV4kTnw== +"@types/chai@^4.3.20": + version "4.3.20" + resolved "https://registry.yarnpkg.com/@types/chai/-/chai-4.3.20.tgz#cb291577ed342ca92600430841a00329ba05cecc" + integrity sha512-/pC9HAB5I/xMlc5FP77qjCnI16ChlJfW0tGa0IUcFn38VJrTV6DeZ60NU5KZBtaOZqjdpwTWohz5HU1RrhiYxQ== "@types/graceful-fs@^4.1.3": version "4.1.6" @@ -1153,10 +1162,10 @@ dependencies: "@types/istanbul-lib-report" "*" -"@types/jest@^29.5.2": - version "29.5.2" - resolved "https://registry.yarnpkg.com/@types/jest/-/jest-29.5.2.tgz#86b4afc86e3a8f3005b297ed8a72494f89e6395b" - integrity sha512-mSoZVJF5YzGVCk+FsDxzDuH7s+SCkzrgKZzf0Z0T2WudhBUPoF6ktoTPC4R0ZoCPCV5xUvuU6ias5NvxcBcMMg== +"@types/jest@^29.5.14": + version "29.5.14" + resolved "https://registry.yarnpkg.com/@types/jest/-/jest-29.5.14.tgz#2b910912fa1d6856cadcd0c1f95af7df1d6049e5" + integrity sha512-ZN+4sdnLUbo8EVvVc2ao0GFW6oVrQRPn4K2lglySj7APvSrgzxHiNNK99us4WDMi57xxA2yggblIAMNhXOotLQ== dependencies: expect "^29.0.0" pretty-format "^29.0.0" @@ -1181,10 +1190,10 @@ resolved "https://registry.yarnpkg.com/@types/node/-/node-18.0.6.tgz#0ba49ac517ad69abe7a1508bc9b3a5483df9d5d7" integrity sha512-/xUq6H2aQm261exT6iZTMifUySEt4GR5KX8eYyY+C4MSNPqSh9oNIP7tz2GLKTlFaiBbgZNxffoR3CVRG+cljw== -"@types/pako@^1.0.3": - version "1.0.3" - resolved "https://registry.yarnpkg.com/@types/pako/-/pako-1.0.3.tgz#2e61c2b02020b5f44e2e5e946dfac74f4ec33c58" - integrity sha512-EDxOsHAD5dqjbjEUM1xwa7rpKPFb8ECBE5irONTQU7/OsO3thI5YrNEWSPNMvYmvFM0l/OLQJ6Mgw7PEdXSjhg== +"@types/pako@^1.0.7": + version "1.0.7" + resolved "https://registry.yarnpkg.com/@types/pako/-/pako-1.0.7.tgz#aa0e4af9855d81153a29ff84cc44cce25298eda9" + integrity sha512-YBtzT2ztNF6R/9+UXj2wTGFnC9NklAnASt3sC0h2m1bbH7G6FyBIkt4AN8ThZpNfxUo1b2iMVO0UawiJymEt8A== "@types/prettier@^2.1.5": version "2.7.3" @@ -1246,14 +1255,14 @@ semver "^7.3.7" tsutils "^3.21.0" -"@typescript-eslint/parser@^5.54.0": - version "5.60.1" - resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.60.1.tgz#0f2f58209c0862a73e3d5a56099abfdfa21d0fd3" - integrity sha512-pHWlc3alg2oSMGwsU/Is8hbm3XFbcrb6P5wIxcQW9NsYBfnrubl/GhVVD/Jm/t8HXhA2WncoIRfBtnCgRGV96Q== +"@typescript-eslint/parser@^5.62.0": + version "5.62.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.62.0.tgz#1b63d082d849a2fcae8a569248fbe2ee1b8a56c7" + integrity sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA== dependencies: - "@typescript-eslint/scope-manager" "5.60.1" - "@typescript-eslint/types" "5.60.1" - "@typescript-eslint/typescript-estree" "5.60.1" + "@typescript-eslint/scope-manager" "5.62.0" + "@typescript-eslint/types" "5.62.0" + "@typescript-eslint/typescript-estree" "5.62.0" debug "^4.3.4" "@typescript-eslint/scope-manager@5.60.1": @@ -1264,6 +1273,14 @@ "@typescript-eslint/types" "5.60.1" "@typescript-eslint/visitor-keys" "5.60.1" +"@typescript-eslint/scope-manager@5.62.0": + version "5.62.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.62.0.tgz#d9457ccc6a0b8d6b37d0eb252a23022478c5460c" + integrity sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w== + dependencies: + "@typescript-eslint/types" "5.62.0" + "@typescript-eslint/visitor-keys" "5.62.0" + "@typescript-eslint/type-utils@5.60.1": version "5.60.1" resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.60.1.tgz#17770540e98d65ab4730c7aac618003f702893f4" @@ -1279,6 +1296,11 @@ resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.60.1.tgz#a17473910f6b8d388ea83c9d7051af89c4eb7561" integrity sha512-zDcDx5fccU8BA0IDZc71bAtYIcG9PowaOwaD8rjYbqwK7dpe/UMQl3inJ4UtUK42nOCT41jTSCwg76E62JpMcg== +"@typescript-eslint/types@5.62.0": + version "5.62.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.62.0.tgz#258607e60effa309f067608931c3df6fed41fd2f" + integrity sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ== + "@typescript-eslint/typescript-estree@5.60.1": version "5.60.1" resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.60.1.tgz#8c71824b7165b64d5ebd7aa42968899525959834" @@ -1292,6 +1314,19 @@ semver "^7.3.7" tsutils "^3.21.0" +"@typescript-eslint/typescript-estree@5.62.0": + version "5.62.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.62.0.tgz#7d17794b77fabcac615d6a48fb143330d962eb9b" + integrity sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA== + dependencies: + "@typescript-eslint/types" "5.62.0" + "@typescript-eslint/visitor-keys" "5.62.0" + debug "^4.3.4" + globby "^11.1.0" + is-glob "^4.0.3" + semver "^7.3.7" + tsutils "^3.21.0" + "@typescript-eslint/utils@5.60.1": version "5.60.1" resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.60.1.tgz#6861ebedbefba1ac85482d2bdef6f2ff1eb65b80" @@ -1314,6 +1349,14 @@ "@typescript-eslint/types" "5.60.1" eslint-visitor-keys "^3.3.0" +"@typescript-eslint/visitor-keys@5.62.0": + version "5.62.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.62.0.tgz#2174011917ce582875954ffe2f6912d5931e353e" + integrity sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw== + dependencies: + "@typescript-eslint/types" "5.62.0" + eslint-visitor-keys "^3.3.0" + accepts@~1.3.8: version "1.3.8" resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.8.tgz#0bf0be125b67014adcb0b0921e62db7bffe16b2e" @@ -1322,10 +1365,10 @@ accepts@~1.3.8: mime-types "~2.1.34" negotiator "0.6.3" -acorn-import-assertions@^1.9.0: - version "1.9.0" - resolved "https://registry.yarnpkg.com/acorn-import-assertions/-/acorn-import-assertions-1.9.0.tgz#507276249d684797c84e0734ef84860334cfb1ac" - integrity sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA== +acorn-import-attributes@^1.9.5: + version "1.9.5" + resolved "https://registry.yarnpkg.com/acorn-import-attributes/-/acorn-import-attributes-1.9.5.tgz#7eb1557b1ba05ef18b5ed0ec67591bfab04688ef" + integrity sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ== acorn-jsx@^5.3.2: version "5.3.2" @@ -1661,7 +1704,7 @@ browserslist@^4.21.3: node-releases "^2.0.12" update-browserslist-db "^1.0.11" -bs-logger@0.x: +bs-logger@^0.2.6: version "0.2.6" resolved "https://registry.yarnpkg.com/bs-logger/-/bs-logger-0.2.6.tgz#eb7d365307a72cf974cc6cda76b68354ad336bd8" integrity sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog== @@ -1746,18 +1789,18 @@ chai-quantifiers@^1.0.17: resolved "https://registry.yarnpkg.com/chai-quantifiers/-/chai-quantifiers-1.0.17.tgz#7f9ecf6cc945c16d6bebec04390ab9c371c79b61" integrity sha512-ee9xeWmfjQsDG/UH7QVq97+yStp+SN05dQ51kdric2zgHueWIjphMmG36kwLAhWm9KeZ1PK7Ms4UiPfz6JpASw== -chai@^4.3.7: - version "4.3.7" - resolved "https://registry.yarnpkg.com/chai/-/chai-4.3.7.tgz#ec63f6df01829088e8bf55fca839bcd464a8ec51" - integrity sha512-HLnAzZ2iupm25PlN0xFreAlBA5zaBSv3og0DdeGA4Ar6h6rJ3A0rolRUKJhSF2V10GZKDgWF/VmAEsNWjCRB+A== +chai@^4.3.10: + version "4.5.0" + resolved "https://registry.yarnpkg.com/chai/-/chai-4.5.0.tgz#707e49923afdd9b13a8b0b47d33d732d13812fd8" + integrity sha512-RITGBfijLkBddZvnn8jdqoTypxvqbOLYQkGGxXzeFjVHvudaPw0HNFD9x928/eUwYWd2dPCugVqspGALTZZQKw== dependencies: assertion-error "^1.1.0" - check-error "^1.0.2" - deep-eql "^4.1.2" - get-func-name "^2.0.0" - loupe "^2.3.1" + check-error "^1.0.3" + deep-eql "^4.1.3" + get-func-name "^2.0.2" + loupe "^2.3.6" pathval "^1.1.1" - type-detect "^4.0.5" + type-detect "^4.1.0" chalk@^2.0.0, chalk@^2.4.2: version "2.4.2" @@ -1781,10 +1824,12 @@ char-regex@^1.0.2: resolved "https://registry.yarnpkg.com/char-regex/-/char-regex-1.0.2.tgz#d744358226217f981ed58f479b1d6bcc29545dcf" integrity sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw== -check-error@^1.0.2: - version "1.0.2" - resolved "https://registry.npmjs.org/check-error/-/check-error-1.0.2.tgz" - integrity sha1-V00xLt2Iu13YkS6Sht1sCu1KrII= +check-error@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/check-error/-/check-error-1.0.3.tgz#a6502e4312a7ee969f646e83bb3ddd56281bd694" + integrity sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg== + dependencies: + get-func-name "^2.0.2" ci-info@^3.2.0: version "3.8.0" @@ -1935,12 +1980,12 @@ create-require@^1.1.0: resolved "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz" integrity sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ== -cross-fetch@^3.1.5: - version "3.1.5" - resolved "https://registry.yarnpkg.com/cross-fetch/-/cross-fetch-3.1.5.tgz#e1389f44d9e7ba767907f7af8454787952ab534f" - integrity sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw== +cross-fetch@^3.1.8: + version "3.2.0" + resolved "https://registry.yarnpkg.com/cross-fetch/-/cross-fetch-3.2.0.tgz#34e9192f53bc757d6614304d9e5e6fb4edb782e3" + integrity sha512-Q+xVJLoGOeIMXZmbUK4HYk+69cQH6LudR0Vu/pRm2YlU/hDV9CiS0gKUMaWY5f2NeUH9C1nV3bsTlCo0FsTV1Q== dependencies: - node-fetch "2.6.7" + node-fetch "^2.7.0" cross-spawn@^7.0.2, cross-spawn@^7.0.3: version "7.0.3" @@ -1956,40 +2001,47 @@ crypto-randomuuid@^1.0.0: resolved "https://registry.yarnpkg.com/crypto-randomuuid/-/crypto-randomuuid-1.0.0.tgz#acf583e5e085e867ae23e107ff70279024f9e9e7" integrity sha512-/RC5F4l1SCqD/jazwUF6+t34Cd8zTSAGZ7rvvZu1whZUhD2a5MOGKjSGowoGcpj/cbVZk1ZODIooJEQQq3nNAA== -dd-trace@^4.3.0: - version "4.3.0" - resolved "https://registry.yarnpkg.com/dd-trace/-/dd-trace-4.3.0.tgz#d245e8b030d999076d1e270ddbe4d669cefb2477" - integrity sha512-UTqgTPa64iMxfQBfq2kPu2Bd+KscfGpSPa3brR42LJIa/vKjTZixREZRcL6tFTA4BxHKSWyuKa1lB+AXz7uT7A== - dependencies: - "@datadog/native-appsec" "^3.2.0" - "@datadog/native-iast-rewriter" "2.0.1" - "@datadog/native-iast-taint-tracking" "^1.5.0" - "@datadog/native-metrics" "^2.0.0" - "@datadog/pprof" "2.2.3" +dc-polyfill@^0.1.4: + version "0.1.10" + resolved "https://registry.yarnpkg.com/dc-polyfill/-/dc-polyfill-0.1.10.tgz#6f2ada1a9e449587c363ca98cfb79b443cf74b70" + integrity sha512-9iSbB8XZ7aIrhUtWI5ulEOJ+IyUN+axquodHK+bZO4r7HfY/xwmo6I4fYYf+aiDom+WMcN/wnzCz+pKvHDDCug== + +dd-trace@^4.55.0: + version "4.55.0" + resolved "https://registry.yarnpkg.com/dd-trace/-/dd-trace-4.55.0.tgz#a937078043612c074ae8f02dccda9a533e129476" + integrity sha512-fGB4ljdpk2iTeFVkpF9CNb+6ty2x/em+hvvspJm83IEf8/bn5/tLRWj4ONBqAbVvlHIPM4b3AwVNhMvCygnZlg== + dependencies: + "@datadog/libdatadog" "^0.3.0" + "@datadog/native-appsec" "8.4.0" + "@datadog/native-iast-rewriter" "2.6.1" + "@datadog/native-iast-taint-tracking" "3.2.0" + "@datadog/native-metrics" "^3.1.0" + "@datadog/pprof" "5.4.1" "@datadog/sketches-js" "^2.1.0" - "@opentelemetry/api" "^1.0.0" + "@isaacs/ttlcache" "^1.4.1" + "@opentelemetry/api" ">=1.0.0 <1.9.0" "@opentelemetry/core" "^1.14.0" crypto-randomuuid "^1.0.0" - diagnostics_channel "^1.1.0" - ignore "^5.2.0" - import-in-the-middle "^1.3.5" - ipaddr.js "^2.0.1" + dc-polyfill "^0.1.4" + ignore "^5.2.4" + import-in-the-middle "1.11.2" istanbul-lib-coverage "3.2.0" + jest-docblock "^29.7.0" koalas "^1.0.2" - limiter "^1.1.4" - lodash.kebabcase "^4.1.1" - lodash.pick "^4.4.0" + limiter "1.1.5" lodash.sortby "^4.7.0" - lodash.uniq "^4.5.0" lru-cache "^7.14.0" - methods "^1.1.2" module-details-from-path "^1.0.3" - node-abort-controller "^3.0.1" opentracing ">=0.12.1" - path-to-regexp "^0.1.2" - protobufjs "^7.1.2" - retry "^0.10.1" - semver "^7.3.8" + path-to-regexp "^0.1.12" + pprof-format "^2.1.0" + protobufjs "^7.2.5" + retry "^0.13.1" + rfdc "^1.3.1" + semver "^7.5.4" + shell-quote "^1.8.1" + source-map "^0.7.4" + tlhunter-sorted-set "^0.1.0" debug@2.6.9: version "2.6.9" @@ -2017,10 +2069,10 @@ dedent@^0.7.0: resolved "https://registry.yarnpkg.com/dedent/-/dedent-0.7.0.tgz#2495ddbaf6eb874abb0e1be9df22d2e5a544326c" integrity sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA== -deep-eql@^4.1.2: - version "4.1.3" - resolved "https://registry.yarnpkg.com/deep-eql/-/deep-eql-4.1.3.tgz#7c7775513092f7df98d8df9996dd085eb668cc6d" - integrity sha512-WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw== +deep-eql@^4.1.3: + version "4.1.4" + resolved "https://registry.yarnpkg.com/deep-eql/-/deep-eql-4.1.4.tgz#d0d3912865911bb8fac5afb4e3acfa6a28dc72b7" + integrity sha512-SUwdGfqdKOwxCPeVYjwSyRpJ7Z+fhpwIAtmCUdZIWZ/YP5R9WAsyuSgpLVDi9bjWoN2LXHNss/dk3urXtdQxGg== dependencies: type-detect "^4.0.0" @@ -2076,11 +2128,6 @@ detect-newline@^3.0.0: resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-3.1.0.tgz#576f5dfc63ae1a192ff192d8ad3af6308991b651" integrity sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA== -diagnostics_channel@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/diagnostics_channel/-/diagnostics_channel-1.1.0.tgz#bd66c49124ce3bac697dff57466464487f57cea5" - integrity sha512-OE1ngLDjSBPG6Tx0YATELzYzy3RKHC+7veQ8gLa8yS7AAgw65mFbVdcsu3501abqOZCEZqZyAIemB0zXlqDSuw== - diff-sequences@^29.4.3: version "29.4.3" resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-29.4.3.tgz#9314bc1fabe09267ffeca9cbafc457d8499a13f2" @@ -2669,10 +2716,10 @@ for-each@^0.3.3: dependencies: is-callable "^1.1.3" -form-data@^4.0.4: - version "4.0.4" - resolved "https://registry.yarnpkg.com/form-data/-/form-data-4.0.4.tgz#784cdcce0669a9d68e94d11ac4eea98088edd2c4" - integrity sha512-KrGhL9Q4zjj0kiUt5OO4Mr/A/jlI2jDYs5eHBpYHPcBEVSiipAvn2Ko2HnPe20rmcuuvMHNdZFp+4IlGTMF0Ow== +form-data@^4.0.5: + version "4.0.5" + resolved "https://registry.yarnpkg.com/form-data/-/form-data-4.0.5.tgz#b49e48858045ff4cbf6b03e1805cebcad3679053" + integrity sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w== dependencies: asynckit "^0.4.0" combined-stream "^1.0.8" @@ -2744,7 +2791,7 @@ get-caller-file@^2.0.5: resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== -get-func-name@^2.0.0: +get-func-name@^2.0.1, get-func-name@^2.0.2: version "2.0.2" resolved "https://registry.yarnpkg.com/get-func-name/-/get-func-name-2.0.2.tgz#0d7cf20cd13fda808669ffa88f4ffc7a3943fc41" integrity sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ== @@ -2920,6 +2967,18 @@ graphemer@^1.4.0: resolved "https://registry.yarnpkg.com/graphemer/-/graphemer-1.4.0.tgz#fb2f1d55e0e3a1849aeffc90c4fa0dd53a0e66c6" integrity sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag== +handlebars@^4.7.9: + version "4.7.9" + resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.7.9.tgz#6f139082ab58dc4e5a0e51efe7db5ae890d56a0f" + integrity sha512-4E71E0rpOaQuJR2A3xDZ+GM1HyWYv1clR58tC8emQNeQe3RH7MAzSbat+V0wG78LQBo6m6bzSG/L4pBuCsgnUQ== + dependencies: + minimist "^1.2.5" + neo-async "^2.6.2" + source-map "^0.6.1" + wordwrap "^1.0.0" + optionalDependencies: + uglify-js "^3.1.4" + has-ansi@^4.0.1: version "4.0.1" resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-4.0.1.tgz#f216a8c8d7b129e490dc15f4a62cc1cdb9603ce8" @@ -3039,6 +3098,11 @@ ignore@^5.1.1, ignore@^5.2.0: resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.4.tgz#a291c0c6178ff1b960befe47fcdec301674a6324" integrity sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ== +ignore@^5.2.4: + version "5.3.2" + resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.3.2.tgz#3cd40e729f3643fd87cb04e50bf0eb722bc596f5" + integrity sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g== + import-fresh@^3.0.0, import-fresh@^3.2.1: version "3.3.0" resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" @@ -3047,13 +3111,13 @@ import-fresh@^3.0.0, import-fresh@^3.2.1: parent-module "^1.0.0" resolve-from "^4.0.0" -import-in-the-middle@^1.3.5: - version "1.4.2" - resolved "https://registry.yarnpkg.com/import-in-the-middle/-/import-in-the-middle-1.4.2.tgz#2a266676e3495e72c04bbaa5ec14756ba168391b" - integrity sha512-9WOz1Yh/cvO/p69sxRmhyQwrIGGSp7EIdcb+fFNVi7CzQGQB8U1/1XrKVSbEd/GNOAeM0peJtmi7+qphe7NvAw== +import-in-the-middle@1.11.2: + version "1.11.2" + resolved "https://registry.yarnpkg.com/import-in-the-middle/-/import-in-the-middle-1.11.2.tgz#dd848e72b63ca6cd7c34df8b8d97fc9baee6174f" + integrity sha512-gK6Rr6EykBcc6cVWRSBR5TWf8nn6hZMYSRYqCcHa0l0d1fPK7JSYo6+Mlmck76jIX9aL/IZ71c06U2VpFwl1zA== dependencies: acorn "^8.8.2" - acorn-import-assertions "^1.9.0" + acorn-import-attributes "^1.9.5" cjs-module-lexer "^1.2.2" module-details-from-path "^1.0.3" @@ -3107,11 +3171,6 @@ ipaddr.js@1.9.1: resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3" integrity sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g== -ipaddr.js@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-2.0.1.tgz#eca256a7a877e917aeb368b0a7497ddf42ef81c0" - integrity sha512-1qTgH9NG+IIJ4yfKs2e6Pp1bZg8wbDbKHT21HrLIeYBTRLgMYKnMTPAuI3Lcs61nfx5h1xlXnbJtH1kX5/d/ng== - is-absolute-url@^3.0.3: version "3.0.3" resolved "https://registry.yarnpkg.com/is-absolute-url/-/is-absolute-url-3.0.3.tgz#96c6a22b6a23929b11ea0afb1836c36ad4a5d698" @@ -3413,6 +3472,13 @@ jest-docblock@^29.4.3: dependencies: detect-newline "^3.0.0" +jest-docblock@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-29.7.0.tgz#8fddb6adc3cdc955c93e2a87f61cfd350d5d119a" + integrity sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g== + dependencies: + detect-newline "^3.0.0" + jest-each@^29.5.0: version "29.5.0" resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-29.5.0.tgz#fc6e7014f83eac68e22b7195598de8554c2e5c06" @@ -3619,7 +3685,7 @@ jest-snapshot@^29.5.0: pretty-format "^29.5.0" semver "^7.3.5" -jest-util@^29.0.0, jest-util@^29.4.3, jest-util@^29.5.0: +jest-util@^29.4.3, jest-util@^29.5.0: version "29.5.0" resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-29.5.0.tgz#24a4d3d92fc39ce90425311b23c27a6e0ef16b8f" integrity sha512-RYMgG/MTadOr5t8KdhejfvUU82MxsCu5MF6KuDUHl+NuwzUt+Sm6jJWxTJVrDR1j5M/gJVCPKQEpWXY+yIQ6lQ== @@ -3778,7 +3844,7 @@ levn@^0.4.1: prelude-ls "^1.2.1" type-check "~0.4.0" -limiter@^1.1.4: +limiter@1.1.5: version "1.1.5" resolved "https://registry.yarnpkg.com/limiter/-/limiter-1.1.5.tgz#8f92a25b3b16c6131293a0cc834b4a838a2aa7c2" integrity sha512-FWWMIEOxz3GwUI4Ts/IvgVy6LPvoMPgjMdQ185nN6psJyBJ4yOpzqm695/h5umdLJg2vW3GR5iG11MAkR2AzJA== @@ -3807,12 +3873,7 @@ lodash-es@^4.17.21: resolved "https://registry.yarnpkg.com/lodash-es/-/lodash-es-4.17.21.tgz#43e626c46e6591b7750beb2b50117390c609e3ee" integrity sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw== -lodash.kebabcase@^4.1.1: - version "4.1.1" - resolved "https://registry.yarnpkg.com/lodash.kebabcase/-/lodash.kebabcase-4.1.1.tgz#8489b1cb0d29ff88195cceca448ff6d6cc295c36" - integrity sha512-N8XRTIMMqqDgSy4VLKPnJ/+hpGZN+PHQiJnSenYqPaVV/NCqEogTnAdZLQiGKhxX+JCs8waWq2t1XHWKOmlY8g== - -lodash.memoize@4.x: +lodash.memoize@^4.1.2: version "4.1.2" resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" integrity sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag== @@ -3827,26 +3888,11 @@ lodash.mergewith@^4.6.2: resolved "https://registry.yarnpkg.com/lodash.mergewith/-/lodash.mergewith-4.6.2.tgz#617121f89ac55f59047c7aec1ccd6654c6590f55" integrity sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ== -lodash.pick@^4.4.0: - version "4.4.0" - resolved "https://registry.yarnpkg.com/lodash.pick/-/lodash.pick-4.4.0.tgz#52f05610fff9ded422611441ed1fc123a03001b3" - integrity sha512-hXt6Ul/5yWjfklSGvLQl8vM//l3FtyHZeuelpzK6mm99pNvN9yTDruNZPEJZD1oWrqo+izBmB7oUfWgcCX7s4Q== - -lodash.set@^4.3.2: - version "4.3.2" - resolved "https://registry.npmjs.org/lodash.set/-/lodash.set-4.3.2.tgz" - integrity sha1-2HV7HagH3eJIFrDWqEvqGnYjCyM= - lodash.sortby@^4.7.0: version "4.7.0" resolved "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438" integrity sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA== -lodash.uniq@^4.5.0: - version "4.5.0" - resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773" - integrity sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ== - lodash@^4.17.21: version "4.17.21" resolved "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz" @@ -3867,12 +3913,12 @@ long@^5.0.0: resolved "https://registry.yarnpkg.com/long/-/long-5.2.1.tgz#e27595d0083d103d2fa2c20c7699f8e0c92b897f" integrity sha512-GKSNGeNAtw8IryjjkhZxuKB3JzlcLTwjtiQCHKvqQet81I93kXslhDQruGI/QsddO83mcDToBVy7GqGS/zYf/A== -loupe@^2.3.1: - version "2.3.6" - resolved "https://registry.yarnpkg.com/loupe/-/loupe-2.3.6.tgz#76e4af498103c532d1ecc9be102036a21f787b53" - integrity sha512-RaPMZKiMy8/JruncMU5Bt6na1eftNoo++R4Y+N2FrxkDVTrGvcyzFTsaGif4QTeKESheMGegbhw6iUAq+5A8zA== +loupe@^2.3.6: + version "2.3.7" + resolved "https://registry.yarnpkg.com/loupe/-/loupe-2.3.7.tgz#6e69b7d4db7d3ab436328013d37d1c8c3540c697" + integrity sha512-zSMINGVYkdpYSOBmLi0D1Uo7JU9nVdQKrHxC8eYlV+9YKK9WePqAlL7lSlorG/U2Fw1w0hTBmaa/jrQ3UbPHtA== dependencies: - get-func-name "^2.0.0" + get-func-name "^2.0.1" lower-case@^2.0.2: version "2.0.2" @@ -3917,9 +3963,9 @@ make-dir@^3.0.0: dependencies: semver "^6.0.0" -make-error@1.x, make-error@^1.1.1: +make-error@^1.1.1, make-error@^1.3.6: version "1.3.6" - resolved "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz" + resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2" integrity sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw== makeerror@1.0.12: @@ -3959,7 +4005,7 @@ merge2@^1.3.0, merge2@^1.4.1: resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== -methods@^1.1.2, methods@~1.1.2: +methods@~1.1.2: version "1.1.2" resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" integrity sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w== @@ -4008,7 +4054,7 @@ minimatch@^7.1.3: dependencies: brace-expansion "^2.0.1" -minimist@^1.2.0, minimist@^1.2.6: +minimist@^1.2.0, minimist@^1.2.5, minimist@^1.2.6: version "1.2.8" resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c" integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== @@ -4078,6 +4124,11 @@ negotiator@0.6.3: resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.3.tgz#58e323a72fedc0d6f9cd4d31fe49f51479590ccd" integrity sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg== +neo-async@^2.6.2: + version "2.6.2" + resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f" + integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw== + no-case@^3.0.4: version "3.0.4" resolved "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz" @@ -4091,44 +4142,28 @@ nocache@^3.0.1: resolved "https://registry.yarnpkg.com/nocache/-/nocache-3.0.1.tgz#54d8b53a7e0a0aa1a288cfceab8a3cefbcde67d4" integrity sha512-Gh39xwJwBKy0OvFmWfBs/vDO4Nl7JhnJtkqNP76OUinQz7BiMoszHYrIDHHAaqVl/QKVxCEy4ZxC/XZninu7nQ== -nock@^13.1.3, nock@^13.2.1: - version "13.2.0" - resolved "https://registry.yarnpkg.com/nock/-/nock-13.2.0.tgz#1da976e809cb082e3acb65de9ea7839cdd115d3e" - integrity sha512-j7xjoMU9ZnvkTeoLnD2gIXNlwmLb+GNCPbnqtx7IwlNvdBBqU5aaQPK4Nw6lNmqIJkBubyka6rvrZuDNz1L7Ew== +nock@^13.2.1, nock@^13.3.8: + version "13.5.6" + resolved "https://registry.yarnpkg.com/nock/-/nock-13.5.6.tgz#5e693ec2300bbf603b61dae6df0225673e6c4997" + integrity sha512-o2zOYiCpzRqSzPj0Zt/dQ/DqZeYoaQ7TUonc/xUPjCGl9WeHpNbxgVvOquXYAaJzI0M9BXV3HTzG0p8IUAbBTQ== dependencies: debug "^4.1.0" json-stringify-safe "^5.0.1" - lodash.set "^4.3.2" propagate "^2.0.0" -nock@^13.3.3: - version "13.3.3" - resolved "https://registry.yarnpkg.com/nock/-/nock-13.3.3.tgz#179759c07d3f88ad3e794ace885629c1adfd3fe7" - integrity sha512-z+KUlILy9SK/RjpeXDiDUEAq4T94ADPHE3qaRkf66mpEhzc/ytOMm3Bwdrbq6k1tMWkbdujiKim3G2tfQARuJw== - dependencies: - debug "^4.1.0" - json-stringify-safe "^5.0.1" - lodash "^4.17.21" - propagate "^2.0.0" - -node-abort-controller@^3.0.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/node-abort-controller/-/node-abort-controller-3.1.1.tgz#a94377e964a9a37ac3976d848cb5c765833b8548" - integrity sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ== - node-addon-api@^6.1.0: version "6.1.0" resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-6.1.0.tgz#ac8470034e58e67d0c6f1204a18ae6995d9c0d76" integrity sha512-+eawOlIgy680F0kBzPUNFhMZGtJ1YmqM6l4+Crf4IkImjYrO/mqPwRMh352g23uIaQKFItcQ64I7KMaJxHgAVA== -node-fetch@2.6.7: - version "2.6.7" - resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.7.tgz#24de9fba827e3b4ae44dc8b20256a379160052ad" - integrity sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ== +node-fetch@^2.7.0: + version "2.7.0" + resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.7.0.tgz#d0f0fa6e3e2dc1d27efcd8ad99d550bda94d187d" + integrity sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A== dependencies: whatwg-url "^5.0.0" -node-gyp-build@^3.9.0: +node-gyp-build@<4.0, node-gyp-build@^3.9.0: version "3.9.0" resolved "https://registry.yarnpkg.com/node-gyp-build/-/node-gyp-build-3.9.0.tgz#53a350187dd4d5276750da21605d1cb681d09e25" integrity sha512-zLcTg6P4AbcHPq465ZMFNXx7XpKKJh+7kkN699NiQWisR2uWYOWNWqRHAmbnmKiL4e9aLSlmy5U7rEMUXV59+A== @@ -4341,10 +4376,10 @@ path-to-regexp@0.1.10: resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.10.tgz#67e9108c5c0551b9e5326064387de4763c4d5f8b" integrity sha512-7lf7qcQidTku0Gu3YDPc8DJ1q7OOucfa/BSsIwjuh56VU7katFvuM8hULfkwB3Fns/rsVF7PwPKVw1sl5KQS9w== -path-to-regexp@^0.1.2: - version "0.1.7" - resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" - integrity sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ== +path-to-regexp@^0.1.12: + version "0.1.13" + resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.13.tgz#9b22ec16bc3ab88d05a0c7e369869421401ab17d" + integrity sha512-A/AGNMFN3c8bOlvV9RreMdrv7jsmF9XIfDeCd87+I8RNg6s78BhJxMu69NEMHBSJFxKidViTEdruRwEk/WIKqA== path-type@^4.0.0: version "4.0.0" @@ -4366,11 +4401,6 @@ picomatch@^2.0.4, picomatch@^2.2.3, picomatch@^2.3.1: resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== -pify@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/pify/-/pify-5.0.0.tgz#1f5eca3f5e87ebec28cc6d54a0e4aaf00acc127f" - integrity sha512-eW/gHNMlxdSP6dmG6uJip6FXN0EQBwm2clYYd8Wul42Cwu/DK8HEftzsapcNdYe2MfLiIwZqsDk2RDEsTE79hA== - pirates@^4.0.4: version "4.0.6" resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.6.tgz#3018ae32ecfcff6c29ba2267cbf21166ac1f36b9" @@ -4383,20 +4413,20 @@ pkg-dir@^4.2.0: dependencies: find-up "^4.0.0" -pprof-format@^2.0.7: - version "2.0.7" - resolved "https://registry.yarnpkg.com/pprof-format/-/pprof-format-2.0.7.tgz#526e4361f8b37d16b2ec4bb0696b5292de5046a4" - integrity sha512-1qWaGAzwMpaXJP9opRa23nPnt2Egi7RMNoNBptEE/XwHbcn4fC2b/4U4bKc5arkGkIh2ZabpF2bEb+c5GNHEKA== +pprof-format@^2.1.0: + version "2.2.1" + resolved "https://registry.yarnpkg.com/pprof-format/-/pprof-format-2.2.1.tgz#64d32207fb46990349eb52825defb449d6ccc9b4" + integrity sha512-p4tVN7iK19ccDqQv8heyobzUmbHyds4N2FI6aBMcXz6y99MglTWDxIyhFkNaLeEXs6IFUEzT0zya0icbSLLY0g== prelude-ls@^1.2.1: version "1.2.1" resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== -prettier@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.0.0.tgz#e7b19f691245a21d618c68bc54dc06122f6105ae" - integrity sha512-zBf5eHpwHOGPC47h0zrPyNn+eAEIdEzfywMoYn2XPi0P44Zp0tSq64rq0xAREh4auw2cJZHo9QUob+NqCQky4g== +prettier@^3.0.3: + version "3.8.1" + resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.8.1.tgz#edf48977cf991558f4fcbd8a3ba6015ba2a3a173" + integrity sha512-UOnG6LftzbdaHZcKoPFtOcCKztrQ57WkHDeRD9t/PTQtmT0NHSeWWepj6pS0z/N7+08BHFDQVUrfmfMRcZwbMg== pretty-format@^29.0.0: version "29.4.3" @@ -4439,10 +4469,10 @@ property-expr@^2.0.4: resolved "https://registry.yarnpkg.com/property-expr/-/property-expr-2.0.5.tgz#278bdb15308ae16af3e3b9640024524f4dc02cb4" integrity sha512-IJUkICM5dP5znhCckHSv30Q4b5/JA5enCtkRHYaOVOAocnH/1BQEYTC5NMfT3AVl/iXKdr3aqQbQn9DxyWknwA== -protobufjs@^7.1.2: - version "7.2.4" - resolved "https://registry.yarnpkg.com/protobufjs/-/protobufjs-7.2.4.tgz#3fc1ec0cdc89dd91aef9ba6037ba07408485c3ae" - integrity sha512-AT+RJgD2sH8phPmCf7OUZR8xGdcJRga4+1cOaXJ64hvcSkVhNcRHOwIxUatPH15+nj59WAGTDv3LSGZPEQbJaQ== +protobufjs@^7.2.5: + version "7.5.4" + resolved "https://registry.yarnpkg.com/protobufjs/-/protobufjs-7.5.4.tgz#885d31fe9c4b37f25d1bb600da30b1c5b37d286a" + integrity sha512-CvexbZtbov6jW2eXAvLukXjXUW1TzFaivC46BpWc/3BpcCysb5Vffu+B3XHMm8lVEuy2Mm4XGex8hBSg1yapPg== dependencies: "@protobufjs/aspromise" "^1.1.2" "@protobufjs/base64" "^1.1.2" @@ -4618,16 +4648,21 @@ resolve@^1.10.1, resolve@^1.20.0, resolve@^1.22.1: path-parse "^1.0.7" supports-preserve-symlinks-flag "^1.0.0" -retry@^0.10.1: - version "0.10.1" - resolved "https://registry.yarnpkg.com/retry/-/retry-0.10.1.tgz#e76388d217992c252750241d3d3956fed98d8ff4" - integrity sha512-ZXUSQYTHdl3uS7IuCehYfMzKyIDBNoAuUblvy5oGO5UJSUTmStUUVPXbA9Qxd173Bgre53yCQczQuHgRWAdvJQ== +retry@^0.13.1: + version "0.13.1" + resolved "https://registry.yarnpkg.com/retry/-/retry-0.13.1.tgz#185b1587acf67919d63b357349e03537b2484658" + integrity sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg== reusify@^1.0.4: version "1.0.4" resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== +rfdc@^1.3.1: + version "1.4.1" + resolved "https://registry.yarnpkg.com/rfdc/-/rfdc-1.4.1.tgz#778f76c4fb731d93414e8f925fbecf64cce7f6ca" + integrity sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA== + rimraf@^3.0.0, rimraf@^3.0.2: version "3.0.2" resolved "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz" @@ -4683,17 +4718,22 @@ semver@7.3.8: dependencies: lru-cache "^6.0.0" -semver@7.x, semver@^7.3.5, semver@^7.3.7, semver@^7.3.8: +semver@^6.0.0, semver@^6.1.0, semver@^6.3.0: + version "6.3.1" + resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4" + integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== + +semver@^7.3.5, semver@^7.3.7: version "7.5.4" resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.4.tgz#483986ec4ed38e1c6c48c34894a9182dbff68a6e" integrity sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA== dependencies: lru-cache "^6.0.0" -semver@^6.0.0, semver@^6.1.0, semver@^6.3.0: - version "6.3.1" - resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4" - integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== +semver@^7.5.4, semver@^7.7.4: + version "7.7.4" + resolved "https://registry.yarnpkg.com/semver/-/semver-7.7.4.tgz#28464e36060e991fa7a11d0279d2d3f3b57a7e8a" + integrity sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA== send@0.19.0: version "0.19.0" @@ -4758,6 +4798,11 @@ shebang-regex@^3.0.0: resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== +shell-quote@^1.8.1: + version "1.8.3" + resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.8.3.tgz#55e40ef33cf5c689902353a3d8cd1a6725f08b4b" + integrity sha512-ObmnIF4hXNg1BqhnHmgbDETF8dLPCggZWBjkQfhZpbszZnYur5DUljTcCHii5LC3J5E0yeO/1LIMyH+UvHQgyw== + shiki@^0.14.1: version "0.14.1" resolved "https://registry.yarnpkg.com/shiki/-/shiki-0.14.1.tgz#9fbe082d0a8aa2ad63df4fbf2ee11ec924aa7ee1" @@ -4828,17 +4873,10 @@ source-map@^0.6.0, source-map@^0.6.1: resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== -source-map@^0.7.3: - version "0.7.4" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.4.tgz#a9bbe705c9d8846f4e08ff6765acf0f1b0898656" - integrity sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA== - -split@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/split/-/split-1.0.1.tgz#605bd9be303aa59fb35f9229fbea0ddec9ea07d9" - integrity sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg== - dependencies: - through "2" +source-map@^0.7.4: + version "0.7.6" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.6.tgz#a3658ab87e5b6429c8a1f3ba0083d4c61ca3ef02" + integrity sha512-i5uvt8C3ikiWeNZSVZNWcfZPItFQOsYTUAOkcUPGd8DqDy1uOUikjt5dG+uRlwyvR108Fb9DOd4GvXfT0N2/uQ== sprintf-js@~1.0.2: version "1.0.3" @@ -4992,10 +5030,10 @@ thenify-all@^1.0.0: dependencies: any-promise "^1.0.0" -through@2: - version "2.3.8" - resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" - integrity sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg== +tlhunter-sorted-set@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/tlhunter-sorted-set/-/tlhunter-sorted-set-0.1.0.tgz#1c3eae28c0fa4dff97e9501d2e3c204b86406f4b" + integrity sha512-eGYW4bjf1DtrHzUYxYfAcSytpOkA44zsr7G2n3PV7yOUR23vmkGe3LL4R+1jL9OsXtbsFOwe8XtbCrabeaEFnw== tmp@^0.2.1: version "0.2.1" @@ -5036,24 +5074,25 @@ tr46@~0.0.3: resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" integrity sha1-gYT9NH2snNwYWZLzpmIuFLnZq2o= -ts-jest@^29.1.0: - version "29.1.0" - resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-29.1.0.tgz#4a9db4104a49b76d2b368ea775b6c9535c603891" - integrity sha512-ZhNr7Z4PcYa+JjMl62ir+zPiNJfXJN6E8hSLnaUKhOgqcn8vb3e537cpkd0FuAfRK3sR1LSqM1MOhliXNgOFPA== +ts-jest@^29.1.5: + version "29.4.9" + resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-29.4.9.tgz#47dc33d0f5c36bddcedd16afefae285e0b049d2d" + integrity sha512-LTb9496gYPMCqjeDLdPrKuXtncudeV1yRZnF4Wo5l3SFi0RYEnYRNgMrFIdg+FHvfzjCyQk1cLncWVqiSX+EvQ== dependencies: - bs-logger "0.x" - fast-json-stable-stringify "2.x" - jest-util "^29.0.0" + bs-logger "^0.2.6" + fast-json-stable-stringify "^2.1.0" + handlebars "^4.7.9" json5 "^2.2.3" - lodash.memoize "4.x" - make-error "1.x" - semver "7.x" - yargs-parser "^21.0.1" + lodash.memoize "^4.1.2" + make-error "^1.3.6" + semver "^7.7.4" + type-fest "^4.41.0" + yargs-parser "^21.1.1" -ts-node@^10.9.1: - version "10.9.1" - resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-10.9.1.tgz#e73de9102958af9e1f0b168a6ff320e25adcff4b" - integrity sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw== +ts-node@^10.9.2: + version "10.9.2" + resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-10.9.2.tgz#70f021c9e185bccdca820e26dc413805c101c71f" + integrity sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ== dependencies: "@cspotcode/source-map-support" "^0.8.0" "@tsconfig/node10" "^1.0.7" @@ -5103,11 +5142,16 @@ type-check@^0.4.0, type-check@~0.4.0: dependencies: prelude-ls "^1.2.1" -type-detect@4.0.8, type-detect@^4.0.0, type-detect@^4.0.5: +type-detect@4.0.8, type-detect@^4.0.0: version "4.0.8" resolved "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz" integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g== +type-detect@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.1.0.tgz#deb2453e8f08dcae7ae98c626b13dddb0155906c" + integrity sha512-Acylog8/luQ8L7il+geoSxhEkazvkslg7PSNKOX59mbB9cOveP5aq9h74Y7YU8yDpJwetzQQrfIwtf4Wp4LKcw== + type-fest@^0.20.2: version "0.20.2" resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" @@ -5118,6 +5162,11 @@ type-fest@^0.21.3: resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37" integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w== +type-fest@^4.41.0: + version "4.41.0" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-4.41.0.tgz#6ae1c8e5731273c2bf1f58ad39cbae2c91a46c58" + integrity sha512-TeTSQ6H5YHvpqVwBRcnLDCBnDOHWYu7IvGbHT6N8AOymcr9PJGjc1GTtiWZTYg0NCgYwvnYWEkVChQAr9bjfwA== + type-is@~1.6.18: version "1.6.18" resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131" @@ -5135,10 +5184,10 @@ typed-array-length@^1.0.4: for-each "^0.3.3" is-typed-array "^1.1.9" -typedoc@^0.23.26: - version "0.23.26" - resolved "https://registry.yarnpkg.com/typedoc/-/typedoc-0.23.26.tgz#ae082683698bad68757d8fe619242a56d6b5bf36" - integrity sha512-5m4KwR5tOLnk0OtMaRn9IdbeRM32uPemN9kur7YK9wFqx8U0CYrvO9aVq6ysdZSV1c824BTm+BuQl2Ze/k1HtA== +typedoc@^0.23.28: + version "0.23.28" + resolved "https://registry.yarnpkg.com/typedoc/-/typedoc-0.23.28.tgz#3ce9c36ef1c273fa849d2dea18651855100d3ccd" + integrity sha512-9x1+hZWTHEQcGoP7qFmlo4unUoVJLB0H/8vfO/7wqTnZxg4kPuji9y3uRzEu0ZKez63OJAUmiGhUrtukC6Uj3w== dependencies: lunr "^2.3.9" marked "^4.2.12" @@ -5150,6 +5199,11 @@ typescript@4.8.4: resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.8.4.tgz#c464abca159669597be5f96b8943500b238e60e6" integrity sha512-QCh+85mCy+h0IGff8r5XWzOVSbBO+KfeYrMQh7NJ58QujwcE22u+NUSmUxqF+un70P9GXKxa2HCNiTTMJknyjQ== +uglify-js@^3.1.4: + version "3.19.3" + resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.19.3.tgz#82315e9bbc6f2b25888858acd1fff8441035b77f" + integrity sha512-v3Xu+yuwBXisp6QYTcH4UbH+xYJXqnq2m/LtQVWKWzYc1iehYnLixoQDN9FH6/j9/oybfd6W9Ghwkl8+UMKTKQ== + unbox-primitive@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.2.tgz#29032021057d5e6cdbd08c5129c226dff8ed6f9e" @@ -5308,6 +5362,11 @@ which@^2.0.1: dependencies: isexe "^2.0.0" +wordwrap@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" + integrity sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q== + wrap-ansi@^7.0.0: version "7.0.0" resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" @@ -5355,7 +5414,7 @@ yaml@^2.2.2: resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.3.1.tgz#02fe0975d23cd441242aa7204e09fc28ac2ac33b" integrity sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ== -yargs-parser@^21.0.1, yargs-parser@^21.1.1: +yargs-parser@^21.1.1: version "21.1.1" resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.1.1.tgz#9096bceebf990d21bb31fa9516e0ede294a77d35" integrity sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==