diff --git a/.github/workflows/audit-account.yml b/.github/workflows/audit-account.yml index f8a296d9a..3e428232a 100644 --- a/.github/workflows/audit-account.yml +++ b/.github/workflows/audit-account.yml @@ -46,16 +46,16 @@ jobs: echo "Reports with no entries will be omitted" CI_ACTIVE="$(./audit-account.sh ci_active resources.json)" [[ $(jq -r 'length' <<< "${CI_ACTIVE}") -gt 0 ]] && jq -r '(.[0] - | keys_unsorted) as $keys | $keys, map([.[ $keys[] ]])[] | @csv' <<< "${CI_ACTIVE}" > reports/ci_active.csv + | keys_unsorted) as $keys | $keys, map([.[ $keys[] ]])[] | @csv' <<< "${CI_ACTIVE}" > reports/ci_active.csv || : CI_INACTIVE="$(./audit-account.sh ci_inactive resources.json)" [[ $(jq -r 'length' <<< "${CI_INACTIVE}") -gt 0 ]] && jq -r '(.[0] - | keys_unsorted) as $keys | $keys, map([.[ $keys[] ]])[] | @csv' <<< "${CI_INACTIVE}" > reports/ci_inactive.csv + | keys_unsorted) as $keys | $keys, map([.[ $keys[] ]])[] | @csv' <<< "${CI_INACTIVE}" > reports/ci_inactive.csv || : CF_OTHER="$(./audit-account.sh cf_other resources.json)" [[ $(jq -r 'length' <<< "${CF_OTHER}") -gt 0 ]] && jq -r '(.[0] - | keys_unsorted) as $keys | $keys, map([.[ $keys[] ]])[] | @csv' <<< "${CF_OTHER}" > reports/cf_other.csv + | keys_unsorted) as $keys | $keys, map([.[ $keys[] ]])[] | @csv' <<< "${CF_OTHER}" > reports/cf_other.csv || : UNTAGGED="$(./audit-account.sh untagged resources.json)" [[ $(jq -r 'length' <<< "${UNTAGGED}") -gt 0 ]] && jq -r '(.[0] - | keys_unsorted) as $keys | $keys, map([.[ $keys[] ]])[] | @csv' <<< "${UNTAGGED}" > reports/untagged.csv + | keys_unsorted) as $keys | $keys, map([.[ $keys[] ]])[] | @csv' <<< "${UNTAGGED}" > reports/untagged.csv || : - name: Upload reports uses: actions/upload-artifact@v4 with: diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 69d5d21c5..5c23aa0e5 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -7,8 +7,8 @@ on: - "!skipci*" concurrency: - # Ensuring group key matches the destroy workflow currently in master - group: ${{ github.workflow }}-${{ github.ref_name }} + # Ensuring group key matches the destroy workflow currently in main + group: ${{ github.ref_name }} cancel-in-progress: false permissions: diff --git a/.github/workflows/destroy.yml b/.github/workflows/destroy.yml index 5411cd724..0a96661ec 100644 --- a/.github/workflows/destroy.yml +++ b/.github/workflows/destroy.yml @@ -8,6 +8,9 @@ on: description: "Name of the environment to destroy:" required: true +concurrency: + group: ${{ inputs.environment || github.event.ref }} + permissions: id-token: write contents: read @@ -62,4 +65,18 @@ jobs: inputs: '{ "topics": "mgmt.connect.cms-carts-seds.carts-bigmac-streams-${{env.BRANCH_NAME}}.config,mgmt.connect.cms-carts-seds.carts-bigmac-streams-${{env.BRANCH_NAME}}.offsets,mgmt.connect.cms-carts-seds.carts-bigmac-streams-${{env.BRANCH_NAME}}.status"}' ref: refs/heads/master # Otherwise workflow-dispatch tries to operate off of our default name - name: Destroy - run: ./run destroy --stage $STAGE_PREFIX$branch_name --verify false \ No newline at end of file + run: ./run destroy --stage $STAGE_PREFIX$branch_name --verify false + + # Notify the integrations channel when a destroy action fails + notify_on_destroy_failure: + runs-on: ubuntu-latest + needs: + - destroy + if: ${{ failure() }} + steps: + - name: Slack Notification + uses: rtCamp/action-slack-notify@v2 + env: + SLACK_TITLE: ":boom: A destroy action has failed on ${{ github.repository }}." + MSG_MINIMAL: true + SLACK_WEBHOOK: ${{ secrets.INTEGRATIONS_SLACK_WEBHOOK }} \ No newline at end of file diff --git a/.github/workflows/post-deploy-slack-notification.yml b/.github/workflows/post-deploy-slack-notification.yml index 9a06a1e06..2fa4ee199 100755 --- a/.github/workflows/post-deploy-slack-notification.yml +++ b/.github/workflows/post-deploy-slack-notification.yml @@ -8,7 +8,6 @@ on: - 'main' - 'val' - 'production' - - 'snyk-**' jobs: notify_on_failure: @@ -24,20 +23,6 @@ jobs: MSG_MINIMAL: true SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} - # Notify the integrations channel only when a Snyk auto merge fails - notify_failed_snyk_auto_merge: - runs-on: ubuntu-latest - #only check branch names that begin with snyk- - if: ${{ github.event.workflow_run.conclusion == 'failure' && startsWith(github.event.workflow_run.head_branch, 'snyk-') }} - steps: - - name: Slack Notification - uses: rtCamp/action-slack-notify@v2 - env: - SLACK_TITLE: ":boom: A Synk auto merge has failed in ${{ github.repository }}" - SLACK_MESSAGE: "${{ github.event.workflow_run.html_url }}" - MSG_MINIMAL: true - SLACK_WEBHOOK: ${{ secrets.INTEGRATIONS_SLACK_WEBHOOK }} - # Sends a slack message to the mdct-prod-releases channel in CMS slack notify_on_prod_release: runs-on: ubuntu-latest diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 90e039c4e..e6cb288b1 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -44,21 +44,4 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} PRNUM: ${{ github.event.pull_request.number }} - PR_AUTHOR: ${{ github.event.pull_request.user.login }} - - #Notify the integrations channel only when a Snyk auto merge fails pr checks - notify_on_pr_failure: - runs-on: ubuntu-latest - needs: - - linting - - jest-frontend - - jest-backend - #only check branch names that begin with snyk- - if: ${{ failure() && startsWith(github.head_ref, 'snyk-') }} - steps: - - name: Slack Notification - uses: rtCamp/action-slack-notify@v2 - env: - SLACK_TITLE: ":boom: A Synk auto merge has failed pull request checks in ${{ github.repository }}." - MSG_MINIMAL: true - SLACK_WEBHOOK: ${{ secrets.INTEGRATIONS_SLACK_WEBHOOK }} + PR_AUTHOR: ${{ github.event.pull_request.user.login }} \ No newline at end of file diff --git a/.github/workflows/scan_security-hub-jira-integration.yml b/.github/workflows/scan_security-hub-jira-integration.yml index c891ab340..2428a1458 100644 --- a/.github/workflows/scan_security-hub-jira-integration.yml +++ b/.github/workflows/scan_security-hub-jira-integration.yml @@ -21,13 +21,12 @@ jobs: aws-region: ${{ secrets.AWS_DEFAULT_REGION }} role-to-assume: ${{ secrets.PRODUCTION_SYNC_OIDC_ROLE }} - name: Sync Security Hub and Jira - uses: Enterprise-CMCS/mac-fc-security-hub-visibility@v1.0.5 + uses: Enterprise-CMCS/mac-fc-security-hub-visibility@v2.0.9 with: jira-username: "mdct_github_service_account" jira-token: ${{ secrets.JIRA_ENT_USER_TOKEN }} - jira-host: jiraent.cms.gov jira-project-key: CMDCT jira-ignore-statuses: Done, Closed, Canceled jira-custom-fields: '{ "customfield_10100": "CMDCT-2280", "customfield_26700" : [{"id": "40101", "value": "CARTS"}] }' aws-severities: CRITICAL, HIGH, MEDIUM - assign-jira-ticket-to: "MWTW" + jira-assignee: "MWTW" diff --git a/.github/workflows/snyk-auto-merge.yml b/.github/workflows/snyk-auto-merge.yml deleted file mode 100644 index 0694c999a..000000000 --- a/.github/workflows/snyk-auto-merge.yml +++ /dev/null @@ -1,24 +0,0 @@ -name: Snyk auto-merge -on: - pull_request: - workflow_dispatch: - -permissions: - pull-requests: write - contents: write - -jobs: - snyk: - runs-on: ubuntu-latest - if: ${{ github.actor == 'mdct-github-service-account' }} - steps: - - name: Auto-approve Snyk PR - run: gh pr review --approve "$PR_URL" - env: - PR_URL: ${{github.event.pull_request.html_url}} - GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} - - name: Enable auto-merge for Snyk PRs - run: gh pr merge --auto --squash "$PR_URL" - env: - PR_URL: ${{github.event.pull_request.html_url}} - GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} diff --git a/.images/architecture.svg b/.images/architecture.svg index d7d40c838..a222bc1dd 100644 --- a/.images/architecture.svg +++ b/.images/architecture.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/README.md b/README.md index 3d65460e6..872ff60c8 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ [![Maintainability](https://api.codeclimate.com/v1/badges/f1775f53aedf747e85b2/maintainability)](https://codeclimate.com/repos/6449718c21275100df510ea9/maintainability) [![Test Coverage](https://api.codeclimate.com/v1/badges/f1775f53aedf747e85b2/test_coverage)](https://codeclimate.com/repos/6449718c21275100df510ea9/test_coverage) -### Integration Environment Deploy Status: +## Integration Environment Deploy Status: | Branch | Build Status | | ------------- | ------------- | | main | ![deploy](https://github.com/Enterprise-CMCS/macpro-mdct-carts/actions/workflows/deploy.yml/badge.svg) | @@ -16,7 +16,7 @@ CARTS is the CMCS MDCT application for collecting state data related to coverage Under section 2108(a) of the Act, states must assess the operation of their separate CHIP and Medicaid expansion programs and the progress made in reducing the number of uncovered, low-income children. The results of the assessment are reported to the Secretary by January 1 following the end of the FY in the CHIP Annual Reporting Template System (CARTS). CARTS collects information about programmatic changes, performance goals, program operation, program financing, program challenges and accomplishments. -_Note: The [`main`](https://github.com/Enterprise-CMCS/macpro-mdct-carts/tree/main) branch contains CARTSv3. All code related to CARTSv2 (legacy) can be found in the [`master`](https://github.com/Enterprise-CMCS/macpro-mdct-carts/tree/master) branch._ +_Note: The [`main`](https://github.com/Enterprise-CMCS/macpro-mdct-carts/tree/main) branch contains CARTSv3. All code related to CARTSv2 (legacy) can be found in the [`skipci-archive-carts-v2`](https://github.com/Enterprise-CMCS/macpro-mdct-carts/tree/skipci-archive-carts-v2) branch._ ## Table of contents @@ -115,10 +115,7 @@ On the SEDS side, this topic is updated on every submission of seds data, but CA - 4th quarter data. - The rollover for a "new year" is October, and future submissions are not recognized until that threshold -Updates outside of that time frame will need to be manually corrected in CARTS, or the integration will need to be modifed to collect data for old forms. CARTS additionally looks for the `enrollmentCounts` property which is only included in forms 21E and 64.21E (question 7), either by manual trigger or update. See SEDS files: - -- [generateEnrollmentTotals](https://github.com/Enterprise-CMCS/macpro-mdct-seds/blob/master/services/app-api/handlers/state-forms/post/generateEnrollmentTotals.js) -- [updateStateForms](https://github.com/Enterprise-CMCS/macpro-mdct-seds/blob/master/services/app-api/handlers/state-forms/post/updateStateForms.js) +Updates outside of that time frame will need to be manually corrected in CARTS, or the integration will need to be modifed to collect data for old forms. CARTS additionally looks for the `enrollmentCounts` property which is only included in forms 21E and 64.21E (question 7), either by manual trigger or update. For testing convenience, stateuser2 points at AL in CARTS and the stateuser points at AL in SEDS. diff --git a/package.json b/package.json index 5bfe1bb5d..64d442968 100644 --- a/package.json +++ b/package.json @@ -40,7 +40,7 @@ "eslint-plugin-react": "^7.24.0", "eslint-plugin-react-hooks": "^2.x", "prettier": "^2.4.1", - "serverless": "^3.38.0", + "serverless": "^3.39.0", "serverless-bundle": "^6.1.0", "serverless-cloudfront-invalidate": "^1.12.2", "serverless-dotenv-plugin": "^3.0.0", diff --git a/services/app-api/handlers/printing/printPdf.ts b/services/app-api/handlers/printing/printPdf.ts index 686421f94..5b3f84ad9 100644 --- a/services/app-api/handlers/printing/printPdf.ts +++ b/services/app-api/handlers/printing/printPdf.ts @@ -21,7 +21,7 @@ export const print = handler(async (event, _context) => { if (DOMPurify.isSupported) { sanitizedHtml = DOMPurify.sanitize(rawHtml, { WHOLE_DOCUMENT: true, - ADD_TAGS: ["head"], + ADD_TAGS: ["head", "link", "base"], }); } if (!sanitizedHtml) { @@ -39,7 +39,7 @@ export const print = handler(async (event, _context) => { document_content: rawHtml, type: "pdf" as const, // This tag differentiates QMR and CARTS requests in DocRaptor's logs. - tag: "CARTS", + tag: `CARTS ${stage}`, test: stage !== "production", prince_options: { profile: "PDF/UA-1" as const, diff --git a/services/app-api/handlers/printing/tests/printPdf.test.ts b/services/app-api/handlers/printing/tests/printPdf.test.ts index a2165f1a4..445c3b2e7 100644 --- a/services/app-api/handlers/printing/tests/printPdf.test.ts +++ b/services/app-api/handlers/printing/tests/printPdf.test.ts @@ -54,7 +54,7 @@ describe("Test Print PDF handler", () => { doc: expect.objectContaining({ document_content: html, type: "pdf", - tag: "CARTS", + tag: expect.stringMatching("CARTS"), prince_options: expect.objectContaining({ profile: "PDF/UA-1", }), diff --git a/services/app-api/handlers/stateStatus/tests/uncertify.test.ts b/services/app-api/handlers/stateStatus/tests/uncertify.test.ts index a882720c5..fa1eb616c 100644 --- a/services/app-api/handlers/stateStatus/tests/uncertify.test.ts +++ b/services/app-api/handlers/stateStatus/tests/uncertify.test.ts @@ -17,6 +17,7 @@ jest.mock("../../../libs/authorization", () => ({ state: "AL", }), })); + describe("Test Uncertify CARTS Report Handler", () => { test("uncertify CARTS report", async () => { const event: APIGatewayProxyEvent = { @@ -24,7 +25,21 @@ describe("Test Uncertify CARTS Report Handler", () => { pathParameters: { year: "2021", state: "AL" }, body: `{"status": "in_progress", "username": "test user"}`, }; + const res = await updateStateStatus(event, null); + + /* + * Convert date to a regex that doesn't care about seconds. + * For example "12:34:56 (UTC)" becomes /12:34:.. \(UTC\)/ + * This reduces flakiness, in case a second passes during text execution + */ + const expectedDateString = new Date() + .toString() + .replace("(", "\\(") + .replace(")", "\\)") + .replace("+", "\\+") + .replace(/(?<=\d{2}:\d{2}:)\d{2}/, ".."); + expect(res.statusCode).toBe(200); expect(dynamodbLib.update).toBeCalledWith({ ExpressionAttributeNames: { @@ -33,7 +48,7 @@ describe("Test Uncertify CARTS Report Handler", () => { }, ExpressionAttributeValues: { ":status": "in_progress", - ":lastChanged": new Date().toString(), + ":lastChanged": expect.stringMatching(expectedDateString), }, Key: { stateId: "AL", diff --git a/services/app-api/libs/validation/backend-section.schema.ts b/services/app-api/libs/validation/backend-section.schema.ts index 3383d025c..9ae88e986 100644 --- a/services/app-api/libs/validation/backend-section.schema.ts +++ b/services/app-api/libs/validation/backend-section.schema.ts @@ -359,6 +359,9 @@ export const sectionSchema = { hint: { type: "string", }, + mask: { + type: "string", + }, questions: { type: "array", items: { diff --git a/services/app-api/package.json b/services/app-api/package.json index f2247f3ba..bd0ddd9c1 100644 --- a/services/app-api/package.json +++ b/services/app-api/package.json @@ -18,7 +18,7 @@ "devDependencies": { "@types/dompurify": "^3.0.5", "@types/jest": "^27.4.0", - "@types/jsdom": "^21.1.6", + "@types/jsdom": "^21.1.7", "aws-sdk-client-mock": "^3.0.0", "jest": "^27.4.7", "serverless-associate-waf": "^1.2.1", @@ -27,19 +27,22 @@ "typescript": "^4.5.4" }, "dependencies": { - "@aws-sdk/client-dynamodb": "^3.596.0", - "@aws-sdk/client-s3": "^3.596.0", - "@aws-sdk/client-ssm": "^3.596.0", - "@aws-sdk/lib-dynamodb": "^3.596.0", - "@aws-sdk/s3-request-presigner": "^3.596.0", + "@aws-sdk/client-dynamodb": "^3.621.0", + "@aws-sdk/client-s3": "^3.621.0", + "@aws-sdk/client-ssm": "^3.621.0", + "@aws-sdk/lib-dynamodb": "^3.621.0", + "@aws-sdk/s3-request-presigner": "^3.621.0", "aws-jwt-verify": "^3.1.0", "dompurify": "^3.1.4", - "jsdom": "^22.1.0", + "jsdom": "^24.1.0", "jsonpath-plus": "^5.1.0", "jsonschema": "^1.4.1", "jwt-decode": "^3.1.2", "uuid": "^7.0.3" }, + "resolutions": { + "ws": "^8.18.0" + }, "jest": { "verbose": true, "transform": { diff --git a/services/app-api/yarn.lock b/services/app-api/yarn.lock index 9fb24d794..01a60594a 100644 --- a/services/app-api/yarn.lock +++ b/services/app-api/yarn.lock @@ -2,487 +2,479 @@ # yarn lockfile v1 -"@aws-crypto/crc32@3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@aws-crypto/crc32/-/crc32-3.0.0.tgz#07300eca214409c33e3ff769cd5697b57fdd38fa" - integrity sha512-IzSgsrxUcsrejQbPVilIKy16kAT52EwB6zSaI+M3xxIhKh5+aldEyvI+z6erM7TCLB2BJsFrtHjp6/4/sr+3dA== +"@aws-crypto/crc32@5.2.0": + version "5.2.0" + resolved "https://registry.yarnpkg.com/@aws-crypto/crc32/-/crc32-5.2.0.tgz#cfcc22570949c98c6689cfcbd2d693d36cdae2e1" + integrity sha512-nLbCWqQNgUiwwtFsen1AdzAtvuLRsQS8rYgMuxCrdKf9kOssamGLuPwyTY9wyYblNr9+1XM8v6zoDTPPSIeANg== dependencies: - "@aws-crypto/util" "^3.0.0" + "@aws-crypto/util" "^5.2.0" "@aws-sdk/types" "^3.222.0" - tslib "^1.11.1" + tslib "^2.6.2" -"@aws-crypto/crc32c@3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@aws-crypto/crc32c/-/crc32c-3.0.0.tgz#016c92da559ef638a84a245eecb75c3e97cb664f" - integrity sha512-ENNPPManmnVJ4BTXlOjAgD7URidbAznURqD0KvfREyc4o20DPYdEldU1f5cQ7Jbj0CJJSPaMIk/9ZshdB3210w== +"@aws-crypto/crc32c@5.2.0": + version "5.2.0" + resolved "https://registry.yarnpkg.com/@aws-crypto/crc32c/-/crc32c-5.2.0.tgz#4e34aab7f419307821509a98b9b08e84e0c1917e" + integrity sha512-+iWb8qaHLYKrNvGRbiYRHSdKRWhto5XlZUEBwDjYNf+ly5SVYG6zEoYIdxvf5R3zyeP16w4PLBn3rH1xc74Rag== dependencies: - "@aws-crypto/util" "^3.0.0" + "@aws-crypto/util" "^5.2.0" "@aws-sdk/types" "^3.222.0" - tslib "^1.11.1" - -"@aws-crypto/ie11-detection@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@aws-crypto/ie11-detection/-/ie11-detection-3.0.0.tgz#640ae66b4ec3395cee6a8e94ebcd9f80c24cd688" - integrity sha512-341lBBkiY1DfDNKai/wXM3aujNBkXR7tq1URPQDL9wi3AUbI80NR74uF1TXHMm7po1AcnFk8iu2S2IeU/+/A+Q== - dependencies: - tslib "^1.11.1" + tslib "^2.6.2" -"@aws-crypto/sha1-browser@3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@aws-crypto/sha1-browser/-/sha1-browser-3.0.0.tgz#f9083c00782b24714f528b1a1fef2174002266a3" - integrity sha512-NJth5c997GLHs6nOYTzFKTbYdMNA6/1XlKVgnZoaZcQ7z7UJlOgj2JdbHE8tiYLS3fzXNCguct77SPGat2raSw== +"@aws-crypto/sha1-browser@5.2.0": + version "5.2.0" + resolved "https://registry.yarnpkg.com/@aws-crypto/sha1-browser/-/sha1-browser-5.2.0.tgz#b0ee2d2821d3861f017e965ef3b4cb38e3b6a0f4" + integrity sha512-OH6lveCFfcDjX4dbAvCFSYUjJZjDr/3XJ3xHtjn3Oj5b9RjojQo8npoLeA/bNwkOkrSQ0wgrHzXk4tDRxGKJeg== dependencies: - "@aws-crypto/ie11-detection" "^3.0.0" - "@aws-crypto/supports-web-crypto" "^3.0.0" - "@aws-crypto/util" "^3.0.0" + "@aws-crypto/supports-web-crypto" "^5.2.0" + "@aws-crypto/util" "^5.2.0" "@aws-sdk/types" "^3.222.0" "@aws-sdk/util-locate-window" "^3.0.0" - "@aws-sdk/util-utf8-browser" "^3.0.0" - tslib "^1.11.1" + "@smithy/util-utf8" "^2.0.0" + tslib "^2.6.2" -"@aws-crypto/sha256-browser@3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@aws-crypto/sha256-browser/-/sha256-browser-3.0.0.tgz#05f160138ab893f1c6ba5be57cfd108f05827766" - integrity sha512-8VLmW2B+gjFbU5uMeqtQM6Nj0/F1bro80xQXCW6CQBWgosFWXTx77aeOF5CAIAmbOK64SdMBJdNr6J41yP5mvQ== +"@aws-crypto/sha256-browser@5.2.0": + version "5.2.0" + resolved "https://registry.yarnpkg.com/@aws-crypto/sha256-browser/-/sha256-browser-5.2.0.tgz#153895ef1dba6f9fce38af550e0ef58988eb649e" + integrity sha512-AXfN/lGotSQwu6HNcEsIASo7kWXZ5HYWvfOmSNKDsEqC4OashTp8alTmaz+F7TC2L083SFv5RdB+qU3Vs1kZqw== dependencies: - "@aws-crypto/ie11-detection" "^3.0.0" - "@aws-crypto/sha256-js" "^3.0.0" - "@aws-crypto/supports-web-crypto" "^3.0.0" - "@aws-crypto/util" "^3.0.0" + "@aws-crypto/sha256-js" "^5.2.0" + "@aws-crypto/supports-web-crypto" "^5.2.0" + "@aws-crypto/util" "^5.2.0" "@aws-sdk/types" "^3.222.0" "@aws-sdk/util-locate-window" "^3.0.0" - "@aws-sdk/util-utf8-browser" "^3.0.0" - tslib "^1.11.1" + "@smithy/util-utf8" "^2.0.0" + tslib "^2.6.2" -"@aws-crypto/sha256-js@3.0.0", "@aws-crypto/sha256-js@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@aws-crypto/sha256-js/-/sha256-js-3.0.0.tgz#f06b84d550d25521e60d2a0e2a90139341e007c2" - integrity sha512-PnNN7os0+yd1XvXAy23CFOmTbMaDxgxXtTKHybrJ39Y8kGzBATgBFibWJKH6BhytLI/Zyszs87xCOBNyBig6vQ== +"@aws-crypto/sha256-js@5.2.0", "@aws-crypto/sha256-js@^5.2.0": + version "5.2.0" + resolved "https://registry.yarnpkg.com/@aws-crypto/sha256-js/-/sha256-js-5.2.0.tgz#c4fdb773fdbed9a664fc1a95724e206cf3860042" + integrity sha512-FFQQyu7edu4ufvIZ+OadFpHHOt+eSTBaYaki44c+akjg7qZg9oOQeLlk77F6tSYqjDAFClrHJk9tMf0HdVyOvA== dependencies: - "@aws-crypto/util" "^3.0.0" + "@aws-crypto/util" "^5.2.0" "@aws-sdk/types" "^3.222.0" - tslib "^1.11.1" + tslib "^2.6.2" -"@aws-crypto/supports-web-crypto@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@aws-crypto/supports-web-crypto/-/supports-web-crypto-3.0.0.tgz#5d1bf825afa8072af2717c3e455f35cda0103ec2" - integrity sha512-06hBdMwUAb2WFTuGG73LSC0wfPu93xWwo5vL2et9eymgmu3Id5vFAHBbajVWiGhPO37qcsdCap/FqXvJGJWPIg== +"@aws-crypto/supports-web-crypto@^5.2.0": + version "5.2.0" + resolved "https://registry.yarnpkg.com/@aws-crypto/supports-web-crypto/-/supports-web-crypto-5.2.0.tgz#a1e399af29269be08e695109aa15da0a07b5b5fb" + integrity sha512-iAvUotm021kM33eCdNfwIN//F77/IADDSs58i+MDaOqFrVjZo9bAal0NK7HurRuWLLpF1iLX7gbWrjHjeo+YFg== dependencies: - tslib "^1.11.1" + tslib "^2.6.2" -"@aws-crypto/util@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@aws-crypto/util/-/util-3.0.0.tgz#1c7ca90c29293f0883468ad48117937f0fe5bfb0" - integrity sha512-2OJlpeJpCR48CC8r+uKVChzs9Iungj9wkZrl8Z041DWEWvyIHILYKCPNzJghKsivj+S3mLo6BVc7mBNzdxA46w== +"@aws-crypto/util@^5.2.0": + version "5.2.0" + resolved "https://registry.yarnpkg.com/@aws-crypto/util/-/util-5.2.0.tgz#71284c9cffe7927ddadac793c14f14886d3876da" + integrity sha512-4RkU9EsI6ZpBve5fseQlGNUWKMa1RLPQ1dnjnQoe07ldfIzcsGb5hC5W0Dm7u423KWzawlrpbjXBrXCEv9zazQ== dependencies: "@aws-sdk/types" "^3.222.0" - "@aws-sdk/util-utf8-browser" "^3.0.0" - tslib "^1.11.1" - -"@aws-sdk/client-dynamodb@^3.596.0": - version "3.596.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-dynamodb/-/client-dynamodb-3.596.0.tgz#a811d319632c58eecbc99f33fb386be90f8637f7" - integrity sha512-i0TB/UuZJ/+yCIDsYpVc874IypGxksU81bckNK96j4cM9BO9mitdt0gxickqnIqTwsZIZBs7RW6ANSxDi7yVxA== - dependencies: - "@aws-crypto/sha256-browser" "3.0.0" - "@aws-crypto/sha256-js" "3.0.0" - "@aws-sdk/client-sso-oidc" "3.596.0" - "@aws-sdk/client-sts" "3.596.0" - "@aws-sdk/core" "3.592.0" - "@aws-sdk/credential-provider-node" "3.596.0" - "@aws-sdk/middleware-endpoint-discovery" "3.587.0" - "@aws-sdk/middleware-host-header" "3.577.0" - "@aws-sdk/middleware-logger" "3.577.0" - "@aws-sdk/middleware-recursion-detection" "3.577.0" - "@aws-sdk/middleware-user-agent" "3.587.0" - "@aws-sdk/region-config-resolver" "3.587.0" - "@aws-sdk/types" "3.577.0" - "@aws-sdk/util-endpoints" "3.587.0" - "@aws-sdk/util-user-agent-browser" "3.577.0" - "@aws-sdk/util-user-agent-node" "3.587.0" - "@smithy/config-resolver" "^3.0.1" - "@smithy/core" "^2.2.0" - "@smithy/fetch-http-handler" "^3.0.1" - "@smithy/hash-node" "^3.0.0" - "@smithy/invalid-dependency" "^3.0.0" - "@smithy/middleware-content-length" "^3.0.0" - "@smithy/middleware-endpoint" "^3.0.1" - "@smithy/middleware-retry" "^3.0.3" - "@smithy/middleware-serde" "^3.0.0" - "@smithy/middleware-stack" "^3.0.0" - "@smithy/node-config-provider" "^3.1.0" - "@smithy/node-http-handler" "^3.0.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" - "@smithy/url-parser" "^3.0.0" + "@smithy/util-utf8" "^2.0.0" + tslib "^2.6.2" + +"@aws-sdk/client-dynamodb@^3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-dynamodb/-/client-dynamodb-3.621.0.tgz#de0a23830a742f42ed031abb745d3787b0d4e759" + integrity sha512-aczOoVyufYwBCc/zZKJOP/xwbnojKQJ6Y8O7ZAZnxMPRyZXKXpoAxmlxLfOU6GUzXqzXdvj+Ir3VBd7MWB4KuQ== + dependencies: + "@aws-crypto/sha256-browser" "5.2.0" + "@aws-crypto/sha256-js" "5.2.0" + "@aws-sdk/client-sso-oidc" "3.621.0" + "@aws-sdk/client-sts" "3.621.0" + "@aws-sdk/core" "3.621.0" + "@aws-sdk/credential-provider-node" "3.621.0" + "@aws-sdk/middleware-endpoint-discovery" "3.620.0" + "@aws-sdk/middleware-host-header" "3.620.0" + "@aws-sdk/middleware-logger" "3.609.0" + "@aws-sdk/middleware-recursion-detection" "3.620.0" + "@aws-sdk/middleware-user-agent" "3.620.0" + "@aws-sdk/region-config-resolver" "3.614.0" + "@aws-sdk/types" "3.609.0" + "@aws-sdk/util-endpoints" "3.614.0" + "@aws-sdk/util-user-agent-browser" "3.609.0" + "@aws-sdk/util-user-agent-node" "3.614.0" + "@smithy/config-resolver" "^3.0.5" + "@smithy/core" "^2.3.1" + "@smithy/fetch-http-handler" "^3.2.4" + "@smithy/hash-node" "^3.0.3" + "@smithy/invalid-dependency" "^3.0.3" + "@smithy/middleware-content-length" "^3.0.5" + "@smithy/middleware-endpoint" "^3.1.0" + "@smithy/middleware-retry" "^3.0.13" + "@smithy/middleware-serde" "^3.0.3" + "@smithy/middleware-stack" "^3.0.3" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/node-http-handler" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" + "@smithy/url-parser" "^3.0.3" "@smithy/util-base64" "^3.0.0" "@smithy/util-body-length-browser" "^3.0.0" "@smithy/util-body-length-node" "^3.0.0" - "@smithy/util-defaults-mode-browser" "^3.0.3" - "@smithy/util-defaults-mode-node" "^3.0.3" - "@smithy/util-endpoints" "^2.0.1" - "@smithy/util-middleware" "^3.0.0" - "@smithy/util-retry" "^3.0.0" + "@smithy/util-defaults-mode-browser" "^3.0.13" + "@smithy/util-defaults-mode-node" "^3.0.13" + "@smithy/util-endpoints" "^2.0.5" + "@smithy/util-middleware" "^3.0.3" + "@smithy/util-retry" "^3.0.3" "@smithy/util-utf8" "^3.0.0" - "@smithy/util-waiter" "^3.0.0" + "@smithy/util-waiter" "^3.1.2" tslib "^2.6.2" uuid "^9.0.1" -"@aws-sdk/client-s3@^3.596.0": - version "3.596.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-s3/-/client-s3-3.596.0.tgz#28233f0cc826d189230489ca816a37c350fa06f8" - integrity sha512-W5C85cEUTYbmCpvvhLye+KirtLcBMX4t0l4Zj3EsGc5tTwkp7lxZDmJEoDfRy0+FE2H/O6OZQJdWMXCwt/Inqw== - dependencies: - "@aws-crypto/sha1-browser" "3.0.0" - "@aws-crypto/sha256-browser" "3.0.0" - "@aws-crypto/sha256-js" "3.0.0" - "@aws-sdk/client-sso-oidc" "3.596.0" - "@aws-sdk/client-sts" "3.596.0" - "@aws-sdk/core" "3.592.0" - "@aws-sdk/credential-provider-node" "3.596.0" - "@aws-sdk/middleware-bucket-endpoint" "3.587.0" - "@aws-sdk/middleware-expect-continue" "3.577.0" - "@aws-sdk/middleware-flexible-checksums" "3.587.0" - "@aws-sdk/middleware-host-header" "3.577.0" - "@aws-sdk/middleware-location-constraint" "3.577.0" - "@aws-sdk/middleware-logger" "3.577.0" - "@aws-sdk/middleware-recursion-detection" "3.577.0" - "@aws-sdk/middleware-sdk-s3" "3.587.0" - "@aws-sdk/middleware-signing" "3.587.0" - "@aws-sdk/middleware-ssec" "3.577.0" - "@aws-sdk/middleware-user-agent" "3.587.0" - "@aws-sdk/region-config-resolver" "3.587.0" - "@aws-sdk/signature-v4-multi-region" "3.587.0" - "@aws-sdk/types" "3.577.0" - "@aws-sdk/util-endpoints" "3.587.0" - "@aws-sdk/util-user-agent-browser" "3.577.0" - "@aws-sdk/util-user-agent-node" "3.587.0" - "@aws-sdk/xml-builder" "3.575.0" - "@smithy/config-resolver" "^3.0.1" - "@smithy/core" "^2.2.0" - "@smithy/eventstream-serde-browser" "^3.0.0" - "@smithy/eventstream-serde-config-resolver" "^3.0.0" - "@smithy/eventstream-serde-node" "^3.0.0" - "@smithy/fetch-http-handler" "^3.0.1" - "@smithy/hash-blob-browser" "^3.0.0" - "@smithy/hash-node" "^3.0.0" - "@smithy/hash-stream-node" "^3.0.0" - "@smithy/invalid-dependency" "^3.0.0" - "@smithy/md5-js" "^3.0.0" - "@smithy/middleware-content-length" "^3.0.0" - "@smithy/middleware-endpoint" "^3.0.1" - "@smithy/middleware-retry" "^3.0.3" - "@smithy/middleware-serde" "^3.0.0" - "@smithy/middleware-stack" "^3.0.0" - "@smithy/node-config-provider" "^3.1.0" - "@smithy/node-http-handler" "^3.0.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" - "@smithy/url-parser" "^3.0.0" +"@aws-sdk/client-s3@^3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-s3/-/client-s3-3.621.0.tgz#86a0e77913cd1e82308299835431887fe306c3a0" + integrity sha512-YhGkd2HQTM4HCYJIAVWvfbUMpOF7XUr1W/e2LN3CFP0WTF4zcCJKesJ2iNHrExqC0Ek1+qarMxiXBK95itfjYQ== + dependencies: + "@aws-crypto/sha1-browser" "5.2.0" + "@aws-crypto/sha256-browser" "5.2.0" + "@aws-crypto/sha256-js" "5.2.0" + "@aws-sdk/client-sso-oidc" "3.621.0" + "@aws-sdk/client-sts" "3.621.0" + "@aws-sdk/core" "3.621.0" + "@aws-sdk/credential-provider-node" "3.621.0" + "@aws-sdk/middleware-bucket-endpoint" "3.620.0" + "@aws-sdk/middleware-expect-continue" "3.620.0" + "@aws-sdk/middleware-flexible-checksums" "3.620.0" + "@aws-sdk/middleware-host-header" "3.620.0" + "@aws-sdk/middleware-location-constraint" "3.609.0" + "@aws-sdk/middleware-logger" "3.609.0" + "@aws-sdk/middleware-recursion-detection" "3.620.0" + "@aws-sdk/middleware-sdk-s3" "3.621.0" + "@aws-sdk/middleware-signing" "3.620.0" + "@aws-sdk/middleware-ssec" "3.609.0" + "@aws-sdk/middleware-user-agent" "3.620.0" + "@aws-sdk/region-config-resolver" "3.614.0" + "@aws-sdk/signature-v4-multi-region" "3.621.0" + "@aws-sdk/types" "3.609.0" + "@aws-sdk/util-endpoints" "3.614.0" + "@aws-sdk/util-user-agent-browser" "3.609.0" + "@aws-sdk/util-user-agent-node" "3.614.0" + "@aws-sdk/xml-builder" "3.609.0" + "@smithy/config-resolver" "^3.0.5" + "@smithy/core" "^2.3.1" + "@smithy/eventstream-serde-browser" "^3.0.5" + "@smithy/eventstream-serde-config-resolver" "^3.0.3" + "@smithy/eventstream-serde-node" "^3.0.4" + "@smithy/fetch-http-handler" "^3.2.4" + "@smithy/hash-blob-browser" "^3.1.2" + "@smithy/hash-node" "^3.0.3" + "@smithy/hash-stream-node" "^3.1.2" + "@smithy/invalid-dependency" "^3.0.3" + "@smithy/md5-js" "^3.0.3" + "@smithy/middleware-content-length" "^3.0.5" + "@smithy/middleware-endpoint" "^3.1.0" + "@smithy/middleware-retry" "^3.0.13" + "@smithy/middleware-serde" "^3.0.3" + "@smithy/middleware-stack" "^3.0.3" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/node-http-handler" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" + "@smithy/url-parser" "^3.0.3" "@smithy/util-base64" "^3.0.0" "@smithy/util-body-length-browser" "^3.0.0" "@smithy/util-body-length-node" "^3.0.0" - "@smithy/util-defaults-mode-browser" "^3.0.3" - "@smithy/util-defaults-mode-node" "^3.0.3" - "@smithy/util-endpoints" "^2.0.1" - "@smithy/util-retry" "^3.0.0" - "@smithy/util-stream" "^3.0.1" + "@smithy/util-defaults-mode-browser" "^3.0.13" + "@smithy/util-defaults-mode-node" "^3.0.13" + "@smithy/util-endpoints" "^2.0.5" + "@smithy/util-retry" "^3.0.3" + "@smithy/util-stream" "^3.1.3" "@smithy/util-utf8" "^3.0.0" - "@smithy/util-waiter" "^3.0.0" + "@smithy/util-waiter" "^3.1.2" tslib "^2.6.2" -"@aws-sdk/client-ssm@^3.596.0": - version "3.596.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-ssm/-/client-ssm-3.596.0.tgz#310cb1ed3b0475acfd555b00b7d9cecbccb661b6" - integrity sha512-6gTCjQQ3ZMABSzKLnjEbiqDS4C+BpSAMyw9022/vAP7ybdF/fJENBy4XEwKgZ6U7VhLZePrO0ESyYYcpBnAc+g== - dependencies: - "@aws-crypto/sha256-browser" "3.0.0" - "@aws-crypto/sha256-js" "3.0.0" - "@aws-sdk/client-sso-oidc" "3.596.0" - "@aws-sdk/client-sts" "3.596.0" - "@aws-sdk/core" "3.592.0" - "@aws-sdk/credential-provider-node" "3.596.0" - "@aws-sdk/middleware-host-header" "3.577.0" - "@aws-sdk/middleware-logger" "3.577.0" - "@aws-sdk/middleware-recursion-detection" "3.577.0" - "@aws-sdk/middleware-user-agent" "3.587.0" - "@aws-sdk/region-config-resolver" "3.587.0" - "@aws-sdk/types" "3.577.0" - "@aws-sdk/util-endpoints" "3.587.0" - "@aws-sdk/util-user-agent-browser" "3.577.0" - "@aws-sdk/util-user-agent-node" "3.587.0" - "@smithy/config-resolver" "^3.0.1" - "@smithy/core" "^2.2.0" - "@smithy/fetch-http-handler" "^3.0.1" - "@smithy/hash-node" "^3.0.0" - "@smithy/invalid-dependency" "^3.0.0" - "@smithy/middleware-content-length" "^3.0.0" - "@smithy/middleware-endpoint" "^3.0.1" - "@smithy/middleware-retry" "^3.0.3" - "@smithy/middleware-serde" "^3.0.0" - "@smithy/middleware-stack" "^3.0.0" - "@smithy/node-config-provider" "^3.1.0" - "@smithy/node-http-handler" "^3.0.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" - "@smithy/url-parser" "^3.0.0" +"@aws-sdk/client-ssm@^3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-ssm/-/client-ssm-3.621.0.tgz#d5928d86c65c2cb072f8d3bdaa739d3ff06cd1e5" + integrity sha512-E4OM7HH9qU2TZGDrX2MlBlBr9gVgDm573Qa1CTFih58dUZyaPEOiZSYLUNOyw4nMyVLyDMR/5zQ4wAorNwKVPw== + dependencies: + "@aws-crypto/sha256-browser" "5.2.0" + "@aws-crypto/sha256-js" "5.2.0" + "@aws-sdk/client-sso-oidc" "3.621.0" + "@aws-sdk/client-sts" "3.621.0" + "@aws-sdk/core" "3.621.0" + "@aws-sdk/credential-provider-node" "3.621.0" + "@aws-sdk/middleware-host-header" "3.620.0" + "@aws-sdk/middleware-logger" "3.609.0" + "@aws-sdk/middleware-recursion-detection" "3.620.0" + "@aws-sdk/middleware-user-agent" "3.620.0" + "@aws-sdk/region-config-resolver" "3.614.0" + "@aws-sdk/types" "3.609.0" + "@aws-sdk/util-endpoints" "3.614.0" + "@aws-sdk/util-user-agent-browser" "3.609.0" + "@aws-sdk/util-user-agent-node" "3.614.0" + "@smithy/config-resolver" "^3.0.5" + "@smithy/core" "^2.3.1" + "@smithy/fetch-http-handler" "^3.2.4" + "@smithy/hash-node" "^3.0.3" + "@smithy/invalid-dependency" "^3.0.3" + "@smithy/middleware-content-length" "^3.0.5" + "@smithy/middleware-endpoint" "^3.1.0" + "@smithy/middleware-retry" "^3.0.13" + "@smithy/middleware-serde" "^3.0.3" + "@smithy/middleware-stack" "^3.0.3" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/node-http-handler" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" + "@smithy/url-parser" "^3.0.3" "@smithy/util-base64" "^3.0.0" "@smithy/util-body-length-browser" "^3.0.0" "@smithy/util-body-length-node" "^3.0.0" - "@smithy/util-defaults-mode-browser" "^3.0.3" - "@smithy/util-defaults-mode-node" "^3.0.3" - "@smithy/util-endpoints" "^2.0.1" - "@smithy/util-middleware" "^3.0.0" - "@smithy/util-retry" "^3.0.0" + "@smithy/util-defaults-mode-browser" "^3.0.13" + "@smithy/util-defaults-mode-node" "^3.0.13" + "@smithy/util-endpoints" "^2.0.5" + "@smithy/util-middleware" "^3.0.3" + "@smithy/util-retry" "^3.0.3" "@smithy/util-utf8" "^3.0.0" - "@smithy/util-waiter" "^3.0.0" + "@smithy/util-waiter" "^3.1.2" tslib "^2.6.2" uuid "^9.0.1" -"@aws-sdk/client-sso-oidc@3.596.0": - version "3.596.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.596.0.tgz#9d75619043e5f0e3d985d800c3df06d9a8a3bfeb" - integrity sha512-KnTWtKzO0N+rMdIrVwbewFp4FAvVWBV/ekCAh5w7EN+uAvBHxMoFElE2RwlcRF/gH1/F715OspPMvOxPom6bMA== - dependencies: - "@aws-crypto/sha256-browser" "3.0.0" - "@aws-crypto/sha256-js" "3.0.0" - "@aws-sdk/client-sts" "3.596.0" - "@aws-sdk/core" "3.592.0" - "@aws-sdk/credential-provider-node" "3.596.0" - "@aws-sdk/middleware-host-header" "3.577.0" - "@aws-sdk/middleware-logger" "3.577.0" - "@aws-sdk/middleware-recursion-detection" "3.577.0" - "@aws-sdk/middleware-user-agent" "3.587.0" - "@aws-sdk/region-config-resolver" "3.587.0" - "@aws-sdk/types" "3.577.0" - "@aws-sdk/util-endpoints" "3.587.0" - "@aws-sdk/util-user-agent-browser" "3.577.0" - "@aws-sdk/util-user-agent-node" "3.587.0" - "@smithy/config-resolver" "^3.0.1" - "@smithy/core" "^2.2.0" - "@smithy/fetch-http-handler" "^3.0.1" - "@smithy/hash-node" "^3.0.0" - "@smithy/invalid-dependency" "^3.0.0" - "@smithy/middleware-content-length" "^3.0.0" - "@smithy/middleware-endpoint" "^3.0.1" - "@smithy/middleware-retry" "^3.0.3" - "@smithy/middleware-serde" "^3.0.0" - "@smithy/middleware-stack" "^3.0.0" - "@smithy/node-config-provider" "^3.1.0" - "@smithy/node-http-handler" "^3.0.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" - "@smithy/url-parser" "^3.0.0" +"@aws-sdk/client-sso-oidc@3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.621.0.tgz#3fa3d468fbebbd93a5f75c1d51b63cc7af3ef17b" + integrity sha512-mMjk3mFUwV2Y68POf1BQMTF+F6qxt5tPu6daEUCNGC9Cenk3h2YXQQoS4/eSyYzuBiYk3vx49VgleRvdvkg8rg== + dependencies: + "@aws-crypto/sha256-browser" "5.2.0" + "@aws-crypto/sha256-js" "5.2.0" + "@aws-sdk/core" "3.621.0" + "@aws-sdk/credential-provider-node" "3.621.0" + "@aws-sdk/middleware-host-header" "3.620.0" + "@aws-sdk/middleware-logger" "3.609.0" + "@aws-sdk/middleware-recursion-detection" "3.620.0" + "@aws-sdk/middleware-user-agent" "3.620.0" + "@aws-sdk/region-config-resolver" "3.614.0" + "@aws-sdk/types" "3.609.0" + "@aws-sdk/util-endpoints" "3.614.0" + "@aws-sdk/util-user-agent-browser" "3.609.0" + "@aws-sdk/util-user-agent-node" "3.614.0" + "@smithy/config-resolver" "^3.0.5" + "@smithy/core" "^2.3.1" + "@smithy/fetch-http-handler" "^3.2.4" + "@smithy/hash-node" "^3.0.3" + "@smithy/invalid-dependency" "^3.0.3" + "@smithy/middleware-content-length" "^3.0.5" + "@smithy/middleware-endpoint" "^3.1.0" + "@smithy/middleware-retry" "^3.0.13" + "@smithy/middleware-serde" "^3.0.3" + "@smithy/middleware-stack" "^3.0.3" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/node-http-handler" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" + "@smithy/url-parser" "^3.0.3" "@smithy/util-base64" "^3.0.0" "@smithy/util-body-length-browser" "^3.0.0" "@smithy/util-body-length-node" "^3.0.0" - "@smithy/util-defaults-mode-browser" "^3.0.3" - "@smithy/util-defaults-mode-node" "^3.0.3" - "@smithy/util-endpoints" "^2.0.1" - "@smithy/util-middleware" "^3.0.0" - "@smithy/util-retry" "^3.0.0" + "@smithy/util-defaults-mode-browser" "^3.0.13" + "@smithy/util-defaults-mode-node" "^3.0.13" + "@smithy/util-endpoints" "^2.0.5" + "@smithy/util-middleware" "^3.0.3" + "@smithy/util-retry" "^3.0.3" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/client-sso@3.592.0": - version "3.592.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso/-/client-sso-3.592.0.tgz#90462e744998990079c28a083553090af9ac2902" - integrity sha512-w+SuW47jQqvOC7fonyjFjsOh3yjqJ+VpWdVrmrl0E/KryBE7ho/Wn991Buf/EiHHeJikoWgHsAIPkBH29+ntdA== - dependencies: - "@aws-crypto/sha256-browser" "3.0.0" - "@aws-crypto/sha256-js" "3.0.0" - "@aws-sdk/core" "3.592.0" - "@aws-sdk/middleware-host-header" "3.577.0" - "@aws-sdk/middleware-logger" "3.577.0" - "@aws-sdk/middleware-recursion-detection" "3.577.0" - "@aws-sdk/middleware-user-agent" "3.587.0" - "@aws-sdk/region-config-resolver" "3.587.0" - "@aws-sdk/types" "3.577.0" - "@aws-sdk/util-endpoints" "3.587.0" - "@aws-sdk/util-user-agent-browser" "3.577.0" - "@aws-sdk/util-user-agent-node" "3.587.0" - "@smithy/config-resolver" "^3.0.1" - "@smithy/core" "^2.2.0" - "@smithy/fetch-http-handler" "^3.0.1" - "@smithy/hash-node" "^3.0.0" - "@smithy/invalid-dependency" "^3.0.0" - "@smithy/middleware-content-length" "^3.0.0" - "@smithy/middleware-endpoint" "^3.0.1" - "@smithy/middleware-retry" "^3.0.3" - "@smithy/middleware-serde" "^3.0.0" - "@smithy/middleware-stack" "^3.0.0" - "@smithy/node-config-provider" "^3.1.0" - "@smithy/node-http-handler" "^3.0.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" - "@smithy/url-parser" "^3.0.0" +"@aws-sdk/client-sso@3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso/-/client-sso-3.621.0.tgz#c0eefeb9adcbc6bb7c91c32070404c8c91846825" + integrity sha512-xpKfikN4u0BaUYZA9FGUMkkDmfoIP0Q03+A86WjqDWhcOoqNA1DkHsE4kZ+r064ifkPUfcNuUvlkVTEoBZoFjA== + dependencies: + "@aws-crypto/sha256-browser" "5.2.0" + "@aws-crypto/sha256-js" "5.2.0" + "@aws-sdk/core" "3.621.0" + "@aws-sdk/middleware-host-header" "3.620.0" + "@aws-sdk/middleware-logger" "3.609.0" + "@aws-sdk/middleware-recursion-detection" "3.620.0" + "@aws-sdk/middleware-user-agent" "3.620.0" + "@aws-sdk/region-config-resolver" "3.614.0" + "@aws-sdk/types" "3.609.0" + "@aws-sdk/util-endpoints" "3.614.0" + "@aws-sdk/util-user-agent-browser" "3.609.0" + "@aws-sdk/util-user-agent-node" "3.614.0" + "@smithy/config-resolver" "^3.0.5" + "@smithy/core" "^2.3.1" + "@smithy/fetch-http-handler" "^3.2.4" + "@smithy/hash-node" "^3.0.3" + "@smithy/invalid-dependency" "^3.0.3" + "@smithy/middleware-content-length" "^3.0.5" + "@smithy/middleware-endpoint" "^3.1.0" + "@smithy/middleware-retry" "^3.0.13" + "@smithy/middleware-serde" "^3.0.3" + "@smithy/middleware-stack" "^3.0.3" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/node-http-handler" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" + "@smithy/url-parser" "^3.0.3" "@smithy/util-base64" "^3.0.0" "@smithy/util-body-length-browser" "^3.0.0" "@smithy/util-body-length-node" "^3.0.0" - "@smithy/util-defaults-mode-browser" "^3.0.3" - "@smithy/util-defaults-mode-node" "^3.0.3" - "@smithy/util-endpoints" "^2.0.1" - "@smithy/util-middleware" "^3.0.0" - "@smithy/util-retry" "^3.0.0" + "@smithy/util-defaults-mode-browser" "^3.0.13" + "@smithy/util-defaults-mode-node" "^3.0.13" + "@smithy/util-endpoints" "^2.0.5" + "@smithy/util-middleware" "^3.0.3" + "@smithy/util-retry" "^3.0.3" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/client-sts@3.596.0": - version "3.596.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-sts/-/client-sts-3.596.0.tgz#236ed4b898265c737f860060adab422ea8ec6383" - integrity sha512-37+WQDjgmqS/YXj3vPzIVIrbXaFcZ1WXk715AMGIPBZn9Y2/wr2bmSTpX7bsMyn0G8+LxmoIxFcG7n1Gu0nvLg== - dependencies: - "@aws-crypto/sha256-browser" "3.0.0" - "@aws-crypto/sha256-js" "3.0.0" - "@aws-sdk/client-sso-oidc" "3.596.0" - "@aws-sdk/core" "3.592.0" - "@aws-sdk/credential-provider-node" "3.596.0" - "@aws-sdk/middleware-host-header" "3.577.0" - "@aws-sdk/middleware-logger" "3.577.0" - "@aws-sdk/middleware-recursion-detection" "3.577.0" - "@aws-sdk/middleware-user-agent" "3.587.0" - "@aws-sdk/region-config-resolver" "3.587.0" - "@aws-sdk/types" "3.577.0" - "@aws-sdk/util-endpoints" "3.587.0" - "@aws-sdk/util-user-agent-browser" "3.577.0" - "@aws-sdk/util-user-agent-node" "3.587.0" - "@smithy/config-resolver" "^3.0.1" - "@smithy/core" "^2.2.0" - "@smithy/fetch-http-handler" "^3.0.1" - "@smithy/hash-node" "^3.0.0" - "@smithy/invalid-dependency" "^3.0.0" - "@smithy/middleware-content-length" "^3.0.0" - "@smithy/middleware-endpoint" "^3.0.1" - "@smithy/middleware-retry" "^3.0.3" - "@smithy/middleware-serde" "^3.0.0" - "@smithy/middleware-stack" "^3.0.0" - "@smithy/node-config-provider" "^3.1.0" - "@smithy/node-http-handler" "^3.0.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" - "@smithy/url-parser" "^3.0.0" +"@aws-sdk/client-sts@3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-sts/-/client-sts-3.621.0.tgz#2994f601790893901704c5df56c837e89f279952" + integrity sha512-707uiuReSt+nAx6d0c21xLjLm2lxeKc7padxjv92CIrIocnQSlJPxSCM7r5zBhwiahJA6MNQwmTl2xznU67KgA== + dependencies: + "@aws-crypto/sha256-browser" "5.2.0" + "@aws-crypto/sha256-js" "5.2.0" + "@aws-sdk/client-sso-oidc" "3.621.0" + "@aws-sdk/core" "3.621.0" + "@aws-sdk/credential-provider-node" "3.621.0" + "@aws-sdk/middleware-host-header" "3.620.0" + "@aws-sdk/middleware-logger" "3.609.0" + "@aws-sdk/middleware-recursion-detection" "3.620.0" + "@aws-sdk/middleware-user-agent" "3.620.0" + "@aws-sdk/region-config-resolver" "3.614.0" + "@aws-sdk/types" "3.609.0" + "@aws-sdk/util-endpoints" "3.614.0" + "@aws-sdk/util-user-agent-browser" "3.609.0" + "@aws-sdk/util-user-agent-node" "3.614.0" + "@smithy/config-resolver" "^3.0.5" + "@smithy/core" "^2.3.1" + "@smithy/fetch-http-handler" "^3.2.4" + "@smithy/hash-node" "^3.0.3" + "@smithy/invalid-dependency" "^3.0.3" + "@smithy/middleware-content-length" "^3.0.5" + "@smithy/middleware-endpoint" "^3.1.0" + "@smithy/middleware-retry" "^3.0.13" + "@smithy/middleware-serde" "^3.0.3" + "@smithy/middleware-stack" "^3.0.3" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/node-http-handler" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" + "@smithy/url-parser" "^3.0.3" "@smithy/util-base64" "^3.0.0" "@smithy/util-body-length-browser" "^3.0.0" "@smithy/util-body-length-node" "^3.0.0" - "@smithy/util-defaults-mode-browser" "^3.0.3" - "@smithy/util-defaults-mode-node" "^3.0.3" - "@smithy/util-endpoints" "^2.0.1" - "@smithy/util-middleware" "^3.0.0" - "@smithy/util-retry" "^3.0.0" + "@smithy/util-defaults-mode-browser" "^3.0.13" + "@smithy/util-defaults-mode-node" "^3.0.13" + "@smithy/util-endpoints" "^2.0.5" + "@smithy/util-middleware" "^3.0.3" + "@smithy/util-retry" "^3.0.3" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/core@3.592.0": - version "3.592.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/core/-/core-3.592.0.tgz#d903a3993f8ba6836480314c2a8af8b7857bb943" - integrity sha512-gLPMXR/HXDP+9gXAt58t7gaMTvRts9i6Q7NMISpkGF54wehskl5WGrbdtHJFylrlJ5BQo3XVY6i661o+EuR1wg== - dependencies: - "@smithy/core" "^2.2.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/signature-v4" "^3.0.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" - fast-xml-parser "4.2.5" +"@aws-sdk/core@3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/core/-/core-3.621.0.tgz#e38c56c3ce0c819ca1185eaabcb98412429aaca3" + integrity sha512-CtOwWmDdEiINkGXD93iGfXjN0WmCp9l45cDWHHGa8lRgEDyhuL7bwd/pH5aSzj0j8SiQBG2k0S7DHbd5RaqvbQ== + dependencies: + "@smithy/core" "^2.3.1" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/signature-v4" "^4.1.0" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" + "@smithy/util-middleware" "^3.0.3" + fast-xml-parser "4.4.1" tslib "^2.6.2" -"@aws-sdk/credential-provider-env@3.587.0": - version "3.587.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-env/-/credential-provider-env-3.587.0.tgz#40435be331773e4b1b665a1f4963518d4647505c" - integrity sha512-Hyg/5KFECIk2k5o8wnVEiniV86yVkhn5kzITUydmNGCkXdBFHMHRx6hleQ1bqwJHbBskyu8nbYamzcwymmGwmw== +"@aws-sdk/credential-provider-env@3.620.1": + version "3.620.1" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-env/-/credential-provider-env-3.620.1.tgz#d4692c49a65ebc11dae3f7f8b053fee9268a953c" + integrity sha512-ExuILJ2qLW5ZO+rgkNRj0xiAipKT16Rk77buvPP8csR7kkCflT/gXTyzRe/uzIiETTxM7tr8xuO9MP/DQXqkfg== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/property-provider" "^3.1.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@aws-sdk/credential-provider-http@3.596.0": - version "3.596.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-http/-/credential-provider-http-3.596.0.tgz#ad81565e37f84c860a7a5f82ff256a962397816c" - integrity sha512-nnmvEsz1KJgRmfSZJPWuzbxPRXu8Y+/78Ifa1jY3fQKSKdEJfXMDsjPljJvMDBl4dZ8pf5Hwx+S/ONnMEDwYEA== - dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/fetch-http-handler" "^3.0.1" - "@smithy/node-http-handler" "^3.0.0" - "@smithy/property-provider" "^3.1.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" - "@smithy/util-stream" "^3.0.1" +"@aws-sdk/credential-provider-http@3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-http/-/credential-provider-http-3.621.0.tgz#5f944bf548f203d842cf71a5792f73c205544627" + integrity sha512-/jc2tEsdkT1QQAI5Dvoci50DbSxtJrevemwFsm0B73pwCcOQZ5ZwwSdVqGsPutzYzUVx3bcXg3LRL7jLACqRIg== + dependencies: + "@aws-sdk/types" "3.609.0" + "@smithy/fetch-http-handler" "^3.2.4" + "@smithy/node-http-handler" "^3.1.4" + "@smithy/property-provider" "^3.1.3" + "@smithy/protocol-http" "^4.1.0" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" + "@smithy/util-stream" "^3.1.3" tslib "^2.6.2" -"@aws-sdk/credential-provider-ini@3.596.0": - version "3.596.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.596.0.tgz#2e5155b52590dbc768a2775e0b5266287a00d8ca" - integrity sha512-c7PLtd7GbnOVAc5sk3sVlHxLvEsM8RF96rsBGlRo4AVpil/lXLKyNv9VarS4w/ZZZoRbJRyZ+m92PjNcLvpTDQ== - dependencies: - "@aws-sdk/credential-provider-env" "3.587.0" - "@aws-sdk/credential-provider-http" "3.596.0" - "@aws-sdk/credential-provider-process" "3.587.0" - "@aws-sdk/credential-provider-sso" "3.592.0" - "@aws-sdk/credential-provider-web-identity" "3.587.0" - "@aws-sdk/types" "3.577.0" - "@smithy/credential-provider-imds" "^3.1.0" - "@smithy/property-provider" "^3.1.0" - "@smithy/shared-ini-file-loader" "^3.1.0" - "@smithy/types" "^3.0.0" +"@aws-sdk/credential-provider-ini@3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.621.0.tgz#bda2365f88fee40e3ae067b08bf484106c339222" + integrity sha512-0EWVnSc+JQn5HLnF5Xv405M8n4zfdx9gyGdpnCmAmFqEDHA8LmBdxJdpUk1Ovp/I5oPANhjojxabIW5f1uU0RA== + dependencies: + "@aws-sdk/credential-provider-env" "3.620.1" + "@aws-sdk/credential-provider-http" "3.621.0" + "@aws-sdk/credential-provider-process" "3.620.1" + "@aws-sdk/credential-provider-sso" "3.621.0" + "@aws-sdk/credential-provider-web-identity" "3.621.0" + "@aws-sdk/types" "3.609.0" + "@smithy/credential-provider-imds" "^3.2.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/shared-ini-file-loader" "^3.1.4" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@aws-sdk/credential-provider-node@3.596.0": - version "3.596.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-node/-/credential-provider-node-3.596.0.tgz#d70bce8de4f1849558215117d73f7433bfdcdc24" - integrity sha512-F4MLyXpQyie1AnJS9n7TIRL0aF7YH8tKMIJXDsM5OXpSZi2en+yR6SzsxvHf5dwS2Ga8LUdEJyiyS2NoebaJGA== - dependencies: - "@aws-sdk/credential-provider-env" "3.587.0" - "@aws-sdk/credential-provider-http" "3.596.0" - "@aws-sdk/credential-provider-ini" "3.596.0" - "@aws-sdk/credential-provider-process" "3.587.0" - "@aws-sdk/credential-provider-sso" "3.592.0" - "@aws-sdk/credential-provider-web-identity" "3.587.0" - "@aws-sdk/types" "3.577.0" - "@smithy/credential-provider-imds" "^3.1.0" - "@smithy/property-provider" "^3.1.0" - "@smithy/shared-ini-file-loader" "^3.1.0" - "@smithy/types" "^3.0.0" +"@aws-sdk/credential-provider-node@3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-node/-/credential-provider-node-3.621.0.tgz#9cc5052760a9f9d70d70f12ddbdbf0d59bf13a47" + integrity sha512-4JqpccUgz5Snanpt2+53hbOBbJQrSFq7E1sAAbgY6BKVQUsW5qyXqnjvSF32kDeKa5JpBl3bBWLZl04IadcPHw== + dependencies: + "@aws-sdk/credential-provider-env" "3.620.1" + "@aws-sdk/credential-provider-http" "3.621.0" + "@aws-sdk/credential-provider-ini" "3.621.0" + "@aws-sdk/credential-provider-process" "3.620.1" + "@aws-sdk/credential-provider-sso" "3.621.0" + "@aws-sdk/credential-provider-web-identity" "3.621.0" + "@aws-sdk/types" "3.609.0" + "@smithy/credential-provider-imds" "^3.2.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/shared-ini-file-loader" "^3.1.4" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@aws-sdk/credential-provider-process@3.587.0": - version "3.587.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-process/-/credential-provider-process-3.587.0.tgz#1e5cc562a68438a77f464adc0493b02e04dd3ea1" - integrity sha512-V4xT3iCqkF8uL6QC4gqBJg/2asd/damswP1h9HCfqTllmPWzImS+8WD3VjgTLw5b0KbTy+ZdUhKc0wDnyzkzxg== +"@aws-sdk/credential-provider-process@3.620.1": + version "3.620.1" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-process/-/credential-provider-process-3.620.1.tgz#10387cf85400420bb4bbda9cc56937dcc6d6d0ee" + integrity sha512-hWqFMidqLAkaV9G460+1at6qa9vySbjQKKc04p59OT7lZ5cO5VH5S4aI05e+m4j364MBROjjk2ugNvfNf/8ILg== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/property-provider" "^3.1.0" - "@smithy/shared-ini-file-loader" "^3.1.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/shared-ini-file-loader" "^3.1.4" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@aws-sdk/credential-provider-sso@3.592.0": - version "3.592.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.592.0.tgz#340649b4f5b4fbcb816f248089979d7d38ce96d3" - integrity sha512-fYFzAdDHKHvhtufPPtrLdSv8lO6GuW3em6n3erM5uFdpGytNpjXvr3XGokIsuXcNkETAY/Xihg+G9ksNE8WJxQ== - dependencies: - "@aws-sdk/client-sso" "3.592.0" - "@aws-sdk/token-providers" "3.587.0" - "@aws-sdk/types" "3.577.0" - "@smithy/property-provider" "^3.1.0" - "@smithy/shared-ini-file-loader" "^3.1.0" - "@smithy/types" "^3.0.0" +"@aws-sdk/credential-provider-sso@3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.621.0.tgz#710f413708cb372f9f94e8eb9726cf263ffd83e3" + integrity sha512-Kza0jcFeA/GEL6xJlzR2KFf1PfZKMFnxfGzJzl5yN7EjoGdMijl34KaRyVnfRjnCWcsUpBWKNIDk9WZVMY9yiw== + dependencies: + "@aws-sdk/client-sso" "3.621.0" + "@aws-sdk/token-providers" "3.614.0" + "@aws-sdk/types" "3.609.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/shared-ini-file-loader" "^3.1.4" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@aws-sdk/credential-provider-web-identity@3.587.0": - version "3.587.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.587.0.tgz#daa41e3cc9309594327056e431b8065145c5297a" - integrity sha512-XqIx/I2PG7kyuw3WjAP9wKlxy8IvFJwB8asOFT1xPFoVfZYKIogjG9oLP5YiRtfvDkWIztHmg5MlVv3HdJDGRw== +"@aws-sdk/credential-provider-web-identity@3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.621.0.tgz#b25878c0a05dad60cd5f91e7e5a31a145c2f14be" + integrity sha512-w7ASSyfNvcx7+bYGep3VBgC3K6vEdLmlpjT7nSIHxxQf+WSdvy+HynwJosrpZax0sK5q0D1Jpn/5q+r5lwwW6w== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/property-provider" "^3.1.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@aws-sdk/endpoint-cache@3.572.0": @@ -493,206 +485,208 @@ mnemonist "0.38.3" tslib "^2.6.2" -"@aws-sdk/lib-dynamodb@^3.596.0": - version "3.596.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/lib-dynamodb/-/lib-dynamodb-3.596.0.tgz#bca9eca213129fc1027f9eb0b5e3301b4360af11" - integrity sha512-nTl1lsVRG1iQeY2dIyIWbPrvKepSpE/doL9ET3hAzjTClm81mpvYs3XIVtQsbcmjkgQ62GUrym6D1nk1LcIq+A== +"@aws-sdk/lib-dynamodb@^3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/lib-dynamodb/-/lib-dynamodb-3.621.0.tgz#f8c320af1b286f2827d3be97aaffc571fa4bbfeb" + integrity sha512-RJJwaR15BLSTtegf2kgJjlJofvxeR+0Jm0rnEbJmRZ/HZhjow1LawrMbCR0YxfcWKUMsDw9tp8BDkLlrH1+RJQ== dependencies: - "@aws-sdk/util-dynamodb" "3.596.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" + "@aws-sdk/util-dynamodb" "3.621.0" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@aws-sdk/middleware-bucket-endpoint@3.587.0": - version "3.587.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-bucket-endpoint/-/middleware-bucket-endpoint-3.587.0.tgz#def5edbadf53bdfe765aa9acf12f119eb208b22f" - integrity sha512-HkFXLPl8pr6BH/Q0JpOESqEKL0ZK3sk7aSZ1S6GE4RXET7H5R94THULXqQFZzD48gZcyFooO/yNKZTqrZFaWKg== +"@aws-sdk/middleware-bucket-endpoint@3.620.0": + version "3.620.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-bucket-endpoint/-/middleware-bucket-endpoint-3.620.0.tgz#c5dc0e98b6209a91479cad6c2c74fbc5a3429fab" + integrity sha512-eGLL0W6L3HDb3OACyetZYOWpHJ+gLo0TehQKeQyy2G8vTYXqNTeqYhuI6up9HVjBzU9eQiULVQETmgQs7TFaRg== dependencies: - "@aws-sdk/types" "3.577.0" + "@aws-sdk/types" "3.609.0" "@aws-sdk/util-arn-parser" "3.568.0" - "@smithy/node-config-provider" "^3.1.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/types" "^3.0.0" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/types" "^3.3.0" "@smithy/util-config-provider" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/middleware-endpoint-discovery@3.587.0": - version "3.587.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-endpoint-discovery/-/middleware-endpoint-discovery-3.587.0.tgz#da69990f4810f85e8afe944eb3e4f695e7f9580f" - integrity sha512-/FCTOwO2/GtGx31Y0aO149aXw/LbyyYFJp82fQQCR0eff9RilJ5ViQCdCpcf9zf0ZIlvqGy9aXVutBQU83wlGg== +"@aws-sdk/middleware-endpoint-discovery@3.620.0": + version "3.620.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-endpoint-discovery/-/middleware-endpoint-discovery-3.620.0.tgz#45acd6cf2a77ceaf736f2758274c383838c8584a" + integrity sha512-T6kuydHBF4BPP5CVH53Fze7c2b9rqxWP88XrGtmNMXXdY4sXur1v/itGdS2l3gqRjxKo0LsmjmuQm9zL4vGneQ== dependencies: "@aws-sdk/endpoint-cache" "3.572.0" - "@aws-sdk/types" "3.577.0" - "@smithy/node-config-provider" "^3.1.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@aws-sdk/middleware-expect-continue@3.577.0": - version "3.577.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-expect-continue/-/middleware-expect-continue-3.577.0.tgz#47add47f17873a6044cb140f17033cb6e1d02744" - integrity sha512-6dPp8Tv4F0of4un5IAyG6q++GrRrNQQ4P2NAMB1W0VO4JoEu1C8GievbbDLi88TFIFmtKpnHB0ODCzwnoe8JsA== +"@aws-sdk/middleware-expect-continue@3.620.0": + version "3.620.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-expect-continue/-/middleware-expect-continue-3.620.0.tgz#6a362c0f0696dc6749108a33de9998e0fa6b50ec" + integrity sha512-QXeRFMLfyQ31nAHLbiTLtk0oHzG9QLMaof5jIfqcUwnOkO8YnQdeqzakrg1Alpy/VQ7aqzIi8qypkBe2KXZz0A== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@smithy/protocol-http" "^4.1.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@aws-sdk/middleware-flexible-checksums@3.587.0": - version "3.587.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-flexible-checksums/-/middleware-flexible-checksums-3.587.0.tgz#74afe7bd3088adf05b2ed843ad41386e793e0397" - integrity sha512-URMwp/budDvKhIvZ4a6zIBfFTun/iDlPWXqsGKYjEtHt8jz27OSjCZtDtIeqW4WTBdKL8KZgQcl+DdaE5M1qiQ== +"@aws-sdk/middleware-flexible-checksums@3.620.0": + version "3.620.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-flexible-checksums/-/middleware-flexible-checksums-3.620.0.tgz#42cd48cdc0ad9639545be000bf537969210ce8c5" + integrity sha512-ftz+NW7qka2sVuwnnO1IzBku5ccP+s5qZGeRTPgrKB7OzRW85gthvIo1vQR2w+OwHFk7WJbbhhWwbCbktnP4UA== dependencies: - "@aws-crypto/crc32" "3.0.0" - "@aws-crypto/crc32c" "3.0.0" - "@aws-sdk/types" "3.577.0" + "@aws-crypto/crc32" "5.2.0" + "@aws-crypto/crc32c" "5.2.0" + "@aws-sdk/types" "3.609.0" "@smithy/is-array-buffer" "^3.0.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/types" "^3.0.0" + "@smithy/protocol-http" "^4.1.0" + "@smithy/types" "^3.3.0" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/middleware-host-header@3.577.0": - version "3.577.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-host-header/-/middleware-host-header-3.577.0.tgz#a3fc626d409ec850296740478c64ef5806d8b878" - integrity sha512-9ca5MJz455CODIVXs0/sWmJm7t3QO4EUa1zf8pE8grLpzf0J94bz/skDWm37Pli13T3WaAQBHCTiH2gUVfCsWg== +"@aws-sdk/middleware-host-header@3.620.0": + version "3.620.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-host-header/-/middleware-host-header-3.620.0.tgz#b561d419a08a984ba364c193376b482ff5224d74" + integrity sha512-VMtPEZwqYrII/oUkffYsNWY9PZ9xpNJpMgmyU0rlDQ25O1c0Hk3fJmZRe6pEkAJ0omD7kLrqGl1DUjQVxpd/Rg== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@smithy/protocol-http" "^4.1.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@aws-sdk/middleware-location-constraint@3.577.0": - version "3.577.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-location-constraint/-/middleware-location-constraint-3.577.0.tgz#9372441a4ac5747b3176ac6378d92866a51de815" - integrity sha512-DKPTD2D2s+t2QUo/IXYtVa/6Un8GZ+phSTBkyBNx2kfZz4Kwavhl/JJzSqTV3GfCXkVdFu7CrjoX7BZ6qWeTUA== +"@aws-sdk/middleware-location-constraint@3.609.0": + version "3.609.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-location-constraint/-/middleware-location-constraint-3.609.0.tgz#7ed82d71e5ddcd50683ef2bbde10d1cc2492057e" + integrity sha512-xzsdoTkszGVqGVPjUmgoP7TORiByLueMHieI1fhQL888WPdqctwAx3ES6d/bA9Q/i8jnc6hs+Fjhy8UvBTkE9A== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@aws-sdk/middleware-logger@3.577.0": - version "3.577.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-logger/-/middleware-logger-3.577.0.tgz#6da3b13ae284fb3930961f0fc8e20b1f6cf8be30" - integrity sha512-aPFGpGjTZcJYk+24bg7jT4XdIp42mFXSuPt49lw5KygefLyJM/sB0bKKqPYYivW0rcuZ9brQ58eZUNthrzYAvg== +"@aws-sdk/middleware-logger@3.609.0": + version "3.609.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-logger/-/middleware-logger-3.609.0.tgz#ed44d201f091b8bac908cbf14724c7a4d492553f" + integrity sha512-S62U2dy4jMDhDFDK5gZ4VxFdWzCtLzwbYyFZx2uvPYTECkepLUfzLic2BHg2Qvtu4QjX+oGE3P/7fwaGIsGNuQ== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@aws-sdk/middleware-recursion-detection@3.577.0": - version "3.577.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.577.0.tgz#fff76abc6d4521636f9e654ce5bf2c4c79249417" - integrity sha512-pn3ZVEd2iobKJlR3H+bDilHjgRnNrQ6HMmK9ZzZw89Ckn3Dcbv48xOv4RJvu0aU8SDLl/SNCxppKjeLDTPGBNA== +"@aws-sdk/middleware-recursion-detection@3.620.0": + version "3.620.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.620.0.tgz#f8270dfff843fd756be971e5673f89c6a24c6513" + integrity sha512-nh91S7aGK3e/o1ck64sA/CyoFw+gAYj2BDOnoNa6ouyCrVJED96ZXWbhye/fz9SgmNUZR2g7GdVpiLpMKZoI5w== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@smithy/protocol-http" "^4.1.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@aws-sdk/middleware-sdk-s3@3.587.0": - version "3.587.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-sdk-s3/-/middleware-sdk-s3-3.587.0.tgz#720620ccdc2eb6ecab0f3a6adbd28fc27fdc70ce" - integrity sha512-vtXTGEiw1E9Fax4LmcU2Z208gbrC8ShrdsSLmGcRPpu5NPOGBFBSDG5sy5EDNClrFxIl/Le8coQnD0EDBtx+uQ== +"@aws-sdk/middleware-sdk-s3@3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-sdk-s3/-/middleware-sdk-s3-3.621.0.tgz#da9cc709fffa4d269bb472e8ca42f2a4d80a842b" + integrity sha512-CJrQrtKylcqvyPkRR16JmPZkHroCkWwLErQrg30ZcBPNNok8xbfX6cYqG16XDTnu4lSYzv2Yqc4w4oOBv8xerQ== dependencies: - "@aws-sdk/types" "3.577.0" + "@aws-sdk/types" "3.609.0" "@aws-sdk/util-arn-parser" "3.568.0" - "@smithy/node-config-provider" "^3.1.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/signature-v4" "^3.0.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/signature-v4" "^4.1.0" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" "@smithy/util-config-provider" "^3.0.0" + "@smithy/util-stream" "^3.1.3" + "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/middleware-signing@3.587.0": - version "3.587.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-signing/-/middleware-signing-3.587.0.tgz#593c418c09c51c0bc55f23a7a6b0fda8502a8103" - integrity sha512-tiZaTDj4RvhXGRAlncFn7CSEfL3iNPO67WSaxAq+Ls5j1VgczPhu5262cWONNoMgth3nXR1hhLC4ITSl/a6AzA== - dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/property-provider" "^3.1.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/signature-v4" "^3.0.0" - "@smithy/types" "^3.0.0" - "@smithy/util-middleware" "^3.0.0" +"@aws-sdk/middleware-signing@3.620.0": + version "3.620.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-signing/-/middleware-signing-3.620.0.tgz#8aface959d610732b0a5ede6f2c48119b33c4f3f" + integrity sha512-gxI7rubiaanUXaLfJ4NybERa9MGPNg2Ycl/OqANsozrBnR3Pw8vqy3EuVImQOyn2pJ2IFvl8ZPoSMHf4pX56FQ== + dependencies: + "@aws-sdk/types" "3.609.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/protocol-http" "^4.1.0" + "@smithy/signature-v4" "^4.1.0" + "@smithy/types" "^3.3.0" + "@smithy/util-middleware" "^3.0.3" tslib "^2.6.2" -"@aws-sdk/middleware-ssec@3.577.0": - version "3.577.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-ssec/-/middleware-ssec-3.577.0.tgz#9fcd74e8bf2c277b4349c537cbeceba279166f32" - integrity sha512-i2BPJR+rp8xmRVIGc0h1kDRFcM2J9GnClqqpc+NLSjmYadlcg4mPklisz9HzwFVcRPJ5XcGf3U4BYs5G8+iTyg== +"@aws-sdk/middleware-ssec@3.609.0": + version "3.609.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-ssec/-/middleware-ssec-3.609.0.tgz#b87a8bc6133f3f6bdc6801183d0f9dad3f93cf9f" + integrity sha512-GZSD1s7+JswWOTamVap79QiDaIV7byJFssBW68GYjyRS5EBjNfwA/8s+6uE6g39R3ojyTbYOmvcANoZEhSULXg== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@aws-sdk/middleware-user-agent@3.587.0": - version "3.587.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.587.0.tgz#2a68900cfb29afbae2952d901de4fcb91850bd3d" - integrity sha512-SyDomN+IOrygLucziG7/nOHkjUXES5oH5T7p8AboO8oakMQJdnudNXiYWTicQWO52R51U6CR27rcMPTGeMedYA== +"@aws-sdk/middleware-user-agent@3.620.0": + version "3.620.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.620.0.tgz#1fe3104f04f576a942cf0469bfbd73c38eef3d9e" + integrity sha512-bvS6etn+KsuL32ubY5D3xNof1qkenpbJXf/ugGXbg0n98DvDFQ/F+SMLxHgbnER5dsKYchNnhmtI6/FC3HFu/A== dependencies: - "@aws-sdk/types" "3.577.0" - "@aws-sdk/util-endpoints" "3.587.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@aws-sdk/util-endpoints" "3.614.0" + "@smithy/protocol-http" "^4.1.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@aws-sdk/region-config-resolver@3.587.0": - version "3.587.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/region-config-resolver/-/region-config-resolver-3.587.0.tgz#ad1c15494f44dfc4c7a7bce389f8b128dace923f" - integrity sha512-93I7IPZtulZQoRK+O20IJ4a1syWwYPzoO2gc3v+/GNZflZPV3QJXuVbIm0pxBsu0n/mzKGUKqSOLPIaN098HcQ== +"@aws-sdk/region-config-resolver@3.614.0": + version "3.614.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/region-config-resolver/-/region-config-resolver-3.614.0.tgz#9cebb31a5bcfea2a41891fff7f28d0164cde179a" + integrity sha512-vDCeMXvic/LU0KFIUjpC3RiSTIkkvESsEfbVHiHH0YINfl8HnEqR5rj+L8+phsCeVg2+LmYwYxd5NRz4PHxt5g== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/node-config-provider" "^3.1.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/types" "^3.3.0" "@smithy/util-config-provider" "^3.0.0" - "@smithy/util-middleware" "^3.0.0" + "@smithy/util-middleware" "^3.0.3" tslib "^2.6.2" -"@aws-sdk/s3-request-presigner@^3.596.0": - version "3.596.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/s3-request-presigner/-/s3-request-presigner-3.596.0.tgz#1b931f9cda1e065f0a02b3f81b27f197a87d3385" - integrity sha512-+2BXIc8JGH3MtLrR1Rx5gdD/AOEnuNsm5vmfbCW3tT3UinPkqCQTe2dB5KFCu76YTRE+D2yY8OF2ZW46sbh9bA== - dependencies: - "@aws-sdk/signature-v4-multi-region" "3.587.0" - "@aws-sdk/types" "3.577.0" - "@aws-sdk/util-format-url" "3.577.0" - "@smithy/middleware-endpoint" "^3.0.1" - "@smithy/protocol-http" "^4.0.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" +"@aws-sdk/s3-request-presigner@^3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/s3-request-presigner/-/s3-request-presigner-3.621.0.tgz#0c6d033dd3b3ae17061407766466ce66362c6d92" + integrity sha512-7XCH5wy1guywSa4PHKrSiAqm/mYpuKURQWD9nGN9tl2DWec6OK7z+TTTCOml8lBX8Mg5Hx2GUdO3V8uRVYnEmw== + dependencies: + "@aws-sdk/signature-v4-multi-region" "3.621.0" + "@aws-sdk/types" "3.609.0" + "@aws-sdk/util-format-url" "3.609.0" + "@smithy/middleware-endpoint" "^3.1.0" + "@smithy/protocol-http" "^4.1.0" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@aws-sdk/signature-v4-multi-region@3.587.0": - version "3.587.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/signature-v4-multi-region/-/signature-v4-multi-region-3.587.0.tgz#f8bb6de9135f3fafab04b9220409cd0d0549b7d8" - integrity sha512-TR9+ZSjdXvXUz54ayHcCihhcvxI9W7102J1OK6MrLgBlPE7uRhAx42BR9L5lLJ86Xj3LuqPWf//o9d/zR9WVIg== +"@aws-sdk/signature-v4-multi-region@3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/signature-v4-multi-region/-/signature-v4-multi-region-3.621.0.tgz#d8bd2e8bab970acaecfaca3de85c6924b43f07ff" + integrity sha512-u+ulCaHFveqHaTxgiYrEAyfBVP6GRKjnmDut67CtjhjslshPWYpo/ndtlCW1zc0RDne3uUeK13Pqp7dp7p1d6g== dependencies: - "@aws-sdk/middleware-sdk-s3" "3.587.0" - "@aws-sdk/types" "3.577.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/signature-v4" "^3.0.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/middleware-sdk-s3" "3.621.0" + "@aws-sdk/types" "3.609.0" + "@smithy/protocol-http" "^4.1.0" + "@smithy/signature-v4" "^4.1.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@aws-sdk/token-providers@3.587.0": - version "3.587.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/token-providers/-/token-providers-3.587.0.tgz#f9fd2ddfc554c1370f8d0f467c76a4c8cb904ae6" - integrity sha512-ULqhbnLy1hmJNRcukANBWJmum3BbjXnurLPSFXoGdV0llXYlG55SzIla2VYqdveQEEjmsBuTZdFvXAtNpmS5Zg== +"@aws-sdk/token-providers@3.614.0": + version "3.614.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/token-providers/-/token-providers-3.614.0.tgz#88da04f6d4ce916b0b0f6e045676d04201fb47fd" + integrity sha512-okItqyY6L9IHdxqs+Z116y5/nda7rHxLvROxtAJdLavWTYDydxrZstImNgGWTeVdmc0xX2gJCI77UYUTQWnhRw== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/property-provider" "^3.1.0" - "@smithy/shared-ini-file-loader" "^3.1.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/shared-ini-file-loader" "^3.1.4" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@aws-sdk/types@3.577.0": - version "3.577.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/types/-/types-3.577.0.tgz#7700784d368ce386745f8c340d9d68cea4716f90" - integrity sha512-FT2JZES3wBKN/alfmhlo+3ZOq/XJ0C7QOZcDNrpKjB0kqYoKjhVKZ/Hx6ArR0czkKfHzBBEs6y40ebIHx2nSmA== +"@aws-sdk/types@3.609.0": + version "3.609.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/types/-/types-3.609.0.tgz#06b39d799c9f197a7b43670243e8e78a3bf7d6a5" + integrity sha512-+Tqnh9w0h2LcrUsdXyT1F8mNhXz+tVYBtP19LpeEGntmvHwa2XzvLUCWpoIAIVsHp5+HdB2X9Sn0KAtmbFXc2Q== dependencies: - "@smithy/types" "^3.0.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@aws-sdk/types@^3.222.0": @@ -710,31 +704,31 @@ dependencies: tslib "^2.6.2" -"@aws-sdk/util-dynamodb@3.596.0": - version "3.596.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-dynamodb/-/util-dynamodb-3.596.0.tgz#d3d4fce5d55c54e876ad8fdaf05a78d5f63edb9c" - integrity sha512-oLdB6rUo0gQmry97yvOZ3pJvgzNZLrTk29O2NvMRB5EtXStymfxC53ZeJShdI20jZgP/l8vRUtVf7tjWwjlcIQ== +"@aws-sdk/util-dynamodb@3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-dynamodb/-/util-dynamodb-3.621.0.tgz#a0d6501e5ab9aca695dc794963adf46a475ee5f3" + integrity sha512-/3qEmZ52FdP4+3AUsUX0/wKcCF3jvAG+avVKuSCUYIdKgSIYKSeYfH8F3/r6DE3czaFevBwHRiuKHEihCMApGw== dependencies: tslib "^2.6.2" -"@aws-sdk/util-endpoints@3.587.0": - version "3.587.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-endpoints/-/util-endpoints-3.587.0.tgz#781e0822a95dba15f7ac8f22a6f6d7f0c8819818" - integrity sha512-8I1HG6Em8wQWqKcRW6m358mqebRVNpL8XrrEoT4In7xqkKkmYtHRNVYP6lcmiQh5pZ/c/FXu8dSchuFIWyEtqQ== +"@aws-sdk/util-endpoints@3.614.0": + version "3.614.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-endpoints/-/util-endpoints-3.614.0.tgz#6564b0ffd7dc3728221e9f9821f5aab1cc58468e" + integrity sha512-wK2cdrXHH4oz4IomV/yrGkftU9A+ITB6nFL+rxxyO78is2ifHJpFdV4aqk4LSkXYPi6CXWNru/Dqc7yiKXgJPw== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/types" "^3.0.0" - "@smithy/util-endpoints" "^2.0.1" + "@aws-sdk/types" "3.609.0" + "@smithy/types" "^3.3.0" + "@smithy/util-endpoints" "^2.0.5" tslib "^2.6.2" -"@aws-sdk/util-format-url@3.577.0": - version "3.577.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-format-url/-/util-format-url-3.577.0.tgz#e6686c767e9809416179dbafbc2a39cbbb548259" - integrity sha512-SyEGC2J+y/krFRuPgiF02FmMYhqbiIkOjDE6k4nYLJQRyS6XEAGxZoG+OHeOVEM+bsDgbxokXZiM3XKGu6qFIg== +"@aws-sdk/util-format-url@3.609.0": + version "3.609.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-format-url/-/util-format-url-3.609.0.tgz#f53907193bb636b52b61c81bbe6d7bd5ddc76c68" + integrity sha512-fuk29BI/oLQlJ7pfm6iJ4gkEpHdavffAALZwXh9eaY1vQ0ip0aKfRTiNudPoJjyyahnz5yJ1HkmlcDitlzsOrQ== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/querystring-builder" "^3.0.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@smithy/querystring-builder" "^3.0.3" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@aws-sdk/util-locate-window@^3.0.0": @@ -744,39 +738,32 @@ dependencies: tslib "^2.5.0" -"@aws-sdk/util-user-agent-browser@3.577.0": - version "3.577.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.577.0.tgz#d4d2cdb3a2b3d1c8b35f239ee9f7b2c87bee66ea" - integrity sha512-zEAzHgR6HWpZOH7xFgeJLc6/CzMcx4nxeQolZxVZoB5pPaJd3CjyRhZN0xXeZB0XIRCWmb4yJBgyiugXLNMkLA== +"@aws-sdk/util-user-agent-browser@3.609.0": + version "3.609.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.609.0.tgz#aa15421b2e32ae8bc589dac2bd6e8969832ce588" + integrity sha512-fojPU+mNahzQ0YHYBsx0ZIhmMA96H+ZIZ665ObU9tl+SGdbLneVZVikGve+NmHTQwHzwkFsZYYnVKAkreJLAtA== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@smithy/types" "^3.3.0" bowser "^2.11.0" tslib "^2.6.2" -"@aws-sdk/util-user-agent-node@3.587.0": - version "3.587.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.587.0.tgz#a6bf422f307a68e16a6c19ee5d731fcc32696fb9" - integrity sha512-Pnl+DUe/bvnbEEDHP3iVJrOtE3HbFJBPgsD6vJ+ml/+IYk1Eq49jEG+EHZdNTPz3SDG0kbp2+7u41MKYJHR/iQ== +"@aws-sdk/util-user-agent-node@3.614.0": + version "3.614.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.614.0.tgz#1e3f49a80f841a3f21647baed2adce01aac5beb5" + integrity sha512-15ElZT88peoHnq5TEoEtZwoXTXRxNrk60TZNdpl/TUBJ5oNJ9Dqb5Z4ryb8ofN6nm9aFf59GVAerFDz8iUoHBA== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/node-config-provider" "^3.1.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@aws-sdk/util-utf8-browser@^3.0.0": - version "3.259.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-utf8-browser/-/util-utf8-browser-3.259.0.tgz#3275a6f5eb334f96ca76635b961d3c50259fd9ff" - integrity sha512-UvFa/vR+e19XookZF8RzFZBrw2EUkQWxiBW0yYQAhvk3C+QVGl0H3ouca8LDBlBfQKXwmW3huo/59H8rwb1wJw== - dependencies: - tslib "^2.3.1" - -"@aws-sdk/xml-builder@3.575.0": - version "3.575.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/xml-builder/-/xml-builder-3.575.0.tgz#233b2aae422dd789a078073032da1bc60317aa1d" - integrity sha512-cWgAwmbFYNCFzPwxL705+lWps0F3ZvOckufd2KKoEZUmtpVw9/txUXNrPySUXSmRTSRhoatIMABNfStWR043bQ== +"@aws-sdk/xml-builder@3.609.0": + version "3.609.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/xml-builder/-/xml-builder-3.609.0.tgz#eeb3d5cde000a23cfeeefe0354b6193440dc7d87" + integrity sha512-l9XxNcA4HX98rwCC2/KoiWcmEiRfZe4G+mYwDbCFT87JIMj6GBhLDkAzr/W8KAaA2IDr8Vc6J8fZPgVulxxfMA== dependencies: - "@smithy/types" "^3.0.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.16.7": @@ -1421,12 +1408,12 @@ resolved "https://registry.yarnpkg.com/@sinonjs/text-encoding/-/text-encoding-0.7.2.tgz#5981a8db18b56ba38ef0efb7d995b12aa7b51918" integrity sha512-sXXKG+uL9IrKqViTtao2Ws6dy0znu9sOaP1di/jKGW1M6VssO8vlpXCQcpZ+jisQ1tTFAC5Jo/EOzFbggBagFQ== -"@smithy/abort-controller@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/abort-controller/-/abort-controller-3.0.1.tgz#bb8debe1c23ca62a61b33a9ee2918f5a79d81928" - integrity sha512-Jb7jg4E+C+uvrUQi+h9kbILY6ts6fglKZzseMCHlH9ayq+1f5QdpYf8MV/xppuiN6DAMJAmwGz53GwP3213dmA== +"@smithy/abort-controller@^3.1.1": + version "3.1.1" + resolved "https://registry.yarnpkg.com/@smithy/abort-controller/-/abort-controller-3.1.1.tgz#291210611ff6afecfc198d0ca72d5771d8461d16" + integrity sha512-MBJBiidoe+0cTFhyxT8g+9g7CeVccLM0IOKKUMCNQ1CNMJ/eIfoo0RTfVrXOONEI1UCN1W+zkiHSbzUNE9dZtQ== dependencies: - "@smithy/types" "^3.1.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@smithy/chunked-blob-reader-native@^3.0.0": @@ -1444,133 +1431,140 @@ dependencies: tslib "^2.6.2" -"@smithy/config-resolver@^3.0.1", "@smithy/config-resolver@^3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@smithy/config-resolver/-/config-resolver-3.0.2.tgz#ad19331d48d9a6e67bdd43a0099e1d8af1b82a82" - integrity sha512-wUyG6ezpp2sWAvfqmSYTROwFUmJqKV78GLf55WODrosBcT0BAMd9bOLO4HRhynWBgAobPml2cF9ZOdgCe00r+g== +"@smithy/config-resolver@^3.0.5": + version "3.0.5" + resolved "https://registry.yarnpkg.com/@smithy/config-resolver/-/config-resolver-3.0.5.tgz#727978bba7ace754c741c259486a19d3083431fd" + integrity sha512-SkW5LxfkSI1bUC74OtfBbdz+grQXYiPYolyu8VfpLIjEoN/sHVBlLeGXMQ1vX4ejkgfv6sxVbQJ32yF2cl1veA== dependencies: - "@smithy/node-config-provider" "^3.1.1" - "@smithy/types" "^3.1.0" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/types" "^3.3.0" "@smithy/util-config-provider" "^3.0.0" - "@smithy/util-middleware" "^3.0.1" + "@smithy/util-middleware" "^3.0.3" tslib "^2.6.2" -"@smithy/core@^2.2.0": - version "2.2.1" - resolved "https://registry.yarnpkg.com/@smithy/core/-/core-2.2.1.tgz#92ed71eb96ef16d5ac8b23dbdf913bcb225ab875" - integrity sha512-R8Pzrr2v2oGUoj4CTZtKPr87lVtBsz7IUBGhSwS1kc6Cj0yPwNdYbkzhFsxhoDE9+BPl09VN/6rFsW9GJzWnBA== - dependencies: - "@smithy/middleware-endpoint" "^3.0.2" - "@smithy/middleware-retry" "^3.0.4" - "@smithy/middleware-serde" "^3.0.1" - "@smithy/protocol-http" "^4.0.1" - "@smithy/smithy-client" "^3.1.2" - "@smithy/types" "^3.1.0" - "@smithy/util-middleware" "^3.0.1" +"@smithy/core@^2.3.1": + version "2.3.1" + resolved "https://registry.yarnpkg.com/@smithy/core/-/core-2.3.1.tgz#99cb8eda23009fd7df736c82072dafcf4eb4ff5d" + integrity sha512-BC7VMXx/1BCmRPCVzzn4HGWAtsrb7/0758EtwOGFJQrlSwJBEjCcDLNZLFoL/68JexYa2s+KmgL/UfmXdG6v1w== + dependencies: + "@smithy/middleware-endpoint" "^3.1.0" + "@smithy/middleware-retry" "^3.0.13" + "@smithy/middleware-serde" "^3.0.3" + "@smithy/protocol-http" "^4.1.0" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" + "@smithy/util-middleware" "^3.0.3" tslib "^2.6.2" -"@smithy/credential-provider-imds@^3.1.0", "@smithy/credential-provider-imds@^3.1.1": - version "3.1.1" - resolved "https://registry.yarnpkg.com/@smithy/credential-provider-imds/-/credential-provider-imds-3.1.1.tgz#8b2b3c9e7e67fd9e3e436a5e1db6652ab339af7b" - integrity sha512-htndP0LwHdE3R3Nam9ZyVWhwPYOmD4xCL79kqvNxy8u/bv0huuy574CSiRY4cvEICgimv8jlVfLeZ7zZqbnB2g== +"@smithy/credential-provider-imds@^3.2.0": + version "3.2.0" + resolved "https://registry.yarnpkg.com/@smithy/credential-provider-imds/-/credential-provider-imds-3.2.0.tgz#0e0e7ddaff1a8633cb927aee1056c0ab506b7ecf" + integrity sha512-0SCIzgd8LYZ9EJxUjLXBmEKSZR/P/w6l7Rz/pab9culE/RWuqelAKGJvn5qUOl8BgX8Yj5HWM50A5hiB/RzsgA== dependencies: - "@smithy/node-config-provider" "^3.1.1" - "@smithy/property-provider" "^3.1.1" - "@smithy/types" "^3.1.0" - "@smithy/url-parser" "^3.0.1" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/property-provider" "^3.1.3" + "@smithy/types" "^3.3.0" + "@smithy/url-parser" "^3.0.3" tslib "^2.6.2" -"@smithy/eventstream-codec@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/eventstream-codec/-/eventstream-codec-3.0.1.tgz#34fd2f37ddb411fd6a28ff86e0c7c95f813802bd" - integrity sha512-RNl3CuWZWPy+s8sx4PcOkRvlfodR33Dj3hzUuDG/CoF6XBvm5Xvr33wRoC1RWht0NN+Q6Z6KcoAkhlQA12MBBw== +"@smithy/eventstream-codec@^3.1.2": + version "3.1.2" + resolved "https://registry.yarnpkg.com/@smithy/eventstream-codec/-/eventstream-codec-3.1.2.tgz#4a1c72b34400631b829241151984a1ad8c4f963c" + integrity sha512-0mBcu49JWt4MXhrhRAlxASNy0IjDRFU+aWNDRal9OtUJvJNiwDuyKMUONSOjLjSCeGwZaE0wOErdqULer8r7yw== dependencies: - "@aws-crypto/crc32" "3.0.0" - "@smithy/types" "^3.1.0" + "@aws-crypto/crc32" "5.2.0" + "@smithy/types" "^3.3.0" "@smithy/util-hex-encoding" "^3.0.0" tslib "^2.6.2" -"@smithy/eventstream-serde-browser@^3.0.0": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/eventstream-serde-browser/-/eventstream-serde-browser-3.0.1.tgz#8eb486bda0d41324396fed42f471e02bf0a9122e" - integrity sha512-hpjzFlsDwtircebetScjEiwQwwPy0XASsV3dpUxEhPQUnF/mQ/IeiXaDrhsOmJiscMuCwxNPoZm3x4XmnGwN1g== +"@smithy/eventstream-serde-browser@^3.0.5": + version "3.0.5" + resolved "https://registry.yarnpkg.com/@smithy/eventstream-serde-browser/-/eventstream-serde-browser-3.0.5.tgz#3e971afd2b8a02a098af8decc4b9e3f35296d6a2" + integrity sha512-dEyiUYL/ekDfk+2Ra4GxV+xNnFoCmk1nuIXg+fMChFTrM2uI/1r9AdiTYzPqgb72yIv/NtAj6C3dG//1wwgakQ== dependencies: - "@smithy/eventstream-serde-universal" "^3.0.1" - "@smithy/types" "^3.1.0" + "@smithy/eventstream-serde-universal" "^3.0.4" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/eventstream-serde-config-resolver@^3.0.0": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/eventstream-serde-config-resolver/-/eventstream-serde-config-resolver-3.0.1.tgz#74e9cb3992edc03319ffa05eb6008aacaaca4f71" - integrity sha512-6+B8P+5Q1mll4u7IoI7mpmYOSW3/c2r3WQoYLdqOjbIKMixJFGmN79ZjJiNMy4X2GZ4We9kQ6LfnFuczSlhcyw== +"@smithy/eventstream-serde-config-resolver@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/eventstream-serde-config-resolver/-/eventstream-serde-config-resolver-3.0.3.tgz#f852e096d0ad112363b4685e1d441088d1fce67a" + integrity sha512-NVTYjOuYpGfrN/VbRQgn31x73KDLfCXCsFdad8DiIc3IcdxL+dYA9zEQPyOP7Fy2QL8CPy2WE4WCUD+ZsLNfaQ== dependencies: - "@smithy/types" "^3.1.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/eventstream-serde-node@^3.0.0": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/eventstream-serde-node/-/eventstream-serde-node-3.0.1.tgz#81b96ee269334516ab23b11c7d0b9a5dc32ae633" - integrity sha512-8ylxIbZ0XiQD8kSKPmrrGS/2LmcDxg1mAAURa5tjcjYeBJPg7EaFRcH/aRe2RDPaoVUAbOfjHh2bTkWvy7P4Ig== +"@smithy/eventstream-serde-node@^3.0.4": + version "3.0.4" + resolved "https://registry.yarnpkg.com/@smithy/eventstream-serde-node/-/eventstream-serde-node-3.0.4.tgz#6301752ca51b3ebabcd2dec112f1dacd990de4c1" + integrity sha512-mjlG0OzGAYuUpdUpflfb9zyLrBGgmQmrobNT8b42ZTsGv/J03+t24uhhtVEKG/b2jFtPIHF74Bq+VUtbzEKOKg== dependencies: - "@smithy/eventstream-serde-universal" "^3.0.1" - "@smithy/types" "^3.1.0" + "@smithy/eventstream-serde-universal" "^3.0.4" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/eventstream-serde-universal@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/eventstream-serde-universal/-/eventstream-serde-universal-3.0.1.tgz#0060ce4147568706988890490e8c6cc11a15dde9" - integrity sha512-E6aeN0MEO1p1KVN4Z3XQlvdUPp+hKJ21eiiioWtNLNNGAZUaJPlXgrqF+6Wj/aM86//9EQp6/iAwQB6eXaulzw== +"@smithy/eventstream-serde-universal@^3.0.4": + version "3.0.4" + resolved "https://registry.yarnpkg.com/@smithy/eventstream-serde-universal/-/eventstream-serde-universal-3.0.4.tgz#6754de5b94bdc286d8ef1d6bcf22d80f6ab68f30" + integrity sha512-Od9dv8zh3PgOD7Vj4T3HSuox16n0VG8jJIM2gvKASL6aCtcS8CfHZDWe1Ik3ZXW6xBouU+45Q5wgoliWDZiJ0A== dependencies: - "@smithy/eventstream-codec" "^3.0.1" - "@smithy/types" "^3.1.0" + "@smithy/eventstream-codec" "^3.1.2" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/fetch-http-handler@^3.0.1", "@smithy/fetch-http-handler@^3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@smithy/fetch-http-handler/-/fetch-http-handler-3.0.2.tgz#eff4056e819b3591d1c5d472ee58c2981886920a" - integrity sha512-0nW6tLK0b7EqSsfKvnOmZCgJqnodBAnvqcrlC5dotKfklLedPTRGsQamSVbVDWyuU/QGg+YbZDJUQ0CUufJXZQ== +"@smithy/fetch-http-handler@^3.2.4": + version "3.2.4" + resolved "https://registry.yarnpkg.com/@smithy/fetch-http-handler/-/fetch-http-handler-3.2.4.tgz#c754de7e0ff2541b73ac9ba7cc955940114b3d62" + integrity sha512-kBprh5Gs5h7ug4nBWZi1FZthdqSM+T7zMmsZxx0IBvWUn7dK3diz2SHn7Bs4dQGFDk8plDv375gzenDoNwrXjg== dependencies: - "@smithy/protocol-http" "^4.0.1" - "@smithy/querystring-builder" "^3.0.1" - "@smithy/types" "^3.1.0" + "@smithy/protocol-http" "^4.1.0" + "@smithy/querystring-builder" "^3.0.3" + "@smithy/types" "^3.3.0" "@smithy/util-base64" "^3.0.0" tslib "^2.6.2" -"@smithy/hash-blob-browser@^3.0.0": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/hash-blob-browser/-/hash-blob-browser-3.0.1.tgz#9a72d6010bad91f2f6b97df41bbe662b24d404f3" - integrity sha512-P8xxvMm0F6vi/7+GwGhZbE532b7TzGJUfUoUNGrb+dcR+MJUisV8sEQBZ5EB/ddf1/aGr8KO7QqbO/6WhfdW/Q== +"@smithy/hash-blob-browser@^3.1.2": + version "3.1.2" + resolved "https://registry.yarnpkg.com/@smithy/hash-blob-browser/-/hash-blob-browser-3.1.2.tgz#90281c1f183d93686fb4f26107f1819644d68829" + integrity sha512-hAbfqN2UbISltakCC2TP0kx4LqXBttEv2MqSPE98gVuDFMf05lU+TpC41QtqGP3Ff5A3GwZMPfKnEy0VmEUpmg== dependencies: "@smithy/chunked-blob-reader" "^3.0.0" "@smithy/chunked-blob-reader-native" "^3.0.0" - "@smithy/types" "^3.1.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/hash-node@^3.0.0": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/hash-node/-/hash-node-3.0.1.tgz#52924bcbd6a02c7f7e2d9c332f59d5adc09688a3" - integrity sha512-w2ncjgk2EYO2+WhAsSQA8owzoOSY7IL1qVytlwpnL1pFGWTjIoIh5nROkEKXY51unB63bMGZqDiVoXaFbyKDlg== +"@smithy/hash-node@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/hash-node/-/hash-node-3.0.3.tgz#82c5cb7b0f1a29ee7319081853d2d158c07dff24" + integrity sha512-2ctBXpPMG+B3BtWSGNnKELJ7SH9e4TNefJS0cd2eSkOOROeBnnVBnAy9LtJ8tY4vUEoe55N4CNPxzbWvR39iBw== dependencies: - "@smithy/types" "^3.1.0" + "@smithy/types" "^3.3.0" "@smithy/util-buffer-from" "^3.0.0" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@smithy/hash-stream-node@^3.0.0": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/hash-stream-node/-/hash-stream-node-3.0.1.tgz#88f467cb35f87fa2154774ac56d901cf13321edd" - integrity sha512-5Z5Oyqh9f5927HWyKK3klG09rMlVu8OcEQd4YDxYZbjdB9nHd8imTMN06tfcyrZCEzcOdeUCpJmjfVWUxUDigg== +"@smithy/hash-stream-node@^3.1.2": + version "3.1.2" + resolved "https://registry.yarnpkg.com/@smithy/hash-stream-node/-/hash-stream-node-3.1.2.tgz#89f0290ae44b113863878e75b10c484ff48af71c" + integrity sha512-PBgDMeEdDzi6JxKwbfBtwQG9eT9cVwsf0dZzLXoJF4sHKHs5HEo/3lJWpn6jibfJwT34I1EBXpBnZE8AxAft6g== dependencies: - "@smithy/types" "^3.1.0" + "@smithy/types" "^3.3.0" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@smithy/invalid-dependency@^3.0.0": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/invalid-dependency/-/invalid-dependency-3.0.1.tgz#921787acfbe136af7ded46ae6f4b3d81c9b7e05e" - integrity sha512-RSNF/32BKygXKKMyS7koyuAq1rcdW5p5c4EFa77QenBFze9As+JiRnV9OWBh2cB/ejGZalEZjvIrMLHwJl7aGA== +"@smithy/invalid-dependency@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/invalid-dependency/-/invalid-dependency-3.0.3.tgz#8d9fd70e3a94b565a4eba4ffbdc95238e1930528" + integrity sha512-ID1eL/zpDULmHJbflb864k72/SNOZCADRc9i7Exq3RUNJw6raWUSlFEQ+3PX3EYs++bTxZB2dE9mEHTQLv61tw== + dependencies: + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + +"@smithy/is-array-buffer@^2.2.0": + version "2.2.0" + resolved "https://registry.yarnpkg.com/@smithy/is-array-buffer/-/is-array-buffer-2.2.0.tgz#f84f0d9f9a36601a9ca9381688bd1b726fd39111" + integrity sha512-GGP3O9QFD24uGeAXYUjwSTXARoqpZykHadOmA8G5vfJPK0/DC67qa//0qvqrJzL1xc8WQWX7/yc7fwudjPHPhA== dependencies: - "@smithy/types" "^3.1.0" tslib "^2.6.2" "@smithy/is-array-buffer@^3.0.0": @@ -1580,160 +1574,161 @@ dependencies: tslib "^2.6.2" -"@smithy/md5-js@^3.0.0": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/md5-js/-/md5-js-3.0.1.tgz#796dca16509f66da5ba380120efdbbbfc4d1ab5d" - integrity sha512-wQa0YGsR4Zb1GQLGwOOgRAbkj22P6CFGaFzu5bKk8K4HVNIC2dBlIxqZ/baF0pLiSZySAPdDZT7CdZ7GkGXt5A== +"@smithy/md5-js@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/md5-js/-/md5-js-3.0.3.tgz#55ee40aa24075b096c39f7910590c18ff7660c98" + integrity sha512-O/SAkGVwpWmelpj/8yDtsaVe6sINHLB1q8YE/+ZQbDxIw3SRLbTZuRaI10K12sVoENdnHqzPp5i3/H+BcZ3m3Q== dependencies: - "@smithy/types" "^3.1.0" + "@smithy/types" "^3.3.0" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@smithy/middleware-content-length@^3.0.0": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/middleware-content-length/-/middleware-content-length-3.0.1.tgz#90bce78dfd0db978df7920ae58e420ce9ed2f79a" - integrity sha512-6QdK/VbrCfXD5/QolE2W/ok6VqxD+SM28Ds8iSlEHXZwv4buLsvWyvoEEy0322K/g5uFgPzBmZjGqesTmPL+yQ== +"@smithy/middleware-content-length@^3.0.5": + version "3.0.5" + resolved "https://registry.yarnpkg.com/@smithy/middleware-content-length/-/middleware-content-length-3.0.5.tgz#1680aa4fb2a1c0505756103c9a5c2916307d9035" + integrity sha512-ILEzC2eyxx6ncej3zZSwMpB5RJ0zuqH7eMptxC4KN3f+v9bqT8ohssKbhNR78k/2tWW+KS5Spw+tbPF4Ejyqvw== dependencies: - "@smithy/protocol-http" "^4.0.1" - "@smithy/types" "^3.1.0" + "@smithy/protocol-http" "^4.1.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/middleware-endpoint@^3.0.1", "@smithy/middleware-endpoint@^3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@smithy/middleware-endpoint/-/middleware-endpoint-3.0.2.tgz#93bb575a25bb0bd5d1d18cd77157ccb2ba15112a" - integrity sha512-gWEaGYB3Bei17Oiy/F2IlUPpBazNXImytoOdJ1xbrUOaJKAOiUhx8/4FOnYLLJHdAwa9PlvJ2ULda2f/Dnwi9w== - dependencies: - "@smithy/middleware-serde" "^3.0.1" - "@smithy/node-config-provider" "^3.1.1" - "@smithy/shared-ini-file-loader" "^3.1.1" - "@smithy/types" "^3.1.0" - "@smithy/url-parser" "^3.0.1" - "@smithy/util-middleware" "^3.0.1" +"@smithy/middleware-endpoint@^3.1.0": + version "3.1.0" + resolved "https://registry.yarnpkg.com/@smithy/middleware-endpoint/-/middleware-endpoint-3.1.0.tgz#9b8a496d87a68ec43f3f1a0139868d6765a88119" + integrity sha512-5y5aiKCEwg9TDPB4yFE7H6tYvGFf1OJHNczeY10/EFF8Ir8jZbNntQJxMWNfeQjC1mxPsaQ6mR9cvQbf+0YeMw== + dependencies: + "@smithy/middleware-serde" "^3.0.3" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/shared-ini-file-loader" "^3.1.4" + "@smithy/types" "^3.3.0" + "@smithy/url-parser" "^3.0.3" + "@smithy/util-middleware" "^3.0.3" tslib "^2.6.2" -"@smithy/middleware-retry@^3.0.3", "@smithy/middleware-retry@^3.0.4": - version "3.0.4" - resolved "https://registry.yarnpkg.com/@smithy/middleware-retry/-/middleware-retry-3.0.4.tgz#4f1a23c218fe279659c3d88ec1c18bf19938eba6" - integrity sha512-Tu+FggbLNF5G9L6Wi8o32Mg4bhlBInWlhhaFKyytGRnkfxGopxFVXJQn7sjZdFYJyTz6RZZa06tnlvavUgtoVg== - dependencies: - "@smithy/node-config-provider" "^3.1.1" - "@smithy/protocol-http" "^4.0.1" - "@smithy/service-error-classification" "^3.0.1" - "@smithy/smithy-client" "^3.1.2" - "@smithy/types" "^3.1.0" - "@smithy/util-middleware" "^3.0.1" - "@smithy/util-retry" "^3.0.1" +"@smithy/middleware-retry@^3.0.13": + version "3.0.13" + resolved "https://registry.yarnpkg.com/@smithy/middleware-retry/-/middleware-retry-3.0.13.tgz#3bdd662aff01f360fcbaa166500bbc575dc9d1d0" + integrity sha512-zvCLfaRYCaUmjbF2yxShGZdolSHft7NNCTA28HVN9hKcEbOH+g5irr1X9s+in8EpambclGnevZY4A3lYpvDCFw== + dependencies: + "@smithy/node-config-provider" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/service-error-classification" "^3.0.3" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" + "@smithy/util-middleware" "^3.0.3" + "@smithy/util-retry" "^3.0.3" tslib "^2.6.2" uuid "^9.0.1" -"@smithy/middleware-serde@^3.0.0", "@smithy/middleware-serde@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/middleware-serde/-/middleware-serde-3.0.1.tgz#566ec46ee84873108c1cea26b3f3bd2899a73249" - integrity sha512-ak6H/ZRN05r5+SR0/IUc5zOSyh2qp3HReg1KkrnaSLXmncy9lwOjNqybX4L4x55/e5mtVDn1uf/gQ6bw5neJPw== +"@smithy/middleware-serde@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/middleware-serde/-/middleware-serde-3.0.3.tgz#74d974460f74d99f38c861e6862984543a880a66" + integrity sha512-puUbyJQBcg9eSErFXjKNiGILJGtiqmuuNKEYNYfUD57fUl4i9+mfmThtQhvFXU0hCVG0iEJhvQUipUf+/SsFdA== dependencies: - "@smithy/types" "^3.1.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/middleware-stack@^3.0.0", "@smithy/middleware-stack@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/middleware-stack/-/middleware-stack-3.0.1.tgz#9418f1295efda318c181bf3bca65173a75d133e5" - integrity sha512-fS5uT//y1SlBdkzIvgmWQ9FufwMXrHSSbuR25ygMy1CRDIZkcBMoF4oTMYNfR9kBlVBcVzlv7joFdNrFuQirPA== +"@smithy/middleware-stack@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/middleware-stack/-/middleware-stack-3.0.3.tgz#91845c7e61e6f137fa912b623b6def719a4f6ce7" + integrity sha512-r4klY9nFudB0r9UdSMaGSyjyQK5adUyPnQN/ZM6M75phTxOdnc/AhpvGD1fQUvgmqjQEBGCwpnPbDm8pH5PapA== dependencies: - "@smithy/types" "^3.1.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/node-config-provider@^3.1.0", "@smithy/node-config-provider@^3.1.1": - version "3.1.1" - resolved "https://registry.yarnpkg.com/@smithy/node-config-provider/-/node-config-provider-3.1.1.tgz#a361ab228d2229b03cc2fbdfd304055c38127614" - integrity sha512-z5G7+ysL4yUtMghUd2zrLkecu0mTfnYlt5dR76g/HsFqf7evFazwiZP1ag2EJenGxNBDwDM5g8nm11NPogiUVA== +"@smithy/node-config-provider@^3.1.4": + version "3.1.4" + resolved "https://registry.yarnpkg.com/@smithy/node-config-provider/-/node-config-provider-3.1.4.tgz#05647bed666aa8036a1ad72323c1942e5d421be1" + integrity sha512-YvnElQy8HR4vDcAjoy7Xkx9YT8xZP4cBXcbJSgm/kxmiQu08DwUwj8rkGnyoJTpfl/3xYHH+d8zE+eHqoDCSdQ== dependencies: - "@smithy/property-provider" "^3.1.1" - "@smithy/shared-ini-file-loader" "^3.1.1" - "@smithy/types" "^3.1.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/shared-ini-file-loader" "^3.1.4" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/node-http-handler@^3.0.0", "@smithy/node-http-handler@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/node-http-handler/-/node-http-handler-3.0.1.tgz#40e1ebe00aeb628a46a3a12b14ad6cabb69b576e" - integrity sha512-hlBI6MuREA4o1wBMEt+QNhUzoDtFFvwR6ecufimlx9D79jPybE/r8kNorphXOi91PgSO9S2fxRjcKCLk7Jw8zA== +"@smithy/node-http-handler@^3.1.4": + version "3.1.4" + resolved "https://registry.yarnpkg.com/@smithy/node-http-handler/-/node-http-handler-3.1.4.tgz#be4195e45639e690d522cd5f11513ea822ff9d5f" + integrity sha512-+UmxgixgOr/yLsUxcEKGH0fMNVteJFGkmRltYFHnBMlogyFdpzn2CwqWmxOrfJELhV34v0WSlaqG1UtE1uXlJg== dependencies: - "@smithy/abort-controller" "^3.0.1" - "@smithy/protocol-http" "^4.0.1" - "@smithy/querystring-builder" "^3.0.1" - "@smithy/types" "^3.1.0" + "@smithy/abort-controller" "^3.1.1" + "@smithy/protocol-http" "^4.1.0" + "@smithy/querystring-builder" "^3.0.3" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/property-provider@^3.1.0", "@smithy/property-provider@^3.1.1": - version "3.1.1" - resolved "https://registry.yarnpkg.com/@smithy/property-provider/-/property-provider-3.1.1.tgz#4849b69b83ac97e68e80d2dc0c2b98ce5950dffe" - integrity sha512-YknOMZcQkB5on+MU0DvbToCmT2YPtTETMXW0D3+/Iln7ezT+Zm1GMHhCW1dOH/X/+LkkQD9aXEoCX/B10s4Xdw== +"@smithy/property-provider@^3.1.3": + version "3.1.3" + resolved "https://registry.yarnpkg.com/@smithy/property-provider/-/property-provider-3.1.3.tgz#afd57ea82a3f6c79fbda95e3cb85c0ee0a79f39a" + integrity sha512-zahyOVR9Q4PEoguJ/NrFP4O7SMAfYO1HLhB18M+q+Z4KFd4V2obiMnlVoUFzFLSPeVt1POyNWneHHrZaTMoc/g== dependencies: - "@smithy/types" "^3.1.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/protocol-http@^4.0.0", "@smithy/protocol-http@^4.0.1": - version "4.0.1" - resolved "https://registry.yarnpkg.com/@smithy/protocol-http/-/protocol-http-4.0.1.tgz#7b57080565816f229d2391726f537e13371c7e38" - integrity sha512-eBhm9zwcFPEazc654c0BEWtxYAzrw+OhoSf5pkwKzfftWKXRoqEhwOE2Pvn30v0iAdo7Mfsfb6pi1NnZlGCMpg== +"@smithy/protocol-http@^4.1.0": + version "4.1.0" + resolved "https://registry.yarnpkg.com/@smithy/protocol-http/-/protocol-http-4.1.0.tgz#23519d8f45bf4f33960ea5415847bc2b620a010b" + integrity sha512-dPVoHYQ2wcHooGXg3LQisa1hH0e4y0pAddPMeeUPipI1tEOqL6A4N0/G7abeq+K8wrwSgjk4C0wnD1XZpJm5aA== dependencies: - "@smithy/types" "^3.1.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/querystring-builder@^3.0.0", "@smithy/querystring-builder@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/querystring-builder/-/querystring-builder-3.0.1.tgz#8fb20e1d13154661612954c5ba448e0875be6118" - integrity sha512-vKitpnG/2KOMVlx3x1S3FkBH075EROG3wcrcDaNerQNh8yuqnSL23btCD2UyX4i4lpPzNW6VFdxbn2Z25b/g5Q== +"@smithy/querystring-builder@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/querystring-builder/-/querystring-builder-3.0.3.tgz#6b0e566f885bb84938d077c69e8f8555f686af13" + integrity sha512-vyWckeUeesFKzCDaRwWLUA1Xym9McaA6XpFfAK5qI9DKJ4M33ooQGqvM4J+LalH4u/Dq9nFiC8U6Qn1qi0+9zw== dependencies: - "@smithy/types" "^3.1.0" + "@smithy/types" "^3.3.0" "@smithy/util-uri-escape" "^3.0.0" tslib "^2.6.2" -"@smithy/querystring-parser@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/querystring-parser/-/querystring-parser-3.0.1.tgz#68589196fedf280aad2c0a69a2a016f78b2137cf" - integrity sha512-Qt8DMC05lVS8NcQx94lfVbZSX+2Ym7032b/JR8AlboAa/D669kPzqb35dkjkvAG6+NWmUchef3ENtrD6F+5n8Q== +"@smithy/querystring-parser@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/querystring-parser/-/querystring-parser-3.0.3.tgz#272a6b83f88dfcbbec8283d72a6bde850cc00091" + integrity sha512-zahM1lQv2YjmznnfQsWbYojFe55l0SLG/988brlLv1i8z3dubloLF+75ATRsqPBboUXsW6I9CPGE5rQgLfY0vQ== dependencies: - "@smithy/types" "^3.1.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/service-error-classification@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/service-error-classification/-/service-error-classification-3.0.1.tgz#23db475d3cef726e8bf3435229e6e04e4de92430" - integrity sha512-ubFUvIePjDCyIzZ+pLETqNC6KXJ/fc6g+/baqel7Zf6kJI/kZKgjwkCI7zbUhoUuOZ/4eA/87YasVu40b/B4bA== +"@smithy/service-error-classification@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/service-error-classification/-/service-error-classification-3.0.3.tgz#73484255060a094aa9372f6cd972dcaf97e3ce80" + integrity sha512-Jn39sSl8cim/VlkLsUhRFq/dKDnRUFlfRkvhOJaUbLBXUsLRLNf9WaxDv/z9BjuQ3A6k/qE8af1lsqcwm7+DaQ== dependencies: - "@smithy/types" "^3.1.0" + "@smithy/types" "^3.3.0" -"@smithy/shared-ini-file-loader@^3.1.0", "@smithy/shared-ini-file-loader@^3.1.1": - version "3.1.1" - resolved "https://registry.yarnpkg.com/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.1.tgz#752ecd8962a660ded75d25341a48feb94f145a6f" - integrity sha512-nD6tXIX2126/P9e3wqRY1bm9dTtPZwRDyjVOd18G28o+1UOG+kOVgUwujE795HslSuPlEgqzsH5sgNP1hDjj9g== +"@smithy/shared-ini-file-loader@^3.1.4": + version "3.1.4" + resolved "https://registry.yarnpkg.com/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.4.tgz#7dceaf5a5307a2ee347ace8aba17312a1a3ede15" + integrity sha512-qMxS4hBGB8FY2GQqshcRUy1K6k8aBWP5vwm8qKkCT3A9K2dawUwOIJfqh9Yste/Bl0J2lzosVyrXDj68kLcHXQ== dependencies: - "@smithy/types" "^3.1.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/signature-v4@^3.0.0": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/signature-v4/-/signature-v4-3.0.1.tgz#8542bfe127f93a8c2c5bcdc05c3e489b9cd16ed5" - integrity sha512-ARAmD+E7j6TIEhKLjSZxdzs7wceINTMJRN2BXPM09BiUmJhkXAF1ZZtDXH6fhlk7oehBZeh37wGiPOqtdKjLeg== +"@smithy/signature-v4@^4.1.0": + version "4.1.0" + resolved "https://registry.yarnpkg.com/@smithy/signature-v4/-/signature-v4-4.1.0.tgz#251ff43dc1f4ad66776122732fea9e56efc56443" + integrity sha512-aRryp2XNZeRcOtuJoxjydO6QTaVhxx/vjaR+gx7ZjaFgrgPRyZ3HCTbfwqYj6ZWEBHkCSUfcaymKPURaByukag== dependencies: "@smithy/is-array-buffer" "^3.0.0" - "@smithy/types" "^3.1.0" + "@smithy/protocol-http" "^4.1.0" + "@smithy/types" "^3.3.0" "@smithy/util-hex-encoding" "^3.0.0" - "@smithy/util-middleware" "^3.0.1" + "@smithy/util-middleware" "^3.0.3" "@smithy/util-uri-escape" "^3.0.0" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@smithy/smithy-client@^3.1.1", "@smithy/smithy-client@^3.1.2": - version "3.1.2" - resolved "https://registry.yarnpkg.com/@smithy/smithy-client/-/smithy-client-3.1.2.tgz#1c27ab4910bbfd6c0bc04ddd8412494e7a7daba7" - integrity sha512-f3eQpczBOFUtdT/ptw2WpUKu1qH1K7xrssrSiHYtd9TuLXkvFqb88l9mz9FHeUVNSUxSnkW1anJnw6rLwUKzQQ== - dependencies: - "@smithy/middleware-endpoint" "^3.0.2" - "@smithy/middleware-stack" "^3.0.1" - "@smithy/protocol-http" "^4.0.1" - "@smithy/types" "^3.1.0" - "@smithy/util-stream" "^3.0.2" +"@smithy/smithy-client@^3.1.11": + version "3.1.11" + resolved "https://registry.yarnpkg.com/@smithy/smithy-client/-/smithy-client-3.1.11.tgz#f12a7a0acaa7db3ead488ddf12ef4681daec11a7" + integrity sha512-l0BpyYkciNyMaS+PnFFz4aO5sBcXvGLoJd7mX9xrMBIm2nIQBVvYgp2ZpPDMzwjKCavsXu06iuCm0F6ZJZc6yQ== + dependencies: + "@smithy/middleware-endpoint" "^3.1.0" + "@smithy/middleware-stack" "^3.0.3" + "@smithy/protocol-http" "^4.1.0" + "@smithy/types" "^3.3.0" + "@smithy/util-stream" "^3.1.3" tslib "^2.6.2" "@smithy/types@^2.5.0": @@ -1743,20 +1738,20 @@ dependencies: tslib "^2.5.0" -"@smithy/types@^3.0.0", "@smithy/types@^3.1.0": - version "3.1.0" - resolved "https://registry.yarnpkg.com/@smithy/types/-/types-3.1.0.tgz#e2eb2e2130026a8a0631b2605c17df1975aa99d6" - integrity sha512-qi4SeCVOUPjhSSZrxxB/mB8DrmuSFUcJnD9KXjuP+7C3LV/KFV4kpuUSH3OHDZgQB9TEH/1sO/Fq/5HyaK9MPw== +"@smithy/types@^3.3.0": + version "3.3.0" + resolved "https://registry.yarnpkg.com/@smithy/types/-/types-3.3.0.tgz#fae037c733d09bc758946a01a3de0ef6e210b16b" + integrity sha512-IxvBBCTFDHbVoK7zIxqA1ZOdc4QfM5HM7rGleCuHi7L1wnKv5Pn69xXJQ9hgxH60ZVygH9/JG0jRgtUncE3QUA== dependencies: tslib "^2.6.2" -"@smithy/url-parser@^3.0.0", "@smithy/url-parser@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/url-parser/-/url-parser-3.0.1.tgz#5451fc7034e9eda112696d1a9508746a7f8b0521" - integrity sha512-G140IlNFlzYWVCedC4E2d6NycM1dCUbe5CnsGW1hmGt4hYKiGOw0v7lVru9WAn5T2w09QEjl4fOESWjGmCvVmg== +"@smithy/url-parser@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/url-parser/-/url-parser-3.0.3.tgz#e8a060d9810b24b1870385fc2b02485b8a6c5955" + integrity sha512-pw3VtZtX2rg+s6HMs6/+u9+hu6oY6U7IohGhVNnjbgKy86wcIsSZwgHrFR+t67Uyxvp4Xz3p3kGXXIpTNisq8A== dependencies: - "@smithy/querystring-parser" "^3.0.1" - "@smithy/types" "^3.1.0" + "@smithy/querystring-parser" "^3.0.3" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@smithy/util-base64@^3.0.0": @@ -1782,6 +1777,14 @@ dependencies: tslib "^2.6.2" +"@smithy/util-buffer-from@^2.2.0": + version "2.2.0" + resolved "https://registry.yarnpkg.com/@smithy/util-buffer-from/-/util-buffer-from-2.2.0.tgz#6fc88585165ec73f8681d426d96de5d402021e4b" + integrity sha512-IJdWBbTcMQ6DA0gdNhh/BwrLkDR+ADW5Kr1aZmd4k3DIF6ezMV4R2NIAmT08wQJ3yUK82thHWmC/TnK/wpMMIA== + dependencies: + "@smithy/is-array-buffer" "^2.2.0" + tslib "^2.6.2" + "@smithy/util-buffer-from@^3.0.0": version "3.0.0" resolved "https://registry.yarnpkg.com/@smithy/util-buffer-from/-/util-buffer-from-3.0.0.tgz#559fc1c86138a89b2edaefc1e6677780c24594e3" @@ -1797,37 +1800,37 @@ dependencies: tslib "^2.6.2" -"@smithy/util-defaults-mode-browser@^3.0.3": - version "3.0.4" - resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.4.tgz#4392db3d96aa08ae161bb987ecfedc094d84b88d" - integrity sha512-sXtin3Mue3A3xo4+XkozpgPptgmRwvNPOqTvb3ANGTCzzoQgAPBNjpE+aXCINaeSMXwHmv7E2oEn2vWdID+SAQ== +"@smithy/util-defaults-mode-browser@^3.0.13": + version "3.0.13" + resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.13.tgz#f574bbb89d60f5dcc443f106087d317b370634d0" + integrity sha512-ZIRSUsnnMRStOP6OKtW+gCSiVFkwnfQF2xtf32QKAbHR6ACjhbAybDvry+3L5qQYdh3H6+7yD/AiUE45n8mTTw== dependencies: - "@smithy/property-provider" "^3.1.1" - "@smithy/smithy-client" "^3.1.2" - "@smithy/types" "^3.1.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" bowser "^2.11.0" tslib "^2.6.2" -"@smithy/util-defaults-mode-node@^3.0.3": - version "3.0.4" - resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.4.tgz#794b8bb3facb5f6581af8d02fcf1b42b34c103e5" - integrity sha512-CUF6TyxLh3CgBRVYgZNOPDfzHQjeQr0vyALR6/DkQkOm7rNfGEzW1BRFi88C73pndmfvoiIT7ochuT76OPz9Dw== - dependencies: - "@smithy/config-resolver" "^3.0.2" - "@smithy/credential-provider-imds" "^3.1.1" - "@smithy/node-config-provider" "^3.1.1" - "@smithy/property-provider" "^3.1.1" - "@smithy/smithy-client" "^3.1.2" - "@smithy/types" "^3.1.0" +"@smithy/util-defaults-mode-node@^3.0.13": + version "3.0.13" + resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.13.tgz#cdd3a08bb5af4d17c2b0a951af9936ce7f3bae93" + integrity sha512-voUa8TFJGfD+U12tlNNLCDlXibt9vRdNzRX45Onk/WxZe7TS+hTOZouEZRa7oARGicdgeXvt1A0W45qLGYdy+g== + dependencies: + "@smithy/config-resolver" "^3.0.5" + "@smithy/credential-provider-imds" "^3.2.0" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/property-provider" "^3.1.3" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/util-endpoints@^2.0.1": - version "2.0.2" - resolved "https://registry.yarnpkg.com/@smithy/util-endpoints/-/util-endpoints-2.0.2.tgz#f995cca553569af43bef82f59d63b4969516df95" - integrity sha512-4zFOcBFQvifd2LSD4a1dKvfIWWwh4sWNtS3oZ7mpob/qPPmJseqKB148iT+hWCDsG//TmI+8vjYPgZdvnkYlTg== +"@smithy/util-endpoints@^2.0.5": + version "2.0.5" + resolved "https://registry.yarnpkg.com/@smithy/util-endpoints/-/util-endpoints-2.0.5.tgz#e3a7a4d1c41250bfd2b2d890d591273a7d8934be" + integrity sha512-ReQP0BWihIE68OAblC/WQmDD40Gx+QY1Ez8mTdFMXpmjfxSyz2fVQu3A4zXRfQU9sZXtewk3GmhfOHswvX+eNg== dependencies: - "@smithy/node-config-provider" "^3.1.1" - "@smithy/types" "^3.1.0" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@smithy/util-hex-encoding@^3.0.0": @@ -1837,31 +1840,31 @@ dependencies: tslib "^2.6.2" -"@smithy/util-middleware@^3.0.0", "@smithy/util-middleware@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/util-middleware/-/util-middleware-3.0.1.tgz#3e0eabaf936e62651a0b9a7c7c3bbe43d3971c91" - integrity sha512-WRODCQtUsO7vIvfrdxS8RFPeLKcewYtaCglZsBsedIKSUGIIvMlZT5oh+pCe72I+1L+OjnZuqRNpN2LKhWA4KQ== +"@smithy/util-middleware@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/util-middleware/-/util-middleware-3.0.3.tgz#07bf9602682f5a6c55bc2f0384303f85fc68c87e" + integrity sha512-l+StyYYK/eO3DlVPbU+4Bi06Jjal+PFLSMmlWM1BEwyLxZ3aKkf1ROnoIakfaA7mC6uw3ny7JBkau4Yc+5zfWw== dependencies: - "@smithy/types" "^3.1.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/util-retry@^3.0.0", "@smithy/util-retry@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/util-retry/-/util-retry-3.0.1.tgz#24037ff87a314a1ac99f80da43f579ae2352fe18" - integrity sha512-5lRtYm+8fNFEUTdqZXg5M4ppVp40rMIJfR1TpbHAhKQgPIDpWT+iYMaqgnwEbtpi9U1smyUOPv5Sg+M1neOBgw== +"@smithy/util-retry@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/util-retry/-/util-retry-3.0.3.tgz#9b2ac0dbb1c81f69812a8affa4d772bebfc0e049" + integrity sha512-AFw+hjpbtVApzpNDhbjNG5NA3kyoMs7vx0gsgmlJF4s+yz1Zlepde7J58zpIRIsdjc+emhpAITxA88qLkPF26w== dependencies: - "@smithy/service-error-classification" "^3.0.1" - "@smithy/types" "^3.1.0" + "@smithy/service-error-classification" "^3.0.3" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/util-stream@^3.0.1", "@smithy/util-stream@^3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@smithy/util-stream/-/util-stream-3.0.2.tgz#ed1377bfe824d8acfc105ab2d17ec4f376382cb2" - integrity sha512-n5Obp5AnlI6qHo8sbupwrcpBe6vFp4qkl0SRNuExKPNrH3ABAMG2ZszRTIUIv2b4AsFrCO+qiy4uH1Q3z1dxTA== +"@smithy/util-stream@^3.1.3": + version "3.1.3" + resolved "https://registry.yarnpkg.com/@smithy/util-stream/-/util-stream-3.1.3.tgz#699ee2397cc1d474e46d2034039d5263812dca64" + integrity sha512-FIv/bRhIlAxC0U7xM1BCnF2aDRPq0UaelqBHkM2lsCp26mcBbgI0tCVTv+jGdsQLUmAMybua/bjDsSu8RQHbmw== dependencies: - "@smithy/fetch-http-handler" "^3.0.2" - "@smithy/node-http-handler" "^3.0.1" - "@smithy/types" "^3.1.0" + "@smithy/fetch-http-handler" "^3.2.4" + "@smithy/node-http-handler" "^3.1.4" + "@smithy/types" "^3.3.0" "@smithy/util-base64" "^3.0.0" "@smithy/util-buffer-from" "^3.0.0" "@smithy/util-hex-encoding" "^3.0.0" @@ -1875,6 +1878,14 @@ dependencies: tslib "^2.6.2" +"@smithy/util-utf8@^2.0.0": + version "2.3.0" + resolved "https://registry.yarnpkg.com/@smithy/util-utf8/-/util-utf8-2.3.0.tgz#dd96d7640363259924a214313c3cf16e7dd329c5" + integrity sha512-R8Rdn8Hy72KKcebgLiv8jQcQkXoLMOGGv5uI1/k0l+snqkOzQ1R0ChUBCxWMlBsFMekWjq0wRudIweFs7sKT5A== + dependencies: + "@smithy/util-buffer-from" "^2.2.0" + tslib "^2.6.2" + "@smithy/util-utf8@^3.0.0": version "3.0.0" resolved "https://registry.yarnpkg.com/@smithy/util-utf8/-/util-utf8-3.0.0.tgz#1a6a823d47cbec1fd6933e5fc87df975286d9d6a" @@ -1883,13 +1894,13 @@ "@smithy/util-buffer-from" "^3.0.0" tslib "^2.6.2" -"@smithy/util-waiter@^3.0.0": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/util-waiter/-/util-waiter-3.0.1.tgz#62d8ff58374032aa8c7e573b1ca4234407c605bd" - integrity sha512-wwnrVQdjQxvWGOAiLmqlEhENGCcDIN+XJ/+usPOgSZObAslrCXgKlkX7rNVwIWW2RhPguTKthvF+4AoO0Z6KpA== +"@smithy/util-waiter@^3.1.2": + version "3.1.2" + resolved "https://registry.yarnpkg.com/@smithy/util-waiter/-/util-waiter-3.1.2.tgz#2d40c3312f3537feee763459a19acafab4c75cf3" + integrity sha512-4pP0EV3iTsexDx+8PPGAKCQpd/6hsQBaQhqWzU4hqKPHN5epPsxKbvUTIiYIHTxaKt6/kEaqPBpu/ufvfbrRzw== dependencies: - "@smithy/abort-controller" "^3.0.1" - "@smithy/types" "^3.1.0" + "@smithy/abort-controller" "^3.1.1" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@tootallnate/once@1": @@ -1897,11 +1908,6 @@ resolved "https://registry.yarnpkg.com/@tootallnate/once/-/once-1.1.2.tgz#ccb91445360179a04e7fe6aff78c00ffc1eeaf82" integrity sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw== -"@tootallnate/once@2": - version "2.0.0" - resolved "https://registry.yarnpkg.com/@tootallnate/once/-/once-2.0.0.tgz#f544a148d3ab35801c1f633a7441fd87c2e484bf" - integrity sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A== - "@types/babel__core@^7.0.0", "@types/babel__core@^7.1.14": version "7.1.18" resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.18.tgz#1a29abcc411a9c05e2094c98f9a1b7da6cdf49f8" @@ -1984,10 +1990,10 @@ jest-diff "^27.0.0" pretty-format "^27.0.0" -"@types/jsdom@^21.1.6": - version "21.1.6" - resolved "https://registry.yarnpkg.com/@types/jsdom/-/jsdom-21.1.6.tgz#bcbc7b245787ea863f3da1ef19aa1dcfb9271a1b" - integrity sha512-/7kkMsC+/kMs7gAYmmBR9P0vGTnOoLhQhyhQJSlXGI5bzTHp6xdo0TtKWQAsz6pmSAeVqKSbqeyP6hytqr9FDw== +"@types/jsdom@^21.1.7": + version "21.1.7" + resolved "https://registry.yarnpkg.com/@types/jsdom/-/jsdom-21.1.7.tgz#9edcb09e0b07ce876e7833922d3274149c898cfa" + integrity sha512-yOriVnggzrnQ3a9OKOCxaVuSug3w3/SbOj5i7VwXWZEyUNl3bLF9V3MfxGbZKuwqJOQyRfqXyROBB1CoZLFWzA== dependencies: "@types/node" "*" "@types/tough-cookie" "*" @@ -2052,11 +2058,6 @@ abab@^2.0.3, abab@^2.0.5: resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.5.tgz#c0b678fb32d60fc1219c784d6a826fe385aeb79a" integrity sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q== -abab@^2.0.6: - version "2.0.6" - resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.6.tgz#41b80f2c871d19686216b82309231cfd3cb3d291" - integrity sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA== - acorn-globals@^6.0.0: version "6.0.0" resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-6.0.0.tgz#46cdd39f0f8ff08a876619b55f5ac8a6dc770b45" @@ -2087,6 +2088,13 @@ agent-base@6: dependencies: debug "4" +agent-base@^7.0.2, agent-base@^7.1.0: + version "7.1.1" + resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-7.1.1.tgz#bdbded7dfb096b751a2a087eeeb9664725b2e317" + integrity sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA== + dependencies: + debug "^4.3.4" + ansi-escapes@^4.2.1: version "4.3.2" resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e" @@ -2418,10 +2426,10 @@ cssstyle@^2.3.0: dependencies: cssom "~0.3.6" -cssstyle@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-3.0.0.tgz#17ca9c87d26eac764bb8cfd00583cff21ce0277a" - integrity sha512-N4u2ABATi3Qplzf0hWbVCdjenim8F3ojEXpBDF5hBpjzW182MjNGLqfmQ0SkSPeQ+V86ZXgeH8aXj6kayd4jgg== +cssstyle@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-4.0.1.tgz#ef29c598a1e90125c870525490ea4f354db0660a" + integrity sha512-8ZYiJ3A/3OkDd093CBT/0UKDWry7ak4BdPTFP2+QEP7cmhouyq/Up709ASSj2cK02BbZiMgk7kYjZNS4QP5qrQ== dependencies: rrweb-cssom "^0.6.0" @@ -2434,14 +2442,13 @@ data-urls@^2.0.0: whatwg-mimetype "^2.3.0" whatwg-url "^8.0.0" -data-urls@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/data-urls/-/data-urls-4.0.0.tgz#333a454eca6f9a5b7b0f1013ff89074c3f522dd4" - integrity sha512-/mMTei/JXPqvFqQtfyTowxmJVwr2PVAeCcDxyFf6LhoOu/09TX2OX3kb2wzi4DMXcfj4OItwDOnhl5oziPnT6g== +data-urls@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/data-urls/-/data-urls-5.0.0.tgz#2f76906bce1824429ffecb6920f45a0b30f00dde" + integrity sha512-ZYP5VBHshaDAiVZxjbRVcFJpc+4xGgT0bK3vzy1HLN8jTO975HEbuYzZJcHoQEY5K1a0z8YayJkyVETa08eNTg== dependencies: - abab "^2.0.6" - whatwg-mimetype "^3.0.0" - whatwg-url "^12.0.0" + whatwg-mimetype "^4.0.0" + whatwg-url "^14.0.0" debug@4, debug@^4.1.0, debug@^4.1.1: version "4.3.3" @@ -2450,6 +2457,13 @@ debug@4, debug@^4.1.0, debug@^4.1.1: dependencies: ms "2.1.2" +debug@^4.3.4: + version "4.3.5" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.5.tgz#e83444eceb9fedd4a1da56d671ae2446a01a6e1e" + integrity sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg== + dependencies: + ms "2.1.2" + decimal.js@^10.2.1: version "10.3.1" resolved "https://registry.yarnpkg.com/decimal.js/-/decimal.js-10.3.1.tgz#d8c3a444a9c6774ba60ca6ad7261c3a94fd5e783" @@ -2509,13 +2523,6 @@ domexception@^2.0.1: dependencies: webidl-conversions "^5.0.0" -domexception@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/domexception/-/domexception-4.0.0.tgz#4ad1be56ccadc86fc76d033353999a8037d03673" - integrity sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw== - dependencies: - webidl-conversions "^7.0.0" - dompurify@^3.1.4: version "3.1.5" resolved "https://registry.yarnpkg.com/dompurify/-/dompurify-3.1.5.tgz#2c6a113fc728682a0f55684b1388c58ddb79dc38" @@ -2634,10 +2641,10 @@ fast-levenshtein@~2.0.6: resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= -fast-xml-parser@4.2.5: - version "4.2.5" - resolved "https://registry.yarnpkg.com/fast-xml-parser/-/fast-xml-parser-4.2.5.tgz#a6747a09296a6cb34f2ae634019bf1738f3b421f" - integrity sha512-B9/wizE4WngqQftFPmdaMYlXoJlJOYxGQOanC77fq9k8+Z0v5dDSVh+3glErdIROP//s/jgb7ZuxKfB8nVyo0g== +fast-xml-parser@4.4.1: + version "4.4.1" + resolved "https://registry.yarnpkg.com/fast-xml-parser/-/fast-xml-parser-4.4.1.tgz#86dbf3f18edf8739326447bcaac31b4ae7f6514f" + integrity sha512-xkjOecfnKGkSsOwtZ5Pz7Us/T6mrbPQrq0nh+aCO5V9nk5NLWmasAHumTKjiPJPWANe+kAZ84Jc8ooJkzZ88Sw== dependencies: strnum "^1.0.5" @@ -2799,12 +2806,12 @@ html-encoding-sniffer@^2.0.1: dependencies: whatwg-encoding "^1.0.5" -html-encoding-sniffer@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-3.0.0.tgz#2cb1a8cf0db52414776e5b2a7a04d5dd98158de9" - integrity sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA== +html-encoding-sniffer@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-4.0.0.tgz#696df529a7cfd82446369dc5193e590a3735b448" + integrity sha512-Y22oTqIU4uuPgEemfz7NDJz6OeKf12Lsu+QC+s3BVpda64lTiMYCyGwg5ki4vFxkMwQdeZDl2adZoqUgdFuTgQ== dependencies: - whatwg-encoding "^2.0.0" + whatwg-encoding "^3.1.1" html-escaper@^2.0.0: version "2.0.2" @@ -2820,14 +2827,13 @@ http-proxy-agent@^4.0.1: agent-base "6" debug "4" -http-proxy-agent@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz#5129800203520d434f142bc78ff3c170800f2b43" - integrity sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w== +http-proxy-agent@^7.0.2: + version "7.0.2" + resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz#9a8b1f246866c028509486585f62b8f2c18c270e" + integrity sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig== dependencies: - "@tootallnate/once" "2" - agent-base "6" - debug "4" + agent-base "^7.1.0" + debug "^4.3.4" https-proxy-agent@^5.0.0: version "5.0.0" @@ -2837,12 +2843,12 @@ https-proxy-agent@^5.0.0: agent-base "6" debug "4" -https-proxy-agent@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz#c59ef224a04fe8b754f3db0063a25ea30d0005d6" - integrity sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA== +https-proxy-agent@^7.0.4: + version "7.0.5" + resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-7.0.5.tgz#9e8b5013873299e11fab6fd548405da2d6c602b2" + integrity sha512-1e4Wqeblerz+tMKPIq2EMGiiWW1dIjZOksyHWSUm1rmuvw/how9hBHZ38lAGj5ID4Ik6EdkOw7NmWPy6LAwalw== dependencies: - agent-base "6" + agent-base "^7.0.2" debug "4" human-signals@^2.1.0: @@ -3446,34 +3452,32 @@ jsdom@^16.6.0: ws "^7.4.6" xml-name-validator "^3.0.0" -jsdom@^22.1.0: - version "22.1.0" - resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-22.1.0.tgz#0fca6d1a37fbeb7f4aac93d1090d782c56b611c8" - integrity sha512-/9AVW7xNbsBv6GfWho4TTNjEo9fe6Zhf9O7s0Fhhr3u+awPwAJMKwAMXnkk5vBxflqLW9hTHX/0cs+P3gW+cQw== +jsdom@^24.1.0: + version "24.1.0" + resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-24.1.0.tgz#0cffdabd42c506788bfecd160e8ac22d4387f971" + integrity sha512-6gpM7pRXCwIOKxX47cgOyvyQDN/Eh0f1MeKySBV2xGdKtqJBLj8P25eY3EVCWo2mglDDzozR2r2MW4T+JiNUZA== dependencies: - abab "^2.0.6" - cssstyle "^3.0.0" - data-urls "^4.0.0" + cssstyle "^4.0.1" + data-urls "^5.0.0" decimal.js "^10.4.3" - domexception "^4.0.0" form-data "^4.0.0" - html-encoding-sniffer "^3.0.0" - http-proxy-agent "^5.0.0" - https-proxy-agent "^5.0.1" + html-encoding-sniffer "^4.0.0" + http-proxy-agent "^7.0.2" + https-proxy-agent "^7.0.4" is-potential-custom-element-name "^1.0.1" - nwsapi "^2.2.4" + nwsapi "^2.2.10" parse5 "^7.1.2" - rrweb-cssom "^0.6.0" + rrweb-cssom "^0.7.0" saxes "^6.0.0" symbol-tree "^3.2.4" - tough-cookie "^4.1.2" - w3c-xmlserializer "^4.0.0" + tough-cookie "^4.1.4" + w3c-xmlserializer "^5.0.0" webidl-conversions "^7.0.0" - whatwg-encoding "^2.0.0" - whatwg-mimetype "^3.0.0" - whatwg-url "^12.0.1" - ws "^8.13.0" - xml-name-validator "^4.0.0" + whatwg-encoding "^3.1.1" + whatwg-mimetype "^4.0.0" + whatwg-url "^14.0.0" + ws "^8.17.0" + xml-name-validator "^5.0.0" jsesc@^2.5.1: version "2.5.2" @@ -3675,10 +3679,10 @@ nwsapi@^2.2.0: resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.0.tgz#204879a9e3d068ff2a55139c2c772780681a38b7" integrity sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ== -nwsapi@^2.2.4: - version "2.2.7" - resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.7.tgz#738e0707d3128cb750dddcfe90e4610482df0f30" - integrity sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ== +nwsapi@^2.2.10: + version "2.2.12" + resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.12.tgz#fb6af5c0ec35b27b4581eb3bbad34ec9e5c696f8" + integrity sha512-qXDmcVlZV4XRtKFzddidpfVP4oMSGhga+xdMc25mv8kaLUHtgzCDhUxkrN8exkGdTlLNaXj7CV3GtON7zuGZ+w== obliterator@^1.6.1: version "1.6.1" @@ -3828,7 +3832,7 @@ punycode@^2.1.1: resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== -punycode@^2.3.0: +punycode@^2.3.1: version "2.3.1" resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.1.tgz#027422e2faec0b25e1549c3e1bd8309b9133b6e5" integrity sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg== @@ -3901,6 +3905,11 @@ rrweb-cssom@^0.6.0: resolved "https://registry.yarnpkg.com/rrweb-cssom/-/rrweb-cssom-0.6.0.tgz#ed298055b97cbddcdeb278f904857629dec5e0e1" integrity sha512-APM0Gt1KoXBz0iIkkdB/kfvGOwC4UuJFeG/c+yV7wSc7q96cG/kJ0HiYCnzivD9SB53cLV1MlHFNfOuPaadYSw== +rrweb-cssom@^0.7.0: + version "0.7.1" + resolved "https://registry.yarnpkg.com/rrweb-cssom/-/rrweb-cssom-0.7.1.tgz#c73451a484b86dd7cfb1e0b2898df4b703183e4b" + integrity sha512-TrEMa7JGdVm0UThDJSx7ddw5nVm3UJS9o9CCIZ72B1vSyEZoziDqBYP3XIoi/12lKrJR8rE3jeFHMok2F/Mnsg== + run-parallel@^1.1.9: version "1.2.0" resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" @@ -4151,7 +4160,7 @@ to-regex-range@^5.0.1: dependencies: is-number "^7.0.0" -tough-cookie@^4.0.0, tough-cookie@^4.1.2: +tough-cookie@^4.0.0: version "4.1.3" resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-4.1.3.tgz#97b9adb0728b42280aa3d814b6b999b2ff0318bf" integrity sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw== @@ -4161,6 +4170,16 @@ tough-cookie@^4.0.0, tough-cookie@^4.1.2: universalify "^0.2.0" url-parse "^1.5.3" +tough-cookie@^4.1.4: + version "4.1.4" + resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-4.1.4.tgz#945f1461b45b5a8c76821c33ea49c3ac192c1b36" + integrity sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag== + dependencies: + psl "^1.1.33" + punycode "^2.1.1" + universalify "^0.2.0" + url-parse "^1.5.3" + tr46@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/tr46/-/tr46-2.1.0.tgz#fa87aa81ca5d5941da8cbf1f9b749dc969a4e240" @@ -4168,12 +4187,12 @@ tr46@^2.1.0: dependencies: punycode "^2.1.1" -tr46@^4.1.1: - version "4.1.1" - resolved "https://registry.yarnpkg.com/tr46/-/tr46-4.1.1.tgz#281a758dcc82aeb4fe38c7dfe4d11a395aac8469" - integrity sha512-2lv/66T7e5yNyhAAC4NaKe5nVavzuGJQVVtRYLyQ2OI8tsJ61PMLlelehb0wi2Hx6+hT/OJUWZcw8MjlSRnxvw== +tr46@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/tr46/-/tr46-5.0.0.tgz#3b46d583613ec7283020d79019f1335723801cec" + integrity sha512-tk2G5R2KRwBd+ZN0zaEXpmzdKyOYksXwywulIX95MBODjSzMIuQnQ3m8JxgbhnL1LeVo7lqQKsYa1O3Htl7K5g== dependencies: - punycode "^2.3.0" + punycode "^2.3.1" ts-jest@^27.1.3: version "27.1.3" @@ -4189,12 +4208,7 @@ ts-jest@^27.1.3: semver "7.x" yargs-parser "20.x" -tslib@^1.11.1: - version "1.14.1" - resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" - integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== - -tslib@^2.1.0, tslib@^2.3.1, tslib@^2.5.0, tslib@^2.6.2: +tslib@^2.1.0, tslib@^2.5.0, tslib@^2.6.2: version "2.6.2" resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.2.tgz#703ac29425e7b37cd6fd456e92404d46d1f3e4ae" integrity sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q== @@ -4279,12 +4293,12 @@ w3c-xmlserializer@^2.0.0: dependencies: xml-name-validator "^3.0.0" -w3c-xmlserializer@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/w3c-xmlserializer/-/w3c-xmlserializer-4.0.0.tgz#aebdc84920d806222936e3cdce408e32488a3073" - integrity sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw== +w3c-xmlserializer@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/w3c-xmlserializer/-/w3c-xmlserializer-5.0.0.tgz#f925ba26855158594d907313cedd1476c5967f6c" + integrity sha512-o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA== dependencies: - xml-name-validator "^4.0.0" + xml-name-validator "^5.0.0" walker@^1.0.7: version "1.0.8" @@ -4315,10 +4329,10 @@ whatwg-encoding@^1.0.5: dependencies: iconv-lite "0.4.24" -whatwg-encoding@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-2.0.0.tgz#e7635f597fd87020858626805a2729fa7698ac53" - integrity sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg== +whatwg-encoding@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-3.1.1.tgz#d0f4ef769905d426e1688f3e34381a99b60b76e5" + integrity sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ== dependencies: iconv-lite "0.6.3" @@ -4327,17 +4341,17 @@ whatwg-mimetype@^2.3.0: resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz#3d4b1e0312d2079879f826aff18dbeeca5960fbf" integrity sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g== -whatwg-mimetype@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-3.0.0.tgz#5fa1a7623867ff1af6ca3dc72ad6b8a4208beba7" - integrity sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q== +whatwg-mimetype@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-4.0.0.tgz#bc1bf94a985dc50388d54a9258ac405c3ca2fc0a" + integrity sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg== -whatwg-url@^12.0.0, whatwg-url@^12.0.1: - version "12.0.1" - resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-12.0.1.tgz#fd7bcc71192e7c3a2a97b9a8d6b094853ed8773c" - integrity sha512-Ed/LrqB8EPlGxjS+TrsXcpUond1mhccS3pchLhzSgPCnTimUCKj3IZE75pAs5m6heB2U2TMerKFUXheyHY+VDQ== +whatwg-url@^14.0.0: + version "14.0.0" + resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-14.0.0.tgz#00baaa7fd198744910c4b1ef68378f2200e4ceb6" + integrity sha512-1lfMEm2IEr7RIV+f4lUNPOqfFL+pO+Xw3fJSqmjX9AbXcXcYOkCe1P6+9VBZB6n94af16NfZf+sSk0JCBZC9aw== dependencies: - tr46 "^4.1.1" + tr46 "^5.0.0" webidl-conversions "^7.0.0" whatwg-url@^8.0.0, whatwg-url@^8.5.0: @@ -4385,25 +4399,20 @@ write-file-atomic@^3.0.0: signal-exit "^3.0.2" typedarray-to-buffer "^3.1.5" -ws@^7.4.6: - version "7.5.6" - resolved "https://registry.yarnpkg.com/ws/-/ws-7.5.6.tgz#e59fc509fb15ddfb65487ee9765c5a51dec5fe7b" - integrity sha512-6GLgCqo2cy2A2rjCNFlxQS6ZljG/coZfZXclldI8FB/1G3CCI36Zd8xy2HrFVACi8tfk5XrgLQEk+P0Tnz9UcA== - -ws@^8.13.0: - version "8.16.0" - resolved "https://registry.yarnpkg.com/ws/-/ws-8.16.0.tgz#d1cd774f36fbc07165066a60e40323eab6446fd4" - integrity sha512-HS0c//TP7Ina87TfiPUz1rQzMhHrl/SG2guqRcTOIUYD2q8uhUdNHZYJUaQ8aTGPzCh+c6oawMKW35nFl1dxyQ== +ws@^7.4.6, ws@^8.17.0, ws@^8.18.0: + version "8.18.0" + resolved "https://registry.yarnpkg.com/ws/-/ws-8.18.0.tgz#0d7505a6eafe2b0e712d232b42279f53bc289bbc" + integrity sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw== xml-name-validator@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a" integrity sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw== -xml-name-validator@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-4.0.0.tgz#79a006e2e63149a8600f15430f0a4725d1524835" - integrity sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw== +xml-name-validator@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-5.0.0.tgz#82be9b957f7afdacf961e5980f1bf227c0bf7673" + integrity sha512-EvGK8EJ3DhaHfbRlETOWAS5pO9MZITeauHKJyb8wyajUfQUenkIg2MvLDTZ4T/TgIcm3HU0TFBgWWboAZ30UHg== xmlchars@^2.2.0: version "2.2.0" diff --git a/services/carts-bigmac-streams/handlers/configureConnectors.js b/services/carts-bigmac-streams/handlers/configureConnectors.js deleted file mode 100644 index 538e6faef..000000000 --- a/services/carts-bigmac-streams/handlers/configureConnectors.js +++ /dev/null @@ -1,102 +0,0 @@ -/* eslint-disable no-console */ -var { - ECSClient, - ListTasksCommand, - DescribeTasksCommand, -} = require("@aws-sdk/client-ecs"); -var lodash = require("lodash"); -var http = require("http"); - -const connectors = [ - { - name: `${process.env.connectorPrefix}sink.lambda.enrollmentcounts`, - config: { - "tasks.max": "1", - "connector.class": - "com.nordstrom.kafka.connect.lambda.LambdaSinkConnector", - topics: process.env.sinkTopics, - "key.converter": "org.apache.kafka.connect.storage.StringConverter", - "value.converter": "org.apache.kafka.connect.storage.StringConverter", - "aws.region": process.env.sinkFunctionRegion, - "aws.lambda.function.arn": process.env.sinkFunctionArn, - "aws.lambda.batch.enabled": "false", - "aws.credentials.provider.class": - " com.amazonaws.auth.DefaultAWSCredentialsProviderChain", - }, - }, -]; - -// eslint-disable-next-line no-unused-vars -function myHandler(event, context, callback) { - console.log("Received event:", JSON.stringify(event, null, 2)); - var ecsClient = new ECSClient(); - var listParams = { - cluster: process.env.cluster, - }; - ecsClient - .send(new ListTasksCommand(listParams)) - .then(function (taskArnsResult) { - var describeParams = { - cluster: process.env.cluster, - tasks: taskArnsResult.taskArns, - }; - return ecsClient.send(new DescribeTasksCommand(describeParams)); - }) - .then(function (describeResult) { - describeResult.tasks.forEach((task) => { - var ip = lodash.filter( - task.attachments[0].details, - (x) => x.name === "privateIPv4Address" - )[0].value; - console.log(`Configuring connector on worker: ${ip}`); - connectors.forEach(function (config) { - //console.log(`Configuring connector with config: ${JSON.stringify(config, null, 2)}`); - putConnectorConfig(ip, config, function (res) { - console.log(res); - }); - }); - }); - }) - .catch(function (err) { - console.log(err, err.stack); - }); -} - -function putConnectorConfig(workerIp, config, callback) { - var retry = function (e) { - console.log("Got error: " + e); - setTimeout(function () { - putConnectorConfig(workerIp, config, callback); - }, 5000); - }; - - var options = { - hostname: workerIp, - port: 8083, - path: `/connectors/${config.name}/config`, - method: "PUT", - headers: { - "Content-Type": "application/json", - }, - }; - - const req = http - .request(options, (res) => { - console.log(`statusCode: ${res.statusCode}`); - if (res.statusCode == "404") { - retry.call(`${res.statusCode}`); - } - res.on("data", (d) => { - console.log(d.toString("utf-8")); - }); - }) - .on("error", retry); - // eslint-disable-next-line no-unused-vars - req.setTimeout(5000, function (thing) { - this.socket.destroy(); - }); - req.write(JSON.stringify(config.config)); - req.end(); -} - -exports.handler = myHandler; diff --git a/services/carts-bigmac-streams/handlers/sinkEnrollmentCounts.js b/services/carts-bigmac-streams/handlers/sinkEnrollmentCounts.js index 77bb7ad93..d5bb4500b 100644 --- a/services/carts-bigmac-streams/handlers/sinkEnrollmentCounts.js +++ b/services/carts-bigmac-streams/handlers/sinkEnrollmentCounts.js @@ -14,47 +14,55 @@ const { * @param {*} _callback */ async function myHandler(event, _context, _callback) { - const json = JSON.parse(event.value); + const sedsTopicKey = `${process.env.sedsTopic}-0`; + if (!event?.records?.[sedsTopicKey]) { + return; + } + const records = event.records[sedsTopicKey]; const currentYear = getReportingYear(); const dynamoClient = buildClient(); - if ( - json.NewImage.enrollmentCounts && - json.NewImage.enrollmentCounts.year >= currentYear - 1 && - json.NewImage.quarter === 4 - ) { - try { - // eslint-disable-next-line no-console - console.log("Sink message received", json); - const indexToUpdate = - json.NewImage.enrollmentCounts.year === currentYear ? 2 : 1; - let typeOfEnrollment = "Medicaid Expansion CHIP"; - let typeKey = "medicaid_exp_chip"; - if (json.NewImage.enrollmentCounts.type === "separate") { - typeOfEnrollment = "Separate CHIP"; - typeKey = "separate_chip"; - } - const stateId = json.NewImage.state_id; - const createdTime = new Date().toLocaleString(); + for (const record of records) { + const decodedValue = atob(record.value); + const value = JSON.parse(decodedValue); + if ( + value.NewImage.enrollmentCounts && + value.NewImage.enrollmentCounts.year >= currentYear - 1 && + value.NewImage.quarter === 4 + ) { + try { + // eslint-disable-next-line no-console + console.log("Sink message received", value); + const indexToUpdate = + value.NewImage.enrollmentCounts.year === currentYear ? 2 : 1; + let typeOfEnrollment = "Medicaid Expansion CHIP"; + let typeKey = "medicaid_exp_chip"; + if (value.NewImage.enrollmentCounts.type === "separate") { + typeOfEnrollment = "Separate CHIP"; + typeKey = "separate_chip"; + } + const stateId = value.NewImage.state_id; + const createdTime = new Date().toLocaleString(); - const pk = `${stateId}-${currentYear}`; - const entryKey = `${typeKey}-${indexToUpdate}`; + const pk = `${stateId}-${currentYear}`; + const entryKey = `${typeKey}-${indexToUpdate}`; - const enrollmentEntry = { - filterId: `${currentYear}-02`, - typeOfEnrollment, - indexToUpdate, - stateId, - yearToModify: currentYear, - enrollmentCount: json.NewImage.enrollmentCounts.count, - createdTime, - lastSynced: json.NewImage.lastSynced, - }; + const enrollmentEntry = { + filterId: `${currentYear}-02`, + typeOfEnrollment, + indexToUpdate, + stateId, + yearToModify: currentYear, + enrollmentCount: value.NewImage.enrollmentCounts.count, + createdTime, + lastSynced: value.NewImage.lastSynced ?? "", + }; - await updateEnrollment(pk, entryKey, enrollmentEntry, dynamoClient); - } catch (error) { - // eslint-disable-next-line no-console - console.log(error); + await updateEnrollment(pk, entryKey, enrollmentEntry, dynamoClient); + } catch (error) { + // eslint-disable-next-line no-console + console.log(error); + } } } } diff --git a/services/carts-bigmac-streams/package.json b/services/carts-bigmac-streams/package.json index 4e3566a8e..c31df29f2 100644 --- a/services/carts-bigmac-streams/package.json +++ b/services/carts-bigmac-streams/package.json @@ -3,13 +3,9 @@ "version": "1.0.0", "description": "", "dependencies": { - "@aws-sdk/client-dynamodb": "^3.596.0", - "@aws-sdk/client-ecs": "^3.596.0", - "@aws-sdk/lib-dynamodb": "^3.596.0", - "@aws-sdk/util-dynamodb": "^3.596.0", - "kafkajs": "^1.15.0", - "lodash": "^4.17.21", - "uuid": "^8.3.2" - }, - "devDependencies": {} + "@aws-sdk/client-dynamodb": "^3.621.0", + "@aws-sdk/lib-dynamodb": "^3.621.0", + "@aws-sdk/util-dynamodb": "^3.621.0", + "kafkajs": "^1.15.0" + } } diff --git a/services/carts-bigmac-streams/serverless.yml b/services/carts-bigmac-streams/serverless.yml index 2738c7ed2..2fb4525ea 100644 --- a/services/carts-bigmac-streams/serverless.yml +++ b/services/carts-bigmac-streams/serverless.yml @@ -8,7 +8,6 @@ package: plugins: - serverless-bundle - serverless-dotenv-plugin - - serverless-plugin-scripts - serverless-online - serverless-iam-helper - serverless-s3-bucket-helper @@ -19,28 +18,26 @@ custom: stage: ${opt:stage, self:provider.stage} region: ${opt:region, self:provider.region} serverlessTerminationProtection: - stages: # This is a list of common names for important envs that should not be destroyed. You can remove the stage names your project doesn't use; this list is meant to be inclusive. - - master + stages: + - main - val - production - - develop - - main - - impl - - prod - kafkaConnectImage: ${ssm:/configuration/${self:custom.stage}/kafka_connect_image, ssm:/configuration/default/kafka_connect_image,"confluentinc/cp-kafka-connect:6.2.0"} + bootstrapBroker1: ${ssm:/configuration/default/bigmac/bootstrapBroker1} + bootstrapBroker2: ${ssm:/configuration/default/bigmac/bootstrapBroker2} + bootstrapBroker3: ${ssm:/configuration/default/bigmac/bootstrapBroker3} bootstrapBrokerStringTls: ${ssm:/configuration/${self:custom.stage}/bigmac/bootstrapBrokerStringTls, ssm:/configuration/default/bigmac/bootstrapBrokerStringTls} vpcId: ${ssm:/configuration/${self:custom.stage}/vpc/id, ssm:/configuration/default/vpc/id} + privateSubnetA: ${ssm:/configuration/${self:custom.stage}/vpc/subnets/private/a/id, ssm:/configuration/default/vpc/subnets/private/a/id} + privateSubnetB: ${ssm:/configuration/${self:custom.stage}/vpc/subnets/private/b/id, ssm:/configuration/default/vpc/subnets/private/b/id} + privateSubnetC: ${ssm:/configuration/${self:custom.stage}/vpc/subnets/private/c/id, ssm:/configuration/default/vpc/subnets/private/c/id} privateSubnets: - - ${ssm:/configuration/${self:custom.stage}/vpc/subnets/private/a/id, ssm:/configuration/default/vpc/subnets/private/a/id} - - ${ssm:/configuration/${self:custom.stage}/vpc/subnets/private/b/id, ssm:/configuration/default/vpc/subnets/private/b/id} - - ${ssm:/configuration/${self:custom.stage}/vpc/subnets/private/c/id, ssm:/configuration/default/vpc/subnets/private/c/id} + - ${self:custom.privateSubnetA} + - ${self:custom.privateSubnetB} + - ${self:custom.privateSubnetC} stageEnrollmentCountsTableName: ${env:stageEnrollmentCountsTableName, cf:database-${self:custom.stage}.StageEnrollmentCountsTableName} stateStatusTableStreamArn: ${env:stateStatusTableStreamArn, cf:database-${self:custom.stage}.StateStatusTableStreamArn} sectionTableStreamArn: ${env:sectionTableStreamArn, cf:database-${self:custom.stage}.SectionTableStreamArn} - scripts: - hooks: - deploy:finalize: | - aws lambda invoke --region ${self:provider.region} --function-name ${self:service}-${self:custom.stage}-configureConnectors --invocation-type RequestResponse /dev/null + sedsTopic: "aws.mdct.seds.cdc.state-forms.v0" provider: name: aws @@ -54,15 +51,22 @@ provider: path: ${ssm:/configuration/${self:custom.stage}/iam/path, ssm:/configuration/default/iam/path, "/"} permissionsBoundary: ${ssm:/configuration/${self:custom.stage}/iam/permissionsBoundaryPolicy, ssm:/configuration/default/iam/permissionsBoundaryPolicy, ""} statements: + - Effect: "Allow" + Action: + - logs:CreateLogGroup + - logs:CreateLogStream + - logs:PutLogEvents + Resource: "arn:aws:logs:*:*:*" + - Effect: "Allow" + Action: + - "ec2:DescribeNetworkInterfaces" + - "ec2:DescribeSecurityGroups" + - "ec2:DescribeVpcs" + Resource: "*" - Effect: "Allow" Action: - dynamodb:DescribeTable - - dynamodb:Query - - dynamodb:Scan - - dynamodb:GetItem - - dynamodb:PutItem - dynamodb:UpdateItem - - dynamodb:DeleteItem Resource: "*" - Effect: "Allow" Action: @@ -76,30 +80,11 @@ provider: - ${self:custom.sectionTableStreamArn} functions: - configureConnectors: - handler: handlers/configureConnectors.handler - role: LambdaConfigureConnectorsRole - environment: - cluster: !Ref KafkaConnectCluster - connectorPrefix: carts-${self:custom.stage}- - sinkTopics: aws.mdct.seds.cdc.state-forms.v0 - sinkFunctionArn: !GetAtt SinkEnrollmentCountsLambdaFunction.Arn - sinkFunctionRegion: ${self:custom.region} - BOOTSTRAP_BROKER_STRING_TLS: ${self:custom.bootstrapBrokerStringTls} - STAGE: ${self:custom.stage} - maximumRetryAttempts: 2 - timeout: 120 - vpc: - securityGroupIds: - - Ref: LambdaConfigureConnectorsSecurityGroup - subnetIds: ${self:custom.privateSubnets} sinkEnrollmentCounts: handler: handlers/sinkEnrollmentCounts.handler - role: SinkEnrollmentCountsRole environment: - BOOTSTRAP_BROKER_STRING_TLS: ${self:custom.bootstrapBrokerStringTls} - STAGE: ${self:custom.stage} stageEnrollmentCountsTableName: ${self:custom.stageEnrollmentCountsTableName} + sedsTopic: ${self:custom.sedsTopic} maximumRetryAttempts: 2 timeout: 120 vpc: @@ -139,251 +124,40 @@ resources: - "" - ${self:provider.iam.role.permissionsBoundary} Resources: - KafkaConnectWorkerLogGroup: - Type: "AWS::Logs::LogGroup" - Properties: - LogGroupName: /aws/fargate/${self:service}-${self:custom.stage}-kafka-connect - KafkaConnectWorkerSecurityGroup: + LambdaConfigureConnectorsSecurityGroup: Type: AWS::EC2::SecurityGroup Properties: - GroupDescription: Security Group for the Fargate Connect Workers. + GroupDescription: Security Group for configuring the connector. VpcId: ${self:custom.vpcId} - KafkaConnectWorkerSecurityGroupIngressLambda: + LambdaSecurityGroupIngressCluster: Type: AWS::EC2::SecurityGroupIngress Properties: - GroupId: !Sub "${KafkaConnectWorkerSecurityGroup}" + GroupId: !Sub "${LambdaConfigureConnectorsSecurityGroup}" IpProtocol: tcp FromPort: 8083 ToPort: 8083 SourceSecurityGroupId: !Sub "${LambdaConfigureConnectorsSecurityGroup}" - KafkaConnectWorkerSecurityGroupIngressCluster: - Type: AWS::EC2::SecurityGroupIngress - Properties: - GroupId: !Sub "${KafkaConnectWorkerSecurityGroup}" - IpProtocol: tcp - FromPort: 8083 - ToPort: 8083 - SourceSecurityGroupId: !Sub "${KafkaConnectWorkerSecurityGroup}" - KafkaConnectWorkerRole: - Type: "AWS::IAM::Role" - Properties: - AssumeRolePolicyDocument: - Version: "2012-10-17" - Statement: - - Effect: "Allow" - Principal: - Service: - - "ecs.amazonaws.com" - - "ecs-tasks.amazonaws.com" - Action: "sts:AssumeRole" - Path: ${self:provider.iam.role.path} - PermissionsBoundary: - Fn::If: - - CreatePermissionsBoundary - - ${self:provider.iam.role.permissionsBoundary} - - !Ref AWS::NoValue - ManagedPolicyArns: - - arn:aws:iam::aws:policy/service-role/AmazonECSTaskExecutionRolePolicy - Policies: - - PolicyName: "LambdaRolePolicy" - PolicyDocument: - Version: "2012-10-17" - Statement: - - Effect: "Allow" - Action: - - "lambda:*" - Resource: !GetAtt SinkEnrollmentCountsLambdaFunction.Arn - KafkaConnectWorkerTaskDefinition: - Type: "AWS::ECS::TaskDefinition" - Properties: - ContainerDefinitions: - - Name: ${self:service}-${self:custom.stage}-worker - Image: ${self:custom.kafkaConnectImage} - Memory: 4096 - Cpu: 2048 - Command: - - bash - - "-c" - - | - export CONNECT_REST_HOST_NAME=`curl $ECS_CONTAINER_METADATA_URI_V4 | sed -e 's/.*IPv4Addresses":\["\(.*\)"\],"AttachmentIndex.*/\1/'` && - export CONNECT_REST_ADVERTISED_HOST_NAME=$CONNECT_REST_HOST_NAME && - curl -k -SL -o /etc/kafka-connect/jars/postgresql-42.2.18.jar "https://jdbc.postgresql.org/download/postgresql-42.2.18.jar" && - chmod +x /etc/kafka-connect/jars/postgresql-42.2.18.jar && - curl -k -SL -o /etc/kafka-connect/jars/kafka-connect-lambda-1.2.2.jar "https://github.com/Nordstrom/kafka-connect-lambda/releases/download/v1.2.2/kafka-connect-lambda-1.2.2.jar" && - chmod +x /etc/kafka-connect/jaras/kafka-connect-lambda-1.2.2.jar - curl -k -SL -o /etc/kafka-connect/jars/kafka-connect-jdbc-10.2.0.jar "https://packages.confluent.io/maven/io/confluent/kafka-connect-jdbc/10.2.0/kafka-connect-jdbc-10.2.0.jar" && - chmod +x /etc/kafka-connect/jars/kafka-connect-jdbc-10.2.0.jar && - /etc/confluent/docker/run - Environment: - - Name: CONNECT_BOOTSTRAP_SERVERS - Value: >- - ${self:custom.bootstrapBrokerStringTls} - - Name: CONNECT_GROUP_ID - Value: mgmt.connect.cms-carts-seds.${self:service}-${self:custom.stage} - - Name: CONNECT_CONFIG_STORAGE_TOPIC - Value: mgmt.connect.cms-carts-seds.${self:service}-${self:custom.stage}.config - - Name: CONNECT_OFFSET_STORAGE_TOPIC - Value: mgmt.connect.cms-carts-seds.${self:service}-${self:custom.stage}.offsets - - Name: CONNECT_STATUS_STORAGE_TOPIC - Value: mgmt.connect.cms-carts-seds.${self:service}-${self:custom.stage}.status - - Name: CONNECT_OFFSET_STORAGE_PARTITIONS - Value: 5 - - Name: CONNECT_STATUS_STORAGE_PARTITIONS - Value: 1 - - Name: CONNECT_KEY_CONVERTER - Value: org.apache.kafka.connect.json.JsonConverter - - Name: CONNECT_VALUE_CONVERTER - Value: org.apache.kafka.connect.json.JsonConverter - - Name: CONNECT_INTERNAL_KEY_CONVERTER - Value: org.apache.kafka.connect.json.JsonConverter - - Name: CONNECT_INTERNAL_VALUE_CONVERTER - Value: org.apache.kafka.connect.json.JsonConverter - - Name: CONNECT_PLUGIN_PATH - Value: /usr/share/java,/etc/kafka-connect/jars - - Name: CONNECT_SECURITY_PROTOCOL - Value: SSL - # Producer/Consumer configs below - # Thank you to https://github.com/confluentinc/kafka-connect-jdbc/issues/161 - - Name: CONNECT_PRODUCER_BOOTSTRAP_SERVERS - Value: >- - ${self:custom.bootstrapBrokerStringTls} - - Name: CONNECT_PRODUCER_SECURITY_PROTOCOL - Value: SSL - - Name: CONNECT_CONSUMER_BOOTSTRAP_SERVERS - Value: >- - ${self:custom.bootstrapBrokerStringTls} - - Name: CONNECT_CONSUMER_SECURITY_PROTOCOL - Value: SSL - LogConfiguration: - LogDriver: awslogs - Options: - awslogs-region: !Sub "${AWS::Region}" - awslogs-group: !Sub "${KafkaConnectWorkerLogGroup}" - awslogs-stream-prefix: fargate - Family: ${self:service}-${self:custom.stage}-kafka-connect-worker - NetworkMode: awsvpc - ExecutionRoleArn: !GetAtt KafkaConnectWorkerRole.Arn - TaskRoleArn: !GetAtt KafkaConnectWorkerRole.Arn - RequiresCompatibilities: - - FARGATE - Memory: 4GB - Cpu: 2048 - KafkaConnectCluster: - Type: "AWS::ECS::Cluster" - KafkaConnectService: - Type: "AWS::ECS::Service" + SinkEnrollmentCountsEventSourceMappingKafka: + Type: AWS::Lambda::EventSourceMapping Properties: - Cluster: !Sub "${KafkaConnectCluster}" - DeploymentConfiguration: - MaximumPercent: 100 - MinimumHealthyPercent: 0 - LaunchType: FARGATE - ServiceName: kafka-connect - DesiredCount: 1 - TaskDefinition: !Sub "${KafkaConnectWorkerTaskDefinition}" - NetworkConfiguration: - AwsvpcConfiguration: - AssignPublicIp: DISABLED - SecurityGroups: - - !Sub "${KafkaConnectWorkerSecurityGroup}" - Subnets: ${self:custom.privateSubnets} - LambdaConfigureConnectorsSecurityGroup: - Type: AWS::EC2::SecurityGroup - Properties: - GroupDescription: Security Group for configuring the connector. - VpcId: ${self:custom.vpcId} - SinkEnrollmentCountsRole: - Type: "AWS::IAM::Role" - Properties: - AssumeRolePolicyDocument: - Version: "2012-10-17" - Statement: - - Effect: "Allow" - Principal: - Service: "lambda.amazonaws.com" - Action: "sts:AssumeRole" - Path: ${self:provider.iam.role.path} - PermissionsBoundary: - Fn::If: - - CreatePermissionsBoundary - - ${self:provider.iam.role.permissionsBoundary} - - !Ref AWS::NoValue - ManagedPolicyArns: - - !Sub arn:aws:iam::aws:policy/service-role/AWSLambdaVPCAccessExecutionRole - Policies: - - PolicyName: "LambdaRolePolicy" - PolicyDocument: - Version: "2012-10-17" - Statement: - - Effect: "Allow" - Action: - - logs:CreateLogGroup - - logs:CreateLogStream - - logs:PutLogEvents - Resource: "arn:aws:logs:*:*:*" - - Effect: "Allow" - Action: - - "ec2:CreateNetworkInterface" - - "ec2:DescribeNetworkInterfaces" - - "ec2:DetachNetworkInterface" - - "ec2:DeleteNetworkInterface" - - "ec2:DescribeSecurityGroups" - Resource: "*" - - Effect: "Allow" - Action: - - dynamodb:DescribeTable - - dynamodb:Query - - dynamodb:Scan - - dynamodb:GetItem - - dynamodb:PutItem - - dynamodb:UpdateItem - - dynamodb:DeleteItem - Resource: "*" - LambdaConfigureConnectorsRole: - Type: "AWS::IAM::Role" - Properties: - AssumeRolePolicyDocument: - Version: "2012-10-17" - Statement: - - Effect: "Allow" - Principal: - Service: "lambda.amazonaws.com" - Action: "sts:AssumeRole" - Path: ${self:provider.iam.role.path} - PermissionsBoundary: - Fn::If: - - CreatePermissionsBoundary - - ${self:provider.iam.role.permissionsBoundary} - - !Ref AWS::NoValue - Policies: - - PolicyName: "LambdaRolePolicy" - PolicyDocument: - Version: "2012-10-17" - Statement: - - Effect: "Allow" - Action: - - logs:CreateLogGroup - - logs:CreateLogStream - - logs:PutLogEvents - Resource: "arn:aws:logs:*:*:*" - - Effect: "Allow" - Action: - - ec2:CreateNetworkInterface - - ec2:DeleteNetworkInterface - - ec2:DetachNetworkInterface - - ec2:DescribeNetworkInterfaces - - ec2:DescribeSecurityGroups - - ec2:DescribeSubnets - - ec2:DescribeVpcs - Resource: "*" - - Effect: "Allow" - Action: - - ecs:ListTasks - - ecs:DescribeTasks - Resource: "*" - Outputs: - KafkaConnectWorkerSecurityGroupId: - Description: | - The ID of the security group attached to the Kafka Connect cluster tasks. - This can be used by other resources to attach additional ingress rules. - Value: !Ref KafkaConnectWorkerSecurityGroup + FunctionName: !GetAtt SinkEnrollmentCountsLambdaFunction.Arn + SelfManagedEventSource: + Endpoints: + KafkaBootstrapServers: + - ${self:custom.bootstrapBroker1} + - ${self:custom.bootstrapBroker2} + - ${self:custom.bootstrapBroker3} + SelfManagedKafkaEventSourceConfig: + ConsumerGroupId: ${self:custom.project}-${self:custom.stage} + Topics: + - ${self:custom.sedsTopic} + SourceAccessConfigurations: + - Type: "VPC_SUBNET" + URI: subnet:${self:custom.privateSubnetA} + - Type: "VPC_SUBNET" + URI: subnet:${self:custom.privateSubnetB} + - Type: "VPC_SUBNET" + URI: subnet:${self:custom.privateSubnetC} + - Type: "VPC_SECURITY_GROUP" + URI: !Sub security_group:${LambdaConfigureConnectorsSecurityGroup} + MaximumBatchingWindowInSeconds: 30 diff --git a/services/carts-bigmac-streams/yarn.lock b/services/carts-bigmac-streams/yarn.lock index 691fd69b8..9d243ee50 100644 --- a/services/carts-bigmac-streams/yarn.lock +++ b/services/carts-bigmac-streams/yarn.lock @@ -2,392 +2,336 @@ # yarn lockfile v1 -"@aws-crypto/ie11-detection@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@aws-crypto/ie11-detection/-/ie11-detection-3.0.0.tgz#640ae66b4ec3395cee6a8e94ebcd9f80c24cd688" - integrity sha512-341lBBkiY1DfDNKai/wXM3aujNBkXR7tq1URPQDL9wi3AUbI80NR74uF1TXHMm7po1AcnFk8iu2S2IeU/+/A+Q== - dependencies: - tslib "^1.11.1" - -"@aws-crypto/sha256-browser@3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@aws-crypto/sha256-browser/-/sha256-browser-3.0.0.tgz#05f160138ab893f1c6ba5be57cfd108f05827766" - integrity sha512-8VLmW2B+gjFbU5uMeqtQM6Nj0/F1bro80xQXCW6CQBWgosFWXTx77aeOF5CAIAmbOK64SdMBJdNr6J41yP5mvQ== - dependencies: - "@aws-crypto/ie11-detection" "^3.0.0" - "@aws-crypto/sha256-js" "^3.0.0" - "@aws-crypto/supports-web-crypto" "^3.0.0" - "@aws-crypto/util" "^3.0.0" +"@aws-crypto/sha256-browser@5.2.0": + version "5.2.0" + resolved "https://registry.yarnpkg.com/@aws-crypto/sha256-browser/-/sha256-browser-5.2.0.tgz#153895ef1dba6f9fce38af550e0ef58988eb649e" + integrity sha512-AXfN/lGotSQwu6HNcEsIASo7kWXZ5HYWvfOmSNKDsEqC4OashTp8alTmaz+F7TC2L083SFv5RdB+qU3Vs1kZqw== + dependencies: + "@aws-crypto/sha256-js" "^5.2.0" + "@aws-crypto/supports-web-crypto" "^5.2.0" + "@aws-crypto/util" "^5.2.0" "@aws-sdk/types" "^3.222.0" "@aws-sdk/util-locate-window" "^3.0.0" - "@aws-sdk/util-utf8-browser" "^3.0.0" - tslib "^1.11.1" + "@smithy/util-utf8" "^2.0.0" + tslib "^2.6.2" -"@aws-crypto/sha256-js@3.0.0", "@aws-crypto/sha256-js@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@aws-crypto/sha256-js/-/sha256-js-3.0.0.tgz#f06b84d550d25521e60d2a0e2a90139341e007c2" - integrity sha512-PnNN7os0+yd1XvXAy23CFOmTbMaDxgxXtTKHybrJ39Y8kGzBATgBFibWJKH6BhytLI/Zyszs87xCOBNyBig6vQ== +"@aws-crypto/sha256-js@5.2.0", "@aws-crypto/sha256-js@^5.2.0": + version "5.2.0" + resolved "https://registry.yarnpkg.com/@aws-crypto/sha256-js/-/sha256-js-5.2.0.tgz#c4fdb773fdbed9a664fc1a95724e206cf3860042" + integrity sha512-FFQQyu7edu4ufvIZ+OadFpHHOt+eSTBaYaki44c+akjg7qZg9oOQeLlk77F6tSYqjDAFClrHJk9tMf0HdVyOvA== dependencies: - "@aws-crypto/util" "^3.0.0" + "@aws-crypto/util" "^5.2.0" "@aws-sdk/types" "^3.222.0" - tslib "^1.11.1" + tslib "^2.6.2" -"@aws-crypto/supports-web-crypto@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@aws-crypto/supports-web-crypto/-/supports-web-crypto-3.0.0.tgz#5d1bf825afa8072af2717c3e455f35cda0103ec2" - integrity sha512-06hBdMwUAb2WFTuGG73LSC0wfPu93xWwo5vL2et9eymgmu3Id5vFAHBbajVWiGhPO37qcsdCap/FqXvJGJWPIg== +"@aws-crypto/supports-web-crypto@^5.2.0": + version "5.2.0" + resolved "https://registry.yarnpkg.com/@aws-crypto/supports-web-crypto/-/supports-web-crypto-5.2.0.tgz#a1e399af29269be08e695109aa15da0a07b5b5fb" + integrity sha512-iAvUotm021kM33eCdNfwIN//F77/IADDSs58i+MDaOqFrVjZo9bAal0NK7HurRuWLLpF1iLX7gbWrjHjeo+YFg== dependencies: - tslib "^1.11.1" + tslib "^2.6.2" -"@aws-crypto/util@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@aws-crypto/util/-/util-3.0.0.tgz#1c7ca90c29293f0883468ad48117937f0fe5bfb0" - integrity sha512-2OJlpeJpCR48CC8r+uKVChzs9Iungj9wkZrl8Z041DWEWvyIHILYKCPNzJghKsivj+S3mLo6BVc7mBNzdxA46w== +"@aws-crypto/util@^5.2.0": + version "5.2.0" + resolved "https://registry.yarnpkg.com/@aws-crypto/util/-/util-5.2.0.tgz#71284c9cffe7927ddadac793c14f14886d3876da" + integrity sha512-4RkU9EsI6ZpBve5fseQlGNUWKMa1RLPQ1dnjnQoe07ldfIzcsGb5hC5W0Dm7u423KWzawlrpbjXBrXCEv9zazQ== dependencies: "@aws-sdk/types" "^3.222.0" - "@aws-sdk/util-utf8-browser" "^3.0.0" - tslib "^1.11.1" - -"@aws-sdk/client-dynamodb@^3.596.0": - version "3.596.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-dynamodb/-/client-dynamodb-3.596.0.tgz#a811d319632c58eecbc99f33fb386be90f8637f7" - integrity sha512-i0TB/UuZJ/+yCIDsYpVc874IypGxksU81bckNK96j4cM9BO9mitdt0gxickqnIqTwsZIZBs7RW6ANSxDi7yVxA== - dependencies: - "@aws-crypto/sha256-browser" "3.0.0" - "@aws-crypto/sha256-js" "3.0.0" - "@aws-sdk/client-sso-oidc" "3.596.0" - "@aws-sdk/client-sts" "3.596.0" - "@aws-sdk/core" "3.592.0" - "@aws-sdk/credential-provider-node" "3.596.0" - "@aws-sdk/middleware-endpoint-discovery" "3.587.0" - "@aws-sdk/middleware-host-header" "3.577.0" - "@aws-sdk/middleware-logger" "3.577.0" - "@aws-sdk/middleware-recursion-detection" "3.577.0" - "@aws-sdk/middleware-user-agent" "3.587.0" - "@aws-sdk/region-config-resolver" "3.587.0" - "@aws-sdk/types" "3.577.0" - "@aws-sdk/util-endpoints" "3.587.0" - "@aws-sdk/util-user-agent-browser" "3.577.0" - "@aws-sdk/util-user-agent-node" "3.587.0" - "@smithy/config-resolver" "^3.0.1" - "@smithy/core" "^2.2.0" - "@smithy/fetch-http-handler" "^3.0.1" - "@smithy/hash-node" "^3.0.0" - "@smithy/invalid-dependency" "^3.0.0" - "@smithy/middleware-content-length" "^3.0.0" - "@smithy/middleware-endpoint" "^3.0.1" - "@smithy/middleware-retry" "^3.0.3" - "@smithy/middleware-serde" "^3.0.0" - "@smithy/middleware-stack" "^3.0.0" - "@smithy/node-config-provider" "^3.1.0" - "@smithy/node-http-handler" "^3.0.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" - "@smithy/url-parser" "^3.0.0" + "@smithy/util-utf8" "^2.0.0" + tslib "^2.6.2" + +"@aws-sdk/client-dynamodb@^3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-dynamodb/-/client-dynamodb-3.621.0.tgz#de0a23830a742f42ed031abb745d3787b0d4e759" + integrity sha512-aczOoVyufYwBCc/zZKJOP/xwbnojKQJ6Y8O7ZAZnxMPRyZXKXpoAxmlxLfOU6GUzXqzXdvj+Ir3VBd7MWB4KuQ== + dependencies: + "@aws-crypto/sha256-browser" "5.2.0" + "@aws-crypto/sha256-js" "5.2.0" + "@aws-sdk/client-sso-oidc" "3.621.0" + "@aws-sdk/client-sts" "3.621.0" + "@aws-sdk/core" "3.621.0" + "@aws-sdk/credential-provider-node" "3.621.0" + "@aws-sdk/middleware-endpoint-discovery" "3.620.0" + "@aws-sdk/middleware-host-header" "3.620.0" + "@aws-sdk/middleware-logger" "3.609.0" + "@aws-sdk/middleware-recursion-detection" "3.620.0" + "@aws-sdk/middleware-user-agent" "3.620.0" + "@aws-sdk/region-config-resolver" "3.614.0" + "@aws-sdk/types" "3.609.0" + "@aws-sdk/util-endpoints" "3.614.0" + "@aws-sdk/util-user-agent-browser" "3.609.0" + "@aws-sdk/util-user-agent-node" "3.614.0" + "@smithy/config-resolver" "^3.0.5" + "@smithy/core" "^2.3.1" + "@smithy/fetch-http-handler" "^3.2.4" + "@smithy/hash-node" "^3.0.3" + "@smithy/invalid-dependency" "^3.0.3" + "@smithy/middleware-content-length" "^3.0.5" + "@smithy/middleware-endpoint" "^3.1.0" + "@smithy/middleware-retry" "^3.0.13" + "@smithy/middleware-serde" "^3.0.3" + "@smithy/middleware-stack" "^3.0.3" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/node-http-handler" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" + "@smithy/url-parser" "^3.0.3" "@smithy/util-base64" "^3.0.0" "@smithy/util-body-length-browser" "^3.0.0" "@smithy/util-body-length-node" "^3.0.0" - "@smithy/util-defaults-mode-browser" "^3.0.3" - "@smithy/util-defaults-mode-node" "^3.0.3" - "@smithy/util-endpoints" "^2.0.1" - "@smithy/util-middleware" "^3.0.0" - "@smithy/util-retry" "^3.0.0" + "@smithy/util-defaults-mode-browser" "^3.0.13" + "@smithy/util-defaults-mode-node" "^3.0.13" + "@smithy/util-endpoints" "^2.0.5" + "@smithy/util-middleware" "^3.0.3" + "@smithy/util-retry" "^3.0.3" "@smithy/util-utf8" "^3.0.0" - "@smithy/util-waiter" "^3.0.0" + "@smithy/util-waiter" "^3.1.2" tslib "^2.6.2" uuid "^9.0.1" -"@aws-sdk/client-ecs@^3.596.0": - version "3.596.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-ecs/-/client-ecs-3.596.0.tgz#9207f5a5b9446309d10c97e32f67e0f6f55844a4" - integrity sha512-iSEjqyViOionESw5IWSWs+WnWq0lumOTlnduNrYZ6yjid2EFj0r4epLRQ3/mpgwu4G1EB1PFVdmnivDroT9QRw== - dependencies: - "@aws-crypto/sha256-browser" "3.0.0" - "@aws-crypto/sha256-js" "3.0.0" - "@aws-sdk/client-sso-oidc" "3.596.0" - "@aws-sdk/client-sts" "3.596.0" - "@aws-sdk/core" "3.592.0" - "@aws-sdk/credential-provider-node" "3.596.0" - "@aws-sdk/middleware-host-header" "3.577.0" - "@aws-sdk/middleware-logger" "3.577.0" - "@aws-sdk/middleware-recursion-detection" "3.577.0" - "@aws-sdk/middleware-user-agent" "3.587.0" - "@aws-sdk/region-config-resolver" "3.587.0" - "@aws-sdk/types" "3.577.0" - "@aws-sdk/util-endpoints" "3.587.0" - "@aws-sdk/util-user-agent-browser" "3.577.0" - "@aws-sdk/util-user-agent-node" "3.587.0" - "@smithy/config-resolver" "^3.0.1" - "@smithy/core" "^2.2.0" - "@smithy/fetch-http-handler" "^3.0.1" - "@smithy/hash-node" "^3.0.0" - "@smithy/invalid-dependency" "^3.0.0" - "@smithy/middleware-content-length" "^3.0.0" - "@smithy/middleware-endpoint" "^3.0.1" - "@smithy/middleware-retry" "^3.0.3" - "@smithy/middleware-serde" "^3.0.0" - "@smithy/middleware-stack" "^3.0.0" - "@smithy/node-config-provider" "^3.1.0" - "@smithy/node-http-handler" "^3.0.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" - "@smithy/url-parser" "^3.0.0" +"@aws-sdk/client-sso-oidc@3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.621.0.tgz#3fa3d468fbebbd93a5f75c1d51b63cc7af3ef17b" + integrity sha512-mMjk3mFUwV2Y68POf1BQMTF+F6qxt5tPu6daEUCNGC9Cenk3h2YXQQoS4/eSyYzuBiYk3vx49VgleRvdvkg8rg== + dependencies: + "@aws-crypto/sha256-browser" "5.2.0" + "@aws-crypto/sha256-js" "5.2.0" + "@aws-sdk/core" "3.621.0" + "@aws-sdk/credential-provider-node" "3.621.0" + "@aws-sdk/middleware-host-header" "3.620.0" + "@aws-sdk/middleware-logger" "3.609.0" + "@aws-sdk/middleware-recursion-detection" "3.620.0" + "@aws-sdk/middleware-user-agent" "3.620.0" + "@aws-sdk/region-config-resolver" "3.614.0" + "@aws-sdk/types" "3.609.0" + "@aws-sdk/util-endpoints" "3.614.0" + "@aws-sdk/util-user-agent-browser" "3.609.0" + "@aws-sdk/util-user-agent-node" "3.614.0" + "@smithy/config-resolver" "^3.0.5" + "@smithy/core" "^2.3.1" + "@smithy/fetch-http-handler" "^3.2.4" + "@smithy/hash-node" "^3.0.3" + "@smithy/invalid-dependency" "^3.0.3" + "@smithy/middleware-content-length" "^3.0.5" + "@smithy/middleware-endpoint" "^3.1.0" + "@smithy/middleware-retry" "^3.0.13" + "@smithy/middleware-serde" "^3.0.3" + "@smithy/middleware-stack" "^3.0.3" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/node-http-handler" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" + "@smithy/url-parser" "^3.0.3" "@smithy/util-base64" "^3.0.0" "@smithy/util-body-length-browser" "^3.0.0" "@smithy/util-body-length-node" "^3.0.0" - "@smithy/util-defaults-mode-browser" "^3.0.3" - "@smithy/util-defaults-mode-node" "^3.0.3" - "@smithy/util-endpoints" "^2.0.1" - "@smithy/util-middleware" "^3.0.0" - "@smithy/util-retry" "^3.0.0" + "@smithy/util-defaults-mode-browser" "^3.0.13" + "@smithy/util-defaults-mode-node" "^3.0.13" + "@smithy/util-endpoints" "^2.0.5" + "@smithy/util-middleware" "^3.0.3" + "@smithy/util-retry" "^3.0.3" "@smithy/util-utf8" "^3.0.0" - "@smithy/util-waiter" "^3.0.0" tslib "^2.6.2" - uuid "^9.0.1" -"@aws-sdk/client-sso-oidc@3.596.0": - version "3.596.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.596.0.tgz#9d75619043e5f0e3d985d800c3df06d9a8a3bfeb" - integrity sha512-KnTWtKzO0N+rMdIrVwbewFp4FAvVWBV/ekCAh5w7EN+uAvBHxMoFElE2RwlcRF/gH1/F715OspPMvOxPom6bMA== - dependencies: - "@aws-crypto/sha256-browser" "3.0.0" - "@aws-crypto/sha256-js" "3.0.0" - "@aws-sdk/client-sts" "3.596.0" - "@aws-sdk/core" "3.592.0" - "@aws-sdk/credential-provider-node" "3.596.0" - "@aws-sdk/middleware-host-header" "3.577.0" - "@aws-sdk/middleware-logger" "3.577.0" - "@aws-sdk/middleware-recursion-detection" "3.577.0" - "@aws-sdk/middleware-user-agent" "3.587.0" - "@aws-sdk/region-config-resolver" "3.587.0" - "@aws-sdk/types" "3.577.0" - "@aws-sdk/util-endpoints" "3.587.0" - "@aws-sdk/util-user-agent-browser" "3.577.0" - "@aws-sdk/util-user-agent-node" "3.587.0" - "@smithy/config-resolver" "^3.0.1" - "@smithy/core" "^2.2.0" - "@smithy/fetch-http-handler" "^3.0.1" - "@smithy/hash-node" "^3.0.0" - "@smithy/invalid-dependency" "^3.0.0" - "@smithy/middleware-content-length" "^3.0.0" - "@smithy/middleware-endpoint" "^3.0.1" - "@smithy/middleware-retry" "^3.0.3" - "@smithy/middleware-serde" "^3.0.0" - "@smithy/middleware-stack" "^3.0.0" - "@smithy/node-config-provider" "^3.1.0" - "@smithy/node-http-handler" "^3.0.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" - "@smithy/url-parser" "^3.0.0" +"@aws-sdk/client-sso@3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso/-/client-sso-3.621.0.tgz#c0eefeb9adcbc6bb7c91c32070404c8c91846825" + integrity sha512-xpKfikN4u0BaUYZA9FGUMkkDmfoIP0Q03+A86WjqDWhcOoqNA1DkHsE4kZ+r064ifkPUfcNuUvlkVTEoBZoFjA== + dependencies: + "@aws-crypto/sha256-browser" "5.2.0" + "@aws-crypto/sha256-js" "5.2.0" + "@aws-sdk/core" "3.621.0" + "@aws-sdk/middleware-host-header" "3.620.0" + "@aws-sdk/middleware-logger" "3.609.0" + "@aws-sdk/middleware-recursion-detection" "3.620.0" + "@aws-sdk/middleware-user-agent" "3.620.0" + "@aws-sdk/region-config-resolver" "3.614.0" + "@aws-sdk/types" "3.609.0" + "@aws-sdk/util-endpoints" "3.614.0" + "@aws-sdk/util-user-agent-browser" "3.609.0" + "@aws-sdk/util-user-agent-node" "3.614.0" + "@smithy/config-resolver" "^3.0.5" + "@smithy/core" "^2.3.1" + "@smithy/fetch-http-handler" "^3.2.4" + "@smithy/hash-node" "^3.0.3" + "@smithy/invalid-dependency" "^3.0.3" + "@smithy/middleware-content-length" "^3.0.5" + "@smithy/middleware-endpoint" "^3.1.0" + "@smithy/middleware-retry" "^3.0.13" + "@smithy/middleware-serde" "^3.0.3" + "@smithy/middleware-stack" "^3.0.3" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/node-http-handler" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" + "@smithy/url-parser" "^3.0.3" "@smithy/util-base64" "^3.0.0" "@smithy/util-body-length-browser" "^3.0.0" "@smithy/util-body-length-node" "^3.0.0" - "@smithy/util-defaults-mode-browser" "^3.0.3" - "@smithy/util-defaults-mode-node" "^3.0.3" - "@smithy/util-endpoints" "^2.0.1" - "@smithy/util-middleware" "^3.0.0" - "@smithy/util-retry" "^3.0.0" + "@smithy/util-defaults-mode-browser" "^3.0.13" + "@smithy/util-defaults-mode-node" "^3.0.13" + "@smithy/util-endpoints" "^2.0.5" + "@smithy/util-middleware" "^3.0.3" + "@smithy/util-retry" "^3.0.3" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/client-sso@3.592.0": - version "3.592.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso/-/client-sso-3.592.0.tgz#90462e744998990079c28a083553090af9ac2902" - integrity sha512-w+SuW47jQqvOC7fonyjFjsOh3yjqJ+VpWdVrmrl0E/KryBE7ho/Wn991Buf/EiHHeJikoWgHsAIPkBH29+ntdA== - dependencies: - "@aws-crypto/sha256-browser" "3.0.0" - "@aws-crypto/sha256-js" "3.0.0" - "@aws-sdk/core" "3.592.0" - "@aws-sdk/middleware-host-header" "3.577.0" - "@aws-sdk/middleware-logger" "3.577.0" - "@aws-sdk/middleware-recursion-detection" "3.577.0" - "@aws-sdk/middleware-user-agent" "3.587.0" - "@aws-sdk/region-config-resolver" "3.587.0" - "@aws-sdk/types" "3.577.0" - "@aws-sdk/util-endpoints" "3.587.0" - "@aws-sdk/util-user-agent-browser" "3.577.0" - "@aws-sdk/util-user-agent-node" "3.587.0" - "@smithy/config-resolver" "^3.0.1" - "@smithy/core" "^2.2.0" - "@smithy/fetch-http-handler" "^3.0.1" - "@smithy/hash-node" "^3.0.0" - "@smithy/invalid-dependency" "^3.0.0" - "@smithy/middleware-content-length" "^3.0.0" - "@smithy/middleware-endpoint" "^3.0.1" - "@smithy/middleware-retry" "^3.0.3" - "@smithy/middleware-serde" "^3.0.0" - "@smithy/middleware-stack" "^3.0.0" - "@smithy/node-config-provider" "^3.1.0" - "@smithy/node-http-handler" "^3.0.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" - "@smithy/url-parser" "^3.0.0" +"@aws-sdk/client-sts@3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-sts/-/client-sts-3.621.0.tgz#2994f601790893901704c5df56c837e89f279952" + integrity sha512-707uiuReSt+nAx6d0c21xLjLm2lxeKc7padxjv92CIrIocnQSlJPxSCM7r5zBhwiahJA6MNQwmTl2xznU67KgA== + dependencies: + "@aws-crypto/sha256-browser" "5.2.0" + "@aws-crypto/sha256-js" "5.2.0" + "@aws-sdk/client-sso-oidc" "3.621.0" + "@aws-sdk/core" "3.621.0" + "@aws-sdk/credential-provider-node" "3.621.0" + "@aws-sdk/middleware-host-header" "3.620.0" + "@aws-sdk/middleware-logger" "3.609.0" + "@aws-sdk/middleware-recursion-detection" "3.620.0" + "@aws-sdk/middleware-user-agent" "3.620.0" + "@aws-sdk/region-config-resolver" "3.614.0" + "@aws-sdk/types" "3.609.0" + "@aws-sdk/util-endpoints" "3.614.0" + "@aws-sdk/util-user-agent-browser" "3.609.0" + "@aws-sdk/util-user-agent-node" "3.614.0" + "@smithy/config-resolver" "^3.0.5" + "@smithy/core" "^2.3.1" + "@smithy/fetch-http-handler" "^3.2.4" + "@smithy/hash-node" "^3.0.3" + "@smithy/invalid-dependency" "^3.0.3" + "@smithy/middleware-content-length" "^3.0.5" + "@smithy/middleware-endpoint" "^3.1.0" + "@smithy/middleware-retry" "^3.0.13" + "@smithy/middleware-serde" "^3.0.3" + "@smithy/middleware-stack" "^3.0.3" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/node-http-handler" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" + "@smithy/url-parser" "^3.0.3" "@smithy/util-base64" "^3.0.0" "@smithy/util-body-length-browser" "^3.0.0" "@smithy/util-body-length-node" "^3.0.0" - "@smithy/util-defaults-mode-browser" "^3.0.3" - "@smithy/util-defaults-mode-node" "^3.0.3" - "@smithy/util-endpoints" "^2.0.1" - "@smithy/util-middleware" "^3.0.0" - "@smithy/util-retry" "^3.0.0" + "@smithy/util-defaults-mode-browser" "^3.0.13" + "@smithy/util-defaults-mode-node" "^3.0.13" + "@smithy/util-endpoints" "^2.0.5" + "@smithy/util-middleware" "^3.0.3" + "@smithy/util-retry" "^3.0.3" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/client-sts@3.596.0": - version "3.596.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-sts/-/client-sts-3.596.0.tgz#236ed4b898265c737f860060adab422ea8ec6383" - integrity sha512-37+WQDjgmqS/YXj3vPzIVIrbXaFcZ1WXk715AMGIPBZn9Y2/wr2bmSTpX7bsMyn0G8+LxmoIxFcG7n1Gu0nvLg== - dependencies: - "@aws-crypto/sha256-browser" "3.0.0" - "@aws-crypto/sha256-js" "3.0.0" - "@aws-sdk/client-sso-oidc" "3.596.0" - "@aws-sdk/core" "3.592.0" - "@aws-sdk/credential-provider-node" "3.596.0" - "@aws-sdk/middleware-host-header" "3.577.0" - "@aws-sdk/middleware-logger" "3.577.0" - "@aws-sdk/middleware-recursion-detection" "3.577.0" - "@aws-sdk/middleware-user-agent" "3.587.0" - "@aws-sdk/region-config-resolver" "3.587.0" - "@aws-sdk/types" "3.577.0" - "@aws-sdk/util-endpoints" "3.587.0" - "@aws-sdk/util-user-agent-browser" "3.577.0" - "@aws-sdk/util-user-agent-node" "3.587.0" - "@smithy/config-resolver" "^3.0.1" - "@smithy/core" "^2.2.0" - "@smithy/fetch-http-handler" "^3.0.1" - "@smithy/hash-node" "^3.0.0" - "@smithy/invalid-dependency" "^3.0.0" - "@smithy/middleware-content-length" "^3.0.0" - "@smithy/middleware-endpoint" "^3.0.1" - "@smithy/middleware-retry" "^3.0.3" - "@smithy/middleware-serde" "^3.0.0" - "@smithy/middleware-stack" "^3.0.0" - "@smithy/node-config-provider" "^3.1.0" - "@smithy/node-http-handler" "^3.0.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" - "@smithy/url-parser" "^3.0.0" - "@smithy/util-base64" "^3.0.0" - "@smithy/util-body-length-browser" "^3.0.0" - "@smithy/util-body-length-node" "^3.0.0" - "@smithy/util-defaults-mode-browser" "^3.0.3" - "@smithy/util-defaults-mode-node" "^3.0.3" - "@smithy/util-endpoints" "^2.0.1" - "@smithy/util-middleware" "^3.0.0" - "@smithy/util-retry" "^3.0.0" - "@smithy/util-utf8" "^3.0.0" - tslib "^2.6.2" - -"@aws-sdk/core@3.592.0": - version "3.592.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/core/-/core-3.592.0.tgz#d903a3993f8ba6836480314c2a8af8b7857bb943" - integrity sha512-gLPMXR/HXDP+9gXAt58t7gaMTvRts9i6Q7NMISpkGF54wehskl5WGrbdtHJFylrlJ5BQo3XVY6i661o+EuR1wg== - dependencies: - "@smithy/core" "^2.2.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/signature-v4" "^3.0.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" - fast-xml-parser "4.2.5" - tslib "^2.6.2" - -"@aws-sdk/credential-provider-env@3.587.0": - version "3.587.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-env/-/credential-provider-env-3.587.0.tgz#40435be331773e4b1b665a1f4963518d4647505c" - integrity sha512-Hyg/5KFECIk2k5o8wnVEiniV86yVkhn5kzITUydmNGCkXdBFHMHRx6hleQ1bqwJHbBskyu8nbYamzcwymmGwmw== - dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/property-provider" "^3.1.0" - "@smithy/types" "^3.0.0" - tslib "^2.6.2" - -"@aws-sdk/credential-provider-http@3.596.0": - version "3.596.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-http/-/credential-provider-http-3.596.0.tgz#ad81565e37f84c860a7a5f82ff256a962397816c" - integrity sha512-nnmvEsz1KJgRmfSZJPWuzbxPRXu8Y+/78Ifa1jY3fQKSKdEJfXMDsjPljJvMDBl4dZ8pf5Hwx+S/ONnMEDwYEA== - dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/fetch-http-handler" "^3.0.1" - "@smithy/node-http-handler" "^3.0.0" - "@smithy/property-provider" "^3.1.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" - "@smithy/util-stream" "^3.0.1" - tslib "^2.6.2" - -"@aws-sdk/credential-provider-ini@3.596.0": - version "3.596.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.596.0.tgz#2e5155b52590dbc768a2775e0b5266287a00d8ca" - integrity sha512-c7PLtd7GbnOVAc5sk3sVlHxLvEsM8RF96rsBGlRo4AVpil/lXLKyNv9VarS4w/ZZZoRbJRyZ+m92PjNcLvpTDQ== - dependencies: - "@aws-sdk/credential-provider-env" "3.587.0" - "@aws-sdk/credential-provider-http" "3.596.0" - "@aws-sdk/credential-provider-process" "3.587.0" - "@aws-sdk/credential-provider-sso" "3.592.0" - "@aws-sdk/credential-provider-web-identity" "3.587.0" - "@aws-sdk/types" "3.577.0" - "@smithy/credential-provider-imds" "^3.1.0" - "@smithy/property-provider" "^3.1.0" - "@smithy/shared-ini-file-loader" "^3.1.0" - "@smithy/types" "^3.0.0" - tslib "^2.6.2" - -"@aws-sdk/credential-provider-node@3.596.0": - version "3.596.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-node/-/credential-provider-node-3.596.0.tgz#d70bce8de4f1849558215117d73f7433bfdcdc24" - integrity sha512-F4MLyXpQyie1AnJS9n7TIRL0aF7YH8tKMIJXDsM5OXpSZi2en+yR6SzsxvHf5dwS2Ga8LUdEJyiyS2NoebaJGA== - dependencies: - "@aws-sdk/credential-provider-env" "3.587.0" - "@aws-sdk/credential-provider-http" "3.596.0" - "@aws-sdk/credential-provider-ini" "3.596.0" - "@aws-sdk/credential-provider-process" "3.587.0" - "@aws-sdk/credential-provider-sso" "3.592.0" - "@aws-sdk/credential-provider-web-identity" "3.587.0" - "@aws-sdk/types" "3.577.0" - "@smithy/credential-provider-imds" "^3.1.0" - "@smithy/property-provider" "^3.1.0" - "@smithy/shared-ini-file-loader" "^3.1.0" - "@smithy/types" "^3.0.0" - tslib "^2.6.2" - -"@aws-sdk/credential-provider-process@3.587.0": - version "3.587.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-process/-/credential-provider-process-3.587.0.tgz#1e5cc562a68438a77f464adc0493b02e04dd3ea1" - integrity sha512-V4xT3iCqkF8uL6QC4gqBJg/2asd/damswP1h9HCfqTllmPWzImS+8WD3VjgTLw5b0KbTy+ZdUhKc0wDnyzkzxg== - dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/property-provider" "^3.1.0" - "@smithy/shared-ini-file-loader" "^3.1.0" - "@smithy/types" "^3.0.0" - tslib "^2.6.2" - -"@aws-sdk/credential-provider-sso@3.592.0": - version "3.592.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.592.0.tgz#340649b4f5b4fbcb816f248089979d7d38ce96d3" - integrity sha512-fYFzAdDHKHvhtufPPtrLdSv8lO6GuW3em6n3erM5uFdpGytNpjXvr3XGokIsuXcNkETAY/Xihg+G9ksNE8WJxQ== - dependencies: - "@aws-sdk/client-sso" "3.592.0" - "@aws-sdk/token-providers" "3.587.0" - "@aws-sdk/types" "3.577.0" - "@smithy/property-provider" "^3.1.0" - "@smithy/shared-ini-file-loader" "^3.1.0" - "@smithy/types" "^3.0.0" - tslib "^2.6.2" - -"@aws-sdk/credential-provider-web-identity@3.587.0": - version "3.587.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.587.0.tgz#daa41e3cc9309594327056e431b8065145c5297a" - integrity sha512-XqIx/I2PG7kyuw3WjAP9wKlxy8IvFJwB8asOFT1xPFoVfZYKIogjG9oLP5YiRtfvDkWIztHmg5MlVv3HdJDGRw== - dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/property-provider" "^3.1.0" - "@smithy/types" "^3.0.0" +"@aws-sdk/core@3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/core/-/core-3.621.0.tgz#e38c56c3ce0c819ca1185eaabcb98412429aaca3" + integrity sha512-CtOwWmDdEiINkGXD93iGfXjN0WmCp9l45cDWHHGa8lRgEDyhuL7bwd/pH5aSzj0j8SiQBG2k0S7DHbd5RaqvbQ== + dependencies: + "@smithy/core" "^2.3.1" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/signature-v4" "^4.1.0" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" + "@smithy/util-middleware" "^3.0.3" + fast-xml-parser "4.4.1" + tslib "^2.6.2" + +"@aws-sdk/credential-provider-env@3.620.1": + version "3.620.1" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-env/-/credential-provider-env-3.620.1.tgz#d4692c49a65ebc11dae3f7f8b053fee9268a953c" + integrity sha512-ExuILJ2qLW5ZO+rgkNRj0xiAipKT16Rk77buvPP8csR7kkCflT/gXTyzRe/uzIiETTxM7tr8xuO9MP/DQXqkfg== + dependencies: + "@aws-sdk/types" "3.609.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + +"@aws-sdk/credential-provider-http@3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-http/-/credential-provider-http-3.621.0.tgz#5f944bf548f203d842cf71a5792f73c205544627" + integrity sha512-/jc2tEsdkT1QQAI5Dvoci50DbSxtJrevemwFsm0B73pwCcOQZ5ZwwSdVqGsPutzYzUVx3bcXg3LRL7jLACqRIg== + dependencies: + "@aws-sdk/types" "3.609.0" + "@smithy/fetch-http-handler" "^3.2.4" + "@smithy/node-http-handler" "^3.1.4" + "@smithy/property-provider" "^3.1.3" + "@smithy/protocol-http" "^4.1.0" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" + "@smithy/util-stream" "^3.1.3" + tslib "^2.6.2" + +"@aws-sdk/credential-provider-ini@3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.621.0.tgz#bda2365f88fee40e3ae067b08bf484106c339222" + integrity sha512-0EWVnSc+JQn5HLnF5Xv405M8n4zfdx9gyGdpnCmAmFqEDHA8LmBdxJdpUk1Ovp/I5oPANhjojxabIW5f1uU0RA== + dependencies: + "@aws-sdk/credential-provider-env" "3.620.1" + "@aws-sdk/credential-provider-http" "3.621.0" + "@aws-sdk/credential-provider-process" "3.620.1" + "@aws-sdk/credential-provider-sso" "3.621.0" + "@aws-sdk/credential-provider-web-identity" "3.621.0" + "@aws-sdk/types" "3.609.0" + "@smithy/credential-provider-imds" "^3.2.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/shared-ini-file-loader" "^3.1.4" + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + +"@aws-sdk/credential-provider-node@3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-node/-/credential-provider-node-3.621.0.tgz#9cc5052760a9f9d70d70f12ddbdbf0d59bf13a47" + integrity sha512-4JqpccUgz5Snanpt2+53hbOBbJQrSFq7E1sAAbgY6BKVQUsW5qyXqnjvSF32kDeKa5JpBl3bBWLZl04IadcPHw== + dependencies: + "@aws-sdk/credential-provider-env" "3.620.1" + "@aws-sdk/credential-provider-http" "3.621.0" + "@aws-sdk/credential-provider-ini" "3.621.0" + "@aws-sdk/credential-provider-process" "3.620.1" + "@aws-sdk/credential-provider-sso" "3.621.0" + "@aws-sdk/credential-provider-web-identity" "3.621.0" + "@aws-sdk/types" "3.609.0" + "@smithy/credential-provider-imds" "^3.2.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/shared-ini-file-loader" "^3.1.4" + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + +"@aws-sdk/credential-provider-process@3.620.1": + version "3.620.1" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-process/-/credential-provider-process-3.620.1.tgz#10387cf85400420bb4bbda9cc56937dcc6d6d0ee" + integrity sha512-hWqFMidqLAkaV9G460+1at6qa9vySbjQKKc04p59OT7lZ5cO5VH5S4aI05e+m4j364MBROjjk2ugNvfNf/8ILg== + dependencies: + "@aws-sdk/types" "3.609.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/shared-ini-file-loader" "^3.1.4" + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + +"@aws-sdk/credential-provider-sso@3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.621.0.tgz#710f413708cb372f9f94e8eb9726cf263ffd83e3" + integrity sha512-Kza0jcFeA/GEL6xJlzR2KFf1PfZKMFnxfGzJzl5yN7EjoGdMijl34KaRyVnfRjnCWcsUpBWKNIDk9WZVMY9yiw== + dependencies: + "@aws-sdk/client-sso" "3.621.0" + "@aws-sdk/token-providers" "3.614.0" + "@aws-sdk/types" "3.609.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/shared-ini-file-loader" "^3.1.4" + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + +"@aws-sdk/credential-provider-web-identity@3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.621.0.tgz#b25878c0a05dad60cd5f91e7e5a31a145c2f14be" + integrity sha512-w7ASSyfNvcx7+bYGep3VBgC3K6vEdLmlpjT7nSIHxxQf+WSdvy+HynwJosrpZax0sK5q0D1Jpn/5q+r5lwwW6w== + dependencies: + "@aws-sdk/types" "3.609.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@aws-sdk/endpoint-cache@3.572.0": @@ -398,97 +342,97 @@ mnemonist "0.38.3" tslib "^2.6.2" -"@aws-sdk/lib-dynamodb@^3.596.0": - version "3.596.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/lib-dynamodb/-/lib-dynamodb-3.596.0.tgz#bca9eca213129fc1027f9eb0b5e3301b4360af11" - integrity sha512-nTl1lsVRG1iQeY2dIyIWbPrvKepSpE/doL9ET3hAzjTClm81mpvYs3XIVtQsbcmjkgQ62GUrym6D1nk1LcIq+A== +"@aws-sdk/lib-dynamodb@^3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/lib-dynamodb/-/lib-dynamodb-3.621.0.tgz#f8c320af1b286f2827d3be97aaffc571fa4bbfeb" + integrity sha512-RJJwaR15BLSTtegf2kgJjlJofvxeR+0Jm0rnEbJmRZ/HZhjow1LawrMbCR0YxfcWKUMsDw9tp8BDkLlrH1+RJQ== dependencies: - "@aws-sdk/util-dynamodb" "3.596.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" + "@aws-sdk/util-dynamodb" "3.621.0" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@aws-sdk/middleware-endpoint-discovery@3.587.0": - version "3.587.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-endpoint-discovery/-/middleware-endpoint-discovery-3.587.0.tgz#da69990f4810f85e8afe944eb3e4f695e7f9580f" - integrity sha512-/FCTOwO2/GtGx31Y0aO149aXw/LbyyYFJp82fQQCR0eff9RilJ5ViQCdCpcf9zf0ZIlvqGy9aXVutBQU83wlGg== +"@aws-sdk/middleware-endpoint-discovery@3.620.0": + version "3.620.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-endpoint-discovery/-/middleware-endpoint-discovery-3.620.0.tgz#45acd6cf2a77ceaf736f2758274c383838c8584a" + integrity sha512-T6kuydHBF4BPP5CVH53Fze7c2b9rqxWP88XrGtmNMXXdY4sXur1v/itGdS2l3gqRjxKo0LsmjmuQm9zL4vGneQ== dependencies: "@aws-sdk/endpoint-cache" "3.572.0" - "@aws-sdk/types" "3.577.0" - "@smithy/node-config-provider" "^3.1.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@aws-sdk/middleware-host-header@3.577.0": - version "3.577.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-host-header/-/middleware-host-header-3.577.0.tgz#a3fc626d409ec850296740478c64ef5806d8b878" - integrity sha512-9ca5MJz455CODIVXs0/sWmJm7t3QO4EUa1zf8pE8grLpzf0J94bz/skDWm37Pli13T3WaAQBHCTiH2gUVfCsWg== +"@aws-sdk/middleware-host-header@3.620.0": + version "3.620.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-host-header/-/middleware-host-header-3.620.0.tgz#b561d419a08a984ba364c193376b482ff5224d74" + integrity sha512-VMtPEZwqYrII/oUkffYsNWY9PZ9xpNJpMgmyU0rlDQ25O1c0Hk3fJmZRe6pEkAJ0omD7kLrqGl1DUjQVxpd/Rg== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@smithy/protocol-http" "^4.1.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@aws-sdk/middleware-logger@3.577.0": - version "3.577.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-logger/-/middleware-logger-3.577.0.tgz#6da3b13ae284fb3930961f0fc8e20b1f6cf8be30" - integrity sha512-aPFGpGjTZcJYk+24bg7jT4XdIp42mFXSuPt49lw5KygefLyJM/sB0bKKqPYYivW0rcuZ9brQ58eZUNthrzYAvg== +"@aws-sdk/middleware-logger@3.609.0": + version "3.609.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-logger/-/middleware-logger-3.609.0.tgz#ed44d201f091b8bac908cbf14724c7a4d492553f" + integrity sha512-S62U2dy4jMDhDFDK5gZ4VxFdWzCtLzwbYyFZx2uvPYTECkepLUfzLic2BHg2Qvtu4QjX+oGE3P/7fwaGIsGNuQ== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@aws-sdk/middleware-recursion-detection@3.577.0": - version "3.577.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.577.0.tgz#fff76abc6d4521636f9e654ce5bf2c4c79249417" - integrity sha512-pn3ZVEd2iobKJlR3H+bDilHjgRnNrQ6HMmK9ZzZw89Ckn3Dcbv48xOv4RJvu0aU8SDLl/SNCxppKjeLDTPGBNA== +"@aws-sdk/middleware-recursion-detection@3.620.0": + version "3.620.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.620.0.tgz#f8270dfff843fd756be971e5673f89c6a24c6513" + integrity sha512-nh91S7aGK3e/o1ck64sA/CyoFw+gAYj2BDOnoNa6ouyCrVJED96ZXWbhye/fz9SgmNUZR2g7GdVpiLpMKZoI5w== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@smithy/protocol-http" "^4.1.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@aws-sdk/middleware-user-agent@3.587.0": - version "3.587.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.587.0.tgz#2a68900cfb29afbae2952d901de4fcb91850bd3d" - integrity sha512-SyDomN+IOrygLucziG7/nOHkjUXES5oH5T7p8AboO8oakMQJdnudNXiYWTicQWO52R51U6CR27rcMPTGeMedYA== +"@aws-sdk/middleware-user-agent@3.620.0": + version "3.620.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.620.0.tgz#1fe3104f04f576a942cf0469bfbd73c38eef3d9e" + integrity sha512-bvS6etn+KsuL32ubY5D3xNof1qkenpbJXf/ugGXbg0n98DvDFQ/F+SMLxHgbnER5dsKYchNnhmtI6/FC3HFu/A== dependencies: - "@aws-sdk/types" "3.577.0" - "@aws-sdk/util-endpoints" "3.587.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@aws-sdk/util-endpoints" "3.614.0" + "@smithy/protocol-http" "^4.1.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@aws-sdk/region-config-resolver@3.587.0": - version "3.587.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/region-config-resolver/-/region-config-resolver-3.587.0.tgz#ad1c15494f44dfc4c7a7bce389f8b128dace923f" - integrity sha512-93I7IPZtulZQoRK+O20IJ4a1syWwYPzoO2gc3v+/GNZflZPV3QJXuVbIm0pxBsu0n/mzKGUKqSOLPIaN098HcQ== +"@aws-sdk/region-config-resolver@3.614.0": + version "3.614.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/region-config-resolver/-/region-config-resolver-3.614.0.tgz#9cebb31a5bcfea2a41891fff7f28d0164cde179a" + integrity sha512-vDCeMXvic/LU0KFIUjpC3RiSTIkkvESsEfbVHiHH0YINfl8HnEqR5rj+L8+phsCeVg2+LmYwYxd5NRz4PHxt5g== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/node-config-provider" "^3.1.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/types" "^3.3.0" "@smithy/util-config-provider" "^3.0.0" - "@smithy/util-middleware" "^3.0.0" + "@smithy/util-middleware" "^3.0.3" tslib "^2.6.2" -"@aws-sdk/token-providers@3.587.0": - version "3.587.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/token-providers/-/token-providers-3.587.0.tgz#f9fd2ddfc554c1370f8d0f467c76a4c8cb904ae6" - integrity sha512-ULqhbnLy1hmJNRcukANBWJmum3BbjXnurLPSFXoGdV0llXYlG55SzIla2VYqdveQEEjmsBuTZdFvXAtNpmS5Zg== +"@aws-sdk/token-providers@3.614.0": + version "3.614.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/token-providers/-/token-providers-3.614.0.tgz#88da04f6d4ce916b0b0f6e045676d04201fb47fd" + integrity sha512-okItqyY6L9IHdxqs+Z116y5/nda7rHxLvROxtAJdLavWTYDydxrZstImNgGWTeVdmc0xX2gJCI77UYUTQWnhRw== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/property-provider" "^3.1.0" - "@smithy/shared-ini-file-loader" "^3.1.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/shared-ini-file-loader" "^3.1.4" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@aws-sdk/types@3.577.0": - version "3.577.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/types/-/types-3.577.0.tgz#7700784d368ce386745f8c340d9d68cea4716f90" - integrity sha512-FT2JZES3wBKN/alfmhlo+3ZOq/XJ0C7QOZcDNrpKjB0kqYoKjhVKZ/Hx6ArR0czkKfHzBBEs6y40ebIHx2nSmA== +"@aws-sdk/types@3.609.0": + version "3.609.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/types/-/types-3.609.0.tgz#06b39d799c9f197a7b43670243e8e78a3bf7d6a5" + integrity sha512-+Tqnh9w0h2LcrUsdXyT1F8mNhXz+tVYBtP19LpeEGntmvHwa2XzvLUCWpoIAIVsHp5+HdB2X9Sn0KAtmbFXc2Q== dependencies: - "@smithy/types" "^3.0.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@aws-sdk/types@^3.222.0": @@ -499,21 +443,21 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@aws-sdk/util-dynamodb@3.596.0", "@aws-sdk/util-dynamodb@^3.596.0": - version "3.596.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-dynamodb/-/util-dynamodb-3.596.0.tgz#d3d4fce5d55c54e876ad8fdaf05a78d5f63edb9c" - integrity sha512-oLdB6rUo0gQmry97yvOZ3pJvgzNZLrTk29O2NvMRB5EtXStymfxC53ZeJShdI20jZgP/l8vRUtVf7tjWwjlcIQ== +"@aws-sdk/util-dynamodb@3.621.0", "@aws-sdk/util-dynamodb@^3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-dynamodb/-/util-dynamodb-3.621.0.tgz#a0d6501e5ab9aca695dc794963adf46a475ee5f3" + integrity sha512-/3qEmZ52FdP4+3AUsUX0/wKcCF3jvAG+avVKuSCUYIdKgSIYKSeYfH8F3/r6DE3czaFevBwHRiuKHEihCMApGw== dependencies: tslib "^2.6.2" -"@aws-sdk/util-endpoints@3.587.0": - version "3.587.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-endpoints/-/util-endpoints-3.587.0.tgz#781e0822a95dba15f7ac8f22a6f6d7f0c8819818" - integrity sha512-8I1HG6Em8wQWqKcRW6m358mqebRVNpL8XrrEoT4In7xqkKkmYtHRNVYP6lcmiQh5pZ/c/FXu8dSchuFIWyEtqQ== +"@aws-sdk/util-endpoints@3.614.0": + version "3.614.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-endpoints/-/util-endpoints-3.614.0.tgz#6564b0ffd7dc3728221e9f9821f5aab1cc58468e" + integrity sha512-wK2cdrXHH4oz4IomV/yrGkftU9A+ITB6nFL+rxxyO78is2ifHJpFdV4aqk4LSkXYPi6CXWNru/Dqc7yiKXgJPw== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/types" "^3.0.0" - "@smithy/util-endpoints" "^2.0.1" + "@aws-sdk/types" "3.609.0" + "@smithy/types" "^3.3.0" + "@smithy/util-endpoints" "^2.0.5" tslib "^2.6.2" "@aws-sdk/util-locate-window@^3.0.0": @@ -523,258 +467,259 @@ dependencies: tslib "^2.6.2" -"@aws-sdk/util-user-agent-browser@3.577.0": - version "3.577.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.577.0.tgz#d4d2cdb3a2b3d1c8b35f239ee9f7b2c87bee66ea" - integrity sha512-zEAzHgR6HWpZOH7xFgeJLc6/CzMcx4nxeQolZxVZoB5pPaJd3CjyRhZN0xXeZB0XIRCWmb4yJBgyiugXLNMkLA== +"@aws-sdk/util-user-agent-browser@3.609.0": + version "3.609.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.609.0.tgz#aa15421b2e32ae8bc589dac2bd6e8969832ce588" + integrity sha512-fojPU+mNahzQ0YHYBsx0ZIhmMA96H+ZIZ665ObU9tl+SGdbLneVZVikGve+NmHTQwHzwkFsZYYnVKAkreJLAtA== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@smithy/types" "^3.3.0" bowser "^2.11.0" tslib "^2.6.2" -"@aws-sdk/util-user-agent-node@3.587.0": - version "3.587.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.587.0.tgz#a6bf422f307a68e16a6c19ee5d731fcc32696fb9" - integrity sha512-Pnl+DUe/bvnbEEDHP3iVJrOtE3HbFJBPgsD6vJ+ml/+IYk1Eq49jEG+EHZdNTPz3SDG0kbp2+7u41MKYJHR/iQ== +"@aws-sdk/util-user-agent-node@3.614.0": + version "3.614.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.614.0.tgz#1e3f49a80f841a3f21647baed2adce01aac5beb5" + integrity sha512-15ElZT88peoHnq5TEoEtZwoXTXRxNrk60TZNdpl/TUBJ5oNJ9Dqb5Z4ryb8ofN6nm9aFf59GVAerFDz8iUoHBA== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/node-config-provider" "^3.1.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@aws-sdk/util-utf8-browser@^3.0.0": - version "3.259.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-utf8-browser/-/util-utf8-browser-3.259.0.tgz#3275a6f5eb334f96ca76635b961d3c50259fd9ff" - integrity sha512-UvFa/vR+e19XookZF8RzFZBrw2EUkQWxiBW0yYQAhvk3C+QVGl0H3ouca8LDBlBfQKXwmW3huo/59H8rwb1wJw== - dependencies: - tslib "^2.3.1" - -"@smithy/abort-controller@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/abort-controller/-/abort-controller-3.0.0.tgz#5815f5d4618e14bf8d031bb98a99adabbb831168" - integrity sha512-p6GlFGBt9K4MYLu72YuJ523NVR4A8oHlC5M2JO6OmQqN8kAc/uh1JqLE+FizTokrSJGg0CSvC+BrsmGzKtsZKA== +"@smithy/abort-controller@^3.1.1": + version "3.1.1" + resolved "https://registry.yarnpkg.com/@smithy/abort-controller/-/abort-controller-3.1.1.tgz#291210611ff6afecfc198d0ca72d5771d8461d16" + integrity sha512-MBJBiidoe+0cTFhyxT8g+9g7CeVccLM0IOKKUMCNQ1CNMJ/eIfoo0RTfVrXOONEI1UCN1W+zkiHSbzUNE9dZtQ== dependencies: - "@smithy/types" "^3.0.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/config-resolver@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/config-resolver/-/config-resolver-3.0.1.tgz#4e0917e5a02139ef978a1ed470543ab41dd3626b" - integrity sha512-hbkYJc20SBDz2qqLzttjI/EqXemtmWk0ooRznLsiXp3066KQRTvuKHa7U4jCZCJq6Dozqvy0R1/vNESC9inPJg== +"@smithy/config-resolver@^3.0.5": + version "3.0.5" + resolved "https://registry.yarnpkg.com/@smithy/config-resolver/-/config-resolver-3.0.5.tgz#727978bba7ace754c741c259486a19d3083431fd" + integrity sha512-SkW5LxfkSI1bUC74OtfBbdz+grQXYiPYolyu8VfpLIjEoN/sHVBlLeGXMQ1vX4ejkgfv6sxVbQJ32yF2cl1veA== dependencies: - "@smithy/node-config-provider" "^3.1.0" - "@smithy/types" "^3.0.0" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/types" "^3.3.0" "@smithy/util-config-provider" "^3.0.0" - "@smithy/util-middleware" "^3.0.0" + "@smithy/util-middleware" "^3.0.3" tslib "^2.6.2" -"@smithy/core@^2.2.0": - version "2.2.0" - resolved "https://registry.yarnpkg.com/@smithy/core/-/core-2.2.0.tgz#f1b0837b7afa5507a9693c1e93da6ca9808022c1" - integrity sha512-ygLZSSKgt9bR8HAxR9mK+U5obvAJBr6zlQuhN5soYWx/amjDoQN4dTkydTypgKe6rIbUjTILyLU+W5XFwXr4kg== +"@smithy/core@^2.3.1": + version "2.3.1" + resolved "https://registry.yarnpkg.com/@smithy/core/-/core-2.3.1.tgz#99cb8eda23009fd7df736c82072dafcf4eb4ff5d" + integrity sha512-BC7VMXx/1BCmRPCVzzn4HGWAtsrb7/0758EtwOGFJQrlSwJBEjCcDLNZLFoL/68JexYa2s+KmgL/UfmXdG6v1w== dependencies: - "@smithy/middleware-endpoint" "^3.0.1" - "@smithy/middleware-retry" "^3.0.3" - "@smithy/middleware-serde" "^3.0.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" - "@smithy/util-middleware" "^3.0.0" + "@smithy/middleware-endpoint" "^3.1.0" + "@smithy/middleware-retry" "^3.0.13" + "@smithy/middleware-serde" "^3.0.3" + "@smithy/protocol-http" "^4.1.0" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" + "@smithy/util-middleware" "^3.0.3" tslib "^2.6.2" -"@smithy/credential-provider-imds@^3.1.0": - version "3.1.0" - resolved "https://registry.yarnpkg.com/@smithy/credential-provider-imds/-/credential-provider-imds-3.1.0.tgz#7e58b78aa8de13dd04e94829241cd1cbde59b6d3" - integrity sha512-q4A4d38v8pYYmseu/jTS3Z5I3zXlEOe5Obi+EJreVKgSVyWUHOd7/yaVCinC60QG4MRyCs98tcxBH1IMC0bu7Q== +"@smithy/credential-provider-imds@^3.2.0": + version "3.2.0" + resolved "https://registry.yarnpkg.com/@smithy/credential-provider-imds/-/credential-provider-imds-3.2.0.tgz#0e0e7ddaff1a8633cb927aee1056c0ab506b7ecf" + integrity sha512-0SCIzgd8LYZ9EJxUjLXBmEKSZR/P/w6l7Rz/pab9culE/RWuqelAKGJvn5qUOl8BgX8Yj5HWM50A5hiB/RzsgA== dependencies: - "@smithy/node-config-provider" "^3.1.0" - "@smithy/property-provider" "^3.1.0" - "@smithy/types" "^3.0.0" - "@smithy/url-parser" "^3.0.0" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/property-provider" "^3.1.3" + "@smithy/types" "^3.3.0" + "@smithy/url-parser" "^3.0.3" tslib "^2.6.2" -"@smithy/fetch-http-handler@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/fetch-http-handler/-/fetch-http-handler-3.0.1.tgz#dacfdf6e70d639fac4a0f57c42ce13f0ed14ff22" - integrity sha512-uaH74i5BDj+rBwoQaXioKpI0SHBJFtOVwzrCpxZxphOW0ki5jhj7dXvDMYM2IJem8TpdFvS2iC08sjOblfFGFg== +"@smithy/fetch-http-handler@^3.2.4": + version "3.2.4" + resolved "https://registry.yarnpkg.com/@smithy/fetch-http-handler/-/fetch-http-handler-3.2.4.tgz#c754de7e0ff2541b73ac9ba7cc955940114b3d62" + integrity sha512-kBprh5Gs5h7ug4nBWZi1FZthdqSM+T7zMmsZxx0IBvWUn7dK3diz2SHn7Bs4dQGFDk8plDv375gzenDoNwrXjg== dependencies: - "@smithy/protocol-http" "^4.0.0" - "@smithy/querystring-builder" "^3.0.0" - "@smithy/types" "^3.0.0" + "@smithy/protocol-http" "^4.1.0" + "@smithy/querystring-builder" "^3.0.3" + "@smithy/types" "^3.3.0" "@smithy/util-base64" "^3.0.0" tslib "^2.6.2" -"@smithy/hash-node@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/hash-node/-/hash-node-3.0.0.tgz#f44b5fff193e241c1cdcc957b296b60f186f0e59" - integrity sha512-84qXstNemP3XS5jcof0el6+bDfjzuvhJPQTEfro3lgtbCtKgzPm3MgiS6ehXVPjeQ5+JS0HqmTz8f/RYfzHVxw== +"@smithy/hash-node@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/hash-node/-/hash-node-3.0.3.tgz#82c5cb7b0f1a29ee7319081853d2d158c07dff24" + integrity sha512-2ctBXpPMG+B3BtWSGNnKELJ7SH9e4TNefJS0cd2eSkOOROeBnnVBnAy9LtJ8tY4vUEoe55N4CNPxzbWvR39iBw== dependencies: - "@smithy/types" "^3.0.0" + "@smithy/types" "^3.3.0" "@smithy/util-buffer-from" "^3.0.0" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@smithy/invalid-dependency@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/invalid-dependency/-/invalid-dependency-3.0.0.tgz#21cb6b5203ee15321bfcc751f21f7a19536d4ae8" - integrity sha512-F6wBBaEFgJzj0s4KUlliIGPmqXemwP6EavgvDqYwCH40O5Xr2iMHvS8todmGVZtuJCorBkXsYLyTu4PuizVq5g== +"@smithy/invalid-dependency@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/invalid-dependency/-/invalid-dependency-3.0.3.tgz#8d9fd70e3a94b565a4eba4ffbdc95238e1930528" + integrity sha512-ID1eL/zpDULmHJbflb864k72/SNOZCADRc9i7Exq3RUNJw6raWUSlFEQ+3PX3EYs++bTxZB2dE9mEHTQLv61tw== dependencies: - "@smithy/types" "^3.0.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/is-array-buffer@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/is-array-buffer/-/is-array-buffer-3.0.0.tgz#9a95c2d46b8768946a9eec7f935feaddcffa5e7a" - integrity sha512-+Fsu6Q6C4RSJiy81Y8eApjEB5gVtM+oFKTffg+jSuwtvomJJrhUJBu2zS8wjXSgH/g1MKEWrzyChTBe6clb5FQ== +"@smithy/is-array-buffer@^2.2.0": + version "2.2.0" + resolved "https://registry.yarnpkg.com/@smithy/is-array-buffer/-/is-array-buffer-2.2.0.tgz#f84f0d9f9a36601a9ca9381688bd1b726fd39111" + integrity sha512-GGP3O9QFD24uGeAXYUjwSTXARoqpZykHadOmA8G5vfJPK0/DC67qa//0qvqrJzL1xc8WQWX7/yc7fwudjPHPhA== dependencies: tslib "^2.6.2" -"@smithy/middleware-content-length@^3.0.0": +"@smithy/is-array-buffer@^3.0.0": version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/middleware-content-length/-/middleware-content-length-3.0.0.tgz#084b3d22248967885d496eb0b105d9090e8ababd" - integrity sha512-3C4s4d/iGobgCtk2tnWW6+zSTOBg1PRAm2vtWZLdriwTroFbbWNSr3lcyzHdrQHnEXYCC5K52EbpfodaIUY8sg== + resolved "https://registry.yarnpkg.com/@smithy/is-array-buffer/-/is-array-buffer-3.0.0.tgz#9a95c2d46b8768946a9eec7f935feaddcffa5e7a" + integrity sha512-+Fsu6Q6C4RSJiy81Y8eApjEB5gVtM+oFKTffg+jSuwtvomJJrhUJBu2zS8wjXSgH/g1MKEWrzyChTBe6clb5FQ== dependencies: - "@smithy/protocol-http" "^4.0.0" - "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@smithy/middleware-endpoint@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/middleware-endpoint/-/middleware-endpoint-3.0.1.tgz#49e8defb8e892e70417bd05f1faaf207070f32c7" - integrity sha512-lQ/UOdGD4KM5kLZiAl0q8Qy3dPbynvAXKAdXnYlrA1OpaUwr+neSsVokDZpY6ZVb5Yx8jnus29uv6XWpM9P4SQ== +"@smithy/middleware-content-length@^3.0.5": + version "3.0.5" + resolved "https://registry.yarnpkg.com/@smithy/middleware-content-length/-/middleware-content-length-3.0.5.tgz#1680aa4fb2a1c0505756103c9a5c2916307d9035" + integrity sha512-ILEzC2eyxx6ncej3zZSwMpB5RJ0zuqH7eMptxC4KN3f+v9bqT8ohssKbhNR78k/2tWW+KS5Spw+tbPF4Ejyqvw== dependencies: - "@smithy/middleware-serde" "^3.0.0" - "@smithy/node-config-provider" "^3.1.0" - "@smithy/shared-ini-file-loader" "^3.1.0" - "@smithy/types" "^3.0.0" - "@smithy/url-parser" "^3.0.0" - "@smithy/util-middleware" "^3.0.0" + "@smithy/protocol-http" "^4.1.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/middleware-retry@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/middleware-retry/-/middleware-retry-3.0.3.tgz#8e9af1c9db4bc8904d73126225211b42b562f961" - integrity sha512-Wve1qzJb83VEU/6q+/I0cQdAkDnuzELC6IvIBwDzUEiGpKqXgX1v10FUuZGbRS6Ov/P+HHthcAoHOJZQvZNAkA== - dependencies: - "@smithy/node-config-provider" "^3.1.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/service-error-classification" "^3.0.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" - "@smithy/util-middleware" "^3.0.0" - "@smithy/util-retry" "^3.0.0" +"@smithy/middleware-endpoint@^3.1.0": + version "3.1.0" + resolved "https://registry.yarnpkg.com/@smithy/middleware-endpoint/-/middleware-endpoint-3.1.0.tgz#9b8a496d87a68ec43f3f1a0139868d6765a88119" + integrity sha512-5y5aiKCEwg9TDPB4yFE7H6tYvGFf1OJHNczeY10/EFF8Ir8jZbNntQJxMWNfeQjC1mxPsaQ6mR9cvQbf+0YeMw== + dependencies: + "@smithy/middleware-serde" "^3.0.3" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/shared-ini-file-loader" "^3.1.4" + "@smithy/types" "^3.3.0" + "@smithy/url-parser" "^3.0.3" + "@smithy/util-middleware" "^3.0.3" + tslib "^2.6.2" + +"@smithy/middleware-retry@^3.0.13": + version "3.0.13" + resolved "https://registry.yarnpkg.com/@smithy/middleware-retry/-/middleware-retry-3.0.13.tgz#3bdd662aff01f360fcbaa166500bbc575dc9d1d0" + integrity sha512-zvCLfaRYCaUmjbF2yxShGZdolSHft7NNCTA28HVN9hKcEbOH+g5irr1X9s+in8EpambclGnevZY4A3lYpvDCFw== + dependencies: + "@smithy/node-config-provider" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/service-error-classification" "^3.0.3" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" + "@smithy/util-middleware" "^3.0.3" + "@smithy/util-retry" "^3.0.3" tslib "^2.6.2" uuid "^9.0.1" -"@smithy/middleware-serde@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/middleware-serde/-/middleware-serde-3.0.0.tgz#786da6a6bc0e5e51d669dac834c19965245dd302" - integrity sha512-I1vKG1foI+oPgG9r7IMY1S+xBnmAn1ISqployvqkwHoSb8VPsngHDTOgYGYBonuOKndaWRUGJZrKYYLB+Ane6w== +"@smithy/middleware-serde@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/middleware-serde/-/middleware-serde-3.0.3.tgz#74d974460f74d99f38c861e6862984543a880a66" + integrity sha512-puUbyJQBcg9eSErFXjKNiGILJGtiqmuuNKEYNYfUD57fUl4i9+mfmThtQhvFXU0hCVG0iEJhvQUipUf+/SsFdA== dependencies: - "@smithy/types" "^3.0.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/middleware-stack@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/middleware-stack/-/middleware-stack-3.0.0.tgz#00f112bae7af5fc3bd37d4fab95ebce0f17a7774" - integrity sha512-+H0jmyfAyHRFXm6wunskuNAqtj7yfmwFB6Fp37enytp2q047/Od9xetEaUbluyImOlGnGpaVGaVfjwawSr+i6Q== +"@smithy/middleware-stack@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/middleware-stack/-/middleware-stack-3.0.3.tgz#91845c7e61e6f137fa912b623b6def719a4f6ce7" + integrity sha512-r4klY9nFudB0r9UdSMaGSyjyQK5adUyPnQN/ZM6M75phTxOdnc/AhpvGD1fQUvgmqjQEBGCwpnPbDm8pH5PapA== dependencies: - "@smithy/types" "^3.0.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/node-config-provider@^3.1.0": - version "3.1.0" - resolved "https://registry.yarnpkg.com/@smithy/node-config-provider/-/node-config-provider-3.1.0.tgz#e962987c4e2e2b8b50397de5f4745eb21ee7bdbb" - integrity sha512-ngfB8QItUfTFTfHMvKuc2g1W60V1urIgZHqD1JNFZC2tTWXahqf2XvKXqcBS7yZqR7GqkQQZy11y/lNOUWzq7Q== +"@smithy/node-config-provider@^3.1.4": + version "3.1.4" + resolved "https://registry.yarnpkg.com/@smithy/node-config-provider/-/node-config-provider-3.1.4.tgz#05647bed666aa8036a1ad72323c1942e5d421be1" + integrity sha512-YvnElQy8HR4vDcAjoy7Xkx9YT8xZP4cBXcbJSgm/kxmiQu08DwUwj8rkGnyoJTpfl/3xYHH+d8zE+eHqoDCSdQ== dependencies: - "@smithy/property-provider" "^3.1.0" - "@smithy/shared-ini-file-loader" "^3.1.0" - "@smithy/types" "^3.0.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/shared-ini-file-loader" "^3.1.4" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/node-http-handler@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/node-http-handler/-/node-http-handler-3.0.0.tgz#e771ea95d03e259f04b7b37e8aece8a4fffc8cdc" - integrity sha512-3trD4r7NOMygwLbUJo4eodyQuypAWr7uvPnebNJ9a70dQhVn+US8j/lCnvoJS6BXfZeF7PkkkI0DemVJw+n+eQ== +"@smithy/node-http-handler@^3.1.4": + version "3.1.4" + resolved "https://registry.yarnpkg.com/@smithy/node-http-handler/-/node-http-handler-3.1.4.tgz#be4195e45639e690d522cd5f11513ea822ff9d5f" + integrity sha512-+UmxgixgOr/yLsUxcEKGH0fMNVteJFGkmRltYFHnBMlogyFdpzn2CwqWmxOrfJELhV34v0WSlaqG1UtE1uXlJg== dependencies: - "@smithy/abort-controller" "^3.0.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/querystring-builder" "^3.0.0" - "@smithy/types" "^3.0.0" + "@smithy/abort-controller" "^3.1.1" + "@smithy/protocol-http" "^4.1.0" + "@smithy/querystring-builder" "^3.0.3" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/property-provider@^3.1.0": - version "3.1.0" - resolved "https://registry.yarnpkg.com/@smithy/property-provider/-/property-provider-3.1.0.tgz#b78d4964a1016b90331cc0c770b472160361fde7" - integrity sha512-Tj3+oVhqdZgemjCiWjFlADfhvLF4C/uKDuKo7/tlEsRQ9+3emCreR2xndj970QSRSsiCEU8hZW3/8JQu+n5w4Q== +"@smithy/property-provider@^3.1.3": + version "3.1.3" + resolved "https://registry.yarnpkg.com/@smithy/property-provider/-/property-provider-3.1.3.tgz#afd57ea82a3f6c79fbda95e3cb85c0ee0a79f39a" + integrity sha512-zahyOVR9Q4PEoguJ/NrFP4O7SMAfYO1HLhB18M+q+Z4KFd4V2obiMnlVoUFzFLSPeVt1POyNWneHHrZaTMoc/g== dependencies: - "@smithy/types" "^3.0.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/protocol-http@^4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@smithy/protocol-http/-/protocol-http-4.0.0.tgz#04df3b5674b540323f678e7c4113e8abd8b26432" - integrity sha512-qOQZOEI2XLWRWBO9AgIYuHuqjZ2csyr8/IlgFDHDNuIgLAMRx2Bl8ck5U5D6Vh9DPdoaVpuzwWMa0xcdL4O/AQ== +"@smithy/protocol-http@^4.1.0": + version "4.1.0" + resolved "https://registry.yarnpkg.com/@smithy/protocol-http/-/protocol-http-4.1.0.tgz#23519d8f45bf4f33960ea5415847bc2b620a010b" + integrity sha512-dPVoHYQ2wcHooGXg3LQisa1hH0e4y0pAddPMeeUPipI1tEOqL6A4N0/G7abeq+K8wrwSgjk4C0wnD1XZpJm5aA== dependencies: - "@smithy/types" "^3.0.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/querystring-builder@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/querystring-builder/-/querystring-builder-3.0.0.tgz#48a9aa7b700e8409368c21bc0adf7564e001daea" - integrity sha512-bW8Fi0NzyfkE0TmQphDXr1AmBDbK01cA4C1Z7ggwMAU5RDz5AAv/KmoRwzQAS0kxXNf/D2ALTEgwK0U2c4LtRg== +"@smithy/querystring-builder@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/querystring-builder/-/querystring-builder-3.0.3.tgz#6b0e566f885bb84938d077c69e8f8555f686af13" + integrity sha512-vyWckeUeesFKzCDaRwWLUA1Xym9McaA6XpFfAK5qI9DKJ4M33ooQGqvM4J+LalH4u/Dq9nFiC8U6Qn1qi0+9zw== dependencies: - "@smithy/types" "^3.0.0" + "@smithy/types" "^3.3.0" "@smithy/util-uri-escape" "^3.0.0" tslib "^2.6.2" -"@smithy/querystring-parser@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/querystring-parser/-/querystring-parser-3.0.0.tgz#fa1ed0cee408cd4d622070fa874bc50ac1a379b7" - integrity sha512-UzHwthk0UEccV4dHzPySnBy34AWw3V9lIqUTxmozQ+wPDAO9csCWMfOLe7V9A2agNYy7xE+Pb0S6K/J23JSzfQ== +"@smithy/querystring-parser@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/querystring-parser/-/querystring-parser-3.0.3.tgz#272a6b83f88dfcbbec8283d72a6bde850cc00091" + integrity sha512-zahM1lQv2YjmznnfQsWbYojFe55l0SLG/988brlLv1i8z3dubloLF+75ATRsqPBboUXsW6I9CPGE5rQgLfY0vQ== dependencies: - "@smithy/types" "^3.0.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/service-error-classification@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/service-error-classification/-/service-error-classification-3.0.0.tgz#06a45cb91b15b8b0d5f3b1df2b3743d2ca42f5c4" - integrity sha512-3BsBtOUt2Gsnc3X23ew+r2M71WwtpHfEDGhHYHSDg6q1t8FrWh15jT25DLajFV1H+PpxAJ6gqe9yYeRUsmSdFA== +"@smithy/service-error-classification@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/service-error-classification/-/service-error-classification-3.0.3.tgz#73484255060a094aa9372f6cd972dcaf97e3ce80" + integrity sha512-Jn39sSl8cim/VlkLsUhRFq/dKDnRUFlfRkvhOJaUbLBXUsLRLNf9WaxDv/z9BjuQ3A6k/qE8af1lsqcwm7+DaQ== dependencies: - "@smithy/types" "^3.0.0" + "@smithy/types" "^3.3.0" -"@smithy/shared-ini-file-loader@^3.1.0": - version "3.1.0" - resolved "https://registry.yarnpkg.com/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.0.tgz#a4cb9304c3be1c232ec661132ca88d177ac7a5b1" - integrity sha512-dAM7wSX0NR3qTNyGVN/nwwpEDzfV9T/3AN2eABExWmda5VqZKSsjlINqomO5hjQWGv+IIkoXfs3u2vGSNz8+Rg== +"@smithy/shared-ini-file-loader@^3.1.4": + version "3.1.4" + resolved "https://registry.yarnpkg.com/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.4.tgz#7dceaf5a5307a2ee347ace8aba17312a1a3ede15" + integrity sha512-qMxS4hBGB8FY2GQqshcRUy1K6k8aBWP5vwm8qKkCT3A9K2dawUwOIJfqh9Yste/Bl0J2lzosVyrXDj68kLcHXQ== dependencies: - "@smithy/types" "^3.0.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/signature-v4@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/signature-v4/-/signature-v4-3.0.0.tgz#f536d0abebfeeca8e9aab846a4042658ca07d3b7" - integrity sha512-kXFOkNX+BQHe2qnLxpMEaCRGap9J6tUGLzc3A9jdn+nD4JdMwCKTJ+zFwQ20GkY+mAXGatyTw3HcoUlR39HwmA== +"@smithy/signature-v4@^4.1.0": + version "4.1.0" + resolved "https://registry.yarnpkg.com/@smithy/signature-v4/-/signature-v4-4.1.0.tgz#251ff43dc1f4ad66776122732fea9e56efc56443" + integrity sha512-aRryp2XNZeRcOtuJoxjydO6QTaVhxx/vjaR+gx7ZjaFgrgPRyZ3HCTbfwqYj6ZWEBHkCSUfcaymKPURaByukag== dependencies: "@smithy/is-array-buffer" "^3.0.0" - "@smithy/types" "^3.0.0" + "@smithy/protocol-http" "^4.1.0" + "@smithy/types" "^3.3.0" "@smithy/util-hex-encoding" "^3.0.0" - "@smithy/util-middleware" "^3.0.0" + "@smithy/util-middleware" "^3.0.3" "@smithy/util-uri-escape" "^3.0.0" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@smithy/smithy-client@^3.1.1": - version "3.1.1" - resolved "https://registry.yarnpkg.com/@smithy/smithy-client/-/smithy-client-3.1.1.tgz#9aa770edd9b6277dc4124c924c617a436cdb670e" - integrity sha512-tj4Ku7MpzZR8cmVuPcSbrLFVxmptWktmJMwST/uIEq4sarabEdF8CbmQdYB7uJ/X51Qq2EYwnRsoS7hdR4B7rA== +"@smithy/smithy-client@^3.1.11": + version "3.1.11" + resolved "https://registry.yarnpkg.com/@smithy/smithy-client/-/smithy-client-3.1.11.tgz#f12a7a0acaa7db3ead488ddf12ef4681daec11a7" + integrity sha512-l0BpyYkciNyMaS+PnFFz4aO5sBcXvGLoJd7mX9xrMBIm2nIQBVvYgp2ZpPDMzwjKCavsXu06iuCm0F6ZJZc6yQ== dependencies: - "@smithy/middleware-endpoint" "^3.0.1" - "@smithy/middleware-stack" "^3.0.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/types" "^3.0.0" - "@smithy/util-stream" "^3.0.1" + "@smithy/middleware-endpoint" "^3.1.0" + "@smithy/middleware-stack" "^3.0.3" + "@smithy/protocol-http" "^4.1.0" + "@smithy/types" "^3.3.0" + "@smithy/util-stream" "^3.1.3" tslib "^2.6.2" "@smithy/types@^2.12.0": @@ -784,20 +729,20 @@ dependencies: tslib "^2.6.2" -"@smithy/types@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/types/-/types-3.0.0.tgz#00231052945159c64ffd8b91e8909d8d3006cb7e" - integrity sha512-VvWuQk2RKFuOr98gFhjca7fkBS+xLLURT8bUjk5XQoV0ZLm7WPwWPPY3/AwzTLuUBDeoKDCthfe1AsTUWaSEhw== +"@smithy/types@^3.3.0": + version "3.3.0" + resolved "https://registry.yarnpkg.com/@smithy/types/-/types-3.3.0.tgz#fae037c733d09bc758946a01a3de0ef6e210b16b" + integrity sha512-IxvBBCTFDHbVoK7zIxqA1ZOdc4QfM5HM7rGleCuHi7L1wnKv5Pn69xXJQ9hgxH60ZVygH9/JG0jRgtUncE3QUA== dependencies: tslib "^2.6.2" -"@smithy/url-parser@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/url-parser/-/url-parser-3.0.0.tgz#5fdc77cd22051c1aac6531be0315bfcba0fa705d" - integrity sha512-2XLazFgUu+YOGHtWihB3FSLAfCUajVfNBXGGYjOaVKjLAuAxx3pSBY3hBgLzIgB17haf59gOG3imKqTy8mcrjw== +"@smithy/url-parser@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/url-parser/-/url-parser-3.0.3.tgz#e8a060d9810b24b1870385fc2b02485b8a6c5955" + integrity sha512-pw3VtZtX2rg+s6HMs6/+u9+hu6oY6U7IohGhVNnjbgKy86wcIsSZwgHrFR+t67Uyxvp4Xz3p3kGXXIpTNisq8A== dependencies: - "@smithy/querystring-parser" "^3.0.0" - "@smithy/types" "^3.0.0" + "@smithy/querystring-parser" "^3.0.3" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@smithy/util-base64@^3.0.0": @@ -823,6 +768,14 @@ dependencies: tslib "^2.6.2" +"@smithy/util-buffer-from@^2.2.0": + version "2.2.0" + resolved "https://registry.yarnpkg.com/@smithy/util-buffer-from/-/util-buffer-from-2.2.0.tgz#6fc88585165ec73f8681d426d96de5d402021e4b" + integrity sha512-IJdWBbTcMQ6DA0gdNhh/BwrLkDR+ADW5Kr1aZmd4k3DIF6ezMV4R2NIAmT08wQJ3yUK82thHWmC/TnK/wpMMIA== + dependencies: + "@smithy/is-array-buffer" "^2.2.0" + tslib "^2.6.2" + "@smithy/util-buffer-from@^3.0.0": version "3.0.0" resolved "https://registry.yarnpkg.com/@smithy/util-buffer-from/-/util-buffer-from-3.0.0.tgz#559fc1c86138a89b2edaefc1e6677780c24594e3" @@ -838,37 +791,37 @@ dependencies: tslib "^2.6.2" -"@smithy/util-defaults-mode-browser@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.3.tgz#6fff11a6c407ca1d5a1dc009768bd09271b199c2" - integrity sha512-3DFON2bvXJAukJe+qFgPV/rorG7ZD3m4gjCXHD1V5z/tgKQp5MCTCLntrd686tX6tj8Uli3lefWXJudNg5WmCA== +"@smithy/util-defaults-mode-browser@^3.0.13": + version "3.0.13" + resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.13.tgz#f574bbb89d60f5dcc443f106087d317b370634d0" + integrity sha512-ZIRSUsnnMRStOP6OKtW+gCSiVFkwnfQF2xtf32QKAbHR6ACjhbAybDvry+3L5qQYdh3H6+7yD/AiUE45n8mTTw== dependencies: - "@smithy/property-provider" "^3.1.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" bowser "^2.11.0" tslib "^2.6.2" -"@smithy/util-defaults-mode-node@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.3.tgz#0b52ba9cb1138ee9076feba9a733462b2e2e6093" - integrity sha512-D0b8GJXecT00baoSQ3Iieu3k3mZ7GY8w1zmg8pdogYrGvWJeLcIclqk2gbkG4K0DaBGWrO6v6r20iwIFfDYrmA== +"@smithy/util-defaults-mode-node@^3.0.13": + version "3.0.13" + resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.13.tgz#cdd3a08bb5af4d17c2b0a951af9936ce7f3bae93" + integrity sha512-voUa8TFJGfD+U12tlNNLCDlXibt9vRdNzRX45Onk/WxZe7TS+hTOZouEZRa7oARGicdgeXvt1A0W45qLGYdy+g== dependencies: - "@smithy/config-resolver" "^3.0.1" - "@smithy/credential-provider-imds" "^3.1.0" - "@smithy/node-config-provider" "^3.1.0" - "@smithy/property-provider" "^3.1.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" + "@smithy/config-resolver" "^3.0.5" + "@smithy/credential-provider-imds" "^3.2.0" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/property-provider" "^3.1.3" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/util-endpoints@^2.0.1": - version "2.0.1" - resolved "https://registry.yarnpkg.com/@smithy/util-endpoints/-/util-endpoints-2.0.1.tgz#4ea8069bfbf3ebbcbe106b5156ff59a7a627b7dd" - integrity sha512-ZRT0VCOnKlVohfoABMc8lWeQo/JEFuPWctfNRXgTHbyOVssMOLYFUNWukxxiHRGVAhV+n3c0kPW+zUqckjVPEA== +"@smithy/util-endpoints@^2.0.5": + version "2.0.5" + resolved "https://registry.yarnpkg.com/@smithy/util-endpoints/-/util-endpoints-2.0.5.tgz#e3a7a4d1c41250bfd2b2d890d591273a7d8934be" + integrity sha512-ReQP0BWihIE68OAblC/WQmDD40Gx+QY1Ez8mTdFMXpmjfxSyz2fVQu3A4zXRfQU9sZXtewk3GmhfOHswvX+eNg== dependencies: - "@smithy/node-config-provider" "^3.1.0" - "@smithy/types" "^3.0.0" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@smithy/util-hex-encoding@^3.0.0": @@ -878,31 +831,31 @@ dependencies: tslib "^2.6.2" -"@smithy/util-middleware@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/util-middleware/-/util-middleware-3.0.0.tgz#64d775628b99a495ca83ce982f5c83aa45f1e894" - integrity sha512-q5ITdOnV2pXHSVDnKWrwgSNTDBAMHLptFE07ua/5Ty5WJ11bvr0vk2a7agu7qRhrCFRQlno5u3CneU5EELK+DQ== +"@smithy/util-middleware@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/util-middleware/-/util-middleware-3.0.3.tgz#07bf9602682f5a6c55bc2f0384303f85fc68c87e" + integrity sha512-l+StyYYK/eO3DlVPbU+4Bi06Jjal+PFLSMmlWM1BEwyLxZ3aKkf1ROnoIakfaA7mC6uw3ny7JBkau4Yc+5zfWw== dependencies: - "@smithy/types" "^3.0.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/util-retry@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/util-retry/-/util-retry-3.0.0.tgz#8a0c47496aab74e1dfde4905d462ad636a8824bb" - integrity sha512-nK99bvJiziGv/UOKJlDvFF45F00WgPLKVIGUfAK+mDhzVN2hb/S33uW2Tlhg5PVBoqY7tDVqL0zmu4OxAHgo9g== +"@smithy/util-retry@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/util-retry/-/util-retry-3.0.3.tgz#9b2ac0dbb1c81f69812a8affa4d772bebfc0e049" + integrity sha512-AFw+hjpbtVApzpNDhbjNG5NA3kyoMs7vx0gsgmlJF4s+yz1Zlepde7J58zpIRIsdjc+emhpAITxA88qLkPF26w== dependencies: - "@smithy/service-error-classification" "^3.0.0" - "@smithy/types" "^3.0.0" + "@smithy/service-error-classification" "^3.0.3" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/util-stream@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/util-stream/-/util-stream-3.0.1.tgz#3cf527bcd3fec82c231c38d47dd75f3364747edb" - integrity sha512-7F7VNNhAsfMRA8I986YdOY5fE0/T1/ZjFF6OLsqkvQVNP3vZ/szYDfGCyphb7ioA09r32K/0qbSFfNFU68aSzA== +"@smithy/util-stream@^3.1.3": + version "3.1.3" + resolved "https://registry.yarnpkg.com/@smithy/util-stream/-/util-stream-3.1.3.tgz#699ee2397cc1d474e46d2034039d5263812dca64" + integrity sha512-FIv/bRhIlAxC0U7xM1BCnF2aDRPq0UaelqBHkM2lsCp26mcBbgI0tCVTv+jGdsQLUmAMybua/bjDsSu8RQHbmw== dependencies: - "@smithy/fetch-http-handler" "^3.0.1" - "@smithy/node-http-handler" "^3.0.0" - "@smithy/types" "^3.0.0" + "@smithy/fetch-http-handler" "^3.2.4" + "@smithy/node-http-handler" "^3.1.4" + "@smithy/types" "^3.3.0" "@smithy/util-base64" "^3.0.0" "@smithy/util-buffer-from" "^3.0.0" "@smithy/util-hex-encoding" "^3.0.0" @@ -916,6 +869,14 @@ dependencies: tslib "^2.6.2" +"@smithy/util-utf8@^2.0.0": + version "2.3.0" + resolved "https://registry.yarnpkg.com/@smithy/util-utf8/-/util-utf8-2.3.0.tgz#dd96d7640363259924a214313c3cf16e7dd329c5" + integrity sha512-R8Rdn8Hy72KKcebgLiv8jQcQkXoLMOGGv5uI1/k0l+snqkOzQ1R0ChUBCxWMlBsFMekWjq0wRudIweFs7sKT5A== + dependencies: + "@smithy/util-buffer-from" "^2.2.0" + tslib "^2.6.2" + "@smithy/util-utf8@^3.0.0": version "3.0.0" resolved "https://registry.yarnpkg.com/@smithy/util-utf8/-/util-utf8-3.0.0.tgz#1a6a823d47cbec1fd6933e5fc87df975286d9d6a" @@ -924,13 +885,13 @@ "@smithy/util-buffer-from" "^3.0.0" tslib "^2.6.2" -"@smithy/util-waiter@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/util-waiter/-/util-waiter-3.0.0.tgz#26bcc5bbbf1de9360a7aeb3b3919926fc6afa2bc" - integrity sha512-+fEXJxGDLCoqRKVSmo0auGxaqbiCo+8oph+4auefYjaNxjOLKSY2MxVQfRzo65PaZv4fr+5lWg+au7vSuJJ/zw== +"@smithy/util-waiter@^3.1.2": + version "3.1.2" + resolved "https://registry.yarnpkg.com/@smithy/util-waiter/-/util-waiter-3.1.2.tgz#2d40c3312f3537feee763459a19acafab4c75cf3" + integrity sha512-4pP0EV3iTsexDx+8PPGAKCQpd/6hsQBaQhqWzU4hqKPHN5epPsxKbvUTIiYIHTxaKt6/kEaqPBpu/ufvfbrRzw== dependencies: - "@smithy/abort-controller" "^3.0.0" - "@smithy/types" "^3.0.0" + "@smithy/abort-controller" "^3.1.1" + "@smithy/types" "^3.3.0" tslib "^2.6.2" bowser@^2.11.0: @@ -938,10 +899,10 @@ bowser@^2.11.0: resolved "https://registry.yarnpkg.com/bowser/-/bowser-2.11.0.tgz#5ca3c35757a7aa5771500c70a73a9f91ef420a8f" integrity sha512-AlcaJBi/pqqJBIQ8U9Mcpc9i8Aqxn88Skv5d+xBX006BY5u8N3mGLHa5Lgppa7L/HfwgwLgZ6NYs+Ag6uUmJRA== -fast-xml-parser@4.2.5: - version "4.2.5" - resolved "https://registry.yarnpkg.com/fast-xml-parser/-/fast-xml-parser-4.2.5.tgz#a6747a09296a6cb34f2ae634019bf1738f3b421f" - integrity sha512-B9/wizE4WngqQftFPmdaMYlXoJlJOYxGQOanC77fq9k8+Z0v5dDSVh+3glErdIROP//s/jgb7ZuxKfB8nVyo0g== +fast-xml-parser@4.4.1: + version "4.4.1" + resolved "https://registry.yarnpkg.com/fast-xml-parser/-/fast-xml-parser-4.4.1.tgz#86dbf3f18edf8739326447bcaac31b4ae7f6514f" + integrity sha512-xkjOecfnKGkSsOwtZ5Pz7Us/T6mrbPQrq0nh+aCO5V9nk5NLWmasAHumTKjiPJPWANe+kAZ84Jc8ooJkzZ88Sw== dependencies: strnum "^1.0.5" @@ -950,11 +911,6 @@ kafkajs@^1.15.0: resolved "https://registry.yarnpkg.com/kafkajs/-/kafkajs-1.15.0.tgz#a5ada0d933edca2149177393562be6fb0875ec3a" integrity sha512-yjPyEnQCkPxAuQLIJnY5dI+xnmmgXmhuOQ1GVxClG5KTOV/rJcW1qA3UfvyEJKTp/RTSqQnUR3HJsKFvHyTpNg== -lodash@^4.17.21: - version "4.17.21" - resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" - integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== - mnemonist@0.38.3: version "0.38.3" resolved "https://registry.yarnpkg.com/mnemonist/-/mnemonist-0.38.3.tgz#35ec79c1c1f4357cfda2fe264659c2775ccd7d9d" @@ -972,21 +928,11 @@ strnum@^1.0.5: resolved "https://registry.yarnpkg.com/strnum/-/strnum-1.0.5.tgz#5c4e829fe15ad4ff0d20c3db5ac97b73c9b072db" integrity sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA== -tslib@^1.11.1: - version "1.14.1" - resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" - integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== - -tslib@^2.3.1, tslib@^2.6.2: +tslib@^2.6.2: version "2.6.2" resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.2.tgz#703ac29425e7b37cd6fd456e92404d46d1f3e4ae" integrity sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q== -uuid@^8.3.2: - version "8.3.2" - resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2" - integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== - uuid@^9.0.1: version "9.0.1" resolved "https://registry.yarnpkg.com/uuid/-/uuid-9.0.1.tgz#e188d4c8853cc722220392c424cd637f32293f30" diff --git a/services/database/data/seed-local/seed-section.json b/services/database/data/seed-local/seed-section.json index ec098c54d..c0a87b848 100644 --- a/services/database/data/seed-local/seed-section.json +++ b/services/database/data/seed-local/seed-section.json @@ -75,42 +75,32 @@ "id": "2023-00-a-01-04", "type": "text", "label": "Contact name:", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-00-a-01-05", "type": "text", "label": "Job title:", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-00-a-01-06", "type": "email", "label": "Email:", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-00-a-01-07", "hint": "Include city, state, and zip code.", "type": "mailing_address", "label": "Full mailing address:", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-00-a-01-08", "type": "phone_number", "label": "Phone number:", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "hint": "This information is being collected to assist the Centers for Medicare & Medicaid Services (CMS) in partnership with States with the ongoing management of Medicaid and CHIP programs and policies. This mandatory information collection (42 U.S.C. 1397hh) will be used to help each state meet the statutory requirements at section 2108(a) of the Social Security Act to assess the operation of the State child health plan in each Federal fiscal year and to report the results of the assessment including the progress made in reducing the number of uncovered, low-income children. Under the Privacy Act of 1974 any personally identifying information obtained will be kept private to the extent of the law. According to the Paperwork Reduction Act of 1995, no persons are required to respond to a collection of information unless it displays a valid OMB control number. The valid OMB control number for this information collection is 0938-1148 (CMS-10398 #1). The time required to complete this information collection is estimated to average 40 hours per response, including the time to review instructions, search existing data resources, gather all data needed, and complete and review the information collection. Send comments regarding this burden estimate or any other aspect of this collection of information, including suggestions for reducing this burden, to CMS, 7500 Security Boulevard, Attn: Paperwork Reduction Act Reports Clearance Officer, Mail Stop C4-26-05, Baltimore, Maryland 21244-1850.", @@ -159,14 +149,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -174,9 +158,7 @@ "id": "2023-01-a-01-01-a", "type": "money", "label": "How much is your enrollment fee?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -200,14 +182,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -221,14 +197,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -265,9 +235,7 @@ "id": "2023-01-a-01-02-c", "type": "money", "label": "How much is the premium for one child?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -307,14 +275,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -352,9 +314,7 @@ "id": "2023-01-a-01-03-b", "type": "money", "label": "What's the maximum premium a family would be charged each year?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -375,9 +335,7 @@ "id": "2023-01-a-01-04", "type": "text_multiline", "label": "Do premiums differ for different Medicaid expansion CHIP populations beyond FPL (for example, by eligibility group)? If so, briefly explain the fee structure breakdown.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-01-a-01-05", @@ -387,18 +345,12 @@ "answer": { "entry": null, "options": [ - { - "label": "Managed Care", - "value": "mco" - }, + { "label": "Managed Care", "value": "mco" }, { "label": "Primary Care Case Management (PCCM)", "value": "pccm" }, - { - "label": "Fee-for-Service", - "value": "ffs" - } + { "label": "Fee-for-Service", "value": "ffs" } ] } }, @@ -406,9 +358,7 @@ "id": "2023-01-a-01-06", "type": "text_multiline", "label": "Which delivery system(s) are available to which Medicaid expansion CHIP populations? Indicate whether eligibility status, income level, age range, or other criteria determine which delivery system a population receives.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -431,14 +381,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -446,9 +390,7 @@ "id": "2023-01-a-02-01-a", "type": "money", "label": "How much is your enrollment fee?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -472,14 +414,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -493,14 +429,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -537,9 +467,7 @@ "id": "2023-01-a-02-02-c", "type": "money", "label": "How much is the premium for one child?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -579,14 +507,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -624,9 +546,7 @@ "id": "2023-01-a-02-03-b", "type": "money", "label": "What's the maximum premium fee a family would be charged each year?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -647,9 +567,7 @@ "id": "2023-01-a-02-04", "type": "text_multiline", "label": "Do your premiums differ for different, separate CHIP populations beyond FPL (for example, by eligibility group)? If so, briefly explain the fee structure breakdown.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-01-a-02-05", @@ -659,18 +577,12 @@ "answer": { "entry": null, "options": [ - { - "label": "Managed Care", - "value": "mco" - }, + { "label": "Managed Care", "value": "mco" }, { "label": "Primary Care Case Management (PCCM)", "value": "pccm" }, - { - "label": "Fee-for-Service", - "value": "ffs" - } + { "label": "Fee-for-Service", "value": "ffs" } ] } }, @@ -678,9 +590,7 @@ "id": "2023-01-a-02-06", "type": "text_multiline", "label": "Which delivery system(s) are available to which separate CHIP populations? Indicate whether eligibility status, income level, age range, or other criteria determine which delivery system a population receives.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -701,14 +611,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -722,14 +626,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -744,14 +642,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -766,14 +658,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -787,14 +673,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -809,19 +689,11 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, - "context_data": { - "bullet_text": "Outreach efforts" - } + "context_data": { "bullet_text": "Outreach efforts" } }, { "id": "2023-01-a-03-07", @@ -831,19 +703,11 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, - "context_data": { - "bullet_text": "Delivery system(s)" - } + "context_data": { "bullet_text": "Delivery system(s)" } }, { "id": "2023-01-a-03-08", @@ -853,19 +717,11 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, - "context_data": { - "bullet_text": "Cost sharing" - } + "context_data": { "bullet_text": "Cost sharing" } }, { "id": "2023-01-a-03-09", @@ -875,14 +731,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -896,14 +746,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -918,14 +762,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -940,19 +778,11 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, - "context_data": { - "bullet_text": "Premium assistance" - } + "context_data": { "bullet_text": "Premium assistance" } }, { "id": "2023-01-a-03-13", @@ -961,14 +791,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -982,14 +806,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -1003,14 +821,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -1024,19 +836,11 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, - "context_data": { - "bullet_text": "Other program areas" - } + "context_data": { "bullet_text": "Other program areas" } }, { "type": "fieldset", @@ -1045,9 +849,7 @@ "id": "2023-01-a-03-17", "type": "text_multiline", "label": "Briefly describe why you made changes to your Medicaid expansion CHIP program (if applicable).", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-01-a-03-18", @@ -1056,14 +858,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } } @@ -1122,14 +918,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -1143,14 +933,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -1165,14 +949,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -1187,14 +965,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -1208,14 +980,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -1230,19 +996,11 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, - "context_data": { - "bullet_text": "Outreach efforts" - } + "context_data": { "bullet_text": "Outreach efforts" } }, { "id": "2023-01-a-04-07", @@ -1252,19 +1010,11 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, - "context_data": { - "bullet_text": "Delivery system(s)" - } + "context_data": { "bullet_text": "Delivery system(s)" } }, { "id": "2023-01-a-04-08", @@ -1274,19 +1024,11 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, - "context_data": { - "bullet_text": "Cost sharing" - } + "context_data": { "bullet_text": "Cost sharing" } }, { "id": "2023-01-a-04-09", @@ -1296,19 +1038,11 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, - "context_data": { - "bullet_text": "Crowd-out policies" - } + "context_data": { "bullet_text": "Crowd-out policies" } }, { "id": "2023-01-a-04-10", @@ -1317,14 +1051,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -1338,14 +1066,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -1360,14 +1082,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -1382,19 +1098,11 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, - "context_data": { - "bullet_text": "Premium assistance" - } + "context_data": { "bullet_text": "Premium assistance" } }, { "id": "2023-01-a-04-14", @@ -1403,14 +1111,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -1425,14 +1127,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -1447,14 +1143,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -1468,14 +1158,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -1489,14 +1173,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -1510,19 +1188,11 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, - "context_data": { - "bullet_text": "Other program areas" - } + "context_data": { "bullet_text": "Other program areas" } }, { "type": "fieldset", @@ -1531,9 +1201,7 @@ "id": "2023-01-a-04-20", "type": "text_multiline", "label": "Briefly describe why you made these changes to your separate CHIP program (if applicable).", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-01-a-04-21", @@ -1542,14 +1210,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } } @@ -1633,9 +1295,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Medicaid Expansion CHIP" - }, + { "contents": "Medicaid Expansion CHIP" }, { "lookupChipEnrollments": { "ffy": 2023, @@ -1658,9 +1318,7 @@ } ], [ - { - "contents": "Separate CHIP" - }, + { "contents": "Separate CHIP" }, { "lookupChipEnrollments": { "ffy": 2023, @@ -1684,18 +1342,14 @@ ] ], "headers": [ - { - "contents": "Program" - }, + { "contents": "Program" }, { "contents": "Number of children enrolled in FFY 2022" }, { "contents": "Number of children enrolled in FFY 2023" }, - { - "contents": "Percent change" - } + { "contents": "Percent change" } ] }, "fieldset_type": "synthesized_table" @@ -1704,9 +1358,7 @@ "id": "2023-02-a-01-01", "type": "text_multiline", "label": "The percent change column in the table above calculates the rate of growth in enrollment over the previous federal fiscal year by subtracting the previous fiscal year enrollment total from the current fiscal year enrollment total (B - A), and dividing that by the previous fiscal year total (A). If you had more than a 3% percent change from last year, what are some possible reasons why your enrollment numbers changed?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "skip_text": "Since your percent change didn’t exceed 3%, you can skip to Part 2.", "conditional_display": { @@ -1752,9 +1404,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "2018" - }, + { "contents": "2018" }, { "lookupAcs": { "ffy": "2018", @@ -1781,9 +1431,7 @@ } ], [ - { - "contents": "2019" - }, + { "contents": "2019" }, { "lookupAcs": { "ffy": "2019", @@ -1810,9 +1458,7 @@ } ], [ - { - "contents": "2020" - }, + { "contents": "2020" }, { "lookupAcs": { "ffy": "2020", @@ -1839,9 +1485,7 @@ } ], [ - { - "contents": "2021" - }, + { "contents": "2021" }, { "lookupAcs": { "ffy": "2021", @@ -1868,9 +1512,7 @@ } ], [ - { - "contents": "2022" - }, + { "contents": "2022" }, { "lookupAcs": { "ffy": "2022", @@ -1898,21 +1540,13 @@ ] ], "headers": [ - { - "contents": "Year" - }, - { - "contents": "Number of uninsured children" - }, - { - "contents": "Margin of error" - }, + { "contents": "Year" }, + { "contents": "Number of uninsured children" }, + { "contents": "Margin of error" }, { "contents": "Percent of uninsured children (of total children in your state)" }, - { - "contents": "Margin of error" - } + { "contents": "Margin of error" } ] }, "fieldset_type": "synthesized_table" @@ -1956,9 +1590,7 @@ "id": "2023-02-a-02-01", "type": "text_multiline", "label": "What are some reasons why the number and/or percent of uninsured children has changed?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "skip_text": "Since your percent change didn’t exceed 3%, you can skip to Part 2.", "conditional_display": { @@ -1994,14 +1626,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -2009,9 +1635,7 @@ "id": "2023-02-a-02-02-a", "type": "text_multiline", "label": "What are some reasons why the American Community Survey estimates might not reflect the number of uninsured children in your state?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -2035,14 +1659,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -2053,9 +1671,7 @@ "id": "2023-02-a-02-03-a", "type": "text_multiline", "label": "What is the alternate data source or methodology?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-02-a-02-03-b", @@ -2070,49 +1686,37 @@ "id": "2023-02-a-02-03-c", "type": "text_multiline", "label": "Define the population you’re measuring, including ages and federal poverty levels.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-02-a-02-03-d", "type": "text_multiline", "label": "Give numbers and/or the percent of uninsured children for at least two points in time.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-02-a-02-03-e", "type": "text_multiline", "label": "Why did your state choose to adopt this alternate data source?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-02-a-02-03-f", "type": "text_multiline", "label": "How reliable are these estimates? Provide standard errors, confidence intervals, and/or p-values if available.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-02-a-02-03-g", "type": "text_multiline", "label": "What are the limitations of this alternate data source or methodology?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-02-a-02-03-h", "type": "text_multiline", "label": "How do you use this alternate data source in CHIP program planning?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -2135,17 +1739,13 @@ "id": "2023-02-a-02-04", "type": "text_multiline", "label": "Is there anything else you’d like to add about your enrollment and uninsured data?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-02-a-02-05", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -2185,14 +1785,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -2200,9 +1794,7 @@ "id": "2023-03-a-01-01-a", "type": "text_multiline", "label": "What are you doing differently?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -2227,14 +1819,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -2242,9 +1828,7 @@ "id": "2023-03-a-01-02-a", "type": "text_multiline", "label": "Have these efforts been successful? How have you measured the effectiveness of your outreach efforts?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -2266,25 +1850,19 @@ "hint": "For example: TV, school outreach, or word of mouth.", "type": "text_multiline", "label": "What methods have been most effective in reaching low-income, uninsured children?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-a-01-04", "type": "text_multiline", "label": "Is there anything else you’d like to add about your outreach efforts?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-a-01-05", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -2307,18 +1885,9 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] }, "questions": [ @@ -2326,9 +1895,7 @@ "id": "2023-03-b-01-01-a", "type": "text_multiline", "label": "What percent of CHIP enrollees had access to private insurance at the time of application?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -2352,18 +1919,9 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] }, "questions": [ @@ -2371,9 +1929,7 @@ "id": "2023-03-b-01-02-a", "type": "text_multiline", "label": "Which database do you use?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -2394,9 +1950,7 @@ "id": "2023-03-b-01-03", "type": "percentage", "label": "What percent of applicants screened for CHIP eligibility cannot be enrolled because they have group health plan coverage?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "type": "fieldset", @@ -2408,18 +1962,9 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] }, "questions": [ @@ -2430,9 +1975,7 @@ "id": "2023-03-b-01-04-a", "type": "text_multiline", "label": "How long is the waiting period?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -2453,9 +1996,7 @@ "id": "2023-03-b-01-04-b", "type": "text_multiline", "label": "Which populations does the waiting period apply to? (Include the FPL for each group.)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -2474,9 +2015,7 @@ "id": "2023-03-b-01-04-c", "type": "text_multiline", "label": "What exemptions apply to the waiting period?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -2495,9 +2034,7 @@ "id": "2023-03-b-01-04-d", "type": "text_multiline", "label": "What percent of individuals subject to the waiting period meet a state or federal exemption?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -2527,17 +2064,13 @@ "id": "2023-03-b-01-05", "type": "text_multiline", "label": "Is there anything else you’d like to add about substitution of coverage that wasn’t already covered? Did you run into any limitations when collecting these data?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-b-01-06", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -2561,18 +2094,9 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] }, "questions": [ @@ -2583,17 +2107,13 @@ "id": "2023-03-c-01-01-a", "type": "percentage", "label": "What percent of children are presumptively enrolled in CHIP pending a full eligibility determination?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-c-01-01-b", "type": "percentage", "label": "Of the children who are presumptively enrolled, what percent are determined fully eligible and enrolled in the program (upon completion of the full eligibility determination)?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -2619,14 +2139,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -2637,14 +2151,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -2655,17 +2163,13 @@ "id": "2023-03-c-01-03-a", "type": "text", "label": "How many notices do you send to families before disenrolling a child from the program?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-c-01-03-b", "type": "text", "label": "How many days before the end of the eligibility period did you send reminder notices to families?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -2688,33 +2192,25 @@ "id": "2023-03-c-01-04", "type": "text_multiline", "label": "What else have you done to simplify the eligibility renewal process for families?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-c-01-05", "type": "text_multiline", "label": "Which retention strategies have you found to be most effective?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-c-01-06", "type": "text_multiline", "label": "How do you measure the effectiveness of your retention strategies? What data sources and methodology do you use to track retention?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-c-01-07", "type": "text_multiline", "label": "Is there anything else you’d like to add that wasn’t already covered?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -2728,54 +2224,47 @@ "hint": "Don’t include applicants who are being considered for redetermination — these data will be collected in Part 3. \n\nPlease note: numbers reported in questions 2-4 of this part are a subset of the total reported in question 1. Therefore, the totals reported in questions 2-4 should be smaller than the number reported in question 1.", "type": "integer", "label": "How many applicants were denied CHIP coverage in FFY 2023? This number should be equal to the total of reported numbers for questions 2-4 below.", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-02-02", "hint": "For example: They were denied because of an incomplete application, missing documentation, or a missing enrollment fee.", "type": "integer", "label": "How many applicants were denied CHIP coverage for procedural reasons?", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-02-03", "hint": "For example: They were denied because their income was too high or too low, they were determined eligible for Medicaid instead, or they had other coverage available.", "type": "integer", "label": "How many applicants were denied CHIP coverage for eligibility reasons?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "questions": [ { "id": "2023-03-c-02-03-a", "hint": "Please note this is a subset of the number reported for question 3, and that a smaller number should be reported here than the total provided in response to question 3.", "type": "integer", "label": "How many applicants were denied CHIP (Title XXI) coverage and determined eligible for Medicaid (Title XIX) instead?", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } - ] + ], + "mask": "lessThanEleven" }, { "id": "2023-03-c-02-04", "type": "integer", "label": "How many applicants were denied CHIP coverage for other reasons?", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-02-05", "type": "text_multiline", "label": "Did you have any limitations in collecting these data?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "hint": "This table is auto-populated with the data you entered above.", @@ -2785,9 +2274,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Total denials" - }, + { "contents": "Total denials" }, { "targets": [ "$..*[?(@ && @.id=='2023-03-c-02-01')].answer.entry" @@ -2802,9 +2289,7 @@ } ], [ - { - "contents": "Denied for procedural reasons" - }, + { "contents": "Denied for procedural reasons" }, { "targets": [ "$..*[?(@ && @.id=='2023-03-c-02-02')].answer.entry" @@ -2819,9 +2304,7 @@ } ], [ - { - "contents": "Denied for eligibility reasons" - }, + { "contents": "Denied for eligibility reasons" }, { "targets": [ "$..*[?(@ && @.id=='2023-03-c-02-03')].answer.entry" @@ -2836,9 +2319,7 @@ } ], [ - { - "contents": "Denials for other reasons" - }, + { "contents": "Denials for other reasons" }, { "targets": [ "$..*[?(@ && @.id=='2023-03-c-02-04')].answer.entry" @@ -2854,15 +2335,9 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "Number" - }, - { - "contents": "Percent" - } + { "contents": "" }, + { "contents": "Number" }, + { "contents": "Percent" } ] }, "fieldset_type": "synthesized_table" @@ -2879,34 +2354,29 @@ "id": "2023-03-c-03-01", "type": "integer", "label": "How many children were eligible for redetermination in CHIP in FFY 2023?", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-03-02", "type": "integer", "label": "Of the eligible children, how many were then screened for redetermination?", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-03-03", "type": "integer", "label": "How many children were retained in CHIP after redetermination?", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-03-04", "hint": "This number should be equal to the total of 4a, 4b, and 4c below.", "type": "integer", "label": "How many children were disenrolled in CHIP after the redetermination process?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "questions": [ { "hint": "The answer to 4 should be equal to the sum of a, b, and c below: ", @@ -2927,36 +2397,32 @@ "hint": "This could be due to an incomplete application, missing documentation, or a missing enrollment fee.", "type": "integer", "label": "How many children were disenrolled for procedural reasons?", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-03-04-b", "hint": "This could be due to income that was too high or too low, eligibility in Medicaid (Title XIX) instead, or access to private coverage.", "type": "integer", "label": "How many children were disenrolled for eligibility reasons?", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-03-04-c", "type": "integer", "label": "How many children were disenrolled for other reasons?", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } - ] + ], + "mask": "lessThanEleven" }, { "id": "2023-03-c-03-05", "type": "text_multiline", "label": "Did you have any limitations in collecting these data?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "hint": "These tables are auto-populated with the data you entered above.", @@ -3018,15 +2484,9 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "Number" - }, - { - "contents": "Percent" - } + { "contents": "" }, + { "contents": "Number" }, + { "contents": "Percent" } ] }, "fieldset_type": "synthesized_table" @@ -3108,15 +2568,9 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "Number" - }, - { - "contents": "Percent" - } + { "contents": "" }, + { "contents": "Number" }, + { "contents": "Percent" } ] }, "fieldset_type": "synthesized_table" @@ -3133,34 +2587,29 @@ "id": "2023-03-c-04-01", "type": "integer", "label": "How many children were eligible for redetermination in Medicaid in FFY 2023?", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-04-02", "type": "integer", "label": "Of the eligible children, how many were then screened for redetermination?", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-04-03", "type": "integer", "label": "How many children were retained in Medicaid after redetermination?", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-04-04", "hint": "This number should be equal to the total of 4a, 4b, and 4c below.", "type": "integer", "label": "How many children were disenrolled in Medicaid after the redetermination process?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "questions": [ { "hint": "The answer to 4 should be equal to the sum of a, b, and c below: ", @@ -3181,36 +2630,32 @@ "hint": "This could be due to an incomplete application, missing documentation, or a missing enrollment fee.", "type": "integer", "label": "How many children were disenrolled for procedural reasons?", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-04-04-b", "hint": "This could be due to an income that was too high and/or eligibility in CHIP instead.", "type": "integer", "label": "How many children were disenrolled for eligibility reasons?", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-04-04-c", "type": "integer", "label": "How many children were disenrolled for other reasons?", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } - ] + ], + "mask": "lessThanEleven" }, { "id": "2023-03-c-04-05", "type": "text_multiline", "label": "Did you have any limitations in collecting these data?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "hint": "These tables are auto-populated with the data you entered above.", @@ -3272,15 +2717,9 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "Number" - }, - { - "contents": "Percent" - } + { "contents": "" }, + { "contents": "Number" }, + { "contents": "Percent" } ] }, "fieldset_type": "synthesized_table" @@ -3362,15 +2801,9 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "Number" - }, - { - "contents": "Percent" - } + { "contents": "" }, + { "contents": "Number" }, + { "contents": "Percent" } ] }, "fieldset_type": "synthesized_table" @@ -3415,14 +2848,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -3439,9 +2866,7 @@ "id": "2023-03-c-05-03-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -3453,7 +2878,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -3477,33 +2903,29 @@ "id": "2023-03-c-05-03-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-03-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-03-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-03-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -3521,9 +2943,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-05-03" - }, + "fieldset_info": { "id": "2023-03-c-05-03" }, "fieldset_type": "marked" }, { @@ -3540,9 +2960,7 @@ "id": "2023-03-c-05-04-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -3554,7 +2972,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -3578,33 +2997,29 @@ "id": "2023-03-c-05-04-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-04-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-04-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-04-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -3622,9 +3037,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-05-04" - }, + "fieldset_info": { "id": "2023-03-c-05-04" }, "fieldset_type": "marked" }, { @@ -3635,9 +3048,7 @@ "id": "2023-03-c-05-05-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -3649,7 +3060,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -3673,33 +3085,29 @@ "id": "2023-03-c-05-05-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-05-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-05-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-05-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -3717,9 +3125,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-05-05" - }, + "fieldset_info": { "id": "2023-03-c-05-05" }, "fieldset_type": "marked" }, { @@ -3730,9 +3136,7 @@ "id": "2023-03-c-05-06-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -3744,7 +3148,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -3768,33 +3173,29 @@ "id": "2023-03-c-05-06-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-06-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-06-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-06-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -3812,9 +3213,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-05-06" - }, + "fieldset_info": { "id": "2023-03-c-05-06" }, "fieldset_type": "marked" }, { @@ -3826,9 +3225,7 @@ "id": "2023-03-c-05-07-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -3840,7 +3237,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -3864,33 +3262,29 @@ "id": "2023-03-c-05-07-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-07-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-07-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-07-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -3908,9 +3302,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-05-07" - }, + "fieldset_info": { "id": "2023-03-c-05-07" }, "fieldset_type": "marked" }, { @@ -3921,9 +3313,7 @@ "id": "2023-03-c-05-08-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -3935,7 +3325,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -3959,33 +3350,29 @@ "id": "2023-03-c-05-08-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-08-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-08-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-08-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -4003,18 +3390,14 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-05-08" - }, + "fieldset_info": { "id": "2023-03-c-05-08" }, "fieldset_type": "marked" }, { "id": "2023-03-c-05-09", "type": "text_multiline", "label": "Is there anything else you’d like to add about your data?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "hint": "This year, please report data about your cohort for this section.", @@ -4031,9 +3414,7 @@ "id": "2023-03-c-05-10-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -4045,7 +3426,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -4069,33 +3451,29 @@ "id": "2023-03-c-05-10-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-10-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-10-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-10-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -4113,9 +3491,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-05-10" - }, + "fieldset_info": { "id": "2023-03-c-05-10" }, "fieldset_type": "marked" }, { @@ -4126,9 +3502,7 @@ "id": "2023-03-c-05-11-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -4140,7 +3514,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -4164,33 +3539,29 @@ "id": "2023-03-c-05-11-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-11-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-11-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-11-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -4208,9 +3579,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-05-11" - }, + "fieldset_info": { "id": "2023-03-c-05-11" }, "fieldset_type": "marked" }, { @@ -4221,9 +3590,7 @@ "id": "2023-03-c-05-12-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -4235,7 +3602,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -4259,33 +3627,29 @@ "id": "2023-03-c-05-12-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-12-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-12-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-12-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -4303,9 +3667,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-05-12" - }, + "fieldset_info": { "id": "2023-03-c-05-12" }, "fieldset_type": "marked" }, { @@ -4317,9 +3679,7 @@ "id": "2023-03-c-05-13-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -4331,7 +3691,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -4355,33 +3716,29 @@ "id": "2023-03-c-05-13-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-13-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-13-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-13-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -4399,9 +3756,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-05-13" - }, + "fieldset_info": { "id": "2023-03-c-05-13" }, "fieldset_type": "marked" }, { @@ -4412,9 +3767,7 @@ "id": "2023-03-c-05-14-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -4426,7 +3779,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -4450,33 +3804,29 @@ "id": "2023-03-c-05-14-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-14-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-14-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-14-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -4494,9 +3844,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-05-14" - }, + "fieldset_info": { "id": "2023-03-c-05-14" }, "fieldset_type": "marked" }, { @@ -4514,9 +3862,7 @@ "id": "2023-03-c-05-15-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -4528,7 +3874,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -4552,33 +3899,29 @@ "id": "2023-03-c-05-15-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-15-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-15-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-15-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -4596,9 +3939,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-05-15" - }, + "fieldset_info": { "id": "2023-03-c-05-15" }, "fieldset_type": "marked" }, { @@ -4609,9 +3950,7 @@ "id": "2023-03-c-05-16-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -4623,7 +3962,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -4647,33 +3987,29 @@ "id": "2023-03-c-05-16-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-16-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-16-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-16-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -4691,9 +4027,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-05-16" - }, + "fieldset_info": { "id": "2023-03-c-05-16" }, "fieldset_type": "marked" }, { @@ -4704,9 +4038,7 @@ "id": "2023-03-c-05-17-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -4718,7 +4050,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -4742,33 +4075,29 @@ "id": "2023-03-c-05-17-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-17-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-17-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-17-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -4786,9 +4115,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-05-17" - }, + "fieldset_info": { "id": "2023-03-c-05-17" }, "fieldset_type": "marked" }, { @@ -4800,9 +4127,7 @@ "id": "2023-03-c-05-18-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -4814,7 +4139,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -4838,33 +4164,29 @@ "id": "2023-03-c-05-18-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-18-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-18-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-18-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -4882,9 +4204,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-05-18" - }, + "fieldset_info": { "id": "2023-03-c-05-18" }, "fieldset_type": "marked" }, { @@ -4895,10 +4215,7 @@ "id": "2023-03-c-05-19-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -4910,7 +4227,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -4934,33 +4252,29 @@ "id": "2023-03-c-05-19-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-19-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-19-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-19-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -4978,18 +4292,14 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-05-19" - }, + "fieldset_info": { "id": "2023-03-c-05-19" }, "fieldset_type": "marked" }, { "id": "2023-03-c-05-20", "type": "text_multiline", "label": "Is there anything else you’d like to add about your data?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -5031,14 +4341,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -5055,9 +4359,7 @@ "id": "2023-03-c-06-03-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -5069,7 +4371,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -5093,33 +4396,29 @@ "id": "2023-03-c-06-03-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-03-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-03-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-03-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -5137,9 +4436,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-06-03" - }, + "fieldset_info": { "id": "2023-03-c-06-03" }, "fieldset_type": "marked" }, { @@ -5156,9 +4453,7 @@ "id": "2023-03-c-06-04-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -5170,7 +4465,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -5194,33 +4490,29 @@ "id": "2023-03-c-06-04-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-04-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-04-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-04-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -5238,9 +4530,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-06-04" - }, + "fieldset_info": { "id": "2023-03-c-06-04" }, "fieldset_type": "marked" }, { @@ -5251,9 +4541,7 @@ "id": "2023-03-c-06-05-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -5265,7 +4553,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -5289,33 +4578,29 @@ "id": "2023-03-c-06-05-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-05-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-05-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-05-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -5333,9 +4618,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-06-05" - }, + "fieldset_info": { "id": "2023-03-c-06-05" }, "fieldset_type": "marked" }, { @@ -5346,9 +4629,7 @@ "id": "2023-03-c-06-06-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -5360,7 +4641,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -5384,33 +4666,29 @@ "id": "2023-03-c-06-06-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-06-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-06-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-06-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -5428,9 +4706,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-06-06" - }, + "fieldset_info": { "id": "2023-03-c-06-06" }, "fieldset_type": "marked" }, { @@ -5442,9 +4718,7 @@ "id": "2023-03-c-06-07-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -5456,7 +4730,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -5480,33 +4755,29 @@ "id": "2023-03-c-06-07-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-07-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-07-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-07-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -5524,9 +4795,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-06-07" - }, + "fieldset_info": { "id": "2023-03-c-06-07" }, "fieldset_type": "marked" }, { @@ -5537,9 +4806,7 @@ "id": "2023-03-c-06-08-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -5551,7 +4818,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -5575,33 +4843,29 @@ "id": "2023-03-c-06-08-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-08-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-08-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-08-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -5619,18 +4883,14 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-06-08" - }, + "fieldset_info": { "id": "2023-03-c-06-08" }, "fieldset_type": "marked" }, { "id": "2023-03-c-06-09", "type": "text_multiline", "label": "Is there anything else you’d like to add about your data?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "hint": "This year, please report data about your cohort for this section.", @@ -5647,10 +4907,7 @@ "id": "2023-03-c-06-10-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -5662,7 +4919,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -5686,33 +4944,29 @@ "id": "2023-03-c-06-10-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-10-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-10-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-10-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -5730,9 +4984,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-06-10" - }, + "fieldset_info": { "id": "2023-03-c-06-10" }, "fieldset_type": "marked" }, { @@ -5743,10 +4995,7 @@ "id": "2023-03-c-06-11-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -5758,7 +5007,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -5782,33 +5032,29 @@ "id": "2023-03-c-06-11-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-11-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-11-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-11-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -5826,9 +5072,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-06-11" - }, + "fieldset_info": { "id": "2023-03-c-06-11" }, "fieldset_type": "marked" }, { @@ -5839,10 +5083,7 @@ "id": "2023-03-c-06-12-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -5854,7 +5095,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -5878,33 +5120,29 @@ "id": "2023-03-c-06-12-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-12-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-12-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-12-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -5922,9 +5160,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-06-12" - }, + "fieldset_info": { "id": "2023-03-c-06-12" }, "fieldset_type": "marked" }, { @@ -5936,10 +5172,7 @@ "id": "2023-03-c-06-13-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -5951,7 +5184,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -5975,33 +5209,29 @@ "id": "2023-03-c-06-13-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-13-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-13-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-13-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -6019,9 +5249,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-06-13" - }, + "fieldset_info": { "id": "2023-03-c-06-13" }, "fieldset_type": "marked" }, { @@ -6032,10 +5260,7 @@ "id": "2023-03-c-06-14-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -6047,7 +5272,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -6071,33 +5297,29 @@ "id": "2023-03-c-06-14-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-14-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-14-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-14-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -6115,9 +5337,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-06-14" - }, + "fieldset_info": { "id": "2023-03-c-06-14" }, "fieldset_type": "marked" }, { @@ -6135,10 +5355,7 @@ "id": "2023-03-c-06-15-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -6150,7 +5367,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -6174,33 +5392,29 @@ "id": "2023-03-c-06-15-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-15-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-15-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-15-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -6218,9 +5432,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-06-15" - }, + "fieldset_info": { "id": "2023-03-c-06-15" }, "fieldset_type": "marked" }, { @@ -6231,10 +5443,7 @@ "id": "2023-03-c-06-16-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -6246,7 +5455,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -6270,33 +5480,29 @@ "id": "2023-03-c-06-16-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-16-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-16-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-16-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -6314,9 +5520,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-06-16" - }, + "fieldset_info": { "id": "2023-03-c-06-16" }, "fieldset_type": "marked" }, { @@ -6327,10 +5531,7 @@ "id": "2023-03-c-06-17-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -6342,7 +5543,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -6366,33 +5568,29 @@ "id": "2023-03-c-06-17-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-17-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-17-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-17-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -6410,9 +5608,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-06-17" - }, + "fieldset_info": { "id": "2023-03-c-06-17" }, "fieldset_type": "marked" }, { @@ -6424,10 +5620,7 @@ "id": "2023-03-c-06-18-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -6439,7 +5632,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -6463,33 +5657,29 @@ "id": "2023-03-c-06-18-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-18-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-18-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-18-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -6507,9 +5697,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-06-18" - }, + "fieldset_info": { "id": "2023-03-c-06-18" }, "fieldset_type": "marked" }, { @@ -6520,10 +5708,7 @@ "id": "2023-03-c-06-19-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -6535,7 +5720,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -6559,33 +5745,29 @@ "id": "2023-03-c-06-19-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-19-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-19-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-19-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -6603,18 +5785,14 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-06-19" - }, + "fieldset_info": { "id": "2023-03-c-06-19" }, "fieldset_type": "marked" }, { "id": "2023-03-c-06-20", "type": "text_multiline", "label": "Is there anything else you’d like to add about your data?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -6637,14 +5815,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -6666,18 +5838,12 @@ "label": "Health plans", "value": "health_plans" }, - { - "label": "States", - "value": "states" - }, + { "label": "States", "value": "states" }, { "label": "Third party administrator", "value": "third_party_administrator" }, - { - "label": "Other ", - "value": "other" - } + { "label": "Other ", "value": "other" } ] }, "questions": [ @@ -6685,9 +5851,7 @@ "id": "2023-03-d-01-02-a", "type": "text_multiline", "label": "What information or tools do you provide families with so they can track cost sharing?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -6717,9 +5881,7 @@ "id": "2023-03-d-01-02-b", "type": "text_multiline", "label": "Who tracks cost sharing?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -6750,17 +5912,13 @@ "id": "2023-03-d-01-03", "type": "text_multiline", "label": "How are healthcare providers notified that they shouldn’t charge families once families have reached the 5% cap?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-d-01-04", "type": "text_multiline", "label": "Approximately how many families exceeded the 5% cap in the last federal fiscal year?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-d-01-05", @@ -6769,14 +5927,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -6784,9 +5936,7 @@ "id": "2023-03-d-01-05-a", "type": "text_multiline", "label": "What did you find in your assessment?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -6810,14 +5960,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -6825,9 +5969,7 @@ "id": "2023-03-d-01-06-a", "type": "text_multiline", "label": "What did you find in your assessment?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -6848,9 +5990,7 @@ "id": "2023-03-d-01-07", "type": "text_multiline", "label": "You indicated in Section 1 that you changed your cost sharing requirements in the past federal fiscal year. How are you monitoring the impact of these changes on whether families apply, enroll, disenroll, and use CHIP health services? What have you found when monitoring the impact?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -6872,17 +6012,13 @@ "id": "2023-03-d-01-08", "type": "text_multiline", "label": "Is there anything else you’d like to add that wasn’t already covered?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-d-01-09", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -6925,14 +6061,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } } @@ -6972,14 +6102,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -6988,9 +6112,7 @@ "hint": "This only applies to states operating an 1115 demo.", "type": "text_multiline", "label": "What benefit package is offered as part of your premium assistance program, including any applicable minimum coverage requirements?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-e-02-04", @@ -7000,14 +6122,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -7019,18 +6135,9 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] } }, @@ -7042,14 +6149,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -7057,9 +6158,7 @@ "id": "2023-03-e-02-06-a", "type": "text_multiline", "label": "How do you track cost sharing to ensure families don’t pay more than 5% of the aggregate household income in a year?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -7080,9 +6179,7 @@ "id": "2023-03-e-02-07", "type": "integer", "label": "How many children were enrolled in the premium assistance program on average each month in FFY 2023?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "type": "fieldset", @@ -7091,25 +6188,19 @@ "id": "2023-03-e-02-08", "type": "money", "label": "What’s the average monthly contribution the state pays towards coverage of a child?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-e-02-09", "type": "text", "label": "What’s the average monthly contribution the employer pays towards coverage of a child?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-e-02-10", "type": "text", "label": "What’s the average monthly contribution the employee pays towards coverage of a child?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -7142,15 +6233,9 @@ ] ], "headers": [ - { - "contents": "State" - }, - { - "contents": "Employer" - }, - { - "contents": "Employee" - } + { "contents": "State" }, + { "contents": "Employer" }, + { "contents": "Employee" } ] }, "fieldset_type": "synthesized_table" @@ -7210,41 +6295,31 @@ "id": "2023-03-e-02-14", "type": "text_multiline", "label": "What strategies have been most effective in reducing the administrative barriers in order to provide premium assistance?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-e-02-15", "type": "text_multiline", "label": "What challenges did you experience with your premium assistance program in FFY 2023?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-e-02-16", "type": "text_multiline", "label": "What accomplishments did you experience with your premium assistance program in FFY 2023?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-e-02-17", "type": "text_multiline", "label": "Is there anything else you’d like to add that wasn’t already covered?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-e-02-18", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -7281,14 +6356,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -7299,14 +6368,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -7317,14 +6380,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -7332,9 +6389,7 @@ "id": "2023-03-f-01-04", "type": "text_multiline", "label": "What safeguards and procedures are in place for the prevention, investigation, and referral of fraud and abuse cases?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-f-01-05", @@ -7343,18 +6398,9 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] }, "questions": [ @@ -7362,9 +6408,7 @@ "id": "2023-03-f-01-05-a", "type": "text_multiline", "label": "What safeguards and procedures do the managed care plans have in place?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -7385,17 +6429,15 @@ "id": "2023-03-f-01-06", "type": "integer", "label": "How many eligibility denials have been appealed in a fair hearing in FFY 2023?", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-f-01-07", "type": "integer", "label": "How many cases have been found in favor of the beneficiary in FFY 2023?", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -7404,17 +6446,13 @@ "id": "2023-03-f-01-08", "type": "integer", "label": "How many cases related to provider credentialing were investigated in FFY 2023?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-f-01-09", "type": "integer", "label": "How many cases related to provider credentialing were referred to appropriate law enforcement officials in FFY 2023?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -7425,17 +6463,13 @@ "id": "2023-03-f-01-10", "type": "integer", "label": "How many cases related to provider billing were investigated in FFY 2023?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-f-01-11", "type": "integer", "label": "How many cases related to provider billing were referred to appropriate law enforcement officials in FFY 2023?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -7446,17 +6480,15 @@ "id": "2023-03-f-01-12", "type": "integer", "label": "How many cases related to beneficiary eligibility were investigated in FFY 2023?", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-f-01-13", "type": "integer", "label": "How many cases related to beneficiary eligibility were referred to appropriate law enforcement officials in FFY 2023?", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ] }, @@ -7467,10 +6499,7 @@ "answer": { "entry": null, "options": [ - { - "label": "CHIP only", - "value": "separate_chip_only" - }, + { "label": "CHIP only", "value": "separate_chip_only" }, { "label": "Medicaid and CHIP combined", "value": "medicaid_separate_chip_combined" @@ -7485,14 +6514,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -7500,9 +6523,7 @@ "id": "2023-03-f-01-15-a", "type": "text_multiline", "label": "How do you provide oversight of the contractors? ", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -7526,14 +6547,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -7541,9 +6556,7 @@ "id": "2023-03-f-01-16-a", "type": "text_multiline", "label": "What specifically are the contractors responsible for in terms of oversight?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -7564,17 +6577,13 @@ "id": "2023-03-f-01-17", "type": "text_multiline", "label": "Is there anything else you’d like to add that wasn’t already covered?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-f-01-18", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -7608,14 +6617,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -7627,9 +6630,7 @@ "id": "2023-03-g-01-02-a", "type": "integer", "label": "Total for all ages (0-18)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -7641,7 +6642,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -7667,49 +6669,43 @@ "id": "2023-03-g-01-02-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-g-01-02-c", "type": "integer", "label": "Ages 1-2", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-g-01-02-d", "type": "integer", "label": "Ages 3-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-g-01-02-e", "type": "integer", "label": "Ages 6-9", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-g-01-02-f", "type": "integer", "label": "Ages 10-14", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-g-01-02-g", "type": "integer", "label": "Ages 15-18", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -7727,9 +6723,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-g-01-02" - }, + "fieldset_info": { "id": "2023-03-g-01-02" }, "fieldset_type": "marked" }, { @@ -7740,9 +6734,7 @@ "id": "2023-03-g-01-03-a", "type": "integer", "label": "Total for all ages (0-18)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -7754,7 +6746,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -7780,49 +6773,43 @@ "id": "2023-03-g-01-03-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-g-01-03-c", "type": "integer", "label": "Ages 1-2", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-g-01-03-d", "type": "integer", "label": "Ages 3-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-g-01-03-e", "type": "integer", "label": "Ages 6-9", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-g-01-03-f", "type": "integer", "label": "Ages 10-14", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-g-01-03-g", "type": "integer", "label": "Ages 15-18", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -7840,9 +6827,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-g-01-03" - }, + "fieldset_info": { "id": "2023-03-g-01-03" }, "fieldset_type": "marked" }, { @@ -7859,9 +6844,7 @@ "id": "2023-03-g-01-04-a", "type": "integer", "label": "Total for all ages (0-18)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -7873,7 +6856,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -7899,49 +6883,43 @@ "id": "2023-03-g-01-04-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-g-01-04-c", "type": "integer", "label": "Ages 1-2", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-g-01-04-d", "type": "integer", "label": "Ages 3-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-g-01-04-e", "type": "integer", "label": "Ages 6-9", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-g-01-04-f", "type": "integer", "label": "Ages 10-14", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-g-01-04-g", "type": "integer", "label": "Ages 15-18", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -7959,9 +6937,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-g-01-04" - }, + "fieldset_info": { "id": "2023-03-g-01-04" }, "fieldset_type": "marked" }, { @@ -7979,9 +6955,7 @@ "id": "2023-03-g-01-05-a", "type": "integer", "label": "Total for all ages (0-18)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -7993,7 +6967,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -8019,49 +6994,43 @@ "id": "2023-03-g-01-05-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-g-01-05-c", "type": "integer", "label": "Ages 1-2", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-g-01-05-d", "type": "integer", "label": "Ages 3-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-g-01-05-e", "type": "integer", "label": "Ages 6-9", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-g-01-05-f", "type": "integer", "label": "Ages 10-14", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-g-01-05-g", "type": "integer", "label": "Ages 15-18", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -8079,9 +7048,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-g-01-05" - }, + "fieldset_info": { "id": "2023-03-g-01-05" }, "fieldset_type": "marked" }, { @@ -8094,9 +7061,8 @@ "id": "2023-03-g-01-06", "type": "integer", "label": "How many children in the “ages 6–9” group received a sealant on at least one permanent molar tooth during FFY 2023?", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "hint": "The sealant on a permanent molar tooth is provided by a dental professional for whom placing a sealant is within their scope of practice. It’s defined by HCPCS code D1351 (or equivalent CDT code D1351) based on an unduplicated paid, unpaid, or denied claim. Permanent molars are teeth numbered 2, 3, 14, 15, 18, 19, 30, and 31, and additionally — for states covering sealants on third molars (“wisdom teeth”) — teeth numbered 1, 16, 17, and 32.\n\nAll data should be based on the definitions in the Early and Periodic Screening, Diagnostic, and Treatment (EPSDT) Report (Form CMS-416).", @@ -8111,14 +7077,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -8129,18 +7089,14 @@ "id": "2023-03-g-01-07-a", "type": "integer", "label": "How many children were enrolled in supplemental dental coverage during FFY 2023?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-g-01-07-b", "hint": "This is the total number for all children between 0-18 years from question 1.", "type": "integer", "label": "How many children were enrolled in separate CHIP for at least 90 continuous days during FFY 2023?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "type": "fieldset", @@ -8174,9 +7130,7 @@ { "contents": "Children enrolled in Separate CHIP" }, - { - "contents": "Percentage" - } + { "contents": "Percentage" } ] }, "fieldset_type": "synthesized_table" @@ -8202,17 +7156,13 @@ "id": "2023-03-g-01-08", "type": "text_multiline", "label": "Is there anything else you’d like to add about your dental benefits? If you weren’t able to provide data, let us know why.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-g-01-09", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -8239,14 +7189,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -8258,14 +7202,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -8295,9 +7233,7 @@ "id": "2023-03-h-02-01", "type": "file_upload", "label": "Upload a summary report of your CAHPS survey results. This is optional if you already submitted CAHPS raw data to the AHRQ CAHPS database. Submit results only for the CHIP population, not for both Medicaid (Title XIX) and CHIP (Title XXI) together. Your data should represent children enrolled in all types of delivery systems (Managed Care, PCCM, and Fee for Service).", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-h-02-02", @@ -8310,18 +7246,12 @@ "label": "Medicaid Expansion CHIP", "value": "medicaid_exp_chip" }, - { - "label": "Separate CHIP", - "value": "separate_chip" - }, + { "label": "Separate CHIP", "value": "separate_chip" }, { "label": "Both Separate CHIP and Medicaid Expansion CHIP", "value": "combo" }, - { - "label": "Other", - "value": "other" - } + { "label": "Other", "value": "other" } ] } }, @@ -8332,18 +7262,9 @@ "answer": { "entry": null, "options": [ - { - "label": "CAHPS 5.1", - "value": "CAHPS 5.1" - }, - { - "label": "CAHPS 5.1H", - "value": "CAHPS 5.1H" - }, - { - "label": "Other", - "value": "Other" - } + { "label": "CAHPS 5.1", "value": "CAHPS 5.1" }, + { "label": "CAHPS 5.1H", "value": "CAHPS 5.1H" }, + { "label": "Other", "value": "Other" } ] } }, @@ -8354,18 +7275,12 @@ "answer": { "entry": null, "options": [ - { - "label": "None", - "value": "None" - }, + { "label": "None", "value": "None" }, { "label": "Children with Chronic Conditions", "value": "Children with Chronic Conditions" }, - { - "label": "Other", - "value": "Other" - } + { "label": "Other", "value": "Other" } ] } }, @@ -8380,14 +7295,8 @@ "label": "NCQA HEDIS CAHPS 5.1H", "value": "NCQA HEDIS CAHPS 5.1H" }, - { - "label": "HRQ CAHPS", - "value": "HRQ CAHPS" - }, - { - "label": "Other", - "value": "Other" - } + { "label": "HRQ CAHPS", "value": "HRQ CAHPS" }, + { "label": "Other", "value": "Other" } ] } }, @@ -8395,9 +7304,7 @@ "id": "2023-03-h-02-06", "type": "text_multiline", "label": "Is there anything else you'd like to add about your CAHPS survey results?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -8469,10 +7376,7 @@ "label": "Sample size was too small (fewer than 30)", "value": "Sample size was too small (fewer than 30)" }, - { - "label": "Other", - "value": "other" - } + { "label": "Other", "value": "other" } ] } }, @@ -8480,9 +7384,7 @@ "id": "2023-03-h-03-02", "type": "text_multiline", "label": "Explain in more detail why you weren’t able to collect the CAHPS survey.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -8510,7 +7412,7 @@ "parts": [ { "id": "2023-03-i-01", - "title": "\u00A0", + "title": " ", "type": "part", "questions": [ { @@ -8521,14 +7423,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } } @@ -8536,7 +7432,7 @@ }, { "id": "2023-03-i-02", - "title": "\u00A0", + "title": " ", "text": "Please answer the following questions for all of the state's approved HSIs as listed in section 2.2 of the CHIP state plan.", "type": "part", "questions": [ @@ -8554,9 +7450,7 @@ "id": "2023-03-i-02-01-01-01", "type": "text", "label": "What is the name of your HSI program?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-i-02-01-01-02", @@ -8565,14 +7459,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -8598,9 +7486,7 @@ "id": "2023-03-i-02-01-01-03", "type": "text_multiline", "label": "Which populations does the HSI program serve?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -8619,9 +7505,7 @@ "id": "2023-03-i-02-01-01-04", "type": "integer", "label": "How many children do you estimate are being served by the HSI program?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -8634,15 +7518,14 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "id": "2023-03-i-02-01-01-05", "type": "integer", "label": "How many children in the HSI program are below your state's FPL threshold? ", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -8655,7 +7538,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -8705,9 +7589,7 @@ "id": "2023-03-i-02-01-01-06", "type": "text_multiline", "label": "How do you measure the HSI program’s impact on the health of low-income children in your state? Define a metric to measure the impact. ", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -8726,9 +7608,7 @@ "id": "2023-03-i-02-01-01-07", "type": "text_multiline", "label": "What outcomes have you found when measuring the impact?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -8747,9 +7627,7 @@ "id": "2023-03-i-02-01-01-08", "type": "text_multiline", "label": "Is there anything else you'd like to add about this HSI program?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -8768,9 +7646,7 @@ "id": "2023-03-i-02-01-01-09", "type": "file_upload", "label": "Optional: Attach any additional documents.", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -8870,9 +7746,7 @@ "hint": "For example: In an effort to reduce the number of uninsured children, our goal is to increase enrollment by 1.5% annually until the state achieves 90% enrollment of all eligible children in the CHIP program.", "type": "text_multiline", "label": "Briefly describe your goal.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-01-02-01-02", @@ -8901,9 +7775,7 @@ "id": "2023-04-a-01-01-01-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -8936,17 +7808,14 @@ "hint": "For example: The number of children enrolled in CHIP in the last federal fiscal year.", "type": "text_medium", "label": "Which population are you measuring in the numerator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-01-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ] }, @@ -8959,17 +7828,14 @@ "hint": "For example: The total estimated number of children eligible for CHIP within the state in the last federal fiscal year.", "type": "text_medium", "label": "Which population are you measuring in the denominator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-01-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ] }, @@ -9020,34 +7886,26 @@ "id": "2023-04-a-01-01-01-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-01-02-01-10", "type": "text_multiline", "label": "What are you doing to continually make progress towards your goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-01-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-01-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -9065,9 +7923,7 @@ "hint": "You can edit the suggested objective so it matches what’s in your CHIP State Plan.", "type": "text_multiline", "label": "What is the next objective listed in your CHIP State Plan?", - "answer": { - "entry": "Increase access to care" - } + "answer": { "entry": "Increase access to care" } }, { "id": "2023-04-a-01-01-02-02", @@ -9082,9 +7938,7 @@ "hint": "For example: In an effort to increase access to care, our goal is to increase the number of children who have visited a primary care physician by 5% annually over the next five years (ending in 2029).", "type": "text_multiline", "label": "Briefly describe your goal as it relates to this objective.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-02-02-01-02", @@ -9113,9 +7967,7 @@ "id": "2023-04-a-01-01-02-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -9148,17 +8000,14 @@ "hint": "For example: The number of children of Hispanic ethnicity enrolled in CHIP who visited a primary care physician in the last federal fiscal year.", "type": "text_medium", "label": "Which population are you measuring in the numerator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-02-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ] }, @@ -9171,17 +8020,14 @@ "hint": "For example: The total number of children enrolled in CHIP in the last federal fiscal year.", "type": "text_medium", "label": "Which population are you measuring in the denominator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-02-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ] }, @@ -9232,34 +8078,26 @@ "id": "2023-04-a-01-01-02-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-02-02-01-10", "type": "text_multiline", "label": "What are you doing to continually make progress towards your goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-02-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-02-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -9294,9 +8132,7 @@ "hint": "For example: In an effort to increase the use of preventive care in rural communities, our goal is to increase the number of rural children who receive one or more well child visits by 5% annually until relative utilization is equivalent to all other CHIP populations within the state.", "type": "text_multiline", "label": "Briefly describe your goal as it relates to this objective.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-03-02-01-02", @@ -9325,9 +8161,7 @@ "id": "2023-04-a-01-01-03-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -9360,17 +8194,14 @@ "hint": "For example: The number of rural children who received one or more well child visits in the last federal fiscal year.", "type": "text_medium", "label": "Which population are you measuring in the numerator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-03-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ] }, @@ -9383,17 +8214,14 @@ "hint": "For example: The total number of rural children enrolled in CHIP.", "type": "text_medium", "label": "Which population are you measuring in the denominator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-03-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ] }, @@ -9444,34 +8272,26 @@ "id": "2023-04-a-01-01-03-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-03-02-01-10", "type": "text_multiline", "label": "What are you doing to continually make progress towards your goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-03-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-03-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -9488,9 +8308,7 @@ "id": "2023-04-a-01-01-04-01", "type": "text_multiline", "label": "What is the next objective listed in your CHIP State Plan?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-04-02", @@ -9504,9 +8322,7 @@ "id": "2023-04-a-01-01-04-02-01-01", "type": "text_multiline", "label": "Briefly describe your goal as it relates to this objective.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-04-02-01-02", @@ -9535,9 +8351,7 @@ "id": "2023-04-a-01-01-04-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -9570,17 +8384,14 @@ "hint": "For example: The number of children who received one or more well child visits in the last federal fiscal year.", "type": "text_medium", "label": "Which population are you measuring in the numerator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-04-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ] }, @@ -9593,17 +8404,14 @@ "hint": "For example: The total number of children enrolled in CHIP.", "type": "text_medium", "label": "Which population are you measuring in the denominator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-04-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ] }, @@ -9654,34 +8462,26 @@ "id": "2023-04-a-01-01-04-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-04-02-01-10", "type": "text_multiline", "label": "What are you doing to continually make progress towards your goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-04-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-04-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -9698,9 +8498,7 @@ "id": "2023-04-a-01-01-05-01", "type": "text_multiline", "label": "What is the next objective listed in your CHIP State Plan?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-05-02", @@ -9714,9 +8512,7 @@ "id": "2023-04-a-01-01-05-02-01-01", "type": "text_multiline", "label": "Briefly describe your goal as it relates to this objective.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-05-02-01-02", @@ -9745,9 +8541,7 @@ "id": "2023-04-a-01-01-05-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -9779,17 +8573,14 @@ "id": "2023-04-a-01-01-05-02-01-03", "type": "text_medium", "label": "Which population are you measuring in the numerator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-05-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ] }, @@ -9801,17 +8592,14 @@ "id": "2023-04-a-01-01-05-02-01-05", "type": "text_medium", "label": "Which population are you measuring in the denominator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-05-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ] }, @@ -9862,34 +8650,26 @@ "id": "2023-04-a-01-01-05-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-05-02-01-10", "type": "text_multiline", "label": "What are you doing to continually make progress towards your goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-05-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-05-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -9906,9 +8686,7 @@ "id": "2023-04-a-01-01-06-01", "type": "text_multiline", "label": "What is the next objective listed in your CHIP State Plan?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-06-02", @@ -9922,9 +8700,7 @@ "id": "2023-04-a-01-01-06-02-01-01", "type": "text_multiline", "label": "Briefly describe your goal as it relates to this objective.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-06-02-01-02", @@ -9953,9 +8729,7 @@ "id": "2023-04-a-01-01-06-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -9987,17 +8761,14 @@ "id": "2023-04-a-01-01-06-02-01-03", "type": "text_medium", "label": "Which population are you measuring in the numerator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-06-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ] }, @@ -10010,17 +8781,14 @@ "hint": "For example: The total number of eligible children in the last federal fiscal year.", "type": "text_medium", "label": "Which population are you measuring in the denominator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-06-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ] }, @@ -10071,34 +8839,26 @@ "id": "2023-04-a-01-01-06-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-06-02-01-10", "type": "text_multiline", "label": "What are you doing to continually make progress towards your goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-06-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-06-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -10120,34 +8880,26 @@ "id": "2023-04-a-02-01", "type": "text_multiline", "label": "Do you have other strategies for measuring and reporting on your performance goals? What are these strategies, and what information have you found through this research?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-02-02", "type": "text_multiline", "label": "Do you plan to add new strategies for measuring and reporting on your goals and objectives? What do you plan to do, and when will these data become available?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-02-03", "type": "text_multiline", "label": "Have you conducted any focused studies on your CHIP population? (For example: studies on adolescents, attention deficit disorder, substance use, behavioral health services access, health care disparities, special health care needs, or other emerging health care needs.) What have you discovered through this research?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-02-04", "hint": "For example: studies, analyses, or any other documents that address your performance goals.", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -10193,34 +8945,26 @@ "id": "2023-05-a-01-01-a", "type": "money", "label": "2023", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2023-05-a-01-01-b", "type": "money", "label": "2024", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-05-a-01-01-c", "type": "money", "label": "2025", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-05-a-01-01" - }, + "fieldset_info": { "id": "2023-05-a-01-01" }, "fieldset_type": "marked" }, { @@ -10234,34 +8978,26 @@ "id": "2023-05-a-01-02-a", "type": "money", "label": "2023", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2023-05-a-01-02-b", "type": "money", "label": "2024", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-05-a-01-02-c", "type": "money", "label": "2025", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-05-a-01-02" - }, + "fieldset_info": { "id": "2023-05-a-01-02" }, "fieldset_type": "marked" }, { @@ -10275,34 +9011,26 @@ "id": "2023-05-a-01-03-a", "type": "money", "label": "2023", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2023-05-a-01-03-b", "type": "money", "label": "2024", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-05-a-01-03-c", "type": "money", "label": "2025", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-05-a-01-03" - }, + "fieldset_info": { "id": "2023-05-a-01-03" }, "fieldset_type": "marked" }, { @@ -10316,34 +9044,26 @@ "id": "2023-05-a-01-04-a", "type": "money", "label": "2023", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2023-05-a-01-04-b", "type": "money", "label": "2024", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-05-a-01-04-c", "type": "money", "label": "2025", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-05-a-01-04" - }, + "fieldset_info": { "id": "2023-05-a-01-04" }, "fieldset_type": "marked" }, { @@ -10354,9 +9074,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Managed Care" - }, + { "contents": "Managed Care" }, { "actions": ["identity"], "targets": [ @@ -10377,9 +9095,7 @@ } ], [ - { - "contents": "Fee for Service" - }, + { "contents": "Fee for Service" }, { "actions": ["identity"], "targets": [ @@ -10400,9 +9116,7 @@ } ], [ - { - "contents": "Other benefit costs" - }, + { "contents": "Other benefit costs" }, { "actions": ["identity"], "targets": [ @@ -10446,9 +9160,7 @@ } ], [ - { - "contents": "Total benefit costs" - }, + { "contents": "Total benefit costs" }, { "actions": ["formula"], "formula": "<0> + <1> + <2> - <3>", @@ -10485,18 +9197,10 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "FFY 2023" - }, - { - "contents": "FFY 2024" - }, - { - "contents": "FFY 2025" - } + { "contents": "" }, + { "contents": "FFY 2023" }, + { "contents": "FFY 2024" }, + { "contents": "FFY 2025" } ] }, "fieldset_type": "synthesized_table" @@ -10520,34 +9224,26 @@ "id": "2023-05-a-02-01-a", "type": "money", "label": "2023", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2023-05-a-02-01-b", "type": "money", "label": "2024", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-05-a-02-01-c", "type": "money", "label": "2025", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-05-a-02-01" - }, + "fieldset_info": { "id": "2023-05-a-02-01" }, "fieldset_type": "marked" }, { @@ -10561,34 +9257,26 @@ "id": "2023-05-a-02-02-a", "type": "money", "label": "2023", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2023-05-a-02-02-b", "type": "money", "label": "2024", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-05-a-02-02-c", "type": "money", "label": "2025", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-05-a-02-02" - }, + "fieldset_info": { "id": "2023-05-a-02-02" }, "fieldset_type": "marked" }, { @@ -10602,34 +9290,26 @@ "id": "2023-05-a-02-03-a", "type": "money", "label": "2023", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2023-05-a-02-03-b", "type": "money", "label": "2024", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-05-a-02-03-c", "type": "money", "label": "2025", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-05-a-02-03" - }, + "fieldset_info": { "id": "2023-05-a-02-03" }, "fieldset_type": "marked" }, { @@ -10643,34 +9323,26 @@ "id": "2023-05-a-02-04-a", "type": "money", "label": "2023", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2023-05-a-02-04-b", "type": "money", "label": "2024", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-05-a-02-04-c", "type": "money", "label": "2025", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-05-a-02-04" - }, + "fieldset_info": { "id": "2023-05-a-02-04" }, "fieldset_type": "marked" }, { @@ -10684,34 +9356,26 @@ "id": "2023-05-a-02-05-a", "type": "money", "label": "2023", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2023-05-a-02-05-b", "type": "money", "label": "2024", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-05-a-02-05-c", "type": "money", "label": "2025", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-05-a-02-05" - }, + "fieldset_info": { "id": "2023-05-a-02-05" }, "fieldset_type": "marked" }, { @@ -10725,34 +9389,26 @@ "id": "2023-05-a-02-06-a", "type": "money", "label": "2023", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2023-05-a-02-06-b", "type": "money", "label": "2024", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-05-a-02-06-c", "type": "money", "label": "2025", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-05-a-02-06" - }, + "fieldset_info": { "id": "2023-05-a-02-06" }, "fieldset_type": "marked" }, { @@ -10766,34 +9422,26 @@ "id": "2023-05-a-02-07-a", "type": "money", "label": "2023", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2023-05-a-02-07-b", "type": "money", "label": "2024", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-05-a-02-07-c", "type": "money", "label": "2025", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-05-a-02-07" - }, + "fieldset_info": { "id": "2023-05-a-02-07" }, "fieldset_type": "marked" }, { @@ -10804,9 +9452,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Personnel" - }, + { "contents": "Personnel" }, { "actions": ["identity"], "targets": [ @@ -10827,9 +9473,7 @@ } ], [ - { - "contents": "General administration" - }, + { "contents": "General administration" }, { "actions": ["identity"], "targets": [ @@ -10850,9 +9494,7 @@ } ], [ - { - "contents": "Contractors and brokers" - }, + { "contents": "Contractors and brokers" }, { "actions": ["identity"], "targets": [ @@ -10873,9 +9515,7 @@ } ], [ - { - "contents": "Claims processing" - }, + { "contents": "Claims processing" }, { "actions": ["identity"], "targets": [ @@ -10896,9 +9536,7 @@ } ], [ - { - "contents": "Outreach and marketing" - }, + { "contents": "Outreach and marketing" }, { "actions": ["identity"], "targets": [ @@ -10919,9 +9557,7 @@ } ], [ - { - "contents": "Health Services Initiatives (HSI)" - }, + { "contents": "Health Services Initiatives (HSI)" }, { "actions": ["identity"], "targets": [ @@ -10942,9 +9578,7 @@ } ], [ - { - "contents": "Other administrative costs" - }, + { "contents": "Other administrative costs" }, { "actions": ["identity"], "targets": [ @@ -10965,9 +9599,7 @@ } ], [ - { - "contents": "Total administrative costs" - }, + { "contents": "Total administrative costs" }, { "actions": ["sum"], "targets": [ @@ -11006,9 +9638,7 @@ } ], [ - { - "contents": "10% administrative cap" - }, + { "contents": "10% administrative cap" }, { "actions": ["formula"], "formula": "(<0> + <1> + <2> - <3>) / 9", @@ -11045,18 +9675,10 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "FFY 2023" - }, - { - "contents": "FFY 2024" - }, - { - "contents": "FFY 2025" - } + { "contents": "" }, + { "contents": "FFY 2023" }, + { "contents": "FFY 2024" }, + { "contents": "FFY 2025" } ] }, "fieldset_type": "synthesized_table" @@ -11069,9 +9691,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Total program costs " - }, + { "contents": "Total program costs " }, { "actions": ["formula"], "formula": "<0> + <1> + <2> - <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10>", @@ -11128,48 +9748,30 @@ } ], [ - { - "contents": "eFMAP" - }, + { "contents": "eFMAP" }, { "actions": ["identity"], - "targets": [ - { - "lookupFmapFy": "2023" - } - ], + "targets": [{ "lookupFmapFy": "2023" }], "$comment": "This should pull the FMAP data from the API for this state and plug it in (FY23)" }, { "actions": ["identity"], - "targets": [ - { - "lookupFmapFy": "2024" - } - ], + "targets": [{ "lookupFmapFy": "2024" }], "$comment": "This should pull the FMAP data from the API for this state and plug it in (FY24)" }, { "actions": ["identity"], - "targets": [ - { - "lookupFmapFy": "2025" - } - ], + "targets": [{ "lookupFmapFy": "2025" }], "$comment": "This should pull the FMAP data from the API for this state and plug it in (FY25)" } ], [ - { - "contents": "Federal share" - }, + { "contents": "Federal share" }, { "actions": ["formula"], "formula": "(<0> / 100) * (<1> + <2> + <3> - <4> + <5> + <6> + <7> + <8> + <9> + <10> + <11>)", "targets": [ - { - "lookupFmapFy": "2023" - }, + { "lookupFmapFy": "2023" }, "$..*[?(@ && @.id=='2023-05-a-01-01-a')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-01-02-a')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-01-03-a')].answer.entry", @@ -11188,9 +9790,7 @@ "actions": ["formula"], "formula": "(<0> / 100) * (<1> + <2> + <3> - <4> + <5> + <6> + <7> + <8> + <9> + <10> + <11>)", "targets": [ - { - "lookupFmapFy": "2024" - }, + { "lookupFmapFy": "2024" }, "$..*[?(@ && @.id=='2023-05-a-01-01-b')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-01-02-b')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-01-03-b')].answer.entry", @@ -11209,9 +9809,7 @@ "actions": ["formula"], "formula": "(<0> / 100) * (<1> + <2> + <3> - <4> + <5> + <6> + <7> + <8> + <9> + <10> + <11>)", "targets": [ - { - "lookupFmapFy": "2025" - }, + { "lookupFmapFy": "2025" }, "$..*[?(@ && @.id=='2023-05-a-01-01-c')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-01-02-c')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-01-03-c')].answer.entry", @@ -11228,9 +9826,7 @@ } ], [ - { - "contents": "State share" - }, + { "contents": "State share" }, { "actions": ["formula"], "formula": "<0> + <1> + <2> - <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10> - ((<11> / 100) * (<12> + <13> + <14> - <15> + <16> + <17> + <18> + <19> + <20> + <21> + <22>))", @@ -11246,9 +9842,7 @@ "$..*[?(@ && @.id=='2023-05-a-02-05-a')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-02-06-a')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-02-07-a')].answer.entry", - { - "lookupFmapFy": "2023" - }, + { "lookupFmapFy": "2023" }, "$..*[?(@ && @.id=='2023-05-a-01-01-a')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-01-02-a')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-01-03-a')].answer.entry", @@ -11278,9 +9872,7 @@ "$..*[?(@ && @.id=='2023-05-a-02-05-b')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-02-06-b')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-02-07-b')].answer.entry", - { - "lookupFmapFy": "2024" - }, + { "lookupFmapFy": "2024" }, "$..*[?(@ && @.id=='2023-05-a-01-01-b')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-01-02-b')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-01-03-b')].answer.entry", @@ -11310,9 +9902,7 @@ "$..*[?(@ && @.id=='2023-05-a-02-05-c')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-02-06-c')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-02-07-c')].answer.entry", - { - "lookupFmapFy": "2025" - }, + { "lookupFmapFy": "2025" }, "$..*[?(@ && @.id=='2023-05-a-01-01-c')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-01-02-c')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-01-03-c')].answer.entry", @@ -11330,18 +9920,10 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "FFY 2023" - }, - { - "contents": "FFY 2024" - }, - { - "contents": "FFY 2025" - } + { "contents": "" }, + { "contents": "FFY 2023" }, + { "contents": "FFY 2024" }, + { "contents": "FFY 2025" } ] }, "fieldset_type": "synthesized_table" @@ -11378,10 +9960,7 @@ "label": "Tobacco settlement", "value": "tobacco settlement" }, - { - "label": "Other", - "value": "other" - } + { "label": "Other", "value": "other" } ] }, "questions": [ @@ -11389,9 +9968,7 @@ "id": "2023-05-a-02-08-a", "type": "text", "label": "What other type of funding did you receive?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -11415,14 +9992,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -11430,9 +10001,7 @@ "id": "2023-05-a-02-09-a", "type": "text_multiline", "label": "Briefly explain why your state didn’t have enough federal funding to cover your CHIP program costs.", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -11468,34 +10037,29 @@ "id": "2023-05-a-03-01-a", "type": "integer", "label": "2023", - "answer": { - "entry": null - }, - "comment": "This is the first real question so far in this part…" + "answer": { "entry": null }, + "comment": "This is the first real question so far in this part…", + "mask": "lessThanEleven" }, { "id": "2023-05-a-03-01-b", "type": "integer", "label": "2024", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-05-a-03-01-c", "type": "integer", "label": "2025", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-05-a-03-01" - }, + "fieldset_info": { "id": "2023-05-a-03-01" }, "fieldset_type": "marked" }, { @@ -11510,34 +10074,26 @@ "id": "2023-05-a-03-02-a", "type": "money", "label": "2023", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2023-05-a-03-02-b", "type": "money", "label": "2024", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-05-a-03-02-c", "type": "money", "label": "2025", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-05-a-03-02" - }, + "fieldset_info": { "id": "2023-05-a-03-02" }, "fieldset_type": "marked" }, { @@ -11546,9 +10102,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Eligible children" - }, + { "contents": "Eligible children" }, { "actions": ["identity"], "targets": [ @@ -11569,9 +10123,7 @@ } ], [ - { - "contents": "PMPM cost" - }, + { "contents": "PMPM cost" }, { "actions": ["identity"], "targets": [ @@ -11593,18 +10145,10 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "FFY 2023" - }, - { - "contents": "FFY 2024" - }, - { - "contents": "FFY 2025" - } + { "contents": "" }, + { "contents": "FFY 2023" }, + { "contents": "FFY 2024" }, + { "contents": "FFY 2025" } ] }, "fieldset_type": "synthesized_table" @@ -11628,34 +10172,29 @@ "id": "2023-05-a-04-01-a", "type": "integer", "label": "2023", - "answer": { - "entry": null - }, - "comment": "This is the first real question so far in this part…" + "answer": { "entry": null }, + "comment": "This is the first real question so far in this part…", + "mask": "lessThanEleven" }, { "id": "2023-05-a-04-01-b", "type": "integer", "label": "2024", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-05-a-04-01-c", "type": "integer", "label": "2025", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-05-a-04-01" - }, + "fieldset_info": { "id": "2023-05-a-04-01" }, "fieldset_type": "marked" }, { @@ -11670,34 +10209,26 @@ "id": "2023-05-a-04-02-a", "type": "money", "label": "2023", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2023-05-a-04-02-b", "type": "money", "label": "2024", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-05-a-04-02-c", "type": "money", "label": "2025", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-05-a-04-02" - }, + "fieldset_info": { "id": "2023-05-a-04-02" }, "fieldset_type": "marked" }, { @@ -11706,9 +10237,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Eligible children" - }, + { "contents": "Eligible children" }, { "actions": ["identity"], "targets": [ @@ -11729,9 +10258,7 @@ } ], [ - { - "contents": "PMPM cost" - }, + { "contents": "PMPM cost" }, { "actions": ["identity"], "targets": [ @@ -11753,18 +10280,10 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "FFY 2023" - }, - { - "contents": "FFY 2024" - }, - { - "contents": "FFY 2025" - } + { "contents": "" }, + { "contents": "FFY 2023" }, + { "contents": "FFY 2024" }, + { "contents": "FFY 2025" } ] }, "fieldset_type": "synthesized_table" @@ -11779,17 +10298,13 @@ "id": "2023-05-a-05-01", "type": "text_multiline", "label": "Is there anything else you’d like to add about your program finances that wasn’t already covered?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-05-a-05-02", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -11826,49 +10341,37 @@ "id": "2023-06-a-01-01", "type": "text_multiline", "label": "How has your state’s political and fiscal environment affected your ability to provide healthcare to low-income children and families?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-06-a-01-02", "type": "text_multiline", "label": "What’s the greatest challenge your CHIP program has faced in FFY 2023?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-06-a-01-03", "type": "text_multiline", "label": "What are some of the greatest accomplishments your CHIP program has experienced in FFY 2023?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-06-a-01-04", "type": "text_multiline", "label": "What changes have you made to your CHIP program in FFY 2023 or plan to make in FFY 2024? Why have you decided to make these changes?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-06-a-01-05", "type": "text_multiline", "label": "Is there anything else you’d like to add about your state’s challenges and accomplishments?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-06-a-01-06", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -11949,42 +10452,32 @@ "id": "2022-00-a-01-04", "label": "Contact name:", "type": "text", - "answer": { - "entry": "Haley Gov" - } + "answer": { "entry": "Haley Gov" } }, { "id": "2022-00-a-01-05", "label": "Job title:", "type": "text", - "answer": { - "entry": "Lead" - } + "answer": { "entry": "Lead" } }, { "id": "2022-00-a-01-06", "label": "Email:", "type": "email", - "answer": { - "entry": "haley@cms.gov" - } + "answer": { "entry": "haley@cms.gov" } }, { "id": "2022-00-a-01-07", "label": "Full mailing address:", "type": "mailing_address", - "answer": { - "entry": "address here" - }, + "answer": { "entry": "address here" }, "hint": "Include city, state, and zip code." }, { "id": "2022-00-a-01-08", "label": "Phone number:", "type": "phone_number", - "answer": { - "entry": "8004659988" - } + "answer": { "entry": "8004659988" } }, { "questions": [], @@ -12047,9 +10540,7 @@ "id": "2022-01-a-01-01-a", "label": "How much is your enrollment fee?", "type": "money", - "answer": { - "entry": "25" - } + "answer": { "entry": "25" } } ], "id": "2022-01-a-01-01", @@ -12057,14 +10548,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "yes" } @@ -12080,14 +10565,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" } @@ -12138,9 +10617,7 @@ "id": "2022-01-a-01-02-c", "label": "How much is the premium for one child?", "type": "money", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -12164,14 +10641,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" } @@ -12225,9 +10696,7 @@ "id": "2022-01-a-01-03-b", "label": "What's the maximum premium a family would be charged each year?", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "id": "2022-01-a-01-03", @@ -12235,14 +10704,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" } @@ -12251,9 +10714,7 @@ "id": "2022-01-a-01-04", "label": "Do premiums differ for different Medicaid Expansion CHIP populations beyond FPL (for example, by eligibility group)? If so, briefly explain the fee structure breakdown.", "type": "text_multiline", - "answer": { - "entry": "no" - } + "answer": { "entry": "no" } }, { "id": "2022-01-a-01-05", @@ -12261,18 +10722,12 @@ "type": "checkbox", "answer": { "options": [ - { - "value": "mco", - "label": "Managed Care" - }, + { "value": "mco", "label": "Managed Care" }, { "value": "pccm", "label": "Primary Care Case Management" }, - { - "value": "ffs", - "label": "Fee for Service" - } + { "value": "ffs", "label": "Fee for Service" } ], "entry": [null, "mco"] }, @@ -12282,9 +10737,7 @@ "id": "2022-01-a-01-06", "label": "Which delivery system(s) are available to which Medicaid Expansion CHIP populations? Indicate whether eligibility status, income level, age range, or other criteria determine which delivery system a population receives.", "type": "text_multiline", - "answer": { - "entry": "info here" - } + "answer": { "entry": "info here" } } ], "context_data": { @@ -12319,9 +10772,7 @@ "id": "2022-01-a-02-01-a", "label": "How much is your enrollment fee?", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "id": "2022-01-a-02-01", @@ -12329,14 +10780,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "yes" } @@ -12352,14 +10797,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" } @@ -12410,9 +10849,7 @@ "id": "2022-01-a-02-02-c", "label": "How much is the premium for one child?", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "context_data": { @@ -12436,14 +10873,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "yes" } @@ -12497,9 +10928,7 @@ "id": "2022-01-a-02-03-b", "label": "What's the maximum premium fee a family would be charged each year?", "type": "money", - "answer": { - "entry": "6" - } + "answer": { "entry": "6" } } ], "id": "2022-01-a-02-03", @@ -12507,14 +10936,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" } @@ -12523,9 +10946,7 @@ "id": "2022-01-a-02-04", "label": "Do your premiums differ for different CHIP populations beyond FPL (for example, by eligibility group)? If so, briefly explain the fee structure breakdown.", "type": "text_multiline", - "answer": { - "entry": "no" - } + "answer": { "entry": "no" } }, { "id": "2022-01-a-02-05", @@ -12533,18 +10954,12 @@ "type": "checkbox", "answer": { "options": [ - { - "value": "mco", - "label": "Managed Care" - }, + { "value": "mco", "label": "Managed Care" }, { "value": "pccm", "label": "Primary Care Case Management" }, - { - "value": "ffs", - "label": "Fee for Service" - } + { "value": "ffs", "label": "Fee for Service" } ], "entry": [null, "mco"] }, @@ -12554,9 +10969,7 @@ "id": "2022-01-a-02-06", "label": "Which delivery system(s) are available to which CHIP populations? Indicate whether eligibility status, income level, age range, or other criteria determine which delivery system a population receives.", "type": "text_multiline", - "answer": { - "entry": "no" - } + "answer": { "entry": "no" } } ], "context_data": { @@ -12578,18 +10991,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "n/a" } @@ -12603,18 +11007,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "n/a" } @@ -12628,18 +11023,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "n/a" }, @@ -12654,18 +11040,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "n/a" }, @@ -12680,95 +11057,53 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "n/a" } }, { - "context_data": { - "bullet_text": "Outreach efforts" - }, + "context_data": { "bullet_text": "Outreach efforts" }, "id": "2022-01-a-03-06", "label": "Have you made any changes to your outreach efforts?", "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "n/a" }, "hint": "For example: allotting more or less funding for outreach, or changing your target population." }, { - "context_data": { - "bullet_text": "Delivery system(s)" - }, + "context_data": { "bullet_text": "Delivery system(s)" }, "id": "2022-01-a-03-07", "label": "Have you made any changes to the delivery system(s)?", "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "n/a" }, "hint": "For example: transitioning from Fee for Service to Managed Care for different Medicaid Expansion CHIP populations." }, { - "context_data": { - "bullet_text": "Cost sharing" - }, + "context_data": { "bullet_text": "Cost sharing" }, "id": "2022-01-a-03-08", "label": "Have you made any changes to your cost sharing requirements?", "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "n/a" }, @@ -12783,18 +11118,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "n/a" }, @@ -12809,18 +11135,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "n/a" } @@ -12834,44 +11151,24 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "n/a" }, "hint": "For example: changing from the Medicaid Fair Hearing process to the review process used by all health insurance issuers statewide." }, { - "context_data": { - "bullet_text": "Premium assistance" - }, + "context_data": { "bullet_text": "Premium assistance" }, "id": "2022-01-a-03-12", "label": "Have you made any changes to premium assistance?", "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "n/a" }, @@ -12886,18 +11183,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "no" } @@ -12911,18 +11199,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "no" } @@ -12936,43 +11215,23 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "no" } }, { - "context_data": { - "bullet_text": "Other program areas" - }, + "context_data": { "bullet_text": "Other program areas" }, "id": "2022-01-a-03-16", "label": "Have you made changes to any other policy or program areas?", "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "yes" } @@ -12984,9 +11243,7 @@ "id": "2022-01-a-03-17", "label": "Briefly describe why you made these changes to your Medicaid Expansion CHIP program.", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-01-a-03-18", @@ -12994,18 +11251,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "no" } @@ -13067,18 +11315,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "no" } @@ -13092,18 +11331,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "no" } @@ -13117,18 +11347,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "no" }, @@ -13143,18 +11364,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "no" }, @@ -13169,121 +11381,68 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "no" } }, { - "context_data": { - "bullet_text": "Outreach efforts" - }, + "context_data": { "bullet_text": "Outreach efforts" }, "id": "2022-01-a-04-06", "label": "Have you made any changes to your outreach efforts?", "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "no" }, "hint": "For example: allotting more or less funding for outreach, or changing your target population." }, { - "context_data": { - "bullet_text": "Delivery system(s)" - }, + "context_data": { "bullet_text": "Delivery system(s)" }, "id": "2022-01-a-04-07", "label": "Have you made any changes to the delivery system(s)?", "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "no" }, "hint": "For example: transitioning from Fee for Service to Managed Care for different Separate CHIP populations." }, { - "context_data": { - "bullet_text": "Cost sharing" - }, + "context_data": { "bullet_text": "Cost sharing" }, "id": "2022-01-a-04-08", "label": "Have you made any changes to your cost sharing requirements?", "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "no" }, "hint": "For example: changing amounts, populations, or the collection process." }, { - "context_data": { - "bullet_text": "Crowd-out policies" - }, + "context_data": { "bullet_text": "Crowd-out policies" }, "id": "2022-01-a-04-09", "label": "Have you made any changes to substitution of coverage policies?", "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "no" }, @@ -13298,18 +11457,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "n/a" } @@ -13323,18 +11473,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "yes" } @@ -13348,44 +11489,24 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "n/a" }, "hint": "For example: changing from the Medicaid Fair Hearing process to the review process used by all health insurance issuers statewide." }, { - "context_data": { - "bullet_text": "Premium assistance" - }, + "context_data": { "bullet_text": "Premium assistance" }, "id": "2022-01-a-04-13", "label": "Have you made any changes to premium assistance?", "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "no" }, @@ -13400,18 +11521,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "n/a" } @@ -13425,18 +11537,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "yes" }, @@ -13451,18 +11554,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "n/a" }, @@ -13477,18 +11571,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "n/a" } @@ -13502,43 +11587,23 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "no" } }, { - "context_data": { - "bullet_text": "Other program areas" - }, + "context_data": { "bullet_text": "Other program areas" }, "id": "2022-01-a-04-19", "label": "Have you made changes to any other policy or program areas?", "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "no" } @@ -13550,9 +11615,7 @@ "id": "2022-01-a-04-20", "label": "Briefly describe why you made these changes to your Separate CHIP program.", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-01-a-04-21", @@ -13560,14 +11623,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" } @@ -13650,9 +11707,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Medicaid Expansion CHIP" - }, + { "contents": "Medicaid Expansion CHIP" }, { "lookupChipEnrollments": { "ffy": 2022, @@ -13675,9 +11730,7 @@ } ], [ - { - "contents": "Separate CHIP" - }, + { "contents": "Separate CHIP" }, { "lookupChipEnrollments": { "ffy": 2022, @@ -13701,18 +11754,14 @@ ] ], "headers": [ - { - "contents": "Program" - }, + { "contents": "Program" }, { "contents": "Number of children enrolled in FFY 2021" }, { "contents": "Number of children enrolled in FFY 2022" }, - { - "contents": "Percent change" - } + { "contents": "Percent change" } ] }, "fieldset_type": "synthesized_table", @@ -13750,9 +11799,7 @@ "id": "2022-02-a-01-01", "label": "If you had more than a 3% percent change from last year, what are some possible reasons why your enrollment numbers changed?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } } ], "id": "2022-02-a-01", @@ -13769,9 +11816,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "2013" - }, + { "contents": "2013" }, { "lookupAcs": { "ffy": "2013", @@ -13798,9 +11843,7 @@ } ], [ - { - "contents": "2014" - }, + { "contents": "2014" }, { "lookupAcs": { "ffy": "2014", @@ -13827,9 +11870,7 @@ } ], [ - { - "contents": "2015" - }, + { "contents": "2015" }, { "lookupAcs": { "ffy": "2015", @@ -13856,9 +11897,7 @@ } ], [ - { - "contents": "2016" - }, + { "contents": "2016" }, { "lookupAcs": { "ffy": "2016", @@ -13885,9 +11924,7 @@ } ], [ - { - "contents": "2017" - }, + { "contents": "2017" }, { "lookupAcs": { "ffy": "2017", @@ -13914,9 +11951,7 @@ } ], [ - { - "contents": "2018" - }, + { "contents": "2018" }, { "lookupAcs": { "ffy": "2018", @@ -13943,9 +11978,7 @@ } ], [ - { - "contents": "2019" - }, + { "contents": "2019" }, { "lookupAcs": { "ffy": "2019", @@ -13972,9 +12005,7 @@ } ], [ - { - "contents": "2020" - }, + { "contents": "2020" }, { "lookupAcs": { "ffy": "2020", @@ -14001,9 +12032,7 @@ } ], [ - { - "contents": "2021" - }, + { "contents": "2021" }, { "lookupAcs": { "ffy": "2021", @@ -14031,21 +12060,13 @@ ] ], "headers": [ - { - "contents": "Year" - }, - { - "contents": "Number of uninsured children" - }, - { - "contents": "Margin of error" - }, + { "contents": "Year" }, + { "contents": "Number of uninsured children" }, + { "contents": "Margin of error" }, { "contents": "Percent of uninsured children (of total children in your state)" }, - { - "contents": "Margin of error" - } + { "contents": "Margin of error" } ] }, "label": "", @@ -14067,9 +12088,7 @@ ] ], "headers": [ - { - "contents": "Percent change between 2019 and 2021" - } + { "contents": "Percent change between 2019 and 2021" } ] }, "fieldset_type": "synthesized_table", @@ -14107,9 +12126,7 @@ "id": "2022-02-a-02-01", "label": "What are some reasons why the number and/or percent of uninsured children has changed?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "questions": [ @@ -14130,9 +12147,7 @@ "id": "2022-02-a-02-02-a", "label": "What are some reasons why the American Community Survey estimates might not reflect the number of uninsured children in your state?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-02-a-02-02", @@ -14140,14 +12155,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" } @@ -14161,9 +12170,7 @@ "id": "2022-02-a-02-03-a", "label": "What is the alternate data source or methodology?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-02-a-02-03-b", @@ -14178,49 +12185,37 @@ "id": "2022-02-a-02-03-c", "label": "Define the population you’re measuring, including ages and federal poverty levels.", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-02-a-02-03-d", "label": "Give numbers and/or the percent of uninsured children for at least two points in time.", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-02-a-02-03-e", "label": "Why did your state choose to adopt this alternate data source?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-02-a-02-03-f", "label": "How reliable are these estimates? Provide standard errors, confidence intervals, and/or p-values if available.", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-02-a-02-03-g", "label": "What are the limitations of this alternate data source or methodology?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-02-a-02-03-h", "label": "How do you use this alternate data source in CHIP program planning?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -14243,14 +12238,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" } @@ -14259,17 +12248,13 @@ "id": "2022-02-a-02-04", "label": "Is there anything else you’d like to add about your enrollment and uninsured data?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-02-a-02-05", "label": "Optional: Attach any additional documents here.", "type": "file_upload", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-02-a-02", @@ -14323,9 +12308,7 @@ "id": "2022-03-a-01-01-a", "label": "What are you doing differently?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-03-a-01-01", @@ -14333,14 +12316,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" } @@ -14364,9 +12341,7 @@ "id": "2022-03-a-01-02-a", "label": "Have these efforts been successful? How have you measured the effectiveness of your outreach efforts?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-03-a-01-02", @@ -14374,14 +12349,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" }, @@ -14391,26 +12360,20 @@ "id": "2022-03-a-01-03", "label": "What methods have been most effective in reaching low-income, uninsured children?", "type": "text_multiline", - "answer": { - "entry": "test" - }, + "answer": { "entry": "test" }, "hint": "For example: TV, school outreach, or word of mouth." }, { "id": "2022-03-a-01-04", "label": "Is there anything else you’d like to add about your outreach efforts?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-03-a-01-05", "label": "Optional: Attach any additional documents here.", "type": "file_upload", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-03-a-01" @@ -14444,9 +12407,7 @@ "id": "2022-03-b-01-01-a", "label": "What percent of CHIP enrollees had access to private insurance at the time of application?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-03-b-01-01", @@ -14454,18 +12415,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "na", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "na", "label": "N/A" } ], "entry": "no" } @@ -14489,9 +12441,7 @@ "id": "2022-03-b-01-02-a", "label": "Which database do you use?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-03-b-01-02", @@ -14499,18 +12449,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "na", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "na", "label": "N/A" } ], "entry": "no" } @@ -14519,9 +12460,7 @@ "id": "2022-03-b-01-03", "label": "What percent of applicants screened for CHIP eligibility cannot be enrolled because they have group health plan coverage?", "type": "percentage", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "type": "fieldset", @@ -14535,9 +12474,7 @@ "id": "2022-03-b-01-04-a", "label": "How long is the waiting period?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -14571,9 +12508,7 @@ "id": "2022-03-b-01-04-b", "label": "Which populations does the waiting period apply to? (Include the FPL for each group.)", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "context_data": { @@ -14592,9 +12527,7 @@ "id": "2022-03-b-01-04-c", "label": "What exemptions apply to the waiting period?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "context_data": { @@ -14613,9 +12546,7 @@ "id": "2022-03-b-01-04-d", "label": "What percent of individuals subject to the waiting period meet a state or federal exemption?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -14630,18 +12561,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "na", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "na", "label": "N/A" } ], "entry": "no" } @@ -14652,17 +12574,13 @@ "id": "2022-03-b-01-05", "label": "Is there anything else you’d like to add about substitution of coverage that wasn’t already covered? Did you run into any limitations when collecting these data?", "type": "text_multiline", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-03-b-01-06", "label": "Optional: Attach any additional documents here.", "type": "file_upload", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-03-b-01" @@ -14686,17 +12604,13 @@ "id": "2022-03-c-01-01-a", "label": "What percent of children are presumptively enrolled in CHIP pending a full eligibility determination?", "type": "percentage", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-01-01-b", "label": "Of the children who are presumptively enrolled, what percent are determined fully eligible and enrolled in the program (upon completion of the full eligibility determination)?", "type": "percentage", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -14719,18 +12633,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "na", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "na", "label": "N/A" } ], "entry": "no" } @@ -14741,14 +12646,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" } @@ -14762,17 +12661,13 @@ "id": "2022-03-c-01-03-a", "label": "How many notices do you send to families before disenrolling a child from the program?", "type": "text", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-01-03-b", "label": "How many days before the end of the eligibility period did you send reminder notices to families?", "type": "text", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -14795,14 +12690,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" } @@ -14811,33 +12700,25 @@ "id": "2022-03-c-01-04", "label": "What else have you done to simplify the eligibility renewal process for families?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-03-c-01-05", "label": "Which retention strategies have you found to be most effective?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-03-c-01-06", "label": "How do you measure the effectiveness of your retention strategies? What data sources and methodology do you use to track retention?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-03-c-01-07", "label": "Is there anything else you’d like to add that wasn’t already covered?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } } ], "id": "2022-03-c-01", @@ -14850,18 +12731,14 @@ "id": "2022-03-c-02-01", "label": "How many applicants were denied CHIP coverage in FFY 2022?", "type": "integer", - "answer": { - "entry": "5" - }, + "answer": { "entry": "5" }, "hint": "Don’t include applicants being considered for redetermination — these data will be collected in Part 3." }, { "id": "2022-03-c-02-02", "label": "How many applicants were denied CHIP coverage for procedural reasons?", "type": "integer", - "answer": { - "entry": "5" - }, + "answer": { "entry": "5" }, "hint": "For example: They were denied because of an incomplete application, missing documentation, or a missing enrollment fee." }, { @@ -14870,43 +12747,33 @@ "id": "2022-03-c-02-03-a", "label": "How many applicants were denied CHIP (Title XXI) coverage and determined eligible for Medicaid (Title XIX) instead?", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "id": "2022-03-c-02-03", "label": "How many applicants were denied CHIP coverage for eligibility reasons?", "type": "integer", - "answer": { - "entry": "5" - }, + "answer": { "entry": "5" }, "hint": "For example: They were denied because their income was too high or too low, they were determined eligible for Medicaid instead, or they had other coverage available." }, { "id": "2022-03-c-02-04", "label": "How many applicants were denied CHIP coverage for other reasons?", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-03-c-02-05", "label": "Did you have any limitations in collecting these data?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "questions": [], "fieldset_info": { "rows": [ [ - { - "contents": "Total denials" - }, + { "contents": "Total denials" }, { "targets": [ "$..*[?(@ && @.id=='2022-03-c-02-01')].answer.entry" @@ -14921,9 +12788,7 @@ } ], [ - { - "contents": "Denied for procedural reasons" - }, + { "contents": "Denied for procedural reasons" }, { "targets": [ "$..*[?(@ && @.id=='2022-03-c-02-02')].answer.entry" @@ -14938,9 +12803,7 @@ } ], [ - { - "contents": "Denied for eligibility reasons" - }, + { "contents": "Denied for eligibility reasons" }, { "targets": [ "$..*[?(@ && @.id=='2022-03-c-02-03')].answer.entry" @@ -14955,9 +12818,7 @@ } ], [ - { - "contents": "Denials for other reasons" - }, + { "contents": "Denials for other reasons" }, { "targets": [ "$..*[?(@ && @.id=='2022-03-c-02-04')].answer.entry" @@ -14973,15 +12834,9 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "Number" - }, - { - "contents": "Percent" - } + { "contents": "" }, + { "contents": "Number" }, + { "contents": "Percent" } ] }, "label": "Table: CHIP Eligibility Denials (Not Redetermination)", @@ -15000,25 +12855,19 @@ "id": "2022-03-c-03-01", "label": "How many children were eligible for redetermination in CHIP in FFY 2022?", "type": "integer", - "answer": { - "entry": "8" - } + "answer": { "entry": "8" } }, { "id": "2022-03-c-03-02", "label": "Of the eligible children, how many were then screened for redetermination?", "type": "integer", - "answer": { - "entry": "8" - } + "answer": { "entry": "8" } }, { "id": "2022-03-c-03-03", "label": "How many children were retained in CHIP after redetermination?", "type": "integer", - "answer": { - "entry": "8" - } + "answer": { "entry": "8" } }, { "questions": [ @@ -15040,44 +12889,34 @@ "id": "2022-03-c-03-04-a", "label": "How many children were disenrolled for procedural reasons?", "type": "integer", - "answer": { - "entry": "8" - }, + "answer": { "entry": "8" }, "hint": "This could be due to an incomplete application, missing documentation, or a missing enrollment fee." }, { "id": "2022-03-c-03-04-b", "label": "How many children were disenrolled for eligibility reasons?", "type": "integer", - "answer": { - "entry": "8" - }, + "answer": { "entry": "8" }, "hint": "This could be due to income that was too high or too low, eligibility in Medicaid (Title XIX) instead, or access to private coverage." }, { "id": "2022-03-c-03-04-c", "label": "How many children were disenrolled for other reasons?", "type": "integer", - "answer": { - "entry": "8" - } + "answer": { "entry": "8" } } ], "id": "2022-03-c-03-04", "label": "How many children were disenrolled in CHIP after the redetermination process?", "type": "integer", - "answer": { - "entry": "8" - }, + "answer": { "entry": "8" }, "hint": "This number should be equal to the total of 4a, 4b, and 4c below." }, { "id": "2022-03-c-03-05", "label": "Did you have any limitations in collecting these data?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "questions": [], @@ -15136,15 +12975,9 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "Number" - }, - { - "contents": "Percent" - } + { "contents": "" }, + { "contents": "Number" }, + { "contents": "Percent" } ] }, "label": "Table: Redetermination in CHIP ", @@ -15226,15 +13059,9 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "Number" - }, - { - "contents": "Percent" - } + { "contents": "" }, + { "contents": "Number" }, + { "contents": "Percent" } ] }, "comment": "This is assuming that we make the user manually enter the answer to question 4; otherwise we don't currently have a way to support this functionality; see the comment on question 4 above.", @@ -15254,25 +13081,19 @@ "id": "2022-03-c-04-01", "label": "How many children were eligible for redetermination in Medicaid in FFY 2022?", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-03-c-04-02", "label": "Of the eligible children, how many were then screened for redetermination?", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-03-c-04-03", "label": "How many children were retained in Medicaid after redetermination?", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "questions": [ @@ -15294,44 +13115,34 @@ "id": "2022-03-c-04-04-a", "label": "How many children were disenrolled for procedural reasons?", "type": "integer", - "answer": { - "entry": "5" - }, + "answer": { "entry": "5" }, "hint": "This could be due to an incomplete application, missing documentation, or a missing enrollment fee." }, { "id": "2022-03-c-04-04-b", "label": "How many children were disenrolled for eligibility reasons?", "type": "integer", - "answer": { - "entry": "5" - }, + "answer": { "entry": "5" }, "hint": "This could be due to an income that was too high and/or eligibility in CHIP instead." }, { "id": "2022-03-c-04-04-c", "label": "How many children were disenrolled for other reasons?", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "id": "2022-03-c-04-04", "label": "How many children were disenrolled in Medicaid after the redetermination process?", "type": "integer", - "answer": { - "entry": "5" - }, + "answer": { "entry": "5" }, "hint": "This number should be equal to the total of 4a, 4b, and 4c below." }, { "id": "2022-03-c-04-05", "label": "Did you have any limitations in collecting these data?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "questions": [], @@ -15390,15 +13201,9 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "Number" - }, - { - "contents": "Percent" - } + { "contents": "" }, + { "contents": "Number" }, + { "contents": "Percent" } ] }, "label": "Table: Redetermination in Medicaid ", @@ -15480,15 +13285,9 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "Number" - }, - { - "contents": "Percent" - } + { "contents": "" }, + { "contents": "Number" }, + { "contents": "Percent" } ] }, "comment": "This is assuming that we make the user manually enter the answer to question 4; otherwise we don't currently have a way to support this functionality; see the comment on question 4 above.", @@ -15534,14 +13333,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" }, @@ -15570,9 +13363,7 @@ "id": "2022-03-c-05-03-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "questions": [ @@ -15595,33 +13386,25 @@ "id": "2022-03-c-05-03-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-05-03-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-05-03-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-05-03-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -15640,9 +13423,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-05-03" - }, + "fieldset_info": { "id": "2022-03-c-05-03" }, "label": "How many children were newly enrolled in CHIP between January and March 2022?", "fieldset_type": "marked", "type": "fieldset" @@ -15670,9 +13451,7 @@ "id": "2022-03-c-05-04-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "questions": [ @@ -15695,33 +13474,25 @@ "id": "2022-03-c-05-04-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-05-04-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-05-04-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-05-04-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -15740,9 +13511,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-05-04" - }, + "fieldset_info": { "id": "2022-03-c-05-04" }, "label": "How many children were continuously enrolled in CHIP six months later?", "fieldset_type": "marked", "type": "fieldset", @@ -15766,9 +13535,7 @@ "id": "2022-03-c-05-05-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "questions": [ @@ -15791,33 +13558,25 @@ "id": "2022-03-c-05-05-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-05-05-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-05-05-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-05-05-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -15836,9 +13595,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-05-05" - }, + "fieldset_info": { "id": "2022-03-c-05-05" }, "label": "How many children had a break in CHIP coverage but were re-enrolled in CHIP six months later?", "fieldset_type": "marked", "type": "fieldset" @@ -15861,9 +13618,7 @@ "id": "2022-03-c-05-06-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "questions": [ @@ -15886,33 +13641,25 @@ "id": "2022-03-c-05-06-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-05-06-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-05-06-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-05-06-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -15931,9 +13678,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-05-06" - }, + "fieldset_info": { "id": "2022-03-c-05-06" }, "label": "Of the children who had a break in CHIP coverage (in the previous question), how many were enrolled in Medicaid during the break?", "fieldset_type": "marked", "type": "fieldset" @@ -15956,9 +13701,7 @@ "id": "2022-03-c-05-07-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "questions": [ @@ -15981,33 +13724,25 @@ "id": "2022-03-c-05-07-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-05-07-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-05-07-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-05-07-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -16026,9 +13761,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-05-07" - }, + "fieldset_info": { "id": "2022-03-c-05-07" }, "label": "How many children were no longer enrolled in CHIP six months later?", "fieldset_type": "marked", "type": "fieldset", @@ -16052,9 +13785,7 @@ "id": "2022-03-c-05-08-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "questions": [ @@ -16077,33 +13808,25 @@ "id": "2022-03-c-05-08-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-05-08-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-05-08-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-05-08-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -16122,9 +13845,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-05-08" - }, + "fieldset_info": { "id": "2022-03-c-05-08" }, "label": "Of the children who were no longer enrolled in CHIP (in the previous question), how many were enrolled in Medicaid six months later?", "fieldset_type": "marked", "type": "fieldset" @@ -16133,9 +13854,7 @@ "id": "2022-03-c-05-09", "label": "Is there anything else you’d like to add about your data?", "type": "text_multiline", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "questions": [], @@ -16161,10 +13880,7 @@ "id": "2022-03-c-05-10-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "questions": [ @@ -16187,37 +13903,25 @@ "id": "2022-03-c-05-10-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-10-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-10-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-10-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } } ], "context_data": { @@ -16236,9 +13940,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-05-10" - }, + "fieldset_info": { "id": "2022-03-c-05-10" }, "label": "How many children were continuously enrolled in CHIP 12 months later?", "fieldset_type": "marked", "type": "fieldset", @@ -16262,10 +13964,7 @@ "id": "2022-03-c-05-11-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "questions": [ @@ -16288,37 +13987,25 @@ "id": "2022-03-c-05-11-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-11-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-11-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-11-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } } ], "context_data": { @@ -16337,9 +14024,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-05-11" - }, + "fieldset_info": { "id": "2022-03-c-05-11" }, "label": "How many children had a break in CHIP coverage but were re-enrolled in CHIP 12 months later?", "fieldset_type": "marked", "type": "fieldset" @@ -16362,10 +14047,7 @@ "id": "2022-03-c-05-12-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "questions": [ @@ -16388,37 +14070,25 @@ "id": "2022-03-c-05-12-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-12-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-12-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-12-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } } ], "context_data": { @@ -16437,9 +14107,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-05-12" - }, + "fieldset_info": { "id": "2022-03-c-05-12" }, "label": "Of the children who had a break in CHIP coverage (in the previous question), how many were enrolled in Medicaid during the break?", "fieldset_type": "marked", "type": "fieldset" @@ -16462,10 +14130,7 @@ "id": "2022-03-c-05-13-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "questions": [ @@ -16488,37 +14153,25 @@ "id": "2022-03-c-05-13-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-13-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-13-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-13-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } } ], "context_data": { @@ -16537,9 +14190,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-05-13" - }, + "fieldset_info": { "id": "2022-03-c-05-13" }, "label": "How many children were no longer enrolled in CHIP 12 months later?", "fieldset_type": "marked", "type": "fieldset", @@ -16563,10 +14214,7 @@ "id": "2022-03-c-05-14-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "questions": [ @@ -16589,37 +14237,25 @@ "id": "2022-03-c-05-14-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-14-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-14-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-14-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } } ], "context_data": { @@ -16638,9 +14274,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-05-14" - }, + "fieldset_info": { "id": "2022-03-c-05-14" }, "label": "Of the children who were no longer enrolled in CHIP (in the previous question), how many were enrolled in Medicaid 12 months later?", "fieldset_type": "marked", "type": "fieldset" @@ -16669,10 +14303,7 @@ "id": "2022-03-c-05-15-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "questions": [ @@ -16695,37 +14326,25 @@ "id": "2022-03-c-05-15-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-15-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-15-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-15-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } } ], "context_data": { @@ -16744,9 +14363,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-05-15" - }, + "fieldset_info": { "id": "2022-03-c-05-15" }, "label": "How many children were continuously enrolled in CHIP 18 months later?", "fieldset_type": "marked", "type": "fieldset", @@ -16770,10 +14387,7 @@ "id": "2022-03-c-05-16-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "questions": [ @@ -16796,37 +14410,25 @@ "id": "2022-03-c-05-16-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-16-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-16-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-16-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } } ], "context_data": { @@ -16845,9 +14447,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-05-16" - }, + "fieldset_info": { "id": "2022-03-c-05-16" }, "label": "How many children had a break in CHIP coverage but were re-enrolled in CHIP 18 months later?", "fieldset_type": "marked", "type": "fieldset" @@ -16870,10 +14470,7 @@ "id": "2022-03-c-05-17-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "questions": [ @@ -16896,37 +14493,25 @@ "id": "2022-03-c-05-17-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-17-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-17-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-17-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } } ], "context_data": { @@ -16945,9 +14530,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-05-17" - }, + "fieldset_info": { "id": "2022-03-c-05-17" }, "label": "Of the children who had a break in CHIP coverage (in the previous question), how many were enrolled in Medicaid during the break?", "fieldset_type": "marked", "type": "fieldset" @@ -16970,10 +14553,7 @@ "id": "2022-03-c-05-18-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "questions": [ @@ -16996,37 +14576,25 @@ "id": "2022-03-c-05-18-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-18-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-18-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-18-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } } ], "context_data": { @@ -17045,9 +14613,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-05-18" - }, + "fieldset_info": { "id": "2022-03-c-05-18" }, "label": "How many children were no longer enrolled in CHIP 18 months later?", "fieldset_type": "marked", "type": "fieldset", @@ -17071,10 +14637,7 @@ "id": "2022-03-c-05-19-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "questions": [ @@ -17097,37 +14660,25 @@ "id": "2022-03-c-05-19-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-19-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-19-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-19-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } } ], "context_data": { @@ -17146,9 +14697,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-05-19" - }, + "fieldset_info": { "id": "2022-03-c-05-19" }, "label": "Of the children who were no longer enrolled in CHIP (in the previous question), how many were enrolled in Medicaid 18 months later?", "fieldset_type": "marked", "type": "fieldset" @@ -17157,9 +14706,7 @@ "id": "2022-03-c-05-20", "label": "Is there anything else you’d like to add about your data?", "type": "text_multiline", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "id": "2022-03-c-05", @@ -17199,14 +14746,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" }, @@ -17235,9 +14776,7 @@ "id": "2022-03-c-06-03-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "questions": [ @@ -17260,33 +14799,25 @@ "id": "2022-03-c-06-03-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-06-03-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-06-03-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-06-03-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -17305,9 +14836,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-06-03" - }, + "fieldset_info": { "id": "2022-03-c-06-03" }, "label": "How many children were newly enrolled in Medicaid between January and March 2022?", "fieldset_type": "marked", "type": "fieldset" @@ -17335,9 +14864,7 @@ "id": "2022-03-c-06-04-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "questions": [ @@ -17360,33 +14887,25 @@ "id": "2022-03-c-06-04-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-06-04-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-06-04-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-06-04-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -17405,9 +14924,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-06-04" - }, + "fieldset_info": { "id": "2022-03-c-06-04" }, "label": "How many children were continuously enrolled in Medicaid six months later?", "fieldset_type": "marked", "type": "fieldset", @@ -17431,9 +14948,7 @@ "id": "2022-03-c-06-05-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "questions": [ @@ -17456,33 +14971,25 @@ "id": "2022-03-c-06-05-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-06-05-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-06-05-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-06-05-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -17501,9 +15008,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-06-05" - }, + "fieldset_info": { "id": "2022-03-c-06-05" }, "label": "How many children had a break in Medicaid coverage but were re-enrolled in Medicaid six months later?", "fieldset_type": "marked", "type": "fieldset" @@ -17526,9 +15031,7 @@ "id": "2022-03-c-06-06-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "questions": [ @@ -17551,33 +15054,25 @@ "id": "2022-03-c-06-06-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-06-06-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-06-06-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-06-06-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -17596,9 +15091,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-06-06" - }, + "fieldset_info": { "id": "2022-03-c-06-06" }, "label": "Of the children who had a break in Medicaid coverage (in the previous question), how many were enrolled in CHIP during the break?", "fieldset_type": "marked", "type": "fieldset" @@ -17621,9 +15114,7 @@ "id": "2022-03-c-06-07-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "questions": [ @@ -17646,33 +15137,25 @@ "id": "2022-03-c-06-07-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-06-07-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-06-07-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-06-07-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -17691,9 +15174,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-06-07" - }, + "fieldset_info": { "id": "2022-03-c-06-07" }, "label": "How many children were no longer enrolled in Medicaid six months later?", "fieldset_type": "marked", "type": "fieldset", @@ -17717,9 +15198,7 @@ "id": "2022-03-c-06-08-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "questions": [ @@ -17742,33 +15221,25 @@ "id": "2022-03-c-06-08-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-06-08-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-06-08-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-06-08-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -17787,9 +15258,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-06-08" - }, + "fieldset_info": { "id": "2022-03-c-06-08" }, "label": "Of the children who were no longer enrolled in Medicaid (in the previous question), how many were enrolled in CHIP six months later?", "fieldset_type": "marked", "type": "fieldset" @@ -17798,9 +15267,7 @@ "id": "2022-03-c-06-09", "label": "Is there anything else you’d like to add about your data?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "questions": [], @@ -17826,10 +15293,7 @@ "id": "2022-03-c-06-10-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "questions": [ @@ -17852,37 +15316,25 @@ "id": "2022-03-c-06-10-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-10-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-10-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-10-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } } ], "context_data": { @@ -17901,9 +15353,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-06-10" - }, + "fieldset_info": { "id": "2022-03-c-06-10" }, "label": "How many children were continuously enrolled in Medicaid 12 months later?", "fieldset_type": "marked", "type": "fieldset", @@ -17927,10 +15377,7 @@ "id": "2022-03-c-06-11-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "questions": [ @@ -17953,37 +15400,25 @@ "id": "2022-03-c-06-11-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-11-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-11-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-11-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } } ], "context_data": { @@ -18002,9 +15437,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-06-11" - }, + "fieldset_info": { "id": "2022-03-c-06-11" }, "label": "How many children had a break in Medicaid coverage but were re-enrolled in Medicaid 12 months later?", "fieldset_type": "marked", "type": "fieldset" @@ -18027,10 +15460,7 @@ "id": "2022-03-c-06-12-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "questions": [ @@ -18053,37 +15483,25 @@ "id": "2022-03-c-06-12-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-12-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-12-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-12-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } } ], "context_data": { @@ -18102,9 +15520,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-06-12" - }, + "fieldset_info": { "id": "2022-03-c-06-12" }, "label": "Of the children who had a break in Medicaid coverage (in the previous question), how many were enrolled in CHIP during the break?", "fieldset_type": "marked", "type": "fieldset" @@ -18127,10 +15543,7 @@ "id": "2022-03-c-06-13-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "questions": [ @@ -18153,37 +15566,25 @@ "id": "2022-03-c-06-13-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-13-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-13-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-13-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } } ], "context_data": { @@ -18202,9 +15603,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-06-13" - }, + "fieldset_info": { "id": "2022-03-c-06-13" }, "label": "How many children were no longer enrolled in Medicaid 12 months later?", "fieldset_type": "marked", "type": "fieldset", @@ -18228,10 +15627,7 @@ "id": "2022-03-c-06-14-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "questions": [ @@ -18254,37 +15650,25 @@ "id": "2022-03-c-06-14-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-14-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-14-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-14-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } } ], "context_data": { @@ -18303,9 +15687,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-06-14" - }, + "fieldset_info": { "id": "2022-03-c-06-14" }, "label": "Of the children who were no longer enrolled in Medicaid (in the previous question), how many were enrolled in CHIP 12 months later?", "fieldset_type": "marked", "type": "fieldset" @@ -18334,10 +15716,7 @@ "id": "2022-03-c-06-15-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "questions": [ @@ -18360,37 +15739,25 @@ "id": "2022-03-c-06-15-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-15-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-15-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-15-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } } ], "context_data": { @@ -18409,9 +15776,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-06-15" - }, + "fieldset_info": { "id": "2022-03-c-06-15" }, "label": "How many children were continuously enrolled in Medicaid 18 months later?", "fieldset_type": "marked", "type": "fieldset", @@ -18435,10 +15800,7 @@ "id": "2022-03-c-06-16-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "questions": [ @@ -18461,37 +15823,25 @@ "id": "2022-03-c-06-16-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-16-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-16-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-16-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } } ], "context_data": { @@ -18510,9 +15860,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-06-16" - }, + "fieldset_info": { "id": "2022-03-c-06-16" }, "label": "How many children had a break in Medicaid coverage but were re-enrolled in Medicaid 18 months later?", "fieldset_type": "marked", "type": "fieldset" @@ -18535,10 +15883,7 @@ "id": "2022-03-c-06-17-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "questions": [ @@ -18561,37 +15906,25 @@ "id": "2022-03-c-06-17-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-17-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-17-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-17-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } } ], "context_data": { @@ -18610,9 +15943,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-06-17" - }, + "fieldset_info": { "id": "2022-03-c-06-17" }, "label": "Of the children who had a break in Medicaid coverage (in the previous question), how many were enrolled in CHIP during the break?", "fieldset_type": "marked", "type": "fieldset" @@ -18635,10 +15966,7 @@ "id": "2022-03-c-06-18-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "questions": [ @@ -18661,37 +15989,25 @@ "id": "2022-03-c-06-18-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-18-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-18-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-18-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } } ], "context_data": { @@ -18710,9 +16026,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-06-18" - }, + "fieldset_info": { "id": "2022-03-c-06-18" }, "label": "How many children were no longer enrolled in Medicaid 18 months later?", "fieldset_type": "marked", "type": "fieldset", @@ -18736,10 +16050,7 @@ "id": "2022-03-c-06-19-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "questions": [ @@ -18762,37 +16073,25 @@ "id": "2022-03-c-06-19-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-19-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-19-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-19-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } } ], "context_data": { @@ -18811,9 +16110,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-06-19" - }, + "fieldset_info": { "id": "2022-03-c-06-19" }, "label": "Of the children who were no longer enrolled in Medicaid (in the previous question), how many were enrolled in CHIP 18 months later?", "fieldset_type": "marked", "type": "fieldset" @@ -18822,9 +16119,7 @@ "id": "2022-03-c-06-20", "label": "Is there anything else you’d like to add about your data?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } } ], "id": "2022-03-c-06", @@ -18848,14 +16143,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "yes" } @@ -18893,9 +16182,7 @@ "id": "2022-03-d-01-02-a", "label": "What information or tools do you provide families with so they can track cost sharing?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "context_data": { @@ -18924,9 +16211,7 @@ "id": "2022-03-d-01-02-b", "label": "Who tracks cost sharing?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-03-d-01-02", @@ -18942,18 +16227,12 @@ "value": "health_plans", "label": "Health plans" }, - { - "value": "states", - "label": "States" - }, + { "value": "states", "label": "States" }, { "value": "third_party_administrator", "label": "Third party administrator" }, - { - "value": "other", - "label": "Other " - } + { "value": "other", "label": "Other " } ], "entry": "health_plans" } @@ -18962,17 +16241,13 @@ "id": "2022-03-d-01-03", "label": "How are healthcare providers notified that they shouldn’t charge families once families have reached the 5% cap?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-03-d-01-04", "label": "Approximately how many families exceeded the 5% cap in the last federal fiscal year?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "questions": [ @@ -18993,9 +16268,7 @@ "id": "2022-03-d-01-05-a", "label": "What did you find in your assessment?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-03-d-01-05", @@ -19003,14 +16276,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" } @@ -19034,9 +16301,7 @@ "id": "2022-03-d-01-06-a", "label": "What did you find in your assessment?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-03-d-01-06", @@ -19044,14 +16309,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" } @@ -19076,25 +16335,19 @@ "id": "2022-03-d-01-07", "label": "You indicated in Section 1 that you changed your cost sharing requirements in the past federal fiscal year. How are you monitoring the impact of these changes on whether families apply, enroll, disenroll, and use CHIP health services? What have you found when monitoring the impact?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-d-01-08", "label": "Is there anything else you’d like to add that wasn’t already covered?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-03-d-01-09", "label": "Optional: Attach any additional documents here.", "type": "file_upload", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -19137,14 +16390,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" } @@ -19183,14 +16430,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": null } @@ -19199,9 +16440,7 @@ "id": "2022-03-e-02-03", "label": "What benefit package is offered as part of your premium assistance program, including any applicable minimum coverage requirements?", "type": "text_multiline", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "hint": "This only applies to states operating an 1115 demo." }, { @@ -19210,14 +16449,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": null }, @@ -19229,18 +16462,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "na", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "na", "label": "N/A" } ], "entry": null }, @@ -19265,9 +16489,7 @@ "id": "2022-03-e-02-06-a", "label": "How do you track cost sharing to ensure families don’t pay more than 5% of the aggregate household income in a year?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-03-e-02-06", @@ -19275,14 +16497,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": null }, @@ -19292,9 +16508,7 @@ "id": "2022-03-e-02-07", "label": "How many children were enrolled in the premium assistance program on average each month in FFY 2022?", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "type": "fieldset", @@ -19303,25 +16517,19 @@ "id": "2022-03-e-02-08", "label": "What’s the average monthly contribution the state pays towards coverage of a child?", "type": "money", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-e-02-09", "label": "What’s the average monthly contribution the employer pays towards coverage of a child?", "type": "money", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-e-02-10", "label": "What’s the average monthly contribution the employee pays towards coverage of a child?", "type": "money", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -19351,15 +16559,9 @@ ] ], "headers": [ - { - "contents": "State" - }, - { - "contents": "Employer" - }, - { - "contents": "Employee" - } + { "contents": "State" }, + { "contents": "Employer" }, + { "contents": "Employee" } ] }, "label": "Child", @@ -19422,41 +16624,31 @@ "id": "2022-03-e-02-14", "label": "What strategies have been most effective in reducing the administrative barriers in order to provide premium assistance?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-e-02-15", "label": "What challenges did you experience with your premium assistance program in FFY 2022?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-e-02-16", "label": "What accomplishments did you experience with your premium assistance program in FFY 2022?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-e-02-17", "label": "Is there anything else you’d like to add that wasn’t already covered?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-e-02-18", "label": "Optional: Attach any additional documents here.", "type": "file_upload", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -19492,14 +16684,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "yes" } @@ -19510,14 +16696,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" } @@ -19528,14 +16708,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" } @@ -19544,9 +16718,7 @@ "id": "2022-03-f-01-04", "label": "What safeguards and procedures are in place for the prevention, investigation, and referral of fraud and abuse cases?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "questions": [ @@ -19567,9 +16739,7 @@ "id": "2022-03-f-01-05-a", "label": "What safeguards and procedures do the Managed Care plans have in place?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-03-f-01-05", @@ -19577,18 +16747,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "na", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "na", "label": "N/A" } ], "entry": "na" } @@ -19597,17 +16758,13 @@ "id": "2022-03-f-01-06", "label": "How many eligibility denials have been appealed in a fair hearing in FFY 2022?", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-03-f-01-07", "label": "How many cases have been found in favor of the beneficiary in FFY 2022?", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "type": "fieldset", @@ -19616,17 +16773,13 @@ "id": "2022-03-f-01-08", "label": "How many cases related to provider credentialing were investigated in FFY 2022?", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-03-f-01-09", "label": "How many cases related to provider credentialing were referred to appropriate law enforcement officials in FFY 2022?", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ] }, @@ -19637,17 +16790,13 @@ "id": "2022-03-f-01-10", "label": "How many cases related to provider billing were investigated in FFY 2022?", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-03-f-01-11", "label": "How many cases were referred to appropriate law enforcement officials in FFY 2022?", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ] }, @@ -19658,17 +16807,13 @@ "id": "2022-03-f-01-12", "label": "How many cases related to beneficiary eligibility were investigated in FFY 2022?", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-03-f-01-13", "label": "How many cases related to beneficiary eligibility were referred to appropriate law enforcement officials in FFY 2022?", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ] }, @@ -19678,10 +16823,7 @@ "type": "radio", "answer": { "options": [ - { - "value": "separate_chip_only", - "label": "CHIP only" - }, + { "value": "separate_chip_only", "label": "CHIP only" }, { "value": "medicaid_separate_chip_combined", "label": "Medicaid and CHIP combined" @@ -19709,9 +16851,7 @@ "id": "2022-03-f-01-15-a", "label": "How do you provide oversight of the contractors? ", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-03-f-01-15", @@ -19719,14 +16859,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" } @@ -19750,9 +16884,7 @@ "id": "2022-03-f-01-16-a", "label": "What specifically are the contractors responsible for in terms of oversight?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-03-f-01-16", @@ -19760,14 +16892,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" } @@ -19776,17 +16902,13 @@ "id": "2022-03-f-01-17", "label": "Is there anything else you’d like to add that wasn’t already covered?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-03-f-01-18", "label": "Optional: Attach any additional documents here.", "type": "file_upload", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -19818,14 +16940,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" }, @@ -19849,9 +16965,7 @@ "id": "2022-03-g-01-02-a", "label": "Total for all ages (0-18)", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "questions": [ @@ -19876,49 +16990,37 @@ "id": "2022-03-g-01-02-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-02-c", "label": "Ages 1-2", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-02-d", "label": "Ages 3-5", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-02-e", "label": "Ages 6-9", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-02-f", "label": "Ages 10-14", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-02-g", "label": "Ages 15-18", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -19937,9 +17039,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-g-01-02" - }, + "fieldset_info": { "id": "2022-03-g-01-02" }, "label": "How many children were enrolled in Separate CHIP for at least 90 continuous days during FFY 2022?", "fieldset_type": "marked", "type": "fieldset" @@ -19962,9 +17062,7 @@ "id": "2022-03-g-01-03-a", "label": "Total for all ages (0-18)", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "questions": [ @@ -19989,49 +17087,37 @@ "id": "2022-03-g-01-03-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-03-c", "label": "Ages 1-2", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-03-d", "label": "Ages 3-5", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-03-e", "label": "Ages 6-9", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-03-f", "label": "Ages 10-14", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-03-g", "label": "Ages 15-18", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -20050,9 +17136,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-g-01-03" - }, + "fieldset_info": { "id": "2022-03-g-01-03" }, "label": "How many children (who were enrolled in Separate CHIP for at least 90 continuous days) received at least one dental care service during FFY 2022?", "fieldset_type": "marked", "type": "fieldset" @@ -20081,9 +17165,7 @@ "id": "2022-03-g-01-04-a", "label": "Total for all ages (0-18)", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "questions": [ @@ -20108,49 +17190,37 @@ "id": "2022-03-g-01-04-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-04-c", "label": "Ages 1-2", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-04-d", "label": "Ages 3-5", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-04-e", "label": "Ages 6-9", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-04-f", "label": "Ages 10-14", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-04-g", "label": "Ages 15-18", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -20169,9 +17239,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-g-01-04" - }, + "fieldset_info": { "id": "2022-03-g-01-04" }, "label": "How many children (who were enrolled in Separate CHIP for at least 90 continuous days) received at least one preventative dental care service during FFY 2022?", "fieldset_type": "marked", "type": "fieldset" @@ -20200,9 +17268,7 @@ "id": "2022-03-g-01-05-a", "label": "Total for all ages (0-18)", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "questions": [ @@ -20227,49 +17293,37 @@ "id": "2022-03-g-01-05-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-05-c", "label": "Ages 1-2", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-05-d", "label": "Ages 3-5", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-05-e", "label": "Ages 6-9", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-05-f", "label": "Ages 10-14", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-05-g", "label": "Ages 15-18", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -20288,9 +17342,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-g-01-05" - }, + "fieldset_info": { "id": "2022-03-g-01-05" }, "label": "How many children (who were enrolled in Separate CHIP for at least 90 continuous days) received dental treatment services during FFY 2022?", "fieldset_type": "marked", "type": "fieldset", @@ -20306,9 +17358,7 @@ "id": "2022-03-g-01-06", "label": "How many children in the “ages 6–9” group received a sealant on at least one permanent molar tooth during FFY 2022?", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "questions": [], @@ -20325,17 +17375,13 @@ "id": "2022-03-g-01-07-a", "label": "How many children were enrolled in supplemental dental coverage during FFY 2022?", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-07-b", "label": "How many children were enrolled in Separate CHIP for at least 90 continuous days during FFY 2022?", "type": "integer", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "hint": "This is the total number for all children between 0-18 years from question 1." }, { @@ -20369,9 +17415,7 @@ { "contents": "Children enrolled in Separate CHIP" }, - { - "contents": "Percentage" - } + { "contents": "Percentage" } ] }, "fieldset_type": "synthesized_table", @@ -20398,14 +17442,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" } @@ -20414,17 +17452,13 @@ "id": "2022-03-g-01-08", "label": "Is there anything else you’d like to add about your dental benefits? If you weren’t able to provide data, let us know why.", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-03-g-01-09", "label": "Optional: Attach any additional documents here.", "type": "file_upload", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -20466,14 +17500,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": null } @@ -20484,14 +17512,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" } @@ -20547,10 +17569,7 @@ "value": "Sample size was too small (fewer than 30)", "label": "Sample size was too small (fewer than 30)" }, - { - "value": "other", - "label": "Other" - } + { "value": "other", "label": "Other" } ], "entry": [ null, @@ -20563,9 +17582,7 @@ "id": "2022-03-h-02-02", "label": "Explain in more detail why you weren’t able to collect the CAHPS survey.", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } } ], "context_data": { @@ -20604,14 +17621,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" }, @@ -20631,9 +17642,7 @@ "id": "2022-03-i-02-01-01-01", "label": "What is the name of your HSI program?", "type": "text", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-i-02-01-01-02", @@ -20641,14 +17650,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": null } @@ -20688,9 +17691,7 @@ "id": "2022-03-i-02-01-01-03", "label": "Which populations does the HSI program serve?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "context_data": { @@ -20709,9 +17710,7 @@ "id": "2022-03-i-02-01-01-04", "label": "How many children do you estimate are being served by the HSI program?", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "context_data": { @@ -20730,9 +17729,7 @@ "id": "2022-03-i-02-01-01-05", "label": "How many children in the HSI program are below your state's FPL threshold? ", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "questions": [], @@ -20794,9 +17791,7 @@ "id": "2022-03-i-02-01-01-06", "label": "How do you measure the HSI program’s impact on the health of low-income children in your state? Define a metric to measure the impact. ", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "context_data": { @@ -20815,9 +17810,7 @@ "id": "2022-03-i-02-01-01-07", "label": "What outcomes have you found when measuring the impact?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "context_data": { @@ -20836,9 +17829,7 @@ "id": "2022-03-i-02-01-01-08", "label": "Is there anything else you'd like to add about this HSI program?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "context_data": { @@ -20857,9 +17848,7 @@ "id": "2022-03-i-02-01-01-09", "label": "Optional: Attach any additional documents.", "type": "file_upload", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-03-i-02-01-01" @@ -20944,9 +17933,7 @@ "id": "2022-04-a-01-01-01-02-01-01", "label": "Briefly describe your goal.", "type": "text_multiline", - "answer": { - "entry": "test" - }, + "answer": { "entry": "test" }, "hint": "For example: In an effort to reduce the number of uninsured children, our goal is to increase enrollment by 1.5% annually until the state achieves 90% enrollment of all eligible children in the CHIP program." }, { @@ -20975,9 +17962,7 @@ "id": "2022-04-a-01-01-01-02-01-02-a", "label": "Why was this goal discontinued?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-04-a-01-01-01-02-01-02", @@ -21009,18 +17994,14 @@ "id": "2022-04-a-01-01-01-02-01-03", "label": "Which population are you measuring in the numerator?", "type": "text_medium", - "answer": { - "entry": "test" - }, + "answer": { "entry": "test" }, "hint": "For example: The number of children enrolled in CHIP in the last federal fiscal year." }, { "id": "2022-04-a-01-01-01-02-01-04", "label": "Numerator (total number)", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "label": "Define the numerator you're measuring" @@ -21032,18 +18013,14 @@ "id": "2022-04-a-01-01-01-02-01-05", "label": "Which population are you measuring in the denominator?", "type": "text_medium", - "answer": { - "entry": "test" - }, + "answer": { "entry": "test" }, "hint": "For example: The total estimated number of children eligible for CHIP within the state in the last federal fiscal year." }, { "id": "2022-04-a-01-01-01-02-01-06", "label": "Denominator (total number)", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "label": "Define the denominator you're measuring" @@ -21095,33 +18072,25 @@ "id": "2022-04-a-01-01-01-02-01-09", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-04-a-01-01-01-02-01-10", "label": "What are you doing to continually make progress towards your goal?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-04-a-01-01-01-02-01-11", "label": "Anything else you'd like to tell us about this goal?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-04-a-01-01-01-02-01-12", "label": "Do you have any supporting documentation?", "type": "file_upload", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "hint": "Optional" } ], @@ -21142,9 +18111,7 @@ "id": "2022-04-a-01-01-02-01", "label": "What is the next objective listed in your CHIP State Plan?", "type": "text_multiline", - "answer": { - "entry": "Increase access to care" - }, + "answer": { "entry": "Increase access to care" }, "hint": "You can edit the suggested objective so it matches what’s in your CHIP State Plan." }, { @@ -21156,9 +18123,7 @@ "id": "2022-04-a-01-01-02-02-01-01", "label": "Briefly describe your goal as it relates to this objective.", "type": "text_multiline", - "answer": { - "entry": "test" - }, + "answer": { "entry": "test" }, "hint": "For example: In an effort to increase access to care for underserved populations, our goal is to increase the number of children of Hispanic ethnicity who have visited a primary care physician by 5% annually over the next five years (ending in 2028)." }, { @@ -21187,9 +18152,7 @@ "id": "2022-04-a-01-01-02-02-01-02-a", "label": "Why was this goal discontinued?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-04-a-01-01-02-02-01-02", @@ -21221,18 +18184,14 @@ "id": "2022-04-a-01-01-02-02-01-03", "label": "Which population are you measuring in the numerator?", "type": "text_medium", - "answer": { - "entry": "test" - }, + "answer": { "entry": "test" }, "hint": "For example: The number of children of Hispanic ethnicity enrolled in CHIP who visited a primary care physician in the last federal fiscal year." }, { "id": "2022-04-a-01-01-02-02-01-04", "label": "Numerator (total number)", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "label": "Define the numerator you're measuring" @@ -21244,18 +18203,14 @@ "id": "2022-04-a-01-01-02-02-01-05", "label": "Which population are you measuring in the denominator?", "type": "text_medium", - "answer": { - "entry": "test" - }, + "answer": { "entry": "test" }, "hint": "For example: The total number of children of Hispanic ethnicity enrolled in CHIP in the last federal fiscal year." }, { "id": "2022-04-a-01-01-02-02-01-06", "label": "Denominator (total number)", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "label": "Define the denominator you're measuring" @@ -21307,33 +18262,25 @@ "id": "2022-04-a-01-01-02-02-01-09", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-04-a-01-01-02-02-01-10", "label": "What are you doing to continually make progress towards your goal?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-04-a-01-01-02-02-01-11", "label": "Anything else you'd like to tell us about this goal?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-04-a-01-01-02-02-01-12", "label": "Do you have any supporting documentation?", "type": "file_upload", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "hint": "Optional" } ], @@ -21368,9 +18315,7 @@ "id": "2022-04-a-01-01-03-02-01-01", "label": "Briefly describe your goal as it relates to this objective.", "type": "text_multiline", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "hint": "For example: In an effort to increase the use of preventive care in rural communities, our goal is to increase the number of rural children who receive one or more well child visits by 5% annually until relative utilization is equivalent to all other CHIP populations within the state." }, { @@ -21399,9 +18344,7 @@ "id": "2022-04-a-01-01-03-02-01-02-a", "label": "Why was this goal discontinued?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-04-a-01-01-03-02-01-02", @@ -21433,18 +18376,14 @@ "id": "2022-04-a-01-01-03-02-01-03", "label": "Which population are you measuring in the numerator?", "type": "text_medium", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "hint": "For example: The number of rural children who received one or more well child visits in the last federal fiscal year." }, { "id": "2022-04-a-01-01-03-02-01-04", "label": "Numerator (total number)", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "label": "Define the numerator you're measuring" @@ -21456,18 +18395,14 @@ "id": "2022-04-a-01-01-03-02-01-05", "label": "Which population are you measuring in the denominator?", "type": "text_medium", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "hint": "For example: The total number of rural children enrolled in CHIP." }, { "id": "2022-04-a-01-01-03-02-01-06", "label": "Denominator (total number)", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "label": "Define the denominator you're measuring" @@ -21519,33 +18454,25 @@ "id": "2022-04-a-01-01-03-02-01-09", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-04-a-01-01-03-02-01-10", "label": "What are you doing to continually make progress towards your goal?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-04-a-01-01-03-02-01-11", "label": "Anything else you'd like to tell us about this goal?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-04-a-01-01-03-02-01-12", "label": "Do you have any supporting documentation?", "type": "file_upload", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "hint": "Optional" } ], @@ -21566,9 +18493,7 @@ "id": "2022-04-a-01-01-04-01", "label": "What is the next objective listed in your CHIP State Plan?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "questions": [ @@ -21579,9 +18504,7 @@ "id": "2022-04-a-01-01-04-02-01-01", "label": "Briefly describe your goal as it relates to this objective.", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "questions": [ @@ -21609,9 +18532,7 @@ "id": "2022-04-a-01-01-04-02-01-02-a", "label": "Why was this goal discontinued?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-04-a-01-01-04-02-01-02", @@ -21643,17 +18564,13 @@ "id": "2022-04-a-01-01-04-02-01-03", "label": "Which population are you measuring in the numerator?", "type": "text_medium", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-04-a-01-01-04-02-01-04", "label": "Numerator (total number)", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "label": "Define the numerator you're measuring" @@ -21665,17 +18582,13 @@ "id": "2022-04-a-01-01-04-02-01-05", "label": "Which population are you measuring in the denominator?", "type": "text_medium", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-04-a-01-01-04-02-01-06", "label": "Denominator (total number)", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "label": "Define the denominator you're measuring" @@ -21727,33 +18640,25 @@ "id": "2022-04-a-01-01-04-02-01-09", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-04-a-01-01-04-02-01-10", "label": "What are you doing to continually make progress towards your goal?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-04-a-01-01-04-02-01-11", "label": "Anything else you'd like to tell us about this goal?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-04-a-01-01-04-02-01-12", "label": "Do you have any supporting documentation?", "type": "file_upload", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "hint": "Optional" } ], @@ -21774,9 +18679,7 @@ "id": "2022-04-a-01-01-05-01", "label": "What is the next objective listed in your CHIP State Plan?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "questions": [ @@ -21787,9 +18690,7 @@ "id": "2022-04-a-01-01-05-02-01-01", "label": "Briefly describe your goal as it relates to this objective.", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "questions": [ @@ -21817,9 +18718,7 @@ "id": "2022-04-a-01-01-05-02-01-02-a", "label": "Why was this goal discontinued?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-04-a-01-01-05-02-01-02", @@ -21851,17 +18750,13 @@ "id": "2022-04-a-01-01-05-02-01-03", "label": "Which population are you measuring in the numerator?", "type": "text_medium", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-04-a-01-01-05-02-01-04", "label": "Numerator (total number)", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "label": "Define the numerator you're measuring" @@ -21873,17 +18768,13 @@ "id": "2022-04-a-01-01-05-02-01-05", "label": "Which population are you measuring in the denominator?", "type": "text_medium", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-04-a-01-01-05-02-01-06", "label": "Denominator (total number)", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "label": "Define the denominator you're measuring" @@ -21935,33 +18826,25 @@ "id": "2022-04-a-01-01-05-02-01-09", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-04-a-01-01-05-02-01-10", "label": "What are you doing to continually make progress towards your goal?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-04-a-01-01-05-02-01-11", "label": "Anything else you'd like to tell us about this goal?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-04-a-01-01-05-02-01-12", "label": "Do you have any supporting documentation?", "type": "file_upload", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "hint": "Optional" } ], @@ -21982,9 +18865,7 @@ "id": "2022-04-a-01-01-06-01", "label": "What is the next objective listed in your CHIP State Plan?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "questions": [ @@ -21995,9 +18876,7 @@ "id": "2022-04-a-01-01-06-02-01-01", "label": "Briefly describe your goal as it relates to this objective.", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "questions": [ @@ -22025,9 +18904,7 @@ "id": "2022-04-a-01-01-06-02-01-02-a", "label": "Why was this goal discontinued?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-04-a-01-01-06-02-01-02", @@ -22059,17 +18936,13 @@ "id": "2022-04-a-01-01-06-02-01-03", "label": "Which population are you measuring in the numerator?", "type": "text_medium", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-04-a-01-01-06-02-01-04", "label": "Numerator (total number)", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "label": "Define the numerator you're measuring" @@ -22081,18 +18954,14 @@ "id": "2022-04-a-01-01-06-02-01-05", "label": "Which population are you measuring in the denominator?", "type": "text_medium", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "hint": "For example: The total number of eligible children in the last federal fiscal year." }, { "id": "2022-04-a-01-01-06-02-01-06", "label": "Denominator (total number)", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "label": "Define the denominator you're measuring" @@ -22144,33 +19013,25 @@ "id": "2022-04-a-01-01-06-02-01-09", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-04-a-01-01-06-02-01-10", "label": "What are you doing to continually make progress towards your goal?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-04-a-01-01-06-02-01-11", "label": "Anything else you'd like to tell us about this goal?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-04-a-01-01-06-02-01-12", "label": "Do you have any supporting documentation?", "type": "file_upload", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "hint": "Optional" } ], @@ -22199,33 +19060,25 @@ "id": "2022-04-a-02-01", "label": "Do you have other strategies for measuring and reporting on your performance goals? What are these strategies, and what information have you found through this research?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-04-a-02-02", "label": "Do you plan to add new strategies for measuring and reporting on your goals and objectives? What do you plan to do, and when will these data become available?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-04-a-02-03", "label": "Have you conducted any focused studies on your CHIP population? (For example: studies on adolescents, attention deficit disorder, substance use, behavioral health services access, health care equity, special health care needs, or other emerging health care needs.) What have you discovered through this research?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-04-a-02-04", "label": "Optional: Attach any additional documents here.", "type": "file_upload", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "hint": "For example: studies, analyses, or any other documents that address your performance goals." } ], @@ -22277,33 +19130,25 @@ "id": "2022-05-a-01-01-a", "label": "2022", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-01-01-b", "label": "2023", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-01-01-c", "label": "2024", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2022-05-a-01-01" - }, + "fieldset_info": { "id": "2022-05-a-01-01" }, "label": "How much did you spend on Managed Care in FFY 2022? How much do you anticipate spending in FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset" @@ -22318,33 +19163,25 @@ "id": "2022-05-a-01-02-a", "label": "2022", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-01-02-b", "label": "2023", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-01-02-c", "label": "2024", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2022-05-a-01-02" - }, + "fieldset_info": { "id": "2022-05-a-01-02" }, "label": "How much did you spend on Fee for Service in FFY 2022? How much do you anticipate spending in FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset" @@ -22359,33 +19196,25 @@ "id": "2022-05-a-01-03-a", "label": "2022", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-01-03-b", "label": "2023", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-01-03-c", "label": "2024", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2022-05-a-01-03" - }, + "fieldset_info": { "id": "2022-05-a-01-03" }, "label": "How much did you spend on anything else related to benefit costs in FFY 2022? How much do you anticipate spending in FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset" @@ -22400,33 +19229,25 @@ "id": "2022-05-a-01-04-a", "label": "2022", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-01-04-b", "label": "2023", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-01-04-c", "label": "2024", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2022-05-a-01-04" - }, + "fieldset_info": { "id": "2022-05-a-01-04" }, "label": "How much did you receive in cost sharing from beneficiaries to offset your costs in FFY 2022? How much do you anticipate spending in FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset" @@ -22436,9 +19257,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Managed Care" - }, + { "contents": "Managed Care" }, { "actions": ["identity"], "targets": [ @@ -22459,9 +19278,7 @@ } ], [ - { - "contents": "Fee for Service" - }, + { "contents": "Fee for Service" }, { "actions": ["identity"], "targets": [ @@ -22482,9 +19299,7 @@ } ], [ - { - "contents": "Other benefit costs" - }, + { "contents": "Other benefit costs" }, { "actions": ["identity"], "targets": [ @@ -22528,9 +19343,7 @@ } ], [ - { - "contents": "Total benefit costs" - }, + { "contents": "Total benefit costs" }, { "actions": ["sum"], "targets": [ @@ -22561,18 +19374,10 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "FFY 2022" - }, - { - "contents": "FFY 2023" - }, - { - "contents": "FFY 2024" - } + { "contents": "" }, + { "contents": "FFY 2022" }, + { "contents": "FFY 2023" }, + { "contents": "FFY 2024" } ] }, "label": "Table 1: Benefits Costs", @@ -22597,33 +19402,25 @@ "id": "2022-05-a-02-01-a", "label": "2022", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-02-01-b", "label": "2023", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-02-01-c", "label": "2024", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2022-05-a-02-01" - }, + "fieldset_info": { "id": "2022-05-a-02-01" }, "label": "How much did you spend on personnel in FFY 2022? How much do you anticipate spending in FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset", @@ -22639,33 +19436,25 @@ "id": "2022-05-a-02-02-a", "label": "2022", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-02-02-b", "label": "2023", "type": "money", - "answer": { - "entry": "55" - } + "answer": { "entry": "55" } }, { "id": "2022-05-a-02-02-c", "label": "2024", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2022-05-a-02-02" - }, + "fieldset_info": { "id": "2022-05-a-02-02" }, "label": "How much did you spend on general administration in FFY 2022? How much do you anticipate spending in FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset" @@ -22680,33 +19469,25 @@ "id": "2022-05-a-02-03-a", "label": "2022", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-02-03-b", "label": "2023", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-02-03-c", "label": "2024", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2022-05-a-02-03" - }, + "fieldset_info": { "id": "2022-05-a-02-03" }, "label": "How much did you spend on contractors and brokers, such as enrollment contractors in FFY 2022? How much do you anticipate spending in FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset" @@ -22721,33 +19502,25 @@ "id": "2022-05-a-02-04-a", "label": "2022", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-02-04-b", "label": "2023", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-02-04-c", "label": "2024", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2022-05-a-02-04" - }, + "fieldset_info": { "id": "2022-05-a-02-04" }, "label": "How much did you spend on claims processing in FFY 2022? How much do you anticipate spending in FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset" @@ -22762,33 +19535,25 @@ "id": "2022-05-a-02-05-a", "label": "2022", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-02-05-b", "label": "2023", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-02-05-c", "label": "2024", "type": "money", - "answer": { - "entry": "55" - } + "answer": { "entry": "55" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2022-05-a-02-05" - }, + "fieldset_info": { "id": "2022-05-a-02-05" }, "label": "How much did you spend on outreach and marketing in FFY 2022? How much do you anticipate spending in FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset" @@ -22803,33 +19568,25 @@ "id": "2022-05-a-02-06-a", "label": "2022", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-02-06-b", "label": "2023", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-02-06-c", "label": "2024", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2022-05-a-02-06" - }, + "fieldset_info": { "id": "2022-05-a-02-06" }, "label": "How much did you spend on your Health Services Initiatives (HSI) if you had any in FFY 2022? How much do you anticipate spending in FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset" @@ -22844,33 +19601,25 @@ "id": "2022-05-a-02-07-a", "label": "2022", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-02-07-b", "label": "2023", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-02-07-c", "label": "2024", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2022-05-a-02-07" - }, + "fieldset_info": { "id": "2022-05-a-02-07" }, "label": "How much did you spend on anything else related to administrative costs in FFY 2022? How much do you anticipate spending in FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset" @@ -22880,9 +19629,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Personnel" - }, + { "contents": "Personnel" }, { "actions": ["identity"], "targets": [ @@ -22903,9 +19650,7 @@ } ], [ - { - "contents": "General administration" - }, + { "contents": "General administration" }, { "actions": ["identity"], "targets": [ @@ -22926,9 +19671,7 @@ } ], [ - { - "contents": "Contractors and brokers" - }, + { "contents": "Contractors and brokers" }, { "actions": ["identity"], "targets": [ @@ -22949,9 +19692,7 @@ } ], [ - { - "contents": "Claims processing" - }, + { "contents": "Claims processing" }, { "actions": ["identity"], "targets": [ @@ -22972,9 +19713,7 @@ } ], [ - { - "contents": "Outreach and marketing" - }, + { "contents": "Outreach and marketing" }, { "actions": ["identity"], "targets": [ @@ -22995,9 +19734,7 @@ } ], [ - { - "contents": "Health Services Initiatives (HSI)" - }, + { "contents": "Health Services Initiatives (HSI)" }, { "actions": ["identity"], "targets": [ @@ -23018,9 +19755,7 @@ } ], [ - { - "contents": "Other administrative costs" - }, + { "contents": "Other administrative costs" }, { "actions": ["identity"], "targets": [ @@ -23041,9 +19776,7 @@ } ], [ - { - "contents": "Total administrative costs" - }, + { "contents": "Total administrative costs" }, { "actions": ["sum"], "targets": [ @@ -23082,9 +19815,7 @@ } ], [ - { - "contents": "10% administrative cap" - }, + { "contents": "10% administrative cap" }, { "formula": "(<0> + <1> + <2> - <3>) / 9", "$comment": "This should equal the total benefit cost calculated above, then divided by 9", @@ -23121,18 +19852,10 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "FFY 2022" - }, - { - "contents": "FFY 2023" - }, - { - "contents": "FFY 2024" - } + { "contents": "" }, + { "contents": "FFY 2022" }, + { "contents": "FFY 2023" }, + { "contents": "FFY 2024" } ] }, "label": "Table 2: Administrative Costs", @@ -23145,9 +19868,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Total program costs " - }, + { "contents": "Total program costs " }, { "formula": "<0> + <1> + <2> - <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10>", "$comment": "Total benefit costs 2022 + total admin costs 2022", @@ -23204,49 +19925,31 @@ } ], [ - { - "contents": "eFMAP" - }, + { "contents": "eFMAP" }, { "actions": ["identity"], - "targets": [ - { - "lookupFmapFy": "2022" - } - ], + "targets": [{ "lookupFmapFy": "2022" }], "$comment": "This should pull the FMAP data from the API for this state and plug it in (FY20)" }, { "actions": ["identity"], - "targets": [ - { - "lookupFmapFy": "2023" - } - ], + "targets": [{ "lookupFmapFy": "2023" }], "$comment": "This should pull the FMAP data from the API for this state and plug it in (FY21)" }, { "actions": ["identity"], - "targets": [ - { - "lookupFmapFy": "2024" - } - ], + "targets": [{ "lookupFmapFy": "2024" }], "$comment": "This should pull the FMAP data from the API for this state and plug it in (FY22)" } ], [ - { - "contents": "Federal share" - }, + { "contents": "Federal share" }, { "formula": "(<0> / 100) * (<1> + <2> + <3> - <4> + <5> + <6> + <7> + <8> + <9> + <10> + <11>)", "$comment": "Multiple eFMAP percentage times the sum/difference of fields that make up total program costs", "actions": ["formula"], "targets": [ - { - "lookupFmapFy": "2022" - }, + { "lookupFmapFy": "2022" }, "$..*[?(@ && @.id=='2022-05-a-01-01-a')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-01-02-a')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-01-03-a')].answer.entry", @@ -23265,9 +19968,7 @@ "$comment": "Multiple eFMAP percentage times the sum/difference of fields that make up total program costs", "actions": ["formula"], "targets": [ - { - "lookupFmapFy": "2023" - }, + { "lookupFmapFy": "2023" }, "$..*[?(@ && @.id=='2022-05-a-01-01-b')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-01-02-b')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-01-03-b')].answer.entry", @@ -23286,9 +19987,7 @@ "$comment": "Multiple eFMAP percentage times the sum/difference of fields that make up total program costs", "actions": ["formula"], "targets": [ - { - "lookupFmapFy": "2024" - }, + { "lookupFmapFy": "2024" }, "$..*[?(@ && @.id=='2022-05-a-01-01-c')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-01-02-c')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-01-03-c')].answer.entry", @@ -23304,9 +20003,7 @@ } ], [ - { - "contents": "State share" - }, + { "contents": "State share" }, { "formula": "<0> + <1> + <2> - <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10> - ((<11> / 100) * (<12> + <13> + <14> - <15> + <16> + <17> + <18> + <19> + <20> + <21> + <22>))", "$comment": "Total program costs - federal share", @@ -23323,9 +20020,7 @@ "$..*[?(@ && @.id=='2022-05-a-02-05-a')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-02-06-a')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-02-07-a')].answer.entry", - { - "lookupFmapFy": "2022" - }, + { "lookupFmapFy": "2022" }, "$..*[?(@ && @.id=='2022-05-a-01-01-a')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-01-02-a')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-01-03-a')].answer.entry", @@ -23355,9 +20050,7 @@ "$..*[?(@ && @.id=='2022-05-a-02-05-b')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-02-06-b')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-02-07-b')].answer.entry", - { - "lookupFmapFy": "2023" - }, + { "lookupFmapFy": "2023" }, "$..*[?(@ && @.id=='2022-05-a-01-01-b')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-01-02-b')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-01-03-b')].answer.entry", @@ -23387,9 +20080,7 @@ "$..*[?(@ && @.id=='2022-05-a-02-05-c')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-02-06-c')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-02-07-c')].answer.entry", - { - "lookupFmapFy": "2024" - }, + { "lookupFmapFy": "2024" }, "$..*[?(@ && @.id=='2022-05-a-01-01-c')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-01-02-c')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-01-03-c')].answer.entry", @@ -23406,18 +20097,10 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "FFY 2022" - }, - { - "contents": "FFY 2023" - }, - { - "contents": "FFY 2024" - } + { "contents": "" }, + { "contents": "FFY 2022" }, + { "contents": "FFY 2023" }, + { "contents": "FFY 2024" } ] }, "label": "Table 3: Federal and State Shares", @@ -23444,9 +20127,7 @@ "id": "2022-05-a-02-08-a", "label": "What other type of funding did you receive?", "type": "text", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-05-a-02-08", @@ -23478,10 +20159,7 @@ "value": "tobacco settlement", "label": "Tobacco settlement" }, - { - "value": "other", - "label": "Other" - } + { "value": "other", "label": "Other" } ], "entry": [null, "state appropriations"] }, @@ -23506,9 +20184,7 @@ "id": "2022-05-a-02-09-a", "label": "Briefly explain why your state didn’t have enough federal funding to cover your CHIP program costs.", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-05-a-02-09", @@ -23516,14 +20192,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": null } @@ -23545,33 +20215,25 @@ "id": "2022-05-a-03-01-a", "label": "2022", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-03-01-b", "label": "2023", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-03-01-c", "label": "2024", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2022-05-a-03-01" - }, + "fieldset_info": { "id": "2022-05-a-03-01" }, "label": "How many children were eligible for managed care in FFY 2022? How many do you anticipate will be eligible in FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset" @@ -23586,33 +20248,25 @@ "id": "2022-05-a-03-02-a", "label": "2022", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-03-02-b", "label": "2023", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-03-02-c", "label": "2024", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2022-05-a-03-02" - }, + "fieldset_info": { "id": "2022-05-a-03-02" }, "label": "What was your per member per month (PMPM) cost based on the number of children eligible for managed care in FFY 2022? What is your projected PMPM cost for FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset", @@ -23623,9 +20277,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Eligible children" - }, + { "contents": "Eligible children" }, { "actions": ["identity"], "targets": [ @@ -23646,9 +20298,7 @@ } ], [ - { - "contents": "PMPM cost" - }, + { "contents": "PMPM cost" }, { "actions": ["identity"], "targets": [ @@ -23670,18 +20320,10 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "FFY 2022" - }, - { - "contents": "FFY 2023" - }, - { - "contents": "FFY 2024" - } + { "contents": "" }, + { "contents": "FFY 2022" }, + { "contents": "FFY 2023" }, + { "contents": "FFY 2024" } ] }, "fieldset_type": "synthesized_table", @@ -23705,33 +20347,25 @@ "id": "2022-05-a-04-01-a", "label": "2022", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-04-01-b", "label": "2023", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-04-01-c", "label": "2024", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2022-05-a-04-01" - }, + "fieldset_info": { "id": "2022-05-a-04-01" }, "label": "How many children were eligible for fee for service in FFY 2022? How many do you anticipate will be eligible in FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset" @@ -23746,33 +20380,25 @@ "id": "2022-05-a-04-02-a", "label": "2022", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-04-02-b", "label": "2023", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-04-02-c", "label": "2024", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2022-05-a-04-02" - }, + "fieldset_info": { "id": "2022-05-a-04-02" }, "label": "What was your per member per month (PMPM) cost based on the number of children eligible for fee for service in FFY 2022? What is your projected PMPM cost for FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset", @@ -23783,9 +20409,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Eligible children" - }, + { "contents": "Eligible children" }, { "actions": ["identity"], "targets": [ @@ -23806,9 +20430,7 @@ } ], [ - { - "contents": "PMPM cost" - }, + { "contents": "PMPM cost" }, { "actions": ["identity"], "targets": [ @@ -23830,18 +20452,10 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "FFY 2022" - }, - { - "contents": "FFY 2023" - }, - { - "contents": "FFY 2024" - } + { "contents": "" }, + { "contents": "FFY 2022" }, + { "contents": "FFY 2023" }, + { "contents": "FFY 2024" } ] }, "fieldset_type": "synthesized_table", @@ -23860,17 +20474,13 @@ "id": "2022-05-a-05-01", "label": "Is there anything else you’d like to add about your program finances that wasn’t already covered?", "type": "text_multiline", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-05-02", "label": "Optional: Attach any additional documents here.", "type": "file_upload", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-05-a-05" @@ -23909,49 +20519,37 @@ "id": "2022-06-a-01-01", "label": "How has your state’s political and fiscal environment affected your ability to provide healthcare to low-income children and families?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-06-a-01-02", "label": "What’s the greatest challenge your CHIP program has faced in FFY 2022?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-06-a-01-03", "label": "What are some of the greatest accomplishments your CHIP program has experienced in FFY 2022?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-06-a-01-04", "label": "What changes have you made to your CHIP program in FFY 2022 or plan to make in FFY 2023? Why have you decided to make these changes?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-06-a-01-05", "label": "Is there anything else you’d like to add about your state’s challenges and accomplishments?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-06-a-01-06", "label": "Optional: Attach any additional documents here.", "type": "file_upload", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-06-a-01" @@ -24040,25 +20638,19 @@ "id": "2021-00-a-01-04", "type": "text", "label": "Contact name:", - "answer": { - "entry": "Tester" - } + "answer": { "entry": "Tester" } }, { "id": "2021-00-a-01-05", "type": "text", "label": "Job title:", - "answer": { - "entry": "Director" - } + "answer": { "entry": "Director" } }, { "id": "2021-00-a-01-06", "type": "email", "label": "Email:", - "answer": { - "entry": "" - } + "answer": { "entry": "" } }, { "id": "2021-00-a-01-07", @@ -24073,9 +20665,7 @@ "id": "2021-00-a-01-08", "type": "phone_number", "label": "Phone number:", - "answer": { - "entry": "123-456-7890" - } + "answer": { "entry": "123-456-7890" } }, { "hint": "This information is being collected to assist the Centers for Medicare & Medicaid Services (CMS) in partnership with States with the ongoing management of Medicaid and CHIP programs and policies. This mandatory information collection (42 U.S.C. 1397hh) will be used to help each state meet the statutory requirements at section 2108(a) of the Social Security Act to assess the operation of the State child health plan in each Federal fiscal year and to report the results of the assessment including the progress made in reducing the number of uncovered, low-income children. Under the Privacy Act of 1974 any personally identifying information obtained will be kept private to the extent of the law. According to the Paperwork Reduction Act of 1995, no persons are required to respond to a collection of information unless it displays a valid OMB control number. The valid OMB control number for this information collection is 0938-1148 (CMS-10398 #1). The time required to complete this information collection is estimated to average 40 hours per response, including the time to review instructions, search existing data resources, gather the data needed, and complete and review the information collection. Send comments regarding this burden estimate or any other aspect of this collection of information, including suggestions for reducing this burden, to CMS, 7500 Security Boulevard, Attn: Paperwork Reduction Act Reports Clearance Officer, Mail Stop C4-26-05, Baltimore, Maryland 21244-1850.", @@ -24124,14 +20714,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -24139,9 +20723,7 @@ "id": "2021-01-a-01-01-a", "type": "money", "label": "How much is your enrollment fee?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -24165,14 +20747,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -24186,14 +20762,8 @@ "answer": { "entry": "", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -24230,9 +20800,7 @@ "id": "2021-01-a-01-02-c", "type": "money", "label": "How much is the premium for one child?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -24272,14 +20840,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -24317,9 +20879,7 @@ "id": "2021-01-a-01-03-b", "type": "money", "label": "What's the maximum premium a family would be charged each year?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -24340,9 +20900,7 @@ "id": "2021-01-a-01-04", "type": "text_multiline", "label": "Do premiums differ for different Medicaid Expansion CHIP populations beyond FPL (for example, by eligibility group)? If so, briefly explain the fee structure breakdown.", - "answer": { - "entry": "N/A" - } + "answer": { "entry": "N/A" } }, { "id": "2021-01-a-01-05", @@ -24352,18 +20910,12 @@ "answer": { "entry": [null, "pccm"], "options": [ - { - "label": "Managed Care", - "value": "mco" - }, + { "label": "Managed Care", "value": "mco" }, { "label": "Primary Care Case Management", "value": "pccm" }, - { - "label": "Fee for Service", - "value": "ffs" - } + { "label": "Fee for Service", "value": "ffs" } ] } }, @@ -24371,9 +20923,7 @@ "id": "2021-01-a-01-06", "type": "text_multiline", "label": "Which delivery system(s) are available to which Medicaid Expansion CHIP populations? Indicate whether eligibility status, income level, age range, or other criteria determine which delivery system a population receives.", - "answer": { - "entry": "N/A" - } + "answer": { "entry": "N/A" } } ], "context_data": { @@ -24396,14 +20946,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -24411,9 +20955,7 @@ "id": "2021-01-a-02-01-a", "type": "money", "label": "How much is your enrollment fee?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -24437,14 +20979,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -24458,14 +20994,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -24507,9 +21037,7 @@ "id": "2021-01-a-02-02-c", "type": "money", "label": "How much is the premium for one child?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -24549,14 +21077,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -24599,9 +21121,7 @@ "id": "2021-01-a-02-03-b", "type": "money", "label": "What's the maximum premium fee a family would be charged each year?", - "answer": { - "entry": "312" - }, + "answer": { "entry": "312" }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -24634,18 +21154,12 @@ "answer": { "entry": [null, "ffs"], "options": [ - { - "label": "Managed Care", - "value": "mco" - }, + { "label": "Managed Care", "value": "mco" }, { "label": "Primary Care Case Management", "value": "pccm" }, - { - "label": "Fee for Service", - "value": "ffs" - } + { "label": "Fee for Service", "value": "ffs" } ] } }, @@ -24653,9 +21167,7 @@ "id": "2021-01-a-02-06", "type": "text_multiline", "label": "Which delivery system(s) are available to which CHIP populations? Indicate whether eligibility status, income level, age range, or other criteria determine which delivery system a population receives.", - "answer": { - "entry": "N/A" - } + "answer": { "entry": "N/A" } } ], "context_data": { @@ -24676,18 +21188,9 @@ "answer": { "entry": "", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -24701,18 +21204,9 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -24727,18 +21221,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -24753,18 +21238,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -24778,18 +21254,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -24804,23 +21271,12 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Outreach efforts" - } + "context_data": { "bullet_text": "Outreach efforts" } }, { "id": "2021-01-a-03-07", @@ -24830,23 +21286,12 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Delivery system(s)" - } + "context_data": { "bullet_text": "Delivery system(s)" } }, { "id": "2021-01-a-03-08", @@ -24856,23 +21301,12 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Cost sharing" - } + "context_data": { "bullet_text": "Cost sharing" } }, { "id": "2021-01-a-03-09", @@ -24882,18 +21316,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -24907,18 +21332,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -24933,18 +21349,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -24959,23 +21366,12 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Premium assistance" - } + "context_data": { "bullet_text": "Premium assistance" } }, { "id": "2021-01-a-03-13", @@ -24984,18 +21380,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -25009,18 +21396,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -25034,18 +21412,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -25059,23 +21428,12 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Other program areas" - } + "context_data": { "bullet_text": "Other program areas" } }, { "type": "fieldset", @@ -25095,18 +21453,9 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] } } @@ -25165,18 +21514,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -25190,18 +21530,9 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -25216,18 +21547,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -25242,18 +21564,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -25267,18 +21580,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -25293,23 +21597,12 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Outreach efforts" - } + "context_data": { "bullet_text": "Outreach efforts" } }, { "id": "2021-01-a-04-07", @@ -25319,23 +21612,12 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Delivery system(s)" - } + "context_data": { "bullet_text": "Delivery system(s)" } }, { "id": "2021-01-a-04-08", @@ -25345,23 +21627,12 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Cost sharing" - } + "context_data": { "bullet_text": "Cost sharing" } }, { "id": "2021-01-a-04-09", @@ -25371,23 +21642,12 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Crowd-out policies" - } + "context_data": { "bullet_text": "Crowd-out policies" } }, { "id": "2021-01-a-04-10", @@ -25396,18 +21656,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -25421,18 +21672,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -25447,18 +21689,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -25473,23 +21706,12 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Premium assistance" - } + "context_data": { "bullet_text": "Premium assistance" } }, { "id": "2021-01-a-04-14", @@ -25498,18 +21720,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -25524,18 +21737,9 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -25550,18 +21754,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -25575,18 +21770,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -25600,18 +21786,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -25625,23 +21802,12 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Other program areas" - } + "context_data": { "bullet_text": "Other program areas" } }, { "type": "fieldset", @@ -25661,14 +21827,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } } @@ -25796,9 +21956,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "2015" - }, + { "contents": "2015" }, { "lookupAcs": { "ffy": "2015", @@ -25825,9 +21983,7 @@ } ], [ - { - "contents": "2016" - }, + { "contents": "2016" }, { "lookupAcs": { "ffy": "2016", @@ -25854,9 +22010,7 @@ } ], [ - { - "contents": "2017" - }, + { "contents": "2017" }, { "lookupAcs": { "ffy": "2017", @@ -25883,9 +22037,7 @@ } ], [ - { - "contents": "2018" - }, + { "contents": "2018" }, { "lookupAcs": { "ffy": "2018", @@ -25912,9 +22064,7 @@ } ], [ - { - "contents": "2019" - }, + { "contents": "2019" }, { "lookupAcs": { "ffy": "2019", @@ -25942,21 +22092,13 @@ ] ], "headers": [ - { - "contents": "Year" - }, - { - "contents": "Number of uninsured children" - }, - { - "contents": "Margin of error" - }, + { "contents": "Year" }, + { "contents": "Number of uninsured children" }, + { "contents": "Margin of error" }, { "contents": "Percent of uninsured children (of total children in your state)" }, - { - "contents": "Margin of error" - } + { "contents": "Margin of error" } ] }, "fieldset_type": "synthesized_table" @@ -25977,9 +22119,7 @@ ] ], "headers": [ - { - "contents": "Percent change between 2018 and 2019" - } + { "contents": "Percent change between 2018 and 2019" } ] }, "fieldset_type": "synthesized_table" @@ -25999,14 +22139,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -26014,9 +22148,7 @@ "id": "2021-02-a-02-02-a", "type": "text_multiline", "label": "What are some reasons why the American Community Survey estimates might not reflect the number of uninsured children in your state?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -26040,14 +22172,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -26058,9 +22184,7 @@ "id": "2021-02-a-02-03-a", "type": "text_multiline", "label": "What is the alternate data source or methodology?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-02-a-02-03-b", @@ -26075,49 +22199,37 @@ "id": "2021-02-a-02-03-c", "type": "text_multiline", "label": "Define the population you’re measuring, including ages and federal poverty levels.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-02-a-02-03-d", "type": "text_multiline", "label": "Give numbers and/or the percent of uninsured children for at least two points in time.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-02-a-02-03-e", "type": "text_multiline", "label": "Why did your state choose to adopt this alternate data source?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-02-a-02-03-f", "type": "text_multiline", "label": "How reliable are these estimates? Provide standard errors, confidence intervals, and/or p-values if available.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-02-a-02-03-g", "type": "text_multiline", "label": "What are the limitations of this alternate data source or methodology?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-02-a-02-03-h", "type": "text_multiline", "label": "How do you use this alternate data source in CHIP program planning?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -26140,17 +22252,13 @@ "id": "2021-02-a-02-04", "type": "text_multiline", "label": "Is there anything else you’d like to add about your enrollment and uninsured data?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2021-02-a-02-05", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -26190,14 +22298,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -26232,14 +22334,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -26247,9 +22343,7 @@ "id": "2021-03-a-01-02-a", "type": "text_multiline", "label": "Have these efforts been successful? How have you measured the effectiveness of your outreach efforts?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -26279,17 +22373,13 @@ "id": "2021-03-a-01-04", "type": "text_multiline", "label": "Is there anything else you’d like to add about your outreach efforts?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2021-03-a-01-05", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -26312,18 +22402,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] }, "questions": [ @@ -26331,9 +22412,7 @@ "id": "2021-03-b-01-01-a", "type": "text_multiline", "label": "What percent of CHIP enrollees had access to private insurance at the time of application?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -26357,18 +22436,9 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] }, "questions": [ @@ -26376,9 +22446,7 @@ "id": "2021-03-b-01-02-a", "type": "text_multiline", "label": "Which database do you use?", - "answer": { - "entry": "BCBS of AL enrollment database" - }, + "answer": { "entry": "BCBS of AL enrollment database" }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -26399,9 +22467,7 @@ "id": "2021-03-b-01-03", "type": "percentage", "label": "What percent of applicants screened for CHIP eligibility cannot be enrolled because they have group health plan coverage?", - "answer": { - "entry": "4.11" - } + "answer": { "entry": "4.11" } }, { "type": "fieldset", @@ -26413,18 +22479,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] }, "questions": [ @@ -26435,9 +22492,7 @@ "id": "2021-03-b-01-04-a", "type": "text_multiline", "label": "How long is the waiting period?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -26458,9 +22513,7 @@ "id": "2021-03-b-01-04-b", "type": "text_multiline", "label": "Which populations does the waiting period apply to? (Include the FPL for each group.)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -26479,9 +22532,7 @@ "id": "2021-03-b-01-04-c", "type": "text_multiline", "label": "What exemptions apply to the waiting period?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -26500,9 +22551,7 @@ "id": "2021-03-b-01-04-d", "type": "text_multiline", "label": "What percent of individuals subject to the waiting period meet a state or federal exemption?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -26532,17 +22581,13 @@ "id": "2021-03-b-01-05", "type": "text_multiline", "label": "Is there anything else you’d like to add about substitution of coverage that wasn’t already covered? Did you run into any limitations when collecting data?", - "answer": { - "entry": "No. " - } + "answer": { "entry": "No. " } }, { "id": "2021-03-b-01-06", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -26567,18 +22612,9 @@ "answer": { "entry": "", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] }, "questions": [ @@ -26589,17 +22625,13 @@ "id": "2021-03-c-01-01-a", "type": "percentage", "label": "What percent of children are presumptively enrolled in CHIP pending a full eligibility determination?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-03-c-01-01-b", "type": "percentage", "label": "Of the children who are presumptively enrolled, what percent are determined fully eligible and enrolled in the program (upon completion of the full eligibility determination)?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -26625,14 +22657,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -26643,14 +22669,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -26661,9 +22681,7 @@ "id": "2021-03-c-01-03-a", "type": "text", "label": "How many notices do you send to families before disenrolling a child from the program?", - "answer": { - "entry": "2" - } + "answer": { "entry": "2" } }, { "id": "2021-03-c-01-03-b", @@ -26718,9 +22736,7 @@ "id": "2021-03-c-01-07", "type": "text_multiline", "label": "Is there anything else you’d like to add that wasn’t already covered?", - "answer": { - "entry": "No. " - } + "answer": { "entry": "No. " } } ] }, @@ -26734,35 +22750,27 @@ "hint": "Don’t include applicants being considered for redetermination — this data will be collected in Part 3.", "type": "integer", "label": "How many applicants were denied CHIP coverage in FFY 2020?", - "answer": { - "entry": "4283" - } + "answer": { "entry": "4283" } }, { "id": "2021-03-c-02-02", "hint": "For example: They were denied because of an incomplete application, missing documentation, or a missing enrollment fee.", "type": "integer", "label": "How many applicants were denied CHIP coverage for procedural reasons?", - "answer": { - "entry": "500" - } + "answer": { "entry": "500" } }, { "id": "2021-03-c-02-03", "hint": "For example: They were denied because their income was too high or too low, they were determined eligible for Medicaid instead, or they had other coverage available.", "type": "integer", "label": "How many applicants were denied CHIP coverage for eligibility reasons?", - "answer": { - "entry": "3484" - }, + "answer": { "entry": "3484" }, "questions": [ { "id": "2021-03-c-02-03-a", "type": "integer", "label": "How many applicants were denied CHIP (Title XXI) coverage and determined eligible for Medicaid (Title XIX) instead?", - "answer": { - "entry": "299" - } + "answer": { "entry": "299" } } ] }, @@ -26770,9 +22778,7 @@ "id": "2021-03-c-02-04", "type": "integer", "label": "How many applicants were denied CHIP coverage for other reasons?", - "answer": { - "entry": "" - } + "answer": { "entry": "" } }, { "id": "2021-03-c-02-05", @@ -26790,9 +22796,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Total denials" - }, + { "contents": "Total denials" }, { "targets": [ "$..*[?(@ && @.id=='2021-03-c-02-01')].answer.entry" @@ -26807,9 +22811,7 @@ } ], [ - { - "contents": "Denied for procedural reasons" - }, + { "contents": "Denied for procedural reasons" }, { "targets": [ "$..*[?(@ && @.id=='2021-03-c-02-02')].answer.entry" @@ -26824,9 +22826,7 @@ } ], [ - { - "contents": "Denied for eligibility reasons" - }, + { "contents": "Denied for eligibility reasons" }, { "targets": [ "$..*[?(@ && @.id=='2021-03-c-02-03')].answer.entry" @@ -26841,9 +22841,7 @@ } ], [ - { - "contents": "Denials for other reasons" - }, + { "contents": "Denials for other reasons" }, { "targets": [ "$..*[?(@ && @.id=='2021-03-c-02-04')].answer.entry" @@ -26859,15 +22857,9 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "Number" - }, - { - "contents": "Percent" - } + { "contents": "" }, + { "contents": "Number" }, + { "contents": "Percent" } ] }, "fieldset_type": "synthesized_table" @@ -26884,34 +22876,26 @@ "id": "2021-03-c-03-01", "type": "integer", "label": "How many children were eligible for redetermination in CHIP in FFY 2020?", - "answer": { - "entry": "145390" - } + "answer": { "entry": "145390" } }, { "id": "2021-03-c-03-02", "type": "integer", "label": "Of the eligible children, how many were then screened for redetermination?", - "answer": { - "entry": "131011" - } + "answer": { "entry": "131011" } }, { "id": "2021-03-c-03-03", "type": "integer", "label": "How many children were retained in CHIP after redetermination?", - "answer": { - "entry": "113009" - } + "answer": { "entry": "113009" } }, { "id": "2021-03-c-03-04", "hint": "This number should be equal to the total of 4a, 4b, and 4c below.", "type": "integer", "label": "How many children were disenrolled in CHIP after the redetermination process?", - "answer": { - "entry": "17989" - }, + "answer": { "entry": "17989" }, "questions": [ { "hint": "The answer to 4 should be equal to the sum of a, b, and c below: ", @@ -26932,26 +22916,20 @@ "hint": "This could be due to an incomplete application, missing documentation, or a missing enrollment fee.", "type": "integer", "label": "How many children were disenrolled for procedural reasons?", - "answer": { - "entry": "1893" - } + "answer": { "entry": "1893" } }, { "id": "2021-03-c-03-04-b", "hint": "This could be due to income that was too high or too low, eligibility in Medicaid (Title XIX) instead, or access to private coverage.", "type": "integer", "label": "How many children were disenrolled for eligibility reasons?", - "answer": { - "entry": "15242" - } + "answer": { "entry": "15242" } }, { "id": "2021-03-c-03-04-c", "type": "integer", "label": "How many children were disenrolled for other reasons?", - "answer": { - "entry": "854" - } + "answer": { "entry": "854" } } ] }, @@ -26959,9 +22937,7 @@ "id": "2021-03-c-03-05", "type": "text_multiline", "label": "Did you have any limitations in collecting this data?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "hint": "These tables are auto-populated with the data you entered above.", @@ -27023,15 +22999,9 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "Number" - }, - { - "contents": "Percent" - } + { "contents": "" }, + { "contents": "Number" }, + { "contents": "Percent" } ] }, "fieldset_type": "synthesized_table" @@ -27113,15 +23083,9 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "Number" - }, - { - "contents": "Percent" - } + { "contents": "" }, + { "contents": "Number" }, + { "contents": "Percent" } ] }, "fieldset_type": "synthesized_table" @@ -27138,34 +23102,26 @@ "id": "2021-03-c-04-01", "type": "integer", "label": "How many children were eligible for redetermination in Medicaid in FFY 2020?", - "answer": { - "entry": "463373" - } + "answer": { "entry": "463373" } }, { "id": "2021-03-c-04-02", "type": "integer", "label": "Of the eligible children, how many were then screened for redetermination?", - "answer": { - "entry": "438232" - } + "answer": { "entry": "438232" } }, { "id": "2021-03-c-04-03", "type": "integer", "label": "How many children were retained in Medicaid after redetermination?", - "answer": { - "entry": "413500" - } + "answer": { "entry": "413500" } }, { "id": "2021-03-c-04-04", "hint": "This number should be equal to the total of 4a, 4b, and 4c below.", "type": "integer", "label": "How many children were disenrolled in Medicaid after the redetermination process?", - "answer": { - "entry": "24718" - }, + "answer": { "entry": "24718" }, "questions": [ { "hint": "The answer to 4 should be equal to the sum of a, b, and c below: ", @@ -27186,26 +23142,20 @@ "hint": "This could be due to an incomplete application, missing documentation, or a missing enrollment fee.", "type": "integer", "label": "How many children were disenrolled for procedural reasons?", - "answer": { - "entry": "559" - } + "answer": { "entry": "559" } }, { "id": "2021-03-c-04-04-b", "hint": "This could be due to an income that was too high and/or eligibility in CHIP instead.", "type": "integer", "label": "How many children were disenrolled for eligibility reasons?", - "answer": { - "entry": "23489" - } + "answer": { "entry": "23489" } }, { "id": "2021-03-c-04-04-c", "type": "integer", "label": "How many children were disenrolled for other reasons?", - "answer": { - "entry": "670" - } + "answer": { "entry": "670" } } ] }, @@ -27213,9 +23163,7 @@ "id": "2021-03-c-04-05", "type": "text_multiline", "label": "Did you have any limitations in collecting this data?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "hint": "These tables are auto-populated with the data you entered above.", @@ -27277,15 +23225,9 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "Number" - }, - { - "contents": "Percent" - } + { "contents": "" }, + { "contents": "Number" }, + { "contents": "Percent" } ] }, "fieldset_type": "synthesized_table" @@ -27367,15 +23309,9 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "Number" - }, - { - "contents": "Percent" - } + { "contents": "" }, + { "contents": "Number" }, + { "contents": "Percent" } ] }, "fieldset_type": "synthesized_table" @@ -27420,14 +23356,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -27444,9 +23374,7 @@ "id": "2021-03-c-05-03-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -27482,33 +23410,25 @@ "id": "2021-03-c-05-03-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "919" - } + "answer": { "entry": "919" } }, { "id": "2021-03-c-05-03-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "2265" - } + "answer": { "entry": "2265" } }, { "id": "2021-03-c-05-03-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "5710" - } + "answer": { "entry": "5710" } }, { "id": "2021-03-c-05-03-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "4958" - } + "answer": { "entry": "4958" } } ], "context_data": { @@ -27526,9 +23446,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-05-03" - }, + "fieldset_info": { "id": "2021-03-c-05-03" }, "fieldset_type": "marked" }, { @@ -27545,9 +23463,7 @@ "id": "2021-03-c-05-04-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -27583,33 +23499,25 @@ "id": "2021-03-c-05-04-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "909" - } + "answer": { "entry": "909" } }, { "id": "2021-03-c-05-04-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "22213" - } + "answer": { "entry": "22213" } }, { "id": "2021-03-c-05-04-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "5451" - } + "answer": { "entry": "5451" } }, { "id": "2021-03-c-05-04-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "4445" - } + "answer": { "entry": "4445" } } ], "context_data": { @@ -27627,9 +23535,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-05-04" - }, + "fieldset_info": { "id": "2021-03-c-05-04" }, "fieldset_type": "marked" }, { @@ -27640,9 +23546,7 @@ "id": "2021-03-c-05-05-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -27678,33 +23582,25 @@ "id": "2021-03-c-05-05-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } }, { "id": "2021-03-c-05-05-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } }, { "id": "2021-03-c-05-05-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "2" - } + "answer": { "entry": "2" } }, { "id": "2021-03-c-05-05-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "3" - } + "answer": { "entry": "3" } } ], "context_data": { @@ -27722,9 +23618,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-05-05" - }, + "fieldset_info": { "id": "2021-03-c-05-05" }, "fieldset_type": "marked" }, { @@ -27735,9 +23629,7 @@ "id": "2021-03-c-05-06-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -27773,33 +23665,25 @@ "id": "2021-03-c-05-06-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } }, { "id": "2021-03-c-05-06-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } }, { "id": "2021-03-c-05-06-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "2" - } + "answer": { "entry": "2" } }, { "id": "2021-03-c-05-06-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "3" - } + "answer": { "entry": "3" } } ], "context_data": { @@ -27817,9 +23701,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-05-06" - }, + "fieldset_info": { "id": "2021-03-c-05-06" }, "fieldset_type": "marked" }, { @@ -27831,9 +23713,7 @@ "id": "2021-03-c-05-07-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -27869,33 +23749,25 @@ "id": "2021-03-c-05-07-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "10" - } + "answer": { "entry": "10" } }, { "id": "2021-03-c-05-07-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "44" - } + "answer": { "entry": "44" } }, { "id": "2021-03-c-05-07-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "257" - } + "answer": { "entry": "257" } }, { "id": "2021-03-c-05-07-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "510" - } + "answer": { "entry": "510" } } ], "context_data": { @@ -27913,9 +23785,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-05-07" - }, + "fieldset_info": { "id": "2021-03-c-05-07" }, "fieldset_type": "marked" }, { @@ -27926,9 +23796,7 @@ "id": "2021-03-c-05-08-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -27964,33 +23832,25 @@ "id": "2021-03-c-05-08-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } }, { "id": "2021-03-c-05-08-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } }, { "id": "2021-03-c-05-08-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "145" - } + "answer": { "entry": "145" } }, { "id": "2021-03-c-05-08-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "447" - } + "answer": { "entry": "447" } } ], "context_data": { @@ -28008,18 +23868,14 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-05-08" - }, + "fieldset_info": { "id": "2021-03-c-05-08" }, "fieldset_type": "marked" }, { "id": "2021-03-c-05-09", "type": "text_multiline", "label": "Is there anything else you’d like to add about your data?", - "answer": { - "entry": "" - } + "answer": { "entry": "" } }, { "hint": "Next year you’ll report this data. Leave it blank in the meantime.", @@ -28036,10 +23892,7 @@ "id": "2021-03-c-05-10-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -28075,37 +23928,25 @@ "id": "2021-03-c-05-10-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-10-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-10-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-10-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -28123,9 +23964,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-05-10" - }, + "fieldset_info": { "id": "2021-03-c-05-10" }, "fieldset_type": "marked" }, { @@ -28136,110 +23975,90 @@ "id": "2021-03-c-05-11-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, - "context_data": { - "conditional_display": { - "type": "conditional_display", - "hide_if": { - "target": "$..[?(@ && @.id=='2021-03-c-05-02')].answer.entry", - "values": { - "interactive": ["yes", null], - "noninteractive": ["yes", null] - } - } - } - } - }, - { - "type": "fieldset", - "questions": [ - { - "type": "fieldset", - "label": "Total for all ages (0-16)", - "questions": [], - "fieldset_info": { - "actions": ["sum"], - "targets": [ - "$..*[?(@ && @.id=='2021-03-c-05-11-b')].answer.entry", - "$..*[?(@ && @.id=='2021-03-c-05-11-c')].answer.entry", - "$..*[?(@ && @.id=='2021-03-c-05-11-d')].answer.entry", - "$..*[?(@ && @.id=='2021-03-c-05-11-e')].answer.entry" - ] - }, - "fieldset_type": "synthesized_value" - }, - { - "id": "2021-03-c-05-11-b", - "type": "integer", - "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } - }, - { - "id": "2021-03-c-05-11-c", - "type": "integer", - "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } - }, - { - "id": "2021-03-c-05-11-d", - "type": "integer", - "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } - }, - { - "id": "2021-03-c-05-11-e", - "type": "integer", - "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } - } - ], - "context_data": { - "conditional_display": { - "type": "conditional_display", - "hide_if": { - "target": "$..[?(@ && @.id=='2021-03-c-05-02')].answer.entry", - "values": { - "interactive": ["no"], - "noninteractive": ["no", null] - } - } - } - }, - "fieldset_type": "datagrid" - } - ], - "fieldset_info": { - "id": "2021-03-c-05-11" - }, - "fieldset_type": "marked" - }, - { - "type": "fieldset", - "label": "Of the children who had a break in CHIP coverage (in the previous question), how many were enrolled in Medicaid during the break?", - "questions": [ - { - "id": "2021-03-c-05-12-a", - "type": "integer", - "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true + "answer": { "entry": null, "readonly": true }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2021-03-c-05-02')].answer.entry", + "values": { + "interactive": ["yes", null], + "noninteractive": ["yes", null] + } + } + } + } + }, + { + "type": "fieldset", + "questions": [ + { + "type": "fieldset", + "label": "Total for all ages (0-16)", + "questions": [], + "fieldset_info": { + "actions": ["sum"], + "targets": [ + "$..*[?(@ && @.id=='2021-03-c-05-11-b')].answer.entry", + "$..*[?(@ && @.id=='2021-03-c-05-11-c')].answer.entry", + "$..*[?(@ && @.id=='2021-03-c-05-11-d')].answer.entry", + "$..*[?(@ && @.id=='2021-03-c-05-11-e')].answer.entry" + ] + }, + "fieldset_type": "synthesized_value" + }, + { + "id": "2021-03-c-05-11-b", + "type": "integer", + "label": "Ages 0-1", + "answer": { "entry": null, "readonly": true } + }, + { + "id": "2021-03-c-05-11-c", + "type": "integer", + "label": "Ages 1-5", + "answer": { "entry": null, "readonly": true } + }, + { + "id": "2021-03-c-05-11-d", + "type": "integer", + "label": "Ages 6-12", + "answer": { "entry": null, "readonly": true } + }, + { + "id": "2021-03-c-05-11-e", + "type": "integer", + "label": "Ages 13-16", + "answer": { "entry": null, "readonly": true } + } + ], + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2021-03-c-05-02')].answer.entry", + "values": { + "interactive": ["no"], + "noninteractive": ["no", null] + } + } + } }, + "fieldset_type": "datagrid" + } + ], + "fieldset_info": { "id": "2021-03-c-05-11" }, + "fieldset_type": "marked" + }, + { + "type": "fieldset", + "label": "Of the children who had a break in CHIP coverage (in the previous question), how many were enrolled in Medicaid during the break?", + "questions": [ + { + "id": "2021-03-c-05-12-a", + "type": "integer", + "label": "Total for all ages (0-16)", + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -28275,37 +24094,25 @@ "id": "2021-03-c-05-12-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-12-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-12-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-12-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -28323,9 +24130,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-05-12" - }, + "fieldset_info": { "id": "2021-03-c-05-12" }, "fieldset_type": "marked" }, { @@ -28337,10 +24142,7 @@ "id": "2021-03-c-05-13-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -28376,37 +24178,25 @@ "id": "2021-03-c-05-13-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-13-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-13-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-13-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -28424,9 +24214,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-05-13" - }, + "fieldset_info": { "id": "2021-03-c-05-13" }, "fieldset_type": "marked" }, { @@ -28437,10 +24225,7 @@ "id": "2021-03-c-05-14-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -28476,37 +24261,25 @@ "id": "2021-03-c-05-14-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-14-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-14-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-14-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -28524,9 +24297,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-05-14" - }, + "fieldset_info": { "id": "2021-03-c-05-14" }, "fieldset_type": "marked" }, { @@ -28544,10 +24315,7 @@ "id": "2021-03-c-05-15-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -28583,37 +24351,25 @@ "id": "2021-03-c-05-15-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-15-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-15-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-15-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -28631,9 +24387,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-05-15" - }, + "fieldset_info": { "id": "2021-03-c-05-15" }, "fieldset_type": "marked" }, { @@ -28644,10 +24398,7 @@ "id": "2021-03-c-05-16-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -28683,37 +24434,25 @@ "id": "2021-03-c-05-16-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-16-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-16-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-16-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -28731,9 +24470,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-05-16" - }, + "fieldset_info": { "id": "2021-03-c-05-16" }, "fieldset_type": "marked" }, { @@ -28744,10 +24481,7 @@ "id": "2021-03-c-05-17-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -28783,37 +24517,25 @@ "id": "2021-03-c-05-17-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-17-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-17-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-17-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -28831,9 +24553,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-05-17" - }, + "fieldset_info": { "id": "2021-03-c-05-17" }, "fieldset_type": "marked" }, { @@ -28845,10 +24565,7 @@ "id": "2021-03-c-05-18-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -28884,37 +24601,25 @@ "id": "2021-03-c-05-18-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-18-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-18-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-18-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -28932,9 +24637,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-05-18" - }, + "fieldset_info": { "id": "2021-03-c-05-18" }, "fieldset_type": "marked" }, { @@ -28945,10 +24648,7 @@ "id": "2021-03-c-05-19-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -28984,37 +24684,25 @@ "id": "2021-03-c-05-19-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-19-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-19-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-19-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -29032,18 +24720,14 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-05-19" - }, + "fieldset_info": { "id": "2021-03-c-05-19" }, "fieldset_type": "marked" }, { "id": "2021-03-c-05-20", "type": "text_multiline", "label": "Is there anything else you’d like to add about your data?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -29085,14 +24769,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -29109,9 +24787,7 @@ "id": "2021-03-c-06-03-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -29147,33 +24823,25 @@ "id": "2021-03-c-06-03-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "127630" - } + "answer": { "entry": "127630" } }, { "id": "2021-03-c-06-03-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "7311" - } + "answer": { "entry": "7311" } }, { "id": "2021-03-c-06-03-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "9418" - } + "answer": { "entry": "9418" } }, { "id": "2021-03-c-06-03-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "4527" - } + "answer": { "entry": "4527" } } ], "context_data": { @@ -29191,9 +24859,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-06-03" - }, + "fieldset_info": { "id": "2021-03-c-06-03" }, "fieldset_type": "marked" }, { @@ -29210,9 +24876,7 @@ "id": "2021-03-c-06-04-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -29248,33 +24912,25 @@ "id": "2021-03-c-06-04-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "12237" - } + "answer": { "entry": "12237" } }, { "id": "2021-03-c-06-04-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "70464" - } + "answer": { "entry": "70464" } }, { "id": "2021-03-c-06-04-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "9159" - } + "answer": { "entry": "9159" } }, { "id": "2021-03-c-06-04-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "3821" - } + "answer": { "entry": "3821" } } ], "context_data": { @@ -29292,9 +24948,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-06-04" - }, + "fieldset_info": { "id": "2021-03-c-06-04" }, "fieldset_type": "marked" }, { @@ -29305,9 +24959,7 @@ "id": "2021-03-c-06-05-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -29343,33 +24995,25 @@ "id": "2021-03-c-06-05-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "87" - } + "answer": { "entry": "87" } }, { "id": "2021-03-c-06-05-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "36" - } + "answer": { "entry": "36" } }, { "id": "2021-03-c-06-05-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "23" - } + "answer": { "entry": "23" } }, { "id": "2021-03-c-06-05-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "8" - } + "answer": { "entry": "8" } } ], "context_data": { @@ -29387,9 +25031,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-06-05" - }, + "fieldset_info": { "id": "2021-03-c-06-05" }, "fieldset_type": "marked" }, { @@ -29400,9 +25042,7 @@ "id": "2021-03-c-06-06-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -29438,33 +25078,25 @@ "id": "2021-03-c-06-06-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "87" - } + "answer": { "entry": "87" } }, { "id": "2021-03-c-06-06-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "36" - } + "answer": { "entry": "36" } }, { "id": "2021-03-c-06-06-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "23" - } + "answer": { "entry": "23" } }, { "id": "2021-03-c-06-06-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "88" - } + "answer": { "entry": "88" } } ], "context_data": { @@ -29482,9 +25114,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-06-06" - }, + "fieldset_info": { "id": "2021-03-c-06-06" }, "fieldset_type": "marked" }, { @@ -29496,9 +25126,7 @@ "id": "2021-03-c-06-07-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -29534,33 +25162,25 @@ "id": "2021-03-c-06-07-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "439" - } + "answer": { "entry": "439" } }, { "id": "2021-03-c-06-07-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "229" - } + "answer": { "entry": "229" } }, { "id": "2021-03-c-06-07-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "236" - } + "answer": { "entry": "236" } }, { "id": "2021-03-c-06-07-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "698" - } + "answer": { "entry": "698" } } ], "context_data": { @@ -29578,9 +25198,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-06-07" - }, + "fieldset_info": { "id": "2021-03-c-06-07" }, "fieldset_type": "marked" }, { @@ -29591,9 +25209,7 @@ "id": "2021-03-c-06-08-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -29629,33 +25245,25 @@ "id": "2021-03-c-06-08-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "4" - } + "answer": { "entry": "4" } }, { "id": "2021-03-c-06-08-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "8" - } + "answer": { "entry": "8" } }, { "id": "2021-03-c-06-08-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "46" - } + "answer": { "entry": "46" } }, { "id": "2021-03-c-06-08-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "55" - } + "answer": { "entry": "55" } } ], "context_data": { @@ -29673,18 +25281,14 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-06-08" - }, + "fieldset_info": { "id": "2021-03-c-06-08" }, "fieldset_type": "marked" }, { "id": "2021-03-c-06-09", "type": "text_multiline", "label": "Is there anything else you’d like to add about your data?", - "answer": { - "entry": "No. yes added more " - } + "answer": { "entry": "No. yes added more " } }, { "hint": "Next year you’ll report this data. Leave it blank in the meantime.", @@ -29701,10 +25305,7 @@ "id": "2021-03-c-06-10-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -29740,37 +25341,25 @@ "id": "2021-03-c-06-10-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-10-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-10-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-10-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -29788,9 +25377,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-06-10" - }, + "fieldset_info": { "id": "2021-03-c-06-10" }, "fieldset_type": "marked" }, { @@ -29801,10 +25388,7 @@ "id": "2021-03-c-06-11-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -29840,37 +25424,25 @@ "id": "2021-03-c-06-11-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-11-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-11-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-11-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -29888,9 +25460,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-06-11" - }, + "fieldset_info": { "id": "2021-03-c-06-11" }, "fieldset_type": "marked" }, { @@ -29901,10 +25471,7 @@ "id": "2021-03-c-06-12-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -29940,37 +25507,25 @@ "id": "2021-03-c-06-12-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-12-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-12-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-12-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -29988,9 +25543,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-06-12" - }, + "fieldset_info": { "id": "2021-03-c-06-12" }, "fieldset_type": "marked" }, { @@ -30002,10 +25555,7 @@ "id": "2021-03-c-06-13-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -30041,37 +25591,25 @@ "id": "2021-03-c-06-13-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-13-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-13-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-13-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -30089,9 +25627,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-06-13" - }, + "fieldset_info": { "id": "2021-03-c-06-13" }, "fieldset_type": "marked" }, { @@ -30102,10 +25638,7 @@ "id": "2021-03-c-06-14-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -30141,37 +25674,25 @@ "id": "2021-03-c-06-14-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-14-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-14-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-14-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -30189,9 +25710,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-06-14" - }, + "fieldset_info": { "id": "2021-03-c-06-14" }, "fieldset_type": "marked" }, { @@ -30209,10 +25728,7 @@ "id": "2021-03-c-06-15-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -30248,37 +25764,25 @@ "id": "2021-03-c-06-15-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-15-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-15-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-15-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -30296,9 +25800,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-06-15" - }, + "fieldset_info": { "id": "2021-03-c-06-15" }, "fieldset_type": "marked" }, { @@ -30309,10 +25811,7 @@ "id": "2021-03-c-06-16-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -30348,37 +25847,25 @@ "id": "2021-03-c-06-16-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-16-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-16-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-16-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -30396,9 +25883,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-06-16" - }, + "fieldset_info": { "id": "2021-03-c-06-16" }, "fieldset_type": "marked" }, { @@ -30409,10 +25894,7 @@ "id": "2021-03-c-06-17-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -30448,37 +25930,25 @@ "id": "2021-03-c-06-17-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-17-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-17-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-17-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -30496,9 +25966,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-06-17" - }, + "fieldset_info": { "id": "2021-03-c-06-17" }, "fieldset_type": "marked" }, { @@ -30510,10 +25978,7 @@ "id": "2021-03-c-06-18-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -30549,37 +26014,25 @@ "id": "2021-03-c-06-18-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-18-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-18-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-18-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -30597,9 +26050,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-06-18" - }, + "fieldset_info": { "id": "2021-03-c-06-18" }, "fieldset_type": "marked" }, { @@ -30610,10 +26061,7 @@ "id": "2021-03-c-06-19-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -30649,37 +26097,25 @@ "id": "2021-03-c-06-19-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-19-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-19-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-19-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -30697,18 +26133,14 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-06-19" - }, + "fieldset_info": { "id": "2021-03-c-06-19" }, "fieldset_type": "marked" }, { "id": "2021-03-c-06-20", "type": "text_multiline", "label": "Is there anything else you’d like to add about your data?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -30731,14 +26163,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -30760,18 +26186,12 @@ "label": "Health plans", "value": "health_plans" }, - { - "label": "States", - "value": "states" - }, + { "label": "States", "value": "states" }, { "label": "Third party administrator", "value": "third_party_administrator" }, - { - "label": "Other ", - "value": "other" - } + { "label": "Other ", "value": "other" } ] }, "questions": [ @@ -30811,9 +26231,7 @@ "id": "2021-03-d-01-02-b", "type": "text_multiline", "label": "Who tracks cost sharing?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -30852,9 +26270,7 @@ "id": "2021-03-d-01-04", "type": "text_multiline", "label": "Approximately how many families exceeded the 5% cap in the last federal fiscal year?", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } }, { "id": "2021-03-d-01-05", @@ -30863,14 +26279,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -30878,9 +26288,7 @@ "id": "2021-03-d-01-05-a", "type": "text_multiline", "label": "What did you find in your assessment?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -30904,14 +26312,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -30919,9 +26321,7 @@ "id": "2021-03-d-01-06-a", "type": "text_multiline", "label": "What did you find in your assessment?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -30966,17 +26366,13 @@ "id": "2021-03-d-01-08", "type": "text_multiline", "label": "Is there anything else you’d like to add that wasn’t already covered?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2021-03-d-01-09", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -31019,14 +26415,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } } @@ -31066,14 +26456,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -31082,9 +26466,7 @@ "hint": "This only applies to states operating an 1115 demo.", "type": "text_multiline", "label": "What benefit package is offered as part of your premium assistance program, including any applicable minimum coverage requirements?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-03-e-02-04", @@ -31094,18 +26476,9 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] } }, @@ -31117,18 +26490,9 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] } }, @@ -31140,18 +26504,9 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] }, "questions": [ @@ -31159,9 +26514,7 @@ "id": "2021-03-e-02-06-a", "type": "text_multiline", "label": "How do you track cost sharing to ensure families don’t pay more than 5% of the aggregate household income in a year?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -31182,9 +26535,7 @@ "id": "2021-03-e-02-07", "type": "integer", "label": "How many children were enrolled in the premium assistance program on average each month in FFY 2020?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "type": "fieldset", @@ -31193,25 +26544,19 @@ "id": "2021-03-e-02-08", "type": "money", "label": "What’s the average monthly contribution the state pays towards coverage of a child?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-03-e-02-09", "type": "money", "label": "What’s the average monthly contribution the employer pays towards coverage of a child?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-03-e-02-10", "type": "money", "label": "What’s the average monthly contribution the employee pays towards coverage of a child?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -31244,15 +26589,9 @@ ] ], "headers": [ - { - "contents": "State" - }, - { - "contents": "Employer" - }, - { - "contents": "Employee" - } + { "contents": "State" }, + { "contents": "Employer" }, + { "contents": "Employee" } ] }, "fieldset_type": "synthesized_table" @@ -31312,41 +26651,31 @@ "id": "2021-03-e-02-14", "type": "text_multiline", "label": "What strategies have been most effective in reducing the administrative barriers in order to provide premium assistance?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-03-e-02-15", "type": "text_multiline", "label": "What challenges did you experience with your premium assistance program in FFY 2020?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-03-e-02-16", "type": "text_multiline", "label": "What accomplishments did you experience with your premium assistance program in FFY 2020?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-03-e-02-17", "type": "text_multiline", "label": "Is there anything else you’d like to add that wasn’t already covered?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-03-e-02-18", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -31383,14 +26712,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -31401,14 +26724,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -31419,14 +26736,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -31445,18 +26756,9 @@ "answer": { "entry": "na", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] }, "questions": [ @@ -31464,9 +26766,7 @@ "id": "2021-03-f-01-05-a", "type": "text_multiline", "label": "What safeguards and procedures do the Managed Care plans have in place?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -31487,17 +26787,13 @@ "id": "2021-03-f-01-06", "type": "integer", "label": "How many eligibility denials have been appealed in a fair hearing in FFY 2020?", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } }, { "id": "2021-03-f-01-07", "type": "integer", "label": "How many cases have been found in favor of the beneficiary in FFY 2020?", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } }, { "type": "fieldset", @@ -31506,17 +26802,13 @@ "id": "2021-03-f-01-08", "type": "integer", "label": "How many cases related to provider credentialing were investigated in FFY 2020?", - "answer": { - "entry": "2" - } + "answer": { "entry": "2" } }, { "id": "2021-03-f-01-09", "type": "integer", "label": "How many cases related to provider credentialing were referred to appropriate law enforcement officials in FFY 2020?", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } } ] }, @@ -31527,17 +26819,13 @@ "id": "2021-03-f-01-10", "type": "integer", "label": "How many cases related to provider billing were investigated in FFY 2020?", - "answer": { - "entry": "19" - } + "answer": { "entry": "19" } }, { "id": "2021-03-f-01-11", "type": "integer", "label": "How many cases were referred to appropriate law enforcement officials in FFY 2020?", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } } ] }, @@ -31548,17 +26836,13 @@ "id": "2021-03-f-01-12", "type": "integer", "label": "How many cases related to beneficiary eligibility were investigated in FFY 2020?", - "answer": { - "entry": "4" - } + "answer": { "entry": "4" } }, { "id": "2021-03-f-01-13", "type": "integer", "label": "How many cases related to beneficiary eligibility were referred to appropriate law enforcement officials in FFY 2020?", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } } ] }, @@ -31569,10 +26853,7 @@ "answer": { "entry": "separate_chip_only", "options": [ - { - "label": "CHIP only", - "value": "separate_chip_only" - }, + { "label": "CHIP only", "value": "separate_chip_only" }, { "label": "Medicaid and CHIP combined", "value": "medicaid_separate_chip_combined" @@ -31587,14 +26868,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -31628,14 +26903,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -31643,9 +26912,7 @@ "id": "2021-03-f-01-16-a", "type": "text_multiline", "label": "What specifically are the contractors responsible for in terms of oversight?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -31666,17 +26933,13 @@ "id": "2021-03-f-01-17", "type": "text_multiline", "label": "Is there anything else you’d like to add that wasn’t already covered?", - "answer": { - "entry": "Only Separate CHIP reported." - } + "answer": { "entry": "Only Separate CHIP reported." } }, { "id": "2021-03-f-01-18", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -31710,14 +26973,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -31729,9 +26986,7 @@ "id": "2021-03-g-01-02-a", "type": "integer", "label": "Total for all ages (0-18)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -31769,49 +27024,37 @@ "id": "2021-03-g-01-02-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "1915" - } + "answer": { "entry": "1915" } }, { "id": "2021-03-g-01-02-c", "type": "integer", "label": "Ages 1-2", - "answer": { - "entry": "8659" - } + "answer": { "entry": "8659" } }, { "id": "2021-03-g-01-02-d", "type": "integer", "label": "Ages 3-5", - "answer": { - "entry": "15546" - } + "answer": { "entry": "15546" } }, { "id": "2021-03-g-01-02-e", "type": "integer", "label": "Ages 6-9", - "answer": { - "entry": "21088" - } + "answer": { "entry": "21088" } }, { "id": "2021-03-g-01-02-f", "type": "integer", "label": "Ages 10-14", - "answer": { - "entry": "26998" - } + "answer": { "entry": "26998" } }, { "id": "2021-03-g-01-02-g", "type": "integer", "label": "Ages 15-18", - "answer": { - "entry": "19934" - } + "answer": { "entry": "19934" } } ], "context_data": { @@ -31829,9 +27072,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-g-01-02" - }, + "fieldset_info": { "id": "2021-03-g-01-02" }, "fieldset_type": "marked" }, { @@ -31842,9 +27083,7 @@ "id": "2021-03-g-01-03-a", "type": "integer", "label": "Total for all ages (0-18)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -31882,49 +27121,37 @@ "id": "2021-03-g-01-03-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "24" - } + "answer": { "entry": "24" } }, { "id": "2021-03-g-01-03-c", "type": "integer", "label": "Ages 1-2", - "answer": { - "entry": "2238" - } + "answer": { "entry": "2238" } }, { "id": "2021-03-g-01-03-d", "type": "integer", "label": "Ages 3-5", - "answer": { - "entry": "8868" - } + "answer": { "entry": "8868" } }, { "id": "2021-03-g-01-03-e", "type": "integer", "label": "Ages 6-9", - "answer": { - "entry": "14543" - } + "answer": { "entry": "14543" } }, { "id": "2021-03-g-01-03-f", "type": "integer", "label": "Ages 10-14", - "answer": { - "entry": "17462" - } + "answer": { "entry": "17462" } }, { "id": "2021-03-g-01-03-g", "type": "integer", "label": "Ages 15-18", - "answer": { - "entry": "11415" - } + "answer": { "entry": "11415" } } ], "context_data": { @@ -31942,9 +27169,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-g-01-03" - }, + "fieldset_info": { "id": "2021-03-g-01-03" }, "fieldset_type": "marked" }, { @@ -31961,9 +27186,7 @@ "id": "2021-03-g-01-04-a", "type": "integer", "label": "Total for all ages (0-18)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -32001,49 +27224,37 @@ "id": "2021-03-g-01-04-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "8" - } + "answer": { "entry": "8" } }, { "id": "2021-03-g-01-04-c", "type": "integer", "label": "Ages 1-2", - "answer": { - "entry": "1997" - } + "answer": { "entry": "1997" } }, { "id": "2021-03-g-01-04-d", "type": "integer", "label": "Ages 3-5", - "answer": { - "entry": "8504" - } + "answer": { "entry": "8504" } }, { "id": "2021-03-g-01-04-e", "type": "integer", "label": "Ages 6-9", - "answer": { - "entry": "13966" - } + "answer": { "entry": "13966" } }, { "id": "2021-03-g-01-04-f", "type": "integer", "label": "Ages 10-14", - "answer": { - "entry": "16828" - } + "answer": { "entry": "16828" } }, { "id": "2021-03-g-01-04-g", "type": "integer", "label": "Ages 15-18", - "answer": { - "entry": "10639" - } + "answer": { "entry": "10639" } } ], "context_data": { @@ -32061,9 +27272,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-g-01-04" - }, + "fieldset_info": { "id": "2021-03-g-01-04" }, "fieldset_type": "marked" }, { @@ -32080,9 +27289,7 @@ "id": "2021-03-g-01-05-a", "type": "integer", "label": "Total for all ages (0-18)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -32120,49 +27327,37 @@ "id": "2021-03-g-01-05-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "12" - } + "answer": { "entry": "12" } }, { "id": "2021-03-g-01-05-c", "type": "integer", "label": "Ages 1-2", - "answer": { - "entry": "117" - } + "answer": { "entry": "117" } }, { "id": "2021-03-g-01-05-d", "type": "integer", "label": "Ages 3-5", - "answer": { - "entry": "2133" - } + "answer": { "entry": "2133" } }, { "id": "2021-03-g-01-05-e", "type": "integer", "label": "Ages 6-9", - "answer": { - "entry": "5991" - } + "answer": { "entry": "5991" } }, { "id": "2021-03-g-01-05-f", "type": "integer", "label": "Ages 10-14", - "answer": { - "entry": "5931" - } + "answer": { "entry": "5931" } }, { "id": "2021-03-g-01-05-g", "type": "integer", "label": "Ages 15-18", - "answer": { - "entry": "4883" - } + "answer": { "entry": "4883" } } ], "context_data": { @@ -32180,9 +27375,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-g-01-05" - }, + "fieldset_info": { "id": "2021-03-g-01-05" }, "fieldset_type": "marked" }, { @@ -32195,9 +27388,7 @@ "id": "2021-03-g-01-06", "type": "integer", "label": "How many children in the “ages 6–9” group received a sealant on at least one permanent molar tooth during FFY 2020?", - "answer": { - "entry": "1893" - } + "answer": { "entry": "1893" } }, { "hint": "The sealant on a permanent molar tooth is provided by a dental professional for whom placing a sealant is within their scope of practice. It’s defined by HCPCS code D1351 (or equivalent CDT code D1351) based on an unduplicated paid, unpaid, or denied claim. Permanent molars are teeth numbered 2, 3, 14, 15, 18, 19, 30, and 31, and additionally — for states covering sealants on third molars (“wisdom teeth”) — teeth numbered 1, 16, 17, and 32.\n\nAll data should be based on the definitions in the Early and Periodic Screening, Diagnostic, and Treatment (EPSDT) Report (Form CMS-416).", @@ -32212,14 +27403,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -32230,18 +27415,14 @@ "id": "2021-03-g-01-07-a", "type": "integer", "label": "How many children were enrolled in supplemental dental coverage during FFY 2020?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-03-g-01-07-b", "hint": "This is the total number for all children between 0-18 years from question 1.", "type": "integer", "label": "How many children were enrolled in Separate CHIP for at least 90 continuous days during FFY 2020?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "type": "fieldset", @@ -32275,9 +27456,7 @@ { "contents": "Children enrolled in Separate CHIP" }, - { - "contents": "Percentage" - } + { "contents": "Percentage" } ] }, "fieldset_type": "synthesized_table" @@ -32303,17 +27482,13 @@ "id": "2021-03-g-01-08", "type": "text_multiline", "label": "Is there anything else you’d like to add about your dental benefits? If you weren’t able to provide data, let us know why.", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2021-03-g-01-09", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -32340,14 +27515,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -32358,14 +27527,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -32397,9 +27560,7 @@ "hint": "This is optional if you already submitted CAHPS raw data to the AHRQ CAHPS database. Submit results only for the CHIP population, not for both Medicaid (Title XIX) and CHIP (Title XXI) together. Your data should represent children enrolled in all types of delivery systems (Managed Care, PCCM, and Fee for Service).", "type": "file_upload", "label": "Upload a summary report of your CAHPS survey results.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-03-h-02-02", @@ -32412,18 +27573,12 @@ "label": "Medicaid Expansion CHIP", "value": "medicaid expansion chip" }, - { - "label": "Separate CHIP", - "value": "separate chip" - }, + { "label": "Separate CHIP", "value": "separate chip" }, { "label": "Both Separate CHIP and Medicaid Expansion CHIP", "value": "combination chip" }, - { - "label": "Other", - "value": "other" - } + { "label": "Other", "value": "other" } ] }, "questions": [ @@ -32435,17 +27590,13 @@ "id": "2021-03-h-02-02-a", "type": "text", "label": "Which population did you survey?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-03-h-02-02-b", "type": "integer", "label": "How many children were included in the survey?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -32480,18 +27631,9 @@ "answer": { "entry": "5.0H", "options": [ - { - "label": "CAHPS 5.0", - "value": "5.0" - }, - { - "label": "CAHPS 5.0H", - "value": "5.0H" - }, - { - "label": "Other", - "value": "other" - } + { "label": "CAHPS 5.0", "value": "5.0" }, + { "label": "CAHPS 5.0H", "value": "5.0H" }, + { "label": "Other", "value": "other" } ] }, "questions": [ @@ -32503,9 +27645,7 @@ "id": "2021-03-h-02-03-a", "type": "text", "label": "Which CAHPS survey did you use?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -32532,18 +27672,12 @@ "answer": { "entry": [null, "chronic"], "options": [ - { - "label": "None", - "value": "none" - }, + { "label": "None", "value": "none" }, { "label": "Children with Chronic Conditions", "value": "chronic" }, - { - "label": "Other", - "value": "other" - } + { "label": "Other", "value": "other" } ] }, "questions": [ @@ -32551,9 +27685,7 @@ "id": "2021-03-h-02-04-a", "type": "text", "label": "Which supplemental item sets did you include?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -32582,14 +27714,8 @@ "label": "NCQA HEDIS CAHPS 5.0H", "value": "ncqa hedis cahps 5.0h" }, - { - "label": "HRQ CAHPS", - "value": "hrq cahps" - }, - { - "label": "Other", - "value": "other" - } + { "label": "HRQ CAHPS", "value": "hrq cahps" }, + { "label": "Other", "value": "other" } ] }, "questions": [ @@ -32601,9 +27727,7 @@ "id": "2021-03-h-02-05-a", "type": "text", "label": "Which administrative protocol did you use?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -32626,9 +27750,7 @@ "id": "2021-03-h-02-06", "type": "text_multiline", "label": "Is there anything else you'd like to add about your CAHPS survey results?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } } ], "context_data": { @@ -32700,10 +27822,7 @@ "label": "Sample size was too small (fewer than 30)", "value": "Sample size was too small (fewer than 30)" }, - { - "label": "Other", - "value": "other" - } + { "label": "Other", "value": "other" } ] } }, @@ -32711,9 +27830,7 @@ "id": "2021-03-h-03-02", "type": "text_multiline", "label": "Explain in more detail why you weren’t able to collect the CAHPS survey.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -32751,14 +27868,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } } @@ -32792,14 +27903,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -32846,9 +27951,7 @@ "id": "2021-03-i-02-01-01-04", "type": "integer", "label": "How many children do you estimate are being served by the HSI program?", - "answer": { - "entry": "112" - }, + "answer": { "entry": "112" }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -32867,9 +27970,7 @@ "id": "2021-03-i-02-01-01-05", "type": "integer", "label": "How many children in the HSI program are below your state's FPL threshold? ", - "answer": { - "entry": "112" - }, + "answer": { "entry": "112" }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -32994,9 +28095,7 @@ "id": "2021-03-i-02-01-01-09", "type": "file_upload", "label": "Optional: Attach any additional documents.", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -33127,9 +28226,7 @@ "id": "2021-04-a-01-01-01-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -33170,9 +28267,7 @@ "id": "2021-04-a-01-01-01-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "30669" - } + "answer": { "entry": "30669" } } ] }, @@ -33193,9 +28288,7 @@ "id": "2021-04-a-01-01-01-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "1127906" - } + "answer": { "entry": "1127906" } } ] }, @@ -33262,18 +28355,14 @@ "id": "2021-04-a-01-01-01-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2021-04-a-01-01-01-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -33317,9 +28406,7 @@ "id": "2021-04-a-01-01-01-02-02-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -33360,9 +28447,7 @@ "id": "2021-04-a-01-01-01-02-02-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "13922" - } + "answer": { "entry": "13922" } } ] }, @@ -33383,9 +28468,7 @@ "id": "2021-04-a-01-01-01-02-02-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "359680" - } + "answer": { "entry": "359680" } } ] }, @@ -33452,18 +28535,14 @@ "id": "2021-04-a-01-01-01-02-02-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2021-04-a-01-01-01-02-02-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -33507,9 +28586,7 @@ "id": "2021-04-a-01-01-01-02-03-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -33550,9 +28627,7 @@ "id": "2021-04-a-01-01-01-02-03-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "16747" - } + "answer": { "entry": "16747" } } ] }, @@ -33573,9 +28648,7 @@ "id": "2021-04-a-01-01-01-02-03-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "351278" - } + "answer": { "entry": "351278" } } ] }, @@ -33642,18 +28715,14 @@ "id": "2021-04-a-01-01-01-02-03-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2021-04-a-01-01-01-02-03-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -33671,9 +28740,7 @@ "hint": "You can edit the suggested objective so it matches what’s in your CHIP State Plan.", "type": "text_multiline", "label": "What is the next objective listed in your CHIP State Plan?", - "answer": { - "entry": "Increase Access to Care" - } + "answer": { "entry": "Increase Access to Care" } }, { "id": "2021-04-a-01-01-02-02", @@ -33719,9 +28786,7 @@ "id": "2021-04-a-01-01-02-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -33762,9 +28827,7 @@ "id": "2021-04-a-01-01-02-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "78593" - } + "answer": { "entry": "78593" } } ] }, @@ -33785,9 +28848,7 @@ "id": "2021-04-a-01-01-02-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "78908" - } + "answer": { "entry": "78908" } } ] }, @@ -33854,18 +28915,14 @@ "id": "2021-04-a-01-01-02-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2021-04-a-01-01-02-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -33909,9 +28966,7 @@ "id": "2021-04-a-01-01-02-02-02-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -33952,9 +29007,7 @@ "id": "2021-04-a-01-01-02-02-02-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "1329" - } + "answer": { "entry": "1329" } } ] }, @@ -33975,9 +29028,7 @@ "id": "2021-04-a-01-01-02-02-02-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "1338" - } + "answer": { "entry": "1338" } } ] }, @@ -34044,18 +29095,14 @@ "id": "2021-04-a-01-01-02-02-02-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2021-04-a-01-01-02-02-02-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -34099,9 +29146,7 @@ "id": "2021-04-a-01-01-02-02-03-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -34142,9 +29187,7 @@ "id": "2021-04-a-01-01-02-02-03-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "10464" - } + "answer": { "entry": "10464" } } ] }, @@ -34165,9 +29208,7 @@ "id": "2021-04-a-01-01-02-02-03-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "10776" - } + "answer": { "entry": "10776" } } ] }, @@ -34234,18 +29275,14 @@ "id": "2021-04-a-01-01-02-02-03-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2021-04-a-01-01-02-02-03-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -34289,205 +29326,193 @@ "id": "2021-04-a-01-01-02-02-04-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", + "answer": { "entry": null }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "comment": "Interactive: Hide if 2021-04-a-01-01-02-02-01-02 is null, continuing goal, or new goal; noninteractive: hide if that's continuing goal or new goal.", + "hide_if": { + "target": "$..*[?(@ && @.id=='2021-04-a-01-01-02-02-04-02')].answer.entry", + "values": { + "interactive": [ + null, + "goal_continuing", + "goal_new" + ], + "noninteractive": [ + "goal_continuing", + "goal_new" + ] + } + } + } + } + } + ] + }, + { + "type": "fieldset", + "label": "Define the numerator you're measuring", + "questions": [ + { + "id": "2021-04-a-01-01-02-02-04-03", + "hint": "For example: The number of children enrolled in CHIP who visited a primary care physician in the last federal fiscal year.", + "type": "text_medium", + "label": "Which population are you measuring in the numerator?", + "answer": { + "entry": "The number of enrollees that have at least one dentist within 25 miles of enrollees with a rural residence." + } + }, + { + "id": "2021-04-a-01-01-02-02-04-04", + "type": "integer", + "label": "Numerator (total number)", + "answer": { "entry": "53395" } + } + ] + }, + { + "type": "fieldset", + "label": "Define the denominator you're measuring", + "questions": [ + { + "id": "2021-04-a-01-01-02-02-04-05", + "hint": "For example: The total number of children enrolled in CHIP in the last federal fiscal year.", + "type": "text_medium", + "label": "Which population are you measuring in the denominator?", "answer": { - "entry": null + "entry": "The number of ALL Kids enrollees with a residence verified within a rural area." + } + }, + { + "id": "2021-04-a-01-01-02-02-04-06", + "type": "integer", + "label": "Denominator (total number)", + "answer": { "entry": "66741" } + } + ] + }, + { + "type": "fieldset", + "questions": [], + "fieldset_info": { + "actions": ["percentage"], + "targets": [ + "$..*[?(@ && @.id=='2021-04-a-01-01-02-02-04-04')].answer.entry", + "$..*[?(@ && @.id=='2021-04-a-01-01-02-02-04-06')].answer.entry" + ] + }, + "fieldset_type": "synthesized_value" + }, + { + "id": "2021-04-a-01-01-02-02-04-07", + "type": "daterange", + "label": "What is the date range of your data?", + "answer": { + "entry": ["2019-10-01", "2021-09-01"], + "labels": ["Start", "End"] + } + }, + { + "id": "2021-04-a-01-01-02-02-04-08", + "type": "radio", + "label": "Which data source did you use?", + "answer": { + "entry": "goal_survey_data", + "options": [ + { + "label": "Eligibility or enrollment data", + "value": "goal_enrollment_data" + }, + { + "label": "Survey data", + "value": "goal_survey_data" }, + { + "label": "Another data source", + "value": "goal_other_data" + } + ] + } + }, + { + "id": "2021-04-a-01-01-02-02-04-09", + "type": "text_multiline", + "label": "How did your progress towards your goal last year compare to your previous year’s progress?", + "answer": { + "entry": "The percent of enrollees that have access to at least one dentist and lived in a rural area during FY 2020 decreased from 99.7 in FY19 to 80% in FY20." + } + }, + { + "id": "2021-04-a-01-01-02-02-04-10", + "type": "text_multiline", + "label": "What are you doing to continually make progress towards your goal?", + "answer": { + "entry": "Monthly meetings with BCBS AL staff provide ALL Kids with the opportunity to address provider issues when needed." + } + }, + { + "id": "2021-04-a-01-01-02-02-04-11", + "type": "text_multiline", + "label": "Anything else you'd like to tell us about this goal?", + "answer": { "entry": "No." } + }, + { + "id": "2021-04-a-01-01-02-02-04-12", + "hint": "Optional", + "type": "file_upload", + "label": "Do you have any supporting documentation?", + "answer": { "entry": null } + } + ] + }, + { + "id": "2021-04-a-01-01-02-02-05", + "type": "repeatable", + "questions": [ + { + "id": "2021-04-a-01-01-02-02-05-01", + "hint": "For example: In an effort to increase access to care, our goal is to increase the number of children who have visited a primary care physician by 5%.", + "type": "text_multiline", + "label": "Briefly describe your goal for this objective.", + "answer": { + "entry": "Children Access to Primary Care Physicians - At least 90% of children and adolescents who had a primary care physician visit annually, with no more than one gap in enrollment. " + } + }, + { + "id": "2021-04-a-01-01-02-02-05-02", + "type": "radio", + "label": "What type of goal is it?", + "answer": { + "entry": "goal_new", + "options": [ + { + "label": "New goal", + "value": "goal_new" + }, + { + "label": "Continuing goal", + "value": "goal_continuing" + }, + { + "label": "Discontinued goal", + "value": "goal_discontinued" + } + ], + "default_entry": "goal_new" + }, + "questions": [ + { + "id": "2021-04-a-01-01-02-02-05-02-a", + "type": "text_multiline", + "label": "Why was this goal discontinued?", + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", "comment": "Interactive: Hide if 2021-04-a-01-01-02-02-01-02 is null, continuing goal, or new goal; noninteractive: hide if that's continuing goal or new goal.", "hide_if": { - "target": "$..*[?(@ && @.id=='2021-04-a-01-01-02-02-04-02')].answer.entry", - "values": { - "interactive": [ - null, - "goal_continuing", - "goal_new" - ], - "noninteractive": [ - "goal_continuing", - "goal_new" - ] - } - } - } - } - } - ] - }, - { - "type": "fieldset", - "label": "Define the numerator you're measuring", - "questions": [ - { - "id": "2021-04-a-01-01-02-02-04-03", - "hint": "For example: The number of children enrolled in CHIP who visited a primary care physician in the last federal fiscal year.", - "type": "text_medium", - "label": "Which population are you measuring in the numerator?", - "answer": { - "entry": "The number of enrollees that have at least one dentist within 25 miles of enrollees with a rural residence." - } - }, - { - "id": "2021-04-a-01-01-02-02-04-04", - "type": "integer", - "label": "Numerator (total number)", - "answer": { - "entry": "53395" - } - } - ] - }, - { - "type": "fieldset", - "label": "Define the denominator you're measuring", - "questions": [ - { - "id": "2021-04-a-01-01-02-02-04-05", - "hint": "For example: The total number of children enrolled in CHIP in the last federal fiscal year.", - "type": "text_medium", - "label": "Which population are you measuring in the denominator?", - "answer": { - "entry": "The number of ALL Kids enrollees with a residence verified within a rural area." - } - }, - { - "id": "2021-04-a-01-01-02-02-04-06", - "type": "integer", - "label": "Denominator (total number)", - "answer": { - "entry": "66741" - } - } - ] - }, - { - "type": "fieldset", - "questions": [], - "fieldset_info": { - "actions": ["percentage"], - "targets": [ - "$..*[?(@ && @.id=='2021-04-a-01-01-02-02-04-04')].answer.entry", - "$..*[?(@ && @.id=='2021-04-a-01-01-02-02-04-06')].answer.entry" - ] - }, - "fieldset_type": "synthesized_value" - }, - { - "id": "2021-04-a-01-01-02-02-04-07", - "type": "daterange", - "label": "What is the date range of your data?", - "answer": { - "entry": ["2019-10-01", "2021-09-01"], - "labels": ["Start", "End"] - } - }, - { - "id": "2021-04-a-01-01-02-02-04-08", - "type": "radio", - "label": "Which data source did you use?", - "answer": { - "entry": "goal_survey_data", - "options": [ - { - "label": "Eligibility or enrollment data", - "value": "goal_enrollment_data" - }, - { - "label": "Survey data", - "value": "goal_survey_data" - }, - { - "label": "Another data source", - "value": "goal_other_data" - } - ] - } - }, - { - "id": "2021-04-a-01-01-02-02-04-09", - "type": "text_multiline", - "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { - "entry": "The percent of enrollees that have access to at least one dentist and lived in a rural area during FY 2020 decreased from 99.7 in FY19 to 80% in FY20." - } - }, - { - "id": "2021-04-a-01-01-02-02-04-10", - "type": "text_multiline", - "label": "What are you doing to continually make progress towards your goal?", - "answer": { - "entry": "Monthly meetings with BCBS AL staff provide ALL Kids with the opportunity to address provider issues when needed." - } - }, - { - "id": "2021-04-a-01-01-02-02-04-11", - "type": "text_multiline", - "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } - }, - { - "id": "2021-04-a-01-01-02-02-04-12", - "hint": "Optional", - "type": "file_upload", - "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } - } - ] - }, - { - "id": "2021-04-a-01-01-02-02-05", - "type": "repeatable", - "questions": [ - { - "id": "2021-04-a-01-01-02-02-05-01", - "hint": "For example: In an effort to increase access to care, our goal is to increase the number of children who have visited a primary care physician by 5%.", - "type": "text_multiline", - "label": "Briefly describe your goal for this objective.", - "answer": { - "entry": "Children Access to Primary Care Physicians - At least 90% of children and adolescents who had a primary care physician visit annually, with no more than one gap in enrollment. " - } - }, - { - "id": "2021-04-a-01-01-02-02-05-02", - "type": "radio", - "label": "What type of goal is it?", - "answer": { - "entry": "goal_new", - "options": [ - { - "label": "New goal", - "value": "goal_new" - }, - { - "label": "Continuing goal", - "value": "goal_continuing" - }, - { - "label": "Discontinued goal", - "value": "goal_discontinued" - } - ], - "default_entry": "goal_new" - }, - "questions": [ - { - "id": "2021-04-a-01-01-02-02-05-02-a", - "type": "text_multiline", - "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, - "context_data": { - "conditional_display": { - "type": "conditional_display", - "comment": "Interactive: Hide if 2021-04-a-01-01-02-02-01-02 is null, continuing goal, or new goal; noninteractive: hide if that's continuing goal or new goal.", - "hide_if": { - "target": "$..*[?(@ && @.id=='2021-04-a-01-01-02-02-05-02')].answer.entry", + "target": "$..*[?(@ && @.id=='2021-04-a-01-01-02-02-05-02')].answer.entry", "values": { "interactive": [ null, @@ -34522,9 +29547,7 @@ "id": "2021-04-a-01-01-02-02-05-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "43656" - } + "answer": { "entry": "43656" } } ] }, @@ -34545,9 +29568,7 @@ "id": "2021-04-a-01-01-02-02-05-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "46439" - } + "answer": { "entry": "46439" } } ] }, @@ -34598,9 +29619,7 @@ "id": "2021-04-a-01-01-02-02-05-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { - "entry": "This is a new goal." - } + "answer": { "entry": "This is a new goal." } }, { "id": "2021-04-a-01-01-02-02-05-10", @@ -34614,18 +29633,14 @@ "id": "2021-04-a-01-01-02-02-05-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2021-04-a-01-01-02-02-05-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -34691,9 +29706,7 @@ "id": "2021-04-a-01-01-03-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -34734,9 +29747,7 @@ "id": "2021-04-a-01-01-03-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "367" - } + "answer": { "entry": "367" } } ] }, @@ -34757,9 +29768,7 @@ "id": "2021-04-a-01-01-03-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "378" - } + "answer": { "entry": "378" } } ] }, @@ -34810,9 +29819,7 @@ "id": "2021-04-a-01-01-03-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { - "entry": "This is a new goal" - } + "answer": { "entry": "This is a new goal" } }, { "id": "2021-04-a-01-01-03-02-01-10", @@ -34826,18 +29833,14 @@ "id": "2021-04-a-01-01-03-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2021-04-a-01-01-03-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -34881,9 +29884,7 @@ "id": "2021-04-a-01-01-03-02-02-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -34924,9 +29925,7 @@ "id": "2021-04-a-01-01-03-02-02-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "369" - } + "answer": { "entry": "369" } } ] }, @@ -34947,9 +29946,7 @@ "id": "2021-04-a-01-01-03-02-02-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "401" - } + "answer": { "entry": "401" } } ] }, @@ -35016,18 +30013,14 @@ "id": "2021-04-a-01-01-03-02-02-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2021-04-a-01-01-03-02-02-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -35071,9 +30064,7 @@ "id": "2021-04-a-01-01-03-02-03-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -35114,9 +30105,7 @@ "id": "2021-04-a-01-01-03-02-03-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "41565" - } + "answer": { "entry": "41565" } } ] }, @@ -35137,9 +30126,7 @@ "id": "2021-04-a-01-01-03-02-03-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "54080" - } + "answer": { "entry": "54080" } } ] }, @@ -35206,18 +30193,14 @@ "id": "2021-04-a-01-01-03-02-03-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2021-04-a-01-01-03-02-03-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -35234,9 +30217,7 @@ "id": "2021-04-a-01-01-04-01", "type": "text_multiline", "label": "What is the next objective listed in your CHIP State Plan?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-04-02", @@ -35250,9 +30231,7 @@ "id": "2021-04-a-01-01-04-02-01-01", "type": "text_multiline", "label": "Briefly describe your goal for this objective.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-04-02-01-02", @@ -35281,9 +30260,7 @@ "id": "2021-04-a-01-01-04-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -35315,17 +30292,13 @@ "id": "2021-04-a-01-01-04-02-01-03", "type": "text_medium", "label": "Which population are you measuring in the numerator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-04-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -35337,17 +30310,13 @@ "id": "2021-04-a-01-01-04-02-01-05", "type": "text_medium", "label": "Which population are you measuring in the denominator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-04-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -35398,34 +30367,26 @@ "id": "2021-04-a-01-01-04-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-04-02-01-10", "type": "text_multiline", "label": "What are you doing to continually make progress towards your goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-04-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-04-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -35442,9 +30403,7 @@ "id": "2021-04-a-01-01-05-01", "type": "text_multiline", "label": "What is the next objective listed in your CHIP State Plan?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-05-02", @@ -35458,9 +30417,7 @@ "id": "2021-04-a-01-01-05-02-01-01", "type": "text_multiline", "label": "Briefly describe your goal for this objective.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-05-02-01-02", @@ -35489,9 +30446,7 @@ "id": "2021-04-a-01-01-05-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -35523,17 +30478,13 @@ "id": "2021-04-a-01-01-05-02-01-03", "type": "text_medium", "label": "Which population are you measuring in the numerator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-05-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -35545,17 +30496,13 @@ "id": "2021-04-a-01-01-05-02-01-05", "type": "text_medium", "label": "Which population are you measuring in the denominator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-05-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -35606,34 +30553,26 @@ "id": "2021-04-a-01-01-05-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-05-02-01-10", "type": "text_multiline", "label": "What are you doing to continually make progress towards your goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-05-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-05-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -35650,9 +30589,7 @@ "id": "2021-04-a-01-01-06-01", "type": "text_multiline", "label": "What is the next objective listed in your CHIP State Plan?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-06-02", @@ -35666,9 +30603,7 @@ "id": "2021-04-a-01-01-06-02-01-01", "type": "text_multiline", "label": "Briefly describe your goal for this objective.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-06-02-01-02", @@ -35697,9 +30632,7 @@ "id": "2021-04-a-01-01-06-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -35731,17 +30664,13 @@ "id": "2021-04-a-01-01-06-02-01-03", "type": "text_medium", "label": "Which population are you measuring in the numerator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-06-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -35754,17 +30683,13 @@ "hint": "For example: The total number of eligible children in the last federal fiscal year.", "type": "text_medium", "label": "Which population are you measuring in the denominator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-06-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -35815,34 +30740,26 @@ "id": "2021-04-a-01-01-06-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-06-02-01-10", "type": "text_multiline", "label": "What are you doing to continually make progress towards your goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-06-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-06-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -35872,9 +30789,7 @@ "id": "2021-04-a-02-02", "type": "text_multiline", "label": "Do you plan to add new strategies for measuring and reporting on your goals and objectives? What do you plan to do, and when will this data become available?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2021-04-a-02-03", @@ -35889,9 +30804,7 @@ "hint": "For example: studies, analyses, or any other documents that address your performance goals.", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -35946,34 +30859,26 @@ "id": "2021-05-a-01-01-a", "type": "money", "label": "2020", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-01-01-b", "type": "money", "label": "2021", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-05-a-01-01-c", "type": "money", "label": "2022", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-05-a-01-01" - }, + "fieldset_info": { "id": "2021-05-a-01-01" }, "fieldset_type": "marked" }, { @@ -35987,34 +30892,26 @@ "id": "2021-05-a-01-02-a", "type": "money", "label": "2020", - "answer": { - "entry": "356487608" - }, + "answer": { "entry": "356487608" }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-01-02-b", "type": "money", "label": "2021", - "answer": { - "entry": "411883043" - } + "answer": { "entry": "411883043" } }, { "id": "2021-05-a-01-02-c", "type": "money", "label": "2022", - "answer": { - "entry": "443317001" - } + "answer": { "entry": "443317001" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-05-a-01-02" - }, + "fieldset_info": { "id": "2021-05-a-01-02" }, "fieldset_type": "marked" }, { @@ -36028,34 +30925,26 @@ "id": "2021-05-a-01-03-a", "type": "money", "label": "2020", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-01-03-b", "type": "money", "label": "2021", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-05-a-01-03-c", "type": "money", "label": "2022", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-05-a-01-03" - }, + "fieldset_info": { "id": "2021-05-a-01-03" }, "fieldset_type": "marked" }, { @@ -36069,34 +30958,26 @@ "id": "2021-05-a-01-04-a", "type": "money", "label": "2020", - "answer": { - "entry": "6343194" - }, + "answer": { "entry": "6343194" }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-01-04-b", "type": "money", "label": "2021", - "answer": { - "entry": "7000000" - } + "answer": { "entry": "7000000" } }, { "id": "2021-05-a-01-04-c", "type": "money", "label": "2022", - "answer": { - "entry": "7000000" - } + "answer": { "entry": "7000000" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-05-a-01-04" - }, + "fieldset_info": { "id": "2021-05-a-01-04" }, "fieldset_type": "marked" }, { @@ -36107,9 +30988,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Managed Care" - }, + { "contents": "Managed Care" }, { "actions": ["identity"], "targets": [ @@ -36130,9 +31009,7 @@ } ], [ - { - "contents": "Fee for Service" - }, + { "contents": "Fee for Service" }, { "actions": ["identity"], "targets": [ @@ -36153,9 +31030,7 @@ } ], [ - { - "contents": "Other benefit costs" - }, + { "contents": "Other benefit costs" }, { "actions": ["identity"], "targets": [ @@ -36199,9 +31074,7 @@ } ], [ - { - "contents": "Total benefit costs" - }, + { "contents": "Total benefit costs" }, { "actions": ["sum"], "targets": [ @@ -36232,18 +31105,10 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "FFY 2020" - }, - { - "contents": "FFY 2021" - }, - { - "contents": "FFY 2022" - } + { "contents": "" }, + { "contents": "FFY 2020" }, + { "contents": "FFY 2021" }, + { "contents": "FFY 2022" } ] }, "fieldset_type": "synthesized_table" @@ -36268,34 +31133,26 @@ "id": "2021-05-a-02-01-a", "type": "money", "label": "2020", - "answer": { - "entry": "5005640" - }, + "answer": { "entry": "5005640" }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-02-01-b", "type": "money", "label": "2021", - "answer": { - "entry": "5716281" - } + "answer": { "entry": "5716281" } }, { "id": "2021-05-a-02-01-c", "type": "money", "label": "2022", - "answer": { - "entry": "6287909" - } + "answer": { "entry": "6287909" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-05-a-02-01" - }, + "fieldset_info": { "id": "2021-05-a-02-01" }, "fieldset_type": "marked" }, { @@ -36309,34 +31166,26 @@ "id": "2021-05-a-02-02-a", "type": "money", "label": "2020", - "answer": { - "entry": "5839005" - }, + "answer": { "entry": "5839005" }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-02-02-b", "type": "money", "label": "2021", - "answer": { - "entry": "6923267" - } + "answer": { "entry": "6923267" } }, { "id": "2021-05-a-02-02-c", "type": "money", "label": "2022", - "answer": { - "entry": "7555964" - } + "answer": { "entry": "7555964" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-05-a-02-02" - }, + "fieldset_info": { "id": "2021-05-a-02-02" }, "fieldset_type": "marked" }, { @@ -36350,34 +31199,26 @@ "id": "2021-05-a-02-03-a", "type": "money", "label": "2020", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-02-03-b", "type": "money", "label": "2021", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-05-a-02-03-c", "type": "money", "label": "2022", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-05-a-02-03" - }, + "fieldset_info": { "id": "2021-05-a-02-03" }, "fieldset_type": "marked" }, { @@ -36391,34 +31232,26 @@ "id": "2021-05-a-02-04-a", "type": "money", "label": "2020", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-02-04-b", "type": "money", "label": "2021", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-05-a-02-04-c", "type": "money", "label": "2022", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-05-a-02-04" - }, + "fieldset_info": { "id": "2021-05-a-02-04" }, "fieldset_type": "marked" }, { @@ -36432,34 +31265,26 @@ "id": "2021-05-a-02-05-a", "type": "money", "label": "2020", - "answer": { - "entry": "201056" - }, + "answer": { "entry": "201056" }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-02-05-b", "type": "money", "label": "2021", - "answer": { - "entry": "500000" - } + "answer": { "entry": "500000" } }, { "id": "2021-05-a-02-05-c", "type": "money", "label": "2022", - "answer": { - "entry": "500000" - } + "answer": { "entry": "500000" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-05-a-02-05" - }, + "fieldset_info": { "id": "2021-05-a-02-05" }, "fieldset_type": "marked" }, { @@ -36473,34 +31298,26 @@ "id": "2021-05-a-02-06-a", "type": "money", "label": "2020", - "answer": { - "entry": "230094" - }, + "answer": { "entry": "230094" }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-02-06-b", "type": "money", "label": "2021", - "answer": { - "entry": "200000" - } + "answer": { "entry": "200000" } }, { "id": "2021-05-a-02-06-c", "type": "money", "label": "2022", - "answer": { - "entry": "200000" - } + "answer": { "entry": "200000" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-05-a-02-06" - }, + "fieldset_info": { "id": "2021-05-a-02-06" }, "fieldset_type": "marked" }, { @@ -36514,34 +31331,26 @@ "id": "2021-05-a-02-07-a", "type": "money", "label": "2020", - "answer": { - "entry": "885410" - }, + "answer": { "entry": "885410" }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-02-07-b", "type": "money", "label": "2021", - "answer": { - "entry": "1371907" - } + "answer": { "entry": "1371907" } }, { "id": "2021-05-a-02-07-c", "type": "money", "label": "2022", - "answer": { - "entry": "1509098" - } + "answer": { "entry": "1509098" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-05-a-02-07" - }, + "fieldset_info": { "id": "2021-05-a-02-07" }, "fieldset_type": "marked" }, { @@ -36552,9 +31361,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Personnel" - }, + { "contents": "Personnel" }, { "actions": ["identity"], "targets": [ @@ -36575,9 +31382,7 @@ } ], [ - { - "contents": "General administration" - }, + { "contents": "General administration" }, { "actions": ["identity"], "targets": [ @@ -36598,9 +31403,7 @@ } ], [ - { - "contents": "Contractors and brokers" - }, + { "contents": "Contractors and brokers" }, { "actions": ["identity"], "targets": [ @@ -36621,9 +31424,7 @@ } ], [ - { - "contents": "Claims processing" - }, + { "contents": "Claims processing" }, { "actions": ["identity"], "targets": [ @@ -36644,9 +31445,7 @@ } ], [ - { - "contents": "Outreach and marketing" - }, + { "contents": "Outreach and marketing" }, { "actions": ["identity"], "targets": [ @@ -36667,9 +31466,7 @@ } ], [ - { - "contents": "Health Services Initiatives (HSI)" - }, + { "contents": "Health Services Initiatives (HSI)" }, { "actions": ["identity"], "targets": [ @@ -36690,9 +31487,7 @@ } ], [ - { - "contents": "Other administrative costs" - }, + { "contents": "Other administrative costs" }, { "actions": ["identity"], "targets": [ @@ -36713,9 +31508,7 @@ } ], [ - { - "contents": "Total administrative costs" - }, + { "contents": "Total administrative costs" }, { "actions": ["sum"], "targets": [ @@ -36754,9 +31547,7 @@ } ], [ - { - "contents": "10% administrative cap" - }, + { "contents": "10% administrative cap" }, { "actions": ["formula"], "formula": "(<0> + <1> + <2> - <3>) / 9", @@ -36793,18 +31584,10 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "FFY 2020" - }, - { - "contents": "FFY 2021" - }, - { - "contents": "FFY 2022" - } + { "contents": "" }, + { "contents": "FFY 2020" }, + { "contents": "FFY 2021" }, + { "contents": "FFY 2022" } ] }, "fieldset_type": "synthesized_table" @@ -36817,9 +31600,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Total program costs " - }, + { "contents": "Total program costs " }, { "actions": ["formula"], "formula": "<0> + <1> + <2> + <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10>", @@ -36876,48 +31657,30 @@ } ], [ - { - "contents": "eFMAP" - }, + { "contents": "eFMAP" }, { "actions": ["identity"], - "targets": [ - { - "lookupFmapFy": "2020" - } - ], + "targets": [{ "lookupFmapFy": "2020" }], "$comment": "This should pull the FMAP data from the API for this state and plug it in (FY20)" }, { "actions": ["identity"], - "targets": [ - { - "lookupFmapFy": "2021" - } - ], + "targets": [{ "lookupFmapFy": "2021" }], "$comment": "This should pull the FMAP data from the API for this state and plug it in (FY21)" }, { "actions": ["identity"], - "targets": [ - { - "lookupFmapFy": "2022" - } - ], + "targets": [{ "lookupFmapFy": "2022" }], "$comment": "This should pull the FMAP data from the API for this state and plug it in (FY22)" } ], [ - { - "contents": "Federal share" - }, + { "contents": "Federal share" }, { "actions": ["formula"], "formula": "(<0> / 100) * (<1> + <2> + <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10> + <11>)", "targets": [ - { - "lookupFmapFy": "2020" - }, + { "lookupFmapFy": "2020" }, "$..*[?(@ && @.id=='2021-05-a-01-01-a')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-01-02-a')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-01-03-a')].answer.entry", @@ -36936,9 +31699,7 @@ "actions": ["formula"], "formula": "(<0> / 100) * (<1> + <2> + <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10> + <11>)", "targets": [ - { - "lookupFmapFy": "2021" - }, + { "lookupFmapFy": "2021" }, "$..*[?(@ && @.id=='2021-05-a-01-01-b')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-01-02-b')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-01-03-b')].answer.entry", @@ -36957,9 +31718,7 @@ "actions": ["formula"], "formula": "(<0> / 100) * (<1> + <2> + <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10> + <11>)", "targets": [ - { - "lookupFmapFy": "2022" - }, + { "lookupFmapFy": "2022" }, "$..*[?(@ && @.id=='2021-05-a-01-01-c')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-01-02-c')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-01-03-c')].answer.entry", @@ -36976,9 +31735,7 @@ } ], [ - { - "contents": "State share" - }, + { "contents": "State share" }, { "actions": ["formula"], "formula": "<0> + <1> + <2> + <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10> - ((<11> / 100) * (<12> + <13> + <14> + <15> + <16> + <17> + <18> + <19> + <20> + <21> + <22>))", @@ -36994,9 +31751,7 @@ "$..*[?(@ && @.id=='2021-05-a-02-05-a')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-02-06-a')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-02-07-a')].answer.entry", - { - "lookupFmapFy": "2020" - }, + { "lookupFmapFy": "2020" }, "$..*[?(@ && @.id=='2021-05-a-01-01-a')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-01-02-a')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-01-03-a')].answer.entry", @@ -37026,9 +31781,7 @@ "$..*[?(@ && @.id=='2021-05-a-02-05-b')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-02-06-b')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-02-07-b')].answer.entry", - { - "lookupFmapFy": "2021" - }, + { "lookupFmapFy": "2021" }, "$..*[?(@ && @.id=='2021-05-a-01-01-b')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-01-02-b')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-01-03-b')].answer.entry", @@ -37058,9 +31811,7 @@ "$..*[?(@ && @.id=='2021-05-a-02-05-c')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-02-06-c')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-02-07-c')].answer.entry", - { - "lookupFmapFy": "2022" - }, + { "lookupFmapFy": "2022" }, "$..*[?(@ && @.id=='2021-05-a-01-01-c')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-01-02-c')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-01-03-c')].answer.entry", @@ -37078,18 +31829,10 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "FFY 2020" - }, - { - "contents": "FFY 2021" - }, - { - "contents": "FFY 2022" - } + { "contents": "" }, + { "contents": "FFY 2020" }, + { "contents": "FFY 2021" }, + { "contents": "FFY 2022" } ] }, "fieldset_type": "synthesized_table" @@ -37130,10 +31873,7 @@ "label": "Tobacco settlement", "value": "tobacco settlement" }, - { - "label": "Other", - "value": "other" - } + { "label": "Other", "value": "other" } ] }, "questions": [ @@ -37141,9 +31881,7 @@ "id": "2021-05-a-02-08-a", "type": "text", "label": "What other type of funding did you receive?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -37167,14 +31905,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -37182,9 +31914,7 @@ "id": "2021-05-a-02-09-a", "type": "text_multiline", "label": "Briefly explain why your state didn’t have enough federal funding to cover your CHIP program costs.", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -37220,34 +31950,26 @@ "id": "2021-05-a-03-01-a", "type": "integer", "label": "2020", - "answer": { - "entry": "53253" - }, + "answer": { "entry": "53253" }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-03-01-b", "type": "integer", "label": "2021", - "answer": { - "entry": "" - } + "answer": { "entry": "" } }, { "id": "2021-05-a-03-01-c", "type": "integer", "label": "2022", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-05-a-03-01" - }, + "fieldset_info": { "id": "2021-05-a-03-01" }, "fieldset_type": "marked" }, { @@ -37262,34 +31984,26 @@ "id": "2021-05-a-03-02-a", "type": "money", "label": "2020", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-03-02-b", "type": "money", "label": "2021", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2021-05-a-03-02-c", "type": "money", "label": "2022", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-05-a-03-02" - }, + "fieldset_info": { "id": "2021-05-a-03-02" }, "fieldset_type": "marked" }, { @@ -37298,9 +32012,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Eligible children" - }, + { "contents": "Eligible children" }, { "actions": ["identity"], "targets": [ @@ -37321,9 +32033,7 @@ } ], [ - { - "contents": "PMPM cost" - }, + { "contents": "PMPM cost" }, { "actions": ["identity"], "targets": [ @@ -37345,18 +32055,10 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "FFY 2020" - }, - { - "contents": "FFY 2021" - }, - { - "contents": "FFY 2022" - } + { "contents": "" }, + { "contents": "FFY 2020" }, + { "contents": "FFY 2021" }, + { "contents": "FFY 2022" } ] }, "fieldset_type": "synthesized_table" @@ -37380,34 +32082,26 @@ "id": "2021-05-a-04-01-a", "type": "integer", "label": "2020", - "answer": { - "entry": "174401" - }, + "answer": { "entry": "174401" }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-04-01-b", "type": "integer", "label": "2021", - "answer": { - "entry": "80722" - } + "answer": { "entry": "80722" } }, { "id": "2021-05-a-04-01-c", "type": "integer", "label": "2022", - "answer": { - "entry": "84885" - } + "answer": { "entry": "84885" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-05-a-04-01" - }, + "fieldset_info": { "id": "2021-05-a-04-01" }, "fieldset_type": "marked" }, { @@ -37422,34 +32116,26 @@ "id": "2021-05-a-04-02-a", "type": "money", "label": "2020", - "answer": { - "entry": "233" - }, + "answer": { "entry": "233" }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-04-02-b", "type": "money", "label": "2021", - "answer": { - "entry": "3" - } + "answer": { "entry": "3" } }, { "id": "2021-05-a-04-02-c", "type": "money", "label": "2022", - "answer": { - "entry": "252" - } + "answer": { "entry": "252" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-05-a-04-02" - }, + "fieldset_info": { "id": "2021-05-a-04-02" }, "fieldset_type": "marked" }, { @@ -37458,9 +32144,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Eligible children" - }, + { "contents": "Eligible children" }, { "actions": ["identity"], "targets": [ @@ -37481,9 +32165,7 @@ } ], [ - { - "contents": "PMPM cost" - }, + { "contents": "PMPM cost" }, { "actions": ["identity"], "targets": [ @@ -37505,18 +32187,10 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "FFY 2020" - }, - { - "contents": "FFY 2021" - }, - { - "contents": "FFY 2022" - } + { "contents": "" }, + { "contents": "FFY 2020" }, + { "contents": "FFY 2021" }, + { "contents": "FFY 2022" } ] }, "fieldset_type": "synthesized_table" @@ -37539,9 +32213,7 @@ "id": "2021-05-a-05-02", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -37618,9 +32290,7 @@ "id": "2021-06-a-01-06", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -37707,25 +32377,19 @@ "id": "2020-00-a-01-04", "type": "text", "label": "Contact name:", - "answer": { - "entry": "Tester" - } + "answer": { "entry": "Tester" } }, { "id": "2020-00-a-01-05", "type": "text", "label": "Job title:", - "answer": { - "entry": "Director" - } + "answer": { "entry": "Director" } }, { "id": "2020-00-a-01-06", "type": "email", "label": "Email:", - "answer": { - "entry": "" - } + "answer": { "entry": "" } }, { "id": "2020-00-a-01-07", @@ -37740,9 +32404,7 @@ "id": "2020-00-a-01-08", "type": "phone_number", "label": "Phone number:", - "answer": { - "entry": "123-456-7890" - } + "answer": { "entry": "123-456-7890" } }, { "hint": "This information is being collected to assist the Centers for Medicare & Medicaid Services (CMS) in partnership with States with the ongoing management of Medicaid and CHIP programs and policies. This mandatory information collection (42 U.S.C. 1397hh) will be used to help each state meet the statutory requirements at section 2108(a) of the Social Security Act to assess the operation of the State child health plan in each Federal fiscal year and to report the results of the assessment including the progress made in reducing the number of uncovered, low-income children. Under the Privacy Act of 1974 any personally identifying information obtained will be kept private to the extent of the law. According to the Paperwork Reduction Act of 1995, no persons are required to respond to a collection of information unless it displays a valid OMB control number. The valid OMB control number for this information collection is 0938-1148 (CMS-10398 #1). The time required to complete this information collection is estimated to average 40 hours per response, including the time to review instructions, search existing data resources, gather the data needed, and complete and review the information collection. Send comments regarding this burden estimate or any other aspect of this collection of information, including suggestions for reducing this burden, to CMS, 7500 Security Boulevard, Attn: Paperwork Reduction Act Reports Clearance Officer, Mail Stop C4-26-05, Baltimore, Maryland 21244-1850.", @@ -37791,14 +32453,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -37806,9 +32462,7 @@ "id": "2020-01-a-01-01-a", "type": "money", "label": "How much is your enrollment fee?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -37832,14 +32486,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -37853,14 +32501,8 @@ "answer": { "entry": "", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -37897,9 +32539,7 @@ "id": "2020-01-a-01-02-c", "type": "money", "label": "How much is the premium for one child?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -37939,14 +32579,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -37984,9 +32618,7 @@ "id": "2020-01-a-01-03-b", "type": "money", "label": "What's the maximum premium a family would be charged each year?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -38007,9 +32639,7 @@ "id": "2020-01-a-01-04", "type": "text_multiline", "label": "Do premiums differ for different Medicaid Expansion CHIP populations beyond FPL (for example, by eligibility group)? If so, briefly explain the fee structure breakdown.", - "answer": { - "entry": "N/A" - } + "answer": { "entry": "N/A" } }, { "id": "2020-01-a-01-05", @@ -38019,18 +32649,12 @@ "answer": { "entry": [null, "pccm"], "options": [ - { - "label": "Managed Care", - "value": "mco" - }, + { "label": "Managed Care", "value": "mco" }, { "label": "Primary Care Case Management", "value": "pccm" }, - { - "label": "Fee for Service", - "value": "ffs" - } + { "label": "Fee for Service", "value": "ffs" } ] } }, @@ -38038,9 +32662,7 @@ "id": "2020-01-a-01-06", "type": "text_multiline", "label": "Which delivery system(s) are available to which Medicaid Expansion CHIP populations? Indicate whether eligibility status, income level, age range, or other criteria determine which delivery system a population receives.", - "answer": { - "entry": "N/A" - } + "answer": { "entry": "N/A" } } ], "context_data": { @@ -38063,14 +32685,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -38078,9 +32694,7 @@ "id": "2020-01-a-02-01-a", "type": "money", "label": "How much is your enrollment fee?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -38104,14 +32718,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -38125,14 +32733,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -38174,9 +32776,7 @@ "id": "2020-01-a-02-02-c", "type": "money", "label": "How much is the premium for one child?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -38216,14 +32816,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -38266,9 +32860,7 @@ "id": "2020-01-a-02-03-b", "type": "money", "label": "What's the maximum premium fee a family would be charged each year?", - "answer": { - "entry": "312" - }, + "answer": { "entry": "312" }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -38301,18 +32893,12 @@ "answer": { "entry": [null, "ffs"], "options": [ - { - "label": "Managed Care", - "value": "mco" - }, + { "label": "Managed Care", "value": "mco" }, { "label": "Primary Care Case Management", "value": "pccm" }, - { - "label": "Fee for Service", - "value": "ffs" - } + { "label": "Fee for Service", "value": "ffs" } ] } }, @@ -38320,9 +32906,7 @@ "id": "2020-01-a-02-06", "type": "text_multiline", "label": "Which delivery system(s) are available to which CHIP populations? Indicate whether eligibility status, income level, age range, or other criteria determine which delivery system a population receives.", - "answer": { - "entry": "N/A" - } + "answer": { "entry": "N/A" } } ], "context_data": { @@ -38343,18 +32927,9 @@ "answer": { "entry": "", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -38368,18 +32943,9 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -38394,18 +32960,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -38420,18 +32977,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -38445,18 +32993,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -38471,23 +33010,12 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Outreach efforts" - } + "context_data": { "bullet_text": "Outreach efforts" } }, { "id": "2020-01-a-03-07", @@ -38497,23 +33025,12 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Delivery system(s)" - } + "context_data": { "bullet_text": "Delivery system(s)" } }, { "id": "2020-01-a-03-08", @@ -38523,23 +33040,12 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Cost sharing" - } + "context_data": { "bullet_text": "Cost sharing" } }, { "id": "2020-01-a-03-09", @@ -38549,18 +33055,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -38574,18 +33071,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -38600,18 +33088,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -38626,23 +33105,12 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Premium assistance" - } + "context_data": { "bullet_text": "Premium assistance" } }, { "id": "2020-01-a-03-13", @@ -38651,18 +33119,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -38676,18 +33135,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -38701,18 +33151,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -38726,23 +33167,12 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Other program areas" - } + "context_data": { "bullet_text": "Other program areas" } }, { "type": "fieldset", @@ -38762,18 +33192,9 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] } } @@ -38832,18 +33253,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -38857,18 +33269,9 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -38883,18 +33286,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -38909,18 +33303,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -38934,18 +33319,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -38960,23 +33336,12 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Outreach efforts" - } + "context_data": { "bullet_text": "Outreach efforts" } }, { "id": "2020-01-a-04-07", @@ -38986,23 +33351,12 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Delivery system(s)" - } + "context_data": { "bullet_text": "Delivery system(s)" } }, { "id": "2020-01-a-04-08", @@ -39012,23 +33366,12 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Cost sharing" - } + "context_data": { "bullet_text": "Cost sharing" } }, { "id": "2020-01-a-04-09", @@ -39038,23 +33381,12 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Crowd-out policies" - } + "context_data": { "bullet_text": "Crowd-out policies" } }, { "id": "2020-01-a-04-10", @@ -39063,18 +33395,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -39088,18 +33411,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -39114,18 +33428,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -39140,23 +33445,12 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Premium assistance" - } + "context_data": { "bullet_text": "Premium assistance" } }, { "id": "2020-01-a-04-14", @@ -39165,18 +33459,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -39191,18 +33476,9 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -39217,18 +33493,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -39242,18 +33509,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -39267,18 +33525,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -39292,23 +33541,12 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Other program areas" - } + "context_data": { "bullet_text": "Other program areas" } }, { "type": "fieldset", @@ -39328,14 +33566,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } } @@ -39463,9 +33695,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "2015" - }, + { "contents": "2015" }, { "lookupAcs": { "ffy": "2015", @@ -39492,9 +33722,7 @@ } ], [ - { - "contents": "2016" - }, + { "contents": "2016" }, { "lookupAcs": { "ffy": "2016", @@ -39521,9 +33749,7 @@ } ], [ - { - "contents": "2017" - }, + { "contents": "2017" }, { "lookupAcs": { "ffy": "2017", @@ -39550,9 +33776,7 @@ } ], [ - { - "contents": "2018" - }, + { "contents": "2018" }, { "lookupAcs": { "ffy": "2018", @@ -39579,9 +33803,7 @@ } ], [ - { - "contents": "2019" - }, + { "contents": "2019" }, { "lookupAcs": { "ffy": "2019", @@ -39609,21 +33831,13 @@ ] ], "headers": [ - { - "contents": "Year" - }, - { - "contents": "Number of uninsured children" - }, - { - "contents": "Margin of error" - }, + { "contents": "Year" }, + { "contents": "Number of uninsured children" }, + { "contents": "Margin of error" }, { "contents": "Percent of uninsured children (of total children in your state)" }, - { - "contents": "Margin of error" - } + { "contents": "Margin of error" } ] }, "fieldset_type": "synthesized_table" @@ -39644,9 +33858,7 @@ ] ], "headers": [ - { - "contents": "Percent change between 2018 and 2019" - } + { "contents": "Percent change between 2018 and 2019" } ] }, "fieldset_type": "synthesized_table" @@ -39666,14 +33878,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -39681,9 +33887,7 @@ "id": "2020-02-a-02-02-a", "type": "text_multiline", "label": "What are some reasons why the American Community Survey estimates might not reflect the number of uninsured children in your state?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -39707,14 +33911,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -39725,9 +33923,7 @@ "id": "2020-02-a-02-03-a", "type": "text_multiline", "label": "What is the alternate data source or methodology?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-02-a-02-03-b", @@ -39742,49 +33938,37 @@ "id": "2020-02-a-02-03-c", "type": "text_multiline", "label": "Define the population you’re measuring, including ages and federal poverty levels.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-02-a-02-03-d", "type": "text_multiline", "label": "Give numbers and/or the percent of uninsured children for at least two points in time.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-02-a-02-03-e", "type": "text_multiline", "label": "Why did your state choose to adopt this alternate data source?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-02-a-02-03-f", "type": "text_multiline", "label": "How reliable are these estimates? Provide standard errors, confidence intervals, and/or p-values if available.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-02-a-02-03-g", "type": "text_multiline", "label": "What are the limitations of this alternate data source or methodology?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-02-a-02-03-h", "type": "text_multiline", "label": "How do you use this alternate data source in CHIP program planning?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -39807,17 +33991,13 @@ "id": "2020-02-a-02-04", "type": "text_multiline", "label": "Is there anything else you’d like to add about your enrollment and uninsured data?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2020-02-a-02-05", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -39857,14 +34037,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -39899,14 +34073,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -39914,9 +34082,7 @@ "id": "2020-03-a-01-02-a", "type": "text_multiline", "label": "Have these efforts been successful? How have you measured the effectiveness of your outreach efforts?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -39946,17 +34112,13 @@ "id": "2020-03-a-01-04", "type": "text_multiline", "label": "Is there anything else you’d like to add about your outreach efforts?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2020-03-a-01-05", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -39979,18 +34141,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] }, "questions": [ @@ -39998,9 +34151,7 @@ "id": "2020-03-b-01-01-a", "type": "text_multiline", "label": "What percent of CHIP enrollees had access to private insurance at the time of application?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -40024,18 +34175,9 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] }, "questions": [ @@ -40043,9 +34185,7 @@ "id": "2020-03-b-01-02-a", "type": "text_multiline", "label": "Which database do you use?", - "answer": { - "entry": "BCBS of AL enrollment database" - }, + "answer": { "entry": "BCBS of AL enrollment database" }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -40066,9 +34206,7 @@ "id": "2020-03-b-01-03", "type": "percentage", "label": "What percent of applicants screened for CHIP eligibility cannot be enrolled because they have group health plan coverage?", - "answer": { - "entry": "4.11" - } + "answer": { "entry": "4.11" } }, { "type": "fieldset", @@ -40080,18 +34218,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] }, "questions": [ @@ -40102,9 +34231,7 @@ "id": "2020-03-b-01-04-a", "type": "text_multiline", "label": "How long is the waiting period?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -40125,9 +34252,7 @@ "id": "2020-03-b-01-04-b", "type": "text_multiline", "label": "Which populations does the waiting period apply to? (Include the FPL for each group.)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -40146,9 +34271,7 @@ "id": "2020-03-b-01-04-c", "type": "text_multiline", "label": "What exemptions apply to the waiting period?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -40167,9 +34290,7 @@ "id": "2020-03-b-01-04-d", "type": "text_multiline", "label": "What percent of individuals subject to the waiting period meet a state or federal exemption?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -40199,17 +34320,13 @@ "id": "2020-03-b-01-05", "type": "text_multiline", "label": "Is there anything else you’d like to add about substitution of coverage that wasn’t already covered? Did you run into any limitations when collecting data?", - "answer": { - "entry": "No. " - } + "answer": { "entry": "No. " } }, { "id": "2020-03-b-01-06", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -40234,18 +34351,9 @@ "answer": { "entry": "", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] }, "questions": [ @@ -40256,17 +34364,13 @@ "id": "2020-03-c-01-01-a", "type": "percentage", "label": "What percent of children are presumptively enrolled in CHIP pending a full eligibility determination?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-03-c-01-01-b", "type": "percentage", "label": "Of the children who are presumptively enrolled, what percent are determined fully eligible and enrolled in the program (upon completion of the full eligibility determination)?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -40292,14 +34396,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -40310,14 +34408,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -40328,9 +34420,7 @@ "id": "2020-03-c-01-03-a", "type": "text", "label": "How many notices do you send to families before disenrolling a child from the program?", - "answer": { - "entry": "2" - } + "answer": { "entry": "2" } }, { "id": "2020-03-c-01-03-b", @@ -40385,9 +34475,7 @@ "id": "2020-03-c-01-07", "type": "text_multiline", "label": "Is there anything else you’d like to add that wasn’t already covered?", - "answer": { - "entry": "No. " - } + "answer": { "entry": "No. " } } ] }, @@ -40401,35 +34489,27 @@ "hint": "Don’t include applicants being considered for redetermination — this data will be collected in Part 3.", "type": "integer", "label": "How many applicants were denied CHIP coverage in FFY 2020?", - "answer": { - "entry": "4283" - } + "answer": { "entry": "4283" } }, { "id": "2020-03-c-02-02", "hint": "For example: They were denied because of an incomplete application, missing documentation, or a missing enrollment fee.", "type": "integer", "label": "How many applicants were denied CHIP coverage for procedural reasons?", - "answer": { - "entry": "500" - } + "answer": { "entry": "500" } }, { "id": "2020-03-c-02-03", "hint": "For example: They were denied because their income was too high or too low, they were determined eligible for Medicaid instead, or they had other coverage available.", "type": "integer", "label": "How many applicants were denied CHIP coverage for eligibility reasons?", - "answer": { - "entry": "3484" - }, + "answer": { "entry": "3484" }, "questions": [ { "id": "2020-03-c-02-03-a", "type": "integer", "label": "How many applicants were denied CHIP (Title XXI) coverage and determined eligible for Medicaid (Title XIX) instead?", - "answer": { - "entry": "299" - } + "answer": { "entry": "299" } } ] }, @@ -40437,9 +34517,7 @@ "id": "2020-03-c-02-04", "type": "integer", "label": "How many applicants were denied CHIP coverage for other reasons?", - "answer": { - "entry": "" - } + "answer": { "entry": "" } }, { "id": "2020-03-c-02-05", @@ -40457,9 +34535,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Total denials" - }, + { "contents": "Total denials" }, { "targets": [ "$..*[?(@ && @.id=='2020-03-c-02-01')].answer.entry" @@ -40474,9 +34550,7 @@ } ], [ - { - "contents": "Denied for procedural reasons" - }, + { "contents": "Denied for procedural reasons" }, { "targets": [ "$..*[?(@ && @.id=='2020-03-c-02-02')].answer.entry" @@ -40491,9 +34565,7 @@ } ], [ - { - "contents": "Denied for eligibility reasons" - }, + { "contents": "Denied for eligibility reasons" }, { "targets": [ "$..*[?(@ && @.id=='2020-03-c-02-03')].answer.entry" @@ -40508,9 +34580,7 @@ } ], [ - { - "contents": "Denials for other reasons" - }, + { "contents": "Denials for other reasons" }, { "targets": [ "$..*[?(@ && @.id=='2020-03-c-02-04')].answer.entry" @@ -40526,15 +34596,9 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "Number" - }, - { - "contents": "Percent" - } + { "contents": "" }, + { "contents": "Number" }, + { "contents": "Percent" } ] }, "fieldset_type": "synthesized_table" @@ -40551,34 +34615,26 @@ "id": "2020-03-c-03-01", "type": "integer", "label": "How many children were eligible for redetermination in CHIP in FFY 2020?", - "answer": { - "entry": "145390" - } + "answer": { "entry": "145390" } }, { "id": "2020-03-c-03-02", "type": "integer", "label": "Of the eligible children, how many were then screened for redetermination?", - "answer": { - "entry": "131011" - } + "answer": { "entry": "131011" } }, { "id": "2020-03-c-03-03", "type": "integer", "label": "How many children were retained in CHIP after redetermination?", - "answer": { - "entry": "113009" - } + "answer": { "entry": "113009" } }, { "id": "2020-03-c-03-04", "hint": "This number should be equal to the total of 4a, 4b, and 4c below.", "type": "integer", "label": "How many children were disenrolled in CHIP after the redetermination process?", - "answer": { - "entry": "17989" - }, + "answer": { "entry": "17989" }, "questions": [ { "hint": "The answer to 4 should be equal to the sum of a, b, and c below: ", @@ -40599,26 +34655,20 @@ "hint": "This could be due to an incomplete application, missing documentation, or a missing enrollment fee.", "type": "integer", "label": "How many children were disenrolled for procedural reasons?", - "answer": { - "entry": "1893" - } + "answer": { "entry": "1893" } }, { "id": "2020-03-c-03-04-b", "hint": "This could be due to income that was too high or too low, eligibility in Medicaid (Title XIX) instead, or access to private coverage.", "type": "integer", "label": "How many children were disenrolled for eligibility reasons?", - "answer": { - "entry": "15242" - } + "answer": { "entry": "15242" } }, { "id": "2020-03-c-03-04-c", "type": "integer", "label": "How many children were disenrolled for other reasons?", - "answer": { - "entry": "854" - } + "answer": { "entry": "854" } } ] }, @@ -40626,9 +34676,7 @@ "id": "2020-03-c-03-05", "type": "text_multiline", "label": "Did you have any limitations in collecting this data?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "hint": "These tables are auto-populated with the data you entered above.", @@ -40690,15 +34738,9 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "Number" - }, - { - "contents": "Percent" - } + { "contents": "" }, + { "contents": "Number" }, + { "contents": "Percent" } ] }, "fieldset_type": "synthesized_table" @@ -40780,15 +34822,9 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "Number" - }, - { - "contents": "Percent" - } + { "contents": "" }, + { "contents": "Number" }, + { "contents": "Percent" } ] }, "fieldset_type": "synthesized_table" @@ -40805,34 +34841,26 @@ "id": "2020-03-c-04-01", "type": "integer", "label": "How many children were eligible for redetermination in Medicaid in FFY 2020?", - "answer": { - "entry": "463373" - } + "answer": { "entry": "463373" } }, { "id": "2020-03-c-04-02", "type": "integer", "label": "Of the eligible children, how many were then screened for redetermination?", - "answer": { - "entry": "438232" - } + "answer": { "entry": "438232" } }, { "id": "2020-03-c-04-03", "type": "integer", "label": "How many children were retained in Medicaid after redetermination?", - "answer": { - "entry": "413500" - } + "answer": { "entry": "413500" } }, { "id": "2020-03-c-04-04", "hint": "This number should be equal to the total of 4a, 4b, and 4c below.", "type": "integer", "label": "How many children were disenrolled in Medicaid after the redetermination process?", - "answer": { - "entry": "24718" - }, + "answer": { "entry": "24718" }, "questions": [ { "hint": "The answer to 4 should be equal to the sum of a, b, and c below: ", @@ -40853,26 +34881,20 @@ "hint": "This could be due to an incomplete application, missing documentation, or a missing enrollment fee.", "type": "integer", "label": "How many children were disenrolled for procedural reasons?", - "answer": { - "entry": "559" - } + "answer": { "entry": "559" } }, { "id": "2020-03-c-04-04-b", "hint": "This could be due to an income that was too high and/or eligibility in CHIP instead.", "type": "integer", "label": "How many children were disenrolled for eligibility reasons?", - "answer": { - "entry": "23489" - } + "answer": { "entry": "23489" } }, { "id": "2020-03-c-04-04-c", "type": "integer", "label": "How many children were disenrolled for other reasons?", - "answer": { - "entry": "670" - } + "answer": { "entry": "670" } } ] }, @@ -40880,9 +34902,7 @@ "id": "2020-03-c-04-05", "type": "text_multiline", "label": "Did you have any limitations in collecting this data?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "hint": "These tables are auto-populated with the data you entered above.", @@ -40944,15 +34964,9 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "Number" - }, - { - "contents": "Percent" - } + { "contents": "" }, + { "contents": "Number" }, + { "contents": "Percent" } ] }, "fieldset_type": "synthesized_table" @@ -41034,15 +35048,9 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "Number" - }, - { - "contents": "Percent" - } + { "contents": "" }, + { "contents": "Number" }, + { "contents": "Percent" } ] }, "fieldset_type": "synthesized_table" @@ -41087,14 +35095,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -41111,9 +35113,7 @@ "id": "2020-03-c-05-03-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -41149,33 +35149,25 @@ "id": "2020-03-c-05-03-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "919" - } + "answer": { "entry": "919" } }, { "id": "2020-03-c-05-03-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "2265" - } + "answer": { "entry": "2265" } }, { "id": "2020-03-c-05-03-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "5710" - } + "answer": { "entry": "5710" } }, { "id": "2020-03-c-05-03-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "4958" - } + "answer": { "entry": "4958" } } ], "context_data": { @@ -41193,9 +35185,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-05-03" - }, + "fieldset_info": { "id": "2020-03-c-05-03" }, "fieldset_type": "marked" }, { @@ -41212,9 +35202,7 @@ "id": "2020-03-c-05-04-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -41250,33 +35238,25 @@ "id": "2020-03-c-05-04-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "909" - } + "answer": { "entry": "909" } }, { "id": "2020-03-c-05-04-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "22213" - } + "answer": { "entry": "22213" } }, { "id": "2020-03-c-05-04-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "5451" - } + "answer": { "entry": "5451" } }, { "id": "2020-03-c-05-04-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "4445" - } + "answer": { "entry": "4445" } } ], "context_data": { @@ -41294,9 +35274,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-05-04" - }, + "fieldset_info": { "id": "2020-03-c-05-04" }, "fieldset_type": "marked" }, { @@ -41307,9 +35285,7 @@ "id": "2020-03-c-05-05-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -41345,33 +35321,25 @@ "id": "2020-03-c-05-05-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } }, { "id": "2020-03-c-05-05-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } }, { "id": "2020-03-c-05-05-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "2" - } + "answer": { "entry": "2" } }, { "id": "2020-03-c-05-05-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "3" - } + "answer": { "entry": "3" } } ], "context_data": { @@ -41389,9 +35357,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-05-05" - }, + "fieldset_info": { "id": "2020-03-c-05-05" }, "fieldset_type": "marked" }, { @@ -41402,9 +35368,7 @@ "id": "2020-03-c-05-06-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -41440,33 +35404,25 @@ "id": "2020-03-c-05-06-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } }, { "id": "2020-03-c-05-06-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } }, { "id": "2020-03-c-05-06-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "2" - } + "answer": { "entry": "2" } }, { "id": "2020-03-c-05-06-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "3" - } + "answer": { "entry": "3" } } ], "context_data": { @@ -41484,9 +35440,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-05-06" - }, + "fieldset_info": { "id": "2020-03-c-05-06" }, "fieldset_type": "marked" }, { @@ -41498,9 +35452,7 @@ "id": "2020-03-c-05-07-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -41536,33 +35488,25 @@ "id": "2020-03-c-05-07-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "10" - } + "answer": { "entry": "10" } }, { "id": "2020-03-c-05-07-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "44" - } + "answer": { "entry": "44" } }, { "id": "2020-03-c-05-07-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "257" - } + "answer": { "entry": "257" } }, { "id": "2020-03-c-05-07-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "510" - } + "answer": { "entry": "510" } } ], "context_data": { @@ -41580,9 +35524,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-05-07" - }, + "fieldset_info": { "id": "2020-03-c-05-07" }, "fieldset_type": "marked" }, { @@ -41593,9 +35535,7 @@ "id": "2020-03-c-05-08-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -41631,33 +35571,25 @@ "id": "2020-03-c-05-08-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } }, { "id": "2020-03-c-05-08-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } }, { "id": "2020-03-c-05-08-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "145" - } + "answer": { "entry": "145" } }, { "id": "2020-03-c-05-08-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "447" - } + "answer": { "entry": "447" } } ], "context_data": { @@ -41675,18 +35607,14 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-05-08" - }, + "fieldset_info": { "id": "2020-03-c-05-08" }, "fieldset_type": "marked" }, { "id": "2020-03-c-05-09", "type": "text_multiline", "label": "Is there anything else you’d like to add about your data?", - "answer": { - "entry": "" - } + "answer": { "entry": "" } }, { "hint": "Next year you’ll report this data. Leave it blank in the meantime.", @@ -41703,10 +35631,7 @@ "id": "2020-03-c-05-10-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -41742,37 +35667,25 @@ "id": "2020-03-c-05-10-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-10-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-10-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-10-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -41790,9 +35703,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-05-10" - }, + "fieldset_info": { "id": "2020-03-c-05-10" }, "fieldset_type": "marked" }, { @@ -41803,10 +35714,7 @@ "id": "2020-03-c-05-11-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -41842,37 +35750,25 @@ "id": "2020-03-c-05-11-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-11-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-11-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-11-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -41890,9 +35786,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-05-11" - }, + "fieldset_info": { "id": "2020-03-c-05-11" }, "fieldset_type": "marked" }, { @@ -41903,10 +35797,7 @@ "id": "2020-03-c-05-12-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -41942,37 +35833,25 @@ "id": "2020-03-c-05-12-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-12-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-12-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-12-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -41990,9 +35869,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-05-12" - }, + "fieldset_info": { "id": "2020-03-c-05-12" }, "fieldset_type": "marked" }, { @@ -42004,10 +35881,7 @@ "id": "2020-03-c-05-13-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -42043,37 +35917,25 @@ "id": "2020-03-c-05-13-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-13-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-13-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-13-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -42091,9 +35953,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-05-13" - }, + "fieldset_info": { "id": "2020-03-c-05-13" }, "fieldset_type": "marked" }, { @@ -42104,10 +35964,7 @@ "id": "2020-03-c-05-14-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -42143,37 +36000,25 @@ "id": "2020-03-c-05-14-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-14-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-14-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-14-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -42191,9 +36036,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-05-14" - }, + "fieldset_info": { "id": "2020-03-c-05-14" }, "fieldset_type": "marked" }, { @@ -42211,10 +36054,7 @@ "id": "2020-03-c-05-15-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -42250,37 +36090,25 @@ "id": "2020-03-c-05-15-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-15-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-15-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-15-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -42298,9 +36126,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-05-15" - }, + "fieldset_info": { "id": "2020-03-c-05-15" }, "fieldset_type": "marked" }, { @@ -42311,10 +36137,7 @@ "id": "2020-03-c-05-16-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -42350,37 +36173,25 @@ "id": "2020-03-c-05-16-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-16-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-16-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-16-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -42398,9 +36209,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-05-16" - }, + "fieldset_info": { "id": "2020-03-c-05-16" }, "fieldset_type": "marked" }, { @@ -42411,10 +36220,7 @@ "id": "2020-03-c-05-17-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -42450,37 +36256,25 @@ "id": "2020-03-c-05-17-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-17-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-17-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-17-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -42498,9 +36292,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-05-17" - }, + "fieldset_info": { "id": "2020-03-c-05-17" }, "fieldset_type": "marked" }, { @@ -42512,10 +36304,7 @@ "id": "2020-03-c-05-18-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -42551,37 +36340,25 @@ "id": "2020-03-c-05-18-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-18-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-18-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-18-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -42599,9 +36376,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-05-18" - }, + "fieldset_info": { "id": "2020-03-c-05-18" }, "fieldset_type": "marked" }, { @@ -42612,10 +36387,7 @@ "id": "2020-03-c-05-19-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -42651,37 +36423,25 @@ "id": "2020-03-c-05-19-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-19-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-19-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-19-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -42699,18 +36459,14 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-05-19" - }, + "fieldset_info": { "id": "2020-03-c-05-19" }, "fieldset_type": "marked" }, { "id": "2020-03-c-05-20", "type": "text_multiline", "label": "Is there anything else you’d like to add about your data?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -42752,14 +36508,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -42776,9 +36526,7 @@ "id": "2020-03-c-06-03-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -42814,33 +36562,25 @@ "id": "2020-03-c-06-03-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "127630" - } + "answer": { "entry": "127630" } }, { "id": "2020-03-c-06-03-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "7311" - } + "answer": { "entry": "7311" } }, { "id": "2020-03-c-06-03-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "9418" - } + "answer": { "entry": "9418" } }, { "id": "2020-03-c-06-03-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "4527" - } + "answer": { "entry": "4527" } } ], "context_data": { @@ -42858,9 +36598,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-06-03" - }, + "fieldset_info": { "id": "2020-03-c-06-03" }, "fieldset_type": "marked" }, { @@ -42877,9 +36615,7 @@ "id": "2020-03-c-06-04-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -42915,33 +36651,25 @@ "id": "2020-03-c-06-04-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "12237" - } + "answer": { "entry": "12237" } }, { "id": "2020-03-c-06-04-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "70464" - } + "answer": { "entry": "70464" } }, { "id": "2020-03-c-06-04-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "9159" - } + "answer": { "entry": "9159" } }, { "id": "2020-03-c-06-04-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "3821" - } + "answer": { "entry": "3821" } } ], "context_data": { @@ -42959,9 +36687,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-06-04" - }, + "fieldset_info": { "id": "2020-03-c-06-04" }, "fieldset_type": "marked" }, { @@ -42972,9 +36698,7 @@ "id": "2020-03-c-06-05-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -43010,33 +36734,25 @@ "id": "2020-03-c-06-05-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "87" - } + "answer": { "entry": "87" } }, { "id": "2020-03-c-06-05-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "36" - } + "answer": { "entry": "36" } }, { "id": "2020-03-c-06-05-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "23" - } + "answer": { "entry": "23" } }, { "id": "2020-03-c-06-05-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "8" - } + "answer": { "entry": "8" } } ], "context_data": { @@ -43054,9 +36770,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-06-05" - }, + "fieldset_info": { "id": "2020-03-c-06-05" }, "fieldset_type": "marked" }, { @@ -43067,9 +36781,7 @@ "id": "2020-03-c-06-06-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -43105,33 +36817,25 @@ "id": "2020-03-c-06-06-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "87" - } + "answer": { "entry": "87" } }, { "id": "2020-03-c-06-06-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "36" - } + "answer": { "entry": "36" } }, { "id": "2020-03-c-06-06-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "23" - } + "answer": { "entry": "23" } }, { "id": "2020-03-c-06-06-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "88" - } + "answer": { "entry": "88" } } ], "context_data": { @@ -43149,9 +36853,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-06-06" - }, + "fieldset_info": { "id": "2020-03-c-06-06" }, "fieldset_type": "marked" }, { @@ -43163,9 +36865,7 @@ "id": "2020-03-c-06-07-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -43201,33 +36901,25 @@ "id": "2020-03-c-06-07-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "439" - } + "answer": { "entry": "439" } }, { "id": "2020-03-c-06-07-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "229" - } + "answer": { "entry": "229" } }, { "id": "2020-03-c-06-07-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "236" - } + "answer": { "entry": "236" } }, { "id": "2020-03-c-06-07-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "698" - } + "answer": { "entry": "698" } } ], "context_data": { @@ -43245,9 +36937,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-06-07" - }, + "fieldset_info": { "id": "2020-03-c-06-07" }, "fieldset_type": "marked" }, { @@ -43258,9 +36948,7 @@ "id": "2020-03-c-06-08-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -43296,33 +36984,25 @@ "id": "2020-03-c-06-08-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "4" - } + "answer": { "entry": "4" } }, { "id": "2020-03-c-06-08-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "8" - } + "answer": { "entry": "8" } }, { "id": "2020-03-c-06-08-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "46" - } + "answer": { "entry": "46" } }, { "id": "2020-03-c-06-08-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "55" - } + "answer": { "entry": "55" } } ], "context_data": { @@ -43340,18 +37020,14 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-06-08" - }, + "fieldset_info": { "id": "2020-03-c-06-08" }, "fieldset_type": "marked" }, { "id": "2020-03-c-06-09", "type": "text_multiline", "label": "Is there anything else you’d like to add about your data?", - "answer": { - "entry": "No. yes added more " - } + "answer": { "entry": "No. yes added more " } }, { "hint": "Next year you’ll report this data. Leave it blank in the meantime.", @@ -43368,10 +37044,7 @@ "id": "2020-03-c-06-10-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -43407,37 +37080,25 @@ "id": "2020-03-c-06-10-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-10-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-10-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-10-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -43455,9 +37116,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-06-10" - }, + "fieldset_info": { "id": "2020-03-c-06-10" }, "fieldset_type": "marked" }, { @@ -43468,10 +37127,7 @@ "id": "2020-03-c-06-11-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -43507,37 +37163,25 @@ "id": "2020-03-c-06-11-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-11-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-11-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-11-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -43555,9 +37199,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-06-11" - }, + "fieldset_info": { "id": "2020-03-c-06-11" }, "fieldset_type": "marked" }, { @@ -43568,10 +37210,7 @@ "id": "2020-03-c-06-12-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -43607,37 +37246,25 @@ "id": "2020-03-c-06-12-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-12-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-12-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-12-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -43655,9 +37282,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-06-12" - }, + "fieldset_info": { "id": "2020-03-c-06-12" }, "fieldset_type": "marked" }, { @@ -43669,10 +37294,7 @@ "id": "2020-03-c-06-13-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -43708,37 +37330,25 @@ "id": "2020-03-c-06-13-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-13-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-13-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-13-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -43756,9 +37366,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-06-13" - }, + "fieldset_info": { "id": "2020-03-c-06-13" }, "fieldset_type": "marked" }, { @@ -43769,10 +37377,7 @@ "id": "2020-03-c-06-14-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -43808,37 +37413,25 @@ "id": "2020-03-c-06-14-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-14-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-14-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-14-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -43856,9 +37449,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-06-14" - }, + "fieldset_info": { "id": "2020-03-c-06-14" }, "fieldset_type": "marked" }, { @@ -43876,10 +37467,7 @@ "id": "2020-03-c-06-15-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -43915,37 +37503,25 @@ "id": "2020-03-c-06-15-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-15-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-15-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-15-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -43963,9 +37539,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-06-15" - }, + "fieldset_info": { "id": "2020-03-c-06-15" }, "fieldset_type": "marked" }, { @@ -43976,10 +37550,7 @@ "id": "2020-03-c-06-16-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -44015,37 +37586,25 @@ "id": "2020-03-c-06-16-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-16-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-16-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-16-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -44063,9 +37622,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-06-16" - }, + "fieldset_info": { "id": "2020-03-c-06-16" }, "fieldset_type": "marked" }, { @@ -44076,10 +37633,7 @@ "id": "2020-03-c-06-17-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -44115,37 +37669,25 @@ "id": "2020-03-c-06-17-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-17-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-17-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-17-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -44163,9 +37705,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-06-17" - }, + "fieldset_info": { "id": "2020-03-c-06-17" }, "fieldset_type": "marked" }, { @@ -44177,10 +37717,7 @@ "id": "2020-03-c-06-18-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -44216,37 +37753,25 @@ "id": "2020-03-c-06-18-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-18-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-18-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-18-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -44264,9 +37789,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-06-18" - }, + "fieldset_info": { "id": "2020-03-c-06-18" }, "fieldset_type": "marked" }, { @@ -44277,10 +37800,7 @@ "id": "2020-03-c-06-19-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -44316,37 +37836,25 @@ "id": "2020-03-c-06-19-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-19-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-19-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-19-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -44364,18 +37872,14 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-06-19" - }, + "fieldset_info": { "id": "2020-03-c-06-19" }, "fieldset_type": "marked" }, { "id": "2020-03-c-06-20", "type": "text_multiline", "label": "Is there anything else you’d like to add about your data?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -44398,14 +37902,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -44427,18 +37925,12 @@ "label": "Health plans", "value": "health_plans" }, - { - "label": "States", - "value": "states" - }, + { "label": "States", "value": "states" }, { "label": "Third party administrator", "value": "third_party_administrator" }, - { - "label": "Other ", - "value": "other" - } + { "label": "Other ", "value": "other" } ] }, "questions": [ @@ -44478,9 +37970,7 @@ "id": "2020-03-d-01-02-b", "type": "text_multiline", "label": "Who tracks cost sharing?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -44519,9 +38009,7 @@ "id": "2020-03-d-01-04", "type": "text_multiline", "label": "Approximately how many families exceeded the 5% cap in the last federal fiscal year?", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } }, { "id": "2020-03-d-01-05", @@ -44530,14 +38018,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -44545,9 +38027,7 @@ "id": "2020-03-d-01-05-a", "type": "text_multiline", "label": "What did you find in your assessment?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -44571,14 +38051,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -44586,9 +38060,7 @@ "id": "2020-03-d-01-06-a", "type": "text_multiline", "label": "What did you find in your assessment?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -44633,17 +38105,13 @@ "id": "2020-03-d-01-08", "type": "text_multiline", "label": "Is there anything else you’d like to add that wasn’t already covered?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2020-03-d-01-09", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -44686,14 +38154,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } } @@ -44733,14 +38195,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -44749,9 +38205,7 @@ "hint": "This only applies to states operating an 1115 demo.", "type": "text_multiline", "label": "What benefit package is offered as part of your premium assistance program, including any applicable minimum coverage requirements?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-03-e-02-04", @@ -44761,18 +38215,9 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] } }, @@ -44784,18 +38229,9 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] } }, @@ -44807,18 +38243,9 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] }, "questions": [ @@ -44826,9 +38253,7 @@ "id": "2020-03-e-02-06-a", "type": "text_multiline", "label": "How do you track cost sharing to ensure families don’t pay more than 5% of the aggregate household income in a year?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -44849,9 +38274,7 @@ "id": "2020-03-e-02-07", "type": "integer", "label": "How many children were enrolled in the premium assistance program on average each month in FFY 2020?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "type": "fieldset", @@ -44860,25 +38283,19 @@ "id": "2020-03-e-02-08", "type": "money", "label": "What’s the average monthly contribution the state pays towards coverage of a child?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-03-e-02-09", "type": "money", "label": "What’s the average monthly contribution the employer pays towards coverage of a child?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-03-e-02-10", "type": "money", "label": "What’s the average monthly contribution the employee pays towards coverage of a child?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -44911,15 +38328,9 @@ ] ], "headers": [ - { - "contents": "State" - }, - { - "contents": "Employer" - }, - { - "contents": "Employee" - } + { "contents": "State" }, + { "contents": "Employer" }, + { "contents": "Employee" } ] }, "fieldset_type": "synthesized_table" @@ -44979,41 +38390,31 @@ "id": "2020-03-e-02-14", "type": "text_multiline", "label": "What strategies have been most effective in reducing the administrative barriers in order to provide premium assistance?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-03-e-02-15", "type": "text_multiline", "label": "What challenges did you experience with your premium assistance program in FFY 2020?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-03-e-02-16", "type": "text_multiline", "label": "What accomplishments did you experience with your premium assistance program in FFY 2020?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-03-e-02-17", "type": "text_multiline", "label": "Is there anything else you’d like to add that wasn’t already covered?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-03-e-02-18", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -45050,14 +38451,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -45068,14 +38463,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -45086,14 +38475,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -45112,18 +38495,9 @@ "answer": { "entry": "na", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] }, "questions": [ @@ -45131,9 +38505,7 @@ "id": "2020-03-f-01-05-a", "type": "text_multiline", "label": "What safeguards and procedures do the Managed Care plans have in place?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -45154,17 +38526,13 @@ "id": "2020-03-f-01-06", "type": "integer", "label": "How many eligibility denials have been appealed in a fair hearing in FFY 2020?", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } }, { "id": "2020-03-f-01-07", "type": "integer", "label": "How many cases have been found in favor of the beneficiary in FFY 2020?", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } }, { "type": "fieldset", @@ -45173,17 +38541,13 @@ "id": "2020-03-f-01-08", "type": "integer", "label": "How many cases related to provider credentialing were investigated in FFY 2020?", - "answer": { - "entry": "2" - } + "answer": { "entry": "2" } }, { "id": "2020-03-f-01-09", "type": "integer", "label": "How many cases related to provider credentialing were referred to appropriate law enforcement officials in FFY 2020?", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } } ] }, @@ -45194,17 +38558,13 @@ "id": "2020-03-f-01-10", "type": "integer", "label": "How many cases related to provider billing were investigated in FFY 2020?", - "answer": { - "entry": "19" - } + "answer": { "entry": "19" } }, { "id": "2020-03-f-01-11", "type": "integer", "label": "How many cases were referred to appropriate law enforcement officials in FFY 2020?", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } } ] }, @@ -45215,17 +38575,13 @@ "id": "2020-03-f-01-12", "type": "integer", "label": "How many cases related to beneficiary eligibility were investigated in FFY 2020?", - "answer": { - "entry": "4" - } + "answer": { "entry": "4" } }, { "id": "2020-03-f-01-13", "type": "integer", "label": "How many cases related to beneficiary eligibility were referred to appropriate law enforcement officials in FFY 2020?", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } } ] }, @@ -45236,10 +38592,7 @@ "answer": { "entry": "separate_chip_only", "options": [ - { - "label": "CHIP only", - "value": "separate_chip_only" - }, + { "label": "CHIP only", "value": "separate_chip_only" }, { "label": "Medicaid and CHIP combined", "value": "medicaid_separate_chip_combined" @@ -45254,14 +38607,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -45295,14 +38642,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -45310,9 +38651,7 @@ "id": "2020-03-f-01-16-a", "type": "text_multiline", "label": "What specifically are the contractors responsible for in terms of oversight?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -45333,17 +38672,13 @@ "id": "2020-03-f-01-17", "type": "text_multiline", "label": "Is there anything else you’d like to add that wasn’t already covered?", - "answer": { - "entry": "Only Separate CHIP reported." - } + "answer": { "entry": "Only Separate CHIP reported." } }, { "id": "2020-03-f-01-18", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -45377,14 +38712,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -45396,9 +38725,7 @@ "id": "2020-03-g-01-02-a", "type": "integer", "label": "Total for all ages (0-18)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -45436,49 +38763,37 @@ "id": "2020-03-g-01-02-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "1915" - } + "answer": { "entry": "1915" } }, { "id": "2020-03-g-01-02-c", "type": "integer", "label": "Ages 1-2", - "answer": { - "entry": "8659" - } + "answer": { "entry": "8659" } }, { "id": "2020-03-g-01-02-d", "type": "integer", "label": "Ages 3-5", - "answer": { - "entry": "15546" - } + "answer": { "entry": "15546" } }, { "id": "2020-03-g-01-02-e", "type": "integer", "label": "Ages 6-9", - "answer": { - "entry": "21088" - } + "answer": { "entry": "21088" } }, { "id": "2020-03-g-01-02-f", "type": "integer", "label": "Ages 10-14", - "answer": { - "entry": "26998" - } + "answer": { "entry": "26998" } }, { "id": "2020-03-g-01-02-g", "type": "integer", "label": "Ages 15-18", - "answer": { - "entry": "19934" - } + "answer": { "entry": "19934" } } ], "context_data": { @@ -45496,9 +38811,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-g-01-02" - }, + "fieldset_info": { "id": "2020-03-g-01-02" }, "fieldset_type": "marked" }, { @@ -45509,9 +38822,7 @@ "id": "2020-03-g-01-03-a", "type": "integer", "label": "Total for all ages (0-18)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -45549,49 +38860,37 @@ "id": "2020-03-g-01-03-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "24" - } + "answer": { "entry": "24" } }, { "id": "2020-03-g-01-03-c", "type": "integer", "label": "Ages 1-2", - "answer": { - "entry": "2238" - } + "answer": { "entry": "2238" } }, { "id": "2020-03-g-01-03-d", "type": "integer", "label": "Ages 3-5", - "answer": { - "entry": "8868" - } + "answer": { "entry": "8868" } }, { "id": "2020-03-g-01-03-e", "type": "integer", "label": "Ages 6-9", - "answer": { - "entry": "14543" - } + "answer": { "entry": "14543" } }, { "id": "2020-03-g-01-03-f", "type": "integer", "label": "Ages 10-14", - "answer": { - "entry": "17462" - } + "answer": { "entry": "17462" } }, { "id": "2020-03-g-01-03-g", "type": "integer", "label": "Ages 15-18", - "answer": { - "entry": "11415" - } + "answer": { "entry": "11415" } } ], "context_data": { @@ -45609,9 +38908,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-g-01-03" - }, + "fieldset_info": { "id": "2020-03-g-01-03" }, "fieldset_type": "marked" }, { @@ -45628,9 +38925,7 @@ "id": "2020-03-g-01-04-a", "type": "integer", "label": "Total for all ages (0-18)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -45668,49 +38963,37 @@ "id": "2020-03-g-01-04-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "8" - } + "answer": { "entry": "8" } }, { "id": "2020-03-g-01-04-c", "type": "integer", "label": "Ages 1-2", - "answer": { - "entry": "1997" - } + "answer": { "entry": "1997" } }, { "id": "2020-03-g-01-04-d", "type": "integer", "label": "Ages 3-5", - "answer": { - "entry": "8504" - } + "answer": { "entry": "8504" } }, { "id": "2020-03-g-01-04-e", "type": "integer", "label": "Ages 6-9", - "answer": { - "entry": "13966" - } + "answer": { "entry": "13966" } }, { "id": "2020-03-g-01-04-f", "type": "integer", "label": "Ages 10-14", - "answer": { - "entry": "16828" - } + "answer": { "entry": "16828" } }, { "id": "2020-03-g-01-04-g", "type": "integer", "label": "Ages 15-18", - "answer": { - "entry": "10639" - } + "answer": { "entry": "10639" } } ], "context_data": { @@ -45728,9 +39011,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-g-01-04" - }, + "fieldset_info": { "id": "2020-03-g-01-04" }, "fieldset_type": "marked" }, { @@ -45747,9 +39028,7 @@ "id": "2020-03-g-01-05-a", "type": "integer", "label": "Total for all ages (0-18)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -45787,49 +39066,37 @@ "id": "2020-03-g-01-05-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "12" - } + "answer": { "entry": "12" } }, { "id": "2020-03-g-01-05-c", "type": "integer", "label": "Ages 1-2", - "answer": { - "entry": "117" - } + "answer": { "entry": "117" } }, { "id": "2020-03-g-01-05-d", "type": "integer", "label": "Ages 3-5", - "answer": { - "entry": "2133" - } + "answer": { "entry": "2133" } }, { "id": "2020-03-g-01-05-e", "type": "integer", "label": "Ages 6-9", - "answer": { - "entry": "5991" - } + "answer": { "entry": "5991" } }, { "id": "2020-03-g-01-05-f", "type": "integer", "label": "Ages 10-14", - "answer": { - "entry": "5931" - } + "answer": { "entry": "5931" } }, { "id": "2020-03-g-01-05-g", "type": "integer", "label": "Ages 15-18", - "answer": { - "entry": "4883" - } + "answer": { "entry": "4883" } } ], "context_data": { @@ -45847,9 +39114,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-g-01-05" - }, + "fieldset_info": { "id": "2020-03-g-01-05" }, "fieldset_type": "marked" }, { @@ -45862,9 +39127,7 @@ "id": "2020-03-g-01-06", "type": "integer", "label": "How many children in the “ages 6–9” group received a sealant on at least one permanent molar tooth during FFY 2020?", - "answer": { - "entry": "1893" - } + "answer": { "entry": "1893" } }, { "hint": "The sealant on a permanent molar tooth is provided by a dental professional for whom placing a sealant is within their scope of practice. It’s defined by HCPCS code D1351 (or equivalent CDT code D1351) based on an unduplicated paid, unpaid, or denied claim. Permanent molars are teeth numbered 2, 3, 14, 15, 18, 19, 30, and 31, and additionally — for states covering sealants on third molars (“wisdom teeth”) — teeth numbered 1, 16, 17, and 32.\n\nAll data should be based on the definitions in the Early and Periodic Screening, Diagnostic, and Treatment (EPSDT) Report (Form CMS-416).", @@ -45879,14 +39142,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -45897,18 +39154,14 @@ "id": "2020-03-g-01-07-a", "type": "integer", "label": "How many children were enrolled in supplemental dental coverage during FFY 2020?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-03-g-01-07-b", "hint": "This is the total number for all children between 0-18 years from question 1.", "type": "integer", "label": "How many children were enrolled in Separate CHIP for at least 90 continuous days during FFY 2020?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "type": "fieldset", @@ -45942,9 +39195,7 @@ { "contents": "Children enrolled in Separate CHIP" }, - { - "contents": "Percentage" - } + { "contents": "Percentage" } ] }, "fieldset_type": "synthesized_table" @@ -45970,17 +39221,13 @@ "id": "2020-03-g-01-08", "type": "text_multiline", "label": "Is there anything else you’d like to add about your dental benefits? If you weren’t able to provide data, let us know why.", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2020-03-g-01-09", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -46007,14 +39254,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -46025,14 +39266,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -46064,9 +39299,7 @@ "hint": "This is optional if you already submitted CAHPS raw data to the AHRQ CAHPS database. Submit results only for the CHIP population, not for both Medicaid (Title XIX) and CHIP (Title XXI) together. Your data should represent children enrolled in all types of delivery systems (Managed Care, PCCM, and Fee for Service).", "type": "file_upload", "label": "Upload a summary report of your CAHPS survey results.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-03-h-02-02", @@ -46079,18 +39312,12 @@ "label": "Medicaid Expansion CHIP", "value": "medicaid expansion chip" }, - { - "label": "Separate CHIP", - "value": "separate chip" - }, + { "label": "Separate CHIP", "value": "separate chip" }, { "label": "Both Separate CHIP and Medicaid Expansion CHIP", "value": "combination chip" }, - { - "label": "Other", - "value": "other" - } + { "label": "Other", "value": "other" } ] }, "questions": [ @@ -46102,17 +39329,13 @@ "id": "2020-03-h-02-02-a", "type": "text", "label": "Which population did you survey?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-03-h-02-02-b", "type": "integer", "label": "How many children were included in the survey?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -46147,18 +39370,9 @@ "answer": { "entry": "5.0H", "options": [ - { - "label": "CAHPS 5.0", - "value": "5.0" - }, - { - "label": "CAHPS 5.0H", - "value": "5.0H" - }, - { - "label": "Other", - "value": "other" - } + { "label": "CAHPS 5.0", "value": "5.0" }, + { "label": "CAHPS 5.0H", "value": "5.0H" }, + { "label": "Other", "value": "other" } ] }, "questions": [ @@ -46170,9 +39384,7 @@ "id": "2020-03-h-02-03-a", "type": "text", "label": "Which CAHPS survey did you use?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -46199,18 +39411,12 @@ "answer": { "entry": [null, "chronic"], "options": [ - { - "label": "None", - "value": "none" - }, + { "label": "None", "value": "none" }, { "label": "Children with Chronic Conditions", "value": "chronic" }, - { - "label": "Other", - "value": "other" - } + { "label": "Other", "value": "other" } ] }, "questions": [ @@ -46218,9 +39424,7 @@ "id": "2020-03-h-02-04-a", "type": "text", "label": "Which supplemental item sets did you include?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -46249,14 +39453,8 @@ "label": "NCQA HEDIS CAHPS 5.0H", "value": "ncqa hedis cahps 5.0h" }, - { - "label": "HRQ CAHPS", - "value": "hrq cahps" - }, - { - "label": "Other", - "value": "other" - } + { "label": "HRQ CAHPS", "value": "hrq cahps" }, + { "label": "Other", "value": "other" } ] }, "questions": [ @@ -46268,9 +39466,7 @@ "id": "2020-03-h-02-05-a", "type": "text", "label": "Which administrative protocol did you use?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -46293,9 +39489,7 @@ "id": "2020-03-h-02-06", "type": "text_multiline", "label": "Is there anything else you'd like to add about your CAHPS survey results?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } } ], "context_data": { @@ -46367,10 +39561,7 @@ "label": "Sample size was too small (fewer than 30)", "value": "Sample size was too small (fewer than 30)" }, - { - "label": "Other", - "value": "other" - } + { "label": "Other", "value": "other" } ] } }, @@ -46378,9 +39569,7 @@ "id": "2020-03-h-03-02", "type": "text_multiline", "label": "Explain in more detail why you weren’t able to collect the CAHPS survey.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -46418,14 +39607,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } } @@ -46459,14 +39642,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -46513,9 +39690,7 @@ "id": "2020-03-i-02-01-01-04", "type": "integer", "label": "How many children do you estimate are being served by the HSI program?", - "answer": { - "entry": "112" - }, + "answer": { "entry": "112" }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -46534,9 +39709,7 @@ "id": "2020-03-i-02-01-01-05", "type": "integer", "label": "How many children in the HSI program are below your state's FPL threshold? ", - "answer": { - "entry": "112" - }, + "answer": { "entry": "112" }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -46661,9 +39834,7 @@ "id": "2020-03-i-02-01-01-09", "type": "file_upload", "label": "Optional: Attach any additional documents.", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -46794,9 +39965,7 @@ "id": "2020-04-a-01-01-01-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -46837,9 +40006,7 @@ "id": "2020-04-a-01-01-01-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "30669" - } + "answer": { "entry": "30669" } } ] }, @@ -46860,9 +40027,7 @@ "id": "2020-04-a-01-01-01-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "1127906" - } + "answer": { "entry": "1127906" } } ] }, @@ -46929,18 +40094,14 @@ "id": "2020-04-a-01-01-01-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2020-04-a-01-01-01-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -46984,9 +40145,7 @@ "id": "2020-04-a-01-01-01-02-02-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -47027,9 +40186,7 @@ "id": "2020-04-a-01-01-01-02-02-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "13922" - } + "answer": { "entry": "13922" } } ] }, @@ -47050,9 +40207,7 @@ "id": "2020-04-a-01-01-01-02-02-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "359680" - } + "answer": { "entry": "359680" } } ] }, @@ -47119,18 +40274,14 @@ "id": "2020-04-a-01-01-01-02-02-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2020-04-a-01-01-01-02-02-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -47174,9 +40325,7 @@ "id": "2020-04-a-01-01-01-02-03-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -47217,9 +40366,7 @@ "id": "2020-04-a-01-01-01-02-03-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "16747" - } + "answer": { "entry": "16747" } } ] }, @@ -47240,9 +40387,7 @@ "id": "2020-04-a-01-01-01-02-03-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "351278" - } + "answer": { "entry": "351278" } } ] }, @@ -47309,18 +40454,14 @@ "id": "2020-04-a-01-01-01-02-03-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2020-04-a-01-01-01-02-03-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -47338,9 +40479,7 @@ "hint": "You can edit the suggested objective so it matches what’s in your CHIP State Plan.", "type": "text_multiline", "label": "What is the next objective listed in your CHIP State Plan?", - "answer": { - "entry": "Increase Access to Care" - } + "answer": { "entry": "Increase Access to Care" } }, { "id": "2020-04-a-01-01-02-02", @@ -47386,9 +40525,7 @@ "id": "2020-04-a-01-01-02-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -47429,9 +40566,7 @@ "id": "2020-04-a-01-01-02-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "78593" - } + "answer": { "entry": "78593" } } ] }, @@ -47452,9 +40587,7 @@ "id": "2020-04-a-01-01-02-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "78908" - } + "answer": { "entry": "78908" } } ] }, @@ -47521,18 +40654,14 @@ "id": "2020-04-a-01-01-02-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2020-04-a-01-01-02-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -47576,9 +40705,7 @@ "id": "2020-04-a-01-01-02-02-02-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -47619,9 +40746,7 @@ "id": "2020-04-a-01-01-02-02-02-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "1329" - } + "answer": { "entry": "1329" } } ] }, @@ -47642,9 +40767,7 @@ "id": "2020-04-a-01-01-02-02-02-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "1338" - } + "answer": { "entry": "1338" } } ] }, @@ -47711,18 +40834,14 @@ "id": "2020-04-a-01-01-02-02-02-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2020-04-a-01-01-02-02-02-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -47766,9 +40885,7 @@ "id": "2020-04-a-01-01-02-02-03-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -47809,9 +40926,7 @@ "id": "2020-04-a-01-01-02-02-03-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "10464" - } + "answer": { "entry": "10464" } } ] }, @@ -47832,9 +40947,7 @@ "id": "2020-04-a-01-01-02-02-03-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "10776" - } + "answer": { "entry": "10776" } } ] }, @@ -47901,18 +41014,14 @@ "id": "2020-04-a-01-01-02-02-03-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2020-04-a-01-01-02-02-03-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -47956,9 +41065,7 @@ "id": "2020-04-a-01-01-02-02-04-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -47999,9 +41106,7 @@ "id": "2020-04-a-01-01-02-02-04-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "53395" - } + "answer": { "entry": "53395" } } ] }, @@ -48022,9 +41127,7 @@ "id": "2020-04-a-01-01-02-02-04-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "66741" - } + "answer": { "entry": "66741" } } ] }, @@ -48091,18 +41194,14 @@ "id": "2020-04-a-01-01-02-02-04-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2020-04-a-01-01-02-02-04-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -48146,9 +41245,7 @@ "id": "2020-04-a-01-01-02-02-05-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -48189,9 +41286,7 @@ "id": "2020-04-a-01-01-02-02-05-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "43656" - } + "answer": { "entry": "43656" } } ] }, @@ -48212,9 +41307,7 @@ "id": "2020-04-a-01-01-02-02-05-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "46439" - } + "answer": { "entry": "46439" } } ] }, @@ -48265,9 +41358,7 @@ "id": "2020-04-a-01-01-02-02-05-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { - "entry": "This is a new goal." - } + "answer": { "entry": "This is a new goal." } }, { "id": "2020-04-a-01-01-02-02-05-10", @@ -48281,18 +41372,14 @@ "id": "2020-04-a-01-01-02-02-05-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2020-04-a-01-01-02-02-05-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -48358,9 +41445,7 @@ "id": "2020-04-a-01-01-03-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -48401,9 +41486,7 @@ "id": "2020-04-a-01-01-03-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "367" - } + "answer": { "entry": "367" } } ] }, @@ -48424,9 +41507,7 @@ "id": "2020-04-a-01-01-03-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "378" - } + "answer": { "entry": "378" } } ] }, @@ -48477,9 +41558,7 @@ "id": "2020-04-a-01-01-03-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { - "entry": "This is a new goal" - } + "answer": { "entry": "This is a new goal" } }, { "id": "2020-04-a-01-01-03-02-01-10", @@ -48493,18 +41572,14 @@ "id": "2020-04-a-01-01-03-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2020-04-a-01-01-03-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -48548,9 +41623,7 @@ "id": "2020-04-a-01-01-03-02-02-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -48591,9 +41664,7 @@ "id": "2020-04-a-01-01-03-02-02-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "369" - } + "answer": { "entry": "369" } } ] }, @@ -48614,9 +41685,7 @@ "id": "2020-04-a-01-01-03-02-02-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "401" - } + "answer": { "entry": "401" } } ] }, @@ -48683,18 +41752,14 @@ "id": "2020-04-a-01-01-03-02-02-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2020-04-a-01-01-03-02-02-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -48738,9 +41803,7 @@ "id": "2020-04-a-01-01-03-02-03-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -48781,9 +41844,7 @@ "id": "2020-04-a-01-01-03-02-03-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "41565" - } + "answer": { "entry": "41565" } } ] }, @@ -48804,9 +41865,7 @@ "id": "2020-04-a-01-01-03-02-03-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "54080" - } + "answer": { "entry": "54080" } } ] }, @@ -48873,18 +41932,14 @@ "id": "2020-04-a-01-01-03-02-03-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2020-04-a-01-01-03-02-03-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -48901,9 +41956,7 @@ "id": "2020-04-a-01-01-04-01", "type": "text_multiline", "label": "What is the next objective listed in your CHIP State Plan?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-04-02", @@ -48917,9 +41970,7 @@ "id": "2020-04-a-01-01-04-02-01-01", "type": "text_multiline", "label": "Briefly describe your goal for this objective.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-04-02-01-02", @@ -48948,9 +41999,7 @@ "id": "2020-04-a-01-01-04-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -48982,17 +42031,13 @@ "id": "2020-04-a-01-01-04-02-01-03", "type": "text_medium", "label": "Which population are you measuring in the numerator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-04-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -49004,17 +42049,13 @@ "id": "2020-04-a-01-01-04-02-01-05", "type": "text_medium", "label": "Which population are you measuring in the denominator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-04-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -49065,34 +42106,26 @@ "id": "2020-04-a-01-01-04-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-04-02-01-10", "type": "text_multiline", "label": "What are you doing to continually make progress towards your goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-04-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-04-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -49109,9 +42142,7 @@ "id": "2020-04-a-01-01-05-01", "type": "text_multiline", "label": "What is the next objective listed in your CHIP State Plan?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-05-02", @@ -49125,9 +42156,7 @@ "id": "2020-04-a-01-01-05-02-01-01", "type": "text_multiline", "label": "Briefly describe your goal for this objective.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-05-02-01-02", @@ -49156,9 +42185,7 @@ "id": "2020-04-a-01-01-05-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -49190,17 +42217,13 @@ "id": "2020-04-a-01-01-05-02-01-03", "type": "text_medium", "label": "Which population are you measuring in the numerator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-05-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -49212,17 +42235,13 @@ "id": "2020-04-a-01-01-05-02-01-05", "type": "text_medium", "label": "Which population are you measuring in the denominator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-05-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -49273,34 +42292,26 @@ "id": "2020-04-a-01-01-05-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-05-02-01-10", "type": "text_multiline", "label": "What are you doing to continually make progress towards your goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-05-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-05-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -49317,9 +42328,7 @@ "id": "2020-04-a-01-01-06-01", "type": "text_multiline", "label": "What is the next objective listed in your CHIP State Plan?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-06-02", @@ -49333,9 +42342,7 @@ "id": "2020-04-a-01-01-06-02-01-01", "type": "text_multiline", "label": "Briefly describe your goal for this objective.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-06-02-01-02", @@ -49364,9 +42371,7 @@ "id": "2020-04-a-01-01-06-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -49398,17 +42403,13 @@ "id": "2020-04-a-01-01-06-02-01-03", "type": "text_medium", "label": "Which population are you measuring in the numerator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-06-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -49421,17 +42422,13 @@ "hint": "For example: The total number of eligible children in the last federal fiscal year.", "type": "text_medium", "label": "Which population are you measuring in the denominator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-06-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -49482,34 +42479,26 @@ "id": "2020-04-a-01-01-06-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-06-02-01-10", "type": "text_multiline", "label": "What are you doing to continually make progress towards your goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-06-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-06-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -49539,9 +42528,7 @@ "id": "2020-04-a-02-02", "type": "text_multiline", "label": "Do you plan to add new strategies for measuring and reporting on your goals and objectives? What do you plan to do, and when will this data become available?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2020-04-a-02-03", @@ -49556,9 +42543,7 @@ "hint": "For example: studies, analyses, or any other documents that address your performance goals.", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -49613,34 +42598,26 @@ "id": "2020-05-a-01-01-a", "type": "money", "label": "2020", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-01-01-b", "type": "money", "label": "2021", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-05-a-01-01-c", "type": "money", "label": "2022", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-05-a-01-01" - }, + "fieldset_info": { "id": "2020-05-a-01-01" }, "fieldset_type": "marked" }, { @@ -49654,34 +42631,26 @@ "id": "2020-05-a-01-02-a", "type": "money", "label": "2020", - "answer": { - "entry": "356487608" - }, + "answer": { "entry": "356487608" }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-01-02-b", "type": "money", "label": "2021", - "answer": { - "entry": "411883043" - } + "answer": { "entry": "411883043" } }, { "id": "2020-05-a-01-02-c", "type": "money", "label": "2022", - "answer": { - "entry": "443317001" - } + "answer": { "entry": "443317001" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-05-a-01-02" - }, + "fieldset_info": { "id": "2020-05-a-01-02" }, "fieldset_type": "marked" }, { @@ -49695,34 +42664,26 @@ "id": "2020-05-a-01-03-a", "type": "money", "label": "2020", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-01-03-b", "type": "money", "label": "2021", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-05-a-01-03-c", "type": "money", "label": "2022", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-05-a-01-03" - }, + "fieldset_info": { "id": "2020-05-a-01-03" }, "fieldset_type": "marked" }, { @@ -49736,34 +42697,26 @@ "id": "2020-05-a-01-04-a", "type": "money", "label": "2020", - "answer": { - "entry": "6343194" - }, + "answer": { "entry": "6343194" }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-01-04-b", "type": "money", "label": "2021", - "answer": { - "entry": "7000000" - } + "answer": { "entry": "7000000" } }, { "id": "2020-05-a-01-04-c", "type": "money", "label": "2022", - "answer": { - "entry": "7000000" - } + "answer": { "entry": "7000000" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-05-a-01-04" - }, + "fieldset_info": { "id": "2020-05-a-01-04" }, "fieldset_type": "marked" }, { @@ -49774,9 +42727,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Managed Care" - }, + { "contents": "Managed Care" }, { "actions": ["identity"], "targets": [ @@ -49797,9 +42748,7 @@ } ], [ - { - "contents": "Fee for Service" - }, + { "contents": "Fee for Service" }, { "actions": ["identity"], "targets": [ @@ -49820,9 +42769,7 @@ } ], [ - { - "contents": "Other benefit costs" - }, + { "contents": "Other benefit costs" }, { "actions": ["identity"], "targets": [ @@ -49866,9 +42813,7 @@ } ], [ - { - "contents": "Total benefit costs" - }, + { "contents": "Total benefit costs" }, { "actions": ["sum"], "targets": [ @@ -49899,18 +42844,10 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "FFY 2020" - }, - { - "contents": "FFY 2021" - }, - { - "contents": "FFY 2022" - } + { "contents": "" }, + { "contents": "FFY 2020" }, + { "contents": "FFY 2021" }, + { "contents": "FFY 2022" } ] }, "fieldset_type": "synthesized_table" @@ -49935,34 +42872,26 @@ "id": "2020-05-a-02-01-a", "type": "money", "label": "2020", - "answer": { - "entry": "5005640" - }, + "answer": { "entry": "5005640" }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-02-01-b", "type": "money", "label": "2021", - "answer": { - "entry": "5716281" - } + "answer": { "entry": "5716281" } }, { "id": "2020-05-a-02-01-c", "type": "money", "label": "2022", - "answer": { - "entry": "6287909" - } + "answer": { "entry": "6287909" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-05-a-02-01" - }, + "fieldset_info": { "id": "2020-05-a-02-01" }, "fieldset_type": "marked" }, { @@ -49976,34 +42905,26 @@ "id": "2020-05-a-02-02-a", "type": "money", "label": "2020", - "answer": { - "entry": "5839005" - }, + "answer": { "entry": "5839005" }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-02-02-b", "type": "money", "label": "2021", - "answer": { - "entry": "6923267" - } + "answer": { "entry": "6923267" } }, { "id": "2020-05-a-02-02-c", "type": "money", "label": "2022", - "answer": { - "entry": "7555964" - } + "answer": { "entry": "7555964" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-05-a-02-02" - }, + "fieldset_info": { "id": "2020-05-a-02-02" }, "fieldset_type": "marked" }, { @@ -50017,34 +42938,26 @@ "id": "2020-05-a-02-03-a", "type": "money", "label": "2020", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-02-03-b", "type": "money", "label": "2021", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-05-a-02-03-c", "type": "money", "label": "2022", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-05-a-02-03" - }, + "fieldset_info": { "id": "2020-05-a-02-03" }, "fieldset_type": "marked" }, { @@ -50058,34 +42971,26 @@ "id": "2020-05-a-02-04-a", "type": "money", "label": "2020", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-02-04-b", "type": "money", "label": "2021", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-05-a-02-04-c", "type": "money", "label": "2022", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-05-a-02-04" - }, + "fieldset_info": { "id": "2020-05-a-02-04" }, "fieldset_type": "marked" }, { @@ -50099,34 +43004,26 @@ "id": "2020-05-a-02-05-a", "type": "money", "label": "2020", - "answer": { - "entry": "201056" - }, + "answer": { "entry": "201056" }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-02-05-b", "type": "money", "label": "2021", - "answer": { - "entry": "500000" - } + "answer": { "entry": "500000" } }, { "id": "2020-05-a-02-05-c", "type": "money", "label": "2022", - "answer": { - "entry": "500000" - } + "answer": { "entry": "500000" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-05-a-02-05" - }, + "fieldset_info": { "id": "2020-05-a-02-05" }, "fieldset_type": "marked" }, { @@ -50140,34 +43037,26 @@ "id": "2020-05-a-02-06-a", "type": "money", "label": "2020", - "answer": { - "entry": "230094" - }, + "answer": { "entry": "230094" }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-02-06-b", "type": "money", "label": "2021", - "answer": { - "entry": "200000" - } + "answer": { "entry": "200000" } }, { "id": "2020-05-a-02-06-c", "type": "money", "label": "2022", - "answer": { - "entry": "200000" - } + "answer": { "entry": "200000" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-05-a-02-06" - }, + "fieldset_info": { "id": "2020-05-a-02-06" }, "fieldset_type": "marked" }, { @@ -50181,34 +43070,26 @@ "id": "2020-05-a-02-07-a", "type": "money", "label": "2020", - "answer": { - "entry": "885410" - }, + "answer": { "entry": "885410" }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-02-07-b", "type": "money", "label": "2021", - "answer": { - "entry": "1371907" - } + "answer": { "entry": "1371907" } }, { "id": "2020-05-a-02-07-c", "type": "money", "label": "2022", - "answer": { - "entry": "1509098" - } + "answer": { "entry": "1509098" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-05-a-02-07" - }, + "fieldset_info": { "id": "2020-05-a-02-07" }, "fieldset_type": "marked" }, { @@ -50219,9 +43100,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Personnel" - }, + { "contents": "Personnel" }, { "actions": ["identity"], "targets": [ @@ -50242,9 +43121,7 @@ } ], [ - { - "contents": "General administration" - }, + { "contents": "General administration" }, { "actions": ["identity"], "targets": [ @@ -50265,9 +43142,7 @@ } ], [ - { - "contents": "Contractors and brokers" - }, + { "contents": "Contractors and brokers" }, { "actions": ["identity"], "targets": [ @@ -50288,9 +43163,7 @@ } ], [ - { - "contents": "Claims processing" - }, + { "contents": "Claims processing" }, { "actions": ["identity"], "targets": [ @@ -50311,9 +43184,7 @@ } ], [ - { - "contents": "Outreach and marketing" - }, + { "contents": "Outreach and marketing" }, { "actions": ["identity"], "targets": [ @@ -50334,9 +43205,7 @@ } ], [ - { - "contents": "Health Services Initiatives (HSI)" - }, + { "contents": "Health Services Initiatives (HSI)" }, { "actions": ["identity"], "targets": [ @@ -50357,9 +43226,7 @@ } ], [ - { - "contents": "Other administrative costs" - }, + { "contents": "Other administrative costs" }, { "actions": ["identity"], "targets": [ @@ -50380,9 +43247,7 @@ } ], [ - { - "contents": "Total administrative costs" - }, + { "contents": "Total administrative costs" }, { "actions": ["sum"], "targets": [ @@ -50421,9 +43286,7 @@ } ], [ - { - "contents": "10% administrative cap" - }, + { "contents": "10% administrative cap" }, { "actions": ["formula"], "formula": "(<0> + <1> + <2> - <3>) / 9", @@ -50460,18 +43323,10 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "FFY 2020" - }, - { - "contents": "FFY 2021" - }, - { - "contents": "FFY 2022" - } + { "contents": "" }, + { "contents": "FFY 2020" }, + { "contents": "FFY 2021" }, + { "contents": "FFY 2022" } ] }, "fieldset_type": "synthesized_table" @@ -50484,9 +43339,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Total program costs " - }, + { "contents": "Total program costs " }, { "actions": ["formula"], "formula": "<0> + <1> + <2> + <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10>", @@ -50543,48 +43396,30 @@ } ], [ - { - "contents": "eFMAP" - }, + { "contents": "eFMAP" }, { "actions": ["identity"], - "targets": [ - { - "lookupFmapFy": "2020" - } - ], + "targets": [{ "lookupFmapFy": "2020" }], "$comment": "This should pull the FMAP data from the API for this state and plug it in (FY20)" }, { "actions": ["identity"], - "targets": [ - { - "lookupFmapFy": "2021" - } - ], + "targets": [{ "lookupFmapFy": "2021" }], "$comment": "This should pull the FMAP data from the API for this state and plug it in (FY21)" }, { "actions": ["identity"], - "targets": [ - { - "lookupFmapFy": "2022" - } - ], + "targets": [{ "lookupFmapFy": "2022" }], "$comment": "This should pull the FMAP data from the API for this state and plug it in (FY22)" } ], [ - { - "contents": "Federal share" - }, + { "contents": "Federal share" }, { "actions": ["formula"], "formula": "(<0> / 100) * (<1> + <2> + <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10> + <11>)", "targets": [ - { - "lookupFmapFy": "2020" - }, + { "lookupFmapFy": "2020" }, "$..*[?(@ && @.id=='2020-05-a-01-01-a')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-01-02-a')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-01-03-a')].answer.entry", @@ -50603,9 +43438,7 @@ "actions": ["formula"], "formula": "(<0> / 100) * (<1> + <2> + <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10> + <11>)", "targets": [ - { - "lookupFmapFy": "2021" - }, + { "lookupFmapFy": "2021" }, "$..*[?(@ && @.id=='2020-05-a-01-01-b')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-01-02-b')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-01-03-b')].answer.entry", @@ -50624,9 +43457,7 @@ "actions": ["formula"], "formula": "(<0> / 100) * (<1> + <2> + <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10> + <11>)", "targets": [ - { - "lookupFmapFy": "2022" - }, + { "lookupFmapFy": "2022" }, "$..*[?(@ && @.id=='2020-05-a-01-01-c')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-01-02-c')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-01-03-c')].answer.entry", @@ -50643,9 +43474,7 @@ } ], [ - { - "contents": "State share" - }, + { "contents": "State share" }, { "actions": ["formula"], "formula": "<0> + <1> + <2> + <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10> - ((<11> / 100) * (<12> + <13> + <14> + <15> + <16> + <17> + <18> + <19> + <20> + <21> + <22>))", @@ -50661,9 +43490,7 @@ "$..*[?(@ && @.id=='2020-05-a-02-05-a')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-02-06-a')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-02-07-a')].answer.entry", - { - "lookupFmapFy": "2020" - }, + { "lookupFmapFy": "2020" }, "$..*[?(@ && @.id=='2020-05-a-01-01-a')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-01-02-a')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-01-03-a')].answer.entry", @@ -50693,9 +43520,7 @@ "$..*[?(@ && @.id=='2020-05-a-02-05-b')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-02-06-b')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-02-07-b')].answer.entry", - { - "lookupFmapFy": "2021" - }, + { "lookupFmapFy": "2021" }, "$..*[?(@ && @.id=='2020-05-a-01-01-b')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-01-02-b')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-01-03-b')].answer.entry", @@ -50725,9 +43550,7 @@ "$..*[?(@ && @.id=='2020-05-a-02-05-c')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-02-06-c')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-02-07-c')].answer.entry", - { - "lookupFmapFy": "2022" - }, + { "lookupFmapFy": "2022" }, "$..*[?(@ && @.id=='2020-05-a-01-01-c')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-01-02-c')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-01-03-c')].answer.entry", @@ -50745,18 +43568,10 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "FFY 2020" - }, - { - "contents": "FFY 2021" - }, - { - "contents": "FFY 2022" - } + { "contents": "" }, + { "contents": "FFY 2020" }, + { "contents": "FFY 2021" }, + { "contents": "FFY 2022" } ] }, "fieldset_type": "synthesized_table" @@ -50797,10 +43612,7 @@ "label": "Tobacco settlement", "value": "tobacco settlement" }, - { - "label": "Other", - "value": "other" - } + { "label": "Other", "value": "other" } ] }, "questions": [ @@ -50808,9 +43620,7 @@ "id": "2020-05-a-02-08-a", "type": "text", "label": "What other type of funding did you receive?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -50834,14 +43644,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -50849,9 +43653,7 @@ "id": "2020-05-a-02-09-a", "type": "text_multiline", "label": "Briefly explain why your state didn’t have enough federal funding to cover your CHIP program costs.", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -50887,34 +43689,26 @@ "id": "2020-05-a-03-01-a", "type": "integer", "label": "2020", - "answer": { - "entry": "53253" - }, + "answer": { "entry": "53253" }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-03-01-b", "type": "integer", "label": "2021", - "answer": { - "entry": "" - } + "answer": { "entry": "" } }, { "id": "2020-05-a-03-01-c", "type": "integer", "label": "2022", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-05-a-03-01" - }, + "fieldset_info": { "id": "2020-05-a-03-01" }, "fieldset_type": "marked" }, { @@ -50929,34 +43723,26 @@ "id": "2020-05-a-03-02-a", "type": "money", "label": "2020", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-03-02-b", "type": "money", "label": "2021", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2020-05-a-03-02-c", "type": "money", "label": "2022", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-05-a-03-02" - }, + "fieldset_info": { "id": "2020-05-a-03-02" }, "fieldset_type": "marked" }, { @@ -50965,9 +43751,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Eligible children" - }, + { "contents": "Eligible children" }, { "actions": ["identity"], "targets": [ @@ -50988,9 +43772,7 @@ } ], [ - { - "contents": "PMPM cost" - }, + { "contents": "PMPM cost" }, { "actions": ["identity"], "targets": [ @@ -51012,18 +43794,10 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "FFY 2020" - }, - { - "contents": "FFY 2021" - }, - { - "contents": "FFY 2022" - } + { "contents": "" }, + { "contents": "FFY 2020" }, + { "contents": "FFY 2021" }, + { "contents": "FFY 2022" } ] }, "fieldset_type": "synthesized_table" @@ -51047,34 +43821,26 @@ "id": "2020-05-a-04-01-a", "type": "integer", "label": "2020", - "answer": { - "entry": "174401" - }, + "answer": { "entry": "174401" }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-04-01-b", "type": "integer", "label": "2021", - "answer": { - "entry": "80722" - } + "answer": { "entry": "80722" } }, { "id": "2020-05-a-04-01-c", "type": "integer", "label": "2022", - "answer": { - "entry": "84885" - } + "answer": { "entry": "84885" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-05-a-04-01" - }, + "fieldset_info": { "id": "2020-05-a-04-01" }, "fieldset_type": "marked" }, { @@ -51089,34 +43855,26 @@ "id": "2020-05-a-04-02-a", "type": "money", "label": "2020", - "answer": { - "entry": "233" - }, + "answer": { "entry": "233" }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-04-02-b", "type": "money", "label": "2021", - "answer": { - "entry": "3" - } + "answer": { "entry": "3" } }, { "id": "2020-05-a-04-02-c", "type": "money", "label": "2022", - "answer": { - "entry": "252" - } + "answer": { "entry": "252" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-05-a-04-02" - }, + "fieldset_info": { "id": "2020-05-a-04-02" }, "fieldset_type": "marked" }, { @@ -51125,9 +43883,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Eligible children" - }, + { "contents": "Eligible children" }, { "actions": ["identity"], "targets": [ @@ -51148,9 +43904,7 @@ } ], [ - { - "contents": "PMPM cost" - }, + { "contents": "PMPM cost" }, { "actions": ["identity"], "targets": [ @@ -51172,18 +43926,10 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "FFY 2020" - }, - { - "contents": "FFY 2021" - }, - { - "contents": "FFY 2022" - } + { "contents": "" }, + { "contents": "FFY 2020" }, + { "contents": "FFY 2021" }, + { "contents": "FFY 2022" } ] }, "fieldset_type": "synthesized_table" @@ -51206,9 +43952,7 @@ "id": "2020-05-a-05-02", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -51285,9 +44029,7 @@ "id": "2020-06-a-01-06", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } diff --git a/services/database/data/seed/seed-section-base-2023.json b/services/database/data/seed/seed-section-base-2023.json index bba4ec5ad..f8d6c8d01 100644 --- a/services/database/data/seed/seed-section-base-2023.json +++ b/services/database/data/seed/seed-section-base-2023.json @@ -4888,8 +4888,7 @@ "type": "integer", "label": "Total for all ages (0-16)", "answer": { - "entry": null, - "readonly": true + "entry": null }, "context_data": { "conditional_display": { @@ -5640,8 +5639,7 @@ "type": "integer", "label": "Total for all ages (0-16)", "answer": { - "entry": null, - "readonly": true + "entry": null }, "context_data": { "conditional_display": { @@ -5736,8 +5734,7 @@ "type": "integer", "label": "Total for all ages (0-16)", "answer": { - "entry": null, - "readonly": true + "entry": null }, "context_data": { "conditional_display": { @@ -5832,8 +5829,7 @@ "type": "integer", "label": "Total for all ages (0-16)", "answer": { - "entry": null, - "readonly": true + "entry": null }, "context_data": { "conditional_display": { @@ -5929,8 +5925,7 @@ "type": "integer", "label": "Total for all ages (0-16)", "answer": { - "entry": null, - "readonly": true + "entry": null }, "context_data": { "conditional_display": { @@ -6025,8 +6020,7 @@ "type": "integer", "label": "Total for all ages (0-16)", "answer": { - "entry": null, - "readonly": true + "entry": null }, "context_data": { "conditional_display": { @@ -6128,8 +6122,7 @@ "type": "integer", "label": "Total for all ages (0-16)", "answer": { - "entry": null, - "readonly": true + "entry": null }, "context_data": { "conditional_display": { @@ -6224,8 +6217,7 @@ "type": "integer", "label": "Total for all ages (0-16)", "answer": { - "entry": null, - "readonly": true + "entry": null }, "context_data": { "conditional_display": { @@ -6320,8 +6312,7 @@ "type": "integer", "label": "Total for all ages (0-16)", "answer": { - "entry": null, - "readonly": true + "entry": null }, "context_data": { "conditional_display": { @@ -6417,8 +6408,7 @@ "type": "integer", "label": "Total for all ages (0-16)", "answer": { - "entry": null, - "readonly": true + "entry": null }, "context_data": { "conditional_display": { @@ -6513,8 +6503,7 @@ "type": "integer", "label": "Total for all ages (0-16)", "answer": { - "entry": null, - "readonly": true + "entry": null }, "context_data": { "conditional_display": { diff --git a/services/database/package.json b/services/database/package.json index a43b99aeb..1464e68c3 100644 --- a/services/database/package.json +++ b/services/database/package.json @@ -13,8 +13,8 @@ "serverless-dynamodb": "^0.2.53" }, "dependencies": { - "@aws-sdk/client-dynamodb": "^3.596.0", - "@aws-sdk/lib-dynamodb": "^3.596.0", + "@aws-sdk/client-dynamodb": "^3.621.0", + "@aws-sdk/lib-dynamodb": "^3.621.0", "pg": "^8.11.4" } } diff --git a/services/database/scripts/remove-readonly-in-section-3c.js b/services/database/scripts/remove-readonly-in-section-3c.js new file mode 100644 index 000000000..22bead5f1 --- /dev/null +++ b/services/database/scripts/remove-readonly-in-section-3c.js @@ -0,0 +1,99 @@ +/* eslint-disable no-console */ +/* + * Local: + * `DYNAMODB_URL="http://localhost:8000" dynamoPrefix="local" node services/database/scripts/remove-readonly-in-section-3c.js` + * Branch: + * dynamoPrefix="YOUR BRANCH NAME" node services/database/scripts/remove-readonly-in-section-3c.js + */ + +const { buildDynamoClient, scan, update } = require("./utils/dynamodb.js"); + +const isLocal = !!process.env.DYNAMODB_URL; + +const sectionTable = isLocal + ? "local-section" + : process.env.dynamoPrefix + "-section"; + +async function handler() { + try { + console.log("Searching for 2023 Forms"); + + buildDynamoClient(); + + console.log(`Processing table ${sectionTable}`); + const existingItems = await scan({ + TableName: sectionTable, + }); + const filteredItems = filter(existingItems); + const transformedItems = await transform(filteredItems); + await update(sectionTable, transformedItems); + console.log(`Touched ${transformedItems.length} in table ${sectionTable}`); + console.debug("Data fix complete"); + + return { + statusCode: 200, + body: "All done!", + }; + } catch (err) { + console.error(err); + return { + statusCode: 500, + body: err.message, + }; + } +} + +function filter(items) { + return items.filter((item) => item.year === 2023 && item.sectionId === 3); +} + +async function transform(items) { + // Touch sync field only + const transformed = items.map((section) => { + console.log("Transforming section!", section); + return updateSection3(section); + }); + + return transformed; +} + +const updateSection3 = (section) => { + section.contents.section.subsections[2].parts.map((part) => { + return recurseAndUpdateQuestions(part.questions, section.pk); + }); + return section; +}; + +const recurseAndUpdateQuestions = (questions, reportBeingTransformed) => { + const fieldstoRemoveReadonly = [ + "2023-03-c-05-19-a", + "2023-03-c-06-10-a", + "2023-03-c-06-11-a", + "2023-03-c-06-12-a", + "2023-03-c-06-13-a", + "2023-03-c-06-14-a", + "2023-03-c-06-15-a", + "2023-03-c-06-16-a", + "2023-03-c-06-17-a", + "2023-03-c-06-18-a", + "2023-03-c-06-19-a", + ]; + for (let question of questions) { + if ( + fieldstoRemoveReadonly.includes(question?.id) && + question?.answer?.readonly + ) { + console.log( + reportBeingTransformed, + "Found and deleting readonly field from question", + question.id + ); + delete question.answer.readonly; + } + if (question?.questions) { + recurseAndUpdateQuestions(question.questions, reportBeingTransformed); + } + } +}; + +handler(); diff --git a/services/database/serverless.yml b/services/database/serverless.yml index 4cb11570c..cd23c4b87 100644 --- a/services/database/serverless.yml +++ b/services/database/serverless.yml @@ -21,7 +21,6 @@ custom: serverlessTerminationProtection: stages: - main - - master - val - production acsTableName: ${self:custom.stage}-acs diff --git a/services/database/yarn.lock b/services/database/yarn.lock index 11e44237c..12d910970 100644 --- a/services/database/yarn.lock +++ b/services/database/yarn.lock @@ -23,6 +23,19 @@ "@aws-sdk/util-utf8-browser" "^3.0.0" tslib "^1.11.1" +"@aws-crypto/sha256-browser@5.2.0": + version "5.2.0" + resolved "https://registry.yarnpkg.com/@aws-crypto/sha256-browser/-/sha256-browser-5.2.0.tgz#153895ef1dba6f9fce38af550e0ef58988eb649e" + integrity sha512-AXfN/lGotSQwu6HNcEsIASo7kWXZ5HYWvfOmSNKDsEqC4OashTp8alTmaz+F7TC2L083SFv5RdB+qU3Vs1kZqw== + dependencies: + "@aws-crypto/sha256-js" "^5.2.0" + "@aws-crypto/supports-web-crypto" "^5.2.0" + "@aws-crypto/util" "^5.2.0" + "@aws-sdk/types" "^3.222.0" + "@aws-sdk/util-locate-window" "^3.0.0" + "@smithy/util-utf8" "^2.0.0" + tslib "^2.6.2" + "@aws-crypto/sha256-js@3.0.0", "@aws-crypto/sha256-js@^3.0.0": version "3.0.0" resolved "https://registry.yarnpkg.com/@aws-crypto/sha256-js/-/sha256-js-3.0.0.tgz#f06b84d550d25521e60d2a0e2a90139341e007c2" @@ -32,6 +45,15 @@ "@aws-sdk/types" "^3.222.0" tslib "^1.11.1" +"@aws-crypto/sha256-js@5.2.0", "@aws-crypto/sha256-js@^5.2.0": + version "5.2.0" + resolved "https://registry.yarnpkg.com/@aws-crypto/sha256-js/-/sha256-js-5.2.0.tgz#c4fdb773fdbed9a664fc1a95724e206cf3860042" + integrity sha512-FFQQyu7edu4ufvIZ+OadFpHHOt+eSTBaYaki44c+akjg7qZg9oOQeLlk77F6tSYqjDAFClrHJk9tMf0HdVyOvA== + dependencies: + "@aws-crypto/util" "^5.2.0" + "@aws-sdk/types" "^3.222.0" + tslib "^2.6.2" + "@aws-crypto/supports-web-crypto@^3.0.0": version "3.0.0" resolved "https://registry.yarnpkg.com/@aws-crypto/supports-web-crypto/-/supports-web-crypto-3.0.0.tgz#5d1bf825afa8072af2717c3e455f35cda0103ec2" @@ -39,6 +61,13 @@ dependencies: tslib "^1.11.1" +"@aws-crypto/supports-web-crypto@^5.2.0": + version "5.2.0" + resolved "https://registry.yarnpkg.com/@aws-crypto/supports-web-crypto/-/supports-web-crypto-5.2.0.tgz#a1e399af29269be08e695109aa15da0a07b5b5fb" + integrity sha512-iAvUotm021kM33eCdNfwIN//F77/IADDSs58i+MDaOqFrVjZo9bAal0NK7HurRuWLLpF1iLX7gbWrjHjeo+YFg== + dependencies: + tslib "^2.6.2" + "@aws-crypto/util@^3.0.0": version "3.0.0" resolved "https://registry.yarnpkg.com/@aws-crypto/util/-/util-3.0.0.tgz#1c7ca90c29293f0883468ad48117937f0fe5bfb0" @@ -48,6 +77,15 @@ "@aws-sdk/util-utf8-browser" "^3.0.0" tslib "^1.11.1" +"@aws-crypto/util@^5.2.0": + version "5.2.0" + resolved "https://registry.yarnpkg.com/@aws-crypto/util/-/util-5.2.0.tgz#71284c9cffe7927ddadac793c14f14886d3876da" + integrity sha512-4RkU9EsI6ZpBve5fseQlGNUWKMa1RLPQ1dnjnQoe07ldfIzcsGb5hC5W0Dm7u423KWzawlrpbjXBrXCEv9zazQ== + dependencies: + "@aws-sdk/types" "^3.222.0" + "@smithy/util-utf8" "^2.0.0" + tslib "^2.6.2" + "@aws-sdk/client-dynamodb@^3.428.0": version "3.569.0" resolved "https://registry.yarnpkg.com/@aws-sdk/client-dynamodb/-/client-dynamodb-3.569.0.tgz#960f0f9d112d883d30361500a82b50c55df25fb8" @@ -98,53 +136,53 @@ tslib "^2.6.2" uuid "^9.0.1" -"@aws-sdk/client-dynamodb@^3.596.0": - version "3.596.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-dynamodb/-/client-dynamodb-3.596.0.tgz#a811d319632c58eecbc99f33fb386be90f8637f7" - integrity sha512-i0TB/UuZJ/+yCIDsYpVc874IypGxksU81bckNK96j4cM9BO9mitdt0gxickqnIqTwsZIZBs7RW6ANSxDi7yVxA== - dependencies: - "@aws-crypto/sha256-browser" "3.0.0" - "@aws-crypto/sha256-js" "3.0.0" - "@aws-sdk/client-sso-oidc" "3.596.0" - "@aws-sdk/client-sts" "3.596.0" - "@aws-sdk/core" "3.592.0" - "@aws-sdk/credential-provider-node" "3.596.0" - "@aws-sdk/middleware-endpoint-discovery" "3.587.0" - "@aws-sdk/middleware-host-header" "3.577.0" - "@aws-sdk/middleware-logger" "3.577.0" - "@aws-sdk/middleware-recursion-detection" "3.577.0" - "@aws-sdk/middleware-user-agent" "3.587.0" - "@aws-sdk/region-config-resolver" "3.587.0" - "@aws-sdk/types" "3.577.0" - "@aws-sdk/util-endpoints" "3.587.0" - "@aws-sdk/util-user-agent-browser" "3.577.0" - "@aws-sdk/util-user-agent-node" "3.587.0" - "@smithy/config-resolver" "^3.0.1" - "@smithy/core" "^2.2.0" - "@smithy/fetch-http-handler" "^3.0.1" - "@smithy/hash-node" "^3.0.0" - "@smithy/invalid-dependency" "^3.0.0" - "@smithy/middleware-content-length" "^3.0.0" - "@smithy/middleware-endpoint" "^3.0.1" - "@smithy/middleware-retry" "^3.0.3" - "@smithy/middleware-serde" "^3.0.0" - "@smithy/middleware-stack" "^3.0.0" - "@smithy/node-config-provider" "^3.1.0" - "@smithy/node-http-handler" "^3.0.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" - "@smithy/url-parser" "^3.0.0" +"@aws-sdk/client-dynamodb@^3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-dynamodb/-/client-dynamodb-3.621.0.tgz#de0a23830a742f42ed031abb745d3787b0d4e759" + integrity sha512-aczOoVyufYwBCc/zZKJOP/xwbnojKQJ6Y8O7ZAZnxMPRyZXKXpoAxmlxLfOU6GUzXqzXdvj+Ir3VBd7MWB4KuQ== + dependencies: + "@aws-crypto/sha256-browser" "5.2.0" + "@aws-crypto/sha256-js" "5.2.0" + "@aws-sdk/client-sso-oidc" "3.621.0" + "@aws-sdk/client-sts" "3.621.0" + "@aws-sdk/core" "3.621.0" + "@aws-sdk/credential-provider-node" "3.621.0" + "@aws-sdk/middleware-endpoint-discovery" "3.620.0" + "@aws-sdk/middleware-host-header" "3.620.0" + "@aws-sdk/middleware-logger" "3.609.0" + "@aws-sdk/middleware-recursion-detection" "3.620.0" + "@aws-sdk/middleware-user-agent" "3.620.0" + "@aws-sdk/region-config-resolver" "3.614.0" + "@aws-sdk/types" "3.609.0" + "@aws-sdk/util-endpoints" "3.614.0" + "@aws-sdk/util-user-agent-browser" "3.609.0" + "@aws-sdk/util-user-agent-node" "3.614.0" + "@smithy/config-resolver" "^3.0.5" + "@smithy/core" "^2.3.1" + "@smithy/fetch-http-handler" "^3.2.4" + "@smithy/hash-node" "^3.0.3" + "@smithy/invalid-dependency" "^3.0.3" + "@smithy/middleware-content-length" "^3.0.5" + "@smithy/middleware-endpoint" "^3.1.0" + "@smithy/middleware-retry" "^3.0.13" + "@smithy/middleware-serde" "^3.0.3" + "@smithy/middleware-stack" "^3.0.3" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/node-http-handler" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" + "@smithy/url-parser" "^3.0.3" "@smithy/util-base64" "^3.0.0" "@smithy/util-body-length-browser" "^3.0.0" "@smithy/util-body-length-node" "^3.0.0" - "@smithy/util-defaults-mode-browser" "^3.0.3" - "@smithy/util-defaults-mode-node" "^3.0.3" - "@smithy/util-endpoints" "^2.0.1" - "@smithy/util-middleware" "^3.0.0" - "@smithy/util-retry" "^3.0.0" + "@smithy/util-defaults-mode-browser" "^3.0.13" + "@smithy/util-defaults-mode-node" "^3.0.13" + "@smithy/util-endpoints" "^2.0.5" + "@smithy/util-middleware" "^3.0.3" + "@smithy/util-retry" "^3.0.3" "@smithy/util-utf8" "^3.0.0" - "@smithy/util-waiter" "^3.0.0" + "@smithy/util-waiter" "^3.1.2" tslib "^2.6.2" uuid "^9.0.1" @@ -194,49 +232,48 @@ "@smithy/util-utf8" "^2.3.0" tslib "^2.6.2" -"@aws-sdk/client-sso-oidc@3.596.0": - version "3.596.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.596.0.tgz#9d75619043e5f0e3d985d800c3df06d9a8a3bfeb" - integrity sha512-KnTWtKzO0N+rMdIrVwbewFp4FAvVWBV/ekCAh5w7EN+uAvBHxMoFElE2RwlcRF/gH1/F715OspPMvOxPom6bMA== - dependencies: - "@aws-crypto/sha256-browser" "3.0.0" - "@aws-crypto/sha256-js" "3.0.0" - "@aws-sdk/client-sts" "3.596.0" - "@aws-sdk/core" "3.592.0" - "@aws-sdk/credential-provider-node" "3.596.0" - "@aws-sdk/middleware-host-header" "3.577.0" - "@aws-sdk/middleware-logger" "3.577.0" - "@aws-sdk/middleware-recursion-detection" "3.577.0" - "@aws-sdk/middleware-user-agent" "3.587.0" - "@aws-sdk/region-config-resolver" "3.587.0" - "@aws-sdk/types" "3.577.0" - "@aws-sdk/util-endpoints" "3.587.0" - "@aws-sdk/util-user-agent-browser" "3.577.0" - "@aws-sdk/util-user-agent-node" "3.587.0" - "@smithy/config-resolver" "^3.0.1" - "@smithy/core" "^2.2.0" - "@smithy/fetch-http-handler" "^3.0.1" - "@smithy/hash-node" "^3.0.0" - "@smithy/invalid-dependency" "^3.0.0" - "@smithy/middleware-content-length" "^3.0.0" - "@smithy/middleware-endpoint" "^3.0.1" - "@smithy/middleware-retry" "^3.0.3" - "@smithy/middleware-serde" "^3.0.0" - "@smithy/middleware-stack" "^3.0.0" - "@smithy/node-config-provider" "^3.1.0" - "@smithy/node-http-handler" "^3.0.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" - "@smithy/url-parser" "^3.0.0" +"@aws-sdk/client-sso-oidc@3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.621.0.tgz#3fa3d468fbebbd93a5f75c1d51b63cc7af3ef17b" + integrity sha512-mMjk3mFUwV2Y68POf1BQMTF+F6qxt5tPu6daEUCNGC9Cenk3h2YXQQoS4/eSyYzuBiYk3vx49VgleRvdvkg8rg== + dependencies: + "@aws-crypto/sha256-browser" "5.2.0" + "@aws-crypto/sha256-js" "5.2.0" + "@aws-sdk/core" "3.621.0" + "@aws-sdk/credential-provider-node" "3.621.0" + "@aws-sdk/middleware-host-header" "3.620.0" + "@aws-sdk/middleware-logger" "3.609.0" + "@aws-sdk/middleware-recursion-detection" "3.620.0" + "@aws-sdk/middleware-user-agent" "3.620.0" + "@aws-sdk/region-config-resolver" "3.614.0" + "@aws-sdk/types" "3.609.0" + "@aws-sdk/util-endpoints" "3.614.0" + "@aws-sdk/util-user-agent-browser" "3.609.0" + "@aws-sdk/util-user-agent-node" "3.614.0" + "@smithy/config-resolver" "^3.0.5" + "@smithy/core" "^2.3.1" + "@smithy/fetch-http-handler" "^3.2.4" + "@smithy/hash-node" "^3.0.3" + "@smithy/invalid-dependency" "^3.0.3" + "@smithy/middleware-content-length" "^3.0.5" + "@smithy/middleware-endpoint" "^3.1.0" + "@smithy/middleware-retry" "^3.0.13" + "@smithy/middleware-serde" "^3.0.3" + "@smithy/middleware-stack" "^3.0.3" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/node-http-handler" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" + "@smithy/url-parser" "^3.0.3" "@smithy/util-base64" "^3.0.0" "@smithy/util-body-length-browser" "^3.0.0" "@smithy/util-body-length-node" "^3.0.0" - "@smithy/util-defaults-mode-browser" "^3.0.3" - "@smithy/util-defaults-mode-node" "^3.0.3" - "@smithy/util-endpoints" "^2.0.1" - "@smithy/util-middleware" "^3.0.0" - "@smithy/util-retry" "^3.0.0" + "@smithy/util-defaults-mode-browser" "^3.0.13" + "@smithy/util-defaults-mode-node" "^3.0.13" + "@smithy/util-endpoints" "^2.0.5" + "@smithy/util-middleware" "^3.0.3" + "@smithy/util-retry" "^3.0.3" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" @@ -284,47 +321,47 @@ "@smithy/util-utf8" "^2.3.0" tslib "^2.6.2" -"@aws-sdk/client-sso@3.592.0": - version "3.592.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso/-/client-sso-3.592.0.tgz#90462e744998990079c28a083553090af9ac2902" - integrity sha512-w+SuW47jQqvOC7fonyjFjsOh3yjqJ+VpWdVrmrl0E/KryBE7ho/Wn991Buf/EiHHeJikoWgHsAIPkBH29+ntdA== - dependencies: - "@aws-crypto/sha256-browser" "3.0.0" - "@aws-crypto/sha256-js" "3.0.0" - "@aws-sdk/core" "3.592.0" - "@aws-sdk/middleware-host-header" "3.577.0" - "@aws-sdk/middleware-logger" "3.577.0" - "@aws-sdk/middleware-recursion-detection" "3.577.0" - "@aws-sdk/middleware-user-agent" "3.587.0" - "@aws-sdk/region-config-resolver" "3.587.0" - "@aws-sdk/types" "3.577.0" - "@aws-sdk/util-endpoints" "3.587.0" - "@aws-sdk/util-user-agent-browser" "3.577.0" - "@aws-sdk/util-user-agent-node" "3.587.0" - "@smithy/config-resolver" "^3.0.1" - "@smithy/core" "^2.2.0" - "@smithy/fetch-http-handler" "^3.0.1" - "@smithy/hash-node" "^3.0.0" - "@smithy/invalid-dependency" "^3.0.0" - "@smithy/middleware-content-length" "^3.0.0" - "@smithy/middleware-endpoint" "^3.0.1" - "@smithy/middleware-retry" "^3.0.3" - "@smithy/middleware-serde" "^3.0.0" - "@smithy/middleware-stack" "^3.0.0" - "@smithy/node-config-provider" "^3.1.0" - "@smithy/node-http-handler" "^3.0.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" - "@smithy/url-parser" "^3.0.0" +"@aws-sdk/client-sso@3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso/-/client-sso-3.621.0.tgz#c0eefeb9adcbc6bb7c91c32070404c8c91846825" + integrity sha512-xpKfikN4u0BaUYZA9FGUMkkDmfoIP0Q03+A86WjqDWhcOoqNA1DkHsE4kZ+r064ifkPUfcNuUvlkVTEoBZoFjA== + dependencies: + "@aws-crypto/sha256-browser" "5.2.0" + "@aws-crypto/sha256-js" "5.2.0" + "@aws-sdk/core" "3.621.0" + "@aws-sdk/middleware-host-header" "3.620.0" + "@aws-sdk/middleware-logger" "3.609.0" + "@aws-sdk/middleware-recursion-detection" "3.620.0" + "@aws-sdk/middleware-user-agent" "3.620.0" + "@aws-sdk/region-config-resolver" "3.614.0" + "@aws-sdk/types" "3.609.0" + "@aws-sdk/util-endpoints" "3.614.0" + "@aws-sdk/util-user-agent-browser" "3.609.0" + "@aws-sdk/util-user-agent-node" "3.614.0" + "@smithy/config-resolver" "^3.0.5" + "@smithy/core" "^2.3.1" + "@smithy/fetch-http-handler" "^3.2.4" + "@smithy/hash-node" "^3.0.3" + "@smithy/invalid-dependency" "^3.0.3" + "@smithy/middleware-content-length" "^3.0.5" + "@smithy/middleware-endpoint" "^3.1.0" + "@smithy/middleware-retry" "^3.0.13" + "@smithy/middleware-serde" "^3.0.3" + "@smithy/middleware-stack" "^3.0.3" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/node-http-handler" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" + "@smithy/url-parser" "^3.0.3" "@smithy/util-base64" "^3.0.0" "@smithy/util-body-length-browser" "^3.0.0" "@smithy/util-body-length-node" "^3.0.0" - "@smithy/util-defaults-mode-browser" "^3.0.3" - "@smithy/util-defaults-mode-node" "^3.0.3" - "@smithy/util-endpoints" "^2.0.1" - "@smithy/util-middleware" "^3.0.0" - "@smithy/util-retry" "^3.0.0" + "@smithy/util-defaults-mode-browser" "^3.0.13" + "@smithy/util-defaults-mode-node" "^3.0.13" + "@smithy/util-endpoints" "^2.0.5" + "@smithy/util-middleware" "^3.0.3" + "@smithy/util-retry" "^3.0.3" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" @@ -374,49 +411,49 @@ "@smithy/util-utf8" "^2.3.0" tslib "^2.6.2" -"@aws-sdk/client-sts@3.596.0": - version "3.596.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-sts/-/client-sts-3.596.0.tgz#236ed4b898265c737f860060adab422ea8ec6383" - integrity sha512-37+WQDjgmqS/YXj3vPzIVIrbXaFcZ1WXk715AMGIPBZn9Y2/wr2bmSTpX7bsMyn0G8+LxmoIxFcG7n1Gu0nvLg== - dependencies: - "@aws-crypto/sha256-browser" "3.0.0" - "@aws-crypto/sha256-js" "3.0.0" - "@aws-sdk/client-sso-oidc" "3.596.0" - "@aws-sdk/core" "3.592.0" - "@aws-sdk/credential-provider-node" "3.596.0" - "@aws-sdk/middleware-host-header" "3.577.0" - "@aws-sdk/middleware-logger" "3.577.0" - "@aws-sdk/middleware-recursion-detection" "3.577.0" - "@aws-sdk/middleware-user-agent" "3.587.0" - "@aws-sdk/region-config-resolver" "3.587.0" - "@aws-sdk/types" "3.577.0" - "@aws-sdk/util-endpoints" "3.587.0" - "@aws-sdk/util-user-agent-browser" "3.577.0" - "@aws-sdk/util-user-agent-node" "3.587.0" - "@smithy/config-resolver" "^3.0.1" - "@smithy/core" "^2.2.0" - "@smithy/fetch-http-handler" "^3.0.1" - "@smithy/hash-node" "^3.0.0" - "@smithy/invalid-dependency" "^3.0.0" - "@smithy/middleware-content-length" "^3.0.0" - "@smithy/middleware-endpoint" "^3.0.1" - "@smithy/middleware-retry" "^3.0.3" - "@smithy/middleware-serde" "^3.0.0" - "@smithy/middleware-stack" "^3.0.0" - "@smithy/node-config-provider" "^3.1.0" - "@smithy/node-http-handler" "^3.0.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" - "@smithy/url-parser" "^3.0.0" +"@aws-sdk/client-sts@3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-sts/-/client-sts-3.621.0.tgz#2994f601790893901704c5df56c837e89f279952" + integrity sha512-707uiuReSt+nAx6d0c21xLjLm2lxeKc7padxjv92CIrIocnQSlJPxSCM7r5zBhwiahJA6MNQwmTl2xznU67KgA== + dependencies: + "@aws-crypto/sha256-browser" "5.2.0" + "@aws-crypto/sha256-js" "5.2.0" + "@aws-sdk/client-sso-oidc" "3.621.0" + "@aws-sdk/core" "3.621.0" + "@aws-sdk/credential-provider-node" "3.621.0" + "@aws-sdk/middleware-host-header" "3.620.0" + "@aws-sdk/middleware-logger" "3.609.0" + "@aws-sdk/middleware-recursion-detection" "3.620.0" + "@aws-sdk/middleware-user-agent" "3.620.0" + "@aws-sdk/region-config-resolver" "3.614.0" + "@aws-sdk/types" "3.609.0" + "@aws-sdk/util-endpoints" "3.614.0" + "@aws-sdk/util-user-agent-browser" "3.609.0" + "@aws-sdk/util-user-agent-node" "3.614.0" + "@smithy/config-resolver" "^3.0.5" + "@smithy/core" "^2.3.1" + "@smithy/fetch-http-handler" "^3.2.4" + "@smithy/hash-node" "^3.0.3" + "@smithy/invalid-dependency" "^3.0.3" + "@smithy/middleware-content-length" "^3.0.5" + "@smithy/middleware-endpoint" "^3.1.0" + "@smithy/middleware-retry" "^3.0.13" + "@smithy/middleware-serde" "^3.0.3" + "@smithy/middleware-stack" "^3.0.3" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/node-http-handler" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" + "@smithy/url-parser" "^3.0.3" "@smithy/util-base64" "^3.0.0" "@smithy/util-body-length-browser" "^3.0.0" "@smithy/util-body-length-node" "^3.0.0" - "@smithy/util-defaults-mode-browser" "^3.0.3" - "@smithy/util-defaults-mode-node" "^3.0.3" - "@smithy/util-endpoints" "^2.0.1" - "@smithy/util-middleware" "^3.0.0" - "@smithy/util-retry" "^3.0.0" + "@smithy/util-defaults-mode-browser" "^3.0.13" + "@smithy/util-defaults-mode-node" "^3.0.13" + "@smithy/util-endpoints" "^2.0.5" + "@smithy/util-middleware" "^3.0.3" + "@smithy/util-retry" "^3.0.3" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" @@ -433,17 +470,19 @@ fast-xml-parser "4.2.5" tslib "^2.6.2" -"@aws-sdk/core@3.592.0": - version "3.592.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/core/-/core-3.592.0.tgz#d903a3993f8ba6836480314c2a8af8b7857bb943" - integrity sha512-gLPMXR/HXDP+9gXAt58t7gaMTvRts9i6Q7NMISpkGF54wehskl5WGrbdtHJFylrlJ5BQo3XVY6i661o+EuR1wg== +"@aws-sdk/core@3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/core/-/core-3.621.0.tgz#e38c56c3ce0c819ca1185eaabcb98412429aaca3" + integrity sha512-CtOwWmDdEiINkGXD93iGfXjN0WmCp9l45cDWHHGa8lRgEDyhuL7bwd/pH5aSzj0j8SiQBG2k0S7DHbd5RaqvbQ== dependencies: - "@smithy/core" "^2.2.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/signature-v4" "^3.0.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" - fast-xml-parser "4.2.5" + "@smithy/core" "^2.3.1" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/signature-v4" "^4.1.0" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" + "@smithy/util-middleware" "^3.0.3" + fast-xml-parser "4.4.1" tslib "^2.6.2" "@aws-sdk/credential-provider-env@3.568.0": @@ -456,14 +495,14 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@aws-sdk/credential-provider-env@3.587.0": - version "3.587.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-env/-/credential-provider-env-3.587.0.tgz#40435be331773e4b1b665a1f4963518d4647505c" - integrity sha512-Hyg/5KFECIk2k5o8wnVEiniV86yVkhn5kzITUydmNGCkXdBFHMHRx6hleQ1bqwJHbBskyu8nbYamzcwymmGwmw== +"@aws-sdk/credential-provider-env@3.620.1": + version "3.620.1" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-env/-/credential-provider-env-3.620.1.tgz#d4692c49a65ebc11dae3f7f8b053fee9268a953c" + integrity sha512-ExuILJ2qLW5ZO+rgkNRj0xiAipKT16Rk77buvPP8csR7kkCflT/gXTyzRe/uzIiETTxM7tr8xuO9MP/DQXqkfg== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/property-provider" "^3.1.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@aws-sdk/credential-provider-http@3.568.0": @@ -481,19 +520,19 @@ "@smithy/util-stream" "^2.2.0" tslib "^2.6.2" -"@aws-sdk/credential-provider-http@3.596.0": - version "3.596.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-http/-/credential-provider-http-3.596.0.tgz#ad81565e37f84c860a7a5f82ff256a962397816c" - integrity sha512-nnmvEsz1KJgRmfSZJPWuzbxPRXu8Y+/78Ifa1jY3fQKSKdEJfXMDsjPljJvMDBl4dZ8pf5Hwx+S/ONnMEDwYEA== +"@aws-sdk/credential-provider-http@3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-http/-/credential-provider-http-3.621.0.tgz#5f944bf548f203d842cf71a5792f73c205544627" + integrity sha512-/jc2tEsdkT1QQAI5Dvoci50DbSxtJrevemwFsm0B73pwCcOQZ5ZwwSdVqGsPutzYzUVx3bcXg3LRL7jLACqRIg== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/fetch-http-handler" "^3.0.1" - "@smithy/node-http-handler" "^3.0.0" - "@smithy/property-provider" "^3.1.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" - "@smithy/util-stream" "^3.0.1" + "@aws-sdk/types" "3.609.0" + "@smithy/fetch-http-handler" "^3.2.4" + "@smithy/node-http-handler" "^3.1.4" + "@smithy/property-provider" "^3.1.3" + "@smithy/protocol-http" "^4.1.0" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" + "@smithy/util-stream" "^3.1.3" tslib "^2.6.2" "@aws-sdk/credential-provider-ini@3.568.0": @@ -512,21 +551,21 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@aws-sdk/credential-provider-ini@3.596.0": - version "3.596.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.596.0.tgz#2e5155b52590dbc768a2775e0b5266287a00d8ca" - integrity sha512-c7PLtd7GbnOVAc5sk3sVlHxLvEsM8RF96rsBGlRo4AVpil/lXLKyNv9VarS4w/ZZZoRbJRyZ+m92PjNcLvpTDQ== +"@aws-sdk/credential-provider-ini@3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.621.0.tgz#bda2365f88fee40e3ae067b08bf484106c339222" + integrity sha512-0EWVnSc+JQn5HLnF5Xv405M8n4zfdx9gyGdpnCmAmFqEDHA8LmBdxJdpUk1Ovp/I5oPANhjojxabIW5f1uU0RA== dependencies: - "@aws-sdk/credential-provider-env" "3.587.0" - "@aws-sdk/credential-provider-http" "3.596.0" - "@aws-sdk/credential-provider-process" "3.587.0" - "@aws-sdk/credential-provider-sso" "3.592.0" - "@aws-sdk/credential-provider-web-identity" "3.587.0" - "@aws-sdk/types" "3.577.0" - "@smithy/credential-provider-imds" "^3.1.0" - "@smithy/property-provider" "^3.1.0" - "@smithy/shared-ini-file-loader" "^3.1.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/credential-provider-env" "3.620.1" + "@aws-sdk/credential-provider-http" "3.621.0" + "@aws-sdk/credential-provider-process" "3.620.1" + "@aws-sdk/credential-provider-sso" "3.621.0" + "@aws-sdk/credential-provider-web-identity" "3.621.0" + "@aws-sdk/types" "3.609.0" + "@smithy/credential-provider-imds" "^3.2.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/shared-ini-file-loader" "^3.1.4" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@aws-sdk/credential-provider-node@3.569.0": @@ -547,22 +586,22 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@aws-sdk/credential-provider-node@3.596.0": - version "3.596.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-node/-/credential-provider-node-3.596.0.tgz#d70bce8de4f1849558215117d73f7433bfdcdc24" - integrity sha512-F4MLyXpQyie1AnJS9n7TIRL0aF7YH8tKMIJXDsM5OXpSZi2en+yR6SzsxvHf5dwS2Ga8LUdEJyiyS2NoebaJGA== +"@aws-sdk/credential-provider-node@3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-node/-/credential-provider-node-3.621.0.tgz#9cc5052760a9f9d70d70f12ddbdbf0d59bf13a47" + integrity sha512-4JqpccUgz5Snanpt2+53hbOBbJQrSFq7E1sAAbgY6BKVQUsW5qyXqnjvSF32kDeKa5JpBl3bBWLZl04IadcPHw== dependencies: - "@aws-sdk/credential-provider-env" "3.587.0" - "@aws-sdk/credential-provider-http" "3.596.0" - "@aws-sdk/credential-provider-ini" "3.596.0" - "@aws-sdk/credential-provider-process" "3.587.0" - "@aws-sdk/credential-provider-sso" "3.592.0" - "@aws-sdk/credential-provider-web-identity" "3.587.0" - "@aws-sdk/types" "3.577.0" - "@smithy/credential-provider-imds" "^3.1.0" - "@smithy/property-provider" "^3.1.0" - "@smithy/shared-ini-file-loader" "^3.1.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/credential-provider-env" "3.620.1" + "@aws-sdk/credential-provider-http" "3.621.0" + "@aws-sdk/credential-provider-ini" "3.621.0" + "@aws-sdk/credential-provider-process" "3.620.1" + "@aws-sdk/credential-provider-sso" "3.621.0" + "@aws-sdk/credential-provider-web-identity" "3.621.0" + "@aws-sdk/types" "3.609.0" + "@smithy/credential-provider-imds" "^3.2.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/shared-ini-file-loader" "^3.1.4" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@aws-sdk/credential-provider-process@3.568.0": @@ -576,15 +615,15 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@aws-sdk/credential-provider-process@3.587.0": - version "3.587.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-process/-/credential-provider-process-3.587.0.tgz#1e5cc562a68438a77f464adc0493b02e04dd3ea1" - integrity sha512-V4xT3iCqkF8uL6QC4gqBJg/2asd/damswP1h9HCfqTllmPWzImS+8WD3VjgTLw5b0KbTy+ZdUhKc0wDnyzkzxg== +"@aws-sdk/credential-provider-process@3.620.1": + version "3.620.1" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-process/-/credential-provider-process-3.620.1.tgz#10387cf85400420bb4bbda9cc56937dcc6d6d0ee" + integrity sha512-hWqFMidqLAkaV9G460+1at6qa9vySbjQKKc04p59OT7lZ5cO5VH5S4aI05e+m4j364MBROjjk2ugNvfNf/8ILg== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/property-provider" "^3.1.0" - "@smithy/shared-ini-file-loader" "^3.1.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/shared-ini-file-loader" "^3.1.4" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@aws-sdk/credential-provider-sso@3.568.0": @@ -600,17 +639,17 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@aws-sdk/credential-provider-sso@3.592.0": - version "3.592.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.592.0.tgz#340649b4f5b4fbcb816f248089979d7d38ce96d3" - integrity sha512-fYFzAdDHKHvhtufPPtrLdSv8lO6GuW3em6n3erM5uFdpGytNpjXvr3XGokIsuXcNkETAY/Xihg+G9ksNE8WJxQ== +"@aws-sdk/credential-provider-sso@3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.621.0.tgz#710f413708cb372f9f94e8eb9726cf263ffd83e3" + integrity sha512-Kza0jcFeA/GEL6xJlzR2KFf1PfZKMFnxfGzJzl5yN7EjoGdMijl34KaRyVnfRjnCWcsUpBWKNIDk9WZVMY9yiw== dependencies: - "@aws-sdk/client-sso" "3.592.0" - "@aws-sdk/token-providers" "3.587.0" - "@aws-sdk/types" "3.577.0" - "@smithy/property-provider" "^3.1.0" - "@smithy/shared-ini-file-loader" "^3.1.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/client-sso" "3.621.0" + "@aws-sdk/token-providers" "3.614.0" + "@aws-sdk/types" "3.609.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/shared-ini-file-loader" "^3.1.4" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@aws-sdk/credential-provider-web-identity@3.568.0": @@ -623,14 +662,14 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@aws-sdk/credential-provider-web-identity@3.587.0": - version "3.587.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.587.0.tgz#daa41e3cc9309594327056e431b8065145c5297a" - integrity sha512-XqIx/I2PG7kyuw3WjAP9wKlxy8IvFJwB8asOFT1xPFoVfZYKIogjG9oLP5YiRtfvDkWIztHmg5MlVv3HdJDGRw== +"@aws-sdk/credential-provider-web-identity@3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.621.0.tgz#b25878c0a05dad60cd5f91e7e5a31a145c2f14be" + integrity sha512-w7ASSyfNvcx7+bYGep3VBgC3K6vEdLmlpjT7nSIHxxQf+WSdvy+HynwJosrpZax0sK5q0D1Jpn/5q+r5lwwW6w== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/property-provider" "^3.1.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@aws-sdk/endpoint-cache@3.568.0": @@ -659,14 +698,14 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@aws-sdk/lib-dynamodb@^3.596.0": - version "3.596.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/lib-dynamodb/-/lib-dynamodb-3.596.0.tgz#bca9eca213129fc1027f9eb0b5e3301b4360af11" - integrity sha512-nTl1lsVRG1iQeY2dIyIWbPrvKepSpE/doL9ET3hAzjTClm81mpvYs3XIVtQsbcmjkgQ62GUrym6D1nk1LcIq+A== +"@aws-sdk/lib-dynamodb@^3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/lib-dynamodb/-/lib-dynamodb-3.621.0.tgz#f8c320af1b286f2827d3be97aaffc571fa4bbfeb" + integrity sha512-RJJwaR15BLSTtegf2kgJjlJofvxeR+0Jm0rnEbJmRZ/HZhjow1LawrMbCR0YxfcWKUMsDw9tp8BDkLlrH1+RJQ== dependencies: - "@aws-sdk/util-dynamodb" "3.596.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" + "@aws-sdk/util-dynamodb" "3.621.0" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@aws-sdk/middleware-endpoint-discovery@3.568.0": @@ -681,16 +720,16 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@aws-sdk/middleware-endpoint-discovery@3.587.0": - version "3.587.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-endpoint-discovery/-/middleware-endpoint-discovery-3.587.0.tgz#da69990f4810f85e8afe944eb3e4f695e7f9580f" - integrity sha512-/FCTOwO2/GtGx31Y0aO149aXw/LbyyYFJp82fQQCR0eff9RilJ5ViQCdCpcf9zf0ZIlvqGy9aXVutBQU83wlGg== +"@aws-sdk/middleware-endpoint-discovery@3.620.0": + version "3.620.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-endpoint-discovery/-/middleware-endpoint-discovery-3.620.0.tgz#45acd6cf2a77ceaf736f2758274c383838c8584a" + integrity sha512-T6kuydHBF4BPP5CVH53Fze7c2b9rqxWP88XrGtmNMXXdY4sXur1v/itGdS2l3gqRjxKo0LsmjmuQm9zL4vGneQ== dependencies: "@aws-sdk/endpoint-cache" "3.572.0" - "@aws-sdk/types" "3.577.0" - "@smithy/node-config-provider" "^3.1.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@aws-sdk/middleware-host-header@3.567.0": @@ -703,14 +742,14 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@aws-sdk/middleware-host-header@3.577.0": - version "3.577.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-host-header/-/middleware-host-header-3.577.0.tgz#a3fc626d409ec850296740478c64ef5806d8b878" - integrity sha512-9ca5MJz455CODIVXs0/sWmJm7t3QO4EUa1zf8pE8grLpzf0J94bz/skDWm37Pli13T3WaAQBHCTiH2gUVfCsWg== +"@aws-sdk/middleware-host-header@3.620.0": + version "3.620.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-host-header/-/middleware-host-header-3.620.0.tgz#b561d419a08a984ba364c193376b482ff5224d74" + integrity sha512-VMtPEZwqYrII/oUkffYsNWY9PZ9xpNJpMgmyU0rlDQ25O1c0Hk3fJmZRe6pEkAJ0omD7kLrqGl1DUjQVxpd/Rg== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@smithy/protocol-http" "^4.1.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@aws-sdk/middleware-logger@3.568.0": @@ -722,13 +761,13 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@aws-sdk/middleware-logger@3.577.0": - version "3.577.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-logger/-/middleware-logger-3.577.0.tgz#6da3b13ae284fb3930961f0fc8e20b1f6cf8be30" - integrity sha512-aPFGpGjTZcJYk+24bg7jT4XdIp42mFXSuPt49lw5KygefLyJM/sB0bKKqPYYivW0rcuZ9brQ58eZUNthrzYAvg== +"@aws-sdk/middleware-logger@3.609.0": + version "3.609.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-logger/-/middleware-logger-3.609.0.tgz#ed44d201f091b8bac908cbf14724c7a4d492553f" + integrity sha512-S62U2dy4jMDhDFDK5gZ4VxFdWzCtLzwbYyFZx2uvPYTECkepLUfzLic2BHg2Qvtu4QjX+oGE3P/7fwaGIsGNuQ== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@aws-sdk/middleware-recursion-detection@3.567.0": @@ -741,14 +780,14 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@aws-sdk/middleware-recursion-detection@3.577.0": - version "3.577.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.577.0.tgz#fff76abc6d4521636f9e654ce5bf2c4c79249417" - integrity sha512-pn3ZVEd2iobKJlR3H+bDilHjgRnNrQ6HMmK9ZzZw89Ckn3Dcbv48xOv4RJvu0aU8SDLl/SNCxppKjeLDTPGBNA== +"@aws-sdk/middleware-recursion-detection@3.620.0": + version "3.620.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.620.0.tgz#f8270dfff843fd756be971e5673f89c6a24c6513" + integrity sha512-nh91S7aGK3e/o1ck64sA/CyoFw+gAYj2BDOnoNa6ouyCrVJED96ZXWbhye/fz9SgmNUZR2g7GdVpiLpMKZoI5w== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@smithy/protocol-http" "^4.1.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@aws-sdk/middleware-user-agent@3.567.0": @@ -762,15 +801,15 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@aws-sdk/middleware-user-agent@3.587.0": - version "3.587.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.587.0.tgz#2a68900cfb29afbae2952d901de4fcb91850bd3d" - integrity sha512-SyDomN+IOrygLucziG7/nOHkjUXES5oH5T7p8AboO8oakMQJdnudNXiYWTicQWO52R51U6CR27rcMPTGeMedYA== +"@aws-sdk/middleware-user-agent@3.620.0": + version "3.620.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.620.0.tgz#1fe3104f04f576a942cf0469bfbd73c38eef3d9e" + integrity sha512-bvS6etn+KsuL32ubY5D3xNof1qkenpbJXf/ugGXbg0n98DvDFQ/F+SMLxHgbnER5dsKYchNnhmtI6/FC3HFu/A== dependencies: - "@aws-sdk/types" "3.577.0" - "@aws-sdk/util-endpoints" "3.587.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@aws-sdk/util-endpoints" "3.614.0" + "@smithy/protocol-http" "^4.1.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@aws-sdk/region-config-resolver@3.567.0": @@ -785,16 +824,16 @@ "@smithy/util-middleware" "^2.2.0" tslib "^2.6.2" -"@aws-sdk/region-config-resolver@3.587.0": - version "3.587.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/region-config-resolver/-/region-config-resolver-3.587.0.tgz#ad1c15494f44dfc4c7a7bce389f8b128dace923f" - integrity sha512-93I7IPZtulZQoRK+O20IJ4a1syWwYPzoO2gc3v+/GNZflZPV3QJXuVbIm0pxBsu0n/mzKGUKqSOLPIaN098HcQ== +"@aws-sdk/region-config-resolver@3.614.0": + version "3.614.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/region-config-resolver/-/region-config-resolver-3.614.0.tgz#9cebb31a5bcfea2a41891fff7f28d0164cde179a" + integrity sha512-vDCeMXvic/LU0KFIUjpC3RiSTIkkvESsEfbVHiHH0YINfl8HnEqR5rj+L8+phsCeVg2+LmYwYxd5NRz4PHxt5g== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/node-config-provider" "^3.1.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/types" "^3.3.0" "@smithy/util-config-provider" "^3.0.0" - "@smithy/util-middleware" "^3.0.0" + "@smithy/util-middleware" "^3.0.3" tslib "^2.6.2" "@aws-sdk/token-providers@3.568.0": @@ -808,15 +847,15 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@aws-sdk/token-providers@3.587.0": - version "3.587.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/token-providers/-/token-providers-3.587.0.tgz#f9fd2ddfc554c1370f8d0f467c76a4c8cb904ae6" - integrity sha512-ULqhbnLy1hmJNRcukANBWJmum3BbjXnurLPSFXoGdV0llXYlG55SzIla2VYqdveQEEjmsBuTZdFvXAtNpmS5Zg== +"@aws-sdk/token-providers@3.614.0": + version "3.614.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/token-providers/-/token-providers-3.614.0.tgz#88da04f6d4ce916b0b0f6e045676d04201fb47fd" + integrity sha512-okItqyY6L9IHdxqs+Z116y5/nda7rHxLvROxtAJdLavWTYDydxrZstImNgGWTeVdmc0xX2gJCI77UYUTQWnhRw== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/property-provider" "^3.1.0" - "@smithy/shared-ini-file-loader" "^3.1.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/shared-ini-file-loader" "^3.1.4" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@aws-sdk/types@3.567.0": @@ -827,12 +866,12 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@aws-sdk/types@3.577.0": - version "3.577.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/types/-/types-3.577.0.tgz#7700784d368ce386745f8c340d9d68cea4716f90" - integrity sha512-FT2JZES3wBKN/alfmhlo+3ZOq/XJ0C7QOZcDNrpKjB0kqYoKjhVKZ/Hx6ArR0czkKfHzBBEs6y40ebIHx2nSmA== +"@aws-sdk/types@3.609.0": + version "3.609.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/types/-/types-3.609.0.tgz#06b39d799c9f197a7b43670243e8e78a3bf7d6a5" + integrity sha512-+Tqnh9w0h2LcrUsdXyT1F8mNhXz+tVYBtP19LpeEGntmvHwa2XzvLUCWpoIAIVsHp5+HdB2X9Sn0KAtmbFXc2Q== dependencies: - "@smithy/types" "^3.0.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@aws-sdk/types@^3.222.0": @@ -850,10 +889,10 @@ dependencies: tslib "^2.6.2" -"@aws-sdk/util-dynamodb@3.596.0": - version "3.596.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-dynamodb/-/util-dynamodb-3.596.0.tgz#d3d4fce5d55c54e876ad8fdaf05a78d5f63edb9c" - integrity sha512-oLdB6rUo0gQmry97yvOZ3pJvgzNZLrTk29O2NvMRB5EtXStymfxC53ZeJShdI20jZgP/l8vRUtVf7tjWwjlcIQ== +"@aws-sdk/util-dynamodb@3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-dynamodb/-/util-dynamodb-3.621.0.tgz#a0d6501e5ab9aca695dc794963adf46a475ee5f3" + integrity sha512-/3qEmZ52FdP4+3AUsUX0/wKcCF3jvAG+avVKuSCUYIdKgSIYKSeYfH8F3/r6DE3czaFevBwHRiuKHEihCMApGw== dependencies: tslib "^2.6.2" @@ -867,14 +906,14 @@ "@smithy/util-endpoints" "^1.2.0" tslib "^2.6.2" -"@aws-sdk/util-endpoints@3.587.0": - version "3.587.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-endpoints/-/util-endpoints-3.587.0.tgz#781e0822a95dba15f7ac8f22a6f6d7f0c8819818" - integrity sha512-8I1HG6Em8wQWqKcRW6m358mqebRVNpL8XrrEoT4In7xqkKkmYtHRNVYP6lcmiQh5pZ/c/FXu8dSchuFIWyEtqQ== +"@aws-sdk/util-endpoints@3.614.0": + version "3.614.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-endpoints/-/util-endpoints-3.614.0.tgz#6564b0ffd7dc3728221e9f9821f5aab1cc58468e" + integrity sha512-wK2cdrXHH4oz4IomV/yrGkftU9A+ITB6nFL+rxxyO78is2ifHJpFdV4aqk4LSkXYPi6CXWNru/Dqc7yiKXgJPw== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/types" "^3.0.0" - "@smithy/util-endpoints" "^2.0.1" + "@aws-sdk/types" "3.609.0" + "@smithy/types" "^3.3.0" + "@smithy/util-endpoints" "^2.0.5" tslib "^2.6.2" "@aws-sdk/util-locate-window@^3.0.0": @@ -894,13 +933,13 @@ bowser "^2.11.0" tslib "^2.6.2" -"@aws-sdk/util-user-agent-browser@3.577.0": - version "3.577.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.577.0.tgz#d4d2cdb3a2b3d1c8b35f239ee9f7b2c87bee66ea" - integrity sha512-zEAzHgR6HWpZOH7xFgeJLc6/CzMcx4nxeQolZxVZoB5pPaJd3CjyRhZN0xXeZB0XIRCWmb4yJBgyiugXLNMkLA== +"@aws-sdk/util-user-agent-browser@3.609.0": + version "3.609.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.609.0.tgz#aa15421b2e32ae8bc589dac2bd6e8969832ce588" + integrity sha512-fojPU+mNahzQ0YHYBsx0ZIhmMA96H+ZIZ665ObU9tl+SGdbLneVZVikGve+NmHTQwHzwkFsZYYnVKAkreJLAtA== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@smithy/types" "^3.3.0" bowser "^2.11.0" tslib "^2.6.2" @@ -914,14 +953,14 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@aws-sdk/util-user-agent-node@3.587.0": - version "3.587.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.587.0.tgz#a6bf422f307a68e16a6c19ee5d731fcc32696fb9" - integrity sha512-Pnl+DUe/bvnbEEDHP3iVJrOtE3HbFJBPgsD6vJ+ml/+IYk1Eq49jEG+EHZdNTPz3SDG0kbp2+7u41MKYJHR/iQ== +"@aws-sdk/util-user-agent-node@3.614.0": + version "3.614.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.614.0.tgz#1e3f49a80f841a3f21647baed2adce01aac5beb5" + integrity sha512-15ElZT88peoHnq5TEoEtZwoXTXRxNrk60TZNdpl/TUBJ5oNJ9Dqb5Z4ryb8ofN6nm9aFf59GVAerFDz8iUoHBA== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/node-config-provider" "^3.1.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@aws-sdk/util-utf8-browser@^3.0.0": @@ -939,12 +978,12 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@smithy/abort-controller@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/abort-controller/-/abort-controller-3.0.0.tgz#5815f5d4618e14bf8d031bb98a99adabbb831168" - integrity sha512-p6GlFGBt9K4MYLu72YuJ523NVR4A8oHlC5M2JO6OmQqN8kAc/uh1JqLE+FizTokrSJGg0CSvC+BrsmGzKtsZKA== +"@smithy/abort-controller@^3.1.1": + version "3.1.1" + resolved "https://registry.yarnpkg.com/@smithy/abort-controller/-/abort-controller-3.1.1.tgz#291210611ff6afecfc198d0ca72d5771d8461d16" + integrity sha512-MBJBiidoe+0cTFhyxT8g+9g7CeVccLM0IOKKUMCNQ1CNMJ/eIfoo0RTfVrXOONEI1UCN1W+zkiHSbzUNE9dZtQ== dependencies: - "@smithy/types" "^3.0.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@smithy/config-resolver@^2.2.0": @@ -958,15 +997,15 @@ "@smithy/util-middleware" "^2.2.0" tslib "^2.6.2" -"@smithy/config-resolver@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/config-resolver/-/config-resolver-3.0.1.tgz#4e0917e5a02139ef978a1ed470543ab41dd3626b" - integrity sha512-hbkYJc20SBDz2qqLzttjI/EqXemtmWk0ooRznLsiXp3066KQRTvuKHa7U4jCZCJq6Dozqvy0R1/vNESC9inPJg== +"@smithy/config-resolver@^3.0.5": + version "3.0.5" + resolved "https://registry.yarnpkg.com/@smithy/config-resolver/-/config-resolver-3.0.5.tgz#727978bba7ace754c741c259486a19d3083431fd" + integrity sha512-SkW5LxfkSI1bUC74OtfBbdz+grQXYiPYolyu8VfpLIjEoN/sHVBlLeGXMQ1vX4ejkgfv6sxVbQJ32yF2cl1veA== dependencies: - "@smithy/node-config-provider" "^3.1.0" - "@smithy/types" "^3.0.0" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/types" "^3.3.0" "@smithy/util-config-provider" "^3.0.0" - "@smithy/util-middleware" "^3.0.0" + "@smithy/util-middleware" "^3.0.3" tslib "^2.6.2" "@smithy/core@^1.4.2": @@ -983,18 +1022,18 @@ "@smithy/util-middleware" "^2.2.0" tslib "^2.6.2" -"@smithy/core@^2.2.0": - version "2.2.0" - resolved "https://registry.yarnpkg.com/@smithy/core/-/core-2.2.0.tgz#f1b0837b7afa5507a9693c1e93da6ca9808022c1" - integrity sha512-ygLZSSKgt9bR8HAxR9mK+U5obvAJBr6zlQuhN5soYWx/amjDoQN4dTkydTypgKe6rIbUjTILyLU+W5XFwXr4kg== +"@smithy/core@^2.3.1": + version "2.3.1" + resolved "https://registry.yarnpkg.com/@smithy/core/-/core-2.3.1.tgz#99cb8eda23009fd7df736c82072dafcf4eb4ff5d" + integrity sha512-BC7VMXx/1BCmRPCVzzn4HGWAtsrb7/0758EtwOGFJQrlSwJBEjCcDLNZLFoL/68JexYa2s+KmgL/UfmXdG6v1w== dependencies: - "@smithy/middleware-endpoint" "^3.0.1" - "@smithy/middleware-retry" "^3.0.3" - "@smithy/middleware-serde" "^3.0.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" - "@smithy/util-middleware" "^3.0.0" + "@smithy/middleware-endpoint" "^3.1.0" + "@smithy/middleware-retry" "^3.0.13" + "@smithy/middleware-serde" "^3.0.3" + "@smithy/protocol-http" "^4.1.0" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" + "@smithy/util-middleware" "^3.0.3" tslib "^2.6.2" "@smithy/credential-provider-imds@^2.3.0": @@ -1008,15 +1047,15 @@ "@smithy/url-parser" "^2.2.0" tslib "^2.6.2" -"@smithy/credential-provider-imds@^3.1.0": - version "3.1.0" - resolved "https://registry.yarnpkg.com/@smithy/credential-provider-imds/-/credential-provider-imds-3.1.0.tgz#7e58b78aa8de13dd04e94829241cd1cbde59b6d3" - integrity sha512-q4A4d38v8pYYmseu/jTS3Z5I3zXlEOe5Obi+EJreVKgSVyWUHOd7/yaVCinC60QG4MRyCs98tcxBH1IMC0bu7Q== +"@smithy/credential-provider-imds@^3.2.0": + version "3.2.0" + resolved "https://registry.yarnpkg.com/@smithy/credential-provider-imds/-/credential-provider-imds-3.2.0.tgz#0e0e7ddaff1a8633cb927aee1056c0ab506b7ecf" + integrity sha512-0SCIzgd8LYZ9EJxUjLXBmEKSZR/P/w6l7Rz/pab9culE/RWuqelAKGJvn5qUOl8BgX8Yj5HWM50A5hiB/RzsgA== dependencies: - "@smithy/node-config-provider" "^3.1.0" - "@smithy/property-provider" "^3.1.0" - "@smithy/types" "^3.0.0" - "@smithy/url-parser" "^3.0.0" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/property-provider" "^3.1.3" + "@smithy/types" "^3.3.0" + "@smithy/url-parser" "^3.0.3" tslib "^2.6.2" "@smithy/fetch-http-handler@^2.5.0": @@ -1030,14 +1069,14 @@ "@smithy/util-base64" "^2.3.0" tslib "^2.6.2" -"@smithy/fetch-http-handler@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/fetch-http-handler/-/fetch-http-handler-3.0.1.tgz#dacfdf6e70d639fac4a0f57c42ce13f0ed14ff22" - integrity sha512-uaH74i5BDj+rBwoQaXioKpI0SHBJFtOVwzrCpxZxphOW0ki5jhj7dXvDMYM2IJem8TpdFvS2iC08sjOblfFGFg== +"@smithy/fetch-http-handler@^3.2.4": + version "3.2.4" + resolved "https://registry.yarnpkg.com/@smithy/fetch-http-handler/-/fetch-http-handler-3.2.4.tgz#c754de7e0ff2541b73ac9ba7cc955940114b3d62" + integrity sha512-kBprh5Gs5h7ug4nBWZi1FZthdqSM+T7zMmsZxx0IBvWUn7dK3diz2SHn7Bs4dQGFDk8plDv375gzenDoNwrXjg== dependencies: - "@smithy/protocol-http" "^4.0.0" - "@smithy/querystring-builder" "^3.0.0" - "@smithy/types" "^3.0.0" + "@smithy/protocol-http" "^4.1.0" + "@smithy/querystring-builder" "^3.0.3" + "@smithy/types" "^3.3.0" "@smithy/util-base64" "^3.0.0" tslib "^2.6.2" @@ -1051,12 +1090,12 @@ "@smithy/util-utf8" "^2.3.0" tslib "^2.6.2" -"@smithy/hash-node@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/hash-node/-/hash-node-3.0.0.tgz#f44b5fff193e241c1cdcc957b296b60f186f0e59" - integrity sha512-84qXstNemP3XS5jcof0el6+bDfjzuvhJPQTEfro3lgtbCtKgzPm3MgiS6ehXVPjeQ5+JS0HqmTz8f/RYfzHVxw== +"@smithy/hash-node@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/hash-node/-/hash-node-3.0.3.tgz#82c5cb7b0f1a29ee7319081853d2d158c07dff24" + integrity sha512-2ctBXpPMG+B3BtWSGNnKELJ7SH9e4TNefJS0cd2eSkOOROeBnnVBnAy9LtJ8tY4vUEoe55N4CNPxzbWvR39iBw== dependencies: - "@smithy/types" "^3.0.0" + "@smithy/types" "^3.3.0" "@smithy/util-buffer-from" "^3.0.0" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" @@ -1069,12 +1108,12 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@smithy/invalid-dependency@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/invalid-dependency/-/invalid-dependency-3.0.0.tgz#21cb6b5203ee15321bfcc751f21f7a19536d4ae8" - integrity sha512-F6wBBaEFgJzj0s4KUlliIGPmqXemwP6EavgvDqYwCH40O5Xr2iMHvS8todmGVZtuJCorBkXsYLyTu4PuizVq5g== +"@smithy/invalid-dependency@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/invalid-dependency/-/invalid-dependency-3.0.3.tgz#8d9fd70e3a94b565a4eba4ffbdc95238e1930528" + integrity sha512-ID1eL/zpDULmHJbflb864k72/SNOZCADRc9i7Exq3RUNJw6raWUSlFEQ+3PX3EYs++bTxZB2dE9mEHTQLv61tw== dependencies: - "@smithy/types" "^3.0.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@smithy/is-array-buffer@^2.2.0": @@ -1100,13 +1139,13 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@smithy/middleware-content-length@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/middleware-content-length/-/middleware-content-length-3.0.0.tgz#084b3d22248967885d496eb0b105d9090e8ababd" - integrity sha512-3C4s4d/iGobgCtk2tnWW6+zSTOBg1PRAm2vtWZLdriwTroFbbWNSr3lcyzHdrQHnEXYCC5K52EbpfodaIUY8sg== +"@smithy/middleware-content-length@^3.0.5": + version "3.0.5" + resolved "https://registry.yarnpkg.com/@smithy/middleware-content-length/-/middleware-content-length-3.0.5.tgz#1680aa4fb2a1c0505756103c9a5c2916307d9035" + integrity sha512-ILEzC2eyxx6ncej3zZSwMpB5RJ0zuqH7eMptxC4KN3f+v9bqT8ohssKbhNR78k/2tWW+KS5Spw+tbPF4Ejyqvw== dependencies: - "@smithy/protocol-http" "^4.0.0" - "@smithy/types" "^3.0.0" + "@smithy/protocol-http" "^4.1.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@smithy/middleware-endpoint@^2.5.1": @@ -1122,17 +1161,17 @@ "@smithy/util-middleware" "^2.2.0" tslib "^2.6.2" -"@smithy/middleware-endpoint@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/middleware-endpoint/-/middleware-endpoint-3.0.1.tgz#49e8defb8e892e70417bd05f1faaf207070f32c7" - integrity sha512-lQ/UOdGD4KM5kLZiAl0q8Qy3dPbynvAXKAdXnYlrA1OpaUwr+neSsVokDZpY6ZVb5Yx8jnus29uv6XWpM9P4SQ== +"@smithy/middleware-endpoint@^3.1.0": + version "3.1.0" + resolved "https://registry.yarnpkg.com/@smithy/middleware-endpoint/-/middleware-endpoint-3.1.0.tgz#9b8a496d87a68ec43f3f1a0139868d6765a88119" + integrity sha512-5y5aiKCEwg9TDPB4yFE7H6tYvGFf1OJHNczeY10/EFF8Ir8jZbNntQJxMWNfeQjC1mxPsaQ6mR9cvQbf+0YeMw== dependencies: - "@smithy/middleware-serde" "^3.0.0" - "@smithy/node-config-provider" "^3.1.0" - "@smithy/shared-ini-file-loader" "^3.1.0" - "@smithy/types" "^3.0.0" - "@smithy/url-parser" "^3.0.0" - "@smithy/util-middleware" "^3.0.0" + "@smithy/middleware-serde" "^3.0.3" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/shared-ini-file-loader" "^3.1.4" + "@smithy/types" "^3.3.0" + "@smithy/url-parser" "^3.0.3" + "@smithy/util-middleware" "^3.0.3" tslib "^2.6.2" "@smithy/middleware-retry@^2.3.1": @@ -1150,18 +1189,18 @@ tslib "^2.6.2" uuid "^9.0.1" -"@smithy/middleware-retry@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/middleware-retry/-/middleware-retry-3.0.3.tgz#8e9af1c9db4bc8904d73126225211b42b562f961" - integrity sha512-Wve1qzJb83VEU/6q+/I0cQdAkDnuzELC6IvIBwDzUEiGpKqXgX1v10FUuZGbRS6Ov/P+HHthcAoHOJZQvZNAkA== +"@smithy/middleware-retry@^3.0.13": + version "3.0.13" + resolved "https://registry.yarnpkg.com/@smithy/middleware-retry/-/middleware-retry-3.0.13.tgz#3bdd662aff01f360fcbaa166500bbc575dc9d1d0" + integrity sha512-zvCLfaRYCaUmjbF2yxShGZdolSHft7NNCTA28HVN9hKcEbOH+g5irr1X9s+in8EpambclGnevZY4A3lYpvDCFw== dependencies: - "@smithy/node-config-provider" "^3.1.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/service-error-classification" "^3.0.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" - "@smithy/util-middleware" "^3.0.0" - "@smithy/util-retry" "^3.0.0" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/service-error-classification" "^3.0.3" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" + "@smithy/util-middleware" "^3.0.3" + "@smithy/util-retry" "^3.0.3" tslib "^2.6.2" uuid "^9.0.1" @@ -1173,12 +1212,12 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@smithy/middleware-serde@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/middleware-serde/-/middleware-serde-3.0.0.tgz#786da6a6bc0e5e51d669dac834c19965245dd302" - integrity sha512-I1vKG1foI+oPgG9r7IMY1S+xBnmAn1ISqployvqkwHoSb8VPsngHDTOgYGYBonuOKndaWRUGJZrKYYLB+Ane6w== +"@smithy/middleware-serde@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/middleware-serde/-/middleware-serde-3.0.3.tgz#74d974460f74d99f38c861e6862984543a880a66" + integrity sha512-puUbyJQBcg9eSErFXjKNiGILJGtiqmuuNKEYNYfUD57fUl4i9+mfmThtQhvFXU0hCVG0iEJhvQUipUf+/SsFdA== dependencies: - "@smithy/types" "^3.0.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@smithy/middleware-stack@^2.2.0": @@ -1189,12 +1228,12 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@smithy/middleware-stack@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/middleware-stack/-/middleware-stack-3.0.0.tgz#00f112bae7af5fc3bd37d4fab95ebce0f17a7774" - integrity sha512-+H0jmyfAyHRFXm6wunskuNAqtj7yfmwFB6Fp37enytp2q047/Od9xetEaUbluyImOlGnGpaVGaVfjwawSr+i6Q== +"@smithy/middleware-stack@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/middleware-stack/-/middleware-stack-3.0.3.tgz#91845c7e61e6f137fa912b623b6def719a4f6ce7" + integrity sha512-r4klY9nFudB0r9UdSMaGSyjyQK5adUyPnQN/ZM6M75phTxOdnc/AhpvGD1fQUvgmqjQEBGCwpnPbDm8pH5PapA== dependencies: - "@smithy/types" "^3.0.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@smithy/node-config-provider@^2.3.0": @@ -1207,14 +1246,14 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@smithy/node-config-provider@^3.1.0": - version "3.1.0" - resolved "https://registry.yarnpkg.com/@smithy/node-config-provider/-/node-config-provider-3.1.0.tgz#e962987c4e2e2b8b50397de5f4745eb21ee7bdbb" - integrity sha512-ngfB8QItUfTFTfHMvKuc2g1W60V1urIgZHqD1JNFZC2tTWXahqf2XvKXqcBS7yZqR7GqkQQZy11y/lNOUWzq7Q== +"@smithy/node-config-provider@^3.1.4": + version "3.1.4" + resolved "https://registry.yarnpkg.com/@smithy/node-config-provider/-/node-config-provider-3.1.4.tgz#05647bed666aa8036a1ad72323c1942e5d421be1" + integrity sha512-YvnElQy8HR4vDcAjoy7Xkx9YT8xZP4cBXcbJSgm/kxmiQu08DwUwj8rkGnyoJTpfl/3xYHH+d8zE+eHqoDCSdQ== dependencies: - "@smithy/property-provider" "^3.1.0" - "@smithy/shared-ini-file-loader" "^3.1.0" - "@smithy/types" "^3.0.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/shared-ini-file-loader" "^3.1.4" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@smithy/node-http-handler@^2.5.0": @@ -1228,15 +1267,15 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@smithy/node-http-handler@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/node-http-handler/-/node-http-handler-3.0.0.tgz#e771ea95d03e259f04b7b37e8aece8a4fffc8cdc" - integrity sha512-3trD4r7NOMygwLbUJo4eodyQuypAWr7uvPnebNJ9a70dQhVn+US8j/lCnvoJS6BXfZeF7PkkkI0DemVJw+n+eQ== +"@smithy/node-http-handler@^3.1.4": + version "3.1.4" + resolved "https://registry.yarnpkg.com/@smithy/node-http-handler/-/node-http-handler-3.1.4.tgz#be4195e45639e690d522cd5f11513ea822ff9d5f" + integrity sha512-+UmxgixgOr/yLsUxcEKGH0fMNVteJFGkmRltYFHnBMlogyFdpzn2CwqWmxOrfJELhV34v0WSlaqG1UtE1uXlJg== dependencies: - "@smithy/abort-controller" "^3.0.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/querystring-builder" "^3.0.0" - "@smithy/types" "^3.0.0" + "@smithy/abort-controller" "^3.1.1" + "@smithy/protocol-http" "^4.1.0" + "@smithy/querystring-builder" "^3.0.3" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@smithy/property-provider@^2.2.0": @@ -1247,12 +1286,12 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@smithy/property-provider@^3.1.0": - version "3.1.0" - resolved "https://registry.yarnpkg.com/@smithy/property-provider/-/property-provider-3.1.0.tgz#b78d4964a1016b90331cc0c770b472160361fde7" - integrity sha512-Tj3+oVhqdZgemjCiWjFlADfhvLF4C/uKDuKo7/tlEsRQ9+3emCreR2xndj970QSRSsiCEU8hZW3/8JQu+n5w4Q== +"@smithy/property-provider@^3.1.3": + version "3.1.3" + resolved "https://registry.yarnpkg.com/@smithy/property-provider/-/property-provider-3.1.3.tgz#afd57ea82a3f6c79fbda95e3cb85c0ee0a79f39a" + integrity sha512-zahyOVR9Q4PEoguJ/NrFP4O7SMAfYO1HLhB18M+q+Z4KFd4V2obiMnlVoUFzFLSPeVt1POyNWneHHrZaTMoc/g== dependencies: - "@smithy/types" "^3.0.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@smithy/protocol-http@^3.3.0": @@ -1263,12 +1302,12 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@smithy/protocol-http@^4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@smithy/protocol-http/-/protocol-http-4.0.0.tgz#04df3b5674b540323f678e7c4113e8abd8b26432" - integrity sha512-qOQZOEI2XLWRWBO9AgIYuHuqjZ2csyr8/IlgFDHDNuIgLAMRx2Bl8ck5U5D6Vh9DPdoaVpuzwWMa0xcdL4O/AQ== +"@smithy/protocol-http@^4.1.0": + version "4.1.0" + resolved "https://registry.yarnpkg.com/@smithy/protocol-http/-/protocol-http-4.1.0.tgz#23519d8f45bf4f33960ea5415847bc2b620a010b" + integrity sha512-dPVoHYQ2wcHooGXg3LQisa1hH0e4y0pAddPMeeUPipI1tEOqL6A4N0/G7abeq+K8wrwSgjk4C0wnD1XZpJm5aA== dependencies: - "@smithy/types" "^3.0.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@smithy/querystring-builder@^2.2.0": @@ -1280,12 +1319,12 @@ "@smithy/util-uri-escape" "^2.2.0" tslib "^2.6.2" -"@smithy/querystring-builder@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/querystring-builder/-/querystring-builder-3.0.0.tgz#48a9aa7b700e8409368c21bc0adf7564e001daea" - integrity sha512-bW8Fi0NzyfkE0TmQphDXr1AmBDbK01cA4C1Z7ggwMAU5RDz5AAv/KmoRwzQAS0kxXNf/D2ALTEgwK0U2c4LtRg== +"@smithy/querystring-builder@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/querystring-builder/-/querystring-builder-3.0.3.tgz#6b0e566f885bb84938d077c69e8f8555f686af13" + integrity sha512-vyWckeUeesFKzCDaRwWLUA1Xym9McaA6XpFfAK5qI9DKJ4M33ooQGqvM4J+LalH4u/Dq9nFiC8U6Qn1qi0+9zw== dependencies: - "@smithy/types" "^3.0.0" + "@smithy/types" "^3.3.0" "@smithy/util-uri-escape" "^3.0.0" tslib "^2.6.2" @@ -1297,12 +1336,12 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@smithy/querystring-parser@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/querystring-parser/-/querystring-parser-3.0.0.tgz#fa1ed0cee408cd4d622070fa874bc50ac1a379b7" - integrity sha512-UzHwthk0UEccV4dHzPySnBy34AWw3V9lIqUTxmozQ+wPDAO9csCWMfOLe7V9A2agNYy7xE+Pb0S6K/J23JSzfQ== +"@smithy/querystring-parser@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/querystring-parser/-/querystring-parser-3.0.3.tgz#272a6b83f88dfcbbec8283d72a6bde850cc00091" + integrity sha512-zahM1lQv2YjmznnfQsWbYojFe55l0SLG/988brlLv1i8z3dubloLF+75ATRsqPBboUXsW6I9CPGE5rQgLfY0vQ== dependencies: - "@smithy/types" "^3.0.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@smithy/service-error-classification@^2.1.5": @@ -1312,12 +1351,12 @@ dependencies: "@smithy/types" "^2.12.0" -"@smithy/service-error-classification@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/service-error-classification/-/service-error-classification-3.0.0.tgz#06a45cb91b15b8b0d5f3b1df2b3743d2ca42f5c4" - integrity sha512-3BsBtOUt2Gsnc3X23ew+r2M71WwtpHfEDGhHYHSDg6q1t8FrWh15jT25DLajFV1H+PpxAJ6gqe9yYeRUsmSdFA== +"@smithy/service-error-classification@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/service-error-classification/-/service-error-classification-3.0.3.tgz#73484255060a094aa9372f6cd972dcaf97e3ce80" + integrity sha512-Jn39sSl8cim/VlkLsUhRFq/dKDnRUFlfRkvhOJaUbLBXUsLRLNf9WaxDv/z9BjuQ3A6k/qE8af1lsqcwm7+DaQ== dependencies: - "@smithy/types" "^3.0.0" + "@smithy/types" "^3.3.0" "@smithy/shared-ini-file-loader@^2.4.0": version "2.4.0" @@ -1327,12 +1366,12 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@smithy/shared-ini-file-loader@^3.1.0": - version "3.1.0" - resolved "https://registry.yarnpkg.com/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.0.tgz#a4cb9304c3be1c232ec661132ca88d177ac7a5b1" - integrity sha512-dAM7wSX0NR3qTNyGVN/nwwpEDzfV9T/3AN2eABExWmda5VqZKSsjlINqomO5hjQWGv+IIkoXfs3u2vGSNz8+Rg== +"@smithy/shared-ini-file-loader@^3.1.4": + version "3.1.4" + resolved "https://registry.yarnpkg.com/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.4.tgz#7dceaf5a5307a2ee347ace8aba17312a1a3ede15" + integrity sha512-qMxS4hBGB8FY2GQqshcRUy1K6k8aBWP5vwm8qKkCT3A9K2dawUwOIJfqh9Yste/Bl0J2lzosVyrXDj68kLcHXQ== dependencies: - "@smithy/types" "^3.0.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@smithy/signature-v4@^2.3.0": @@ -1348,15 +1387,16 @@ "@smithy/util-utf8" "^2.3.0" tslib "^2.6.2" -"@smithy/signature-v4@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/signature-v4/-/signature-v4-3.0.0.tgz#f536d0abebfeeca8e9aab846a4042658ca07d3b7" - integrity sha512-kXFOkNX+BQHe2qnLxpMEaCRGap9J6tUGLzc3A9jdn+nD4JdMwCKTJ+zFwQ20GkY+mAXGatyTw3HcoUlR39HwmA== +"@smithy/signature-v4@^4.1.0": + version "4.1.0" + resolved "https://registry.yarnpkg.com/@smithy/signature-v4/-/signature-v4-4.1.0.tgz#251ff43dc1f4ad66776122732fea9e56efc56443" + integrity sha512-aRryp2XNZeRcOtuJoxjydO6QTaVhxx/vjaR+gx7ZjaFgrgPRyZ3HCTbfwqYj6ZWEBHkCSUfcaymKPURaByukag== dependencies: "@smithy/is-array-buffer" "^3.0.0" - "@smithy/types" "^3.0.0" + "@smithy/protocol-http" "^4.1.0" + "@smithy/types" "^3.3.0" "@smithy/util-hex-encoding" "^3.0.0" - "@smithy/util-middleware" "^3.0.0" + "@smithy/util-middleware" "^3.0.3" "@smithy/util-uri-escape" "^3.0.0" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" @@ -1373,16 +1413,16 @@ "@smithy/util-stream" "^2.2.0" tslib "^2.6.2" -"@smithy/smithy-client@^3.1.1": - version "3.1.1" - resolved "https://registry.yarnpkg.com/@smithy/smithy-client/-/smithy-client-3.1.1.tgz#9aa770edd9b6277dc4124c924c617a436cdb670e" - integrity sha512-tj4Ku7MpzZR8cmVuPcSbrLFVxmptWktmJMwST/uIEq4sarabEdF8CbmQdYB7uJ/X51Qq2EYwnRsoS7hdR4B7rA== +"@smithy/smithy-client@^3.1.11": + version "3.1.11" + resolved "https://registry.yarnpkg.com/@smithy/smithy-client/-/smithy-client-3.1.11.tgz#f12a7a0acaa7db3ead488ddf12ef4681daec11a7" + integrity sha512-l0BpyYkciNyMaS+PnFFz4aO5sBcXvGLoJd7mX9xrMBIm2nIQBVvYgp2ZpPDMzwjKCavsXu06iuCm0F6ZJZc6yQ== dependencies: - "@smithy/middleware-endpoint" "^3.0.1" - "@smithy/middleware-stack" "^3.0.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/types" "^3.0.0" - "@smithy/util-stream" "^3.0.1" + "@smithy/middleware-endpoint" "^3.1.0" + "@smithy/middleware-stack" "^3.0.3" + "@smithy/protocol-http" "^4.1.0" + "@smithy/types" "^3.3.0" + "@smithy/util-stream" "^3.1.3" tslib "^2.6.2" "@smithy/types@^2.12.0": @@ -1399,10 +1439,10 @@ dependencies: tslib "^2.5.0" -"@smithy/types@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/types/-/types-3.0.0.tgz#00231052945159c64ffd8b91e8909d8d3006cb7e" - integrity sha512-VvWuQk2RKFuOr98gFhjca7fkBS+xLLURT8bUjk5XQoV0ZLm7WPwWPPY3/AwzTLuUBDeoKDCthfe1AsTUWaSEhw== +"@smithy/types@^3.3.0": + version "3.3.0" + resolved "https://registry.yarnpkg.com/@smithy/types/-/types-3.3.0.tgz#fae037c733d09bc758946a01a3de0ef6e210b16b" + integrity sha512-IxvBBCTFDHbVoK7zIxqA1ZOdc4QfM5HM7rGleCuHi7L1wnKv5Pn69xXJQ9hgxH60ZVygH9/JG0jRgtUncE3QUA== dependencies: tslib "^2.6.2" @@ -1415,13 +1455,13 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@smithy/url-parser@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/url-parser/-/url-parser-3.0.0.tgz#5fdc77cd22051c1aac6531be0315bfcba0fa705d" - integrity sha512-2XLazFgUu+YOGHtWihB3FSLAfCUajVfNBXGGYjOaVKjLAuAxx3pSBY3hBgLzIgB17haf59gOG3imKqTy8mcrjw== +"@smithy/url-parser@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/url-parser/-/url-parser-3.0.3.tgz#e8a060d9810b24b1870385fc2b02485b8a6c5955" + integrity sha512-pw3VtZtX2rg+s6HMs6/+u9+hu6oY6U7IohGhVNnjbgKy86wcIsSZwgHrFR+t67Uyxvp4Xz3p3kGXXIpTNisq8A== dependencies: - "@smithy/querystring-parser" "^3.0.0" - "@smithy/types" "^3.0.0" + "@smithy/querystring-parser" "^3.0.3" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@smithy/util-base64@^2.3.0": @@ -1511,14 +1551,14 @@ bowser "^2.11.0" tslib "^2.6.2" -"@smithy/util-defaults-mode-browser@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.3.tgz#6fff11a6c407ca1d5a1dc009768bd09271b199c2" - integrity sha512-3DFON2bvXJAukJe+qFgPV/rorG7ZD3m4gjCXHD1V5z/tgKQp5MCTCLntrd686tX6tj8Uli3lefWXJudNg5WmCA== +"@smithy/util-defaults-mode-browser@^3.0.13": + version "3.0.13" + resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.13.tgz#f574bbb89d60f5dcc443f106087d317b370634d0" + integrity sha512-ZIRSUsnnMRStOP6OKtW+gCSiVFkwnfQF2xtf32QKAbHR6ACjhbAybDvry+3L5qQYdh3H6+7yD/AiUE45n8mTTw== dependencies: - "@smithy/property-provider" "^3.1.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" bowser "^2.11.0" tslib "^2.6.2" @@ -1535,17 +1575,17 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@smithy/util-defaults-mode-node@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.3.tgz#0b52ba9cb1138ee9076feba9a733462b2e2e6093" - integrity sha512-D0b8GJXecT00baoSQ3Iieu3k3mZ7GY8w1zmg8pdogYrGvWJeLcIclqk2gbkG4K0DaBGWrO6v6r20iwIFfDYrmA== +"@smithy/util-defaults-mode-node@^3.0.13": + version "3.0.13" + resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.13.tgz#cdd3a08bb5af4d17c2b0a951af9936ce7f3bae93" + integrity sha512-voUa8TFJGfD+U12tlNNLCDlXibt9vRdNzRX45Onk/WxZe7TS+hTOZouEZRa7oARGicdgeXvt1A0W45qLGYdy+g== dependencies: - "@smithy/config-resolver" "^3.0.1" - "@smithy/credential-provider-imds" "^3.1.0" - "@smithy/node-config-provider" "^3.1.0" - "@smithy/property-provider" "^3.1.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" + "@smithy/config-resolver" "^3.0.5" + "@smithy/credential-provider-imds" "^3.2.0" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/property-provider" "^3.1.3" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@smithy/util-endpoints@^1.2.0": @@ -1557,13 +1597,13 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@smithy/util-endpoints@^2.0.1": - version "2.0.1" - resolved "https://registry.yarnpkg.com/@smithy/util-endpoints/-/util-endpoints-2.0.1.tgz#4ea8069bfbf3ebbcbe106b5156ff59a7a627b7dd" - integrity sha512-ZRT0VCOnKlVohfoABMc8lWeQo/JEFuPWctfNRXgTHbyOVssMOLYFUNWukxxiHRGVAhV+n3c0kPW+zUqckjVPEA== +"@smithy/util-endpoints@^2.0.5": + version "2.0.5" + resolved "https://registry.yarnpkg.com/@smithy/util-endpoints/-/util-endpoints-2.0.5.tgz#e3a7a4d1c41250bfd2b2d890d591273a7d8934be" + integrity sha512-ReQP0BWihIE68OAblC/WQmDD40Gx+QY1Ez8mTdFMXpmjfxSyz2fVQu3A4zXRfQU9sZXtewk3GmhfOHswvX+eNg== dependencies: - "@smithy/node-config-provider" "^3.1.0" - "@smithy/types" "^3.0.0" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@smithy/util-hex-encoding@^2.2.0": @@ -1588,12 +1628,12 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@smithy/util-middleware@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/util-middleware/-/util-middleware-3.0.0.tgz#64d775628b99a495ca83ce982f5c83aa45f1e894" - integrity sha512-q5ITdOnV2pXHSVDnKWrwgSNTDBAMHLptFE07ua/5Ty5WJ11bvr0vk2a7agu7qRhrCFRQlno5u3CneU5EELK+DQ== +"@smithy/util-middleware@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/util-middleware/-/util-middleware-3.0.3.tgz#07bf9602682f5a6c55bc2f0384303f85fc68c87e" + integrity sha512-l+StyYYK/eO3DlVPbU+4Bi06Jjal+PFLSMmlWM1BEwyLxZ3aKkf1ROnoIakfaA7mC6uw3ny7JBkau4Yc+5zfWw== dependencies: - "@smithy/types" "^3.0.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@smithy/util-retry@^2.2.0": @@ -1605,13 +1645,13 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@smithy/util-retry@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/util-retry/-/util-retry-3.0.0.tgz#8a0c47496aab74e1dfde4905d462ad636a8824bb" - integrity sha512-nK99bvJiziGv/UOKJlDvFF45F00WgPLKVIGUfAK+mDhzVN2hb/S33uW2Tlhg5PVBoqY7tDVqL0zmu4OxAHgo9g== +"@smithy/util-retry@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/util-retry/-/util-retry-3.0.3.tgz#9b2ac0dbb1c81f69812a8affa4d772bebfc0e049" + integrity sha512-AFw+hjpbtVApzpNDhbjNG5NA3kyoMs7vx0gsgmlJF4s+yz1Zlepde7J58zpIRIsdjc+emhpAITxA88qLkPF26w== dependencies: - "@smithy/service-error-classification" "^3.0.0" - "@smithy/types" "^3.0.0" + "@smithy/service-error-classification" "^3.0.3" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@smithy/util-stream@^2.2.0": @@ -1628,14 +1668,14 @@ "@smithy/util-utf8" "^2.3.0" tslib "^2.6.2" -"@smithy/util-stream@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/util-stream/-/util-stream-3.0.1.tgz#3cf527bcd3fec82c231c38d47dd75f3364747edb" - integrity sha512-7F7VNNhAsfMRA8I986YdOY5fE0/T1/ZjFF6OLsqkvQVNP3vZ/szYDfGCyphb7ioA09r32K/0qbSFfNFU68aSzA== +"@smithy/util-stream@^3.1.3": + version "3.1.3" + resolved "https://registry.yarnpkg.com/@smithy/util-stream/-/util-stream-3.1.3.tgz#699ee2397cc1d474e46d2034039d5263812dca64" + integrity sha512-FIv/bRhIlAxC0U7xM1BCnF2aDRPq0UaelqBHkM2lsCp26mcBbgI0tCVTv+jGdsQLUmAMybua/bjDsSu8RQHbmw== dependencies: - "@smithy/fetch-http-handler" "^3.0.1" - "@smithy/node-http-handler" "^3.0.0" - "@smithy/types" "^3.0.0" + "@smithy/fetch-http-handler" "^3.2.4" + "@smithy/node-http-handler" "^3.1.4" + "@smithy/types" "^3.3.0" "@smithy/util-base64" "^3.0.0" "@smithy/util-buffer-from" "^3.0.0" "@smithy/util-hex-encoding" "^3.0.0" @@ -1656,7 +1696,7 @@ dependencies: tslib "^2.6.2" -"@smithy/util-utf8@^2.3.0": +"@smithy/util-utf8@^2.0.0", "@smithy/util-utf8@^2.3.0": version "2.3.0" resolved "https://registry.yarnpkg.com/@smithy/util-utf8/-/util-utf8-2.3.0.tgz#dd96d7640363259924a214313c3cf16e7dd329c5" integrity sha512-R8Rdn8Hy72KKcebgLiv8jQcQkXoLMOGGv5uI1/k0l+snqkOzQ1R0ChUBCxWMlBsFMekWjq0wRudIweFs7sKT5A== @@ -1681,13 +1721,13 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@smithy/util-waiter@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/util-waiter/-/util-waiter-3.0.0.tgz#26bcc5bbbf1de9360a7aeb3b3919926fc6afa2bc" - integrity sha512-+fEXJxGDLCoqRKVSmo0auGxaqbiCo+8oph+4auefYjaNxjOLKSY2MxVQfRzo65PaZv4fr+5lWg+au7vSuJJ/zw== +"@smithy/util-waiter@^3.1.2": + version "3.1.2" + resolved "https://registry.yarnpkg.com/@smithy/util-waiter/-/util-waiter-3.1.2.tgz#2d40c3312f3537feee763459a19acafab4c75cf3" + integrity sha512-4pP0EV3iTsexDx+8PPGAKCQpd/6hsQBaQhqWzU4hqKPHN5epPsxKbvUTIiYIHTxaKt6/kEaqPBpu/ufvfbrRzw== dependencies: - "@smithy/abort-controller" "^3.0.0" - "@smithy/types" "^3.0.0" + "@smithy/abort-controller" "^3.1.1" + "@smithy/types" "^3.3.0" tslib "^2.6.2" ansi-colors@4.1.1: @@ -1882,6 +1922,13 @@ fast-xml-parser@4.2.5: dependencies: strnum "^1.0.5" +fast-xml-parser@4.4.1: + version "4.4.1" + resolved "https://registry.yarnpkg.com/fast-xml-parser/-/fast-xml-parser-4.4.1.tgz#86dbf3f18edf8739326447bcaac31b4ae7f6514f" + integrity sha512-xkjOecfnKGkSsOwtZ5Pz7Us/T6mrbPQrq0nh+aCO5V9nk5NLWmasAHumTKjiPJPWANe+kAZ84Jc8ooJkzZ88Sw== + dependencies: + strnum "^1.0.5" + fill-range@^7.0.1: version "7.0.1" resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" diff --git a/services/ui-auth/package.json b/services/ui-auth/package.json index 6435a3920..38f0cd96a 100644 --- a/services/ui-auth/package.json +++ b/services/ui-auth/package.json @@ -10,6 +10,6 @@ "license": "CC0-1.0", "devDependencies": {}, "dependencies": { - "@aws-sdk/client-cognito-identity-provider": "^3.596.0" + "@aws-sdk/client-cognito-identity-provider": "^3.621.0" } } diff --git a/services/ui-auth/serverless.yml b/services/ui-auth/serverless.yml index 068112c66..b8b50f50b 100644 --- a/services/ui-auth/serverless.yml +++ b/services/ui-auth/serverless.yml @@ -29,6 +29,7 @@ plugins: - serverless-bundle - serverless-iam-helper - serverless-s3-bucket-helper + - "@enterprise-cmcs/serverless-waf-plugin" s3BucketHelper: loggingConfiguration: @@ -39,10 +40,14 @@ custom: project: "carts" stage: ${opt:stage, self:provider.stage} region: ${opt:region, self:provider.region} + wafPlugin: + name: ${self:service}-${self:custom.stage}-webacl-waf + wafExcludeRules: + awsCommon: + - "SizeRestrictions_BODY" serverlessTerminationProtection: stages: - main - - master - val - production sesSourceEmailAddress: ${ssm:/configuration/${self:custom.stage}/sesSourceEmailAddress, ssm:/configuration/default/sesSourceEmailAddress, ""} @@ -116,6 +121,18 @@ resources: StringAttributeConstraints: MinLength: 0 MaxLength: 256 + UserPoolAddOns: + AdvancedSecurityMode: ENFORCED + UserPoolTags: + Name: ${self:custom.stage}-user-pool + + # Associate the WAF Web ACL with the Cognito User Pool + CognitoUserPoolWAFAssociation: + Type: 'AWS::WAFv2::WebACLAssociation' + Properties: + ResourceArn: !GetAtt CognitoUserPool.Arn + WebACLArn: !GetAtt WafPluginAcl.Arn + CognitoUserPoolClient: Type: AWS::Cognito::UserPoolClient Properties: diff --git a/services/ui-auth/yarn.lock b/services/ui-auth/yarn.lock index 4c68382e1..ac8172516 100644 --- a/services/ui-auth/yarn.lock +++ b/services/ui-auth/yarn.lock @@ -2,411 +2,404 @@ # yarn lockfile v1 -"@aws-crypto/ie11-detection@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@aws-crypto/ie11-detection/-/ie11-detection-3.0.0.tgz#640ae66b4ec3395cee6a8e94ebcd9f80c24cd688" - integrity sha512-341lBBkiY1DfDNKai/wXM3aujNBkXR7tq1URPQDL9wi3AUbI80NR74uF1TXHMm7po1AcnFk8iu2S2IeU/+/A+Q== - dependencies: - tslib "^1.11.1" - -"@aws-crypto/sha256-browser@3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@aws-crypto/sha256-browser/-/sha256-browser-3.0.0.tgz#05f160138ab893f1c6ba5be57cfd108f05827766" - integrity sha512-8VLmW2B+gjFbU5uMeqtQM6Nj0/F1bro80xQXCW6CQBWgosFWXTx77aeOF5CAIAmbOK64SdMBJdNr6J41yP5mvQ== - dependencies: - "@aws-crypto/ie11-detection" "^3.0.0" - "@aws-crypto/sha256-js" "^3.0.0" - "@aws-crypto/supports-web-crypto" "^3.0.0" - "@aws-crypto/util" "^3.0.0" +"@aws-crypto/sha256-browser@5.2.0": + version "5.2.0" + resolved "https://registry.yarnpkg.com/@aws-crypto/sha256-browser/-/sha256-browser-5.2.0.tgz#153895ef1dba6f9fce38af550e0ef58988eb649e" + integrity sha512-AXfN/lGotSQwu6HNcEsIASo7kWXZ5HYWvfOmSNKDsEqC4OashTp8alTmaz+F7TC2L083SFv5RdB+qU3Vs1kZqw== + dependencies: + "@aws-crypto/sha256-js" "^5.2.0" + "@aws-crypto/supports-web-crypto" "^5.2.0" + "@aws-crypto/util" "^5.2.0" "@aws-sdk/types" "^3.222.0" "@aws-sdk/util-locate-window" "^3.0.0" - "@aws-sdk/util-utf8-browser" "^3.0.0" - tslib "^1.11.1" + "@smithy/util-utf8" "^2.0.0" + tslib "^2.6.2" -"@aws-crypto/sha256-js@3.0.0", "@aws-crypto/sha256-js@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@aws-crypto/sha256-js/-/sha256-js-3.0.0.tgz#f06b84d550d25521e60d2a0e2a90139341e007c2" - integrity sha512-PnNN7os0+yd1XvXAy23CFOmTbMaDxgxXtTKHybrJ39Y8kGzBATgBFibWJKH6BhytLI/Zyszs87xCOBNyBig6vQ== +"@aws-crypto/sha256-js@5.2.0", "@aws-crypto/sha256-js@^5.2.0": + version "5.2.0" + resolved "https://registry.yarnpkg.com/@aws-crypto/sha256-js/-/sha256-js-5.2.0.tgz#c4fdb773fdbed9a664fc1a95724e206cf3860042" + integrity sha512-FFQQyu7edu4ufvIZ+OadFpHHOt+eSTBaYaki44c+akjg7qZg9oOQeLlk77F6tSYqjDAFClrHJk9tMf0HdVyOvA== dependencies: - "@aws-crypto/util" "^3.0.0" + "@aws-crypto/util" "^5.2.0" "@aws-sdk/types" "^3.222.0" - tslib "^1.11.1" + tslib "^2.6.2" -"@aws-crypto/supports-web-crypto@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@aws-crypto/supports-web-crypto/-/supports-web-crypto-3.0.0.tgz#5d1bf825afa8072af2717c3e455f35cda0103ec2" - integrity sha512-06hBdMwUAb2WFTuGG73LSC0wfPu93xWwo5vL2et9eymgmu3Id5vFAHBbajVWiGhPO37qcsdCap/FqXvJGJWPIg== +"@aws-crypto/supports-web-crypto@^5.2.0": + version "5.2.0" + resolved "https://registry.yarnpkg.com/@aws-crypto/supports-web-crypto/-/supports-web-crypto-5.2.0.tgz#a1e399af29269be08e695109aa15da0a07b5b5fb" + integrity sha512-iAvUotm021kM33eCdNfwIN//F77/IADDSs58i+MDaOqFrVjZo9bAal0NK7HurRuWLLpF1iLX7gbWrjHjeo+YFg== dependencies: - tslib "^1.11.1" + tslib "^2.6.2" -"@aws-crypto/util@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@aws-crypto/util/-/util-3.0.0.tgz#1c7ca90c29293f0883468ad48117937f0fe5bfb0" - integrity sha512-2OJlpeJpCR48CC8r+uKVChzs9Iungj9wkZrl8Z041DWEWvyIHILYKCPNzJghKsivj+S3mLo6BVc7mBNzdxA46w== +"@aws-crypto/util@^5.2.0": + version "5.2.0" + resolved "https://registry.yarnpkg.com/@aws-crypto/util/-/util-5.2.0.tgz#71284c9cffe7927ddadac793c14f14886d3876da" + integrity sha512-4RkU9EsI6ZpBve5fseQlGNUWKMa1RLPQ1dnjnQoe07ldfIzcsGb5hC5W0Dm7u423KWzawlrpbjXBrXCEv9zazQ== dependencies: "@aws-sdk/types" "^3.222.0" - "@aws-sdk/util-utf8-browser" "^3.0.0" - tslib "^1.11.1" - -"@aws-sdk/client-cognito-identity-provider@^3.596.0": - version "3.596.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-cognito-identity-provider/-/client-cognito-identity-provider-3.596.0.tgz#ffa1e49bb58e216ed09b43b7fbc8b51dbac243cf" - integrity sha512-4rznKmxVm2HdgSNbHd59G1ahMkyclzQGiEsYxDnG1RZH1oM6Awoxt2laAL0rYEKSUn/+NyDABMpog73xGSvvpQ== - dependencies: - "@aws-crypto/sha256-browser" "3.0.0" - "@aws-crypto/sha256-js" "3.0.0" - "@aws-sdk/client-sso-oidc" "3.596.0" - "@aws-sdk/client-sts" "3.596.0" - "@aws-sdk/core" "3.592.0" - "@aws-sdk/credential-provider-node" "3.596.0" - "@aws-sdk/middleware-host-header" "3.577.0" - "@aws-sdk/middleware-logger" "3.577.0" - "@aws-sdk/middleware-recursion-detection" "3.577.0" - "@aws-sdk/middleware-user-agent" "3.587.0" - "@aws-sdk/region-config-resolver" "3.587.0" - "@aws-sdk/types" "3.577.0" - "@aws-sdk/util-endpoints" "3.587.0" - "@aws-sdk/util-user-agent-browser" "3.577.0" - "@aws-sdk/util-user-agent-node" "3.587.0" - "@smithy/config-resolver" "^3.0.1" - "@smithy/core" "^2.2.0" - "@smithy/fetch-http-handler" "^3.0.1" - "@smithy/hash-node" "^3.0.0" - "@smithy/invalid-dependency" "^3.0.0" - "@smithy/middleware-content-length" "^3.0.0" - "@smithy/middleware-endpoint" "^3.0.1" - "@smithy/middleware-retry" "^3.0.3" - "@smithy/middleware-serde" "^3.0.0" - "@smithy/middleware-stack" "^3.0.0" - "@smithy/node-config-provider" "^3.1.0" - "@smithy/node-http-handler" "^3.0.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" - "@smithy/url-parser" "^3.0.0" + "@smithy/util-utf8" "^2.0.0" + tslib "^2.6.2" + +"@aws-sdk/client-cognito-identity-provider@^3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-cognito-identity-provider/-/client-cognito-identity-provider-3.621.0.tgz#7e5d85943fff1cfb0379866c2c3b3c91fd3f4ffa" + integrity sha512-Tu2m18zW87gJwme6J74p/ZrfC5eJ3kv4yXpCAkfOz1JBO0vfxdoZIkkZ94G5tuCpiS5kljwS6GXpsKOojpVXcg== + dependencies: + "@aws-crypto/sha256-browser" "5.2.0" + "@aws-crypto/sha256-js" "5.2.0" + "@aws-sdk/client-sso-oidc" "3.621.0" + "@aws-sdk/client-sts" "3.621.0" + "@aws-sdk/core" "3.621.0" + "@aws-sdk/credential-provider-node" "3.621.0" + "@aws-sdk/middleware-host-header" "3.620.0" + "@aws-sdk/middleware-logger" "3.609.0" + "@aws-sdk/middleware-recursion-detection" "3.620.0" + "@aws-sdk/middleware-user-agent" "3.620.0" + "@aws-sdk/region-config-resolver" "3.614.0" + "@aws-sdk/types" "3.609.0" + "@aws-sdk/util-endpoints" "3.614.0" + "@aws-sdk/util-user-agent-browser" "3.609.0" + "@aws-sdk/util-user-agent-node" "3.614.0" + "@smithy/config-resolver" "^3.0.5" + "@smithy/core" "^2.3.1" + "@smithy/fetch-http-handler" "^3.2.4" + "@smithy/hash-node" "^3.0.3" + "@smithy/invalid-dependency" "^3.0.3" + "@smithy/middleware-content-length" "^3.0.5" + "@smithy/middleware-endpoint" "^3.1.0" + "@smithy/middleware-retry" "^3.0.13" + "@smithy/middleware-serde" "^3.0.3" + "@smithy/middleware-stack" "^3.0.3" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/node-http-handler" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" + "@smithy/url-parser" "^3.0.3" "@smithy/util-base64" "^3.0.0" "@smithy/util-body-length-browser" "^3.0.0" "@smithy/util-body-length-node" "^3.0.0" - "@smithy/util-defaults-mode-browser" "^3.0.3" - "@smithy/util-defaults-mode-node" "^3.0.3" - "@smithy/util-endpoints" "^2.0.1" - "@smithy/util-middleware" "^3.0.0" - "@smithy/util-retry" "^3.0.0" + "@smithy/util-defaults-mode-browser" "^3.0.13" + "@smithy/util-defaults-mode-node" "^3.0.13" + "@smithy/util-endpoints" "^2.0.5" + "@smithy/util-middleware" "^3.0.3" + "@smithy/util-retry" "^3.0.3" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/client-sso-oidc@3.596.0": - version "3.596.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.596.0.tgz#9d75619043e5f0e3d985d800c3df06d9a8a3bfeb" - integrity sha512-KnTWtKzO0N+rMdIrVwbewFp4FAvVWBV/ekCAh5w7EN+uAvBHxMoFElE2RwlcRF/gH1/F715OspPMvOxPom6bMA== - dependencies: - "@aws-crypto/sha256-browser" "3.0.0" - "@aws-crypto/sha256-js" "3.0.0" - "@aws-sdk/client-sts" "3.596.0" - "@aws-sdk/core" "3.592.0" - "@aws-sdk/credential-provider-node" "3.596.0" - "@aws-sdk/middleware-host-header" "3.577.0" - "@aws-sdk/middleware-logger" "3.577.0" - "@aws-sdk/middleware-recursion-detection" "3.577.0" - "@aws-sdk/middleware-user-agent" "3.587.0" - "@aws-sdk/region-config-resolver" "3.587.0" - "@aws-sdk/types" "3.577.0" - "@aws-sdk/util-endpoints" "3.587.0" - "@aws-sdk/util-user-agent-browser" "3.577.0" - "@aws-sdk/util-user-agent-node" "3.587.0" - "@smithy/config-resolver" "^3.0.1" - "@smithy/core" "^2.2.0" - "@smithy/fetch-http-handler" "^3.0.1" - "@smithy/hash-node" "^3.0.0" - "@smithy/invalid-dependency" "^3.0.0" - "@smithy/middleware-content-length" "^3.0.0" - "@smithy/middleware-endpoint" "^3.0.1" - "@smithy/middleware-retry" "^3.0.3" - "@smithy/middleware-serde" "^3.0.0" - "@smithy/middleware-stack" "^3.0.0" - "@smithy/node-config-provider" "^3.1.0" - "@smithy/node-http-handler" "^3.0.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" - "@smithy/url-parser" "^3.0.0" +"@aws-sdk/client-sso-oidc@3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.621.0.tgz#3fa3d468fbebbd93a5f75c1d51b63cc7af3ef17b" + integrity sha512-mMjk3mFUwV2Y68POf1BQMTF+F6qxt5tPu6daEUCNGC9Cenk3h2YXQQoS4/eSyYzuBiYk3vx49VgleRvdvkg8rg== + dependencies: + "@aws-crypto/sha256-browser" "5.2.0" + "@aws-crypto/sha256-js" "5.2.0" + "@aws-sdk/core" "3.621.0" + "@aws-sdk/credential-provider-node" "3.621.0" + "@aws-sdk/middleware-host-header" "3.620.0" + "@aws-sdk/middleware-logger" "3.609.0" + "@aws-sdk/middleware-recursion-detection" "3.620.0" + "@aws-sdk/middleware-user-agent" "3.620.0" + "@aws-sdk/region-config-resolver" "3.614.0" + "@aws-sdk/types" "3.609.0" + "@aws-sdk/util-endpoints" "3.614.0" + "@aws-sdk/util-user-agent-browser" "3.609.0" + "@aws-sdk/util-user-agent-node" "3.614.0" + "@smithy/config-resolver" "^3.0.5" + "@smithy/core" "^2.3.1" + "@smithy/fetch-http-handler" "^3.2.4" + "@smithy/hash-node" "^3.0.3" + "@smithy/invalid-dependency" "^3.0.3" + "@smithy/middleware-content-length" "^3.0.5" + "@smithy/middleware-endpoint" "^3.1.0" + "@smithy/middleware-retry" "^3.0.13" + "@smithy/middleware-serde" "^3.0.3" + "@smithy/middleware-stack" "^3.0.3" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/node-http-handler" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" + "@smithy/url-parser" "^3.0.3" "@smithy/util-base64" "^3.0.0" "@smithy/util-body-length-browser" "^3.0.0" "@smithy/util-body-length-node" "^3.0.0" - "@smithy/util-defaults-mode-browser" "^3.0.3" - "@smithy/util-defaults-mode-node" "^3.0.3" - "@smithy/util-endpoints" "^2.0.1" - "@smithy/util-middleware" "^3.0.0" - "@smithy/util-retry" "^3.0.0" + "@smithy/util-defaults-mode-browser" "^3.0.13" + "@smithy/util-defaults-mode-node" "^3.0.13" + "@smithy/util-endpoints" "^2.0.5" + "@smithy/util-middleware" "^3.0.3" + "@smithy/util-retry" "^3.0.3" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/client-sso@3.592.0": - version "3.592.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso/-/client-sso-3.592.0.tgz#90462e744998990079c28a083553090af9ac2902" - integrity sha512-w+SuW47jQqvOC7fonyjFjsOh3yjqJ+VpWdVrmrl0E/KryBE7ho/Wn991Buf/EiHHeJikoWgHsAIPkBH29+ntdA== - dependencies: - "@aws-crypto/sha256-browser" "3.0.0" - "@aws-crypto/sha256-js" "3.0.0" - "@aws-sdk/core" "3.592.0" - "@aws-sdk/middleware-host-header" "3.577.0" - "@aws-sdk/middleware-logger" "3.577.0" - "@aws-sdk/middleware-recursion-detection" "3.577.0" - "@aws-sdk/middleware-user-agent" "3.587.0" - "@aws-sdk/region-config-resolver" "3.587.0" - "@aws-sdk/types" "3.577.0" - "@aws-sdk/util-endpoints" "3.587.0" - "@aws-sdk/util-user-agent-browser" "3.577.0" - "@aws-sdk/util-user-agent-node" "3.587.0" - "@smithy/config-resolver" "^3.0.1" - "@smithy/core" "^2.2.0" - "@smithy/fetch-http-handler" "^3.0.1" - "@smithy/hash-node" "^3.0.0" - "@smithy/invalid-dependency" "^3.0.0" - "@smithy/middleware-content-length" "^3.0.0" - "@smithy/middleware-endpoint" "^3.0.1" - "@smithy/middleware-retry" "^3.0.3" - "@smithy/middleware-serde" "^3.0.0" - "@smithy/middleware-stack" "^3.0.0" - "@smithy/node-config-provider" "^3.1.0" - "@smithy/node-http-handler" "^3.0.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" - "@smithy/url-parser" "^3.0.0" +"@aws-sdk/client-sso@3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso/-/client-sso-3.621.0.tgz#c0eefeb9adcbc6bb7c91c32070404c8c91846825" + integrity sha512-xpKfikN4u0BaUYZA9FGUMkkDmfoIP0Q03+A86WjqDWhcOoqNA1DkHsE4kZ+r064ifkPUfcNuUvlkVTEoBZoFjA== + dependencies: + "@aws-crypto/sha256-browser" "5.2.0" + "@aws-crypto/sha256-js" "5.2.0" + "@aws-sdk/core" "3.621.0" + "@aws-sdk/middleware-host-header" "3.620.0" + "@aws-sdk/middleware-logger" "3.609.0" + "@aws-sdk/middleware-recursion-detection" "3.620.0" + "@aws-sdk/middleware-user-agent" "3.620.0" + "@aws-sdk/region-config-resolver" "3.614.0" + "@aws-sdk/types" "3.609.0" + "@aws-sdk/util-endpoints" "3.614.0" + "@aws-sdk/util-user-agent-browser" "3.609.0" + "@aws-sdk/util-user-agent-node" "3.614.0" + "@smithy/config-resolver" "^3.0.5" + "@smithy/core" "^2.3.1" + "@smithy/fetch-http-handler" "^3.2.4" + "@smithy/hash-node" "^3.0.3" + "@smithy/invalid-dependency" "^3.0.3" + "@smithy/middleware-content-length" "^3.0.5" + "@smithy/middleware-endpoint" "^3.1.0" + "@smithy/middleware-retry" "^3.0.13" + "@smithy/middleware-serde" "^3.0.3" + "@smithy/middleware-stack" "^3.0.3" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/node-http-handler" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" + "@smithy/url-parser" "^3.0.3" "@smithy/util-base64" "^3.0.0" "@smithy/util-body-length-browser" "^3.0.0" "@smithy/util-body-length-node" "^3.0.0" - "@smithy/util-defaults-mode-browser" "^3.0.3" - "@smithy/util-defaults-mode-node" "^3.0.3" - "@smithy/util-endpoints" "^2.0.1" - "@smithy/util-middleware" "^3.0.0" - "@smithy/util-retry" "^3.0.0" + "@smithy/util-defaults-mode-browser" "^3.0.13" + "@smithy/util-defaults-mode-node" "^3.0.13" + "@smithy/util-endpoints" "^2.0.5" + "@smithy/util-middleware" "^3.0.3" + "@smithy/util-retry" "^3.0.3" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/client-sts@3.596.0": - version "3.596.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-sts/-/client-sts-3.596.0.tgz#236ed4b898265c737f860060adab422ea8ec6383" - integrity sha512-37+WQDjgmqS/YXj3vPzIVIrbXaFcZ1WXk715AMGIPBZn9Y2/wr2bmSTpX7bsMyn0G8+LxmoIxFcG7n1Gu0nvLg== - dependencies: - "@aws-crypto/sha256-browser" "3.0.0" - "@aws-crypto/sha256-js" "3.0.0" - "@aws-sdk/client-sso-oidc" "3.596.0" - "@aws-sdk/core" "3.592.0" - "@aws-sdk/credential-provider-node" "3.596.0" - "@aws-sdk/middleware-host-header" "3.577.0" - "@aws-sdk/middleware-logger" "3.577.0" - "@aws-sdk/middleware-recursion-detection" "3.577.0" - "@aws-sdk/middleware-user-agent" "3.587.0" - "@aws-sdk/region-config-resolver" "3.587.0" - "@aws-sdk/types" "3.577.0" - "@aws-sdk/util-endpoints" "3.587.0" - "@aws-sdk/util-user-agent-browser" "3.577.0" - "@aws-sdk/util-user-agent-node" "3.587.0" - "@smithy/config-resolver" "^3.0.1" - "@smithy/core" "^2.2.0" - "@smithy/fetch-http-handler" "^3.0.1" - "@smithy/hash-node" "^3.0.0" - "@smithy/invalid-dependency" "^3.0.0" - "@smithy/middleware-content-length" "^3.0.0" - "@smithy/middleware-endpoint" "^3.0.1" - "@smithy/middleware-retry" "^3.0.3" - "@smithy/middleware-serde" "^3.0.0" - "@smithy/middleware-stack" "^3.0.0" - "@smithy/node-config-provider" "^3.1.0" - "@smithy/node-http-handler" "^3.0.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" - "@smithy/url-parser" "^3.0.0" +"@aws-sdk/client-sts@3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-sts/-/client-sts-3.621.0.tgz#2994f601790893901704c5df56c837e89f279952" + integrity sha512-707uiuReSt+nAx6d0c21xLjLm2lxeKc7padxjv92CIrIocnQSlJPxSCM7r5zBhwiahJA6MNQwmTl2xznU67KgA== + dependencies: + "@aws-crypto/sha256-browser" "5.2.0" + "@aws-crypto/sha256-js" "5.2.0" + "@aws-sdk/client-sso-oidc" "3.621.0" + "@aws-sdk/core" "3.621.0" + "@aws-sdk/credential-provider-node" "3.621.0" + "@aws-sdk/middleware-host-header" "3.620.0" + "@aws-sdk/middleware-logger" "3.609.0" + "@aws-sdk/middleware-recursion-detection" "3.620.0" + "@aws-sdk/middleware-user-agent" "3.620.0" + "@aws-sdk/region-config-resolver" "3.614.0" + "@aws-sdk/types" "3.609.0" + "@aws-sdk/util-endpoints" "3.614.0" + "@aws-sdk/util-user-agent-browser" "3.609.0" + "@aws-sdk/util-user-agent-node" "3.614.0" + "@smithy/config-resolver" "^3.0.5" + "@smithy/core" "^2.3.1" + "@smithy/fetch-http-handler" "^3.2.4" + "@smithy/hash-node" "^3.0.3" + "@smithy/invalid-dependency" "^3.0.3" + "@smithy/middleware-content-length" "^3.0.5" + "@smithy/middleware-endpoint" "^3.1.0" + "@smithy/middleware-retry" "^3.0.13" + "@smithy/middleware-serde" "^3.0.3" + "@smithy/middleware-stack" "^3.0.3" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/node-http-handler" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" + "@smithy/url-parser" "^3.0.3" "@smithy/util-base64" "^3.0.0" "@smithy/util-body-length-browser" "^3.0.0" "@smithy/util-body-length-node" "^3.0.0" - "@smithy/util-defaults-mode-browser" "^3.0.3" - "@smithy/util-defaults-mode-node" "^3.0.3" - "@smithy/util-endpoints" "^2.0.1" - "@smithy/util-middleware" "^3.0.0" - "@smithy/util-retry" "^3.0.0" + "@smithy/util-defaults-mode-browser" "^3.0.13" + "@smithy/util-defaults-mode-node" "^3.0.13" + "@smithy/util-endpoints" "^2.0.5" + "@smithy/util-middleware" "^3.0.3" + "@smithy/util-retry" "^3.0.3" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/core@3.592.0": - version "3.592.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/core/-/core-3.592.0.tgz#d903a3993f8ba6836480314c2a8af8b7857bb943" - integrity sha512-gLPMXR/HXDP+9gXAt58t7gaMTvRts9i6Q7NMISpkGF54wehskl5WGrbdtHJFylrlJ5BQo3XVY6i661o+EuR1wg== - dependencies: - "@smithy/core" "^2.2.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/signature-v4" "^3.0.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" - fast-xml-parser "4.2.5" - tslib "^2.6.2" - -"@aws-sdk/credential-provider-env@3.587.0": - version "3.587.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-env/-/credential-provider-env-3.587.0.tgz#40435be331773e4b1b665a1f4963518d4647505c" - integrity sha512-Hyg/5KFECIk2k5o8wnVEiniV86yVkhn5kzITUydmNGCkXdBFHMHRx6hleQ1bqwJHbBskyu8nbYamzcwymmGwmw== - dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/property-provider" "^3.1.0" - "@smithy/types" "^3.0.0" - tslib "^2.6.2" - -"@aws-sdk/credential-provider-http@3.596.0": - version "3.596.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-http/-/credential-provider-http-3.596.0.tgz#ad81565e37f84c860a7a5f82ff256a962397816c" - integrity sha512-nnmvEsz1KJgRmfSZJPWuzbxPRXu8Y+/78Ifa1jY3fQKSKdEJfXMDsjPljJvMDBl4dZ8pf5Hwx+S/ONnMEDwYEA== - dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/fetch-http-handler" "^3.0.1" - "@smithy/node-http-handler" "^3.0.0" - "@smithy/property-provider" "^3.1.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" - "@smithy/util-stream" "^3.0.1" +"@aws-sdk/core@3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/core/-/core-3.621.0.tgz#e38c56c3ce0c819ca1185eaabcb98412429aaca3" + integrity sha512-CtOwWmDdEiINkGXD93iGfXjN0WmCp9l45cDWHHGa8lRgEDyhuL7bwd/pH5aSzj0j8SiQBG2k0S7DHbd5RaqvbQ== + dependencies: + "@smithy/core" "^2.3.1" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/signature-v4" "^4.1.0" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" + "@smithy/util-middleware" "^3.0.3" + fast-xml-parser "4.4.1" + tslib "^2.6.2" + +"@aws-sdk/credential-provider-env@3.620.1": + version "3.620.1" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-env/-/credential-provider-env-3.620.1.tgz#d4692c49a65ebc11dae3f7f8b053fee9268a953c" + integrity sha512-ExuILJ2qLW5ZO+rgkNRj0xiAipKT16Rk77buvPP8csR7kkCflT/gXTyzRe/uzIiETTxM7tr8xuO9MP/DQXqkfg== + dependencies: + "@aws-sdk/types" "3.609.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + +"@aws-sdk/credential-provider-http@3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-http/-/credential-provider-http-3.621.0.tgz#5f944bf548f203d842cf71a5792f73c205544627" + integrity sha512-/jc2tEsdkT1QQAI5Dvoci50DbSxtJrevemwFsm0B73pwCcOQZ5ZwwSdVqGsPutzYzUVx3bcXg3LRL7jLACqRIg== + dependencies: + "@aws-sdk/types" "3.609.0" + "@smithy/fetch-http-handler" "^3.2.4" + "@smithy/node-http-handler" "^3.1.4" + "@smithy/property-provider" "^3.1.3" + "@smithy/protocol-http" "^4.1.0" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" + "@smithy/util-stream" "^3.1.3" tslib "^2.6.2" -"@aws-sdk/credential-provider-ini@3.596.0": - version "3.596.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.596.0.tgz#2e5155b52590dbc768a2775e0b5266287a00d8ca" - integrity sha512-c7PLtd7GbnOVAc5sk3sVlHxLvEsM8RF96rsBGlRo4AVpil/lXLKyNv9VarS4w/ZZZoRbJRyZ+m92PjNcLvpTDQ== +"@aws-sdk/credential-provider-ini@3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.621.0.tgz#bda2365f88fee40e3ae067b08bf484106c339222" + integrity sha512-0EWVnSc+JQn5HLnF5Xv405M8n4zfdx9gyGdpnCmAmFqEDHA8LmBdxJdpUk1Ovp/I5oPANhjojxabIW5f1uU0RA== dependencies: - "@aws-sdk/credential-provider-env" "3.587.0" - "@aws-sdk/credential-provider-http" "3.596.0" - "@aws-sdk/credential-provider-process" "3.587.0" - "@aws-sdk/credential-provider-sso" "3.592.0" - "@aws-sdk/credential-provider-web-identity" "3.587.0" - "@aws-sdk/types" "3.577.0" - "@smithy/credential-provider-imds" "^3.1.0" - "@smithy/property-provider" "^3.1.0" - "@smithy/shared-ini-file-loader" "^3.1.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/credential-provider-env" "3.620.1" + "@aws-sdk/credential-provider-http" "3.621.0" + "@aws-sdk/credential-provider-process" "3.620.1" + "@aws-sdk/credential-provider-sso" "3.621.0" + "@aws-sdk/credential-provider-web-identity" "3.621.0" + "@aws-sdk/types" "3.609.0" + "@smithy/credential-provider-imds" "^3.2.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/shared-ini-file-loader" "^3.1.4" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@aws-sdk/credential-provider-node@3.596.0": - version "3.596.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-node/-/credential-provider-node-3.596.0.tgz#d70bce8de4f1849558215117d73f7433bfdcdc24" - integrity sha512-F4MLyXpQyie1AnJS9n7TIRL0aF7YH8tKMIJXDsM5OXpSZi2en+yR6SzsxvHf5dwS2Ga8LUdEJyiyS2NoebaJGA== +"@aws-sdk/credential-provider-node@3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-node/-/credential-provider-node-3.621.0.tgz#9cc5052760a9f9d70d70f12ddbdbf0d59bf13a47" + integrity sha512-4JqpccUgz5Snanpt2+53hbOBbJQrSFq7E1sAAbgY6BKVQUsW5qyXqnjvSF32kDeKa5JpBl3bBWLZl04IadcPHw== dependencies: - "@aws-sdk/credential-provider-env" "3.587.0" - "@aws-sdk/credential-provider-http" "3.596.0" - "@aws-sdk/credential-provider-ini" "3.596.0" - "@aws-sdk/credential-provider-process" "3.587.0" - "@aws-sdk/credential-provider-sso" "3.592.0" - "@aws-sdk/credential-provider-web-identity" "3.587.0" - "@aws-sdk/types" "3.577.0" - "@smithy/credential-provider-imds" "^3.1.0" - "@smithy/property-provider" "^3.1.0" - "@smithy/shared-ini-file-loader" "^3.1.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/credential-provider-env" "3.620.1" + "@aws-sdk/credential-provider-http" "3.621.0" + "@aws-sdk/credential-provider-ini" "3.621.0" + "@aws-sdk/credential-provider-process" "3.620.1" + "@aws-sdk/credential-provider-sso" "3.621.0" + "@aws-sdk/credential-provider-web-identity" "3.621.0" + "@aws-sdk/types" "3.609.0" + "@smithy/credential-provider-imds" "^3.2.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/shared-ini-file-loader" "^3.1.4" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@aws-sdk/credential-provider-process@3.587.0": - version "3.587.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-process/-/credential-provider-process-3.587.0.tgz#1e5cc562a68438a77f464adc0493b02e04dd3ea1" - integrity sha512-V4xT3iCqkF8uL6QC4gqBJg/2asd/damswP1h9HCfqTllmPWzImS+8WD3VjgTLw5b0KbTy+ZdUhKc0wDnyzkzxg== +"@aws-sdk/credential-provider-process@3.620.1": + version "3.620.1" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-process/-/credential-provider-process-3.620.1.tgz#10387cf85400420bb4bbda9cc56937dcc6d6d0ee" + integrity sha512-hWqFMidqLAkaV9G460+1at6qa9vySbjQKKc04p59OT7lZ5cO5VH5S4aI05e+m4j364MBROjjk2ugNvfNf/8ILg== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/property-provider" "^3.1.0" - "@smithy/shared-ini-file-loader" "^3.1.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/shared-ini-file-loader" "^3.1.4" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@aws-sdk/credential-provider-sso@3.592.0": - version "3.592.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.592.0.tgz#340649b4f5b4fbcb816f248089979d7d38ce96d3" - integrity sha512-fYFzAdDHKHvhtufPPtrLdSv8lO6GuW3em6n3erM5uFdpGytNpjXvr3XGokIsuXcNkETAY/Xihg+G9ksNE8WJxQ== +"@aws-sdk/credential-provider-sso@3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.621.0.tgz#710f413708cb372f9f94e8eb9726cf263ffd83e3" + integrity sha512-Kza0jcFeA/GEL6xJlzR2KFf1PfZKMFnxfGzJzl5yN7EjoGdMijl34KaRyVnfRjnCWcsUpBWKNIDk9WZVMY9yiw== dependencies: - "@aws-sdk/client-sso" "3.592.0" - "@aws-sdk/token-providers" "3.587.0" - "@aws-sdk/types" "3.577.0" - "@smithy/property-provider" "^3.1.0" - "@smithy/shared-ini-file-loader" "^3.1.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/client-sso" "3.621.0" + "@aws-sdk/token-providers" "3.614.0" + "@aws-sdk/types" "3.609.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/shared-ini-file-loader" "^3.1.4" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@aws-sdk/credential-provider-web-identity@3.587.0": - version "3.587.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.587.0.tgz#daa41e3cc9309594327056e431b8065145c5297a" - integrity sha512-XqIx/I2PG7kyuw3WjAP9wKlxy8IvFJwB8asOFT1xPFoVfZYKIogjG9oLP5YiRtfvDkWIztHmg5MlVv3HdJDGRw== - dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/property-provider" "^3.1.0" - "@smithy/types" "^3.0.0" - tslib "^2.6.2" - -"@aws-sdk/middleware-host-header@3.577.0": - version "3.577.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-host-header/-/middleware-host-header-3.577.0.tgz#a3fc626d409ec850296740478c64ef5806d8b878" - integrity sha512-9ca5MJz455CODIVXs0/sWmJm7t3QO4EUa1zf8pE8grLpzf0J94bz/skDWm37Pli13T3WaAQBHCTiH2gUVfCsWg== +"@aws-sdk/credential-provider-web-identity@3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.621.0.tgz#b25878c0a05dad60cd5f91e7e5a31a145c2f14be" + integrity sha512-w7ASSyfNvcx7+bYGep3VBgC3K6vEdLmlpjT7nSIHxxQf+WSdvy+HynwJosrpZax0sK5q0D1Jpn/5q+r5lwwW6w== + dependencies: + "@aws-sdk/types" "3.609.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + +"@aws-sdk/middleware-host-header@3.620.0": + version "3.620.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-host-header/-/middleware-host-header-3.620.0.tgz#b561d419a08a984ba364c193376b482ff5224d74" + integrity sha512-VMtPEZwqYrII/oUkffYsNWY9PZ9xpNJpMgmyU0rlDQ25O1c0Hk3fJmZRe6pEkAJ0omD7kLrqGl1DUjQVxpd/Rg== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/types" "^3.0.0" - tslib "^2.6.2" + "@aws-sdk/types" "3.609.0" + "@smithy/protocol-http" "^4.1.0" + "@smithy/types" "^3.3.0" + tslib "^2.6.2" -"@aws-sdk/middleware-logger@3.577.0": - version "3.577.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-logger/-/middleware-logger-3.577.0.tgz#6da3b13ae284fb3930961f0fc8e20b1f6cf8be30" - integrity sha512-aPFGpGjTZcJYk+24bg7jT4XdIp42mFXSuPt49lw5KygefLyJM/sB0bKKqPYYivW0rcuZ9brQ58eZUNthrzYAvg== +"@aws-sdk/middleware-logger@3.609.0": + version "3.609.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-logger/-/middleware-logger-3.609.0.tgz#ed44d201f091b8bac908cbf14724c7a4d492553f" + integrity sha512-S62U2dy4jMDhDFDK5gZ4VxFdWzCtLzwbYyFZx2uvPYTECkepLUfzLic2BHg2Qvtu4QjX+oGE3P/7fwaGIsGNuQ== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/types" "^3.0.0" - tslib "^2.6.2" - -"@aws-sdk/middleware-recursion-detection@3.577.0": - version "3.577.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.577.0.tgz#fff76abc6d4521636f9e654ce5bf2c4c79249417" - integrity sha512-pn3ZVEd2iobKJlR3H+bDilHjgRnNrQ6HMmK9ZzZw89Ckn3Dcbv48xOv4RJvu0aU8SDLl/SNCxppKjeLDTPGBNA== - dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + +"@aws-sdk/middleware-recursion-detection@3.620.0": + version "3.620.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.620.0.tgz#f8270dfff843fd756be971e5673f89c6a24c6513" + integrity sha512-nh91S7aGK3e/o1ck64sA/CyoFw+gAYj2BDOnoNa6ouyCrVJED96ZXWbhye/fz9SgmNUZR2g7GdVpiLpMKZoI5w== + dependencies: + "@aws-sdk/types" "3.609.0" + "@smithy/protocol-http" "^4.1.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@aws-sdk/middleware-user-agent@3.587.0": - version "3.587.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.587.0.tgz#2a68900cfb29afbae2952d901de4fcb91850bd3d" - integrity sha512-SyDomN+IOrygLucziG7/nOHkjUXES5oH5T7p8AboO8oakMQJdnudNXiYWTicQWO52R51U6CR27rcMPTGeMedYA== +"@aws-sdk/middleware-user-agent@3.620.0": + version "3.620.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.620.0.tgz#1fe3104f04f576a942cf0469bfbd73c38eef3d9e" + integrity sha512-bvS6etn+KsuL32ubY5D3xNof1qkenpbJXf/ugGXbg0n98DvDFQ/F+SMLxHgbnER5dsKYchNnhmtI6/FC3HFu/A== dependencies: - "@aws-sdk/types" "3.577.0" - "@aws-sdk/util-endpoints" "3.587.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@aws-sdk/util-endpoints" "3.614.0" + "@smithy/protocol-http" "^4.1.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@aws-sdk/region-config-resolver@3.587.0": - version "3.587.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/region-config-resolver/-/region-config-resolver-3.587.0.tgz#ad1c15494f44dfc4c7a7bce389f8b128dace923f" - integrity sha512-93I7IPZtulZQoRK+O20IJ4a1syWwYPzoO2gc3v+/GNZflZPV3QJXuVbIm0pxBsu0n/mzKGUKqSOLPIaN098HcQ== +"@aws-sdk/region-config-resolver@3.614.0": + version "3.614.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/region-config-resolver/-/region-config-resolver-3.614.0.tgz#9cebb31a5bcfea2a41891fff7f28d0164cde179a" + integrity sha512-vDCeMXvic/LU0KFIUjpC3RiSTIkkvESsEfbVHiHH0YINfl8HnEqR5rj+L8+phsCeVg2+LmYwYxd5NRz4PHxt5g== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/node-config-provider" "^3.1.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/types" "^3.3.0" "@smithy/util-config-provider" "^3.0.0" - "@smithy/util-middleware" "^3.0.0" + "@smithy/util-middleware" "^3.0.3" tslib "^2.6.2" -"@aws-sdk/token-providers@3.587.0": - version "3.587.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/token-providers/-/token-providers-3.587.0.tgz#f9fd2ddfc554c1370f8d0f467c76a4c8cb904ae6" - integrity sha512-ULqhbnLy1hmJNRcukANBWJmum3BbjXnurLPSFXoGdV0llXYlG55SzIla2VYqdveQEEjmsBuTZdFvXAtNpmS5Zg== +"@aws-sdk/token-providers@3.614.0": + version "3.614.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/token-providers/-/token-providers-3.614.0.tgz#88da04f6d4ce916b0b0f6e045676d04201fb47fd" + integrity sha512-okItqyY6L9IHdxqs+Z116y5/nda7rHxLvROxtAJdLavWTYDydxrZstImNgGWTeVdmc0xX2gJCI77UYUTQWnhRw== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/property-provider" "^3.1.0" - "@smithy/shared-ini-file-loader" "^3.1.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/shared-ini-file-loader" "^3.1.4" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@aws-sdk/types@3.577.0": - version "3.577.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/types/-/types-3.577.0.tgz#7700784d368ce386745f8c340d9d68cea4716f90" - integrity sha512-FT2JZES3wBKN/alfmhlo+3ZOq/XJ0C7QOZcDNrpKjB0kqYoKjhVKZ/Hx6ArR0czkKfHzBBEs6y40ebIHx2nSmA== +"@aws-sdk/types@3.609.0": + version "3.609.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/types/-/types-3.609.0.tgz#06b39d799c9f197a7b43670243e8e78a3bf7d6a5" + integrity sha512-+Tqnh9w0h2LcrUsdXyT1F8mNhXz+tVYBtP19LpeEGntmvHwa2XzvLUCWpoIAIVsHp5+HdB2X9Sn0KAtmbFXc2Q== dependencies: - "@smithy/types" "^3.0.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@aws-sdk/types@^3.222.0": @@ -417,14 +410,14 @@ "@smithy/types" "^2.5.0" tslib "^2.5.0" -"@aws-sdk/util-endpoints@3.587.0": - version "3.587.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-endpoints/-/util-endpoints-3.587.0.tgz#781e0822a95dba15f7ac8f22a6f6d7f0c8819818" - integrity sha512-8I1HG6Em8wQWqKcRW6m358mqebRVNpL8XrrEoT4In7xqkKkmYtHRNVYP6lcmiQh5pZ/c/FXu8dSchuFIWyEtqQ== +"@aws-sdk/util-endpoints@3.614.0": + version "3.614.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-endpoints/-/util-endpoints-3.614.0.tgz#6564b0ffd7dc3728221e9f9821f5aab1cc58468e" + integrity sha512-wK2cdrXHH4oz4IomV/yrGkftU9A+ITB6nFL+rxxyO78is2ifHJpFdV4aqk4LSkXYPi6CXWNru/Dqc7yiKXgJPw== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/types" "^3.0.0" - "@smithy/util-endpoints" "^2.0.1" + "@aws-sdk/types" "3.609.0" + "@smithy/types" "^3.3.0" + "@smithy/util-endpoints" "^2.0.5" tslib "^2.6.2" "@aws-sdk/util-locate-window@^3.0.0": @@ -434,402 +427,259 @@ dependencies: tslib "^2.5.0" -"@aws-sdk/util-user-agent-browser@3.577.0": - version "3.577.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.577.0.tgz#d4d2cdb3a2b3d1c8b35f239ee9f7b2c87bee66ea" - integrity sha512-zEAzHgR6HWpZOH7xFgeJLc6/CzMcx4nxeQolZxVZoB5pPaJd3CjyRhZN0xXeZB0XIRCWmb4yJBgyiugXLNMkLA== +"@aws-sdk/util-user-agent-browser@3.609.0": + version "3.609.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.609.0.tgz#aa15421b2e32ae8bc589dac2bd6e8969832ce588" + integrity sha512-fojPU+mNahzQ0YHYBsx0ZIhmMA96H+ZIZ665ObU9tl+SGdbLneVZVikGve+NmHTQwHzwkFsZYYnVKAkreJLAtA== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@smithy/types" "^3.3.0" bowser "^2.11.0" tslib "^2.6.2" -"@aws-sdk/util-user-agent-node@3.587.0": - version "3.587.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.587.0.tgz#a6bf422f307a68e16a6c19ee5d731fcc32696fb9" - integrity sha512-Pnl+DUe/bvnbEEDHP3iVJrOtE3HbFJBPgsD6vJ+ml/+IYk1Eq49jEG+EHZdNTPz3SDG0kbp2+7u41MKYJHR/iQ== +"@aws-sdk/util-user-agent-node@3.614.0": + version "3.614.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.614.0.tgz#1e3f49a80f841a3f21647baed2adce01aac5beb5" + integrity sha512-15ElZT88peoHnq5TEoEtZwoXTXRxNrk60TZNdpl/TUBJ5oNJ9Dqb5Z4ryb8ofN6nm9aFf59GVAerFDz8iUoHBA== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/node-config-provider" "^3.1.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@aws-sdk/util-utf8-browser@^3.0.0": - version "3.259.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-utf8-browser/-/util-utf8-browser-3.259.0.tgz#3275a6f5eb334f96ca76635b961d3c50259fd9ff" - integrity sha512-UvFa/vR+e19XookZF8RzFZBrw2EUkQWxiBW0yYQAhvk3C+QVGl0H3ouca8LDBlBfQKXwmW3huo/59H8rwb1wJw== - dependencies: - tslib "^2.3.1" - -"@smithy/abort-controller@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/abort-controller/-/abort-controller-3.0.0.tgz#5815f5d4618e14bf8d031bb98a99adabbb831168" - integrity sha512-p6GlFGBt9K4MYLu72YuJ523NVR4A8oHlC5M2JO6OmQqN8kAc/uh1JqLE+FizTokrSJGg0CSvC+BrsmGzKtsZKA== - dependencies: - "@smithy/types" "^3.0.0" - tslib "^2.6.2" - -"@smithy/abort-controller@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/abort-controller/-/abort-controller-3.0.1.tgz#bb8debe1c23ca62a61b33a9ee2918f5a79d81928" - integrity sha512-Jb7jg4E+C+uvrUQi+h9kbILY6ts6fglKZzseMCHlH9ayq+1f5QdpYf8MV/xppuiN6DAMJAmwGz53GwP3213dmA== +"@smithy/abort-controller@^3.1.1": + version "3.1.1" + resolved "https://registry.yarnpkg.com/@smithy/abort-controller/-/abort-controller-3.1.1.tgz#291210611ff6afecfc198d0ca72d5771d8461d16" + integrity sha512-MBJBiidoe+0cTFhyxT8g+9g7CeVccLM0IOKKUMCNQ1CNMJ/eIfoo0RTfVrXOONEI1UCN1W+zkiHSbzUNE9dZtQ== dependencies: - "@smithy/types" "^3.1.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/config-resolver@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/config-resolver/-/config-resolver-3.0.1.tgz#4e0917e5a02139ef978a1ed470543ab41dd3626b" - integrity sha512-hbkYJc20SBDz2qqLzttjI/EqXemtmWk0ooRznLsiXp3066KQRTvuKHa7U4jCZCJq6Dozqvy0R1/vNESC9inPJg== +"@smithy/config-resolver@^3.0.5": + version "3.0.5" + resolved "https://registry.yarnpkg.com/@smithy/config-resolver/-/config-resolver-3.0.5.tgz#727978bba7ace754c741c259486a19d3083431fd" + integrity sha512-SkW5LxfkSI1bUC74OtfBbdz+grQXYiPYolyu8VfpLIjEoN/sHVBlLeGXMQ1vX4ejkgfv6sxVbQJ32yF2cl1veA== dependencies: - "@smithy/node-config-provider" "^3.1.0" - "@smithy/types" "^3.0.0" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/types" "^3.3.0" "@smithy/util-config-provider" "^3.0.0" - "@smithy/util-middleware" "^3.0.0" - tslib "^2.6.2" - -"@smithy/core@^2.2.0": - version "2.2.1" - resolved "https://registry.yarnpkg.com/@smithy/core/-/core-2.2.1.tgz#92ed71eb96ef16d5ac8b23dbdf913bcb225ab875" - integrity sha512-R8Pzrr2v2oGUoj4CTZtKPr87lVtBsz7IUBGhSwS1kc6Cj0yPwNdYbkzhFsxhoDE9+BPl09VN/6rFsW9GJzWnBA== - dependencies: - "@smithy/middleware-endpoint" "^3.0.2" - "@smithy/middleware-retry" "^3.0.4" - "@smithy/middleware-serde" "^3.0.1" - "@smithy/protocol-http" "^4.0.1" - "@smithy/smithy-client" "^3.1.2" - "@smithy/types" "^3.1.0" - "@smithy/util-middleware" "^3.0.1" + "@smithy/util-middleware" "^3.0.3" tslib "^2.6.2" -"@smithy/credential-provider-imds@^3.1.0": - version "3.1.0" - resolved "https://registry.yarnpkg.com/@smithy/credential-provider-imds/-/credential-provider-imds-3.1.0.tgz#7e58b78aa8de13dd04e94829241cd1cbde59b6d3" - integrity sha512-q4A4d38v8pYYmseu/jTS3Z5I3zXlEOe5Obi+EJreVKgSVyWUHOd7/yaVCinC60QG4MRyCs98tcxBH1IMC0bu7Q== +"@smithy/core@^2.3.1": + version "2.3.1" + resolved "https://registry.yarnpkg.com/@smithy/core/-/core-2.3.1.tgz#99cb8eda23009fd7df736c82072dafcf4eb4ff5d" + integrity sha512-BC7VMXx/1BCmRPCVzzn4HGWAtsrb7/0758EtwOGFJQrlSwJBEjCcDLNZLFoL/68JexYa2s+KmgL/UfmXdG6v1w== dependencies: - "@smithy/node-config-provider" "^3.1.0" - "@smithy/property-provider" "^3.1.0" - "@smithy/types" "^3.0.0" - "@smithy/url-parser" "^3.0.0" + "@smithy/middleware-endpoint" "^3.1.0" + "@smithy/middleware-retry" "^3.0.13" + "@smithy/middleware-serde" "^3.0.3" + "@smithy/protocol-http" "^4.1.0" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" + "@smithy/util-middleware" "^3.0.3" tslib "^2.6.2" -"@smithy/fetch-http-handler@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/fetch-http-handler/-/fetch-http-handler-3.0.1.tgz#dacfdf6e70d639fac4a0f57c42ce13f0ed14ff22" - integrity sha512-uaH74i5BDj+rBwoQaXioKpI0SHBJFtOVwzrCpxZxphOW0ki5jhj7dXvDMYM2IJem8TpdFvS2iC08sjOblfFGFg== +"@smithy/credential-provider-imds@^3.2.0": + version "3.2.0" + resolved "https://registry.yarnpkg.com/@smithy/credential-provider-imds/-/credential-provider-imds-3.2.0.tgz#0e0e7ddaff1a8633cb927aee1056c0ab506b7ecf" + integrity sha512-0SCIzgd8LYZ9EJxUjLXBmEKSZR/P/w6l7Rz/pab9culE/RWuqelAKGJvn5qUOl8BgX8Yj5HWM50A5hiB/RzsgA== dependencies: - "@smithy/protocol-http" "^4.0.0" - "@smithy/querystring-builder" "^3.0.0" - "@smithy/types" "^3.0.0" - "@smithy/util-base64" "^3.0.0" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/property-provider" "^3.1.3" + "@smithy/types" "^3.3.0" + "@smithy/url-parser" "^3.0.3" tslib "^2.6.2" -"@smithy/fetch-http-handler@^3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@smithy/fetch-http-handler/-/fetch-http-handler-3.0.2.tgz#eff4056e819b3591d1c5d472ee58c2981886920a" - integrity sha512-0nW6tLK0b7EqSsfKvnOmZCgJqnodBAnvqcrlC5dotKfklLedPTRGsQamSVbVDWyuU/QGg+YbZDJUQ0CUufJXZQ== +"@smithy/fetch-http-handler@^3.2.4": + version "3.2.4" + resolved "https://registry.yarnpkg.com/@smithy/fetch-http-handler/-/fetch-http-handler-3.2.4.tgz#c754de7e0ff2541b73ac9ba7cc955940114b3d62" + integrity sha512-kBprh5Gs5h7ug4nBWZi1FZthdqSM+T7zMmsZxx0IBvWUn7dK3diz2SHn7Bs4dQGFDk8plDv375gzenDoNwrXjg== dependencies: - "@smithy/protocol-http" "^4.0.1" - "@smithy/querystring-builder" "^3.0.1" - "@smithy/types" "^3.1.0" + "@smithy/protocol-http" "^4.1.0" + "@smithy/querystring-builder" "^3.0.3" + "@smithy/types" "^3.3.0" "@smithy/util-base64" "^3.0.0" tslib "^2.6.2" -"@smithy/hash-node@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/hash-node/-/hash-node-3.0.0.tgz#f44b5fff193e241c1cdcc957b296b60f186f0e59" - integrity sha512-84qXstNemP3XS5jcof0el6+bDfjzuvhJPQTEfro3lgtbCtKgzPm3MgiS6ehXVPjeQ5+JS0HqmTz8f/RYfzHVxw== +"@smithy/hash-node@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/hash-node/-/hash-node-3.0.3.tgz#82c5cb7b0f1a29ee7319081853d2d158c07dff24" + integrity sha512-2ctBXpPMG+B3BtWSGNnKELJ7SH9e4TNefJS0cd2eSkOOROeBnnVBnAy9LtJ8tY4vUEoe55N4CNPxzbWvR39iBw== dependencies: - "@smithy/types" "^3.0.0" + "@smithy/types" "^3.3.0" "@smithy/util-buffer-from" "^3.0.0" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@smithy/invalid-dependency@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/invalid-dependency/-/invalid-dependency-3.0.0.tgz#21cb6b5203ee15321bfcc751f21f7a19536d4ae8" - integrity sha512-F6wBBaEFgJzj0s4KUlliIGPmqXemwP6EavgvDqYwCH40O5Xr2iMHvS8todmGVZtuJCorBkXsYLyTu4PuizVq5g== - dependencies: - "@smithy/types" "^3.0.0" - tslib "^2.6.2" - -"@smithy/is-array-buffer@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/is-array-buffer/-/is-array-buffer-3.0.0.tgz#9a95c2d46b8768946a9eec7f935feaddcffa5e7a" - integrity sha512-+Fsu6Q6C4RSJiy81Y8eApjEB5gVtM+oFKTffg+jSuwtvomJJrhUJBu2zS8wjXSgH/g1MKEWrzyChTBe6clb5FQ== - dependencies: - tslib "^2.6.2" - -"@smithy/middleware-content-length@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/middleware-content-length/-/middleware-content-length-3.0.0.tgz#084b3d22248967885d496eb0b105d9090e8ababd" - integrity sha512-3C4s4d/iGobgCtk2tnWW6+zSTOBg1PRAm2vtWZLdriwTroFbbWNSr3lcyzHdrQHnEXYCC5K52EbpfodaIUY8sg== - dependencies: - "@smithy/protocol-http" "^4.0.0" - "@smithy/types" "^3.0.0" - tslib "^2.6.2" - -"@smithy/middleware-endpoint@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/middleware-endpoint/-/middleware-endpoint-3.0.1.tgz#49e8defb8e892e70417bd05f1faaf207070f32c7" - integrity sha512-lQ/UOdGD4KM5kLZiAl0q8Qy3dPbynvAXKAdXnYlrA1OpaUwr+neSsVokDZpY6ZVb5Yx8jnus29uv6XWpM9P4SQ== - dependencies: - "@smithy/middleware-serde" "^3.0.0" - "@smithy/node-config-provider" "^3.1.0" - "@smithy/shared-ini-file-loader" "^3.1.0" - "@smithy/types" "^3.0.0" - "@smithy/url-parser" "^3.0.0" - "@smithy/util-middleware" "^3.0.0" - tslib "^2.6.2" - -"@smithy/middleware-endpoint@^3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@smithy/middleware-endpoint/-/middleware-endpoint-3.0.2.tgz#93bb575a25bb0bd5d1d18cd77157ccb2ba15112a" - integrity sha512-gWEaGYB3Bei17Oiy/F2IlUPpBazNXImytoOdJ1xbrUOaJKAOiUhx8/4FOnYLLJHdAwa9PlvJ2ULda2f/Dnwi9w== - dependencies: - "@smithy/middleware-serde" "^3.0.1" - "@smithy/node-config-provider" "^3.1.1" - "@smithy/shared-ini-file-loader" "^3.1.1" - "@smithy/types" "^3.1.0" - "@smithy/url-parser" "^3.0.1" - "@smithy/util-middleware" "^3.0.1" - tslib "^2.6.2" - -"@smithy/middleware-retry@^3.0.3": +"@smithy/invalid-dependency@^3.0.3": version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/middleware-retry/-/middleware-retry-3.0.3.tgz#8e9af1c9db4bc8904d73126225211b42b562f961" - integrity sha512-Wve1qzJb83VEU/6q+/I0cQdAkDnuzELC6IvIBwDzUEiGpKqXgX1v10FUuZGbRS6Ov/P+HHthcAoHOJZQvZNAkA== + resolved "https://registry.yarnpkg.com/@smithy/invalid-dependency/-/invalid-dependency-3.0.3.tgz#8d9fd70e3a94b565a4eba4ffbdc95238e1930528" + integrity sha512-ID1eL/zpDULmHJbflb864k72/SNOZCADRc9i7Exq3RUNJw6raWUSlFEQ+3PX3EYs++bTxZB2dE9mEHTQLv61tw== dependencies: - "@smithy/node-config-provider" "^3.1.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/service-error-classification" "^3.0.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" - "@smithy/util-middleware" "^3.0.0" - "@smithy/util-retry" "^3.0.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" - uuid "^9.0.1" -"@smithy/middleware-retry@^3.0.4": - version "3.0.4" - resolved "https://registry.yarnpkg.com/@smithy/middleware-retry/-/middleware-retry-3.0.4.tgz#4f1a23c218fe279659c3d88ec1c18bf19938eba6" - integrity sha512-Tu+FggbLNF5G9L6Wi8o32Mg4bhlBInWlhhaFKyytGRnkfxGopxFVXJQn7sjZdFYJyTz6RZZa06tnlvavUgtoVg== +"@smithy/is-array-buffer@^2.2.0": + version "2.2.0" + resolved "https://registry.yarnpkg.com/@smithy/is-array-buffer/-/is-array-buffer-2.2.0.tgz#f84f0d9f9a36601a9ca9381688bd1b726fd39111" + integrity sha512-GGP3O9QFD24uGeAXYUjwSTXARoqpZykHadOmA8G5vfJPK0/DC67qa//0qvqrJzL1xc8WQWX7/yc7fwudjPHPhA== dependencies: - "@smithy/node-config-provider" "^3.1.1" - "@smithy/protocol-http" "^4.0.1" - "@smithy/service-error-classification" "^3.0.1" - "@smithy/smithy-client" "^3.1.2" - "@smithy/types" "^3.1.0" - "@smithy/util-middleware" "^3.0.1" - "@smithy/util-retry" "^3.0.1" tslib "^2.6.2" - uuid "^9.0.1" -"@smithy/middleware-serde@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/middleware-serde/-/middleware-serde-3.0.0.tgz#786da6a6bc0e5e51d669dac834c19965245dd302" - integrity sha512-I1vKG1foI+oPgG9r7IMY1S+xBnmAn1ISqployvqkwHoSb8VPsngHDTOgYGYBonuOKndaWRUGJZrKYYLB+Ane6w== - dependencies: - "@smithy/types" "^3.0.0" - tslib "^2.6.2" - -"@smithy/middleware-serde@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/middleware-serde/-/middleware-serde-3.0.1.tgz#566ec46ee84873108c1cea26b3f3bd2899a73249" - integrity sha512-ak6H/ZRN05r5+SR0/IUc5zOSyh2qp3HReg1KkrnaSLXmncy9lwOjNqybX4L4x55/e5mtVDn1uf/gQ6bw5neJPw== - dependencies: - "@smithy/types" "^3.1.0" - tslib "^2.6.2" - -"@smithy/middleware-stack@^3.0.0": +"@smithy/is-array-buffer@^3.0.0": version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/middleware-stack/-/middleware-stack-3.0.0.tgz#00f112bae7af5fc3bd37d4fab95ebce0f17a7774" - integrity sha512-+H0jmyfAyHRFXm6wunskuNAqtj7yfmwFB6Fp37enytp2q047/Od9xetEaUbluyImOlGnGpaVGaVfjwawSr+i6Q== + resolved "https://registry.yarnpkg.com/@smithy/is-array-buffer/-/is-array-buffer-3.0.0.tgz#9a95c2d46b8768946a9eec7f935feaddcffa5e7a" + integrity sha512-+Fsu6Q6C4RSJiy81Y8eApjEB5gVtM+oFKTffg+jSuwtvomJJrhUJBu2zS8wjXSgH/g1MKEWrzyChTBe6clb5FQ== dependencies: - "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@smithy/middleware-stack@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/middleware-stack/-/middleware-stack-3.0.1.tgz#9418f1295efda318c181bf3bca65173a75d133e5" - integrity sha512-fS5uT//y1SlBdkzIvgmWQ9FufwMXrHSSbuR25ygMy1CRDIZkcBMoF4oTMYNfR9kBlVBcVzlv7joFdNrFuQirPA== +"@smithy/middleware-content-length@^3.0.5": + version "3.0.5" + resolved "https://registry.yarnpkg.com/@smithy/middleware-content-length/-/middleware-content-length-3.0.5.tgz#1680aa4fb2a1c0505756103c9a5c2916307d9035" + integrity sha512-ILEzC2eyxx6ncej3zZSwMpB5RJ0zuqH7eMptxC4KN3f+v9bqT8ohssKbhNR78k/2tWW+KS5Spw+tbPF4Ejyqvw== dependencies: - "@smithy/types" "^3.1.0" + "@smithy/protocol-http" "^4.1.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/node-config-provider@^3.1.0": +"@smithy/middleware-endpoint@^3.1.0": version "3.1.0" - resolved "https://registry.yarnpkg.com/@smithy/node-config-provider/-/node-config-provider-3.1.0.tgz#e962987c4e2e2b8b50397de5f4745eb21ee7bdbb" - integrity sha512-ngfB8QItUfTFTfHMvKuc2g1W60V1urIgZHqD1JNFZC2tTWXahqf2XvKXqcBS7yZqR7GqkQQZy11y/lNOUWzq7Q== - dependencies: - "@smithy/property-provider" "^3.1.0" - "@smithy/shared-ini-file-loader" "^3.1.0" - "@smithy/types" "^3.0.0" - tslib "^2.6.2" - -"@smithy/node-config-provider@^3.1.1": - version "3.1.1" - resolved "https://registry.yarnpkg.com/@smithy/node-config-provider/-/node-config-provider-3.1.1.tgz#a361ab228d2229b03cc2fbdfd304055c38127614" - integrity sha512-z5G7+ysL4yUtMghUd2zrLkecu0mTfnYlt5dR76g/HsFqf7evFazwiZP1ag2EJenGxNBDwDM5g8nm11NPogiUVA== - dependencies: - "@smithy/property-provider" "^3.1.1" - "@smithy/shared-ini-file-loader" "^3.1.1" - "@smithy/types" "^3.1.0" - tslib "^2.6.2" - -"@smithy/node-http-handler@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/node-http-handler/-/node-http-handler-3.0.0.tgz#e771ea95d03e259f04b7b37e8aece8a4fffc8cdc" - integrity sha512-3trD4r7NOMygwLbUJo4eodyQuypAWr7uvPnebNJ9a70dQhVn+US8j/lCnvoJS6BXfZeF7PkkkI0DemVJw+n+eQ== - dependencies: - "@smithy/abort-controller" "^3.0.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/querystring-builder" "^3.0.0" - "@smithy/types" "^3.0.0" + resolved "https://registry.yarnpkg.com/@smithy/middleware-endpoint/-/middleware-endpoint-3.1.0.tgz#9b8a496d87a68ec43f3f1a0139868d6765a88119" + integrity sha512-5y5aiKCEwg9TDPB4yFE7H6tYvGFf1OJHNczeY10/EFF8Ir8jZbNntQJxMWNfeQjC1mxPsaQ6mR9cvQbf+0YeMw== + dependencies: + "@smithy/middleware-serde" "^3.0.3" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/shared-ini-file-loader" "^3.1.4" + "@smithy/types" "^3.3.0" + "@smithy/url-parser" "^3.0.3" + "@smithy/util-middleware" "^3.0.3" + tslib "^2.6.2" + +"@smithy/middleware-retry@^3.0.13": + version "3.0.13" + resolved "https://registry.yarnpkg.com/@smithy/middleware-retry/-/middleware-retry-3.0.13.tgz#3bdd662aff01f360fcbaa166500bbc575dc9d1d0" + integrity sha512-zvCLfaRYCaUmjbF2yxShGZdolSHft7NNCTA28HVN9hKcEbOH+g5irr1X9s+in8EpambclGnevZY4A3lYpvDCFw== + dependencies: + "@smithy/node-config-provider" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/service-error-classification" "^3.0.3" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" + "@smithy/util-middleware" "^3.0.3" + "@smithy/util-retry" "^3.0.3" tslib "^2.6.2" + uuid "^9.0.1" -"@smithy/node-http-handler@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/node-http-handler/-/node-http-handler-3.0.1.tgz#40e1ebe00aeb628a46a3a12b14ad6cabb69b576e" - integrity sha512-hlBI6MuREA4o1wBMEt+QNhUzoDtFFvwR6ecufimlx9D79jPybE/r8kNorphXOi91PgSO9S2fxRjcKCLk7Jw8zA== +"@smithy/middleware-serde@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/middleware-serde/-/middleware-serde-3.0.3.tgz#74d974460f74d99f38c861e6862984543a880a66" + integrity sha512-puUbyJQBcg9eSErFXjKNiGILJGtiqmuuNKEYNYfUD57fUl4i9+mfmThtQhvFXU0hCVG0iEJhvQUipUf+/SsFdA== dependencies: - "@smithy/abort-controller" "^3.0.1" - "@smithy/protocol-http" "^4.0.1" - "@smithy/querystring-builder" "^3.0.1" - "@smithy/types" "^3.1.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/property-provider@^3.1.0": - version "3.1.0" - resolved "https://registry.yarnpkg.com/@smithy/property-provider/-/property-provider-3.1.0.tgz#b78d4964a1016b90331cc0c770b472160361fde7" - integrity sha512-Tj3+oVhqdZgemjCiWjFlADfhvLF4C/uKDuKo7/tlEsRQ9+3emCreR2xndj970QSRSsiCEU8hZW3/8JQu+n5w4Q== +"@smithy/middleware-stack@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/middleware-stack/-/middleware-stack-3.0.3.tgz#91845c7e61e6f137fa912b623b6def719a4f6ce7" + integrity sha512-r4klY9nFudB0r9UdSMaGSyjyQK5adUyPnQN/ZM6M75phTxOdnc/AhpvGD1fQUvgmqjQEBGCwpnPbDm8pH5PapA== dependencies: - "@smithy/types" "^3.0.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/property-provider@^3.1.1": - version "3.1.1" - resolved "https://registry.yarnpkg.com/@smithy/property-provider/-/property-provider-3.1.1.tgz#4849b69b83ac97e68e80d2dc0c2b98ce5950dffe" - integrity sha512-YknOMZcQkB5on+MU0DvbToCmT2YPtTETMXW0D3+/Iln7ezT+Zm1GMHhCW1dOH/X/+LkkQD9aXEoCX/B10s4Xdw== +"@smithy/node-config-provider@^3.1.4": + version "3.1.4" + resolved "https://registry.yarnpkg.com/@smithy/node-config-provider/-/node-config-provider-3.1.4.tgz#05647bed666aa8036a1ad72323c1942e5d421be1" + integrity sha512-YvnElQy8HR4vDcAjoy7Xkx9YT8xZP4cBXcbJSgm/kxmiQu08DwUwj8rkGnyoJTpfl/3xYHH+d8zE+eHqoDCSdQ== dependencies: - "@smithy/types" "^3.1.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/shared-ini-file-loader" "^3.1.4" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/protocol-http@^4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@smithy/protocol-http/-/protocol-http-4.0.0.tgz#04df3b5674b540323f678e7c4113e8abd8b26432" - integrity sha512-qOQZOEI2XLWRWBO9AgIYuHuqjZ2csyr8/IlgFDHDNuIgLAMRx2Bl8ck5U5D6Vh9DPdoaVpuzwWMa0xcdL4O/AQ== +"@smithy/node-http-handler@^3.1.4": + version "3.1.4" + resolved "https://registry.yarnpkg.com/@smithy/node-http-handler/-/node-http-handler-3.1.4.tgz#be4195e45639e690d522cd5f11513ea822ff9d5f" + integrity sha512-+UmxgixgOr/yLsUxcEKGH0fMNVteJFGkmRltYFHnBMlogyFdpzn2CwqWmxOrfJELhV34v0WSlaqG1UtE1uXlJg== dependencies: - "@smithy/types" "^3.0.0" + "@smithy/abort-controller" "^3.1.1" + "@smithy/protocol-http" "^4.1.0" + "@smithy/querystring-builder" "^3.0.3" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/protocol-http@^4.0.1": - version "4.0.1" - resolved "https://registry.yarnpkg.com/@smithy/protocol-http/-/protocol-http-4.0.1.tgz#7b57080565816f229d2391726f537e13371c7e38" - integrity sha512-eBhm9zwcFPEazc654c0BEWtxYAzrw+OhoSf5pkwKzfftWKXRoqEhwOE2Pvn30v0iAdo7Mfsfb6pi1NnZlGCMpg== +"@smithy/property-provider@^3.1.3": + version "3.1.3" + resolved "https://registry.yarnpkg.com/@smithy/property-provider/-/property-provider-3.1.3.tgz#afd57ea82a3f6c79fbda95e3cb85c0ee0a79f39a" + integrity sha512-zahyOVR9Q4PEoguJ/NrFP4O7SMAfYO1HLhB18M+q+Z4KFd4V2obiMnlVoUFzFLSPeVt1POyNWneHHrZaTMoc/g== dependencies: - "@smithy/types" "^3.1.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/querystring-builder@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/querystring-builder/-/querystring-builder-3.0.0.tgz#48a9aa7b700e8409368c21bc0adf7564e001daea" - integrity sha512-bW8Fi0NzyfkE0TmQphDXr1AmBDbK01cA4C1Z7ggwMAU5RDz5AAv/KmoRwzQAS0kxXNf/D2ALTEgwK0U2c4LtRg== +"@smithy/protocol-http@^4.1.0": + version "4.1.0" + resolved "https://registry.yarnpkg.com/@smithy/protocol-http/-/protocol-http-4.1.0.tgz#23519d8f45bf4f33960ea5415847bc2b620a010b" + integrity sha512-dPVoHYQ2wcHooGXg3LQisa1hH0e4y0pAddPMeeUPipI1tEOqL6A4N0/G7abeq+K8wrwSgjk4C0wnD1XZpJm5aA== dependencies: - "@smithy/types" "^3.0.0" - "@smithy/util-uri-escape" "^3.0.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/querystring-builder@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/querystring-builder/-/querystring-builder-3.0.1.tgz#8fb20e1d13154661612954c5ba448e0875be6118" - integrity sha512-vKitpnG/2KOMVlx3x1S3FkBH075EROG3wcrcDaNerQNh8yuqnSL23btCD2UyX4i4lpPzNW6VFdxbn2Z25b/g5Q== +"@smithy/querystring-builder@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/querystring-builder/-/querystring-builder-3.0.3.tgz#6b0e566f885bb84938d077c69e8f8555f686af13" + integrity sha512-vyWckeUeesFKzCDaRwWLUA1Xym9McaA6XpFfAK5qI9DKJ4M33ooQGqvM4J+LalH4u/Dq9nFiC8U6Qn1qi0+9zw== dependencies: - "@smithy/types" "^3.1.0" + "@smithy/types" "^3.3.0" "@smithy/util-uri-escape" "^3.0.0" tslib "^2.6.2" -"@smithy/querystring-parser@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/querystring-parser/-/querystring-parser-3.0.0.tgz#fa1ed0cee408cd4d622070fa874bc50ac1a379b7" - integrity sha512-UzHwthk0UEccV4dHzPySnBy34AWw3V9lIqUTxmozQ+wPDAO9csCWMfOLe7V9A2agNYy7xE+Pb0S6K/J23JSzfQ== - dependencies: - "@smithy/types" "^3.0.0" - tslib "^2.6.2" - -"@smithy/querystring-parser@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/querystring-parser/-/querystring-parser-3.0.1.tgz#68589196fedf280aad2c0a69a2a016f78b2137cf" - integrity sha512-Qt8DMC05lVS8NcQx94lfVbZSX+2Ym7032b/JR8AlboAa/D669kPzqb35dkjkvAG6+NWmUchef3ENtrD6F+5n8Q== +"@smithy/querystring-parser@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/querystring-parser/-/querystring-parser-3.0.3.tgz#272a6b83f88dfcbbec8283d72a6bde850cc00091" + integrity sha512-zahM1lQv2YjmznnfQsWbYojFe55l0SLG/988brlLv1i8z3dubloLF+75ATRsqPBboUXsW6I9CPGE5rQgLfY0vQ== dependencies: - "@smithy/types" "^3.1.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/service-error-classification@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/service-error-classification/-/service-error-classification-3.0.0.tgz#06a45cb91b15b8b0d5f3b1df2b3743d2ca42f5c4" - integrity sha512-3BsBtOUt2Gsnc3X23ew+r2M71WwtpHfEDGhHYHSDg6q1t8FrWh15jT25DLajFV1H+PpxAJ6gqe9yYeRUsmSdFA== - dependencies: - "@smithy/types" "^3.0.0" - -"@smithy/service-error-classification@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/service-error-classification/-/service-error-classification-3.0.1.tgz#23db475d3cef726e8bf3435229e6e04e4de92430" - integrity sha512-ubFUvIePjDCyIzZ+pLETqNC6KXJ/fc6g+/baqel7Zf6kJI/kZKgjwkCI7zbUhoUuOZ/4eA/87YasVu40b/B4bA== - dependencies: - "@smithy/types" "^3.1.0" - -"@smithy/shared-ini-file-loader@^3.1.0": - version "3.1.0" - resolved "https://registry.yarnpkg.com/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.0.tgz#a4cb9304c3be1c232ec661132ca88d177ac7a5b1" - integrity sha512-dAM7wSX0NR3qTNyGVN/nwwpEDzfV9T/3AN2eABExWmda5VqZKSsjlINqomO5hjQWGv+IIkoXfs3u2vGSNz8+Rg== +"@smithy/service-error-classification@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/service-error-classification/-/service-error-classification-3.0.3.tgz#73484255060a094aa9372f6cd972dcaf97e3ce80" + integrity sha512-Jn39sSl8cim/VlkLsUhRFq/dKDnRUFlfRkvhOJaUbLBXUsLRLNf9WaxDv/z9BjuQ3A6k/qE8af1lsqcwm7+DaQ== dependencies: - "@smithy/types" "^3.0.0" - tslib "^2.6.2" + "@smithy/types" "^3.3.0" -"@smithy/shared-ini-file-loader@^3.1.1": - version "3.1.1" - resolved "https://registry.yarnpkg.com/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.1.tgz#752ecd8962a660ded75d25341a48feb94f145a6f" - integrity sha512-nD6tXIX2126/P9e3wqRY1bm9dTtPZwRDyjVOd18G28o+1UOG+kOVgUwujE795HslSuPlEgqzsH5sgNP1hDjj9g== +"@smithy/shared-ini-file-loader@^3.1.4": + version "3.1.4" + resolved "https://registry.yarnpkg.com/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.4.tgz#7dceaf5a5307a2ee347ace8aba17312a1a3ede15" + integrity sha512-qMxS4hBGB8FY2GQqshcRUy1K6k8aBWP5vwm8qKkCT3A9K2dawUwOIJfqh9Yste/Bl0J2lzosVyrXDj68kLcHXQ== dependencies: - "@smithy/types" "^3.1.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/signature-v4@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/signature-v4/-/signature-v4-3.0.0.tgz#f536d0abebfeeca8e9aab846a4042658ca07d3b7" - integrity sha512-kXFOkNX+BQHe2qnLxpMEaCRGap9J6tUGLzc3A9jdn+nD4JdMwCKTJ+zFwQ20GkY+mAXGatyTw3HcoUlR39HwmA== +"@smithy/signature-v4@^4.1.0": + version "4.1.0" + resolved "https://registry.yarnpkg.com/@smithy/signature-v4/-/signature-v4-4.1.0.tgz#251ff43dc1f4ad66776122732fea9e56efc56443" + integrity sha512-aRryp2XNZeRcOtuJoxjydO6QTaVhxx/vjaR+gx7ZjaFgrgPRyZ3HCTbfwqYj6ZWEBHkCSUfcaymKPURaByukag== dependencies: "@smithy/is-array-buffer" "^3.0.0" - "@smithy/types" "^3.0.0" + "@smithy/protocol-http" "^4.1.0" + "@smithy/types" "^3.3.0" "@smithy/util-hex-encoding" "^3.0.0" - "@smithy/util-middleware" "^3.0.0" + "@smithy/util-middleware" "^3.0.3" "@smithy/util-uri-escape" "^3.0.0" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@smithy/smithy-client@^3.1.1": - version "3.1.1" - resolved "https://registry.yarnpkg.com/@smithy/smithy-client/-/smithy-client-3.1.1.tgz#9aa770edd9b6277dc4124c924c617a436cdb670e" - integrity sha512-tj4Ku7MpzZR8cmVuPcSbrLFVxmptWktmJMwST/uIEq4sarabEdF8CbmQdYB7uJ/X51Qq2EYwnRsoS7hdR4B7rA== - dependencies: - "@smithy/middleware-endpoint" "^3.0.1" - "@smithy/middleware-stack" "^3.0.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/types" "^3.0.0" - "@smithy/util-stream" "^3.0.1" - tslib "^2.6.2" - -"@smithy/smithy-client@^3.1.2": - version "3.1.2" - resolved "https://registry.yarnpkg.com/@smithy/smithy-client/-/smithy-client-3.1.2.tgz#1c27ab4910bbfd6c0bc04ddd8412494e7a7daba7" - integrity sha512-f3eQpczBOFUtdT/ptw2WpUKu1qH1K7xrssrSiHYtd9TuLXkvFqb88l9mz9FHeUVNSUxSnkW1anJnw6rLwUKzQQ== +"@smithy/smithy-client@^3.1.11": + version "3.1.11" + resolved "https://registry.yarnpkg.com/@smithy/smithy-client/-/smithy-client-3.1.11.tgz#f12a7a0acaa7db3ead488ddf12ef4681daec11a7" + integrity sha512-l0BpyYkciNyMaS+PnFFz4aO5sBcXvGLoJd7mX9xrMBIm2nIQBVvYgp2ZpPDMzwjKCavsXu06iuCm0F6ZJZc6yQ== dependencies: - "@smithy/middleware-endpoint" "^3.0.2" - "@smithy/middleware-stack" "^3.0.1" - "@smithy/protocol-http" "^4.0.1" - "@smithy/types" "^3.1.0" - "@smithy/util-stream" "^3.0.2" + "@smithy/middleware-endpoint" "^3.1.0" + "@smithy/middleware-stack" "^3.0.3" + "@smithy/protocol-http" "^4.1.0" + "@smithy/types" "^3.3.0" + "@smithy/util-stream" "^3.1.3" tslib "^2.6.2" "@smithy/types@^2.5.0": @@ -839,36 +689,20 @@ dependencies: tslib "^2.5.0" -"@smithy/types@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/types/-/types-3.0.0.tgz#00231052945159c64ffd8b91e8909d8d3006cb7e" - integrity sha512-VvWuQk2RKFuOr98gFhjca7fkBS+xLLURT8bUjk5XQoV0ZLm7WPwWPPY3/AwzTLuUBDeoKDCthfe1AsTUWaSEhw== +"@smithy/types@^3.3.0": + version "3.3.0" + resolved "https://registry.yarnpkg.com/@smithy/types/-/types-3.3.0.tgz#fae037c733d09bc758946a01a3de0ef6e210b16b" + integrity sha512-IxvBBCTFDHbVoK7zIxqA1ZOdc4QfM5HM7rGleCuHi7L1wnKv5Pn69xXJQ9hgxH60ZVygH9/JG0jRgtUncE3QUA== dependencies: tslib "^2.6.2" -"@smithy/types@^3.1.0": - version "3.1.0" - resolved "https://registry.yarnpkg.com/@smithy/types/-/types-3.1.0.tgz#e2eb2e2130026a8a0631b2605c17df1975aa99d6" - integrity sha512-qi4SeCVOUPjhSSZrxxB/mB8DrmuSFUcJnD9KXjuP+7C3LV/KFV4kpuUSH3OHDZgQB9TEH/1sO/Fq/5HyaK9MPw== - dependencies: - tslib "^2.6.2" - -"@smithy/url-parser@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/url-parser/-/url-parser-3.0.0.tgz#5fdc77cd22051c1aac6531be0315bfcba0fa705d" - integrity sha512-2XLazFgUu+YOGHtWihB3FSLAfCUajVfNBXGGYjOaVKjLAuAxx3pSBY3hBgLzIgB17haf59gOG3imKqTy8mcrjw== - dependencies: - "@smithy/querystring-parser" "^3.0.0" - "@smithy/types" "^3.0.0" - tslib "^2.6.2" - -"@smithy/url-parser@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/url-parser/-/url-parser-3.0.1.tgz#5451fc7034e9eda112696d1a9508746a7f8b0521" - integrity sha512-G140IlNFlzYWVCedC4E2d6NycM1dCUbe5CnsGW1hmGt4hYKiGOw0v7lVru9WAn5T2w09QEjl4fOESWjGmCvVmg== +"@smithy/url-parser@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/url-parser/-/url-parser-3.0.3.tgz#e8a060d9810b24b1870385fc2b02485b8a6c5955" + integrity sha512-pw3VtZtX2rg+s6HMs6/+u9+hu6oY6U7IohGhVNnjbgKy86wcIsSZwgHrFR+t67Uyxvp4Xz3p3kGXXIpTNisq8A== dependencies: - "@smithy/querystring-parser" "^3.0.1" - "@smithy/types" "^3.1.0" + "@smithy/querystring-parser" "^3.0.3" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@smithy/util-base64@^3.0.0": @@ -894,6 +728,14 @@ dependencies: tslib "^2.6.2" +"@smithy/util-buffer-from@^2.2.0": + version "2.2.0" + resolved "https://registry.yarnpkg.com/@smithy/util-buffer-from/-/util-buffer-from-2.2.0.tgz#6fc88585165ec73f8681d426d96de5d402021e4b" + integrity sha512-IJdWBbTcMQ6DA0gdNhh/BwrLkDR+ADW5Kr1aZmd4k3DIF6ezMV4R2NIAmT08wQJ3yUK82thHWmC/TnK/wpMMIA== + dependencies: + "@smithy/is-array-buffer" "^2.2.0" + tslib "^2.6.2" + "@smithy/util-buffer-from@^3.0.0": version "3.0.0" resolved "https://registry.yarnpkg.com/@smithy/util-buffer-from/-/util-buffer-from-3.0.0.tgz#559fc1c86138a89b2edaefc1e6677780c24594e3" @@ -909,37 +751,37 @@ dependencies: tslib "^2.6.2" -"@smithy/util-defaults-mode-browser@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.3.tgz#6fff11a6c407ca1d5a1dc009768bd09271b199c2" - integrity sha512-3DFON2bvXJAukJe+qFgPV/rorG7ZD3m4gjCXHD1V5z/tgKQp5MCTCLntrd686tX6tj8Uli3lefWXJudNg5WmCA== +"@smithy/util-defaults-mode-browser@^3.0.13": + version "3.0.13" + resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.13.tgz#f574bbb89d60f5dcc443f106087d317b370634d0" + integrity sha512-ZIRSUsnnMRStOP6OKtW+gCSiVFkwnfQF2xtf32QKAbHR6ACjhbAybDvry+3L5qQYdh3H6+7yD/AiUE45n8mTTw== dependencies: - "@smithy/property-provider" "^3.1.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" bowser "^2.11.0" tslib "^2.6.2" -"@smithy/util-defaults-mode-node@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.3.tgz#0b52ba9cb1138ee9076feba9a733462b2e2e6093" - integrity sha512-D0b8GJXecT00baoSQ3Iieu3k3mZ7GY8w1zmg8pdogYrGvWJeLcIclqk2gbkG4K0DaBGWrO6v6r20iwIFfDYrmA== +"@smithy/util-defaults-mode-node@^3.0.13": + version "3.0.13" + resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.13.tgz#cdd3a08bb5af4d17c2b0a951af9936ce7f3bae93" + integrity sha512-voUa8TFJGfD+U12tlNNLCDlXibt9vRdNzRX45Onk/WxZe7TS+hTOZouEZRa7oARGicdgeXvt1A0W45qLGYdy+g== dependencies: - "@smithy/config-resolver" "^3.0.1" - "@smithy/credential-provider-imds" "^3.1.0" - "@smithy/node-config-provider" "^3.1.0" - "@smithy/property-provider" "^3.1.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" + "@smithy/config-resolver" "^3.0.5" + "@smithy/credential-provider-imds" "^3.2.0" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/property-provider" "^3.1.3" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/util-endpoints@^2.0.1": - version "2.0.1" - resolved "https://registry.yarnpkg.com/@smithy/util-endpoints/-/util-endpoints-2.0.1.tgz#4ea8069bfbf3ebbcbe106b5156ff59a7a627b7dd" - integrity sha512-ZRT0VCOnKlVohfoABMc8lWeQo/JEFuPWctfNRXgTHbyOVssMOLYFUNWukxxiHRGVAhV+n3c0kPW+zUqckjVPEA== +"@smithy/util-endpoints@^2.0.5": + version "2.0.5" + resolved "https://registry.yarnpkg.com/@smithy/util-endpoints/-/util-endpoints-2.0.5.tgz#e3a7a4d1c41250bfd2b2d890d591273a7d8934be" + integrity sha512-ReQP0BWihIE68OAblC/WQmDD40Gx+QY1Ez8mTdFMXpmjfxSyz2fVQu3A4zXRfQU9sZXtewk3GmhfOHswvX+eNg== dependencies: - "@smithy/node-config-provider" "^3.1.0" - "@smithy/types" "^3.0.0" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@smithy/util-hex-encoding@^3.0.0": @@ -949,62 +791,31 @@ dependencies: tslib "^2.6.2" -"@smithy/util-middleware@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/util-middleware/-/util-middleware-3.0.0.tgz#64d775628b99a495ca83ce982f5c83aa45f1e894" - integrity sha512-q5ITdOnV2pXHSVDnKWrwgSNTDBAMHLptFE07ua/5Ty5WJ11bvr0vk2a7agu7qRhrCFRQlno5u3CneU5EELK+DQ== - dependencies: - "@smithy/types" "^3.0.0" - tslib "^2.6.2" - -"@smithy/util-middleware@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/util-middleware/-/util-middleware-3.0.1.tgz#3e0eabaf936e62651a0b9a7c7c3bbe43d3971c91" - integrity sha512-WRODCQtUsO7vIvfrdxS8RFPeLKcewYtaCglZsBsedIKSUGIIvMlZT5oh+pCe72I+1L+OjnZuqRNpN2LKhWA4KQ== - dependencies: - "@smithy/types" "^3.1.0" - tslib "^2.6.2" - -"@smithy/util-retry@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/util-retry/-/util-retry-3.0.0.tgz#8a0c47496aab74e1dfde4905d462ad636a8824bb" - integrity sha512-nK99bvJiziGv/UOKJlDvFF45F00WgPLKVIGUfAK+mDhzVN2hb/S33uW2Tlhg5PVBoqY7tDVqL0zmu4OxAHgo9g== - dependencies: - "@smithy/service-error-classification" "^3.0.0" - "@smithy/types" "^3.0.0" - tslib "^2.6.2" - -"@smithy/util-retry@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/util-retry/-/util-retry-3.0.1.tgz#24037ff87a314a1ac99f80da43f579ae2352fe18" - integrity sha512-5lRtYm+8fNFEUTdqZXg5M4ppVp40rMIJfR1TpbHAhKQgPIDpWT+iYMaqgnwEbtpi9U1smyUOPv5Sg+M1neOBgw== +"@smithy/util-middleware@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/util-middleware/-/util-middleware-3.0.3.tgz#07bf9602682f5a6c55bc2f0384303f85fc68c87e" + integrity sha512-l+StyYYK/eO3DlVPbU+4Bi06Jjal+PFLSMmlWM1BEwyLxZ3aKkf1ROnoIakfaA7mC6uw3ny7JBkau4Yc+5zfWw== dependencies: - "@smithy/service-error-classification" "^3.0.1" - "@smithy/types" "^3.1.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/util-stream@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/util-stream/-/util-stream-3.0.1.tgz#3cf527bcd3fec82c231c38d47dd75f3364747edb" - integrity sha512-7F7VNNhAsfMRA8I986YdOY5fE0/T1/ZjFF6OLsqkvQVNP3vZ/szYDfGCyphb7ioA09r32K/0qbSFfNFU68aSzA== +"@smithy/util-retry@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/util-retry/-/util-retry-3.0.3.tgz#9b2ac0dbb1c81f69812a8affa4d772bebfc0e049" + integrity sha512-AFw+hjpbtVApzpNDhbjNG5NA3kyoMs7vx0gsgmlJF4s+yz1Zlepde7J58zpIRIsdjc+emhpAITxA88qLkPF26w== dependencies: - "@smithy/fetch-http-handler" "^3.0.1" - "@smithy/node-http-handler" "^3.0.0" - "@smithy/types" "^3.0.0" - "@smithy/util-base64" "^3.0.0" - "@smithy/util-buffer-from" "^3.0.0" - "@smithy/util-hex-encoding" "^3.0.0" - "@smithy/util-utf8" "^3.0.0" + "@smithy/service-error-classification" "^3.0.3" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/util-stream@^3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@smithy/util-stream/-/util-stream-3.0.2.tgz#ed1377bfe824d8acfc105ab2d17ec4f376382cb2" - integrity sha512-n5Obp5AnlI6qHo8sbupwrcpBe6vFp4qkl0SRNuExKPNrH3ABAMG2ZszRTIUIv2b4AsFrCO+qiy4uH1Q3z1dxTA== +"@smithy/util-stream@^3.1.3": + version "3.1.3" + resolved "https://registry.yarnpkg.com/@smithy/util-stream/-/util-stream-3.1.3.tgz#699ee2397cc1d474e46d2034039d5263812dca64" + integrity sha512-FIv/bRhIlAxC0U7xM1BCnF2aDRPq0UaelqBHkM2lsCp26mcBbgI0tCVTv+jGdsQLUmAMybua/bjDsSu8RQHbmw== dependencies: - "@smithy/fetch-http-handler" "^3.0.2" - "@smithy/node-http-handler" "^3.0.1" - "@smithy/types" "^3.1.0" + "@smithy/fetch-http-handler" "^3.2.4" + "@smithy/node-http-handler" "^3.1.4" + "@smithy/types" "^3.3.0" "@smithy/util-base64" "^3.0.0" "@smithy/util-buffer-from" "^3.0.0" "@smithy/util-hex-encoding" "^3.0.0" @@ -1018,6 +829,14 @@ dependencies: tslib "^2.6.2" +"@smithy/util-utf8@^2.0.0": + version "2.3.0" + resolved "https://registry.yarnpkg.com/@smithy/util-utf8/-/util-utf8-2.3.0.tgz#dd96d7640363259924a214313c3cf16e7dd329c5" + integrity sha512-R8Rdn8Hy72KKcebgLiv8jQcQkXoLMOGGv5uI1/k0l+snqkOzQ1R0ChUBCxWMlBsFMekWjq0wRudIweFs7sKT5A== + dependencies: + "@smithy/util-buffer-from" "^2.2.0" + tslib "^2.6.2" + "@smithy/util-utf8@^3.0.0": version "3.0.0" resolved "https://registry.yarnpkg.com/@smithy/util-utf8/-/util-utf8-3.0.0.tgz#1a6a823d47cbec1fd6933e5fc87df975286d9d6a" @@ -1031,10 +850,10 @@ bowser@^2.11.0: resolved "https://registry.yarnpkg.com/bowser/-/bowser-2.11.0.tgz#5ca3c35757a7aa5771500c70a73a9f91ef420a8f" integrity sha512-AlcaJBi/pqqJBIQ8U9Mcpc9i8Aqxn88Skv5d+xBX006BY5u8N3mGLHa5Lgppa7L/HfwgwLgZ6NYs+Ag6uUmJRA== -fast-xml-parser@4.2.5: - version "4.2.5" - resolved "https://registry.yarnpkg.com/fast-xml-parser/-/fast-xml-parser-4.2.5.tgz#a6747a09296a6cb34f2ae634019bf1738f3b421f" - integrity sha512-B9/wizE4WngqQftFPmdaMYlXoJlJOYxGQOanC77fq9k8+Z0v5dDSVh+3glErdIROP//s/jgb7ZuxKfB8nVyo0g== +fast-xml-parser@4.4.1: + version "4.4.1" + resolved "https://registry.yarnpkg.com/fast-xml-parser/-/fast-xml-parser-4.4.1.tgz#86dbf3f18edf8739326447bcaac31b4ae7f6514f" + integrity sha512-xkjOecfnKGkSsOwtZ5Pz7Us/T6mrbPQrq0nh+aCO5V9nk5NLWmasAHumTKjiPJPWANe+kAZ84Jc8ooJkzZ88Sw== dependencies: strnum "^1.0.5" @@ -1043,12 +862,7 @@ strnum@^1.0.5: resolved "https://registry.yarnpkg.com/strnum/-/strnum-1.0.5.tgz#5c4e829fe15ad4ff0d20c3db5ac97b73c9b072db" integrity sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA== -tslib@^1.11.1: - version "1.14.1" - resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" - integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== - -tslib@^2.3.1, tslib@^2.5.0, tslib@^2.6.2: +tslib@^2.5.0, tslib@^2.6.2: version "2.6.2" resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.2.tgz#703ac29425e7b37cd6fd456e92404d46d1f3e4ae" integrity sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q== diff --git a/services/ui-src/package.json b/services/ui-src/package.json index 40c10cc74..39edf88ae 100644 --- a/services/ui-src/package.json +++ b/services/ui-src/package.json @@ -17,11 +17,11 @@ "@testing-library/user-event": "^14.5.1", "@vitejs/plugin-react": "^4.2.1", "aws-amplify": "^5.3.4", + "date-fns": "^3.6.0", "font-awesome": "^4.7.0", "jsonpath": "^1.0.2", "launchdarkly-react-client-sdk": "^3.3.2", "mathjs": "^7.5.0", - "moment": "^2.29.4", "prop-types": "^15.7.2", "react": "^16.13.1", "react-data-table-component": "^6.11.6", @@ -36,7 +36,7 @@ "redux-logger": "^3.0.6", "redux-thunk": "^2.3.0", "sass": "^1.77.1", - "vite": "^5.2.11", + "vite": "^5.4.6", "vite-tsconfig-paths": "^4.3.2" }, "scripts": { diff --git a/services/ui-src/serverless.yml b/services/ui-src/serverless.yml index 711d6d61f..eff1d6bdf 100644 --- a/services/ui-src/serverless.yml +++ b/services/ui-src/serverless.yml @@ -29,7 +29,6 @@ custom: serverlessTerminationProtection: stages: - main - - master - val - production api_region: ${param:ApiRegion} diff --git a/services/ui-src/src/AppRoutes.jsx b/services/ui-src/src/AppRoutes.jsx index d75a296c7..93c69821e 100644 --- a/services/ui-src/src/AppRoutes.jsx +++ b/services/ui-src/src/AppRoutes.jsx @@ -5,7 +5,7 @@ import Home from "./components/layout/Home"; import Footer from "./components/layout/Footer"; import Print from "./components/sections/Print"; import Spinner from "./components/utils/Spinner"; -import Userinfo from "./components/sections/Userinfo"; +import UserInfo from "./components/sections/UserInfo"; import UserProfile from "./components/sections/UserProfile"; import { LocalLogins } from "./components/sections/login/LocalLogins"; import { useUser } from "./hooks/authHooks"; @@ -45,7 +45,7 @@ const AppRoutes = () => { {/* These routes are available to everyone, so define them here */} - + diff --git a/services/ui-src/src/actions/uncertify.js b/services/ui-src/src/actions/uncertify.js index b908de0d5..d9bfefc74 100644 --- a/services/ui-src/src/actions/uncertify.js +++ b/services/ui-src/src/actions/uncertify.js @@ -6,7 +6,7 @@ export const UNCERTIFY = "UNCERTIFY"; export const UNCERTIFY_SUCCESS = "UNCERTIFY_SUCCESS"; export const UNCERTIFY_FAILURE = "UNCERTIFY_FAILURE"; -export const theUncertify = +export const uncertifyReport = (stateCode, reportYear) => async (dispatch, getState) => { const stateObject = getState(); const user = stateObject.stateUser.currentUser; diff --git a/services/ui-src/src/components/fields/DataGrid.jsx b/services/ui-src/src/components/fields/DataGrid.jsx index 4b913d5b1..99a40a1ab 100644 --- a/services/ui-src/src/components/fields/DataGrid.jsx +++ b/services/ui-src/src/components/fields/DataGrid.jsx @@ -1,12 +1,13 @@ import React, { useEffect, useState } from "react"; +import { useDispatch, useSelector } from "react-redux"; import PropTypes from "prop-types"; import Question from "./Question"; -import { connect, useDispatch } from "react-redux"; import { ADD_TO_TOTAL, FINISH_CALCULATION } from "../../store/lastYearTotals"; -const DataGrid = ({ question, lastYearFormData }) => { +const DataGrid = ({ question, printView }) => { const [renderQuestions, setRenderQuestions] = useState([]); const [questionsToSet, setQuestionsToSet] = useState([]); + const lastYearFormData = useSelector((state) => state.lastYearFormData); const dispatch = useDispatch(); const rowStyle = @@ -138,6 +139,7 @@ const DataGrid = ({ question, lastYearFormData }) => { hideNumber={question.type !== "fieldset"} question={question.question} prevYear={question.prevYear} + printView={printView} /> ); @@ -148,16 +150,7 @@ const DataGrid = ({ question, lastYearFormData }) => { DataGrid.propTypes = { question: PropTypes.object.isRequired, - year: PropTypes.number.isRequired, - state: PropTypes.string.isRequired, - lastYearFormData: PropTypes.object.isRequired, + printView: PropTypes.bool, }; -const mapStateToProps = (state) => ({ - year: state.formData[0].contents.section.year, - state: state.formData[0].contents.section.state, - lastYearFormData: state.lastYearFormData, - lastYearTotals: state.lastYearTotals, -}); - -export default connect(mapStateToProps)(DataGrid); +export default DataGrid; diff --git a/services/ui-src/src/components/fields/Fieldset.jsx b/services/ui-src/src/components/fields/Fieldset.jsx index f4982f4ae..d70c69073 100644 --- a/services/ui-src/src/components/fields/Fieldset.jsx +++ b/services/ui-src/src/components/fields/Fieldset.jsx @@ -3,9 +3,9 @@ import PropTypes from "prop-types"; import Question from "./Question"; import DataGrid from "./DataGrid"; -import { SynthesizedTable } from "./SynthesizedTable"; +import SynthesizedTable from "./SynthesizedTable"; import { NoninteractiveTable } from "./NoninteractiveTable"; -import { SynthesizedValue } from "./SynthesizedValue"; +import SynthesizedValue from "./SynthesizedValue"; /* * Not done: diff --git a/services/ui-src/src/components/fields/Integer.jsx b/services/ui-src/src/components/fields/Integer.jsx index fee83e44f..ecd344142 100644 --- a/services/ui-src/src/components/fields/Integer.jsx +++ b/services/ui-src/src/components/fields/Integer.jsx @@ -4,12 +4,54 @@ import { TextField } from "@cmsgov/design-system"; import { useSelector } from "react-redux"; import { generateQuestionNumber } from "../utils/helperFunctions"; -const Integer = ({ onChange, question, prevYear, ...props }) => { +const getPrevYearValue = (question, lastYearFormData) => { + let prevYearValue; + + // Split and create array from id + const splitID = question.id.split("-"); + + // the subquestion id (a, b, c, etc) + const questionId = splitID[5]; + + // Custom handling for -03-c-05 and -03-c-06 + if ( + splitID[1] === "03" && + splitID[2] === "c" && + (splitID[3] === "05" || splitID[3] === "06") && + questionId === "a" && + parseInt(splitID[4]) > 2 && + parseInt(splitID[4]) < 10 + ) { + // Set year to last year + splitID[0] = parseInt(splitID[0]) - 1; + splitID.pop(); + + const fieldsetId = splitID.join("-"); + const partIndex = parseInt(splitID[3]) - 1; + + // Get questions from last years JSON + const questions = + lastYearFormData?.[3]?.contents.section.subsections[2].parts[partIndex] + .questions; + + // Filter down to this question + const matchingQuestion = questions?.filter( + (question) => fieldsetId === question?.fieldset_info?.id + ); + + // The first will always be correct + if (matchingQuestion?.[0]) { + prevYearValue = matchingQuestion[0].questions[0].answer?.entry; + } + } + return prevYearValue; +}; + +const Integer = ({ onChange, question, prevYear, printView, ...props }) => { const [error, setError] = useState(false); const [answer, setAnswer] = useState(question.answer.entry); - const lastYearTotals = useSelector((state) => state.lastYearTotals); - const prevYearNumber = - lastYearTotals[question.id.substring(0, question.id.length - 2)]; + const lastYearFormData = useSelector((state) => state.lastYearFormData); + const change = ({ target: { name, value } }) => { const stripped = value.replace(/[^0-9]+/g, ""); const parsed = parseFloat(stripped); @@ -25,22 +67,26 @@ const Integer = ({ onChange, question, prevYear, ...props }) => { } }; - if (prevYearNumber && question.id.indexOf("-a") > -1) { + const isLessThanElevenMask = (value) => { return ( - + printView && + question.mask === "lessThanEleven" && + value <= 10 && + value > 0 ); - } - const renderAnswer = (val) => (val || Number.isInteger(val) ? val : ""); // may attempt to rerender string on page load, so both val || isInteger + }; + + const renderAnswer = () => { + if (answer === null) { + const value = + getPrevYearValue(question, lastYearFormData) ?? prevYear?.value; + if (isLessThanElevenMask(value)) return "<11"; + return value; + } else { + if (isLessThanElevenMask(answer)) return "<11"; + return answer || Number.isInteger(answer) ? answer : ""; + } + }; return ( { name={question.id} numeric onChange={change} - value={answer != null ? renderAnswer(answer) : prevYear && prevYear.value} + value={renderAnswer()} {...props} /> ); @@ -59,7 +105,7 @@ Integer.propTypes = { onChange: PropTypes.func.isRequired, question: PropTypes.object.isRequired, prevYear: PropTypes.object, + printView: PropTypes.bool, }; -export { Integer }; export default Integer; diff --git a/services/ui-src/src/components/fields/Integer.test.jsx b/services/ui-src/src/components/fields/Integer.test.jsx index e9bb8095e..54f8672ab 100644 --- a/services/ui-src/src/components/fields/Integer.test.jsx +++ b/services/ui-src/src/components/fields/Integer.test.jsx @@ -6,7 +6,40 @@ import Integer from "./Integer"; import { screen, render, fireEvent } from "@testing-library/react"; const mockStore = configureMockStore(); -const store = mockStore({ lastYearTotals: { 2022: [] } }); +const lastYearFormData = [ + {}, + {}, + {}, + { + contents: { + section: { + subsections: [ + {}, + {}, + { + parts: [ + {}, + {}, + {}, + {}, + { + questions: [ + { + fieldset_info: { + id: "2022-03-c-05-03", + }, + questions: [{ answer: { entry: 3000 } }], + }, + ], + }, + ], + }, + ], + }, + }, + }, +]; +const store = mockStore({ lastYearTotals: { 2022: [] }, lastYearFormData }); const buildInteger = (intProps) => { return ( @@ -14,6 +47,7 @@ const buildInteger = (intProps) => { ); }; + describe("", () => { it("should render correctly", () => { const props = { question: { id: "2023-00-a-01-01", answer: 1 } }; @@ -29,7 +63,7 @@ describe("", () => { const props = { question: { id: "2023-00-a-01-01", - label: "How many lightbulbs does it take to change a man?", + label: "Example Question", answer: { entry: 123 }, }, }; @@ -45,7 +79,7 @@ describe("", () => { const props = { question: { id: "2023-00-a-01-01", - label: "How many lightbulbs does it take to change a man?", + label: "Example Question", answer: { entry: 123 }, }, }; @@ -61,7 +95,7 @@ describe("", () => { const props = { question: { id: "2023-00-a-01-01", - label: "How many lightbulbs does it take to change a man?", + label: "Example Question", answer: { entry: "hope" }, }, }; @@ -73,4 +107,67 @@ describe("", () => { expect(screen.queryByDisplayValue("raw text")).not.toBeInTheDocument(); expect(screen.getByRole("alert")).toBeInTheDocument(); }); + + it("should show <11 if passed >0 and <=10 with printView and lessThanEleven", () => { + const props = { + question: { + id: "2023-00-a-01-01", + label: "Example Question", + answer: { entry: "5" }, + mask: "lessThanEleven", + }, + printView: true, + }; + + render(buildInteger(props)); + expect(screen.getByDisplayValue("<11")).toBeInTheDocument(); + expect(screen.queryByDisplayValue("5")).not.toBeInTheDocument(); + }); + + it("should show original answer if passed >=11 with printView and lessThanEleven mask", () => { + const props = { + question: { + id: "2023-00-a-01-01", + label: "Example Question", + answer: { entry: "12" }, + mask: "lessThanEleven", + }, + printView: true, + }; + + render(buildInteger(props)); + expect(screen.getByDisplayValue("12")).toBeInTheDocument(); + }); + + it("should show original answer if passed 0 with printView and lessThanEleven mask", () => { + const props = { + question: { + id: "2023-00-a-01-01", + label: "Example Question", + answer: { entry: "0" }, + mask: "lessThanEleven", + }, + printView: true, + }; + + render(buildInteger(props)); + expect(screen.getByDisplayValue("0")).toBeInTheDocument(); + }); + + it("should render previous year value for appropriate 3c part 5 or 6 questions", () => { + const props = { + question: { + id: "2023-03-c-05-03-a", + label: "How much?", + answer: { entry: null }, + }, + }; + + render(buildInteger(props)); + + expect(screen.getByDisplayValue("3000")).toBeInTheDocument(); + const input = screen.getByRole("textbox"); + fireEvent.change(input, { target: { value: 234 } }); + expect(screen.getByDisplayValue("234")).toBeInTheDocument(); + }); }); diff --git a/services/ui-src/src/components/fields/Money.jsx b/services/ui-src/src/components/fields/Money.jsx index d7fcce141..dba1ac251 100644 --- a/services/ui-src/src/components/fields/Money.jsx +++ b/services/ui-src/src/components/fields/Money.jsx @@ -1,6 +1,6 @@ import React from "react"; import PropTypes from "prop-types"; -import { Integer } from "./Integer"; +import Integer from "./Integer"; const Money = ({ ...props }) => { return ; diff --git a/services/ui-src/src/components/fields/Objective.jsx b/services/ui-src/src/components/fields/Objective.jsx index a7470e65e..abf0796e7 100644 --- a/services/ui-src/src/components/fields/Objective.jsx +++ b/services/ui-src/src/components/fields/Objective.jsx @@ -4,14 +4,13 @@ import { AccordionButton, AccordionPanel } from "@reach/accordion"; import Question from "./Question"; -const Objective = ({ headerRef, objective, objectiveNumber }) => { +const Objective = ({ headerRef, objective, objectiveNumber, printView }) => { const first = objective.questions[0].answer.readonly === true; const name = first ? objective.questions[0].answer.default_entry : objective.questions[0].answer.entry; const children = first ? objective.questions.slice(1) : objective.questions; - return ( <>
@@ -27,7 +26,7 @@ const Objective = ({ headerRef, objective, objectiveNumber }) => { {children.map((q) => (
- +
))}
@@ -38,6 +37,7 @@ Objective.propTypes = { headerRef: PropTypes.func.isRequired, objective: PropTypes.object.isRequired, objectiveNumber: PropTypes.number.isRequired, + printView: PropTypes.bool, }; export { Objective }; diff --git a/services/ui-src/src/components/fields/Objectives.jsx b/services/ui-src/src/components/fields/Objectives.jsx index 4953ed21f..f80167133 100644 --- a/services/ui-src/src/components/fields/Objectives.jsx +++ b/services/ui-src/src/components/fields/Objectives.jsx @@ -16,9 +16,9 @@ const Objectives = ({ disabled, question, removeObjectiveFrom, + printView, }) => { const ref = useRef(); - const add = () => { addObjectiveTo(question.id); @@ -47,7 +47,12 @@ const Objectives = ({ > {question.questions.map((q, i) => ( - + ))} @@ -92,6 +97,7 @@ Objectives.propTypes = { disabled: PropTypes.bool.isRequired, question: PropTypes.object.isRequired, removeObjectiveFrom: PropTypes.func.isRequired, + printView: PropTypes.bool, }; const mapDispatchToProps = { diff --git a/services/ui-src/src/components/fields/Question.jsx b/services/ui-src/src/components/fields/Question.jsx index 0d1b20674..88716bebc 100644 --- a/services/ui-src/src/components/fields/Question.jsx +++ b/services/ui-src/src/components/fields/Question.jsx @@ -1,16 +1,15 @@ import React from "react"; import PropTypes from "prop-types"; -import { connect } from "react-redux"; - +import { useSelector, shallowEqual, useDispatch } from "react-redux"; +// components import { Checkbox } from "./Checkbox"; import { CheckboxFlag } from "./CheckboxFlag"; import { CMSLegend } from "./CMSLegend"; import { DateRange } from "./DateRange"; import { Email } from "./Email"; import { Fieldset } from "./Fieldset"; -//import { FileUpload } from "./FileUpload"; import UploadComponent from "../layout/UploadComponent"; -import { Integer } from "./Integer"; +import Integer from "./Integer"; import { MailingAddress } from "./MailingAddress"; import { Money } from "./Money"; import { Objectives } from "./Objectives"; @@ -22,7 +21,7 @@ import { Repeatables } from "./Repeatables"; import { SkipText } from "./SkipText"; import Text from "./Text"; import { TextMedium, TextMultiline, TextSmall } from "./TextOther"; - +// utils import { setAnswerEntry } from "../../actions/initial"; import { selectIsFormEditable } from "../../store/selectors"; import { showQuestionByPath } from "../utils/helperFunctions"; @@ -61,10 +60,9 @@ Container.propTypes = { const Question = ({ hideNumber, question, - readonly, - setAnswer, prevYear, tableTitle, + printView, ...props }) => { let Component = Text; @@ -72,17 +70,35 @@ const Question = ({ Component = questionTypes.get(question.type); } + const [stateUser, formData, formYear, reportStatus] = useSelector( + (state) => [ + state.stateUser, + state.formData, + state.global.formYear, + state.reportStatus, + ], + shallowEqual + ); + const dispatch = useDispatch(); + + const readonly = !selectIsFormEditable( + reportStatus, + formData, + stateUser, + formYear + ); + const prevYearDisabled = prevYear ? prevYear.disabled : false; const onChange = ({ target: { name: id, value } }) => { - setAnswer(id, value); + dispatch(setAnswerEntry(id, value)); }; const onClick = (e) => { if (e.target.checked) { - setAnswer(e.target.name, ""); + dispatch(setAnswerEntry(e.target.name, "")); } else if (e.target.checked !== undefined) { - setAnswer(e.target.name, e.target.value); + dispatch(setAnswerEntry(e.target.name, e.target.value)); } }; @@ -117,7 +133,6 @@ const Question = ({ questionType={question.type} /> )} - {/* If there are subquestions, wrap them so they are indented with the @@ -145,7 +161,12 @@ const Question = ({ {shouldRenderChildren && (
{question.questions.map((q) => ( - + ))}
)} @@ -153,24 +174,16 @@ const Question = ({
); }; + Question.propTypes = { hideNumber: PropTypes.bool, question: PropTypes.object.isRequired, - readonly: PropTypes.bool.isRequired, - setAnswer: PropTypes.func.isRequired, prevYear: PropTypes.object, tableTitle: PropTypes.string, + printView: PropTypes.bool, }; Question.defaultProps = { hideNumber: false, }; -const mapState = (state) => ({ - readonly: !selectIsFormEditable(state), -}); - -const mapDispatchToProps = { - setAnswer: setAnswerEntry, -}; - -export default connect(mapState, mapDispatchToProps)(Question); +export default Question; diff --git a/services/ui-src/src/components/fields/Repeatable.jsx b/services/ui-src/src/components/fields/Repeatable.jsx index f32413bf4..644f34a36 100644 --- a/services/ui-src/src/components/fields/Repeatable.jsx +++ b/services/ui-src/src/components/fields/Repeatable.jsx @@ -4,7 +4,7 @@ import { AccordionButton, AccordionPanel } from "@reach/accordion"; import Question from "./Question"; -const Repeatable = ({ headerRef, number, question, type }) => { +const Repeatable = ({ headerRef, number, question, type, printView }) => { const children = question.questions ? question.questions : []; const title = type ? `${type} ${number}` : `${number}`; @@ -20,7 +20,7 @@ const Repeatable = ({ headerRef, number, question, type }) => { {children.map((q) => ( - + ))} @@ -31,6 +31,7 @@ Repeatable.propTypes = { number: PropTypes.number.isRequired, question: PropTypes.object.isRequired, type: PropTypes.oneOf([PropTypes.string, null]), + printView: PropTypes.bool, }; Repeatable.defaultProps = { diff --git a/services/ui-src/src/components/fields/Repeatables.jsx b/services/ui-src/src/components/fields/Repeatables.jsx index 14a13a72e..dc66bf27b 100644 --- a/services/ui-src/src/components/fields/Repeatables.jsx +++ b/services/ui-src/src/components/fields/Repeatables.jsx @@ -17,6 +17,7 @@ const Repeatables = ({ question, removeRepeatableFrom, type, + printView, }) => { const ref = useRef(); @@ -62,6 +63,7 @@ const Repeatables = ({ number={i + 1} question={q} type={question.typeLabel ? question.typeLabel : type} + printView={printView} /> ))} @@ -107,6 +109,7 @@ Repeatables.propTypes = { question: PropTypes.object.isRequired, removeRepeatableFrom: PropTypes.func.isRequired, type: PropTypes.oneOf([PropTypes.string, null]), + printView: PropTypes.bool, }; Repeatables.defaultProps = { type: null, diff --git a/services/ui-src/src/components/fields/SynthesizedTable.jsx b/services/ui-src/src/components/fields/SynthesizedTable.jsx index 87407c0ab..4f408b5bd 100644 --- a/services/ui-src/src/components/fields/SynthesizedTable.jsx +++ b/services/ui-src/src/components/fields/SynthesizedTable.jsx @@ -1,9 +1,40 @@ import React from "react"; -import PropTypes from "prop-types"; -import { connect } from "react-redux"; +import { useSelector, shallowEqual } from "react-redux"; +//utils import synthesizeValue from "../../util/synthesize"; +//types +import PropTypes from "prop-types"; + +const SynthesizedTable = ({ question, tableTitle }) => { + const [allStatesData, stateName, stateUserAbbr, chipEnrollments, formData] = + useSelector( + (state) => [ + state.allStatesData, + state.global.stateName, + state.stateUser.abbr, + state.enrollmentCounts.chipEnrollments, + state.formData, + ], + shallowEqual + ); + + const rows = question.fieldset_info.rows.map((row) => + row.map((cell) => { + const value = synthesizeValue( + cell, + allStatesData, + stateName, + stateUserAbbr, + chipEnrollments, + formData + ); + + return typeof value.contents === "number" && Number.isNaN(value.contents) + ? { contents: "Not Available" } + : value; + }) + ); -const SynthesizedTable = ({ rows, question, tableTitle }) => { return (
{ }; SynthesizedTable.propTypes = { question: PropTypes.object.isRequired, - rows: PropTypes.array.isRequired, + tableTitle: PropTypes.string.isOptional, }; -const mapStateToProps = (state, { question }) => { - const rows = question.fieldset_info.rows.map((row) => - row.map((cell) => { - const value = synthesizeValue(cell, state); - - return typeof value.contents === "number" && Number.isNaN(value.contents) - ? { contents: "Not Available" } - : value; - }) - ); - - return { rows }; -}; - -const ConnectedSynthesizedTable = connect(mapStateToProps)(SynthesizedTable); - -export { ConnectedSynthesizedTable as SynthesizedTable }; -export default ConnectedSynthesizedTable; +export default SynthesizedTable; diff --git a/services/ui-src/src/components/fields/SynthesizedValue.jsx b/services/ui-src/src/components/fields/SynthesizedValue.jsx index 7510afd23..dba9a6d73 100644 --- a/services/ui-src/src/components/fields/SynthesizedValue.jsx +++ b/services/ui-src/src/components/fields/SynthesizedValue.jsx @@ -1,11 +1,34 @@ import React from "react"; -import PropTypes from "prop-types"; -import { connect } from "react-redux"; - +import { useSelector, shallowEqual } from "react-redux"; +//components import Question from "./Question"; +//utils import synthesizeValue from "../../util/synthesize"; +//types +import PropTypes from "prop-types"; + +const SynthesizedValue = ({ question, ...props }) => { + const [allStatesData, stateName, stateUserAbbr, chipEnrollments, formData] = + useSelector( + (state) => [ + state.allStatesData, + state.global.stateName, + state.stateUser.abbr, + state.enrollmentCounts.chipEnrollments, + state.formData, + ], + shallowEqual + ); + + const value = synthesizeValue( + question.fieldset_info, + allStatesData, + stateName, + stateUserAbbr, + chipEnrollments, + formData + ).contents; -const SynthesizedValue = ({ question, value, ...props }) => { return (
Computed: {value} @@ -18,17 +41,6 @@ const SynthesizedValue = ({ question, value, ...props }) => { }; SynthesizedValue.propTypes = { question: PropTypes.object.isRequired, - value: PropTypes.oneOf([PropTypes.number, PropTypes.string]).isRequired, }; -const mapStateToProps = (state, { question: { fieldset_info: fsInfo } }) => { - return { - value: synthesizeValue(fsInfo, state).contents, - }; -}; - -const ConnectedSynthesizedValue = connect(mapStateToProps)(SynthesizedValue); - -export { ConnectedSynthesizedValue as SynthesizedValue }; - -export default ConnectedSynthesizedValue; +export default SynthesizedValue; diff --git a/services/ui-src/src/components/fields/Text.jsx b/services/ui-src/src/components/fields/Text.jsx index d7850f885..e80b28fb7 100644 --- a/services/ui-src/src/components/fields/Text.jsx +++ b/services/ui-src/src/components/fields/Text.jsx @@ -1,11 +1,21 @@ import React, { useEffect, useState } from "react"; -import PropTypes from "prop-types"; +import { useSelector, shallowEqual } from "react-redux"; +//components import { TextField } from "@cmsgov/design-system"; -import { connect } from "react-redux"; +//utils import { generateQuestionNumber } from "../utils/helperFunctions"; +// types +import PropTypes from "prop-types"; -const Text = ({ question, state, lastYearFormData, ...props }) => { +const Text = ({ question, ...props }) => { const [prevYearValue, setPrevYearValue] = useState(); + const [state, lastYearFormData] = useSelector( + (state) => [ + state.formData[0].contents?.section?.state, + state.lastYearFormData, + ], + shallowEqual + ); const getPrevYearValue = async () => { // Create array from id @@ -14,7 +24,7 @@ const Text = ({ question, state, lastYearFormData, ...props }) => { // Even years get inputs, odd years get previous year data const shouldGetPriorYear = splitID[0] % 2; - // If question is Part 6, section 3c, question 9 + // If question is on an odd year form, section 3c, part 5 or 6, and question 9 if ( shouldGetPriorYear && splitID[1] === "03" && @@ -88,16 +98,7 @@ const Text = ({ question, state, lastYearFormData, ...props }) => { }; Text.propTypes = { question: PropTypes.object.isRequired, - state: PropTypes.string.isRequired, disabled: PropTypes.bool, - year: PropTypes.number.isRequired, - lastYearFormData: PropTypes.array.isRequired, }; -const mapState = (state) => ({ - state: state.formData[0].contents?.section?.state, - year: state.formData[0].contents.section.year, - lastYearFormData: state.lastYearFormData, -}); - -export default connect(mapState)(Text); +export default Text; diff --git a/services/ui-src/src/components/layout/CertifyAndSubmit.jsx b/services/ui-src/src/components/layout/CertifyAndSubmit.jsx index e99b8b9d6..c0fb90e9c 100644 --- a/services/ui-src/src/components/layout/CertifyAndSubmit.jsx +++ b/services/ui-src/src/components/layout/CertifyAndSubmit.jsx @@ -1,19 +1,22 @@ import React, { useEffect } from "react"; -import { connect, useDispatch } from "react-redux"; -import moment from "moment"; -import PropTypes from "prop-types"; +import { shallowEqual, useDispatch, useSelector } from "react-redux"; import { Button, Dialog } from "@cmsgov/design-system"; import { useHistory } from "react-router-dom"; +import { format } from "date-fns"; +// components +import PageInfo from "./PageInfo"; +import FormActions from "./FormActions"; +// utils import { loadForm } from "../../actions/initial"; import { certifyAndSubmit } from "../../actions/certify"; -import PageInfo from "./PageInfo"; import { getCurrentReportStatus, selectIsFormEditable, } from "../../store/selectors"; -import FormActions from "./FormActions"; -import { AppRoles } from "../../types"; import useModal from "../../hooks/useModal"; +// types +import { AppRoles } from "../../types"; +import PropTypes from "prop-types"; const Submit = ({ openCertifyConfirmation }) => ( <> @@ -40,15 +43,25 @@ const Submit = ({ openCertifyConfirmation }) => ( Submit.propTypes = { openCertifyConfirmation: PropTypes.func.isRequired }; -const Thanks = ({ done: doneDispatch, lastSave, user }) => { +const Thanks = ({ done: doneDispatch, submitterUsername }) => { + const lastSave = useSelector( + (state) => + getCurrentReportStatus( + state.reportStatus, + state.formData, + state.stateUser, + state.global.formYear + ).lastChanged + ); + const formattedDate = lastSave ? format(lastSave, "PPP") : ""; + const formattedTime = lastSave ? format(lastSave, "p") : ""; return ( <>

Thank you for submitting your CARTS report!

- Submitted on {lastSave.format("MMMM Do, YYYY")} at{" "} - {lastSave.format("h:mm A")} by {user}. + Submitted on {formattedDate} at {formattedTime} by {submitterUsername}.

What to expect next

You‘ll hear from CMS if they have any questions about your report.

@@ -61,28 +74,39 @@ const Thanks = ({ done: doneDispatch, lastSave, user }) => { Thanks.propTypes = { done: PropTypes.func.isRequired, - lastSave: PropTypes.object.isRequired, - user: PropTypes.string.isRequired, + submitterUsername: PropTypes.string.isRequired, }; -const CertifyAndSubmit = ({ - certifyAndSubmit: certifyAction, - isCertified, - lastSave, - user, - currentUserRole, - state, -}) => { +const CertifyAndSubmit = () => { const dispatch = useDispatch(); const history = useHistory(); const { isShowing, toggleModal } = useModal(); + const [isCertified, submitterUsername, currentUserRole, state] = useSelector( + (state) => [ + !selectIsFormEditable( + state.reportStatus, + state.formData, + state.stateUser, + state.global.formYear + ), + getCurrentReportStatus( + state.reportStatus, + state.formData, + state.stateUser, + state.global.formYear + ).username, + state.stateUser.currentUser.role, + state.stateUser.abbr, + ], + shallowEqual + ); useEffect(() => { dispatch(loadForm(state)); - }, [user]); + }, [submitterUsername]); const confirmCertifyAction = () => { - certifyAction(); + dispatch(certifyAndSubmit()); toggleModal(); }; @@ -125,7 +149,7 @@ const CertifyAndSubmit = ({ {currentUserRole === AppRoles.STATE_USER &&

Certify and Submit

} {isCertified ? ( - + ) : ( )} @@ -135,38 +159,4 @@ const CertifyAndSubmit = ({ ); }; -CertifyAndSubmit.propTypes = { - certifyAndSubmit: PropTypes.func.isRequired, - isCertified: PropTypes.bool.isRequired, - lastSave: PropTypes.object.isRequired, - user: PropTypes.oneOf([PropTypes.string, null]), - currentUserRole: PropTypes.string.isRequired, -}; - -CertifyAndSubmit.defaultProps = { - user: null, -}; - -const mapState = (state) => ({ - isCertified: !selectIsFormEditable(state), - lastSave: moment( - getCurrentReportStatus( - state.reportStatus, - state.formData, - state.stateUser, - state.global - ).lastChanged - ), - user: getCurrentReportStatus( - state.reportStatus, - state.formData, - state.stateUser, - state.global - ).username, - currentUserRole: state.stateUser.currentUser.role, - state: state.stateUser.abbr, -}); - -const mapDispatch = { certifyAndSubmit }; - -export default connect(mapState, mapDispatch)(CertifyAndSubmit); +export default CertifyAndSubmit; diff --git a/services/ui-src/src/components/layout/DateRange.jsx b/services/ui-src/src/components/layout/DateRange.jsx index 304fd369c..1a152679c 100644 --- a/services/ui-src/src/components/layout/DateRange.jsx +++ b/services/ui-src/src/components/layout/DateRange.jsx @@ -1,114 +1,69 @@ -import React, { Component } from "react"; -import { connect } from "react-redux"; +import React, { useEffect, useState } from "react"; +//components import { TextField } from "@cmsgov/design-system"; +//types import PropTypes from "prop-types"; -/* - * This method checks that month input is appropriate: - * (not empty, max of 2 digits, no letters, between 1 & 12) - */ -const validateMonth = (input) => { - let returnString; - - // Handles an empty input field - if (input === "") { - returnString = "Month field cannot be empty"; - } - - // Prevents users from putting in more than 2 characters - if (input.length > 2) { - returnString = "Month length must not exceed 2"; - } - - // Checks for non-numeric characters - if (Number.isNaN(parseInt(input, 10)) || /^\d+$/.test(input) === false) { - returnString = "Please enter a number"; - } - - if (parseInt(input, 10) < 1 || parseInt(input, 10) > 12) { - // Checks that the month value is within a normal range - returnString = "Please enter a valid month number"; - } - return returnString; -}; +const DateRange = ({ onChange, question, year, ...props }) => { + const [endRangeErr, setEndRangeErr] = useState(false); + const [monthStart, setMonthStart] = useState(""); + const [monthEnd, setMonthEnd] = useState(""); + const [yearStart, setYearStart] = useState(""); + const [yearEnd, setYearEnd] = useState(""); + const [startErrorMessage, setStartErrorMessage] = useState([]); + const [endErrorMessage, setEndErrorMessage] = useState([]); -class DateRange extends Component { - constructor(props) { - super(props); - this.state = { - endRangeErr: false, - monthStart: "", - yearStart: "", - monthEnd: "", - yearEnd: "", - startErrorMessage: [], - endErrorMessage: [], - }; - this.handleInput = this.handleInput.bind(this); - - this.checkChronology = this.checkChronology.bind(this); - - this.validateStartInput = this.validateStartInput.bind(this); - this.validateEndInput = this.validateEndInput.bind(this); - - this.validateYear = this.validateYear.bind(this); - } - - componentDidMount() { + useEffect(() => { // Stored value example: ['2019-11-01', '2020-09-01'] - const { question } = this.props; const storedValue = question.answer.entry; - if (storedValue) { // Split each date string into an array and extract month and year variables with destructuring const [yearStartValue, monthStartValue] = storedValue[0].split("-"); // ie: '2019' and '11' const [yearEndValue, monthEndValue] = storedValue[1].split("-"); // ie: '2020' and '09' - this.setState({ - monthStart: monthStartValue ?? "", - monthEnd: monthEndValue ?? "", - yearStart: yearStartValue ?? "", - yearEnd: yearEndValue ?? "", - }); + setMonthStart(monthStartValue ?? ""); + setMonthEnd(monthEndValue ?? ""); + setYearStart(yearStartValue ?? ""); + setYearEnd(yearEndValue ?? ""); } else { - this.setState({ - monthStart: "", - monthEnd: "", - yearStart: "", - yearEnd: "", - }); + setMonthStart(""); + setMonthEnd(""); + setYearStart(""); + setYearEnd(""); } - } + }, []); + + useEffect(() => { + checkChronology(); + }, [startErrorMessage, endErrorMessage]); // This method checks all 4 fields to confirm that the start range is before the end range - checkChronology() { - const { onChange, question } = this.props; - const { yearStart, yearEnd, startErrorMessage, endErrorMessage } = - this.state; + const checkChronology = () => { const errorCheck = [...startErrorMessage, ...endErrorMessage]; // Array of all input errors in state - let { monthStart, monthEnd } = this.state; + let monthS = monthStart; + let monthE = monthEnd; + let yearS = yearStart; + let yearE = yearEnd; + let chronologyError; // Ensure that all 4 fields are filled in - if (monthStart && monthEnd && yearStart && yearEnd) { - // Turn the input into date objects for easy comparison - const startDate = new Date(yearStart, monthStart - 1); - const endDate = new Date(yearEnd, monthEnd - 1); + if (monthS && monthE && yearS && yearE) { + // Turn the input into date objects for easy comparison + const startDate = new Date(yearS, monthS - 1); + const endDate = new Date(yearE, monthE - 1); - monthStart = monthStart.padStart(2, "0"); - monthEnd = monthEnd.padStart(2, "0"); + monthS = monthS.padStart(2, "0"); + monthE = monthE.padStart(2, "0"); /* * The entry value for daterange must be sent to the server as an array of two strings * The format must be an ISO 8601 Date format. * Because we are only asking for month/year, the last digit is a placeholder of '01' */ - const payload = [ - `${yearStart}-${monthStart}-01`, - `${yearEnd}-${monthEnd}-01`, - ]; + const payload = [`${yearS}-${monthS}-01`, `${yearE}-${monthE}-01`]; if (startDate > endDate) { chronologyError = true; @@ -119,20 +74,44 @@ class DateRange extends Component { onChange([question.id, payload]); // Chronology is correct, no errors present, send data to redux } } + setEndRangeErr(chronologyError); + } + }; + + /* + * This method checks that month input is appropriate: + * (not empty, max of 2 digits, no letters, between 1 & 12) + */ + const validateMonth = (input) => { + let returnString; + + // Handles an empty input field + if (input === "") { + returnString = "Month field cannot be empty"; + } + + // Prevents users from putting in more than 2 characters + if (input.length > 2) { + returnString = "Month length must not exceed 2"; + } + + // Checks for non-numeric characters + if (Number.isNaN(parseInt(input, 10)) || /^\d+$/.test(input) === false) { + returnString = "Please enter a number"; + } - this.setState({ - endRangeErr: chronologyError, - }); + if (parseInt(input, 10) < 1 || parseInt(input, 10) > 12) { + // Checks that the month value is within a normal range + returnString = "Please enter a valid month number"; } - } + return returnString; + }; /* * This method checks that year input is appropriate * (not empty, max of 4 digits, no letters, reasonable year) */ - validateYear(input) { - const { year } = this.props; - + const validateYear = (input) => { let returnString; // Handles an empty input field if (input === "") { @@ -160,163 +139,143 @@ class DateRange extends Component { returnString = "Please enter a valid Year"; } return returnString; - } + }; // This method checks the first month/year input range and sets any validation errors to state - validateStartInput() { + const validateStartInput = () => { const startErrorArray = []; - const { monthStart, yearStart } = this.state; - startErrorArray.push(validateMonth(monthStart)); - startErrorArray.push(this.validateYear(yearStart)); - - this.setState( - { - startErrorMessage: startErrorArray, - }, - () => { - this.checkChronology(); - } - ); - } + startErrorArray.push(validateYear(yearStart)); + + setStartErrorMessage(startErrorArray); + }; // This method checks the second month/year input range and sets any validation errors to state - validateEndInput() { + const validateEndInput = () => { const endErrorArray = []; - const { monthEnd, yearEnd } = this.state; - endErrorArray.push(validateMonth(monthEnd)); - endErrorArray.push(this.validateYear(yearEnd)); - - this.setState( - { - endErrorMessage: endErrorArray, - }, - () => { - this.checkChronology(); - } - ); - } + endErrorArray.push(validateYear(yearEnd)); + + setEndErrorMessage(endErrorArray); + }; // This method takes all user input and sets it to state - handleInput(evt) { - this.setState({ - [evt.target.name]: evt.target.value ? evt.target.value : "", - }); - } - - // Store input values temporarily via input refs - - render() { - const { question } = this.props; - const { - startErrorMessage, - endErrorMessage, - endRangeErr, - monthStart, - monthEnd, - yearStart, - yearEnd, - } = this.state; - - return ( -
-
- - {question.answer.labels[0] ? question.answer.labels[0] : "Start"} - -
- {" "} - mm/yyyy -
-
- {startErrorMessage.map((e) => { - if (e !== undefined) { - return
{e}
; - } - return false; - })} -
-
- -
/
- -
+ const handleInput = (event) => { + const { name, value } = event.target; + switch (name) { + case "monthStart": + setMonthStart(value || ""); + break; + case "monthEnd": + setMonthEnd(value || ""); + break; + case "yearStart": + setYearStart(value || ""); + break; + case "yearEnd": + setYearEnd(value || ""); + break; + default: + throw new Error( + "Input name not supported. Unable to update date input!" + ); + } + }; + + return ( +
+
+ + {question.answer.labels[0] ? question.answer.labels[0] : "Start"} + +
+ mm/yyyy +
+
+ {startErrorMessage.map((e) => { + if (e !== undefined) { + return
{e}
; + } + return false; + })} +
+
+ +
/
+ +
+
+ +
+

+ {question.answer.labels[1] ? question.answer.labels[1] : "End"}{" "} +

+
+ mm/yyyy +
+
+ {endErrorMessage.map((e) => { + if (e !== undefined) { + return
{e}
; + } + return false; + })}
-
-

- {" "} - {question.answer.labels[1] ? question.answer.labels[1] : "End"}{" "} -

-
- {" "} - mm/yyyy -
-
- {endErrorMessage.map((e) => { - if (e !== undefined) { - return
{e}
; - } - return false; - })} -
- -
- -
/
- - -
-
- {endRangeErr === true ? ( -
End date must come after start date
- ) : null} -
+
+ +
/
+ + +
+
+ {endRangeErr === true ? ( +
End date must come after start date
+ ) : null}
- ); - } -} +
+ ); +}; DateRange.propTypes = { question: PropTypes.object.isRequired, @@ -328,8 +287,4 @@ DateRange.defaultProps = { year: new Date().getFullYear().toString(), // Returns the current year as a default }; -const mapStateToProps = (state) => ({ - year: state.global.formYear, -}); - -export default connect(mapStateToProps)(DateRange); +export default DateRange; diff --git a/services/ui-src/src/components/layout/DateRange.test.jsx b/services/ui-src/src/components/layout/DateRange.test.jsx index 7863b66e6..a27b097dd 100644 --- a/services/ui-src/src/components/layout/DateRange.test.jsx +++ b/services/ui-src/src/components/layout/DateRange.test.jsx @@ -210,8 +210,14 @@ describe("DateRange Component", () => { endYearInput.dispatchEvent(new Event("blur")); + /* + * Have to wait because jest trips over itself. Would use waitFor, but thats in the next + * version of the testing-lib. When upgrading testing-lib, swap this to waitFor + */ + await new Promise((r) => setTimeout(r, 400)); + expect( - screen.queryByText("End date must come after start date") + await screen.queryByText("End date must come after start date") ).toBeInTheDocument(); }); @@ -232,6 +238,12 @@ describe("DateRange Component", () => { endYearInput.dispatchEvent(new Event("blur")); + /* + * Have to wait because jest trips over itself. Would use waitFor, but thats in the next + * version of the testing-lib. When upgrading testing-lib, swap this to waitFor + */ + await new Promise((r) => setTimeout(r, 400)); + expect(mockPropsExistingAnswer.onChange).toBeCalledWith([ "mock-question-1", ["2022-10-01", "2023-09-01"], diff --git a/services/ui-src/src/components/layout/FormActions.jsx b/services/ui-src/src/components/layout/FormActions.jsx index cd2f3114d..f63403fd0 100644 --- a/services/ui-src/src/components/layout/FormActions.jsx +++ b/services/ui-src/src/components/layout/FormActions.jsx @@ -1,9 +1,10 @@ import React, { useState, useEffect, useRef } from "react"; +import { useSelector, shallowEqual } from "react-redux"; +// components import { Button } from "@cmsgov/design-system"; import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; import { faPrint, faWindowClose } from "@fortawesome/free-solid-svg-icons"; -import { connect } from "react-redux"; -import PropTypes from "prop-types"; +//types import { AppRoles } from "../../types"; /** @@ -12,20 +13,37 @@ import { AppRoles } from "../../types"; * @returns {JSX.Element} * @constructor */ -const FormActions = (props) => { +const FormActions = () => { + const [currentUser, formYear] = useSelector( + (state) => [state.stateUser.currentUser, state.global.formYear], + shallowEqual + ); + // Initialise printDialogeRef const printDialogeRef = useRef(null); - const { currentUser, formYear } = props; // Get section IDs and subsection IDs for printing single section - let searchParams = document.location.pathname - .toString() - .replace("/sections/", "") - .replace(formYear + "/", ""); + let searchParams = ""; + let sectionId = ""; - const sectionId = formYear + "-" + searchParams.substring(0, 2); - let subsectionId = sectionId + "-"; + if (currentUser.role === AppRoles.CMS_ADMIN) { + const stateId = window.location.href.split("/")[5]; + searchParams = document.location.pathname + .toString() + .replace(`views/sections/${stateId}/`, "") + .replace(formYear + "/", ""); + sectionId = formYear + "-" + searchParams.substring(1, 3); + } else { + searchParams = document.location.pathname + .toString() + .replace("/sections/", "") + .replace(formYear + "/", ""); + + sectionId = formYear + "-" + searchParams.substring(0, 2); + } + + let subsectionId = sectionId + "-"; if (sectionId.slice(-2) === "03") { subsectionId += searchParams.slice(-1); } else { @@ -163,15 +181,4 @@ const FormActions = (props) => { ); }; -FormActions.propTypes = { - currentUser: PropTypes.object.isRequired, - formYear: PropTypes.number.isRequired, -}; - -export const mapStateToProps = (state) => ({ - currentUser: state.stateUser.currentUser, - formYear: state.global.formYear, - printType: state.global.printType, -}); - -export default connect(mapStateToProps)(FormActions); +export default FormActions; diff --git a/services/ui-src/src/components/layout/FormActions.test.jsx b/services/ui-src/src/components/layout/FormActions.test.jsx index 77967b362..fdf31f5db 100644 --- a/services/ui-src/src/components/layout/FormActions.test.jsx +++ b/services/ui-src/src/components/layout/FormActions.test.jsx @@ -9,12 +9,14 @@ import { stateUserWithReportInProgress, } from "../../store/fakeStoreExamples"; import { MemoryRouter } from "react-router"; +const firstLocation = "/sections/2021/00"; +const adminFirstLocation = "/views/sections/AL/2021/00"; const mockStore = configureMockStore(); const store = mockStore(stateUserWithReportInProgress); const formActions = ( - + @@ -22,36 +24,76 @@ const formActions = ( const adminStore = mockStore(adminUserWithReportInProgress); const adminFormActions = ( - + ); + describe("Fill Form Component", () => { - it("should render correctly", () => { + afterEach(() => { + jest.clearAllMocks(); + }); + + test("should render correctly", () => { expect(shallow(formActions).exists()).toBe(true); }); - it("should add hrefs given a section and subsection", () => { + test("should add hrefs given a section and subsection", () => { render(formActions); + window.history.pushState({}, "Title", "/sections/00"); + const printShowButton = screen.getByTestId("print-show"); + fireEvent.click(printShowButton); + const printFormButton = screen.getByTestId("print-form"); + const printPageButton = screen.getByTestId("print-page"); + expect(printPageButton).toHaveAttribute( + "href", + "/print?year=2021&state=AL§ionId=2021-00&subsectionId=2021-00-a" + ); + expect(printFormButton).toHaveAttribute( + "href", + "/print?year=2021&state=AL" + ); + }); + + test("should add hrefs given a section and subsection for admin user", () => { + const setLocation = (path = "/") => { + delete window.location; + window.location = new URL("https://www.example.com" + path); + }; + + setLocation(adminFirstLocation); + render(adminFormActions); + window.history.pushState({}, "Title", "/00/a"); const printShowButton = screen.getByTestId("print-show"); fireEvent.click(printShowButton); const printFormButton = screen.getByTestId("print-form"); const printPageButton = screen.getByTestId("print-page"); - expect(printPageButton).toHaveAttribute("href"); - expect(printFormButton).toHaveAttribute("href"); + expect(printPageButton).toHaveAttribute( + "href", + "/print?year=2021&state=AL§ionId=2021-00&subsectionId=2021-00-a" + ); + expect(printFormButton).toHaveAttribute( + "href", + "/print?year=2021&state=AL" + ); }); - it("should build the component when looking at section 3 subsections", () => { - window.history.pushState({}, "Title", "/sections/03"); + test("should build the component when looking at section 3 subsections", () => { render(adminFormActions); - window.history.pushState({}, "Title", "/sections/03"); + window.history.pushState({}, "Title", "/03/a"); const printShowButton = screen.getByTestId("print-show"); fireEvent.click(printShowButton); const printFormButton = screen.getByTestId("print-form"); const printPageButton = screen.getByTestId("print-page"); - expect(printPageButton).toHaveAttribute("href"); - expect(printFormButton).toHaveAttribute("href"); + expect(printPageButton).toHaveAttribute( + "href", + "/print?year=2021&state=AL§ionId=2021-03&subsectionId=2021-03-a" + ); + expect(printFormButton).toHaveAttribute( + "href", + "/print?year=2021&state=AL" + ); }); - it("should display print section or page on click", () => { + test("should display print section or page on click", () => { render(formActions); const printShowButton = screen.getByTestId("print-show"); fireEvent.click(printShowButton); @@ -60,7 +102,7 @@ describe("Fill Form Component", () => { expect(printPageButton).toHaveTextContent("This Section"); expect(printFormButton).toHaveTextContent("Entire Form"); }); - it("should clear on click", () => { + test("should clear on click", () => { render(formActions); const printShowButton = screen.getByTestId("print-show"); fireEvent.click(printShowButton); @@ -72,7 +114,7 @@ describe("Fill Form Component", () => { expect(printPageButton).toBeNull(); expect(printFormButton).toBeNull(); }); - it("should not clear on internal click, then clear on outside click", () => { + test("should not clear on internal click, then clear on outside click", () => { const map = {}; document.addEventListener = jest.fn((event, cb) => { diff --git a/services/ui-src/src/components/layout/FormNavigation.jsx b/services/ui-src/src/components/layout/FormNavigation.jsx index 8f3d3222e..967c5c242 100644 --- a/services/ui-src/src/components/layout/FormNavigation.jsx +++ b/services/ui-src/src/components/layout/FormNavigation.jsx @@ -1,17 +1,28 @@ import React from "react"; -import PropTypes from "prop-types"; +import { useSelector, shallowEqual } from "react-redux"; +import { useHistory, useLocation } from "react-router-dom"; + +//components import { Button } from "@cmsgov/design-system"; import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; import { faAngleLeft, faAngleRight } from "@fortawesome/free-solid-svg-icons"; -import { connect } from "react-redux"; -import { withRouter } from "react-router-dom"; +//selectors import { selectSectionsForNav } from "../../store/selectors"; +//types import { AppRoles } from "../../types"; const idToUrl = (id) => `/sections/${id.replace(/-/g, "/")}`; -const FormNavigation = (props) => { - const { history, location, sections, role } = props; +const FormNavigation = () => { + const history = useHistory(); + const location = useLocation(); + + const [formData, role] = useSelector( + (state) => [state.formData, state.stateUser?.currentUser?.role], + shallowEqual + ); + + const sections = selectSectionsForNav(formData); const items = []; sections.forEach((section) => { @@ -120,16 +131,4 @@ const FormNavigation = (props) => { ); }; -FormNavigation.propTypes = { - history: PropTypes.object.isRequired, - location: PropTypes.object.isRequired, - sections: PropTypes.array.isRequired, - role: PropTypes.oneOfType([PropTypes.bool, PropTypes.string]).isRequired, -}; - -const mapStateToProps = (state) => ({ - sections: selectSectionsForNav(state), - role: state.stateUser?.currentUser?.role, -}); - -export default connect(mapStateToProps)(withRouter(FormNavigation)); +export default FormNavigation; diff --git a/services/ui-src/src/components/layout/Header.jsx b/services/ui-src/src/components/layout/Header.jsx index 86a310c2d..d7ff51cd6 100644 --- a/services/ui-src/src/components/layout/Header.jsx +++ b/services/ui-src/src/components/layout/Header.jsx @@ -17,11 +17,11 @@ import appLogo from "../../assets/images/MDCT_CARTS_2x.png"; export const Header = () => { const [isMenuOpen, setIsMenuOpen] = useState(false); - const [stateUser, formData, global, reportStatus] = useSelector( + const [stateUser, formData, formYear, reportStatus] = useSelector( (state) => [ state.stateUser, state.formData, - state.global, + state.global.formYear, state.reportStatus, ], shallowEqual @@ -31,7 +31,7 @@ export const Header = () => { reportStatus, formData, stateUser, - global + formYear ); const location = useLocation(); diff --git a/services/ui-src/src/components/layout/HomeAdmin.jsx b/services/ui-src/src/components/layout/HomeAdmin.jsx index 97b147bcf..dbbc59456 100644 --- a/services/ui-src/src/components/layout/HomeAdmin.jsx +++ b/services/ui-src/src/components/layout/HomeAdmin.jsx @@ -1,13 +1,13 @@ import React from "react"; -import PropTypes from "prop-types"; import { Link, Route } from "react-router-dom"; +import { Switch } from "react-router"; +// components import FormTemplates from "./FormTemplates"; import CMSHomepage from "../sections/homepage/CMSHomepage"; -import InvokeSection from "../utils/InvokeSection"; import Sidebar from "./Sidebar"; -import { Switch } from "react-router"; +// utils +import InvokeSection from "../utils/InvokeSection"; import ScrollToTop from "../utils/ScrollToTop"; -import { connect } from "react-redux"; const AdminHome = () => { return ( @@ -52,13 +52,5 @@ const AdminHome = () => { ); }; -AdminHome.propTypes = { - formYear: PropTypes.object.isRequired, -}; - -export const mapStateToProps = (state) => ({ - currentUser: state.stateUser.currentUser, - formYear: state.global.formYear, -}); -export default connect(mapStateToProps)(AdminHome); +export default AdminHome; diff --git a/services/ui-src/src/components/layout/PageInfo.jsx b/services/ui-src/src/components/layout/PageInfo.jsx index a291a0616..41dae237e 100644 --- a/services/ui-src/src/components/layout/PageInfo.jsx +++ b/services/ui-src/src/components/layout/PageInfo.jsx @@ -1,28 +1,23 @@ import React from "react"; -import PropTypes from "prop-types"; -import { connect } from "react-redux"; -import moment from "moment"; +import { shallowEqual, useSelector } from "react-redux"; import Autosave from "../fields/Autosave"; import Title from "./Title"; -const PageInfo = ({ lastSaved, status }) => ( -
-
- {status ?? "draft"} - {lastSaved.isValid() && ` | Last Edit: ${lastSaved.format("M/D/YYYY")}`} +const PageInfo = () => { + const [lastSaved, status] = useSelector( + (state) => [state.save.lastSave, state.reportStatus.status], + shallowEqual + ); + return ( +
+
+ {status ?? "draft"} + {lastSaved && ` | Last Edit: ${lastSaved.toLocaleDateString()}`} +
+ + <Autosave /> </div> - <Title /> - <Autosave /> - </div> -); -PageInfo.propTypes = { - lastSaved: PropTypes.object.isRequired, - status: PropTypes.string, + ); }; -const mapStateToProps = (state) => ({ - lastSaved: moment(state.save.lastSave), - status: state.reportStatus.status, -}); - -export default connect(mapStateToProps)(PageInfo); +export default PageInfo; diff --git a/services/ui-src/src/components/layout/PageInfo.test.jsx b/services/ui-src/src/components/layout/PageInfo.test.jsx index 203e4cf87..22300eef4 100644 --- a/services/ui-src/src/components/layout/PageInfo.test.jsx +++ b/services/ui-src/src/components/layout/PageInfo.test.jsx @@ -11,7 +11,9 @@ const store = mockStore({ status: null, }, save: { - lastSave: "01/01/2002", + lastSave: new Date( + "Mon Jan 1 2024 12:00:00 GMT-0400 (Eastern Daylight Time)" + ), }, }); jest.mock("./Title", () => () => { diff --git a/services/ui-src/src/components/layout/Part.jsx b/services/ui-src/src/components/layout/Part.jsx index 0351a8b1e..d2d5e8022 100644 --- a/services/ui-src/src/components/layout/Part.jsx +++ b/services/ui-src/src/components/layout/Part.jsx @@ -1,54 +1,89 @@ import React from "react"; -import PropTypes from "prop-types"; -import { connect } from "react-redux"; +import { shallowEqual, useSelector } from "react-redux"; import { Alert } from "@cmsgov/design-system"; - -import { selectFragment } from "../../store/formData"; +// components import Question from "../fields/Question"; +import Text from "./Text"; +// utils +import { selectFragment } from "../../store/formData"; import { selectQuestionsForPart } from "../../store/selectors"; import { shouldDisplay } from "../../util/shouldDisplay"; -import Text from "./Text"; - -const Part = ({ - context_data: contextData, - partId, - partNumber, - questions, - show, - text, - title, - nestedSubsectionTitle, -}) => { - let innards = null; +const Part = ({ partId, partNumber, nestedSubsectionTitle, printView }) => { const [, section] = partId.split("-"); - if (show) { - innards = ( - <> - {text ? <Text data-testid="part-text">{text}</Text> : null} + const [ + formData, + currentUserRole, + reportStatus, + allStatesData, + stateUserAbbr, + chipEnrollments, + ] = useSelector( + (state) => [ + state.formData, + state.stateUser.currentUser.role, + state.reportStatus, + state.allStatesData, + state.stateUser.abbr, + state.enrollmentCounts.chipEnrollments, + ], + shallowEqual + ); - {questions.map((question) => ( - <Question - key={question.id} - question={question} - tableTitle={title} - data-testid="part-question" - /> - ))} - </> - ); - } else { - if (contextData) { - innards = ( - <Alert> - <div className="ds-c-alert__text" data-testid="part-alert"> - {contextData.skip_text ? <p>{contextData.skip_text}</p> : null} - </div> - </Alert> + const part = selectFragment(formData, partId); + const partContextData = part.context_data; + + const contextData = partContextData; + const questions = selectQuestionsForPart( + formData, + currentUserRole, + reportStatus, + allStatesData, + stateUserAbbr, + chipEnrollments, + partId + ); + const show = shouldDisplay( + currentUserRole, + formData, + reportStatus, + allStatesData, + stateUserAbbr, + chipEnrollments, + partContextData + ); + const text = part ? part.text : null; + const title = part ? part.title : null; + + const getPartContent = () => { + if (show) { + return ( + <> + {text && <Text data-testid="part-text">{text}</Text>} + {questions.map((question) => ( + <Question + key={question.id} + question={question} + tableTitle={title} + data-testid="part-question" + printView={printView} + /> + ))} + </> ); + } else { + if (contextData) { + return ( + <Alert> + <div className="ds-c-alert__text" data-testid="part-alert"> + {contextData.skip_text && <p>{contextData.skip_text}</p>} + </div> + </Alert> + ); + } } - } + }; return ( <div id={partId} data-testid="part"> @@ -64,38 +99,8 @@ const Part = ({ {title} </h3> ))} - {innards} + {getPartContent()} </div> ); }; -Part.propTypes = { - context_data: PropTypes.object, - partId: PropTypes.oneOfType([PropTypes.string, PropTypes.object]).isRequired, - partNumber: PropTypes.number, - questions: PropTypes.array.isRequired, - show: PropTypes.bool.isRequired, - text: PropTypes.string, - title: PropTypes.string, -}; -Part.defaultProps = { - context_data: null, - text: "", - title: "", -}; - -const mapStateToProps = (state, { partId }) => { - const part = selectFragment(state, partId); - const questions = selectQuestionsForPart(state, partId); - const contextData = part.context_data; - - return { - context_data: part.context_data, - questions, - show: shouldDisplay(state, contextData), - text: part ? part.text : null, - title: part ? part.title : null, - isFetching: state.global.isFetching, - }; -}; - -export default connect(mapStateToProps)(Part); +export default Part; diff --git a/services/ui-src/src/components/layout/Part.test.jsx b/services/ui-src/src/components/layout/Part.test.jsx index 8053313a9..44cdeb951 100644 --- a/services/ui-src/src/components/layout/Part.test.jsx +++ b/services/ui-src/src/components/layout/Part.test.jsx @@ -87,6 +87,9 @@ const store = mockStore({ stateId: "AL", }, ], + enrollmentCounts: { + chipEnrollments: {}, + }, global: { isFetching: false, }, diff --git a/services/ui-src/src/components/layout/SaveError.jsx b/services/ui-src/src/components/layout/SaveError.jsx index 38d60ca63..4f2040fc2 100644 --- a/services/ui-src/src/components/layout/SaveError.jsx +++ b/services/ui-src/src/components/layout/SaveError.jsx @@ -1,10 +1,11 @@ import { Alert } from "@cmsgov/design-system"; -import PropTypes from "prop-types"; import React, { useEffect, useState } from "react"; -import { connect } from "react-redux"; +import { useSelector } from "react-redux"; +// utils import { selectHasError } from "../../store/save.selectors"; -const SaveError = ({ saveError }) => { +const SaveError = () => { + const saveError = useSelector((state) => selectHasError(state)); const [showSaveErrorAlert, setShowErrorAlert] = useState(saveError); useEffect(() => { @@ -46,12 +47,4 @@ const SaveError = ({ saveError }) => { ); }; -SaveError.propTypes = { - hasError: PropTypes.bool.isRequired, -}; - -const mapStateToProps = (state) => ({ - saveError: selectHasError(state), -}); - -export default connect(mapStateToProps)(SaveError); +export default SaveError; diff --git a/services/ui-src/src/components/layout/SaveMessage.js b/services/ui-src/src/components/layout/SaveMessage.js deleted file mode 100644 index a3c83e8d8..000000000 --- a/services/ui-src/src/components/layout/SaveMessage.js +++ /dev/null @@ -1,65 +0,0 @@ -import moment from "moment"; -import { useEffect, useState } from "react"; -import PropTypes from "prop-types"; - -/* - * Configure moment to display '1 time-unit ago' instead of 'a time-unit ago' - * https://github.com/moment/moment/issues/3764 - */ -moment.updateLocale("en", { - relativeTime: { - s: "seconds", - m: "1 minute", - mm: "%d minutes", - h: "1 hour", - hh: "%d hours", - d: "1 day", - dd: "%d days", - M: "1 month", - MM: "%d months", - y: "1 year", - yy: "%d years", - }, -}); - -const SaveMessage = ({ lastSaved }) => { - const [currentMoment, setCurrentMoment] = useState(() => moment()); - - useEffect(() => { - const timerID = setInterval(() => setCurrentMoment(moment()), 1000); - return () => clearInterval(timerID); - }); - - const lastSavedMoment = moment(lastSaved); - - if (!lastSavedMoment.isValid()) { - return "Not yet saved"; - } - - const difference = currentMoment.diff(lastSavedMoment); - const duration = moment.duration(difference); - let result = "Last saved "; - - if (duration.asMinutes() < 1) return "Saved"; - - if (duration.asDays() < 1) { - result += lastSavedMoment.format("h:mm a"); - } else if (duration.asYears() < 1) { - result += lastSavedMoment.format("MMMM D"); - } else { - result += lastSavedMoment.format("MMMM D, YYYY"); - } - - result += ` (${lastSavedMoment.fromNow()})`; - return result; -}; - -SaveMessage.propTypes = { - lastSaved: PropTypes.oneOfType([ - PropTypes.instanceOf(Date), - PropTypes.instanceOf(moment), - PropTypes.string, - ]), -}; - -export default SaveMessage; diff --git a/services/ui-src/src/components/layout/SaveMessage.jsx b/services/ui-src/src/components/layout/SaveMessage.jsx new file mode 100644 index 000000000..8d790b3d9 --- /dev/null +++ b/services/ui-src/src/components/layout/SaveMessage.jsx @@ -0,0 +1,32 @@ +import { useEffect, useState } from "react"; +import { + differenceInMinutes, + format, + formatDistanceToNowStrict, +} from "date-fns"; +import PropTypes from "prop-types"; + +const SaveMessage = ({ lastSaved }) => { + const [currentMoment, setCurrentMoment] = useState(() => Date.now()); + + useEffect(() => { + const timerID = setInterval(() => setCurrentMoment(Date.now()), 1000); + return () => clearInterval(timerID); + }); + + if (!lastSaved) return "Not yet saved"; + if (differenceInMinutes(currentMoment, lastSaved) < 1) return "Saved"; + + return `Last saved ${format(lastSaved, "p")} (${formatDistanceToNowStrict( + lastSaved + )} ago)`; +}; + +SaveMessage.propTypes = { + lastSaved: PropTypes.oneOfType([ + PropTypes.instanceOf(Date), + PropTypes.string, + ]), +}; + +export default SaveMessage; diff --git a/services/ui-src/src/components/layout/SaveMessage.test.jsx b/services/ui-src/src/components/layout/SaveMessage.test.jsx index 8c811153e..e03de1d0c 100644 --- a/services/ui-src/src/components/layout/SaveMessage.test.jsx +++ b/services/ui-src/src/components/layout/SaveMessage.test.jsx @@ -1,5 +1,4 @@ import { mount, shallow } from "enzyme"; -import moment from "moment"; import React from "react"; import SaveMessage from "./SaveMessage"; @@ -10,9 +9,6 @@ describe("SaveMessage Component", () => { const dateProp = { lastSaved: new Date() }; const saveMessageDateProp = <SaveMessage {...dateProp} />; - const momentProp = { lastSaved: moment() }; - const saveMessageMomentProp = <SaveMessage {...momentProp} />; - const nullProp = { lastSaved: null }; const saveMessageNullProp = <SaveMessage {...nullProp} />; @@ -24,10 +20,6 @@ describe("SaveMessage Component", () => { expect(shallow(saveMessageDateProp).exists()).toBe(true); }); - it("should accept moment as prop", () => { - expect(shallow(saveMessageMomentProp).exists()).toBe(true); - }); - it("should accept null as prop and return not saved", () => { const wrapper = mount(saveMessageNullProp); expect(wrapper.text().includes("Not yet saved")).toBe(true); diff --git a/services/ui-src/src/components/layout/Section.jsx b/services/ui-src/src/components/layout/Section.jsx index f12824305..b204e1b25 100644 --- a/services/ui-src/src/components/layout/Section.jsx +++ b/services/ui-src/src/components/layout/Section.jsx @@ -1,6 +1,6 @@ import React from "react"; +import { useSelector } from "react-redux"; import PropTypes from "prop-types"; -import { connect } from "react-redux"; import PageInfo from "./PageInfo"; import { selectSectionTitle } from "../../store/selectors"; import Subsection from "./Subsection"; @@ -8,18 +8,20 @@ import FormNavigation from "./FormNavigation"; import FormActions from "./FormActions"; import Autosave from "../fields/Autosave"; -// Get section number only from sectionId -const selectSectionNumber = (sectionId) => { - return Number(sectionId.split("-")[1]); -}; +const Section = ({ subsectionId, sectionId, printView }) => { + const formData = useSelector((state) => state.formData); + const title = selectSectionTitle(formData, sectionId); -const Section = ({ subsectionId, title }) => { return ( <div className="section-basic-info ds-l-col--9 content"> <main id="main-content" className="main"> <PageInfo /> <h2 data-testid="section-title">{title}</h2> - <Subsection key={subsectionId} subsectionId={subsectionId} /> + <Subsection + key={subsectionId} + subsectionId={subsectionId} + printView={printView} + /> </main> <div className="form-footer"> <Autosave /> @@ -31,16 +33,8 @@ const Section = ({ subsectionId, title }) => { }; Section.propTypes = { subsectionId: PropTypes.string.isRequired, - title: PropTypes.string, sectionId: PropTypes.number.isRequired, + printView: PropTypes.bool, }; -const mapStateToProps = (state, { sectionId, subsectionId }) => { - return { - subsectionId, - title: selectSectionTitle(state, sectionId), - sectionId: selectSectionNumber(sectionId), - }; -}; - -export default connect(mapStateToProps)(Section); +export default Section; diff --git a/services/ui-src/src/components/layout/StateHeader.jsx b/services/ui-src/src/components/layout/StateHeader.jsx index b37c25366..e9c3eafc1 100644 --- a/services/ui-src/src/components/layout/StateHeader.jsx +++ b/services/ui-src/src/components/layout/StateHeader.jsx @@ -1,27 +1,29 @@ import React from "react"; -import PropTypes from "prop-types"; -import { connect } from "react-redux"; +import { useSelector } from "react-redux"; +import { AppRoles } from "../../types"; -const StateHeader = ({ imageURI, name }) => ( - <div - className="state-header" - data-testid="state-header" - aria-label="State Header" - > - <div className="state-image"> - <img src={imageURI} alt={name} /> - </div> - <div className="state-name">{name}</div> - </div> -); -StateHeader.propTypes = { - imageURI: PropTypes.string.isRequired, - name: PropTypes.string.isRequired, +const StateHeader = () => { + const { currentUser, name, imageURI } = useSelector( + (state) => state.stateUser + ); + return ( + <> + {currentUser?.role === AppRoles.STATE_USER && ( + <div + className="state-header" + data-testid="state-header" + aria-label="State Header" + > + <div className="state-image"> + <img src={imageURI} alt={name} /> + </div> + <div className="state-name" aria-label={name}> + {name} + </div> + </div> + )} + </> + ); }; -const mapStateToProps = (state) => ({ - name: state.stateUser.name, - imageURI: state.stateUser.imageURI, -}); - -export default connect(mapStateToProps)(StateHeader); +export default StateHeader; diff --git a/services/ui-src/src/components/layout/StateHeader.test.jsx b/services/ui-src/src/components/layout/StateHeader.test.jsx index 5d8f1fbe3..6a91f01cd 100644 --- a/services/ui-src/src/components/layout/StateHeader.test.jsx +++ b/services/ui-src/src/components/layout/StateHeader.test.jsx @@ -4,30 +4,45 @@ import configureMockStore from "redux-mock-store"; import { Provider } from "react-redux"; import { render } from "@testing-library/react"; import StateHeader from "./StateHeader"; +import { + adminUserWithReportInProgress, + stateUserWithReportInProgress, +} from "../../store/fakeStoreExamples"; const mockStore = configureMockStore(); -const store = mockStore({ - stateUser: { - name: "Kentucky", - imageURI: "kentucky.png", - }, -}); -const header = ( - <Provider store={store}> - <StateHeader /> - </Provider> -); +const stateUserStore = mockStore(stateUserWithReportInProgress); +const adminUserStore = mockStore(adminUserWithReportInProgress); describe("State Header Component", () => { - it("should render correctly", () => { + test("should render correctly", () => { + const header = ( + <Provider store={stateUserStore}> + <StateHeader /> + </Provider> + ); expect(shallow(header).exists()).toBe(true); }); - it("Displays name, image, and alt-text for a state", () => { + test("Displays state header content for state user", () => { + const header = ( + <Provider store={stateUserStore}> + <StateHeader /> + </Provider> + ); const { getByTestId, getByAltText } = render(header); const headerComponent = getByTestId("state-header"); - expect(headerComponent).toHaveTextContent("Kentucky"); - const img = getByAltText("Kentucky"); - expect(img.src).toContain("kentucky.png"); + expect(headerComponent).toHaveTextContent("Alabama"); + const img = getByAltText("Alabama"); + expect(img.src).toContain("al.svg"); + }); + + test("Does not display state header content for admin user", () => { + const header = ( + <Provider store={adminUserStore}> + <StateHeader /> + </Provider> + ); + const { queryByTestId } = render(header); + expect(queryByTestId("state-header")).not.toBeInTheDocument(); }); }); diff --git a/services/ui-src/src/components/layout/Subsection.jsx b/services/ui-src/src/components/layout/Subsection.jsx index 60799cede..6417beca6 100644 --- a/services/ui-src/src/components/layout/Subsection.jsx +++ b/services/ui-src/src/components/layout/Subsection.jsx @@ -1,11 +1,22 @@ import React from "react"; -import PropTypes from "prop-types"; -import { connect } from "react-redux"; -import { selectSubsectionTitleAndPartIDs } from "../../store/selectors"; +import { useSelector } from "react-redux"; +//components import Part from "./Part"; import Text from "./Text"; +//selectors +import { selectSubsectionTitleAndPartIDs } from "../../store/selectors"; +//types +import PropTypes from "prop-types"; + +const Subsection = ({ subsectionId, printView }) => { + const formData = useSelector((state) => state.formData); + + const subsection = selectSubsectionTitleAndPartIDs(formData, subsectionId); + + const partIds = subsection ? subsection.parts : []; + const title = subsection ? subsection.title : null; + const text = subsection ? subsection.text : null; -const Subsection = ({ partIds, subsectionId, title, text }) => { return ( <div id={subsectionId}> {title && <h3 className="h3-pdf-bookmark">{title}</h3>} @@ -20,31 +31,18 @@ const Subsection = ({ partIds, subsectionId, title, text }) => { partId={partId} partNumber={partIds.length > 1 ? index + 1 : null} nestedSubsectionTitle={!!title} + printView={printView} /> ))} </div> ); }; Subsection.propTypes = { - partIds: PropTypes.array.isRequired, subsectionId: PropTypes.string.isRequired, - text: PropTypes.oneOf([PropTypes.string, null]), - title: PropTypes.string, + printView: PropTypes.bool, }; Subsection.defaultProps = { text: null, }; -const mapStateToProps = (state, ownProps) => { - const subsection = selectSubsectionTitleAndPartIDs( - state, - ownProps.subsectionId - ); - return { - partIds: subsection ? subsection.parts : [], - title: subsection ? subsection.title : null, - text: subsection ? subsection.text : null, - }; -}; - -export default connect(mapStateToProps)(Subsection); +export default Subsection; diff --git a/services/ui-src/src/components/layout/Timeout.jsx b/services/ui-src/src/components/layout/Timeout.jsx index 38f60b036..9f927f9b7 100644 --- a/services/ui-src/src/components/layout/Timeout.jsx +++ b/services/ui-src/src/components/layout/Timeout.jsx @@ -1,24 +1,27 @@ import React, { useEffect, useState } from "react"; -import { connect } from "react-redux"; -import PropTypes from "prop-types"; -import { Dialog } from "@cmsgov/design-system"; +import { useSelector } from "react-redux"; import { useHistory } from "react-router-dom"; +//components +import { Dialog } from "@cmsgov/design-system"; +//auth import { refreshCredentials, updateTimeout, useUser, } from "../../hooks/authHooks"; -import moment from "moment"; const calculateTimeLeft = (expiresAt) => { if (!expiresAt) return 0; - return expiresAt.diff(moment()) / 1000; + return (new Date(expiresAt).valueOf() - Date.now()) / 1000; }; -const Timeout = ({ showTimeout, expiresAt }) => { +const Timeout = () => { + const { showTimeout, expiresAt } = useSelector((state) => state.stateUser); const { logout } = useUser(); - const [timeLeft, setTimeLeft] = useState(calculateTimeLeft(expiresAt)); const history = useHistory(); + + const [timeLeft, setTimeLeft] = useState(calculateTimeLeft(expiresAt)); + useEffect(() => { const unlisten = history.listen(() => { updateTimeout(); @@ -44,7 +47,7 @@ const Timeout = ({ showTimeout, expiresAt }) => { if (!showTimeout) return <></>; - const expired = expiresAt.isBefore(); + const expired = new Date(expiresAt).valueOf() < Date.now(); const body = expired ? "You have been logged out due to inactivity. Please log in again." : `Due to inactivity, you will be logged out in ${Math.floor( @@ -88,14 +91,4 @@ const Timeout = ({ showTimeout, expiresAt }) => { ); }; -Timeout.propTypes = { - showTimeout: PropTypes.bool.isRequired, - expiresAt: PropTypes.any.isRequired, -}; - -const mapState = (state) => ({ - showTimeout: state.stateUser.showTimeout, - expiresAt: state.stateUser.expiresAt, -}); - -export default connect(mapState)(Timeout); +export default Timeout; diff --git a/services/ui-src/src/components/layout/Timeout.test.jsx b/services/ui-src/src/components/layout/Timeout.test.jsx index 697b3a1c1..c2f2204f3 100644 --- a/services/ui-src/src/components/layout/Timeout.test.jsx +++ b/services/ui-src/src/components/layout/Timeout.test.jsx @@ -4,7 +4,7 @@ import configureMockStore from "redux-mock-store"; import { Provider } from "react-redux"; import { screen, render, fireEvent } from "@testing-library/react"; import Timeout from "./Timeout"; -import moment from "moment"; +import { add, sub } from "date-fns"; jest.mock("react-router-dom", () => ({ ...jest.requireActual("react-router-dom"), @@ -17,19 +17,19 @@ const mockStore = configureMockStore(); const store = mockStore({ stateUser: { showTimeout: true, - expiresAt: moment().add(5, "minutes"), + expiresAt: add(Date.now(), { minutes: 5 }), }, }); const expiredStore = mockStore({ stateUser: { showTimeout: true, - expiresAt: moment().subtract(5, "minutes"), + expiresAt: sub(Date.now(), { minutes: 5 }), }, }); const hiddenStore = mockStore({ stateUser: { showTimeout: false, - expiresAt: moment().add(5, "minutes"), + expiresAt: add(Date.now(), { minutes: 5 }), }, }); const timeout = ( diff --git a/services/ui-src/src/components/layout/Title.jsx b/services/ui-src/src/components/layout/Title.jsx index e315f2247..5812673a5 100644 --- a/services/ui-src/src/components/layout/Title.jsx +++ b/services/ui-src/src/components/layout/Title.jsx @@ -1,8 +1,17 @@ import React from "react"; +import { useSelector, shallowEqual } from "react-redux"; +//types import PropTypes from "prop-types"; -import { connect } from "react-redux"; -const Title = ({ name, stateName, formYear, urlStateName }) => { +const Title = ({ urlStateName }) => { + const [name, stateName, formYear] = useSelector( + (state) => [ + state.stateUser.name, + state.global.stateName, + state.global.formYear, + ], + shallowEqual + ); const displayStateName = name || urlStateName || stateName || ""; return ( @@ -14,16 +23,7 @@ const Title = ({ name, stateName, formYear, urlStateName }) => { ); }; Title.propTypes = { - name: PropTypes.string, - stateName: PropTypes.string, urlStateName: PropTypes.string, - formYear: PropTypes.number.isRequired, }; -const mapStateToProps = (state) => ({ - name: state.stateUser.name, - stateName: state.global.stateName, - formYear: state.global.formYear, -}); - -export default connect(mapStateToProps)(Title); +export default Title; diff --git a/services/ui-src/src/components/layout/UploadComponent.jsx b/services/ui-src/src/components/layout/UploadComponent.jsx index 7df22445a..ceb0aaa9d 100644 --- a/services/ui-src/src/components/layout/UploadComponent.jsx +++ b/services/ui-src/src/components/layout/UploadComponent.jsx @@ -1,9 +1,8 @@ -import React, { Component } from "react"; -import PropTypes from "prop-types"; -import { connect } from "react-redux"; +import React, { useEffect, useState } from "react"; +import { useDispatch, useSelector, shallowEqual } from "react-redux"; +//components import { Button, TextField } from "@cmsgov/design-system"; -import { setAnswerEntry } from "../../actions/initial"; -import { REPORT_STATUS, AppRoles } from "../../types"; +//utils import { recordFileInDatabaseAndGetUploadUrl, uploadFileToS3, @@ -11,32 +10,37 @@ import { getUploadedFiles, deleteUploadedFile, } from "../../util/fileApi"; +import { setAnswerEntry } from "../../actions/initial"; +//types +import PropTypes from "prop-types"; +import { REPORT_STATUS, AppRoles } from "../../types"; -class UploadComponent extends Component { - constructor(props) { - super(props); - - this.state = { - blockFileSubmission: true, - loadedFiles: [], - uploadedFiles: [], - displayUploadedFiles: false, - uploadedFilesRetrieved: false, - }; - } - - componentDidMount = async () => { - this.validateFileByExtension = this.validateFileByExtension.bind(this); - this.removeFile = this.removeFile.bind(this); - this.submitUpload = this.submitUpload.bind(this); - this.viewUploaded = this.viewUploaded.bind(this); - this.isFileTypeAllowed = this.isFileTypeAllowed.bind(this); - this.isFileNameValid = this.isFileNameValid.bind(this); - this.deleteFile = this.deleteFile.bind(this); - await this.viewUploaded(); - }; - - isFileTypeAllowed = (extension) => { +const UploadComponent = ({ question }) => { + // eslint-disable-next-line no-unused-vars + const [blockFileSubmission, setBlockFileSubmission] = useState(true); + const [loadedFiles, setLoadedFiles] = useState([]); + const [uploadedFiles, setUploadedFiles] = useState([]); + const [displayUploadedFiles, setDisplayUploadedFiles] = useState(false); + const [uploadedFilesRetrieved, setUploadedFilesRetrieved] = useState(false); + const [inputErrors, setInputErrors] = useState(); + + const [user, year, stateCode, reportStatus] = useSelector( + (state) => [ + state.stateUser.currentUser, + state.formData[0].contents.section.year, + state.formData[0].contents.section.state, + state.reportStatus, + ], + shallowEqual + ); + + const dispatch = useDispatch(); + + useEffect(() => { + viewUploaded(); + }, []); + + const isFileTypeAllowed = (extension) => { const allowedFileTypes = [ "jpg", "jpeg", @@ -53,15 +57,13 @@ class UploadComponent extends Component { return allowedFileTypes.indexOf(extension) > -1; }; - isFileNameValid = (fileName) => { + const isFileNameValid = (fileName) => { let fileNameRegex = new RegExp("^[0-9a-zA-z-_.]*$"); return fileNameRegex.test(fileName); }; - submitUpload = async () => { - const { loadedFiles } = this.state; - const { year, stateCode } = this.props; - const questionId = this.props.question.id; + const submitUpload = async () => { + const questionId = question.id; for (const uploadedFile of loadedFiles) { const presignedPostData = await recordFileInDatabaseAndGetUploadUrl( @@ -77,79 +79,60 @@ class UploadComponent extends Component { (e) => e.name !== uploadedFile.name ); - this.setState({ - loadedFiles: filteredStateFiles, - blockFileSubmission: true, - }); + setLoadedFiles(filteredStateFiles); + setBlockFileSubmission(true); - if (this.state.displayUploadedFiles === false) { - await this.viewUploaded(); + if (displayUploadedFiles === false) { + await viewUploaded(); } else { - await this.retrieveUploadedFiles(); + await retrieveUploadedFiles(); } } }; - viewUploaded = async () => { - if (this.state.displayUploadedFiles === false) { - this.setState({ - displayUploadedFiles: true, - }); - await this.retrieveUploadedFiles(); + const viewUploaded = async () => { + if (displayUploadedFiles === false) { + setDisplayUploadedFiles(true); + await retrieveUploadedFiles(); } else { // *** make sure container for files is NOT displayed - this.setState({ - displayUploadedFiles: false, - }); + setDisplayUploadedFiles(false); } }; - removeFile = (evt) => { - const { loadedFiles } = this.state; - + const removeFile = (evt) => { const filteredStateFiles = loadedFiles.filter( (e) => e.name !== evt.target.name ); - - this.setState({ - loadedFiles: filteredStateFiles, - }); + setLoadedFiles(filteredStateFiles); }; - downloadFile = async (fileId) => { - const { year, stateCode } = this.props; + const downloadFile = async (fileId) => { window.location.href = await getFileDownloadUrl(year, stateCode, fileId); }; - retrieveUploadedFiles = async () => { - const questionId = this.props.question.id; - const { year, stateCode } = this.props; + const retrieveUploadedFiles = async () => { + const questionId = question.id; - this.setState({ - uploadedFilesRetrieved: false, - }); + setUploadedFilesRetrieved(false); const uploadedFiles = await getUploadedFiles(year, stateCode, questionId); // *** hide the loading preloader - this.setState({ - uploadedFilesRetrieved: true, - uploadedFiles: uploadedFiles, - }); + setUploadedFilesRetrieved(true); + setUploadedFiles(uploadedFiles); }; - deleteFile = async (fileId) => { - const { year, stateCode } = this.props; - + const deleteFile = async (fileId) => { await deleteUploadedFile(year, stateCode, fileId); - await this.retrieveUploadedFiles(); + await retrieveUploadedFiles(); }; /* * TODO: when one file errors, the others are loaded but the error stays * to duplicate: try loading all 9 */ - validateFileByExtension = (event) => { + const validateFileByExtension = (event) => { if (event.target.files.length > 0) { const filesArray = event.target.files; // All files selected by a user const filePayload = []; @@ -161,8 +144,8 @@ class UploadComponent extends Component { const uploadName = file.name; const mediaSize = file.size / 1024 / 1024; const mediaExtension = uploadName.split(".").pop(); - const fileTypeAllowed = this.isFileTypeAllowed(mediaExtension); - const fileNameInvalid = !this.isFileNameValid(uploadName); + const fileTypeAllowed = isFileTypeAllowed(mediaExtension); + const fileNameInvalid = !isFileNameValid(uploadName); if (fileTypeAllowed === true) { if (fileNameInvalid === true) { @@ -182,168 +165,129 @@ class UploadComponent extends Component { ); } } - - const { loadedFiles } = this.state; - - this.setState({ - inputErrors: errorString || null, - loadedFiles: loadedFiles - ? [...loadedFiles, ...filePayload] - : [...filePayload], - blockFileSubmission: false, - }); + setInputErrors(errorString || null); + setLoadedFiles( + loadedFiles ? [...loadedFiles, ...filePayload] : [...filePayload] + ); + setBlockFileSubmission(false); if (errorString === "") { - const { setAnswer } = this.props; - setAnswer(event.target.name, filePayload); + dispatch(setAnswerEntry(event.target.name, filePayload)); } } }; - render() { - let submissionsAllowed = false; - const { year, stateCode, user, reportStatus } = this.props; - if (year && stateCode) { - const stateReportStatus = reportStatus[`${stateCode}${year}`]; - submissionsAllowed = - stateReportStatus.status !== REPORT_STATUS.certified && - user.role === AppRoles.STATE_USER; - } + let submissionsAllowed = false; + if (year && stateCode) { + const stateReportStatus = reportStatus[`${stateCode}${year}`]; + submissionsAllowed = + stateReportStatus.status !== REPORT_STATUS.certified && + user.role === AppRoles.STATE_USER; + } - return ( + return ( + <div> <div> - <div> - <TextField - accept=".jpg, .png, .docx, .doc, .pdf, .xlsx, .xls, .xlsm" - className="file_upload" - disabled={!submissionsAllowed} - errorMessage={this.state.inputErrors} - hint="Files must be in one of these formats: PDF, Word, Excel, or a valid image (jpg or png)." - label="Click Choose Files and make your selection(s) then click Upload to attach your files. Click View Uploaded to see a list of all files attached here." - multiple - name={this.props.question.id} - onChange={this.validateFileByExtension} - type="file" - /> - </div> - - {this.state.loadedFiles?.map((file, i) => ( - <div key={file.name}> - <a href={encodeURIComponent(file.name)} download> - {" "} - {file.name}{" "} - </a> - <Button - data-testid={`unstage-${i}`} - name={file.name} - onClick={this.removeFile} - size="small" - > - x - </Button> - </div> - ))} - - <Button - onClick={this.submitUpload} - size="small" + <TextField + accept=".jpg, .png, .docx, .doc, .pdf, .xlsx, .xls, .xlsm" + className="file_upload" disabled={!submissionsAllowed} - className="" - > - Upload - </Button> + errorMessage={inputErrors} + hint="Files must be in one of these formats: PDF, Word, Excel, or a valid image (jpg or png)." + label="Click Choose Files and make your selection(s) then click Upload to attach your files. Click View Uploaded to see a list of all files attached here." + multiple + name={question.id} + onChange={validateFileByExtension} + type="file" + /> + </div> - <Button - onClick={this.viewUploaded} - size="small" - className="margin-left-1em" - > - {this.state.displayUploadedFiles ? `Hide Uploaded` : `View Uploaded`} - </Button> - - {this.state.displayUploadedFiles && - this.state.uploadedFiles?.length > 0 ? ( - <table - data-testid="uploadedFilesContainer" - key={"uploadedFilesContainer"} - summary={ - this.props.question.label || - "This is a table for the CARTS Application" - } + {loadedFiles?.map((file, i) => ( + <div key={file.name}> + <a href={encodeURIComponent(file.name)} download> + {file.name} + </a> + <Button + data-testid={`unstage-${i}`} + name={file.name} + onClick={removeFile} + size="small" > - <tbody> - {!this.state.uploadedFilesRetrieved ? ( - <tr> - <td> - <img - // eslint-disable-next-line - src={`/img/bouncing_ball.gif`} - alt="Retrieving uploaded files... Please wait..." - />{" "} - <br /> - <br /> - Loading... Please wait... - </td> - </tr> - ) : ( - this.state.uploadedFiles.map((file) => { - return ( - <tr key={file.aws_filename}> - <td>{file.filename}</td> - <td> - <Button - size="small" - onClick={() => this.downloadFile(file.fileId)} - > - Download - </Button> - </td> - <td> - <Button - size="small" - onClick={() => this.deleteFile(file.fileId)} - disabled={!submissionsAllowed} - > - Delete - </Button> - </td> - </tr> - ); - }) - )} - </tbody> - </table> - ) : null} - </div> - ); - } -} + x + </Button> + </div> + ))} + + <Button + onClick={submitUpload} + size="small" + disabled={!submissionsAllowed} + className="" + > + Upload + </Button> + + <Button onClick={viewUploaded} size="small" className="margin-left-1em"> + {displayUploadedFiles ? `Hide Uploaded` : `View Uploaded`} + </Button> + + {displayUploadedFiles && uploadedFiles?.length > 0 ? ( + <table + data-testid="uploadedFilesContainer" + key={"uploadedFilesContainer"} + summary={ + question.label || "This is a table for the CARTS Application" + } + > + <tbody> + {!uploadedFilesRetrieved ? ( + <tr> + <td> + <img + // eslint-disable-next-line + src={`/img/bouncing_ball.gif`} + alt="Retrieving uploaded files... Please wait..." + /> + <br /> + <br /> + Loading... Please wait... + </td> + </tr> + ) : ( + uploadedFiles.map((file) => { + return ( + <tr key={file.aws_filename}> + <td>{file.filename}</td> + <td> + <Button + size="small" + onClick={() => downloadFile(file.fileId)} + > + Download + </Button> + </td> + <td> + <Button + size="small" + onClick={() => deleteFile(file.fileId)} + disabled={!submissionsAllowed} + > + Delete + </Button> + </td> + </tr> + ); + }) + )} + </tbody> + </table> + ) : null} + </div> + ); +}; UploadComponent.propTypes = { question: PropTypes.any, - id: PropTypes.any, -}; - -const mapStateToProps = (state) => ({ - USState: state.stateUser.abbr, // Currently this is meaningless dummy data - user: state.stateUser.currentUser, - year: state.formData[0].contents.section.year, - stateCode: state.formData[0].contents.section.state, - reportStatus: state.reportStatus, -}); - -const mapDispatchToProps = { - setAnswer: setAnswerEntry, }; -export default connect(mapStateToProps, mapDispatchToProps)(UploadComponent); - -/* - * associate with US State - * meets file validation requirements ( #517 ) - * for audit purposes, save name of user who is saving the file. - * save to server - * provide user with status updates - at a minimum "uploading..." and "upload complete". - * display spinner until file upload is complete (see below for design) - * provide user with notice if there is an error. - */ +export default UploadComponent; diff --git a/services/ui-src/src/components/sections/Print.jsx b/services/ui-src/src/components/sections/Print.jsx index a0cc8a27a..f7bc26f35 100644 --- a/services/ui-src/src/components/sections/Print.jsx +++ b/services/ui-src/src/components/sections/Print.jsx @@ -1,28 +1,35 @@ import React, { useEffect } from "react"; -import { connect, useDispatch } from "react-redux"; +import { shallowEqual, useDispatch, useSelector } from "react-redux"; import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; import { faPrint } from "@fortawesome/free-solid-svg-icons"; import { Button } from "@cmsgov/design-system"; -import PropTypes from "prop-types"; +import { useLocation } from "react-router-dom"; +import { Helmet } from "react-helmet"; +// components import Title from "../layout/Title"; import Section from "../layout/Section"; +// utils import statesArray from "../utils/statesArray"; import { loadEnrollmentCounts, loadSections } from "../../actions/initial"; -import { useLocation } from "react-router-dom"; -import { Helmet } from "react-helmet"; import requestOptions from "../../hooks/authHooks/requestOptions"; import { apiLib } from "../../util/apiLib"; /** * Generate data and load entire form based on user information * - * @param currentUser - * @param state * @returns {JSX.Element} * @constructor */ -const Print = ({ currentUser, state, name }) => { +const Print = () => { const dispatch = useDispatch(); + const [formData, currentUser, name] = useSelector( + (state) => [ + state.formData, + state.stateUser.currentUser, + state.stateUser.name, + ], + shallowEqual + ); const search = useLocation().search; const searchParams = new URLSearchParams(search); const stateInitials = searchParams.get("state"); @@ -33,22 +40,22 @@ const Print = ({ currentUser, state, name }) => { const subsectionId = searchParams.get("subsectionId"); const openPdf = (basePdf) => { - let byteCharacters = atob(basePdf); + const byteCharacters = atob(basePdf); let byteNumbers = new Array(byteCharacters.length); for (let i = 0; i < byteCharacters.length; i++) { byteNumbers[i] = byteCharacters.charCodeAt(i); } - let byteArray = new Uint8Array(byteNumbers); - let file = new Blob([byteArray], { type: "application/pdf;base64" }); - let fileURL = URL.createObjectURL(file); + const byteArray = new Uint8Array(byteNumbers); + const file = new Blob([byteArray], { type: "application/pdf;base64" }); + const fileURL = URL.createObjectURL(file); window.open(fileURL); }; const getPdfFriendlyDocument = async () => { - const noscriptTag = document.querySelector("noscript"); - if (noscriptTag) { - noscriptTag.remove(); - } + // get html element and remove noscript tag + const html = document.querySelector("html"); + html.querySelector("noscript")?.remove(); + document.querySelectorAll("input").forEach((element) => { if (element.type === "text") { element.style.height = "50px"; @@ -59,18 +66,22 @@ const Print = ({ currentUser, state, name }) => { element.remove(); } }); + + if (!document.querySelector("base")) { + const base = document.createElement("base"); + base.href = `https://${window.location.host}`; + document.querySelector("head").prepend(base); + } + const htmlString = document .querySelector("html") - .outerHTML.replaceAll( - '<link href="', - `<link href="https://${window.location.host}` - ) - .replaceAll(`’`, `'`) + .outerHTML.replaceAll(`’`, `'`) .replaceAll(`‘`, `'`) .replaceAll(`”`, `"`) .replaceAll(`“`, `"`) .replaceAll("\u2013", "-") .replaceAll("\u2014", "-"); + const base64String = btoa(unescape(encodeURIComponent(htmlString))); const opts = await requestOptions(); opts.body = { @@ -85,13 +96,12 @@ const Print = ({ currentUser, state, name }) => { // Create function to call data to prevent return data from useEffect const retrieveUserData = async () => { // Get user details - const { stateUser } = state; const queryString = window.location.search; const urlParams = new URLSearchParams(queryString); const selectedYear = urlParams.get("year"); let stateCode; - if (stateUser.currentUser.state.id) { - stateCode = stateUser.currentUser.state.id; + if (currentUser.state.id) { + stateCode = currentUser.state.id; } else { stateCode = urlParams.get("state"); } @@ -119,7 +129,6 @@ const Print = ({ currentUser, state, name }) => { const sections = []; // Check if formData has values - const { formData } = state; if (formData !== undefined && formData.length !== 0) { sections.push(<Title urlStateName={stateName} />); @@ -131,6 +140,7 @@ const Print = ({ currentUser, state, name }) => { sectionId={sectionId} subsectionId={subsectionId} readonly="false" + printView="true" /> ); } else { @@ -155,6 +165,7 @@ const Print = ({ currentUser, state, name }) => { sectionId={sectionId} subsectionId={subsectionId} readonly="false" + printView="true" /> ); } @@ -175,7 +186,6 @@ const Print = ({ currentUser, state, name }) => { <FontAwesomeIcon icon={faPrint} /> Print </Button> </div> - <Helmet> <title> {stateName} CARTS FY{formYear} Report @@ -195,16 +205,4 @@ const Print = ({ currentUser, state, name }) => { ); }; -Print.propTypes = { - state: PropTypes.object.isRequired, - currentUser: PropTypes.object.isRequired, - name: PropTypes.string, -}; - -const mapStateToProps = (state) => ({ - state, - currentUser: state.stateUser, - name: state.stateUser.name, -}); - -export default connect(mapStateToProps)(Print); +export default Print; diff --git a/services/ui-src/src/components/sections/Userinfo.jsx b/services/ui-src/src/components/sections/UserInfo.jsx similarity index 57% rename from services/ui-src/src/components/sections/Userinfo.jsx rename to services/ui-src/src/components/sections/UserInfo.jsx index 7000a58c8..ca62d58fa 100644 --- a/services/ui-src/src/components/sections/Userinfo.jsx +++ b/services/ui-src/src/components/sections/UserInfo.jsx @@ -1,8 +1,8 @@ import React from "react"; -import PropTypes from "prop-types"; -import { connect } from "react-redux"; +import { useSelector } from "react-redux"; -const Userinfo = ({ currentUser }) => { +const UserInfo = () => { + const currentUser = useSelector((state) => state.stateUser.currentUser); const info = Object.entries(currentUser).map(([key, value]) => { if (key === "state") { return ( @@ -26,12 +26,4 @@ const Userinfo = ({ currentUser }) => { ); }; -Userinfo.propTypes = { - currentUser: PropTypes.object.isRequired, -}; - -const mapStateToProps = (state) => ({ - currentUser: state.stateUser.currentUser, -}); - -export default connect(mapStateToProps)(Userinfo); +export default UserInfo; diff --git a/services/ui-src/src/components/sections/UserInfo.test.jsx b/services/ui-src/src/components/sections/UserInfo.test.jsx new file mode 100644 index 000000000..0d2270db5 --- /dev/null +++ b/services/ui-src/src/components/sections/UserInfo.test.jsx @@ -0,0 +1,27 @@ +import React from "react"; +import { mount } from "enzyme"; +import configureMockStore from "redux-mock-store"; +import { Provider } from "react-redux"; +import thunk from "redux-thunk"; +// components +import UserInfo from "./UserInfo"; +// mocks +import { stateUserWithReportInProgress } from "../../store/fakeStoreExamples"; + +const mockStore = configureMockStore([thunk]); +const stateUser = mockStore(stateUserWithReportInProgress); + +const UserInfoComponent = ( + <Provider store={stateUser}> + <UserInfo /> + </Provider> +); + +describe("UserInfo", () => { + const { email, state } = stateUserWithReportInProgress.stateUser.currentUser; + it("should render the UserInfo Component correctly", () => { + const wrapper = mount(UserInfoComponent); + expect(wrapper.find("li").first().text()).toBe(`username: ${email}`); + expect(wrapper.find("li").at(1).text().trim()).toBe(`state: ${state.id}`); + }); +}); diff --git a/services/ui-src/src/components/sections/UserProfile.jsx b/services/ui-src/src/components/sections/UserProfile.jsx index 64dc214fd..434eb6b46 100644 --- a/services/ui-src/src/components/sections/UserProfile.jsx +++ b/services/ui-src/src/components/sections/UserProfile.jsx @@ -1,8 +1,8 @@ import React from "react"; -import { connect } from "react-redux"; -import PropTypes from "prop-types"; +import { useSelector } from "react-redux"; -const UserProfile = ({ currentUser }) => { +const UserProfile = () => { + const currentUser = useSelector((state) => state.stateUser.currentUser); return ( <div className="page-info ds-l-container"> <div className="ds-l-col--12"> @@ -38,12 +38,4 @@ const UserProfile = ({ currentUser }) => { ); }; -UserProfile.propTypes = { - currentUser: PropTypes.object.isRequired, -}; - -const mapStateToProps = (state) => ({ - currentUser: state.stateUser.currentUser, -}); - -export default connect(mapStateToProps)(UserProfile); +export default UserProfile; diff --git a/services/ui-src/src/components/sections/homepage/CMSHomepage.jsx b/services/ui-src/src/components/sections/homepage/CMSHomepage.jsx index e28785329..3ee3edbd5 100644 --- a/services/ui-src/src/components/sections/homepage/CMSHomepage.jsx +++ b/services/ui-src/src/components/sections/homepage/CMSHomepage.jsx @@ -1,21 +1,17 @@ import React, { useEffect, useState } from "react"; -import PropTypes from "prop-types"; -import { connect } from "react-redux"; -import { getAllStateStatuses } from "../../../actions/initial"; -import ReportItem from "./ReportItem"; -import { selectFormStatuses, selectYears } from "../../../store/selectors"; +import { shallowEqual, useDispatch, useSelector } from "react-redux"; import { Button } from "@cmsgov/design-system"; import { MultiSelect } from "react-multi-select-component"; +// components +import ReportItem from "./ReportItem"; import { DropdownOption } from "../../fields/DropdownOption"; +// utils +import { getAllStateStatuses } from "../../../actions/initial"; +import { selectFormStatuses, selectYears } from "../../../store/selectors"; +// types import { STATUS_MAPPING, AppRoles } from "../../../types"; -const CMSHomepage = ({ - getStatuses, - allStateStatuses, - currentUserRole, - stateList, - yearList, -}) => { +const CMSHomepage = () => { const statusList = [ { label: "Certified", value: "certified" }, { label: "In Progress", value: "in_progress" }, @@ -32,8 +28,21 @@ const CMSHomepage = ({ const [statusIds, setStatusIds] = useState([]); const [filteredStatuses, setFilteredStatuses] = useState([]); + const dispatch = useDispatch(); + const [allStateStatuses, stateList, currentUserRole, yearList] = useSelector( + (state) => [ + selectFormStatuses(state), + state.allStatesData.map((element) => { + return { label: element.name, value: element.code }; + }), + state.stateUser.currentUser.role, + selectYears(state.global.currentYear), + ], + shallowEqual + ); + useEffect(() => { - getStatuses(); + dispatch(getAllStateStatuses()); setFilteredStatuses(allStateStatuses); }, []); @@ -238,29 +247,4 @@ const CMSHomepage = ({ ); }; -CMSHomepage.propTypes = { - getStatuses: PropTypes.func.isRequired, - allStateStatuses: PropTypes.object.isRequired, - currentYear: PropTypes.number.isRequired, - currentUserRole: PropTypes.string.isRequired, - stateList: PropTypes.array.isRequired, - yearList: PropTypes.array.isRequired, - reportState: PropTypes.object.isRequired, -}; - -const mapState = (state) => ({ - allStateStatuses: selectFormStatuses(state), - currentYear: state.global.formYear, - stateList: state.allStatesData.map((element) => { - return { label: element.name, value: element.code }; - }), - currentUserRole: state.stateUser.currentUser.role, - reportstate: state.reportStatus, - yearList: selectYears(state), -}); - -const mapDispatch = { - getStatuses: getAllStateStatuses ?? {}, -}; - -export default connect(mapState, mapDispatch)(CMSHomepage); +export default CMSHomepage; diff --git a/services/ui-src/src/components/sections/homepage/ReportItem.jsx b/services/ui-src/src/components/sections/homepage/ReportItem.jsx index fea0da316..836a40a1b 100644 --- a/services/ui-src/src/components/sections/homepage/ReportItem.jsx +++ b/services/ui-src/src/components/sections/homepage/ReportItem.jsx @@ -1,30 +1,32 @@ import React from "react"; import PropTypes from "prop-types"; -import { connect } from "react-redux"; +import { useDispatch } from "react-redux"; import { Link } from "react-router-dom"; -import { theUncertify } from "../../../actions/uncertify"; -import { AppRoles } from "../../../types"; import { Dialog } from "@cmsgov/design-system"; +// utils +import { uncertifyReport } from "../../../actions/uncertify"; import useModal from "../../../hooks/useModal"; +// types +import { AppRoles } from "../../../types"; const ReportItem = ({ - link1Text, - link1URL, + link1Text = "View", + link1URL = "#", name, - statusText, - theUncertify: uncertifyAction, + statusText = "Missing Status", userRole, year, username, lastChanged, timeZone, }) => { + const dispatch = useDispatch(); const anchorTarget = "_self"; const stateCode = link1URL.toString().split("/")[3]; const stateYear = link1URL.toString().split("/")[4]; const { isShowing, toggleModal } = useModal(); let lastEditedNote = ""; - let stateUser = userRole === AppRoles.STATE_USER; + const isStateUser = userRole === AppRoles.STATE_USER; if (lastChanged) { const date = new Date(lastChanged); @@ -47,7 +49,7 @@ const ReportItem = ({ } const uncertify = async () => { - await uncertifyAction(stateCode, stateYear); + await dispatch(uncertifyReport(stateCode, stateYear)); toggleModal(); window.location.reload(false); }; @@ -60,7 +62,7 @@ const ReportItem = ({ return ( <> - {!stateUser && ( + {!isStateUser && ( <div className="report-item ds-l-row"> <div className="name ds-l-col--1">{year}</div> <div className="name ds-l-col--2">{name}</div> @@ -112,7 +114,7 @@ const ReportItem = ({ )} </div> )} - {stateUser && ( + {isStateUser && ( <div className="report-item ds-l-row"> <div className="name ds-l-col--2">{name}</div> <div className="status ds-l-col--2">{statusText}</div> @@ -133,7 +135,6 @@ const ReportItem = ({ }; ReportItem.propTypes = { - theUncertify: PropTypes.func.isRequired, link1Text: PropTypes.string, link1URL: PropTypes.string.isRequired, name: PropTypes.oneOfType([PropTypes.string, PropTypes.number]).isRequired, @@ -144,16 +145,5 @@ ReportItem.propTypes = { lastChanged: PropTypes.string.isRequired, timeZone: PropTypes.string, }; -ReportItem.defaultProps = { - link1Text: "View", - link1URL: "#", - statusText: "Missing Status", -}; - -const mapState = (state) => ({ - user: state.reportStatus.username, -}); - -const mapDispatch = { theUncertify }; -export default connect(mapState, mapDispatch)(ReportItem); +export default ReportItem; diff --git a/services/ui-src/src/components/utils/InvokeSection.jsx b/services/ui-src/src/components/utils/InvokeSection.jsx index 985050d10..fa3e27909 100644 --- a/services/ui-src/src/components/utils/InvokeSection.jsx +++ b/services/ui-src/src/components/utils/InvokeSection.jsx @@ -1,15 +1,18 @@ import React, { useEffect } from "react"; -import { connect, useDispatch } from "react-redux"; +import { useDispatch, useSelector } from "react-redux"; import { useParams } from "react-router-dom"; +// components +import Section from "../layout/Section"; +// utils import { loadForm } from "../../actions/initial"; import { constructIdFromYearSectionAndSubsection } from "../../store/formData"; -import Section from "../layout/Section"; import { updateFormYear, updateStateName } from "../../store/globalVariables"; -const InvokeSection = (username) => { +const InvokeSection = () => { const { state, year, sectionOrdinal, subsectionMarker } = useParams(); const dispatch = useDispatch(); const currentPath = window.location.href; + const username = useSelector((state) => state.stateUser.currentUser.username); useEffect(() => { if (username) { @@ -38,8 +41,4 @@ const InvokeSection = (username) => { return <Section sectionId={sectionId} subsectionId={subsectionId} />; }; -const mapState = (state) => ({ - username: state.stateUser.currentUser.username, -}); - -export default connect(mapState)(InvokeSection); +export default InvokeSection; diff --git a/services/ui-src/src/components/utils/ScrollToTop.js b/services/ui-src/src/components/utils/ScrollToTop.js index 3e841787e..522275565 100644 --- a/services/ui-src/src/components/utils/ScrollToTop.js +++ b/services/ui-src/src/components/utils/ScrollToTop.js @@ -1,11 +1,11 @@ import { useEffect } from "react"; -import { withRouter } from "react-router-dom"; +import { useHistory } from "react-router-dom"; -function ScrollToTop({ history }) { +function ScrollToTop() { + const history = useHistory(); useEffect(() => { const unlisten = history.listen(() => { window.scrollTo(0, 0); - // Remove focus from clicked button document.activeElement.blur(); }); @@ -17,4 +17,4 @@ function ScrollToTop({ history }) { return null; } -export default withRouter(ScrollToTop); +export default ScrollToTop; diff --git a/services/ui-src/src/components/utils/Spinner.jsx b/services/ui-src/src/components/utils/Spinner.jsx index b823aa77e..67c5b9a0f 100644 --- a/services/ui-src/src/components/utils/Spinner.jsx +++ b/services/ui-src/src/components/utils/Spinner.jsx @@ -1,30 +1,22 @@ import React from "react"; -import { connect } from "react-redux"; -import PropTypes from "prop-types"; +import { useSelector } from "react-redux"; -const Spinner = (props) => { - const { isFetching } = props; +const Spinner = () => { + const isFetching = useSelector((state) => state.global.isFetching); - return isFetching ? ( - <div className="preloader"> - <div className="preloader-image"> - <img - data-testid="spinner-img" - src={`/img/spinner.gif`} - alt="Loading. Please wait." - /> + return ( + isFetching && ( + <div className="preloader"> + <div className="preloader-image"> + <img + data-testid="spinner-img" + src={`/img/spinner.gif`} + alt="Loading. Please wait." + /> + </div> </div> - </div> - ) : null; + ) + ); }; -Spinner.propTypes = { - isFetching: PropTypes.bool.isRequired, -}; -const mapStateToProps = (state) => { - return { - isFetching: state.global.isFetching, - }; -}; - -export default connect(mapStateToProps)(Spinner); +export default Spinner; diff --git a/services/ui-src/src/hooks/authHooks/authLifecycle.js b/services/ui-src/src/hooks/authHooks/authLifecycle.js index ebce8f5c4..c0ee3b689 100644 --- a/services/ui-src/src/hooks/authHooks/authLifecycle.js +++ b/services/ui-src/src/hooks/authHooks/authLifecycle.js @@ -1,10 +1,10 @@ import { Auth, Hub } from "aws-amplify"; -import moment from "moment"; +import { add } from "date-fns"; import { setAuthTimeout } from "../../store/stateUser"; /* * After the token expires, refresh tokens will be used in the allotted idle window. - * If not retireved, they will bre prompted at the specified time to refresh or logout. + * If not retrieved, they will be prompted at the specified time to refresh or logout. */ const IDLE_WINDOW = 30 * 60 * 1000; // ms const PROMPT_AT = 29 * 60 * 1000; //ms @@ -22,9 +22,10 @@ class AuthManager { updateTimeout = debounce(() => this.setTimer()); constructor(store) { - // Force users with stale tokens > then the timeout to log in for a fresh session - const exp = localStorage.getItem("mdctcarts_session_exp"); - if (exp && moment(exp).isBefore()) { + // Force users with stale tokens greater than the timeout to log in for a fresh session + const expiration = localStorage.getItem("mdctcarts_session_exp"); + const isExpired = expiration && new Date(expiration).valueOf() < Date.now(); + if (isExpired) { localStorage.removeItem("mdctcarts_session_exp"); Auth.signOut().then(() => { window.location.href = "/"; @@ -63,7 +64,7 @@ class AuthManager { * Timer function for idle timeout, keeps track of an idle timer that triggers a forced logout timer if not reset. */ setTimer() { - const expiration = moment().add(IDLE_WINDOW, "milliseconds"); + const expiration = add(Date.now(), { seconds: IDLE_WINDOW / 1000 }); if (this.timeoutPromptId) { clearTimeout(this.timeoutPromptId); clearTimeout(this.timeoutForceId); diff --git a/services/ui-src/src/store/formData.js b/services/ui-src/src/store/formData.js index ff00206cc..b6d86bf5b 100644 --- a/services/ui-src/src/store/formData.js +++ b/services/ui-src/src/store/formData.js @@ -107,8 +107,8 @@ export default (state = initialState, action) => { }; /* Helper functions for getting values from the JSON returned by the API */ -export const selectSectionByOrdinal = (state, ordinal) => { - const section = state.formData.filter( +export const selectSectionByOrdinal = (formData, ordinal) => { + const section = formData.filter( (c) => c.contents.section.ordinal === ordinal ); if (section.length > 0) { @@ -158,22 +158,22 @@ export const extractJsonPathExpressionFromQuestionLike = ( }; export const selectFragmentByJsonPath = ( - state, + formData, expr, sectionOrdinal = false ) => { const sectionNumber = sectionOrdinal || extractSectionOrdinalFromJPExpr(expr); - const section = selectSectionByOrdinal(state, sectionNumber); + const section = selectSectionByOrdinal(formData, sectionNumber); // Note that the following assumes that there's only one matching result. const fragment = jsonpath.query(section, expr)[0]; return fragment; }; -export const selectFragmentById = (state, id) => { +export const selectFragmentById = (formData, id) => { const sectionOrdinal = extractSectionOrdinalFromId(id); const jpexpr = `$..*[?(@ && @.id=='${id}')]`; - return selectFragmentByJsonPath(state, jpexpr, sectionOrdinal); + return selectFragmentByJsonPath(formData, jpexpr, sectionOrdinal); }; /** @@ -199,8 +199,8 @@ export const selectFragmentFromTarget = (target, expr) => { * @param {string} id - The id of what we're looking for, e.g. 2020-01-a-01-01-a-01. * @param {string} jp - JSONPath expression, although if id is not supplied it must be a JSONPath expression with an id lookup in it. */ -export const selectFragment = (state, id = null, jp = null) => { - if (!state.formData || state.formData.length === 0) { +export const selectFragment = (formData, id = null, jp = null) => { + if (!formData || formData.length === 0) { return null; } if (!id && !jp) { @@ -208,7 +208,7 @@ export const selectFragment = (state, id = null, jp = null) => { } const idValue = id ?? jp.split("id=='")[1].split("'")[0]; const sectionOrdinal = extractSectionOrdinalFromId(idValue); - const section = selectSectionByOrdinal(state, sectionOrdinal); + const section = selectSectionByOrdinal(formData, sectionOrdinal); let targetObject = section; const chunks = idValue.split("-").slice(2); // Year is irrelevant so we skip it; same for section since we just got it above. if (chunks.length >= 2) { diff --git a/services/ui-src/src/store/selectors.js b/services/ui-src/src/store/selectors.js index 35bd9396c..a64834d0c 100644 --- a/services/ui-src/src/store/selectors.js +++ b/services/ui-src/src/store/selectors.js @@ -24,8 +24,8 @@ export const selectSectionTitle = (state, sectionId) => { return null; }; -export const selectSubsectionTitleAndPartIDs = (state, subsectionId) => { - const subsection = selectFragment(state, subsectionId); +export const selectSubsectionTitleAndPartIDs = (formData, subsectionId) => { + const subsection = selectFragment(formData, subsectionId); if (subsection) { return { @@ -37,18 +37,6 @@ export const selectSubsectionTitleAndPartIDs = (state, subsectionId) => { return null; }; -export const selectPartTitle = (state, partId) => { - const part = selectFragment(state, partId); - - if (part) { - return { - text: part.text, - title: part.title, - }; - } - return null; -}; - export const selectQuestion = (state, id) => { const jp = `$..[*].contents.section.subsections[*].parts[*]..questions[?(@ && @.id=='${id}')]`; const questions = jsonpath.query(state, jp); @@ -63,11 +51,29 @@ export const selectQuestion = (state, id) => { * This function is a callback for the filter method in selectQuestionsForPart * @function filterDisplay * @param {object} question - single question from the unfilteredData array in selectQuestionsForPart. - * @param {object} state - the application state + * @param {object} currentUserRole - The role of the current user. Accessed at state.currentUser.role * @returns {boolean} - to be evaluated by the filter method */ -const filterDisplay = (question, state) => { - if (!shouldDisplay(state, question.context_data)) { +const filterDisplay = ( + question, + currentUserRole, + formData, + reportStatus, + allStatesData, + stateUserAbbr, + chipEnrollments +) => { + if ( + !shouldDisplay( + currentUserRole, + formData, + reportStatus, + allStatesData, + stateUserAbbr, + chipEnrollments, + question.context_data + ) + ) { // If context data and a variation of skip text exists if ( question.context_data && @@ -100,7 +106,15 @@ const filterDisplay = (question, state) => { question.questions = question.questions .map((singleQuestion) => { // reassign question.questions to be a filtered version of itself - return filterDisplay(singleQuestion, state); + return filterDisplay( + singleQuestion, + currentUserRole, + formData, + reportStatus, + allStatesData, + stateUserAbbr, + chipEnrollments + ); }) .filter((q) => q !== false); } @@ -108,24 +122,41 @@ const filterDisplay = (question, state) => { }; // Returns an array of questions for the QuestionComponent to map through -export const selectQuestionsForPart = (state, partId) => { +export const selectQuestionsForPart = ( + formData, + currentUserRole, + reportStatus, + allStatesData, + stateUserAbbr, + chipEnrollments, + partId +) => { const jp = `$..[*].contents.section.subsections[*].parts[?(@ && @.id=='${partId}')].questions[*]`; - const unfilteredData = JSON.parse(JSON.stringify(jsonpath.query(state, jp))); + const unfilteredData = JSON.parse( + JSON.stringify(jsonpath.query(formData, jp)) + ); // Filter the array of questions based on conditional logic const filteredQuestions = unfilteredData .map((question) => { - return filterDisplay(question, state); + return filterDisplay( + question, + currentUserRole, + formData, + reportStatus, + allStatesData, + stateUserAbbr, + chipEnrollments + ); }) .filter((q) => q !== false); return filteredQuestions; }; -export const selectSectionsForNav = (state) => { - if (state.formData) { - const sections = state.formData; - return sections.map( +export const selectSectionsForNav = (formData) => { + if (formData) { + return formData.map( ({ contents: { section: { id, ordinal, subsections, title }, @@ -146,18 +177,18 @@ export const selectSectionsForNav = (state) => { * @param {object} reportStatus - the current report status object stored in state * @param {object} formData - The current form object stored in state * @param {object} stateUser - The current user object stored in state - * @param {object} global - Global variables that will be the same regardless of users + * @param {object} formYear - The form year currently stored in global state. * @returns {object} The reportStatus object associated with the current report */ export const getCurrentReportStatus = ( reportStatus, formData, stateUser, - global + formYear ) => { let currentReport = ""; if (stateUser.currentUser.role === AppRoles.STATE_USER) { - currentReport = `${stateUser.abbr}${global.formYear}`; + currentReport = `${stateUser.abbr}${formYear}`; } else { if (formData?.[0] === undefined) return {}; currentReport = `${formData[0].stateId}${formData[0].year}`; @@ -168,18 +199,25 @@ export const getCurrentReportStatus = ( }; /** - * Determines if the report form should be editable. - * @param {object} state - The current state object - * @returns {boolean} + * Get the Status for the current report. + * @param {object} reportStatus - the current report status object stored in state + * @param {object} formData - The current form object stored in state + * @param {object} stateUser - The current user object stored in state + * @param {object} formYear - Global variables that will be the same regardless of users + * @returns {object} The reportStatus object associated with the current report */ -export const selectIsFormEditable = (state) => { - const { reportStatus, formData, stateUser, global } = state; +export const selectIsFormEditable = ( + reportStatus, + formData, + stateUser, + formYear +) => { const { role } = stateUser.currentUser; const { status } = getCurrentReportStatus( reportStatus, formData, stateUser, - global + formYear ); switch (status) { @@ -239,13 +277,11 @@ export const { selectFormStatus, selectFormStatuses } = (() => { }; })(); -export const selectYears = (state) => { - const { global } = state; - - let yearArray = []; +export const selectYears = (currentYear) => { + const yearArray = []; for ( let x = 2020; - x <= global.currentYear; + x <= currentYear; x++ // 2020 is the first year the new CARTS was used so there won't be an < 2020 forms ) { yearArray.push({ label: x, value: x }); diff --git a/services/ui-src/src/styles/_alerts.scss b/services/ui-src/src/styles/_alerts.scss index 96d644b16..d4c9fc57f 100644 --- a/services/ui-src/src/styles/_alerts.scss +++ b/services/ui-src/src/styles/_alerts.scss @@ -14,8 +14,8 @@ z-index: 9; &.alert--unexpected-error__active { - top: 60px; - margin-top: 0; + position: sticky; + margin-top: 20px; } .flex { diff --git a/services/ui-src/src/styles/_main.scss b/services/ui-src/src/styles/_main.scss index a1f9545e6..4b275d447 100644 --- a/services/ui-src/src/styles/_main.scss +++ b/services/ui-src/src/styles/_main.scss @@ -309,6 +309,9 @@ img { padding: ($padding * 2) ($padding * 5); text-align: center; width: auto; + @media only screen and (min-width: 768px) { + padding-right: 2rem; + } } } diff --git a/services/ui-src/src/styles/_sidebar.scss b/services/ui-src/src/styles/_sidebar.scss index 29d288bb0..b30be3c43 100644 --- a/services/ui-src/src/styles/_sidebar.scss +++ b/services/ui-src/src/styles/_sidebar.scss @@ -5,26 +5,25 @@ .sidebar { margin: ($margin * 3) 0; + .skip-content { margin-bottom: ($margin * 3); } .state-header { margin-bottom: ($margin * 3); position: relative; + display: flex; + flex-flow: row wrap; + align-items: center; } .state-image { - position: absolute; - text-align: center; - top: 50%; - transform: translateY(-50%); width: 70px; } .state-name { font-size: 1.6rem; font-weight: $font-weight-semi-bold; - line-height: 70px; - padding-left: 70px; + overflow-wrap: anywhere; } } diff --git a/services/ui-src/src/util/shouldDisplay.js b/services/ui-src/src/util/shouldDisplay.js index fe80e3ab7..14c39e493 100644 --- a/services/ui-src/src/util/shouldDisplay.js +++ b/services/ui-src/src/util/shouldDisplay.js @@ -14,8 +14,8 @@ import { * @param {object} hideIfInfo - the hide_if object from a question's context_data * @returns {boolean} - determines if an element should be filtered out, returning true hides a question */ -const hideIf = (state, hideIfInfo) => { - const targetAnswer = jsonpath.query(state, hideIfInfo.target)[0]; // User's selection from associated question +const hideIf = (formData, hideIfInfo) => { + const targetAnswer = jsonpath.query(formData, hideIfInfo.target)[0]; // User's selection from associated question const interactiveValues = hideIfInfo.values.interactive; // Array of values which if selected, should hide a question if (interactiveValues.includes(targetAnswer)) { @@ -27,10 +27,10 @@ const hideIf = (state, hideIfInfo) => { return false; }; -const hideIfAll = (state, hideIfAllInfo) => { +const hideIfAll = (formData, hideIfAllInfo) => { const answers = hideIfAllInfo.values.interactive; return hideIfAllInfo.targets - .map((target) => jsonpath.query(state, target)[0]) + .map((target) => jsonpath.query(formData, target)[0]) .every((answer) => answers.includes(answer)); }; @@ -41,8 +41,8 @@ const hideIfAll = (state, hideIfAllInfo) => { * @param {object} hideIfNotInfo - the hide_if_not object from a question's context_data * @returns {boolean} - determines if an element should be filtered out, returning true hides a question */ -const hideIfNot = (state, hideIfNotInfo) => { - const targetAnswer = jsonpath.query(state, hideIfNotInfo.target)[0]; // Array of user selections from associated question +const hideIfNot = (formData, hideIfNotInfo) => { + const targetAnswer = jsonpath.query(formData, hideIfNotInfo.target)[0]; // Array of user selections from associated question const interactiveValues = hideIfNotInfo.values.interactive; // Array of values which if present in a user's selections, should hide a question const includedBoolean = @@ -53,9 +53,15 @@ const hideIfNot = (state, hideIfNotInfo) => { return includedBoolean; }; -const hideIfTableValue = (state, hideIfTableValueInfo) => { +const hideIfTableValue = ( + formData, + allStatesData, + stateUserAbbr, + chipEnrollments, + hideIfTableValueInfo +) => { // Get table values - const targetValues = jsonpath.query(state, hideIfTableValueInfo.target)[0]; + const targetValues = jsonpath.query(formData, hideIfTableValueInfo.target)[0]; let computedValues = []; // If target needs to be calculated @@ -66,14 +72,19 @@ const hideIfTableValue = (state, hideIfTableValueInfo) => { for (const item of targetRow) { // get computed value via lookup function and push into a multidimensional array if (item.compareACS) { - computedRow.push(compareACS(state, item.compareACS)); + computedRow.push( + compareACS(allStatesData, stateUserAbbr, item.compareACS) + ); } else if (item.lookupChipEnrollments) { computedRow.push( - lookupChipEnrollments(state, item.lookupChipEnrollments) + lookupChipEnrollments(chipEnrollments, item.lookupChipEnrollments) ); } else if (item.compareChipEnrollements) { computedRow.push( - compareChipEnrollements(state, item.compareChipEnrollements) + compareChipEnrollements( + chipEnrollments, + item.compareChipEnrollements + ) ); } else { // Let non-computed entries pass through with the other data transparently @@ -169,11 +180,11 @@ const hideIfTableValue = (state, hideIfTableValueInfo) => { const PROGRAM_TYPE_QUESTION_ID = "-00-a-01-02"; -const getProgramTypeFromForm = (state) => { +const getProgramTypeFromForm = (formData, reportStatus) => { // attempt to find programType from same year as form - const formYear = state.formData[0].year; + const formYear = formData[0].year; const currentYearProgramType = selectFragmentById( - state, + formData, `${formYear}${PROGRAM_TYPE_QUESTION_ID}` )?.answer?.entry; if (currentYearProgramType) { @@ -183,11 +194,11 @@ const getProgramTypeFromForm = (state) => { // attempt to find programType from the previous year's form, otherwise retrieve from status const previousYear = parseInt(formYear) - 1; const previousYearProgramType = selectFragmentById( - state, + formData, `${previousYear}${PROGRAM_TYPE_QUESTION_ID}` )?.answer?.entry; - const reportStatusCode = state.formData[0].stateId + state.formData[0].year; - const programFromStatus = state.reportStatus[reportStatusCode].programType; + const reportStatusCode = formData[0].stateId + formData[0].year; + const programFromStatus = reportStatus[reportStatusCode].programType; return previousYearProgramType || programFromStatus; }; @@ -198,8 +209,16 @@ const getProgramTypeFromForm = (state) => { * @param {object} context - the context_data from a question * @returns {boolean} - determines if an element should be filtered out, returning true means a question will display */ -const shouldDisplay = (state, context) => { - if (state.stateUser.currentUser.role === AppRoles.CMS_ADMIN) return true; +const shouldDisplay = ( + currentUserRole, + formData, + reportStatus, + allStatesData, + stateUserAbbr, + chipEnrollments, + context +) => { + if (currentUserRole === AppRoles.CMS_ADMIN) return true; if ( !context || @@ -213,7 +232,7 @@ const shouldDisplay = (state, context) => { * displaying relies on that answer being included in the show_if_state_program_type_in array */ if (context.show_if_state_program_type_in) { - const program = getProgramTypeFromForm(state); + const program = getProgramTypeFromForm(formData, reportStatus); return context.show_if_state_program_type_in.includes(program); } @@ -222,12 +241,12 @@ const shouldDisplay = (state, context) => { * displaying relies on that answer being incldued in the hide_if.values.interactive array */ if (context.conditional_display.hide_if) { - return !hideIf(state, context.conditional_display.hide_if); + return !hideIf(formData, context.conditional_display.hide_if); } // hide_if_all, there is an array of targets (questions) that another question's display relies on if (context.conditional_display.hide_if_all) { - return !hideIfAll(state, context.conditional_display.hide_if_all); + return !hideIfAll(formData, context.conditional_display.hide_if_all); } /* @@ -235,7 +254,7 @@ const shouldDisplay = (state, context) => { * displaying relies on that array of answers including any of the values from the hide_if_not.values.interactive array */ if (context.conditional_display.hide_if_not) { - return !hideIfNot(state, context.conditional_display.hide_if_not); + return !hideIfNot(formData, context.conditional_display.hide_if_not); } /* @@ -244,7 +263,10 @@ const shouldDisplay = (state, context) => { */ if (context.conditional_display.hide_if_table_value) { return hideIfTableValue( - state, + formData, + allStatesData, + stateUserAbbr, + chipEnrollments, context.conditional_display.hide_if_table_value ); } diff --git a/services/ui-src/src/util/shouldDisplay.test.js b/services/ui-src/src/util/shouldDisplay.test.js index b3ccfd317..de48fe230 100644 --- a/services/ui-src/src/util/shouldDisplay.test.js +++ b/services/ui-src/src/util/shouldDisplay.test.js @@ -88,7 +88,15 @@ describe("shouldDisplay", () => { conditional_display: null, show_if_state_program_type_in: ["a different program"], }; - const result = shouldDisplay(state, context); + const result = shouldDisplay( + state.stateUser.currentUser.role, + state.formData, + state.reportStatus, + null, + null, + null, + context + ); expect(result).toBe(false); }); @@ -115,7 +123,15 @@ describe("shouldDisplay", () => { conditional_display: null, show_if_state_program_type_in: ["test program"], }; - const result = shouldDisplay(state, context); + const result = shouldDisplay( + state.stateUser.currentUser.role, + state.formData, + state.reportStatus, + null, + null, + null, + context + ); expect(result).toBe(true); }); @@ -143,7 +159,15 @@ describe("shouldDisplay", () => { conditional_display: null, show_if_state_program_type_in: ["test program"], }; - const result = shouldDisplay(state, context); + const result = shouldDisplay( + state.stateUser.currentUser.role, + state.formData, + state.reportStatus, + null, + null, + null, + context + ); expect(result).toBe(true); expect(selectFragmentById).toHaveBeenCalledTimes(1); }); @@ -172,7 +196,15 @@ describe("shouldDisplay", () => { conditional_display: null, show_if_state_program_type_in: ["test program"], }; - const result = shouldDisplay(state, context); + const result = shouldDisplay( + state.stateUser.currentUser.role, + state.formData, + state.reportStatus, + null, + null, + null, + context + ); expect(result).toBe(true); expect(selectFragmentById).toHaveBeenCalledTimes(1); }); @@ -202,7 +234,15 @@ describe("shouldDisplay", () => { conditional_display: null, show_if_state_program_type_in: ["test program"], }; - const result = shouldDisplay(state, context); + const result = shouldDisplay( + state.stateUser.currentUser.role, + state.formData, + state.reportStatus, + null, + null, + null, + context + ); expect(result).toBe(true); expect(selectFragmentById).toHaveBeenCalledTimes(2); }); @@ -214,8 +254,10 @@ describe("shouldDisplay", () => { role: "test role", }, }, - foo: { - bar: "baz", + formData: { + foo: { + bar: "baz", + }, }, }; const context = { @@ -228,7 +270,15 @@ describe("shouldDisplay", () => { }, }, }; - const result = shouldDisplay(state, context); + const result = shouldDisplay( + state.stateUser.currentUser.role, + state.formData, + null, + null, + null, + null, + context + ); expect(result).toBe(false); }); @@ -239,8 +289,10 @@ describe("shouldDisplay", () => { role: "test role", }, }, - foo: { - bar: "quux", + formData: { + foo: { + bar: "quux", + }, }, }; const context = { @@ -253,7 +305,15 @@ describe("shouldDisplay", () => { }, }, }; - const result = shouldDisplay(state, context); + const result = shouldDisplay( + state.stateUser.currentUser.role, + state.formData, + state.reportStatus, + null, + null, + null, + context + ); expect(result).toBe(true); }); @@ -264,11 +324,13 @@ describe("shouldDisplay", () => { role: "test role", }, }, - foo: { - // All of these are in values.interactive - bar: "baz", - bbr: "bbz", - bcr: "baz", + formData: { + foo: { + // All of these are in values.interactive + bar: "baz", + bbr: "bbz", + bcr: "baz", + }, }, }; const context = { @@ -281,7 +343,15 @@ describe("shouldDisplay", () => { }, }, }; - const result = shouldDisplay(state, context); + const result = shouldDisplay( + state.stateUser.currentUser.role, + state.formData, + state.reportStatus, + null, + null, + null, + context + ); expect(result).toBe(false); }); @@ -292,11 +362,13 @@ describe("shouldDisplay", () => { role: "test role", }, }, - foo: { - // One of these is not in values.interactive - bar: "baz", - bbr: "bbz", - bcr: "quux", + formData: { + foo: { + // One of these is not in values.interactive + bar: "baz", + bbr: "bbz", + bcr: "quux", + }, }, }; const context = { @@ -309,7 +381,15 @@ describe("shouldDisplay", () => { }, }, }; - const result = shouldDisplay(state, context); + const result = shouldDisplay( + state.stateUser.currentUser.role, + state.formData, + state.reportStatus, + null, + null, + null, + context + ); expect(result).toBe(true); }); @@ -320,9 +400,11 @@ describe("shouldDisplay", () => { role: "test role", }, }, - foo: { - // At least one of these is in values.interactive - bar: ["baz", "quux"], + formData: { + foo: { + // At least one of these is in values.interactive + bar: ["baz", "quux"], + }, }, }; const context = { @@ -335,7 +417,15 @@ describe("shouldDisplay", () => { }, }, }; - const result = shouldDisplay(state, context); + const result = shouldDisplay( + state.stateUser.currentUser.role, + state.formData, + state.reportStatus, + null, + null, + null, + context + ); expect(result).toBe(true); }); @@ -346,9 +436,11 @@ describe("shouldDisplay", () => { role: "test role", }, }, - foo: { - // None of these are in values.interactive - bar: ["corge", "quux"], + formData: { + foo: { + // None of these are in values.interactive + bar: ["corge", "quux"], + }, }, }; const context = { @@ -361,7 +453,15 @@ describe("shouldDisplay", () => { }, }, }; - const result = shouldDisplay(state, context); + const result = shouldDisplay( + state.stateUser.currentUser.role, + state.formData, + state.reportStatus, + null, + null, + null, + context + ); expect(result).toBe(false); }); @@ -376,7 +476,15 @@ describe("shouldDisplay", () => { const context = { conditional_display: {}, }; - const result = shouldDisplay(state, context); + const result = shouldDisplay( + state.stateUser.currentUser.role, + null, + null, + null, + null, + null, + context + ); expect(result).toBe(true); }); }); diff --git a/services/ui-src/src/util/synthesize.js b/services/ui-src/src/util/synthesize.js index 904d85777..497eabff0 100644 --- a/services/ui-src/src/util/synthesize.js +++ b/services/ui-src/src/util/synthesize.js @@ -183,28 +183,21 @@ const sum = (values) => { return returnValue; }; -const lookupFMAP = (state, fy) => { +const lookupFMAP = (allStatesData, stateName, stateUserAbbr, fy) => { // if admin and in a print view get state param const urlSearchParams = new URLSearchParams(window.location.search); const stateFromParams = urlSearchParams.get("state"); - if ( - state.allStatesData && - (state.global.stateName || state.stateUser.abbr || stateFromParams) - ) { + if (allStatesData && (stateName || stateUserAbbr || stateFromParams)) { let stateData = ""; - if (state.stateUser.abbr) { - stateData = state.allStatesData.filter( - (st) => st.code === state.stateUser.abbr - )[0]; + if (stateUserAbbr) { + stateData = allStatesData.filter((st) => st.code === stateUserAbbr)[0]; } else if (stateFromParams) { - stateData = state.allStatesData.filter( + stateData = allStatesData.filter( (st) => st.code.toLowerCase() === stateFromParams.toLowerCase() )[0]; } else { - stateData = state.allStatesData.filter( - (st) => st.name === state.global.stateName - )[0]; + stateData = allStatesData.filter((st) => st.name === stateName)[0]; } const fmap = stateData?.fmapSet.filter((year) => year.fiscalYear === +fy)[0] @@ -222,6 +215,20 @@ const snakeToCamel = (str) => group.toUpperCase().replace("-", "").replace("_", "") ); +// returns the state abbreviation for the associated report +const getStateAbbr = (stateUserAbbr) => { + if (stateUserAbbr) return stateUserAbbr; + const windowPathName = window.location.pathname; + // if admin, grab the state from the URL + const stateFromURL = windowPathName.split("/")[3]; + + // if admin and in a print view get state param + const urlSearchParams = new URLSearchParams(window.location.search); + const stateFromParams = urlSearchParams.get("state"); + + return windowPathName.includes("print") ? stateFromParams : stateFromURL; +}; + /** * Retrieve acsSet from state and return for individual state. * @@ -230,35 +237,20 @@ const snakeToCamel = (str) => * @param {string} acsProperty * @returns {string} */ -const lookupAcs = (state, { ffy, acsProperty }) => { +const lookupAcs = (allStatesData, stateUserAbbr, { ffy, acsProperty }) => { let returnValue = "Not Available"; // Support prior lookup syntax in form lookups const acsPropQuery = acsProperty.includes("_") ? snakeToCamel(acsProperty) : acsProperty; - // if allStatesData and stateUser are available - if (state.allStatesData && state.stateUser) { - const windowPathName = window.location.pathname; - // if admin, grab the state from the URL - const stateFromURL = windowPathName.split("/")[3]; - - // if admin and in a print view get state param - const urlSearchParams = new URLSearchParams(window.location.search); - const stateFromParams = urlSearchParams.get("state"); + // if allStatesData is a populated array + if (allStatesData?.length > 0) { + const stateAbbr = getStateAbbr(stateUserAbbr); - // Get stateUser state or fallback to the URL, if an admin - const stateAbbr = - state.stateUser.abbr || - (windowPathName.includes("print") ? stateFromParams : stateFromURL); - - // Filter for only matching state - const stateData = state.allStatesData.filter( - (st) => st.code === stateAbbr - )[0]; - - // Filter for matching state from JSON - const acs = stateData?.acsSet.filter((year) => year.year === +ffy)[0]; + // Find data for matching state + const stateData = allStatesData.find((st) => st.code === stateAbbr); + const acs = stateData?.acsSet.find((year) => year.year === +ffy); // If acs exists, return the value from the object if (acs) { @@ -274,32 +266,32 @@ const lookupAcs = (state, { ffy, acsProperty }) => { /** * Retrieve acsSet from state and return percentage change for 2 given years. * - * @param {string} state + * @param {object} allStatesData + * @param {string} stateUserAbbr * @param {string} ffy1 * @param {string} ffy2 * @param {string} acsProperty * @returns {(string|float)} */ -export const compareACS = (state, { ffy1, ffy2, acsProperty }) => { +export const compareACS = ( + allStatesData, + stateUserAbbr, + { ffy1, ffy2, acsProperty } +) => { const percentagePrecision = 2; let returnValue = "Not Available"; - // if allStatesData and stateUser are available - if (state.allStatesData && state.stateUser) { - // Get stateUser state - const stateAbbr = state.stateUser.abbr; - - // Filter for only matching state - const stateData = state.allStatesData.filter( - (st) => st.code === stateAbbr - )[0]; - - // Filter for the correct year of state data - const startACS = stateData?.acsSet.filter( + // if allStatesData is a populated array + if (allStatesData?.length > 0) { + const stateAbbr = getStateAbbr(stateUserAbbr); + const stateData = allStatesData.find((st) => st.code === stateAbbr); + + // Find the correct year of state data + const startACS = stateData?.acsSet.find( (year) => year.year === parseInt(ffy1, 10) - )[0]; - const endACS = stateData?.acsSet.filter( + ); + const endACS = stateData?.acsSet.find( (year) => year.year === parseInt(ffy2, 10) - )[0]; + ); // If start year and end year of ACS exist, return the calculated value (percent change) from the objects if (startACS && endACS) { @@ -319,15 +311,12 @@ export const compareACS = (state, { ffy1, ffy2, acsProperty }) => { }; export const lookupChipEnrollments = ( - state, + chipEnrollments, { ffy, enrollmentType, index } ) => { let returnValue = "Not Available"; - if ( - state.enrollmentCounts && - state.enrollmentCounts.chipEnrollments.length > 0 - ) { - let targetValue = state.enrollmentCounts.chipEnrollments.find( + if (chipEnrollments && chipEnrollments.length > 0) { + let targetValue = chipEnrollments.find( (enrollment) => enrollment.yearToModify == ffy && enrollment.indexToUpdate === index && @@ -335,7 +324,7 @@ export const lookupChipEnrollments = ( ); // Lookup the primary stat for the past year if missing if (!targetValue && index == 1) { - targetValue = state.enrollmentCounts.chipEnrollments.find( + targetValue = chipEnrollments.find( (enrollment) => enrollment.yearToModify == ffy - 1 && enrollment.indexToUpdate === index + 1 && @@ -349,20 +338,20 @@ export const lookupChipEnrollments = ( return returnValue; }; -export const compareChipEnrollements = (state, { ffy, enrollmentType }) => { +export const compareChipEnrollements = ( + chipEnrollments, + { ffy, enrollmentType } +) => { let returnValue = "Not Available"; - if ( - state.enrollmentCounts && - state.enrollmentCounts.chipEnrollments.length > 0 - ) { + if (chipEnrollments && chipEnrollments.length > 0) { // Retrieve Values - let oldCount = state.enrollmentCounts.chipEnrollments.find( + let oldCount = chipEnrollments.find( (enrollment) => enrollment.yearToModify == ffy && enrollment.indexToUpdate === 1 && enrollment.typeOfEnrollment === enrollmentType ); - const newCount = state.enrollmentCounts.chipEnrollments.find( + const newCount = chipEnrollments.find( (enrollment) => enrollment.yearToModify == ffy && enrollment.indexToUpdate === 2 && @@ -373,7 +362,7 @@ export const compareChipEnrollements = (state, { ffy, enrollmentType }) => { * In case this year's data has been sent, but last year's wasn't included * we still can look it up as the last year's current value */ - oldCount = state.enrollmentCounts.chipEnrollments.find( + oldCount = chipEnrollments.find( (enrollment) => enrollment.yearToModify == ffy - 1 && enrollment.indexToUpdate === 2 && @@ -395,41 +384,68 @@ export const compareChipEnrollements = (state, { ffy, enrollmentType }) => { return returnValue; }; -const synthesizeValue = (value, state) => { +const synthesizeValue = ( + value, + allStatesData, + stateName, + stateUserAbbr, + chipEnrollments, + formData +) => { if (value.contents) { return value; } if (value.lookupFmapFy) { - return { contents: lookupFMAP(state, value.lookupFmapFy) }; + return { + contents: lookupFMAP( + allStatesData, + stateName, + stateUserAbbr, + value.lookupFmapFy + ), + }; } if (value.lookupAcs) { - return { contents: [lookupAcs(state, value.lookupAcs)] }; + return { + contents: [lookupAcs(allStatesData, stateUserAbbr, value.lookupAcs)], + }; } if (value.compareACS) { - return { contents: [compareACS(state, value.compareACS)] }; + return { + contents: [compareACS(allStatesData, stateUserAbbr, value.compareACS)], + }; } if (value.lookupChipEnrollments) { return { - contents: [lookupChipEnrollments(state, value.lookupChipEnrollments)], + contents: [ + lookupChipEnrollments(chipEnrollments, value.lookupChipEnrollments), + ], }; } if (value.compareChipEnrollements) { return { - contents: [compareChipEnrollements(state, value.compareChipEnrollements)], + contents: [ + compareChipEnrollements(chipEnrollments, value.compareChipEnrollements), + ], }; } if (value.targets) { const targets = value.targets.map((target) => { if (typeof target === "object" && target.lookupFmapFy) { - return lookupFMAP(state, target.lookupFmapFy); + return lookupFMAP( + allStatesData, + stateName, + stateUserAbbr, + target.lookupFmapFy + ); } - return jsonpath.query(state, target)[0]; + return jsonpath.query(formData, target)[0]; }); if (value.actions) { diff --git a/services/ui-src/src/util/synthesize.test.js b/services/ui-src/src/util/synthesize.test.js index dcd9f979d..43aed8a7b 100644 --- a/services/ui-src/src/util/synthesize.test.js +++ b/services/ui-src/src/util/synthesize.test.js @@ -3,6 +3,9 @@ import synthesize from "../util/synthesize"; const state = { + global: { + stateName: "Alabama", + }, allStatesData: [ { name: "Alabama", @@ -33,38 +36,43 @@ const state = { stateUser: { abbr: "AL", }, - items: [ - { - id: "item0", - answer: { entry: "0" }, - }, - { - id: "item1", - answer: { entry: "1" }, - }, - { - id: "item2", - answer: { entry: "2" }, - }, - { - id: "item3", - answer: { entry: "3" }, - }, + formData: [ { - id: "item4", - answer: { entry: "4" }, - }, - { - id: "item5", - answer: { entry: "5" }, - }, - { - id: "item6", - answer: { entry: null }, - }, - { - id: "item7", - answer: { entry: "abc" }, + id: "section1", + items: [ + { + id: "item0", + answer: { entry: "0" }, + }, + { + id: "item1", + answer: { entry: "1" }, + }, + { + id: "item2", + answer: { entry: "2" }, + }, + { + id: "item3", + answer: { entry: "3" }, + }, + { + id: "item4", + answer: { entry: "4" }, + }, + { + id: "item5", + answer: { entry: "5" }, + }, + { + id: "item6", + answer: { entry: null }, + }, + { + id: "item7", + answer: { entry: "abc" }, + }, + ], }, ], enrollmentCounts: { @@ -120,7 +128,7 @@ const fallbackChipState = { }, }; -describe("value synthesization utility", () => { +describe("value synthesis utility", () => { describe("handles identity", () => { test("with no values", () => { // Returns undefined, because there's not a value @@ -129,7 +137,11 @@ describe("value synthesization utility", () => { targets: [], actions: ["identity"], }, - state + state.allStatesData, + state.global.stateName, + state.stateUser.abbr, + state.enrollmentCounts.chipEnrollments, + state.formData ); expect(out).toEqual({ contents: undefined }); }); @@ -144,7 +156,11 @@ describe("value synthesization utility", () => { ], actions: ["identity"], }, - state + state.allStatesData, + state.global.stateName, + state.stateUser.abbr, + state.enrollmentCounts.chipEnrollments, + state.formData ); expect(out).toEqual({ contents: "3" }); }); @@ -162,7 +178,11 @@ describe("value synthesization utility", () => { ], actions: ["sum"], }, - state + state.allStatesData, + state.global.stateName, + state.stateUser.abbr, + state.enrollmentCounts.chipEnrollments, + state.formData ); expect(out).toEqual({ contents: NaN }); }); @@ -178,7 +198,11 @@ describe("value synthesization utility", () => { ], actions: ["sum"], }, - state + state.allStatesData, + state.global.stateName, + state.stateUser.abbr, + state.enrollmentCounts.chipEnrollments, + state.formData ); expect(out).toEqual({ contents: NaN }); }); @@ -194,7 +218,11 @@ describe("value synthesization utility", () => { ], actions: ["sum"], }, - state + state.allStatesData, + state.global.stateName, + state.stateUser.abbr, + state.enrollmentCounts.chipEnrollments, + state.formData ); expect(out).toEqual({ contents: 4 }); }); @@ -210,7 +238,11 @@ describe("value synthesization utility", () => { ], actions: ["sum"], }, - state + state.allStatesData, + state.global.stateName, + state.stateUser.abbr, + state.enrollmentCounts.chipEnrollments, + state.formData ); expect(out).toEqual({ contents: 9 }); }); @@ -224,7 +256,11 @@ describe("value synthesization utility", () => { targets: ["$..*[?(@ && @.id==='item4')].answer.entry"], actions: ["percentage"], }, - state + state.allStatesData, + state.global.stateName, + state.stateUser.abbr, + state.enrollmentCounts.chipEnrollments, + state.formData ); expect(out).toEqual({ contents: "" }); }); @@ -239,7 +275,11 @@ describe("value synthesization utility", () => { ], actions: ["percentage"], }, - state + state.allStatesData, + state.global.stateName, + state.stateUser.abbr, + state.enrollmentCounts.chipEnrollments, + state.formData ); expect(out).toEqual({ contents: "" }); }); @@ -254,7 +294,11 @@ describe("value synthesization utility", () => { ], actions: ["percentage"], }, - state + state.allStatesData, + state.global.stateName, + state.stateUser.abbr, + state.enrollmentCounts.chipEnrollments, + state.formData ); expect(out).toEqual({ contents: "33.33%" }); }); @@ -270,7 +314,11 @@ describe("value synthesization utility", () => { actions: ["percentage"], precision: 4, }, - state + state.allStatesData, + state.global.stateName, + state.stateUser.abbr, + state.enrollmentCounts.chipEnrollments, + state.formData ); expect(out).toEqual({ contents: "33.3333%" }); }); @@ -286,7 +334,11 @@ describe("value synthesization utility", () => { actions: ["percentage"], precision: 0, }, - state + state.allStatesData, + state.global.stateName, + state.stateUser.abbr, + state.enrollmentCounts.chipEnrollments, + state.formData ); expect(out).toEqual({ contents: "33%" }); }); @@ -302,7 +354,11 @@ describe("value synthesization utility", () => { actions: ["percentage"], precision: -3, }, - state + state.allStatesData, + state.global.stateName, + state.stateUser.abbr, + state.enrollmentCounts.chipEnrollments, + state.formData ); expect(out).toEqual({ contents: "33.33%" }); }); @@ -323,7 +379,11 @@ describe("value synthesization utility", () => { actions: ["rpn"], rpn: "@ @ + + -", }, - state + state.allStatesData, + state.global.stateName, + state.stateUser.abbr, + state.enrollmentCounts.chipEnrollments, + state.formData ); expect(out).toEqual({ contents: "" }); @@ -342,7 +402,11 @@ describe("value synthesization utility", () => { actions: ["rpn"], rpn: "@ @ +", }, - state + state.allStatesData, + state.global.stateName, + state.stateUser.abbr, + state.enrollmentCounts.chipEnrollments, + state.formData ); expect(out).toEqual({ contents: 4 }); @@ -364,7 +428,11 @@ describe("value synthesization utility", () => { actions: ["rpn"], rpn: "@ @ @ @ @ - + * /", }, - state + state.allStatesData, + state.global.stateName, + state.stateUser.abbr, + state.enrollmentCounts.chipEnrollments, + state.formData ); expect(out).toEqual({ contents: NaN }); @@ -384,7 +452,11 @@ describe("value synthesization utility", () => { actions: ["rpn"], rpn: "@ @ @ @ @ - + * /", }, - state + state.allStatesData, + state.global.stateName, + state.stateUser.abbr, + state.enrollmentCounts.chipEnrollments, + state.formData ); expect(out).toEqual({ contents: 1.6 }); @@ -402,7 +474,11 @@ describe("value synthesization utility", () => { actions: ["rpn"], rpn: "@ @ @ 2 + + *", }, - state + state.allStatesData, + state.global.stateName, + state.stateUser.abbr, + state.enrollmentCounts.chipEnrollments, + state.formData ); expect(out).toEqual({ contents: 12 }); @@ -427,7 +503,11 @@ describe("value synthesization utility", () => { actions: ["rpn"], rpn: "- + @ @ * / @ @ @", }, - state + state.allStatesData, + state.global.stateName, + state.stateUser.abbr, + state.enrollmentCounts.chipEnrollments, + state.formData ); expect(out).toEqual({ contents: 1.6 }); @@ -443,7 +523,11 @@ describe("value synthesization utility", () => { acsProperty: "numberUninsured", }, }, - state + state.allStatesData, + state.global.stateName, + state.stateUser.abbr, + state.enrollmentCounts.chipEnrollments, + state.formData ); expect(out).toEqual({ contents: ["27,000"] }); }); @@ -456,7 +540,11 @@ describe("value synthesization utility", () => { acsProperty: "number_uninsured", }, }, - state + state.allStatesData, + state.global.stateName, + state.stateUser.abbr, + state.enrollmentCounts.chipEnrollments, + state.formData ); expect(out).toEqual({ contents: ["27,000"] }); }); @@ -469,7 +557,11 @@ describe("value synthesization utility", () => { acsProperty: "cyborgsCreated", }, }, - state + state.allStatesData, + state.global.stateName, + state.stateUser.abbr, + state.enrollmentCounts.chipEnrollments, + state.formData ); expect(out).toEqual({ contents: ["Not Available"] }); const outCompare = synthesize( @@ -480,7 +572,11 @@ describe("value synthesization utility", () => { acsProperty: "cyborgsCreated", }, }, - state + state.allStatesData, + state.global.stateName, + state.stateUser.abbr, + state.enrollmentCounts.chipEnrollments, + state.formData ); expect(outCompare).toEqual({ contents: ["Not Available"] }); }); @@ -493,7 +589,11 @@ describe("value synthesization utility", () => { acsProperty: "percentUninsured", }, }, - state + state.allStatesData, + state.global.stateName, + state.stateUser.abbr, + state.enrollmentCounts.chipEnrollments, + state.formData ); expect(out).toEqual({ contents: ["2.1%"] }); }); @@ -507,7 +607,34 @@ describe("value synthesization utility", () => { acsProperty: "numberUninsured", }, }, - state + state.allStatesData, + state.global.stateName, + state.stateUser.abbr, + state.enrollmentCounts.chipEnrollments, + state.formData + ); + expect(out).toEqual({ contents: ["3.70%"] }); + }); + + it("compares two ffys as admin user", () => { + Object.defineProperty(window, "location", { + value: { + pathname: "/views/sections/AL/2023/02", + }, + }); + const out = synthesize( + { + compareACS: { + ffy1: 2021, + ffy2: 2020, + acsProperty: "numberUninsured", + }, + }, + state.allStatesData, + state.global.stateName, + undefined, // state user abbreviation + state.enrollmentCounts.chipEnrollments, + state.formData ); expect(out).toEqual({ contents: ["3.70%"] }); }); @@ -523,7 +650,11 @@ describe("value synthesization utility", () => { index: 2, }, }, - state + state.allStatesData, + state.global.stateName, + state.stateUser.abbr, + state.enrollmentCounts.chipEnrollments, + state.formData ); expect(out).toEqual({ contents: ["333"] }); }); @@ -536,7 +667,11 @@ describe("value synthesization utility", () => { index: 1, }, }, - fallbackChipState + state.allStatesData, + state.global.stateName, + state.stateUser.abbr, + fallbackChipState.enrollmentCounts.chipEnrollments, + state.formData ); expect(out).toEqual({ contents: ["301"] }); }); @@ -548,7 +683,11 @@ describe("value synthesization utility", () => { enrollmentType: "Medicaid Expansion CHIP", }, }, - state + state.allStatesData, + state.global.stateName, + state.stateUser.abbr, + state.enrollmentCounts.chipEnrollments, + state.formData ); expect(out).toEqual({ contents: ["10.631%"] }); }); @@ -561,7 +700,11 @@ describe("value synthesization utility", () => { enrollmentType: "Medicaid Expansion CHIP", }, }, - fallbackChipState + state.allStatesData, + state.global.stateName, + state.stateUser.abbr, + fallbackChipState.enrollmentCounts.chipEnrollments, + state.formData ); expect(out).toEqual({ contents: ["10.631%"] }); }); @@ -573,7 +716,11 @@ describe("value synthesization utility", () => { enrollmentType: "Medicaid Expansion CHIP", }, }, - state + state.allStatesData, + state.global.stateName, + state.stateUser.abbr, + state.enrollmentCounts.chipEnrollments, + state.formData ); expect(out).toEqual({ contents: ["Not Available"] }); }); diff --git a/services/ui-src/yarn.lock b/services/ui-src/yarn.lock index be4111350..232dd1a4b 100644 --- a/services/ui-src/yarn.lock +++ b/services/ui-src/yarn.lock @@ -3124,120 +3124,120 @@ resolved "https://registry.yarnpkg.com/@emotion/hash/-/hash-0.8.0.tgz#bbbff68978fefdbe68ccb533bc8cbe1d1afb5413" integrity sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow== -"@esbuild/aix-ppc64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.20.2.tgz#a70f4ac11c6a1dfc18b8bbb13284155d933b9537" - integrity sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g== - -"@esbuild/android-arm64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.20.2.tgz#db1c9202a5bc92ea04c7b6840f1bbe09ebf9e6b9" - integrity sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg== - -"@esbuild/android-arm@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.20.2.tgz#3b488c49aee9d491c2c8f98a909b785870d6e995" - integrity sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w== - -"@esbuild/android-x64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.20.2.tgz#3b1628029e5576249d2b2d766696e50768449f98" - integrity sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg== - -"@esbuild/darwin-arm64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.20.2.tgz#6e8517a045ddd86ae30c6608c8475ebc0c4000bb" - integrity sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA== - -"@esbuild/darwin-x64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.20.2.tgz#90ed098e1f9dd8a9381695b207e1cff45540a0d0" - integrity sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA== - -"@esbuild/freebsd-arm64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.20.2.tgz#d71502d1ee89a1130327e890364666c760a2a911" - integrity sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw== - -"@esbuild/freebsd-x64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.20.2.tgz#aa5ea58d9c1dd9af688b8b6f63ef0d3d60cea53c" - integrity sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw== - -"@esbuild/linux-arm64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.20.2.tgz#055b63725df678379b0f6db9d0fa85463755b2e5" - integrity sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A== - -"@esbuild/linux-arm@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.20.2.tgz#76b3b98cb1f87936fbc37f073efabad49dcd889c" - integrity sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg== - -"@esbuild/linux-ia32@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.20.2.tgz#c0e5e787c285264e5dfc7a79f04b8b4eefdad7fa" - integrity sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig== - -"@esbuild/linux-loong64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.20.2.tgz#a6184e62bd7cdc63e0c0448b83801001653219c5" - integrity sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ== - -"@esbuild/linux-mips64el@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.20.2.tgz#d08e39ce86f45ef8fc88549d29c62b8acf5649aa" - integrity sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA== - -"@esbuild/linux-ppc64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.20.2.tgz#8d252f0b7756ffd6d1cbde5ea67ff8fd20437f20" - integrity sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg== - -"@esbuild/linux-riscv64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.20.2.tgz#19f6dcdb14409dae607f66ca1181dd4e9db81300" - integrity sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg== - -"@esbuild/linux-s390x@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.20.2.tgz#3c830c90f1a5d7dd1473d5595ea4ebb920988685" - integrity sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ== - -"@esbuild/linux-x64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.20.2.tgz#86eca35203afc0d9de0694c64ec0ab0a378f6fff" - integrity sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw== - -"@esbuild/netbsd-x64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.20.2.tgz#e771c8eb0e0f6e1877ffd4220036b98aed5915e6" - integrity sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ== - -"@esbuild/openbsd-x64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.20.2.tgz#9a795ae4b4e37e674f0f4d716f3e226dd7c39baf" - integrity sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ== - -"@esbuild/sunos-x64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.20.2.tgz#7df23b61a497b8ac189def6e25a95673caedb03f" - integrity sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w== - -"@esbuild/win32-arm64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.20.2.tgz#f1ae5abf9ca052ae11c1bc806fb4c0f519bacf90" - integrity sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ== - -"@esbuild/win32-ia32@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.20.2.tgz#241fe62c34d8e8461cd708277813e1d0ba55ce23" - integrity sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ== - -"@esbuild/win32-x64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.20.2.tgz#9c907b21e30a52db959ba4f80bb01a0cc403d5cc" - integrity sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ== +"@esbuild/aix-ppc64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz#c7184a326533fcdf1b8ee0733e21c713b975575f" + integrity sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ== + +"@esbuild/android-arm64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz#09d9b4357780da9ea3a7dfb833a1f1ff439b4052" + integrity sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A== + +"@esbuild/android-arm@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.21.5.tgz#9b04384fb771926dfa6d7ad04324ecb2ab9b2e28" + integrity sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg== + +"@esbuild/android-x64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.21.5.tgz#29918ec2db754cedcb6c1b04de8cd6547af6461e" + integrity sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA== + +"@esbuild/darwin-arm64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz#e495b539660e51690f3928af50a76fb0a6ccff2a" + integrity sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ== + +"@esbuild/darwin-x64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz#c13838fa57372839abdddc91d71542ceea2e1e22" + integrity sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw== + +"@esbuild/freebsd-arm64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz#646b989aa20bf89fd071dd5dbfad69a3542e550e" + integrity sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g== + +"@esbuild/freebsd-x64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz#aa615cfc80af954d3458906e38ca22c18cf5c261" + integrity sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ== + +"@esbuild/linux-arm64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz#70ac6fa14f5cb7e1f7f887bcffb680ad09922b5b" + integrity sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q== + +"@esbuild/linux-arm@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz#fc6fd11a8aca56c1f6f3894f2bea0479f8f626b9" + integrity sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA== + +"@esbuild/linux-ia32@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz#3271f53b3f93e3d093d518d1649d6d68d346ede2" + integrity sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg== + +"@esbuild/linux-loong64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz#ed62e04238c57026aea831c5a130b73c0f9f26df" + integrity sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg== + +"@esbuild/linux-mips64el@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz#e79b8eb48bf3b106fadec1ac8240fb97b4e64cbe" + integrity sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg== + +"@esbuild/linux-ppc64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz#5f2203860a143b9919d383ef7573521fb154c3e4" + integrity sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w== + +"@esbuild/linux-riscv64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz#07bcafd99322d5af62f618cb9e6a9b7f4bb825dc" + integrity sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA== + +"@esbuild/linux-s390x@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz#b7ccf686751d6a3e44b8627ababc8be3ef62d8de" + integrity sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A== + +"@esbuild/linux-x64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz#6d8f0c768e070e64309af8004bb94e68ab2bb3b0" + integrity sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ== + +"@esbuild/netbsd-x64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz#bbe430f60d378ecb88decb219c602667387a6047" + integrity sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg== + +"@esbuild/openbsd-x64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz#99d1cf2937279560d2104821f5ccce220cb2af70" + integrity sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow== + +"@esbuild/sunos-x64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz#08741512c10d529566baba837b4fe052c8f3487b" + integrity sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg== + +"@esbuild/win32-arm64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz#675b7385398411240735016144ab2e99a60fc75d" + integrity sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A== + +"@esbuild/win32-ia32@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz#1bfc3ce98aa6ca9a0969e4d2af72144c59c1193b" + integrity sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA== + +"@esbuild/win32-x64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz#acad351d582d157bb145535db2a6ff53dd514b5c" + integrity sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw== "@fortawesome/fontawesome-common-types@^0.2.36": version "0.2.36" @@ -3748,85 +3748,85 @@ "@babel/runtime" "^7.23.2" immutable "^4.3.4" -"@rollup/rollup-android-arm-eabi@4.17.2": - version "4.17.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.17.2.tgz#1a32112822660ee104c5dd3a7c595e26100d4c2d" - integrity sha512-NM0jFxY8bB8QLkoKxIQeObCaDlJKewVlIEkuyYKm5An1tdVZ966w2+MPQ2l8LBZLjR+SgyV+nRkTIunzOYBMLQ== - -"@rollup/rollup-android-arm64@4.17.2": - version "4.17.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.17.2.tgz#5aeef206d65ff4db423f3a93f71af91b28662c5b" - integrity sha512-yeX/Usk7daNIVwkq2uGoq2BYJKZY1JfyLTaHO/jaiSwi/lsf8fTFoQW/n6IdAsx5tx+iotu2zCJwz8MxI6D/Bw== - -"@rollup/rollup-darwin-arm64@4.17.2": - version "4.17.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.17.2.tgz#6b66aaf003c70454c292cd5f0236ebdc6ffbdf1a" - integrity sha512-kcMLpE6uCwls023+kknm71ug7MZOrtXo+y5p/tsg6jltpDtgQY1Eq5sGfHcQfb+lfuKwhBmEURDga9N0ol4YPw== - -"@rollup/rollup-darwin-x64@4.17.2": - version "4.17.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.17.2.tgz#f64fc51ed12b19f883131ccbcea59fc68cbd6c0b" - integrity sha512-AtKwD0VEx0zWkL0ZjixEkp5tbNLzX+FCqGG1SvOu993HnSz4qDI6S4kGzubrEJAljpVkhRSlg5bzpV//E6ysTQ== - -"@rollup/rollup-linux-arm-gnueabihf@4.17.2": - version "4.17.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.17.2.tgz#1a7641111be67c10111f7122d1e375d1226cbf14" - integrity sha512-3reX2fUHqN7sffBNqmEyMQVj/CKhIHZd4y631duy0hZqI8Qoqf6lTtmAKvJFYa6bhU95B1D0WgzHkmTg33In0A== - -"@rollup/rollup-linux-arm-musleabihf@4.17.2": - version "4.17.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.17.2.tgz#c93fd632923e0fee25aacd2ae414288d0b7455bb" - integrity sha512-uSqpsp91mheRgw96xtyAGP9FW5ChctTFEoXP0r5FAzj/3ZRv3Uxjtc7taRQSaQM/q85KEKjKsZuiZM3GyUivRg== - -"@rollup/rollup-linux-arm64-gnu@4.17.2": - version "4.17.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.17.2.tgz#fa531425dd21d058a630947527b4612d9d0b4a4a" - integrity sha512-EMMPHkiCRtE8Wdk3Qhtciq6BndLtstqZIroHiiGzB3C5LDJmIZcSzVtLRbwuXuUft1Cnv+9fxuDtDxz3k3EW2A== - -"@rollup/rollup-linux-arm64-musl@4.17.2": - version "4.17.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.17.2.tgz#8acc16f095ceea5854caf7b07e73f7d1802ac5af" - integrity sha512-NMPylUUZ1i0z/xJUIx6VUhISZDRT+uTWpBcjdv0/zkp7b/bQDF+NfnfdzuTiB1G6HTodgoFa93hp0O1xl+/UbA== - -"@rollup/rollup-linux-powerpc64le-gnu@4.17.2": - version "4.17.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.17.2.tgz#94e69a8499b5cf368911b83a44bb230782aeb571" - integrity sha512-T19My13y8uYXPw/L/k0JYaX1fJKFT/PWdXiHr8mTbXWxjVF1t+8Xl31DgBBvEKclw+1b00Chg0hxE2O7bTG7GQ== - -"@rollup/rollup-linux-riscv64-gnu@4.17.2": - version "4.17.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.17.2.tgz#7ef1c781c7e59e85a6ce261cc95d7f1e0b56db0f" - integrity sha512-BOaNfthf3X3fOWAB+IJ9kxTgPmMqPPH5f5k2DcCsRrBIbWnaJCgX2ll77dV1TdSy9SaXTR5iDXRL8n7AnoP5cg== - -"@rollup/rollup-linux-s390x-gnu@4.17.2": - version "4.17.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.17.2.tgz#f15775841c3232fca9b78cd25a7a0512c694b354" - integrity sha512-W0UP/x7bnn3xN2eYMql2T/+wpASLE5SjObXILTMPUBDB/Fg/FxC+gX4nvCfPBCbNhz51C+HcqQp2qQ4u25ok6g== - -"@rollup/rollup-linux-x64-gnu@4.17.2": - version "4.17.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.17.2.tgz#b521d271798d037ad70c9f85dd97d25f8a52e811" - integrity sha512-Hy7pLwByUOuyaFC6mAr7m+oMC+V7qyifzs/nW2OJfC8H4hbCzOX07Ov0VFk/zP3kBsELWNFi7rJtgbKYsav9QQ== - -"@rollup/rollup-linux-x64-musl@4.17.2": - version "4.17.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.17.2.tgz#9254019cc4baac35800991315d133cc9fd1bf385" - integrity sha512-h1+yTWeYbRdAyJ/jMiVw0l6fOOm/0D1vNLui9iPuqgRGnXA0u21gAqOyB5iHjlM9MMfNOm9RHCQ7zLIzT0x11Q== - -"@rollup/rollup-win32-arm64-msvc@4.17.2": - version "4.17.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.17.2.tgz#27f65a89f6f52ee9426ec11e3571038e4671790f" - integrity sha512-tmdtXMfKAjy5+IQsVtDiCfqbynAQE/TQRpWdVataHmhMb9DCoJxp9vLcCBjEQWMiUYxO1QprH/HbY9ragCEFLA== - -"@rollup/rollup-win32-ia32-msvc@4.17.2": - version "4.17.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.17.2.tgz#a2fbf8246ed0bb014f078ca34ae6b377a90cb411" - integrity sha512-7II/QCSTAHuE5vdZaQEwJq2ZACkBpQDOmQsE6D6XUbnBHW8IAhm4eTufL6msLJorzrHDFv3CF8oCA/hSIRuZeQ== - -"@rollup/rollup-win32-x64-msvc@4.17.2": - version "4.17.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.17.2.tgz#5a2d08b81e8064b34242d5cc9973ef8dd1e60503" - integrity sha512-TGGO7v7qOq4CYmSBVEYpI1Y5xDuCEnbVC5Vth8mOsW0gDSzxNrVERPc790IGHsrT2dQSimgMr9Ub3Y1Jci5/8w== +"@rollup/rollup-android-arm-eabi@4.22.2": + version "4.22.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.22.2.tgz#4e0c4c462692ecb7ae2b008f25af4cced05ac4f9" + integrity sha512-8Ao+EDmTPjZ1ZBABc1ohN7Ylx7UIYcjReZinigedTOnGFhIctyGPxY2II+hJ6gD2/vkDKZTyQ0e7++kwv6wDrw== + +"@rollup/rollup-android-arm64@4.22.2": + version "4.22.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.22.2.tgz#d97ed02a950061adc2056d6d2d6df8f05d877ae9" + integrity sha512-I+B1v0a4iqdS9DvYt1RJZ3W+Oh9EVWjbY6gp79aAYipIbxSLEoQtFQlZEnUuwhDXCqMxJ3hluxKAdPD+GiluFQ== + +"@rollup/rollup-darwin-arm64@4.22.2": + version "4.22.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.22.2.tgz#06dec35316de9fe433d66c849ecc056e221ba422" + integrity sha512-BTHO7rR+LC67OP7I8N8GvdvnQqzFujJYWo7qCQ8fGdQcb8Gn6EQY+K1P+daQLnDCuWKbZ+gHAQZuKiQkXkqIYg== + +"@rollup/rollup-darwin-x64@4.22.2": + version "4.22.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.22.2.tgz#22ee27a0ccfdc045c2a37f6980351329516ce119" + integrity sha512-1esGwDNFe2lov4I6GsEeYaAMHwkqk0IbuGH7gXGdBmd/EP9QddJJvTtTF/jv+7R8ZTYPqwcdLpMTxK8ytP6k6Q== + +"@rollup/rollup-linux-arm-gnueabihf@4.22.2": + version "4.22.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.22.2.tgz#d86df2d8c600ebdd7251110a3357c53e0a583ace" + integrity sha512-GBHuY07x96OTEM3OQLNaUSUwrOhdMea/LDmlFHi/HMonrgF6jcFrrFFwJhhe84XtA1oK/Qh4yFS+VMREf6dobg== + +"@rollup/rollup-linux-arm-musleabihf@4.22.2": + version "4.22.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.22.2.tgz#a8b7b6a805356c8bd0409e4c5f56664d80a50aaa" + integrity sha512-Dbfa9Sc1G1lWxop0gNguXOfGhaXQWAGhZUcqA0Vs6CnJq8JW/YOw/KvyGtQFmz4yDr0H4v9X248SM7bizYj4yQ== + +"@rollup/rollup-linux-arm64-gnu@4.22.2": + version "4.22.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.22.2.tgz#766064021d2bfc42f13f4653f8870a9b8bbdc31d" + integrity sha512-Z1YpgBvFYhZIyBW5BoopwSg+t7yqEhs5HCei4JbsaXnhz/eZehT18DaXl957aaE9QK7TRGFryCAtStZywcQe1A== + +"@rollup/rollup-linux-arm64-musl@4.22.2": + version "4.22.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.22.2.tgz#490f49236102b97738d9406eaf5cd8d9dad35c15" + integrity sha512-66Zszr7i/JaQ0u/lefcfaAw16wh3oT72vSqubIMQqWzOg85bGCPhoeykG/cC5uvMzH80DQa2L539IqKht6twVA== + +"@rollup/rollup-linux-powerpc64le-gnu@4.22.2": + version "4.22.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.22.2.tgz#03a67f1476dd80f115ce35bc9b0d03c50c16679d" + integrity sha512-HpJCMnlMTfEhwo19bajvdraQMcAq3FX08QDx3OfQgb+414xZhKNf3jNvLFYKbbDSGBBrQh5yNwWZrdK0g0pokg== + +"@rollup/rollup-linux-riscv64-gnu@4.22.2": + version "4.22.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.22.2.tgz#d86e9b7b5b242652cd691c46d1939130c35cb68d" + integrity sha512-/egzQzbOSRef2vYCINKITGrlwkzP7uXRnL+xU2j75kDVp3iPdcF0TIlfwTRF8woBZllhk3QaxNOEj2Ogh3t9hg== + +"@rollup/rollup-linux-s390x-gnu@4.22.2": + version "4.22.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.22.2.tgz#c8fca373bec6df8550b31b3dbb56e2b241bc8718" + integrity sha512-qgYbOEbrPfEkH/OnUJd1/q4s89FvNJQIUldx8X2F/UM5sEbtkqZpf2s0yly2jSCKr1zUUOY1hnTP2J1WOzMAdA== + +"@rollup/rollup-linux-x64-gnu@4.22.2": + version "4.22.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.22.2.tgz#be182ef761c9b0147496e647ace44fd1b912344f" + integrity sha512-a0lkvNhFLhf+w7A95XeBqGQaG0KfS3hPFJnz1uraSdUe/XImkp/Psq0Ca0/UdD5IEAGoENVmnYrzSC9Y2a2uKQ== + +"@rollup/rollup-linux-x64-musl@4.22.2": + version "4.22.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.22.2.tgz#c280202d5b54d04f1e2b810359fe73c4973e8b72" + integrity sha512-sSWBVZgzwtsuG9Dxi9kjYOUu/wKW+jrbzj4Cclabqnfkot8Z3VEHcIgyenA3lLn/Fu11uDviWjhctulkhEO60g== + +"@rollup/rollup-win32-arm64-msvc@4.22.2": + version "4.22.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.22.2.tgz#8ae561401b92acb8ca7a842ffadececb22a2247e" + integrity sha512-t/YgCbZ638R/r7IKb9yCM6nAek1RUvyNdfU0SHMDLOf6GFe/VG1wdiUAsxTWHKqjyzkRGg897ZfCpdo1bsCSsA== + +"@rollup/rollup-win32-ia32-msvc@4.22.2": + version "4.22.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.22.2.tgz#c3a8b081595026eab9fccfe581624cb31af0d6f8" + integrity sha512-kTmX5uGs3WYOA+gYDgI6ITkZng9SP71FEMoHNkn+cnmb9Zuyyay8pf0oO5twtTwSjNGy1jlaWooTIr+Dw4tIbw== + +"@rollup/rollup-win32-x64-msvc@4.22.2": + version "4.22.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.22.2.tgz#c770006ccc780b2de7b2151fc7f37b49121a21c1" + integrity sha512-Yy8So+SoRz8I3NS4Bjh91BICPOSVgdompTIPYTByUqU66AXSIOgmW3Lv1ke3NORPqxdF+RdrZET+8vYai6f4aA== "@sheerun/mutationobserver-shim@^0.3.2": version "0.3.3" @@ -5842,6 +5842,11 @@ date-fns@^2.28.0: resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-2.29.1.tgz#9667c2615525e552b5135a3116b95b1961456e60" integrity sha512-dlLD5rKaKxpFdnjrs+5azHDFOPEu4ANy/LTh04A1DTzMM7qoajmKCBc8pkKRFT41CNzw+4gQh79X5C+Jq27HAw== +date-fns@^3.6.0: + version "3.6.0" + resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-3.6.0.tgz#f20ca4fe94f8b754951b24240676e8618c0206bf" + integrity sha512-fRHTG8g/Gif+kSh50gaGEdToemgfj74aRX3swtiouboip5JDLAyDE9F11nHMIcvOaXeOC6D7SpNhi7uFyB7Uww== + debug@4, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1: version "4.3.4" resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" @@ -6266,34 +6271,34 @@ es-to-primitive@^1.2.1: is-date-object "^1.0.1" is-symbol "^1.0.2" -esbuild@^0.20.1: - version "0.20.2" - resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.20.2.tgz#9d6b2386561766ee6b5a55196c6d766d28c87ea1" - integrity sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g== +esbuild@^0.21.3: + version "0.21.5" + resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.21.5.tgz#9ca301b120922959b766360d8ac830da0d02997d" + integrity sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw== optionalDependencies: - "@esbuild/aix-ppc64" "0.20.2" - "@esbuild/android-arm" "0.20.2" - "@esbuild/android-arm64" "0.20.2" - "@esbuild/android-x64" "0.20.2" - "@esbuild/darwin-arm64" "0.20.2" - "@esbuild/darwin-x64" "0.20.2" - "@esbuild/freebsd-arm64" "0.20.2" - "@esbuild/freebsd-x64" "0.20.2" - "@esbuild/linux-arm" "0.20.2" - "@esbuild/linux-arm64" "0.20.2" - "@esbuild/linux-ia32" "0.20.2" - "@esbuild/linux-loong64" "0.20.2" - "@esbuild/linux-mips64el" "0.20.2" - "@esbuild/linux-ppc64" "0.20.2" - "@esbuild/linux-riscv64" "0.20.2" - "@esbuild/linux-s390x" "0.20.2" - "@esbuild/linux-x64" "0.20.2" - "@esbuild/netbsd-x64" "0.20.2" - "@esbuild/openbsd-x64" "0.20.2" - "@esbuild/sunos-x64" "0.20.2" - "@esbuild/win32-arm64" "0.20.2" - "@esbuild/win32-ia32" "0.20.2" - "@esbuild/win32-x64" "0.20.2" + "@esbuild/aix-ppc64" "0.21.5" + "@esbuild/android-arm" "0.21.5" + "@esbuild/android-arm64" "0.21.5" + "@esbuild/android-x64" "0.21.5" + "@esbuild/darwin-arm64" "0.21.5" + "@esbuild/darwin-x64" "0.21.5" + "@esbuild/freebsd-arm64" "0.21.5" + "@esbuild/freebsd-x64" "0.21.5" + "@esbuild/linux-arm" "0.21.5" + "@esbuild/linux-arm64" "0.21.5" + "@esbuild/linux-ia32" "0.21.5" + "@esbuild/linux-loong64" "0.21.5" + "@esbuild/linux-mips64el" "0.21.5" + "@esbuild/linux-ppc64" "0.21.5" + "@esbuild/linux-riscv64" "0.21.5" + "@esbuild/linux-s390x" "0.21.5" + "@esbuild/linux-x64" "0.21.5" + "@esbuild/netbsd-x64" "0.21.5" + "@esbuild/openbsd-x64" "0.21.5" + "@esbuild/sunos-x64" "0.21.5" + "@esbuild/win32-arm64" "0.21.5" + "@esbuild/win32-ia32" "0.21.5" + "@esbuild/win32-x64" "0.21.5" escalade@^3.1.1: version "3.1.1" @@ -8770,11 +8775,6 @@ mkdirp@^0.5.1: dependencies: minimist "^1.2.6" -moment@^2.29.4: - version "2.29.4" - resolved "https://registry.yarnpkg.com/moment/-/moment-2.29.4.tgz#3dbe052889fe7c1b2ed966fcb3a77328964ef108" - integrity sha512-5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w== - moo@^0.5.0: version "0.5.1" resolved "https://registry.yarnpkg.com/moo/-/moo-0.5.1.tgz#7aae7f384b9b09f620b6abf6f74ebbcd1b65dbc4" @@ -9237,6 +9237,11 @@ picocolors@^1.0.0: resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== +picocolors@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.1.0.tgz#5358b76a78cde483ba5cef6a9dc9671440b27d59" + integrity sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw== + picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.2.3, picomatch@^2.3.1: version "2.3.1" resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" @@ -9274,14 +9279,14 @@ posix-character-classes@^0.1.0: resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" integrity sha1-AerA/jta9xoqbAL+q7jB/vfgDqs= -postcss@^8.4.38: - version "8.4.38" - resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.38.tgz#b387d533baf2054288e337066d81c6bee9db9e0e" - integrity sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A== +postcss@^8.4.43: + version "8.4.47" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.47.tgz#5bf6c9a010f3e724c503bf03ef7947dcb0fea365" + integrity sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ== dependencies: nanoid "^3.3.7" - picocolors "^1.0.0" - source-map-js "^1.2.0" + picocolors "^1.1.0" + source-map-js "^1.2.1" prelude-ls@~1.1.2: version "1.1.2" @@ -9943,29 +9948,29 @@ rimraf@^3.0.0, rimraf@^3.0.2: dependencies: glob "^7.1.3" -rollup@^4.13.0: - version "4.17.2" - resolved "https://registry.yarnpkg.com/rollup/-/rollup-4.17.2.tgz#26d1785d0144122277fdb20ab3a24729ae68301f" - integrity sha512-/9ClTJPByC0U4zNLowV1tMBe8yMEAxewtR3cUNX5BoEpGH3dQEWpJLr6CLp0fPdYRF/fzVOgvDb1zXuakwF5kQ== +rollup@^4.20.0: + version "4.22.2" + resolved "https://registry.yarnpkg.com/rollup/-/rollup-4.22.2.tgz#d762fa52c6ddb1307c1d6e8b463ba79432ffbb6b" + integrity sha512-JWWpTrZmqQGQWt16xvNn6KVIUz16VtZwl984TKw0dfqqRpFwtLJYYk1/4BTgplndMQKWUk/yB4uOShYmMzA2Vg== dependencies: "@types/estree" "1.0.5" optionalDependencies: - "@rollup/rollup-android-arm-eabi" "4.17.2" - "@rollup/rollup-android-arm64" "4.17.2" - "@rollup/rollup-darwin-arm64" "4.17.2" - "@rollup/rollup-darwin-x64" "4.17.2" - "@rollup/rollup-linux-arm-gnueabihf" "4.17.2" - "@rollup/rollup-linux-arm-musleabihf" "4.17.2" - "@rollup/rollup-linux-arm64-gnu" "4.17.2" - "@rollup/rollup-linux-arm64-musl" "4.17.2" - "@rollup/rollup-linux-powerpc64le-gnu" "4.17.2" - "@rollup/rollup-linux-riscv64-gnu" "4.17.2" - "@rollup/rollup-linux-s390x-gnu" "4.17.2" - "@rollup/rollup-linux-x64-gnu" "4.17.2" - "@rollup/rollup-linux-x64-musl" "4.17.2" - "@rollup/rollup-win32-arm64-msvc" "4.17.2" - "@rollup/rollup-win32-ia32-msvc" "4.17.2" - "@rollup/rollup-win32-x64-msvc" "4.17.2" + "@rollup/rollup-android-arm-eabi" "4.22.2" + "@rollup/rollup-android-arm64" "4.22.2" + "@rollup/rollup-darwin-arm64" "4.22.2" + "@rollup/rollup-darwin-x64" "4.22.2" + "@rollup/rollup-linux-arm-gnueabihf" "4.22.2" + "@rollup/rollup-linux-arm-musleabihf" "4.22.2" + "@rollup/rollup-linux-arm64-gnu" "4.22.2" + "@rollup/rollup-linux-arm64-musl" "4.22.2" + "@rollup/rollup-linux-powerpc64le-gnu" "4.22.2" + "@rollup/rollup-linux-riscv64-gnu" "4.22.2" + "@rollup/rollup-linux-s390x-gnu" "4.22.2" + "@rollup/rollup-linux-x64-gnu" "4.22.2" + "@rollup/rollup-linux-x64-musl" "4.22.2" + "@rollup/rollup-win32-arm64-msvc" "4.22.2" + "@rollup/rollup-win32-ia32-msvc" "4.22.2" + "@rollup/rollup-win32-x64-msvc" "4.22.2" fsevents "~2.3.2" rst-selector-parser@^2.2.3: @@ -10217,10 +10222,10 @@ snapdragon@^0.8.1: resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c" integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw== -source-map-js@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.2.0.tgz#16b809c162517b5b8c3e7dcd315a2a5c2612b2af" - integrity sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg== +source-map-js@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.2.1.tgz#1ce5650fddd87abc099eda37dcff024c2667ae46" + integrity sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA== source-map-resolve@^0.5.0, source-map-resolve@^0.5.2: version "0.5.3" @@ -10950,14 +10955,14 @@ vite-tsconfig-paths@^4.3.2: globrex "^0.1.2" tsconfck "^3.0.3" -vite@^5.2.11: - version "5.2.11" - resolved "https://registry.yarnpkg.com/vite/-/vite-5.2.11.tgz#726ec05555431735853417c3c0bfb36003ca0cbd" - integrity sha512-HndV31LWW05i1BLPMUCE1B9E9GFbOu1MbenhS58FuK6owSO5qHm7GiCotrNY1YE5rMeQSFBGmT5ZaLEjFizgiQ== +vite@^5.4.6: + version "5.4.6" + resolved "https://registry.yarnpkg.com/vite/-/vite-5.4.6.tgz#85a93a1228a7fb5a723ca1743e337a2588ed008f" + integrity sha512-IeL5f8OO5nylsgzd9tq4qD2QqI0k2CQLGrWD0rCN0EQJZpBK5vJAx0I+GDkMOXxQX/OfFHMuLIx6ddAxGX/k+Q== dependencies: - esbuild "^0.20.1" - postcss "^8.4.38" - rollup "^4.13.0" + esbuild "^0.21.3" + postcss "^8.4.43" + rollup "^4.20.0" optionalDependencies: fsevents "~2.3.3" diff --git a/services/uploads/serverless.yml b/services/uploads/serverless.yml index 074a35739..f08d11186 100644 --- a/services/uploads/serverless.yml +++ b/services/uploads/serverless.yml @@ -46,7 +46,6 @@ custom: serverlessTerminationProtection: stages: - main - - master - val - production scripts: diff --git a/tests/cypress/cypress.config.js b/tests/cypress/cypress.config.js index 38cd69c4e..9dbeabbe6 100644 --- a/tests/cypress/cypress.config.js +++ b/tests/cypress/cypress.config.js @@ -1,8 +1,6 @@ const { defineConfig } = require("cypress"); -const preprocessor = require("@badeball/cypress-cucumber-preprocessor"); -const browserify = require("@badeball/cypress-cucumber-preprocessor/browserify"); -const { lighthouse } = require("@cypress-audit/lighthouse"); -const { pa11y, prepareAudit } = require("@cypress-audit/pa11y"); +const { lighthouse, prepareAudit } = require("@cypress-audit/lighthouse"); +const { pa11y } = require("@cypress-audit/pa11y"); require("dotenv").config({ path: "../../.env" }); module.exports = defineConfig({ @@ -29,8 +27,6 @@ module.exports = defineConfig({ supportFile: "support/index.js", excludeSpecPattern: "**/filterReports.spec.js", async setupNodeEvents(on, config) { - await preprocessor.addCucumberPreprocessorPlugin(on, config); - on("file:preprocessor", browserify.default(config)); on("before:browser:launch", (_browser = {}, launchOptions) => { prepareAudit(launchOptions); }); diff --git a/tests/cypress/package.json b/tests/cypress/package.json index b79ff30f3..e23364778 100644 --- a/tests/cypress/package.json +++ b/tests/cypress/package.json @@ -25,8 +25,5 @@ "cypress-cucumber-preprocessor": { "nonGlobalStepDefinitions": true, "stepDefinitions": "tests" - }, - "dependencies": { - "cypress-tags": "^1.1.2" } } diff --git a/tests/cypress/tests/integration/submitAndUncertify.spec.js b/tests/cypress/tests/integration/submitAndUncertify.spec.js index b21567c32..23f06347d 100644 --- a/tests/cypress/tests/integration/submitAndUncertify.spec.js +++ b/tests/cypress/tests/integration/submitAndUncertify.spec.js @@ -21,6 +21,7 @@ describe("CARTS Submit and Uncertify Integration Tests", () => { cy.get(certifySubmitButton).click(); cy.get("button").contains("Confirm Certify and Submit").click(); + cy.wait(3000); cy.get("button").contains("Return Home").click(); // log in as CMS Admin (user who can uncertify) diff --git a/tests/cypress/yarn.lock b/tests/cypress/yarn.lock index cdc47b667..f6cd7a274 100644 --- a/tests/cypress/yarn.lock +++ b/tests/cypress/yarn.lock @@ -2,15 +2,7 @@ # yarn lockfile v1 -"@ampproject/remapping@^2.2.0": - version "2.2.1" - resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.2.1.tgz#99e8e11851128b8702cd57c33684f1d0f260b630" - integrity sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg== - dependencies: - "@jridgewell/gen-mapping" "^0.3.0" - "@jridgewell/trace-mapping" "^0.3.9" - -"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.22.13": +"@babel/code-frame@^7.0.0": version "7.22.13" resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.22.13.tgz#e3c1c099402598483b7a8c46a721d1038803755e" integrity sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w== @@ -18,249 +10,11 @@ "@babel/highlight" "^7.22.13" chalk "^2.4.2" -"@babel/compat-data@^7.20.5", "@babel/compat-data@^7.22.20", "@babel/compat-data@^7.22.6", "@babel/compat-data@^7.22.9": - version "7.22.20" - resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.22.20.tgz#8df6e96661209623f1975d66c35ffca66f3306d0" - integrity sha512-BQYjKbpXjoXwFW5jGqiizJQQT/aC7pFm9Ok1OWssonuguICi264lbgMzRp2ZMmRSlfkX6DsWDDcsrctK8Rwfiw== - -"@babel/core@^7.16.0": - version "7.22.20" - resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.22.20.tgz#e3d0eed84c049e2a2ae0a64d27b6a37edec385b7" - integrity sha512-Y6jd1ahLubuYweD/zJH+vvOY141v4f9igNQAQ+MBgq9JlHS2iTsZKn1aMsb3vGccZsXI16VzTBw52Xx0DWmtnA== - dependencies: - "@ampproject/remapping" "^2.2.0" - "@babel/code-frame" "^7.22.13" - "@babel/generator" "^7.22.15" - "@babel/helper-compilation-targets" "^7.22.15" - "@babel/helper-module-transforms" "^7.22.20" - "@babel/helpers" "^7.22.15" - "@babel/parser" "^7.22.16" - "@babel/template" "^7.22.15" - "@babel/traverse" "^7.22.20" - "@babel/types" "^7.22.19" - convert-source-map "^1.7.0" - debug "^4.1.0" - gensync "^1.0.0-beta.2" - json5 "^2.2.3" - semver "^6.3.1" - -"@babel/generator@^7.22.15": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.22.15.tgz#1564189c7ec94cb8f77b5e8a90c4d200d21b2339" - integrity sha512-Zu9oWARBqeVOW0dZOjXc3JObrzuqothQ3y/n1kUtrjCoCPLkXUwMvOo/F/TCfoHMbWIFlWwpZtkZVb9ga4U2pA== - dependencies: - "@babel/types" "^7.22.15" - "@jridgewell/gen-mapping" "^0.3.2" - "@jridgewell/trace-mapping" "^0.3.17" - jsesc "^2.5.1" - -"@babel/generator@^7.23.0": - version "7.23.0" - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.23.0.tgz#df5c386e2218be505b34837acbcb874d7a983420" - integrity sha512-lN85QRR+5IbYrMWM6Y4pE/noaQtg4pNiqeNGX60eqOfo6gtEj6uw/JagelB8vVztSd7R6M5n1+PQkDbHbBRU4g== - dependencies: - "@babel/types" "^7.23.0" - "@jridgewell/gen-mapping" "^0.3.2" - "@jridgewell/trace-mapping" "^0.3.17" - jsesc "^2.5.1" - -"@babel/helper-annotate-as-pure@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz#e7f06737b197d580a01edf75d97e2c8be99d3882" - integrity sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg== - dependencies: - "@babel/types" "^7.22.5" - -"@babel/helper-builder-binary-assignment-operator-visitor@^7.22.5": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.15.tgz#5426b109cf3ad47b91120f8328d8ab1be8b0b956" - integrity sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw== - dependencies: - "@babel/types" "^7.22.15" - -"@babel/helper-compilation-targets@^7.20.7", "@babel/helper-compilation-targets@^7.22.15", "@babel/helper-compilation-targets@^7.22.5", "@babel/helper-compilation-targets@^7.22.6": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.15.tgz#0698fc44551a26cf29f18d4662d5bf545a6cfc52" - integrity sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw== - dependencies: - "@babel/compat-data" "^7.22.9" - "@babel/helper-validator-option" "^7.22.15" - browserslist "^4.21.9" - lru-cache "^5.1.1" - semver "^6.3.1" - -"@babel/helper-create-class-features-plugin@^7.18.6", "@babel/helper-create-class-features-plugin@^7.22.11", "@babel/helper-create-class-features-plugin@^7.22.5": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.15.tgz#97a61b385e57fe458496fad19f8e63b63c867de4" - integrity sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg== - dependencies: - "@babel/helper-annotate-as-pure" "^7.22.5" - "@babel/helper-environment-visitor" "^7.22.5" - "@babel/helper-function-name" "^7.22.5" - "@babel/helper-member-expression-to-functions" "^7.22.15" - "@babel/helper-optimise-call-expression" "^7.22.5" - "@babel/helper-replace-supers" "^7.22.9" - "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" - "@babel/helper-split-export-declaration" "^7.22.6" - semver "^6.3.1" - -"@babel/helper-create-regexp-features-plugin@^7.18.6", "@babel/helper-create-regexp-features-plugin@^7.22.5": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.15.tgz#5ee90093914ea09639b01c711db0d6775e558be1" - integrity sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w== - dependencies: - "@babel/helper-annotate-as-pure" "^7.22.5" - regexpu-core "^5.3.1" - semver "^6.3.1" - -"@babel/helper-define-polyfill-provider@^0.4.2": - version "0.4.2" - resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.2.tgz#82c825cadeeeee7aad237618ebbe8fa1710015d7" - integrity sha512-k0qnnOqHn5dK9pZpfD5XXZ9SojAITdCKRn2Lp6rnDGzIbaP0rHyMPk/4wsSxVBVz4RfN0q6VpXWP2pDGIoQ7hw== - dependencies: - "@babel/helper-compilation-targets" "^7.22.6" - "@babel/helper-plugin-utils" "^7.22.5" - debug "^4.1.1" - lodash.debounce "^4.0.8" - resolve "^1.14.2" - -"@babel/helper-environment-visitor@^7.22.20", "@babel/helper-environment-visitor@^7.22.5": - version "7.22.20" - resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz#96159db61d34a29dba454c959f5ae4a649ba9167" - integrity sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA== - -"@babel/helper-function-name@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.22.5.tgz#ede300828905bb15e582c037162f99d5183af1be" - integrity sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ== - dependencies: - "@babel/template" "^7.22.5" - "@babel/types" "^7.22.5" - -"@babel/helper-function-name@^7.23.0": - version "7.23.0" - resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz#1f9a3cdbd5b2698a670c30d2735f9af95ed52759" - integrity sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw== - dependencies: - "@babel/template" "^7.22.15" - "@babel/types" "^7.23.0" - -"@babel/helper-hoist-variables@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz#c01a007dac05c085914e8fb652b339db50d823bb" - integrity sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw== - dependencies: - "@babel/types" "^7.22.5" - -"@babel/helper-member-expression-to-functions@^7.22.15": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.22.15.tgz#b95a144896f6d491ca7863576f820f3628818621" - integrity sha512-qLNsZbgrNh0fDQBCPocSL8guki1hcPvltGDv/NxvUoABwFq7GkKSu1nRXeJkVZc+wJvne2E0RKQz+2SQrz6eAA== - dependencies: - "@babel/types" "^7.22.15" - -"@babel/helper-module-imports@^7.22.15", "@babel/helper-module-imports@^7.22.5": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz#16146307acdc40cc00c3b2c647713076464bdbf0" - integrity sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w== - dependencies: - "@babel/types" "^7.22.15" - -"@babel/helper-module-transforms@^7.22.15", "@babel/helper-module-transforms@^7.22.20", "@babel/helper-module-transforms@^7.22.5", "@babel/helper-module-transforms@^7.22.9": - version "7.22.20" - resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.22.20.tgz#da9edc14794babbe7386df438f3768067132f59e" - integrity sha512-dLT7JVWIUUxKOs1UnJUBR3S70YK+pKX6AbJgB2vMIvEkZkrfJDbYDJesnPshtKV4LhDOR3Oc5YULeDizRek+5A== - dependencies: - "@babel/helper-environment-visitor" "^7.22.20" - "@babel/helper-module-imports" "^7.22.15" - "@babel/helper-simple-access" "^7.22.5" - "@babel/helper-split-export-declaration" "^7.22.6" - "@babel/helper-validator-identifier" "^7.22.20" - -"@babel/helper-optimise-call-expression@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz#f21531a9ccbff644fdd156b4077c16ff0c3f609e" - integrity sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw== - dependencies: - "@babel/types" "^7.22.5" - -"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.20.2", "@babel/helper-plugin-utils@^7.22.5", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz#dd7ee3735e8a313b9f7b05a773d892e88e6d7295" - integrity sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg== - -"@babel/helper-remap-async-to-generator@^7.22.5", "@babel/helper-remap-async-to-generator@^7.22.9": - version "7.22.20" - resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.20.tgz#7b68e1cb4fa964d2996fd063723fb48eca8498e0" - integrity sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw== - dependencies: - "@babel/helper-annotate-as-pure" "^7.22.5" - "@babel/helper-environment-visitor" "^7.22.20" - "@babel/helper-wrap-function" "^7.22.20" - -"@babel/helper-replace-supers@^7.22.5", "@babel/helper-replace-supers@^7.22.9": - version "7.22.20" - resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.22.20.tgz#e37d367123ca98fe455a9887734ed2e16eb7a793" - integrity sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw== - dependencies: - "@babel/helper-environment-visitor" "^7.22.20" - "@babel/helper-member-expression-to-functions" "^7.22.15" - "@babel/helper-optimise-call-expression" "^7.22.5" - -"@babel/helper-simple-access@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz#4938357dc7d782b80ed6dbb03a0fba3d22b1d5de" - integrity sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w== - dependencies: - "@babel/types" "^7.22.5" - -"@babel/helper-skip-transparent-expression-wrappers@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz#007f15240b5751c537c40e77abb4e89eeaaa8847" - integrity sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q== - dependencies: - "@babel/types" "^7.22.5" - -"@babel/helper-split-export-declaration@^7.22.6": - version "7.22.6" - resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz#322c61b7310c0997fe4c323955667f18fcefb91c" - integrity sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g== - dependencies: - "@babel/types" "^7.22.5" - -"@babel/helper-string-parser@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz#533f36457a25814cf1df6488523ad547d784a99f" - integrity sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw== - -"@babel/helper-validator-identifier@^7.22.19", "@babel/helper-validator-identifier@^7.22.20", "@babel/helper-validator-identifier@^7.22.5": +"@babel/helper-validator-identifier@^7.22.20": version "7.22.20" resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz#c4ae002c61d2879e724581d96665583dbc1dc0e0" integrity sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A== -"@babel/helper-validator-option@^7.22.15": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.22.15.tgz#694c30dfa1d09a6534cdfcafbe56789d36aba040" - integrity sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA== - -"@babel/helper-wrap-function@^7.22.20": - version "7.22.20" - resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.22.20.tgz#15352b0b9bfb10fc9c76f79f6342c00e3411a569" - integrity sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw== - dependencies: - "@babel/helper-function-name" "^7.22.5" - "@babel/template" "^7.22.15" - "@babel/types" "^7.22.19" - -"@babel/helpers@^7.22.15": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.22.15.tgz#f09c3df31e86e3ea0b7ff7556d85cdebd47ea6f1" - integrity sha512-7pAjK0aSdxOwR+CcYAqgWOGy5dcfvzsTIfFTb2odQqW47MDfv14UaJDY6eng8ylM2EaeKXdxaSWESbkmaQHTmw== - dependencies: - "@babel/template" "^7.22.15" - "@babel/traverse" "^7.22.15" - "@babel/types" "^7.22.15" - "@babel/highlight@^7.22.13": version "7.22.20" resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.22.20.tgz#4ca92b71d80554b01427815e06f2df965b9c1f54" @@ -270,785 +24,18 @@ chalk "^2.4.2" js-tokens "^4.0.0" -"@babel/parser@^7.18.8", "@babel/parser@^7.22.15", "@babel/parser@^7.22.16": +"@babel/parser@^7.18.8": version "7.22.16" resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.22.16.tgz#180aead7f247305cce6551bea2720934e2fa2c95" integrity sha512-+gPfKv8UWeKKeJTUxe59+OobVcrYHETCsORl61EmSkmgymguYk/X5bp7GuUIXaFsc6y++v8ZxPsLSSuujqDphA== -"@babel/parser@^7.23.0": - version "7.23.0" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.23.0.tgz#da950e622420bf96ca0d0f2909cdddac3acd8719" - integrity sha512-vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXiw== - -"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.22.15": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.22.15.tgz#02dc8a03f613ed5fdc29fb2f728397c78146c962" - integrity sha512-FB9iYlz7rURmRJyXRKEnalYPPdn87H5no108cyuQQyMwlpJ2SJtpIUBI27kdTin956pz+LPypkPVPUTlxOmrsg== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.22.15": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.22.15.tgz#2aeb91d337d4e1a1e7ce85b76a37f5301781200f" - integrity sha512-Hyph9LseGvAeeXzikV88bczhsrLrIZqDPxO+sSmAunMPaGrBGhfMWzCPYTtiW9t+HzSE2wtV8e5cc5P6r1xMDQ== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" - "@babel/plugin-transform-optional-chaining" "^7.22.15" - -"@babel/plugin-proposal-class-properties@^7.16.0": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz#b110f59741895f7ec21a6fff696ec46265c446a3" - integrity sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ== - dependencies: - "@babel/helper-create-class-features-plugin" "^7.18.6" - "@babel/helper-plugin-utils" "^7.18.6" - -"@babel/plugin-proposal-object-rest-spread@^7.16.0": - version "7.20.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.7.tgz#aa662940ef425779c75534a5c41e9d936edc390a" - integrity sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg== - dependencies: - "@babel/compat-data" "^7.20.5" - "@babel/helper-compilation-targets" "^7.20.7" - "@babel/helper-plugin-utils" "^7.20.2" - "@babel/plugin-syntax-object-rest-spread" "^7.8.3" - "@babel/plugin-transform-parameters" "^7.20.7" - -"@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2": - version "7.21.0-placeholder-for-preset-env.2" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz#7844f9289546efa9febac2de4cfe358a050bd703" - integrity sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w== - -"@babel/plugin-syntax-async-generators@^7.8.4": - version "7.8.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d" - integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-class-properties@^7.12.13": - version "7.12.13" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz#b5c987274c4a3a82b89714796931a6b53544ae10" - integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA== - dependencies: - "@babel/helper-plugin-utils" "^7.12.13" - -"@babel/plugin-syntax-class-static-block@^7.14.5": - version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz#195df89b146b4b78b3bf897fd7a257c84659d406" - integrity sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw== - dependencies: - "@babel/helper-plugin-utils" "^7.14.5" - -"@babel/plugin-syntax-dynamic-import@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3" - integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-export-namespace-from@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz#028964a9ba80dbc094c915c487ad7c4e7a66465a" - integrity sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q== - dependencies: - "@babel/helper-plugin-utils" "^7.8.3" - -"@babel/plugin-syntax-import-assertions@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.22.5.tgz#07d252e2aa0bc6125567f742cd58619cb14dce98" - integrity sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-syntax-import-attributes@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.22.5.tgz#ab840248d834410b829f569f5262b9e517555ecb" - integrity sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-syntax-import-meta@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz#ee601348c370fa334d2207be158777496521fd51" - integrity sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - -"@babel/plugin-syntax-json-strings@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a" - integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-jsx@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.22.5.tgz#a6b68e84fb76e759fc3b93e901876ffabbe1d918" - integrity sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-syntax-logical-assignment-operators@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699" - integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - -"@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9" - integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-numeric-separator@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97" - integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - -"@babel/plugin-syntax-object-rest-spread@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871" - integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-optional-catch-binding@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1" - integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-optional-chaining@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a" - integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-private-property-in-object@^7.14.5": - version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz#0dc6671ec0ea22b6e94a1114f857970cd39de1ad" - integrity sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg== - dependencies: - "@babel/helper-plugin-utils" "^7.14.5" - -"@babel/plugin-syntax-top-level-await@^7.14.5": - version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz#c1cfdadc35a646240001f06138247b741c34d94c" - integrity sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw== - dependencies: - "@babel/helper-plugin-utils" "^7.14.5" - -"@babel/plugin-syntax-unicode-sets-regex@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz#d49a3b3e6b52e5be6740022317580234a6a47357" - integrity sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg== - dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.18.6" - "@babel/helper-plugin-utils" "^7.18.6" - -"@babel/plugin-transform-arrow-functions@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.22.5.tgz#e5ba566d0c58a5b2ba2a8b795450641950b71958" - integrity sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-async-generator-functions@^7.22.15": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.22.15.tgz#3b153af4a6b779f340d5b80d3f634f55820aefa3" - integrity sha512-jBm1Es25Y+tVoTi5rfd5t1KLmL8ogLKpXszboWOTTtGFGz2RKnQe2yn7HbZ+kb/B8N0FVSGQo874NSlOU1T4+w== - dependencies: - "@babel/helper-environment-visitor" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/helper-remap-async-to-generator" "^7.22.9" - "@babel/plugin-syntax-async-generators" "^7.8.4" - -"@babel/plugin-transform-async-to-generator@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.22.5.tgz#c7a85f44e46f8952f6d27fe57c2ed3cc084c3775" - integrity sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ== - dependencies: - "@babel/helper-module-imports" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/helper-remap-async-to-generator" "^7.22.5" - -"@babel/plugin-transform-block-scoped-functions@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.22.5.tgz#27978075bfaeb9fa586d3cb63a3d30c1de580024" - integrity sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-block-scoping@^7.22.15": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.22.15.tgz#494eb82b87b5f8b1d8f6f28ea74078ec0a10a841" - integrity sha512-G1czpdJBZCtngoK1sJgloLiOHUnkb/bLZwqVZD8kXmq0ZnVfTTWUcs9OWtp0mBtYJ+4LQY1fllqBkOIPhXmFmw== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-class-properties@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.22.5.tgz#97a56e31ad8c9dc06a0b3710ce7803d5a48cca77" - integrity sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ== - dependencies: - "@babel/helper-create-class-features-plugin" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-class-static-block@^7.22.11": - version "7.22.11" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.22.11.tgz#dc8cc6e498f55692ac6b4b89e56d87cec766c974" - integrity sha512-GMM8gGmqI7guS/llMFk1bJDkKfn3v3C4KHK9Yg1ey5qcHcOlKb0QvcMrgzvxo+T03/4szNh5lghY+fEC98Kq9g== - dependencies: - "@babel/helper-create-class-features-plugin" "^7.22.11" - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/plugin-syntax-class-static-block" "^7.14.5" - -"@babel/plugin-transform-classes@^7.22.15": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.22.15.tgz#aaf4753aee262a232bbc95451b4bdf9599c65a0b" - integrity sha512-VbbC3PGjBdE0wAWDdHM9G8Gm977pnYI0XpqMd6LrKISj8/DJXEsWqgRuTYaNE9Bv0JGhTZUzHDlMk18IpOuoqw== - dependencies: - "@babel/helper-annotate-as-pure" "^7.22.5" - "@babel/helper-compilation-targets" "^7.22.15" - "@babel/helper-environment-visitor" "^7.22.5" - "@babel/helper-function-name" "^7.22.5" - "@babel/helper-optimise-call-expression" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/helper-replace-supers" "^7.22.9" - "@babel/helper-split-export-declaration" "^7.22.6" - globals "^11.1.0" - -"@babel/plugin-transform-computed-properties@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.22.5.tgz#cd1e994bf9f316bd1c2dafcd02063ec261bb3869" - integrity sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/template" "^7.22.5" - -"@babel/plugin-transform-destructuring@^7.22.15": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.22.15.tgz#e7404ea5bb3387073b9754be654eecb578324694" - integrity sha512-HzG8sFl1ZVGTme74Nw+X01XsUTqERVQ6/RLHo3XjGRzm7XD6QTtfS3NJotVgCGy8BzkDqRjRBD8dAyJn5TuvSQ== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-dotall-regex@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.22.5.tgz#dbb4f0e45766eb544e193fb00e65a1dd3b2a4165" - integrity sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw== - dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-duplicate-keys@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.22.5.tgz#b6e6428d9416f5f0bba19c70d1e6e7e0b88ab285" - integrity sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-dynamic-import@^7.22.11": - version "7.22.11" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.22.11.tgz#2c7722d2a5c01839eaf31518c6ff96d408e447aa" - integrity sha512-g/21plo58sfteWjaO0ZNVb+uEOkJNjAaHhbejrnBmu011l/eNDScmkbjCC3l4FKb10ViaGU4aOkFznSu2zRHgA== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/plugin-syntax-dynamic-import" "^7.8.3" - -"@babel/plugin-transform-exponentiation-operator@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.22.5.tgz#402432ad544a1f9a480da865fda26be653e48f6a" - integrity sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g== - dependencies: - "@babel/helper-builder-binary-assignment-operator-visitor" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-export-namespace-from@^7.22.11": - version "7.22.11" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.22.11.tgz#b3c84c8f19880b6c7440108f8929caf6056db26c" - integrity sha512-xa7aad7q7OiT8oNZ1mU7NrISjlSkVdMbNxn9IuLZyL9AJEhs1Apba3I+u5riX1dIkdptP5EKDG5XDPByWxtehw== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/plugin-syntax-export-namespace-from" "^7.8.3" - -"@babel/plugin-transform-for-of@^7.22.15": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.22.15.tgz#f64b4ccc3a4f131a996388fae7680b472b306b29" - integrity sha512-me6VGeHsx30+xh9fbDLLPi0J1HzmeIIyenoOQHuw2D4m2SAU3NrspX5XxJLBpqn5yrLzrlw2Iy3RA//Bx27iOA== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-function-name@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.22.5.tgz#935189af68b01898e0d6d99658db6b164205c143" - integrity sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg== - dependencies: - "@babel/helper-compilation-targets" "^7.22.5" - "@babel/helper-function-name" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-json-strings@^7.22.11": - version "7.22.11" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.22.11.tgz#689a34e1eed1928a40954e37f74509f48af67835" - integrity sha512-CxT5tCqpA9/jXFlme9xIBCc5RPtdDq3JpkkhgHQqtDdiTnTI0jtZ0QzXhr5DILeYifDPp2wvY2ad+7+hLMW5Pw== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/plugin-syntax-json-strings" "^7.8.3" - -"@babel/plugin-transform-literals@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.22.5.tgz#e9341f4b5a167952576e23db8d435849b1dd7920" - integrity sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-logical-assignment-operators@^7.22.11": - version "7.22.11" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.22.11.tgz#24c522a61688bde045b7d9bc3c2597a4d948fc9c" - integrity sha512-qQwRTP4+6xFCDV5k7gZBF3C31K34ut0tbEcTKxlX/0KXxm9GLcO14p570aWxFvVzx6QAfPgq7gaeIHXJC8LswQ== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" - -"@babel/plugin-transform-member-expression-literals@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.22.5.tgz#4fcc9050eded981a468347dd374539ed3e058def" - integrity sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-modules-amd@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.22.5.tgz#4e045f55dcf98afd00f85691a68fc0780704f526" - integrity sha512-R+PTfLTcYEmb1+kK7FNkhQ1gP4KgjpSO6HfH9+f8/yfp2Nt3ggBjiVpRwmwTlfqZLafYKJACy36yDXlEmI9HjQ== - dependencies: - "@babel/helper-module-transforms" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-modules-commonjs@^7.22.15": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.22.15.tgz#b11810117ed4ee7691b29bd29fd9f3f98276034f" - integrity sha512-jWL4eh90w0HQOTKP2MoXXUpVxilxsB2Vl4ji69rSjS3EcZ/v4sBmn+A3NpepuJzBhOaEBbR7udonlHHn5DWidg== - dependencies: - "@babel/helper-module-transforms" "^7.22.15" - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/helper-simple-access" "^7.22.5" - -"@babel/plugin-transform-modules-systemjs@^7.22.11": - version "7.22.11" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.22.11.tgz#3386be5875d316493b517207e8f1931d93154bb1" - integrity sha512-rIqHmHoMEOhI3VkVf5jQ15l539KrwhzqcBO6wdCNWPWc/JWt9ILNYNUssbRpeq0qWns8svuw8LnMNCvWBIJ8wA== - dependencies: - "@babel/helper-hoist-variables" "^7.22.5" - "@babel/helper-module-transforms" "^7.22.9" - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/helper-validator-identifier" "^7.22.5" - -"@babel/plugin-transform-modules-umd@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.22.5.tgz#4694ae40a87b1745e3775b6a7fe96400315d4f98" - integrity sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ== - dependencies: - "@babel/helper-module-transforms" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-named-capturing-groups-regex@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.22.5.tgz#67fe18ee8ce02d57c855185e27e3dc959b2e991f" - integrity sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ== - dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-new-target@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.22.5.tgz#1b248acea54ce44ea06dfd37247ba089fcf9758d" - integrity sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-nullish-coalescing-operator@^7.22.11": - version "7.22.11" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.22.11.tgz#debef6c8ba795f5ac67cd861a81b744c5d38d9fc" - integrity sha512-YZWOw4HxXrotb5xsjMJUDlLgcDXSfO9eCmdl1bgW4+/lAGdkjaEvOnQ4p5WKKdUgSzO39dgPl0pTnfxm0OAXcg== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" - -"@babel/plugin-transform-numeric-separator@^7.22.11": - version "7.22.11" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.22.11.tgz#498d77dc45a6c6db74bb829c02a01c1d719cbfbd" - integrity sha512-3dzU4QGPsILdJbASKhF/V2TVP+gJya1PsueQCxIPCEcerqF21oEcrob4mzjsp2Py/1nLfF5m+xYNMDpmA8vffg== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/plugin-syntax-numeric-separator" "^7.10.4" - -"@babel/plugin-transform-object-rest-spread@^7.22.15": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.22.15.tgz#21a95db166be59b91cde48775310c0df6e1da56f" - integrity sha512-fEB+I1+gAmfAyxZcX1+ZUwLeAuuf8VIg67CTznZE0MqVFumWkh8xWtn58I4dxdVf080wn7gzWoF8vndOViJe9Q== - dependencies: - "@babel/compat-data" "^7.22.9" - "@babel/helper-compilation-targets" "^7.22.15" - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/plugin-syntax-object-rest-spread" "^7.8.3" - "@babel/plugin-transform-parameters" "^7.22.15" - -"@babel/plugin-transform-object-super@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.22.5.tgz#794a8d2fcb5d0835af722173c1a9d704f44e218c" - integrity sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/helper-replace-supers" "^7.22.5" - -"@babel/plugin-transform-optional-catch-binding@^7.22.11": - version "7.22.11" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.22.11.tgz#461cc4f578a127bb055527b3e77404cad38c08e0" - integrity sha512-rli0WxesXUeCJnMYhzAglEjLWVDF6ahb45HuprcmQuLidBJFWjNnOzssk2kuc6e33FlLaiZhG/kUIzUMWdBKaQ== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" - -"@babel/plugin-transform-optional-chaining@^7.22.15": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.22.15.tgz#d7a5996c2f7ca4ad2ad16dbb74444e5c4385b1ba" - integrity sha512-ngQ2tBhq5vvSJw2Q2Z9i7ealNkpDMU0rGWnHPKqRZO0tzZ5tlaoz4hDvhXioOoaE0X2vfNss1djwg0DXlfu30A== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" - "@babel/plugin-syntax-optional-chaining" "^7.8.3" - -"@babel/plugin-transform-parameters@^7.20.7", "@babel/plugin-transform-parameters@^7.22.15": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.22.15.tgz#719ca82a01d177af358df64a514d64c2e3edb114" - integrity sha512-hjk7qKIqhyzhhUvRT683TYQOFa/4cQKwQy7ALvTpODswN40MljzNDa0YldevS6tGbxwaEKVn502JmY0dP7qEtQ== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-private-methods@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.22.5.tgz#21c8af791f76674420a147ae62e9935d790f8722" - integrity sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA== - dependencies: - "@babel/helper-create-class-features-plugin" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-private-property-in-object@^7.22.11": - version "7.22.11" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.22.11.tgz#ad45c4fc440e9cb84c718ed0906d96cf40f9a4e1" - integrity sha512-sSCbqZDBKHetvjSwpyWzhuHkmW5RummxJBVbYLkGkaiTOWGxml7SXt0iWa03bzxFIx7wOj3g/ILRd0RcJKBeSQ== - dependencies: - "@babel/helper-annotate-as-pure" "^7.22.5" - "@babel/helper-create-class-features-plugin" "^7.22.11" - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/plugin-syntax-private-property-in-object" "^7.14.5" - -"@babel/plugin-transform-property-literals@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.22.5.tgz#b5ddabd73a4f7f26cd0e20f5db48290b88732766" - integrity sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-react-display-name@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.22.5.tgz#3c4326f9fce31c7968d6cb9debcaf32d9e279a2b" - integrity sha512-PVk3WPYudRF5z4GKMEYUrLjPl38fJSKNaEOkFuoprioowGuWN6w2RKznuFNSlJx7pzzXXStPUnNSOEO0jL5EVw== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-react-jsx-development@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.22.5.tgz#e716b6edbef972a92165cd69d92f1255f7e73e87" - integrity sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A== - dependencies: - "@babel/plugin-transform-react-jsx" "^7.22.5" - -"@babel/plugin-transform-react-jsx@^7.22.15", "@babel/plugin-transform-react-jsx@^7.22.5": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.22.15.tgz#7e6266d88705d7c49f11c98db8b9464531289cd6" - integrity sha512-oKckg2eZFa8771O/5vi7XeTvmM6+O9cxZu+kanTU7tD4sin5nO/G8jGJhq8Hvt2Z0kUoEDRayuZLaUlYl8QuGA== - dependencies: - "@babel/helper-annotate-as-pure" "^7.22.5" - "@babel/helper-module-imports" "^7.22.15" - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/plugin-syntax-jsx" "^7.22.5" - "@babel/types" "^7.22.15" - -"@babel/plugin-transform-react-pure-annotations@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.22.5.tgz#1f58363eef6626d6fa517b95ac66fe94685e32c0" - integrity sha512-gP4k85wx09q+brArVinTXhWiyzLl9UpmGva0+mWyKxk6JZequ05x3eUcIUE+FyttPKJFRRVtAvQaJ6YF9h1ZpA== - dependencies: - "@babel/helper-annotate-as-pure" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-regenerator@^7.22.10": - version "7.22.10" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.22.10.tgz#8ceef3bd7375c4db7652878b0241b2be5d0c3cca" - integrity sha512-F28b1mDt8KcT5bUyJc/U9nwzw6cV+UmTeRlXYIl2TNqMMJif0Jeey9/RQ3C4NOd2zp0/TRsDns9ttj2L523rsw== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - regenerator-transform "^0.15.2" - -"@babel/plugin-transform-reserved-words@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.22.5.tgz#832cd35b81c287c4bcd09ce03e22199641f964fb" - integrity sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-runtime@^7.16.0": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.22.15.tgz#3a625c4c05a39e932d7d34f5d4895cdd0172fdc9" - integrity sha512-tEVLhk8NRZSmwQ0DJtxxhTrCht1HVo8VaMzYT4w6lwyKBuHsgoioAUA7/6eT2fRfc5/23fuGdlwIxXhRVgWr4g== - dependencies: - "@babel/helper-module-imports" "^7.22.15" - "@babel/helper-plugin-utils" "^7.22.5" - babel-plugin-polyfill-corejs2 "^0.4.5" - babel-plugin-polyfill-corejs3 "^0.8.3" - babel-plugin-polyfill-regenerator "^0.5.2" - semver "^6.3.1" - -"@babel/plugin-transform-shorthand-properties@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.22.5.tgz#6e277654be82b5559fc4b9f58088507c24f0c624" - integrity sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-spread@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.22.5.tgz#6487fd29f229c95e284ba6c98d65eafb893fea6b" - integrity sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" - -"@babel/plugin-transform-sticky-regex@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.22.5.tgz#295aba1595bfc8197abd02eae5fc288c0deb26aa" - integrity sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-template-literals@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.22.5.tgz#8f38cf291e5f7a8e60e9f733193f0bcc10909bff" - integrity sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-typeof-symbol@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.22.5.tgz#5e2ba478da4b603af8673ff7c54f75a97b716b34" - integrity sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-unicode-escapes@^7.22.10": - version "7.22.10" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.22.10.tgz#c723f380f40a2b2f57a62df24c9005834c8616d9" - integrity sha512-lRfaRKGZCBqDlRU3UIFovdp9c9mEvlylmpod0/OatICsSfuQ9YFthRo1tpTkGsklEefZdqlEFdY4A2dwTb6ohg== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-unicode-property-regex@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.22.5.tgz#098898f74d5c1e86660dc112057b2d11227f1c81" - integrity sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A== - dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-unicode-regex@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.22.5.tgz#ce7e7bb3ef208c4ff67e02a22816656256d7a183" - integrity sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg== - dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-unicode-sets-regex@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.22.5.tgz#77788060e511b708ffc7d42fdfbc5b37c3004e91" - integrity sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg== - dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/preset-env@^7.16.0": - version "7.22.20" - resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.22.20.tgz#de9e9b57e1127ce0a2f580831717f7fb677ceedb" - integrity sha512-11MY04gGC4kSzlPHRfvVkNAZhUxOvm7DCJ37hPDnUENwe06npjIRAfInEMTGSb4LZK5ZgDFkv5hw0lGebHeTyg== - dependencies: - "@babel/compat-data" "^7.22.20" - "@babel/helper-compilation-targets" "^7.22.15" - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/helper-validator-option" "^7.22.15" - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.22.15" - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.22.15" - "@babel/plugin-proposal-private-property-in-object" "7.21.0-placeholder-for-preset-env.2" - "@babel/plugin-syntax-async-generators" "^7.8.4" - "@babel/plugin-syntax-class-properties" "^7.12.13" - "@babel/plugin-syntax-class-static-block" "^7.14.5" - "@babel/plugin-syntax-dynamic-import" "^7.8.3" - "@babel/plugin-syntax-export-namespace-from" "^7.8.3" - "@babel/plugin-syntax-import-assertions" "^7.22.5" - "@babel/plugin-syntax-import-attributes" "^7.22.5" - "@babel/plugin-syntax-import-meta" "^7.10.4" - "@babel/plugin-syntax-json-strings" "^7.8.3" - "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" - "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" - "@babel/plugin-syntax-numeric-separator" "^7.10.4" - "@babel/plugin-syntax-object-rest-spread" "^7.8.3" - "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" - "@babel/plugin-syntax-optional-chaining" "^7.8.3" - "@babel/plugin-syntax-private-property-in-object" "^7.14.5" - "@babel/plugin-syntax-top-level-await" "^7.14.5" - "@babel/plugin-syntax-unicode-sets-regex" "^7.18.6" - "@babel/plugin-transform-arrow-functions" "^7.22.5" - "@babel/plugin-transform-async-generator-functions" "^7.22.15" - "@babel/plugin-transform-async-to-generator" "^7.22.5" - "@babel/plugin-transform-block-scoped-functions" "^7.22.5" - "@babel/plugin-transform-block-scoping" "^7.22.15" - "@babel/plugin-transform-class-properties" "^7.22.5" - "@babel/plugin-transform-class-static-block" "^7.22.11" - "@babel/plugin-transform-classes" "^7.22.15" - "@babel/plugin-transform-computed-properties" "^7.22.5" - "@babel/plugin-transform-destructuring" "^7.22.15" - "@babel/plugin-transform-dotall-regex" "^7.22.5" - "@babel/plugin-transform-duplicate-keys" "^7.22.5" - "@babel/plugin-transform-dynamic-import" "^7.22.11" - "@babel/plugin-transform-exponentiation-operator" "^7.22.5" - "@babel/plugin-transform-export-namespace-from" "^7.22.11" - "@babel/plugin-transform-for-of" "^7.22.15" - "@babel/plugin-transform-function-name" "^7.22.5" - "@babel/plugin-transform-json-strings" "^7.22.11" - "@babel/plugin-transform-literals" "^7.22.5" - "@babel/plugin-transform-logical-assignment-operators" "^7.22.11" - "@babel/plugin-transform-member-expression-literals" "^7.22.5" - "@babel/plugin-transform-modules-amd" "^7.22.5" - "@babel/plugin-transform-modules-commonjs" "^7.22.15" - "@babel/plugin-transform-modules-systemjs" "^7.22.11" - "@babel/plugin-transform-modules-umd" "^7.22.5" - "@babel/plugin-transform-named-capturing-groups-regex" "^7.22.5" - "@babel/plugin-transform-new-target" "^7.22.5" - "@babel/plugin-transform-nullish-coalescing-operator" "^7.22.11" - "@babel/plugin-transform-numeric-separator" "^7.22.11" - "@babel/plugin-transform-object-rest-spread" "^7.22.15" - "@babel/plugin-transform-object-super" "^7.22.5" - "@babel/plugin-transform-optional-catch-binding" "^7.22.11" - "@babel/plugin-transform-optional-chaining" "^7.22.15" - "@babel/plugin-transform-parameters" "^7.22.15" - "@babel/plugin-transform-private-methods" "^7.22.5" - "@babel/plugin-transform-private-property-in-object" "^7.22.11" - "@babel/plugin-transform-property-literals" "^7.22.5" - "@babel/plugin-transform-regenerator" "^7.22.10" - "@babel/plugin-transform-reserved-words" "^7.22.5" - "@babel/plugin-transform-shorthand-properties" "^7.22.5" - "@babel/plugin-transform-spread" "^7.22.5" - "@babel/plugin-transform-sticky-regex" "^7.22.5" - "@babel/plugin-transform-template-literals" "^7.22.5" - "@babel/plugin-transform-typeof-symbol" "^7.22.5" - "@babel/plugin-transform-unicode-escapes" "^7.22.10" - "@babel/plugin-transform-unicode-property-regex" "^7.22.5" - "@babel/plugin-transform-unicode-regex" "^7.22.5" - "@babel/plugin-transform-unicode-sets-regex" "^7.22.5" - "@babel/preset-modules" "0.1.6-no-external-plugins" - "@babel/types" "^7.22.19" - babel-plugin-polyfill-corejs2 "^0.4.5" - babel-plugin-polyfill-corejs3 "^0.8.3" - babel-plugin-polyfill-regenerator "^0.5.2" - core-js-compat "^3.31.0" - semver "^6.3.1" - -"@babel/preset-modules@0.1.6-no-external-plugins": - version "0.1.6-no-external-plugins" - resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz#ccb88a2c49c817236861fee7826080573b8a923a" - integrity sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/types" "^7.4.4" - esutils "^2.0.2" - -"@babel/preset-react@^7.16.0": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.22.15.tgz#9a776892b648e13cc8ca2edf5ed1264eea6b6afc" - integrity sha512-Csy1IJ2uEh/PecCBXXoZGAZBeCATTuePzCSB7dLYWS0vOEj6CNpjxIhW4duWwZodBNueH7QO14WbGn8YyeuN9w== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/helper-validator-option" "^7.22.15" - "@babel/plugin-transform-react-display-name" "^7.22.5" - "@babel/plugin-transform-react-jsx" "^7.22.15" - "@babel/plugin-transform-react-jsx-development" "^7.22.5" - "@babel/plugin-transform-react-pure-annotations" "^7.22.5" - -"@babel/regjsgen@^0.8.0": - version "0.8.0" - resolved "https://registry.yarnpkg.com/@babel/regjsgen/-/regjsgen-0.8.0.tgz#f0ba69b075e1f05fb2825b7fad991e7adbb18310" - integrity sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA== - -"@babel/runtime@^7.16.0", "@babel/runtime@^7.21.0", "@babel/runtime@^7.8.4": +"@babel/runtime@^7.21.0": version "7.22.15" resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.22.15.tgz#38f46494ccf6cf020bd4eed7124b425e83e523b8" integrity sha512-T0O+aa+4w0u06iNmapipJXMV4HoUir03hpx3/YqXXhu9xim3w+dVphjFWl1OH8NbZHw5Lbm9k45drDkgq2VNNA== dependencies: regenerator-runtime "^0.14.0" -"@babel/template@^7.22.15", "@babel/template@^7.22.5": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.22.15.tgz#09576efc3830f0430f4548ef971dde1350ef2f38" - integrity sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w== - dependencies: - "@babel/code-frame" "^7.22.13" - "@babel/parser" "^7.22.15" - "@babel/types" "^7.22.15" - -"@babel/traverse@^7.22.15", "@babel/traverse@^7.22.20": - version "7.23.2" - resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.23.2.tgz#329c7a06735e144a506bdb2cad0268b7f46f4ad8" - integrity sha512-azpe59SQ48qG6nu2CzcMLbxUudtN+dOM9kDbUqGq3HXUJRlo7i8fvPoxQUzYgLZ4cMVmuZgm8vvBpNeRhd6XSw== - dependencies: - "@babel/code-frame" "^7.22.13" - "@babel/generator" "^7.23.0" - "@babel/helper-environment-visitor" "^7.22.20" - "@babel/helper-function-name" "^7.23.0" - "@babel/helper-hoist-variables" "^7.22.5" - "@babel/helper-split-export-declaration" "^7.22.6" - "@babel/parser" "^7.23.0" - "@babel/types" "^7.23.0" - debug "^4.1.0" - globals "^11.1.0" - -"@babel/types@^7.22.15", "@babel/types@^7.22.19", "@babel/types@^7.22.5", "@babel/types@^7.4.4": - version "7.22.19" - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.22.19.tgz#7425343253556916e440e662bb221a93ddb75684" - integrity sha512-P7LAw/LbojPzkgp5oznjE6tQEIWbp4PkkfrZDINTro9zgBRtI324/EYsiSI7lhPbpIQ+DCeR2NNmMWANGGfZsg== - dependencies: - "@babel/helper-string-parser" "^7.22.5" - "@babel/helper-validator-identifier" "^7.22.19" - to-fast-properties "^2.0.0" - -"@babel/types@^7.23.0": - version "7.23.0" - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.23.0.tgz#8c1f020c9df0e737e4e247c0619f58c68458aaeb" - integrity sha512-0oIyUfKoI3mSqMvsxBdclDwxXKXAUA8v/apZbc+iSyARYou1o8ZGDxbUYyLFoW2arqS2jDGqJuZvv1d/io1axg== - dependencies: - "@babel/helper-string-parser" "^7.22.5" - "@babel/helper-validator-identifier" "^7.22.20" - to-fast-properties "^2.0.0" - "@badeball/cypress-configuration@^4.0.0": version "4.2.0" resolved "https://registry.yarnpkg.com/@badeball/cypress-configuration/-/cypress-configuration-4.2.0.tgz#4c19bada0e40600b572b4d91933e0bd226cb2e3f" @@ -1147,30 +134,6 @@ dependencies: pa11y "^6.2.3" -"@cypress/browserify-preprocessor@^3.0.1": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@cypress/browserify-preprocessor/-/browserify-preprocessor-3.0.2.tgz#1dbecae394937aed47a3524cad47086c2ded8c50" - integrity sha512-y6mlFR+IR2cqcm3HabSp7AEcX9QfF1EUL4eOaw/7xexdhmdQU8ez6piyRopZQob4BK8oKTsc9PkupsU2rzjqMA== - dependencies: - "@babel/core" "^7.16.0" - "@babel/plugin-proposal-class-properties" "^7.16.0" - "@babel/plugin-proposal-object-rest-spread" "^7.16.0" - "@babel/plugin-transform-runtime" "^7.16.0" - "@babel/preset-env" "^7.16.0" - "@babel/preset-react" "^7.16.0" - "@babel/runtime" "^7.16.0" - babel-plugin-add-module-exports "^1.0.4" - babelify "^10.0.0" - bluebird "^3.7.2" - browserify "^16.2.3" - coffeeify "^3.0.1" - coffeescript "^1.12.7" - debug "^4.3.2" - fs-extra "^9.0.0" - lodash.clonedeep "^4.5.0" - through2 "^2.0.0" - watchify "^4.0.0" - "@cypress/request@2.88.12": version "2.88.12" resolved "https://registry.yarnpkg.com/@cypress/request/-/request-2.88.12.tgz#ba4911431738494a85e93fb04498cb38bc55d590" @@ -1318,38 +281,6 @@ resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.17.19.tgz#8cfaf2ff603e9aabb910e9c0558c26cf32744061" integrity sha512-lAhycmKnVOuRYNtRtatQR1LPQf2oYCkRGkSFnseDAKPl8lu5SOsK/e1sXe5a0Pc5kHIHe6P2I/ilntNv2xf3cA== -"@jridgewell/gen-mapping@^0.3.0", "@jridgewell/gen-mapping@^0.3.2": - version "0.3.3" - resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz#7e02e6eb5df901aaedb08514203b096614024098" - integrity sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ== - dependencies: - "@jridgewell/set-array" "^1.0.1" - "@jridgewell/sourcemap-codec" "^1.4.10" - "@jridgewell/trace-mapping" "^0.3.9" - -"@jridgewell/resolve-uri@^3.1.0": - version "3.1.1" - resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz#c08679063f279615a3326583ba3a90d1d82cc721" - integrity sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA== - -"@jridgewell/set-array@^1.0.1": - version "1.1.2" - resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.2.tgz#7c6cf998d6d20b914c0a55a91ae928ff25965e72" - integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw== - -"@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.14": - version "1.4.15" - resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32" - integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg== - -"@jridgewell/trace-mapping@^0.3.17", "@jridgewell/trace-mapping@^0.3.9": - version "0.3.19" - resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.19.tgz#f8a3249862f91be48d3127c3cfe992f79b4b8811" - integrity sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw== - dependencies: - "@jridgewell/resolve-uri" "^3.1.0" - "@jridgewell/sourcemap-codec" "^1.4.14" - "@puppeteer/browsers@1.4.6": version "1.4.6" resolved "https://registry.yarnpkg.com/@puppeteer/browsers/-/browsers-1.4.6.tgz#1f70fd23d5d2ccce9d29b038e5039d7a1049ca77" @@ -1461,33 +392,6 @@ dependencies: "@types/node" "*" -JSONStream@^1.0.3: - version "1.3.5" - resolved "https://registry.yarnpkg.com/JSONStream/-/JSONStream-1.3.5.tgz#3208c1f08d3a4d99261ab64f92302bc15e111ca0" - integrity sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ== - dependencies: - jsonparse "^1.2.0" - through ">=2.2.7 <3" - -acorn-node@^1.2.0, acorn-node@^1.3.0, acorn-node@^1.5.2, acorn-node@^1.8.2: - version "1.8.2" - resolved "https://registry.yarnpkg.com/acorn-node/-/acorn-node-1.8.2.tgz#114c95d64539e53dede23de8b9d96df7c7ae2af8" - integrity sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A== - dependencies: - acorn "^7.0.0" - acorn-walk "^7.0.0" - xtend "^4.0.2" - -acorn-walk@^7.0.0: - version "7.2.0" - resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-7.2.0.tgz#0de889a601203909b0fbe07b8938dc21d2e967bc" - integrity sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA== - -acorn@^7.0.0: - version "7.4.1" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" - integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== - agent-base@6: version "6.0.2" resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-6.0.2.tgz#49fff58577cfee3f37176feab4c22e00f86d7f77" @@ -1541,29 +445,11 @@ ansi-styles@^4.0.0, ansi-styles@^4.1.0: dependencies: color-convert "^2.0.1" -anymatch@^3.1.0, anymatch@~3.1.2: - version "3.1.3" - resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e" - integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw== - dependencies: - normalize-path "^3.0.0" - picomatch "^2.0.4" - arch@^2.2.0: version "2.2.0" resolved "https://registry.yarnpkg.com/arch/-/arch-2.2.0.tgz#1bc47818f305764f23ab3306b0bfc086c5a29d11" integrity sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ== -asn1.js@^5.2.0: - version "5.4.1" - resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-5.4.1.tgz#11a980b84ebb91781ce35b0fdc2ee294e3783f07" - integrity sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA== - dependencies: - bn.js "^4.0.0" - inherits "^2.0.1" - minimalistic-assert "^1.0.0" - safer-buffer "^2.1.0" - asn1@~0.2.3: version "0.2.6" resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.6.tgz#0d3a7bb6e64e02a90c0303b31f292868ea09a08d" @@ -1576,14 +462,6 @@ assert-plus@1.0.0, assert-plus@^1.0.0: resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" integrity sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw== -assert@^1.4.0: - version "1.5.1" - resolved "https://registry.yarnpkg.com/assert/-/assert-1.5.1.tgz#038ab248e4ff078e7bc2485ba6e6388466c78f76" - integrity sha512-zzw1uCAgLbsKwBfFc8CX78DDg+xZeBksSO3vwVIDDN5i94eOrPsSSyiVhmsSABFDM/OcpE2aagCat9dnWQLG1A== - dependencies: - object.assign "^4.1.4" - util "^0.10.4" - ast-types@^0.13.4: version "0.13.4" resolved "https://registry.yarnpkg.com/ast-types/-/ast-types-0.13.4.tgz#ee0d77b343263965ecc3fb62da16e7222b2b6782" @@ -1611,11 +489,6 @@ at-least-node@^1.0.0: resolved "https://registry.yarnpkg.com/at-least-node/-/at-least-node-1.0.0.tgz#602cd4b46e844ad4effc92a8011a3c46e0238dc2" integrity sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg== -available-typed-arrays@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz#92f95616501069d07d10edb2fc37d3e1c65123b7" - integrity sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw== - aws-sign2@~0.7.0: version "0.7.0" resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" @@ -1646,46 +519,12 @@ b4a@^1.6.4: resolved "https://registry.yarnpkg.com/b4a/-/b4a-1.6.4.tgz#ef1c1422cae5ce6535ec191baeed7567443f36c9" integrity sha512-fpWrvyVHEKyeEvbKZTVOeZF3VSKKWtJxFIxX/jaVPf+cLbGUSitjb49pHLqPV2BUNNZ0LcoeEGfE/YCpyDYHIw== -babel-plugin-add-module-exports@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/babel-plugin-add-module-exports/-/babel-plugin-add-module-exports-1.0.4.tgz#6caa4ddbe1f578c6a5264d4d3e6c8a2720a7ca2b" - integrity sha512-g+8yxHUZ60RcyaUpfNzy56OtWW+x9cyEe9j+CranqLiqbju2yf/Cy6ZtYK40EZxtrdHllzlVZgLmcOUCTlJ7Jg== - -babel-plugin-polyfill-corejs2@^0.4.5: - version "0.4.5" - resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.5.tgz#8097b4cb4af5b64a1d11332b6fb72ef5e64a054c" - integrity sha512-19hwUH5FKl49JEsvyTcoHakh6BE0wgXLLptIyKZ3PijHc/Ci521wygORCUCCred+E/twuqRyAkE02BAWPmsHOg== - dependencies: - "@babel/compat-data" "^7.22.6" - "@babel/helper-define-polyfill-provider" "^0.4.2" - semver "^6.3.1" - -babel-plugin-polyfill-corejs3@^0.8.3: - version "0.8.3" - resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.3.tgz#b4f719d0ad9bb8e0c23e3e630c0c8ec6dd7a1c52" - integrity sha512-z41XaniZL26WLrvjy7soabMXrfPWARN25PZoriDEiLMxAp50AUW3t35BGQUMg5xK3UrpVTtagIDklxYa+MhiNA== - dependencies: - "@babel/helper-define-polyfill-provider" "^0.4.2" - core-js-compat "^3.31.0" - -babel-plugin-polyfill-regenerator@^0.5.2: - version "0.5.2" - resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.2.tgz#80d0f3e1098c080c8b5a65f41e9427af692dc326" - integrity sha512-tAlOptU0Xj34V1Y2PNTL4Y0FOJMDB6bZmoW39FeCQIhigGLkqu3Fj6uiXpxIf6Ij274ENdYx64y6Au+ZKlb1IA== - dependencies: - "@babel/helper-define-polyfill-provider" "^0.4.2" - -babelify@^10.0.0: - version "10.0.0" - resolved "https://registry.yarnpkg.com/babelify/-/babelify-10.0.0.tgz#fe73b1a22583f06680d8d072e25a1e0d1d1d7fb5" - integrity sha512-X40FaxyH7t3X+JFAKvb1H9wooWKLRCi8pg3m8poqtdZaIng+bjzp9RvKQCvRjF9isHiPkXspbbXT/zwXLtwgwg== - balanced-match@^1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== -base64-js@^1.0.2, base64-js@^1.3.1, base64-js@^1.5.1: +base64-js@^1.3.1, base64-js@^1.5.1: version "1.5.1" resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== @@ -1712,11 +551,6 @@ bfj@~7.0.2: hoopy "^0.1.4" tryer "^1.0.1" -binary-extensions@^2.0.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" - integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== - bl@^4.0.3: version "4.1.0" resolved "https://registry.yarnpkg.com/bl/-/bl-4.1.0.tgz#451535264182bec2fbbc83a62ab98cf11d9f7b3a" @@ -1736,21 +570,6 @@ bluebird@^3.5.5, bluebird@^3.7.2: resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f" integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg== -bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.11.9: - version "4.12.0" - resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.12.0.tgz#775b3f278efbb9718eec7361f483fb36fbbfea88" - integrity sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA== - -bn.js@^5.0.0, bn.js@^5.2.1: - version "5.2.1" - resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-5.2.1.tgz#0bc527a6a0d18d0aa8d5b0538ce4a77dccfa7b70" - integrity sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ== - -boolean-parser@0.0.2: - version "0.0.2" - resolved "https://registry.yarnpkg.com/boolean-parser/-/boolean-parser-0.0.2.tgz#58721f1172e65fd132d6e6debbd00053deaffa12" - integrity sha512-e06Mqk6t7DOXaEo3s+RATvv7ZNt5brRQ2os4NUHVkVCzUD0Z7Gw4AL4AFA/gT3WaLhrobmGvRVh1/UuJiY3sKg== - brace-expansion@^1.1.7: version "1.1.11" resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" @@ -1766,231 +585,11 @@ brace-expansion@^2.0.1: dependencies: balanced-match "^1.0.0" -braces@~3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" - integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== - dependencies: - fill-range "^7.0.1" - -brorand@^1.0.1, brorand@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" - integrity sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w== - -browser-pack@^6.0.1: - version "6.1.0" - resolved "https://registry.yarnpkg.com/browser-pack/-/browser-pack-6.1.0.tgz#c34ba10d0b9ce162b5af227c7131c92c2ecd5774" - integrity sha512-erYug8XoqzU3IfcU8fUgyHqyOXqIE4tUTTQ+7mqUjQlvnXkOO6OlT9c/ZoJVHYoAaqGxr09CN53G7XIsO4KtWA== - dependencies: - JSONStream "^1.0.3" - combine-source-map "~0.8.0" - defined "^1.0.0" - safe-buffer "^5.1.1" - through2 "^2.0.0" - umd "^3.0.0" - -browser-resolve@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-2.0.0.tgz#99b7304cb392f8d73dba741bb2d7da28c6d7842b" - integrity sha512-7sWsQlYL2rGLy2IWm8WL8DCTJvYLc/qlOnsakDac87SOoCd16WLsaAMdCiAqsTNHIe+SXfaqyxyo6THoWqs8WQ== - dependencies: - resolve "^1.17.0" - -browserify-aes@^1.0.0, browserify-aes@^1.0.4: - version "1.2.0" - resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.2.0.tgz#326734642f403dabc3003209853bb70ad428ef48" - integrity sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA== - dependencies: - buffer-xor "^1.0.3" - cipher-base "^1.0.0" - create-hash "^1.1.0" - evp_bytestokey "^1.0.3" - inherits "^2.0.1" - safe-buffer "^5.0.1" - -browserify-cipher@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.1.tgz#8d6474c1b870bfdabcd3bcfcc1934a10e94f15f0" - integrity sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w== - dependencies: - browserify-aes "^1.0.4" - browserify-des "^1.0.0" - evp_bytestokey "^1.0.0" - -browserify-des@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.2.tgz#3af4f1f59839403572f1c66204375f7a7f703e9c" - integrity sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A== - dependencies: - cipher-base "^1.0.1" - des.js "^1.0.0" - inherits "^2.0.1" - safe-buffer "^5.1.2" - -browserify-rsa@^4.0.0, browserify-rsa@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.1.0.tgz#b2fd06b5b75ae297f7ce2dc651f918f5be158c8d" - integrity sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog== - dependencies: - bn.js "^5.0.0" - randombytes "^2.0.1" - -browserify-sign@^4.0.0: - version "4.2.2" - resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.2.2.tgz#e78d4b69816d6e3dd1c747e64e9947f9ad79bc7e" - integrity sha512-1rudGyeYY42Dk6texmv7c4VcQ0EsvVbLwZkA+AQB7SxvXxmcD93jcHie8bzecJ+ChDlmAm2Qyu0+Ccg5uhZXCg== - dependencies: - bn.js "^5.2.1" - browserify-rsa "^4.1.0" - create-hash "^1.2.0" - create-hmac "^1.1.7" - elliptic "^6.5.4" - inherits "^2.0.4" - parse-asn1 "^5.1.6" - readable-stream "^3.6.2" - safe-buffer "^5.2.1" - -browserify-zlib@~0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.2.0.tgz#2869459d9aa3be245fe8fe2ca1f46e2e7f54d73f" - integrity sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA== - dependencies: - pako "~1.0.5" - -browserify@^16.2.3: - version "16.5.2" - resolved "https://registry.yarnpkg.com/browserify/-/browserify-16.5.2.tgz#d926835e9280fa5fd57f5bc301f2ef24a972ddfe" - integrity sha512-TkOR1cQGdmXU9zW4YukWzWVSJwrxmNdADFbqbE3HFgQWe5wqZmOawqZ7J/8MPCwk/W8yY7Y0h+7mOtcZxLP23g== - dependencies: - JSONStream "^1.0.3" - assert "^1.4.0" - browser-pack "^6.0.1" - browser-resolve "^2.0.0" - browserify-zlib "~0.2.0" - buffer "~5.2.1" - cached-path-relative "^1.0.0" - concat-stream "^1.6.0" - console-browserify "^1.1.0" - constants-browserify "~1.0.0" - crypto-browserify "^3.0.0" - defined "^1.0.0" - deps-sort "^2.0.0" - domain-browser "^1.2.0" - duplexer2 "~0.1.2" - events "^2.0.0" - glob "^7.1.0" - has "^1.0.0" - htmlescape "^1.1.0" - https-browserify "^1.0.0" - inherits "~2.0.1" - insert-module-globals "^7.0.0" - labeled-stream-splicer "^2.0.0" - mkdirp-classic "^0.5.2" - module-deps "^6.2.3" - os-browserify "~0.3.0" - parents "^1.0.1" - path-browserify "~0.0.0" - process "~0.11.0" - punycode "^1.3.2" - querystring-es3 "~0.2.0" - read-only-stream "^2.0.0" - readable-stream "^2.0.2" - resolve "^1.1.4" - shasum "^1.0.0" - shell-quote "^1.6.1" - stream-browserify "^2.0.0" - stream-http "^3.0.0" - string_decoder "^1.1.1" - subarg "^1.0.0" - syntax-error "^1.1.1" - through2 "^2.0.0" - timers-browserify "^1.0.1" - tty-browserify "0.0.1" - url "~0.11.0" - util "~0.10.1" - vm-browserify "^1.0.0" - xtend "^4.0.0" - -browserify@^17.0.0: - version "17.0.0" - resolved "https://registry.yarnpkg.com/browserify/-/browserify-17.0.0.tgz#4c48fed6c02bfa2b51fd3b670fddb805723cdc22" - integrity sha512-SaHqzhku9v/j6XsQMRxPyBrSP3gnwmE27gLJYZgMT2GeK3J0+0toN+MnuNYDfHwVGQfLiMZ7KSNSIXHemy905w== - dependencies: - JSONStream "^1.0.3" - assert "^1.4.0" - browser-pack "^6.0.1" - browser-resolve "^2.0.0" - browserify-zlib "~0.2.0" - buffer "~5.2.1" - cached-path-relative "^1.0.0" - concat-stream "^1.6.0" - console-browserify "^1.1.0" - constants-browserify "~1.0.0" - crypto-browserify "^3.0.0" - defined "^1.0.0" - deps-sort "^2.0.1" - domain-browser "^1.2.0" - duplexer2 "~0.1.2" - events "^3.0.0" - glob "^7.1.0" - has "^1.0.0" - htmlescape "^1.1.0" - https-browserify "^1.0.0" - inherits "~2.0.1" - insert-module-globals "^7.2.1" - labeled-stream-splicer "^2.0.0" - mkdirp-classic "^0.5.2" - module-deps "^6.2.3" - os-browserify "~0.3.0" - parents "^1.0.1" - path-browserify "^1.0.0" - process "~0.11.0" - punycode "^1.3.2" - querystring-es3 "~0.2.0" - read-only-stream "^2.0.0" - readable-stream "^2.0.2" - resolve "^1.1.4" - shasum-object "^1.0.0" - shell-quote "^1.6.1" - stream-browserify "^3.0.0" - stream-http "^3.0.0" - string_decoder "^1.1.1" - subarg "^1.0.0" - syntax-error "^1.1.1" - through2 "^2.0.0" - timers-browserify "^1.0.1" - tty-browserify "0.0.1" - url "~0.11.0" - util "~0.12.0" - vm-browserify "^1.0.0" - xtend "^4.0.0" - -browserslist@^4.21.10, browserslist@^4.21.9: - version "4.21.10" - resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.10.tgz#dbbac576628c13d3b2231332cb2ec5a46e015bb0" - integrity sha512-bipEBdZfVH5/pwrvqc+Ub0kUPVfGUhlKxbvfD+z1BDnPEO/X98ruXGA1WP5ASpAFKan7Qr6j736IacbZQuAlKQ== - dependencies: - caniuse-lite "^1.0.30001517" - electron-to-chromium "^1.4.477" - node-releases "^2.0.13" - update-browserslist-db "^1.0.11" - buffer-crc32@~0.2.3: version "0.2.13" resolved "https://registry.yarnpkg.com/buffer-crc32/-/buffer-crc32-0.2.13.tgz#0d333e3f00eac50aa1454abd30ef8c2a5d9a7242" integrity sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ== -buffer-from@^1.0.0: - version "1.1.2" - resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" - integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== - -buffer-xor@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" - integrity sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ== - buffer@^5.2.1, buffer@^5.5.0, buffer@^5.6.0: version "5.7.1" resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.7.1.tgz#ba62e7c13133053582197160851a8f648e99eed0" @@ -1999,30 +598,12 @@ buffer@^5.2.1, buffer@^5.5.0, buffer@^5.6.0: base64-js "^1.3.1" ieee754 "^1.1.13" -buffer@~5.2.1: - version "5.2.1" - resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.2.1.tgz#dd57fa0f109ac59c602479044dca7b8b3d0b71d6" - integrity sha512-c+Ko0loDaFfuPWiL02ls9Xd3GO3cPVmUobQ6t3rXNUk304u6hGq+8N/kFi+QEIKhzK3uwolVhLzszmfLmMLnqg== - dependencies: - base64-js "^1.0.2" - ieee754 "^1.1.4" - -builtin-status-codes@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" - integrity sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ== - -cached-path-relative@^1.0.0, cached-path-relative@^1.0.2: - version "1.1.0" - resolved "https://registry.yarnpkg.com/cached-path-relative/-/cached-path-relative-1.1.0.tgz#865576dfef39c0d6a7defde794d078f5308e3ef3" - integrity sha512-WF0LihfemtesFcJgO7xfOoOcnWzY/QHR4qeDqV44jPU3HTI54+LnfXK3SA27AVVGCdZFgjjFFaqUA9Jx7dMJZA== - cachedir@^2.3.0: version "2.4.0" resolved "https://registry.yarnpkg.com/cachedir/-/cachedir-2.4.0.tgz#7fef9cf7367233d7c88068fe6e34ed0d355a610d" integrity sha512-9EtFOZR8g22CL7BWjJ9BUx1+A/djkofnyW3aOXZORNW2kxoUpx2h+uN2cOqwPmFhnpVmxg+KW2OjOSgChTEvsQ== -call-bind@^1.0.0, call-bind@^1.0.2: +call-bind@^1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== @@ -2035,11 +616,6 @@ callsites@^3.0.0: resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== -caniuse-lite@^1.0.30001517: - version "1.0.30001538" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001538.tgz#9dbc6b9af1ff06b5eb12350c2012b3af56744f3f" - integrity sha512-HWJnhnID+0YMtGlzcp3T9drmBJUVDchPJ08tpUGFLs9CYlwWPH2uLgpHn8fND5pCgXVtnGS3H4QR9XLMHVNkHw== - caseless@~0.12.0: version "0.12.0" resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" @@ -2072,21 +648,6 @@ check-types@^11.1.1: resolved "https://registry.yarnpkg.com/check-types/-/check-types-11.2.3.tgz#1ffdf68faae4e941fce252840b1787b8edc93b71" integrity sha512-+67P1GkJRaxQD6PKK0Et9DhwQB+vGg3PM5+aavopCpZT1lj9jeqfvpgTLAWErNj8qApkkmXlu/Ug74kmhagkXg== -chokidar@^3.4.0: - version "3.5.3" - resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.3.tgz#1cf37c8707b932bd1af1ae22c0432e2acd1903bd" - integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw== - dependencies: - anymatch "~3.1.2" - braces "~3.0.2" - glob-parent "~5.1.2" - is-binary-path "~2.1.0" - is-glob "~4.0.1" - normalize-path "~3.0.0" - readdirp "~3.6.0" - optionalDependencies: - fsevents "~2.3.2" - chownr@^1.1.1: version "1.1.4" resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.4.tgz#6fc9d7b42d32a583596337666e7d08084da2cc6b" @@ -2114,14 +675,6 @@ ci-info@^3.2.0: resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.8.0.tgz#81408265a5380c929f0bc665d62256628ce9ef91" integrity sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw== -cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3: - version "1.0.4" - resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de" - integrity sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q== - dependencies: - inherits "^2.0.1" - safe-buffer "^5.0.1" - class-transformer@0.5.1: version "0.5.1" resolved "https://registry.yarnpkg.com/class-transformer/-/class-transformer-0.5.1.tgz#24147d5dffd2a6cea930a3250a677addf96ab336" @@ -2172,19 +725,6 @@ cliui@^8.0.1: strip-ansi "^6.0.1" wrap-ansi "^7.0.0" -coffeeify@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/coffeeify/-/coffeeify-3.0.1.tgz#5e2753000c50bd24c693115f33864248dd11136c" - integrity sha512-Qjnr7UX6ldK1PHV7wCnv7AuCd4q19KTUtwJnu/6JRJB4rfm12zvcXtKdacUoePOKr1I4ka/ydKiwWpNAdsQb0g== - dependencies: - convert-source-map "^1.3.0" - through2 "^2.0.0" - -coffeescript@^1.12.7: - version "1.12.7" - resolved "https://registry.yarnpkg.com/coffeescript/-/coffeescript-1.12.7.tgz#e57ee4c4867cf7f606bfc4a0f2d550c0981ddd27" - integrity sha512-pLXHFxQMPklVoEekowk8b3erNynC+DVJzChxS/LCBBgR6/8AJkHivkm//zbowcfc7BTCAjryuhx6gPqPRfsFoA== - color-convert@^1.9.0: version "1.9.3" resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" @@ -2219,16 +759,6 @@ colors@1.0.3: resolved "https://registry.yarnpkg.com/colors/-/colors-1.0.3.tgz#0433f44d809680fdeb60ed260f1b0c262e82a40b" integrity sha512-pFGrxThWcWQ2MsAz6RtgeWe4NK2kUE1WfsrvvlctdII745EW9I0yflqhe7++M5LEc7bV2c/9/5zc8sFcpL0Drw== -combine-source-map@^0.8.0, combine-source-map@~0.8.0: - version "0.8.0" - resolved "https://registry.yarnpkg.com/combine-source-map/-/combine-source-map-0.8.0.tgz#a58d0df042c186fcf822a8e8015f5450d2d79a8b" - integrity sha512-UlxQ9Vw0b/Bt/KYwCFqdEwsQ1eL8d1gibiFb7lxQJFdvTgc2hIZi6ugsg+kyhzhPV+QEpUiEIwInIAIrgoEkrg== - dependencies: - convert-source-map "~1.1.0" - inline-source-map "~0.6.0" - lodash.memoize "~3.0.3" - source-map "~0.5.3" - combined-stream@^1.0.6, combined-stream@~1.0.6: version "1.0.8" resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" @@ -2261,16 +791,6 @@ concat-map@0.0.1: resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== -concat-stream@^1.6.0, concat-stream@^1.6.1, concat-stream@~1.6.0: - version "1.6.2" - resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34" - integrity sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw== - dependencies: - buffer-from "^1.0.0" - inherits "^2.0.3" - readable-stream "^2.2.2" - typedarray "^0.0.6" - concurrently@^7.6.0: version "7.6.0" resolved "https://registry.yarnpkg.com/concurrently/-/concurrently-7.6.0.tgz#531a6f5f30cf616f355a4afb8f8fcb2bba65a49a" @@ -2298,48 +818,16 @@ configstore@^5.0.1: write-file-atomic "^3.0.0" xdg-basedir "^4.0.0" -console-browserify@^1.1.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.2.0.tgz#67063cef57ceb6cf4993a2ab3a55840ae8c49336" - integrity sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA== - -constants-browserify@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" - integrity sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ== - -convert-source-map@^1.3.0, convert-source-map@^1.7.0: - version "1.9.0" - resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.9.0.tgz#7faae62353fb4213366d0ca98358d22e8368b05f" - integrity sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A== - -convert-source-map@~1.1.0: - version "1.1.3" - resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.1.3.tgz#4829c877e9fe49b3161f3bf3673888e204699860" - integrity sha512-Y8L5rp6jo+g9VEPgvqNfEopjTR4OTYct8lXlS8iVQdmnjDvbdbzYe9rjtFCB9egC86JoNCU61WRY+ScjkZpnIg== - cookie@^0.4.1: version "0.4.2" resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.4.2.tgz#0e41f24de5ecf317947c82fc789e06a884824432" integrity sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA== -core-js-compat@^3.31.0: - version "3.32.2" - resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.32.2.tgz#8047d1a8b3ac4e639f0d4f66d4431aa3b16e004c" - integrity sha512-+GjlguTDINOijtVRUxrQOv3kfu9rl+qPNdX2LTbJ/ZyVTuxK+ksVSAGX1nHstu4hrv1En/uPTtWgq2gI5wt4AQ== - dependencies: - browserslist "^4.21.10" - core-util-is@1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" integrity sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ== -core-util-is@~1.0.0: - version "1.0.3" - resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz#a6042d3634c2b27e9328f837b965fac83808db85" - integrity sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ== - cosmiconfig@^7.0.1: version "7.1.0" resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-7.1.0.tgz#1443b9afa596b670082ea46cbd8f6a62b84635f6" @@ -2351,37 +839,6 @@ cosmiconfig@^7.0.1: path-type "^4.0.0" yaml "^1.10.0" -create-ecdh@^4.0.0: - version "4.0.4" - resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.4.tgz#d6e7f4bffa66736085a0762fd3a632684dabcc4e" - integrity sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A== - dependencies: - bn.js "^4.1.0" - elliptic "^6.5.3" - -create-hash@^1.1.0, create-hash@^1.1.2, create-hash@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.2.0.tgz#889078af11a63756bcfb59bd221996be3a9ef196" - integrity sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg== - dependencies: - cipher-base "^1.0.1" - inherits "^2.0.1" - md5.js "^1.3.4" - ripemd160 "^2.0.1" - sha.js "^2.4.0" - -create-hmac@^1.1.0, create-hmac@^1.1.4, create-hmac@^1.1.7: - version "1.1.7" - resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.7.tgz#69170c78b3ab957147b2b8b04572e47ead2243ff" - integrity sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg== - dependencies: - cipher-base "^1.0.3" - create-hash "^1.1.0" - inherits "^2.0.1" - ripemd160 "^2.0.0" - safe-buffer "^5.0.1" - sha.js "^2.4.8" - cross-fetch@4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/cross-fetch/-/cross-fetch-4.0.0.tgz#f037aef1580bb3a1a35164ea2a848ba81b445983" @@ -2398,23 +855,6 @@ cross-spawn@^7.0.0: shebang-command "^2.0.0" which "^2.0.1" -crypto-browserify@^3.0.0: - version "3.12.0" - resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.12.0.tgz#396cf9f3137f03e4b8e532c58f698254e00f80ec" - integrity sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg== - dependencies: - browserify-cipher "^1.0.0" - browserify-sign "^4.0.0" - create-ecdh "^4.0.0" - create-hash "^1.1.0" - create-hmac "^1.1.0" - diffie-hellman "^5.0.0" - inherits "^2.0.1" - pbkdf2 "^3.0.3" - public-encrypt "^4.0.0" - randombytes "^2.0.0" - randomfill "^1.0.3" - crypto-random-string@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-2.0.0.tgz#ef2a7a966ec11083388369baa02ebead229b30d5" @@ -2435,15 +875,6 @@ cypress-file-upload@^5.0.8: resolved "https://registry.yarnpkg.com/cypress-file-upload/-/cypress-file-upload-5.0.8.tgz#d8824cbeaab798e44be8009769f9a6c9daa1b4a1" integrity sha512-+8VzNabRk3zG6x8f8BWArF/xA/W0VK4IZNx3MV0jFWrJS/qKn8eHfa5nU73P9fOQAgwHFJx7zjg4lwOnljMO8g== -cypress-tags@^1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/cypress-tags/-/cypress-tags-1.1.2.tgz#f0aeb29685b0906bba2eca69e7349943cbbd1eba" - integrity sha512-5aCGrhmDRQuXfRHJRFy66gBmMvBpsY1+ez5JD/cyjCYjvOVlJ7ED+kovUEdi+9pyDsbFJkQl0HjS6N3ERyb7Ig== - dependencies: - "@cypress/browserify-preprocessor" "^3.0.1" - boolean-parser "0.0.2" - through "^2.3.8" - cypress@^12.15.1: version "12.17.4" resolved "https://registry.yarnpkg.com/cypress/-/cypress-12.17.4.tgz#b4dadf41673058493fa0d2362faa3da1f6ae2e6c" @@ -2493,11 +924,6 @@ cypress@^12.15.1: untildify "^4.0.0" yauzl "^2.10.0" -dash-ast@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/dash-ast/-/dash-ast-1.0.0.tgz#12029ba5fb2f8aa6f0a861795b23c1b4b6c27d37" - integrity sha512-Vy4dx7gquTeMcQR/hDkYLGUnwVil6vk4FOOct+djUnHOUWt+zJPJAaRIXaAFkPXtJjvlY7o3rfRu0/3hpnwoUA== - dashdash@^1.12.0: version "1.14.1" resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" @@ -2543,34 +969,11 @@ debug@^3.1.0: dependencies: ms "^2.1.1" -define-data-property@^1.0.1: - version "1.1.0" - resolved "https://registry.yarnpkg.com/define-data-property/-/define-data-property-1.1.0.tgz#0db13540704e1d8d479a0656cf781267531b9451" - integrity sha512-UzGwzcjyv3OtAvolTj1GoyNYzfFR+iqbGjcnBEENZVCpM4/Ng1yhGNvS3lR/xDS74Tb2wGG9WzNSNIOS9UVb2g== - dependencies: - get-intrinsic "^1.2.1" - gopd "^1.0.1" - has-property-descriptors "^1.0.0" - define-lazy-prop@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz#3f7ae421129bcaaac9bc74905c98a0009ec9ee7f" integrity sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og== -define-properties@^1.1.4: - version "1.2.1" - resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.2.1.tgz#10781cc616eb951a80a034bafcaa7377f6af2b6c" - integrity sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg== - dependencies: - define-data-property "^1.0.1" - has-property-descriptors "^1.0.0" - object-keys "^1.1.1" - -defined@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.1.tgz#c0b9db27bfaffd95d6f61399419b893df0f91ebf" - integrity sha512-hsBd2qSVCRE+5PmNdHt1uzyrFu5d3RwmFDKzyNZMFq/EwDNJF7Ee5+D5oEKF0hU6LhtoUF1macFvOe4AskQC1Q== - degenerator@^5.0.0: version "5.0.1" resolved "https://registry.yarnpkg.com/degenerator/-/degenerator-5.0.1.tgz#9403bf297c6dad9a1ece409b37db27954f91f2f5" @@ -2585,33 +988,6 @@ delayed-stream@~1.0.0: resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" integrity sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ== -deps-sort@^2.0.0, deps-sort@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/deps-sort/-/deps-sort-2.0.1.tgz#9dfdc876d2bcec3386b6829ac52162cda9fa208d" - integrity sha512-1orqXQr5po+3KI6kQb9A4jnXT1PBwggGl2d7Sq2xsnOeI9GPcE/tGcF9UiSZtZBM7MukY4cAh7MemS6tZYipfw== - dependencies: - JSONStream "^1.0.3" - shasum-object "^1.0.0" - subarg "^1.0.0" - through2 "^2.0.0" - -des.js@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.1.0.tgz#1d37f5766f3bbff4ee9638e871a8768c173b81da" - integrity sha512-r17GxjhUCjSRy8aiJpr8/UadFIzMzJGexI3Nmz4ADi9LYSFx4gTBp80+NaX/YsXWWLhpZ7v/v/ubEc/bCNfKwg== - dependencies: - inherits "^2.0.1" - minimalistic-assert "^1.0.0" - -detective@^5.2.0: - version "5.2.1" - resolved "https://registry.yarnpkg.com/detective/-/detective-5.2.1.tgz#6af01eeda11015acb0e73f933242b70f24f91034" - integrity sha512-v9XE1zRnz1wRtgurGu0Bs8uHKFSTdteYZNbIPFVhUZ39L/S79ppMpdmVOZAnoz1jfEFodc48n6MX483Xo3t1yw== - dependencies: - acorn-node "^1.8.2" - defined "^1.0.0" - minimist "^1.2.6" - devtools-protocol@0.0.1147663: version "0.0.1147663" resolved "https://registry.yarnpkg.com/devtools-protocol/-/devtools-protocol-0.0.1147663.tgz#4ec5610b39a6250d1f87e6b9c7e16688ed0ac78e" @@ -2627,20 +1003,6 @@ devtools-protocol@0.0.869402: resolved "https://registry.yarnpkg.com/devtools-protocol/-/devtools-protocol-0.0.869402.tgz#03ade701761742e43ae4de5dc188bcd80f156d8d" integrity sha512-VvlVYY+VDJe639yHs5PHISzdWTLL3Aw8rO4cvUtwvoxFd6FHbE4OpHHcde52M6096uYYazAmd4l0o5VuFRO2WA== -diffie-hellman@^5.0.0: - version "5.0.3" - resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.3.tgz#40e8ee98f55a2149607146921c63e1ae5f3d2875" - integrity sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg== - dependencies: - bn.js "^4.1.0" - miller-rabin "^4.0.0" - randombytes "^2.0.0" - -domain-browser@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.2.0.tgz#3d31f50191a6749dd1375a7f522e823d42e54eda" - integrity sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA== - dot-prop@^5.2.0: version "5.3.0" resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-5.3.0.tgz#90ccce708cd9cd82cc4dc8c3ddd9abdd55b20e88" @@ -2653,13 +1015,6 @@ dotenv@^16.4.5: resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-16.4.5.tgz#cdd3b3b604cb327e286b4762e13502f717cb099f" integrity sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg== -duplexer2@^0.1.2, duplexer2@~0.1.0, duplexer2@~0.1.2: - version "0.1.4" - resolved "https://registry.yarnpkg.com/duplexer2/-/duplexer2-0.1.4.tgz#8b12dab878c0d69e3e7891051662a32fc6bddcc1" - integrity sha512-asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA== - dependencies: - readable-stream "^2.0.2" - ecc-jsbn@~0.1.1: version "0.1.2" resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9" @@ -2668,24 +1023,6 @@ ecc-jsbn@~0.1.1: jsbn "~0.1.0" safer-buffer "^2.1.0" -electron-to-chromium@^1.4.477: - version "1.4.526" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.526.tgz#1bcda5f2b8238e497c20fcdb41af5da907a770e2" - integrity sha512-tjjTMjmZAx1g6COrintLTa2/jcafYKxKoiEkdQOrVdbLaHh2wCt2nsAF8ZHweezkrP+dl/VG9T5nabcYoo0U5Q== - -elliptic@^6.5.3, elliptic@^6.5.4: - version "6.5.4" - resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.4.tgz#da37cebd31e79a1367e941b592ed1fbebd58abbb" - integrity sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ== - dependencies: - bn.js "^4.11.9" - brorand "^1.1.0" - hash.js "^1.0.0" - hmac-drbg "^1.0.1" - inherits "^2.0.4" - minimalistic-assert "^1.0.1" - minimalistic-crypto-utils "^1.0.1" - emoji-regex@^8.0.0: version "8.0.0" resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" @@ -2926,24 +1263,6 @@ eventemitter2@6.4.7: resolved "https://registry.yarnpkg.com/eventemitter2/-/eventemitter2-6.4.7.tgz#a7f6c4d7abf28a14c1ef3442f21cb306a054271d" integrity sha512-tYUSVOGeQPKt/eC1ABfhHy5Xd96N3oIijJvN3O9+TsC28T5V9yX9oEfEK5faP0EFSNVOG97qtAS68GBrQB2hDg== -events@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/events/-/events-2.1.0.tgz#2a9a1e18e6106e0e812aa9ebd4a819b3c29c0ba5" - integrity sha512-3Zmiobend8P9DjmKAty0Era4jV8oJ0yGYe2nJJAxgymF9+N8F2m0hhZiMoWtcfepExzNKZumFU3ksdQbInGWCg== - -events@^3.0.0: - version "3.3.0" - resolved "https://registry.yarnpkg.com/events/-/events-3.3.0.tgz#31a95ad0a924e2d2c419a813aeb2c4e878ea7400" - integrity sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q== - -evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz#7fcbdb198dc71959432efe13842684e0525acb02" - integrity sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA== - dependencies: - md5.js "^1.3.4" - safe-buffer "^5.1.1" - execa@4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/execa/-/execa-4.1.0.tgz#4e5491ad1572f2f17a77d388c6c857135b22847a" @@ -2997,11 +1316,6 @@ fast-fifo@^1.1.0, fast-fifo@^1.2.0: resolved "https://registry.yarnpkg.com/fast-fifo/-/fast-fifo-1.3.2.tgz#286e31de96eb96d38a97899815740ba2a4f3640c" integrity sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ== -fast-safe-stringify@^2.0.7: - version "2.1.1" - resolved "https://registry.yarnpkg.com/fast-safe-stringify/-/fast-safe-stringify-2.1.1.tgz#c406a83b6e70d9e35ce3b30a81141df30aeba884" - integrity sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA== - fd-slicer@~1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/fd-slicer/-/fd-slicer-1.1.0.tgz#25c7c89cb1f9077f8891bbe61d8f390eae256f1e" @@ -3016,27 +1330,13 @@ figures@^3.2.0: dependencies: escape-string-regexp "^1.0.5" -fill-range@^7.0.1: - version "7.0.1" - resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" - integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== - dependencies: - to-regex-range "^5.0.1" - find-up@^4.0.0: version "4.1.0" resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== dependencies: locate-path "^5.0.0" - path-exists "^4.0.0" - -for-each@^0.3.3: - version "0.3.3" - resolved "https://registry.yarnpkg.com/for-each/-/for-each-0.3.3.tgz#69b447e88a0a5d32c3e7084f3f1710034b21376e" - integrity sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw== - dependencies: - is-callable "^1.1.3" + path-exists "^4.0.0" forever-agent@~0.6.1: version "0.6.1" @@ -3066,7 +1366,7 @@ fs-extra@^8.1.0: jsonfile "^4.0.0" universalify "^0.1.0" -fs-extra@^9.0.0, fs-extra@^9.1.0: +fs-extra@^9.1.0: version "9.1.0" resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-9.1.0.tgz#5954460c764a8da2094ba3554bf839e6b9a7c86d" integrity sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ== @@ -3081,32 +1381,17 @@ fs.realpath@^1.0.0: resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== -fsevents@~2.3.2: - version "2.3.3" - resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.3.tgz#cac6407785d03675a2a5e1a5305c697b347d90d6" - integrity sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw== - function-bind@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== -gensync@^1.0.0-beta.2: - version "1.0.0-beta.2" - resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" - integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== - -get-assigned-identifiers@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/get-assigned-identifiers/-/get-assigned-identifiers-1.2.0.tgz#6dbf411de648cbaf8d9169ebb0d2d576191e2ff1" - integrity sha512-mBBwmeGTrxEMO4pMaaf/uUEFHnYtwr8FTe8Y/mer4rcV/bye0qGm6pw1bGZFGStxC5O76c5ZAVBGnqHmOaJpdQ== - get-caller-file@^2.0.5: version "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-intrinsic@^1.0.2, get-intrinsic@^1.1.1, get-intrinsic@^1.1.3, get-intrinsic@^1.2.1: +get-intrinsic@^1.0.2: version "1.2.1" resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.1.tgz#d295644fed4505fc9cde952c37ee12b477a83d82" integrity sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw== @@ -3147,14 +1432,7 @@ getpass@^0.1.1: dependencies: assert-plus "^1.0.0" -glob-parent@~5.1.2: - version "5.1.2" - resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" - integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== - dependencies: - is-glob "^4.0.1" - -glob@^7.1.0, glob@^7.1.3, glob@^7.1.6: +glob@^7.1.3, glob@^7.1.6: version "7.2.3" resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== @@ -3183,18 +1461,6 @@ global-dirs@^3.0.0: dependencies: ini "2.0.0" -globals@^11.1.0: - version "11.12.0" - resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" - integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== - -gopd@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.0.1.tgz#29ff76de69dac7489b7c0918a5788e56477c332c" - integrity sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA== - dependencies: - get-intrinsic "^1.1.3" - graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0: version "4.2.11" resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3" @@ -3210,63 +1476,23 @@ has-flag@^4.0.0: resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== -has-property-descriptors@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz#610708600606d36961ed04c196193b6a607fa861" - integrity sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ== - dependencies: - get-intrinsic "^1.1.1" - has-proto@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.0.1.tgz#1885c1305538958aff469fef37937c22795408e0" integrity sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg== -has-symbols@^1.0.2, has-symbols@^1.0.3: +has-symbols@^1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== -has-tostringtag@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz#7e133818a7d394734f941e73c3d3f9291e658b25" - integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ== - dependencies: - has-symbols "^1.0.2" - -has@^1.0.0, has@^1.0.3: +has@^1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== dependencies: function-bind "^1.1.1" -hash-base@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.1.0.tgz#55c381d9e06e1d2997a883b4a3fddfe7f0d3af33" - integrity sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA== - dependencies: - inherits "^2.0.4" - readable-stream "^3.6.0" - safe-buffer "^5.2.0" - -hash.js@^1.0.0, hash.js@^1.0.3: - version "1.1.7" - resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.7.tgz#0babca538e8d4ee4a0f8988d68866537a003cf42" - integrity sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA== - dependencies: - inherits "^2.0.3" - minimalistic-assert "^1.0.1" - -hmac-drbg@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" - integrity sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg== - dependencies: - hash.js "^1.0.3" - minimalistic-assert "^1.0.0" - minimalistic-crypto-utils "^1.0.1" - hoopy@^0.1.4: version "0.1.4" resolved "https://registry.yarnpkg.com/hoopy/-/hoopy-0.1.4.tgz#609207d661100033a9a9402ad3dea677381c1b1d" @@ -3277,11 +1503,6 @@ html_codesniffer@~2.5.1: resolved "https://registry.yarnpkg.com/html_codesniffer/-/html_codesniffer-2.5.1.tgz#d76d124b8f5cd0e58b3c1b142fd095a40573ea28" integrity sha512-vcz0yAaX/OaV6sdNHuT9alBOKkSxYb8h5Yq26dUqgi7XmCgGUSa7U9PiY1PBXQFMjKv1wVPs5/QzHlGuxPDUGg== -htmlescape@^1.1.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/htmlescape/-/htmlescape-1.1.1.tgz#3a03edc2214bca3b66424a3e7959349509cb0351" - integrity sha512-eVcrzgbR4tim7c7soKQKtxa/kQM4TzjnlU83rcZ9bHU6t31ehfV7SktN6McWgwPWg+JYMA/O3qpGxBvFq1z2Jg== - http-link-header@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/http-link-header/-/http-link-header-1.1.1.tgz#f0e6971b0ed86e858d2077066ecb7ba4f2e50de9" @@ -3304,11 +1525,6 @@ http-signature@~1.3.6: jsprim "^2.0.2" sshpk "^1.14.1" -https-browserify@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73" - integrity sha512-J+FkSdyD+0mA0N+81tMotaRMfSL9SGi+xpD3T6YApKsc3bGSXJlfXri3VyFOeYkfLRQisDk1W+jIFFKBeUBbBg== - https-proxy-agent@^5.0.0: version "5.0.1" resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz#c59ef224a04fe8b754f3db0063a25ea30d0005d6" @@ -3330,7 +1546,7 @@ human-signals@^1.1.1: resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-1.1.1.tgz#c5b1cd14f50aeae09ab6c59fe63ba3395fe4dfa3" integrity sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw== -ieee754@^1.1.13, ieee754@^1.1.4: +ieee754@^1.1.13: version "1.2.1" resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== @@ -3366,44 +1582,16 @@ inflight@^1.0.4: once "^1.3.0" wrappy "1" -inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.1, inherits@~2.0.3, inherits@~2.0.4: +inherits@2, inherits@^2.0.3, inherits@^2.0.4: version "2.0.4" resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== -inherits@2.0.3: - version "2.0.3" - resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" - integrity sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw== - ini@2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/ini/-/ini-2.0.0.tgz#e5fd556ecdd5726be978fa1001862eacb0a94bc5" integrity sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA== -inline-source-map@~0.6.0: - version "0.6.2" - resolved "https://registry.yarnpkg.com/inline-source-map/-/inline-source-map-0.6.2.tgz#f9393471c18a79d1724f863fa38b586370ade2a5" - integrity sha512-0mVWSSbNDvedDWIN4wxLsdPM4a7cIPcpyMxj3QZ406QRwQ6ePGB1YIHxVPjqpcUGbWQ5C+nHTwGNWAGvt7ggVA== - dependencies: - source-map "~0.5.3" - -insert-module-globals@^7.0.0, insert-module-globals@^7.2.1: - version "7.2.1" - resolved "https://registry.yarnpkg.com/insert-module-globals/-/insert-module-globals-7.2.1.tgz#d5e33185181a4e1f33b15f7bf100ee91890d5cb3" - integrity sha512-ufS5Qq9RZN+Bu899eA9QCAYThY+gGW7oRkmb0vC93Vlyu/CFGcH0OYPEjVkDXA5FEbTt1+VWzdoOD3Ny9N+8tg== - dependencies: - JSONStream "^1.0.3" - acorn-node "^1.5.2" - combine-source-map "^0.8.0" - concat-stream "^1.6.1" - is-buffer "^1.1.0" - path-is-absolute "^1.0.1" - process "~0.11.0" - through2 "^2.0.0" - undeclared-identifiers "^1.1.2" - xtend "^4.0.0" - intl-messageformat-parser@^1.8.1: version "1.8.1" resolved "https://registry.yarnpkg.com/intl-messageformat-parser/-/intl-messageformat-parser-1.8.1.tgz#0eb14c5618333be4c95c409457b66c8c33ddcc01" @@ -3426,36 +1614,11 @@ ip@^2.0.0: resolved "https://registry.yarnpkg.com/ip/-/ip-2.0.1.tgz#e8f3595d33a3ea66490204234b77636965307105" integrity sha512-lJUL9imLTNi1ZfXT+DU6rBBdbiKGBuay9B6xGSPVjUeQwaH1RIGqef8RZkUtHioLmSNpPR5M4HVKJGm1j8FWVQ== -is-arguments@^1.0.4: - version "1.1.1" - resolved "https://registry.yarnpkg.com/is-arguments/-/is-arguments-1.1.1.tgz#15b3f88fda01f2a97fec84ca761a560f123efa9b" - integrity sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA== - dependencies: - call-bind "^1.0.2" - has-tostringtag "^1.0.0" - is-arrayish@^0.2.1: version "0.2.1" resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg== -is-binary-path@~2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" - integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== - dependencies: - binary-extensions "^2.0.0" - -is-buffer@^1.1.0: - version "1.1.6" - resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" - integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== - -is-callable@^1.1.3: - version "1.2.7" - resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz#3bc2a85ea742d9e36205dcacdd72ca1fdc51b055" - integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA== - is-ci@^3.0.0: version "3.0.1" resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-3.0.1.tgz#db6ecbed1bd659c43dac0f45661e7674103d1867" @@ -3463,42 +1626,16 @@ is-ci@^3.0.0: dependencies: ci-info "^3.2.0" -is-core-module@^2.13.0: - version "2.13.0" - resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.13.0.tgz#bb52aa6e2cbd49a30c2ba68c42bf3435ba6072db" - integrity sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ== - dependencies: - has "^1.0.3" - is-docker@^2.0.0, is-docker@^2.1.1: version "2.2.1" resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.2.1.tgz#33eeabe23cfe86f14bde4408a02c0cfb853acdaa" integrity sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ== -is-extglob@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" - integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== - is-fullwidth-code-point@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== -is-generator-function@^1.0.7: - version "1.0.10" - resolved "https://registry.yarnpkg.com/is-generator-function/-/is-generator-function-1.0.10.tgz#f1558baf1ac17e0deea7c0415c438351ff2b3c72" - integrity sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A== - dependencies: - has-tostringtag "^1.0.0" - -is-glob@^4.0.1, is-glob@~4.0.1: - version "4.0.3" - resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" - integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== - dependencies: - is-extglob "^2.1.1" - is-installed-globally@~0.4.0: version "0.4.0" resolved "https://registry.yarnpkg.com/is-installed-globally/-/is-installed-globally-0.4.0.tgz#9a0fd407949c30f86eb6959ef1b7994ed0b7b520" @@ -3507,11 +1644,6 @@ is-installed-globally@~0.4.0: global-dirs "^3.0.0" is-path-inside "^3.0.2" -is-number@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" - integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== - is-obj@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-2.0.0.tgz#473fb05d973705e3fd9620545018ca8e22ef4982" @@ -3527,13 +1659,6 @@ is-stream@^2.0.0: resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077" integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== -is-typed-array@^1.1.3: - version "1.1.12" - resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.12.tgz#d0bab5686ef4a76f7a73097b95470ab199c57d4a" - integrity sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg== - dependencies: - which-typed-array "^1.1.11" - is-typedarray@^1.0.0, is-typedarray@~1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" @@ -3556,11 +1681,6 @@ is@^3.2.1: resolved "https://registry.yarnpkg.com/is/-/is-3.3.0.tgz#61cff6dd3c4193db94a3d62582072b44e5645d79" integrity sha512-nW24QBoPcFGGHJGUwnfpI7Yc5CdqWNdsyHQszVE/z2pKHXzh7FZ5GWhJqSyaQ9wMkQnsTx+kAI8bHlCX4tKdbg== -isarray@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" - integrity sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ== - isexe@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" @@ -3591,16 +1711,6 @@ jsbn@~0.1.0: resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" integrity sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg== -jsesc@^2.5.1: - version "2.5.2" - resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" - integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== - -jsesc@~0.5.0: - version "0.5.0" - resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" - integrity sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA== - json-parse-even-better-errors@^2.3.0: version "2.3.1" resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" @@ -3611,23 +1721,11 @@ json-schema@0.4.0: resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.4.0.tgz#f7de4cf6efab838ebaeb3236474cbba5a1930ab5" integrity sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA== -json-stable-stringify@~0.0.0: - version "0.0.1" - resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-0.0.1.tgz#611c23e814db375527df851193db59dd2af27f45" - integrity sha512-nKtD/Qxm7tWdZqJoldEC7fF0S41v0mWbeaXG3637stOWfyGxTgWTYE2wtfKmjzpvxv2MA2xzxsXOIiwUpkX6Qw== - dependencies: - jsonify "~0.0.0" - json-stringify-safe@~5.0.1: version "5.0.1" resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" integrity sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA== -json5@^2.2.3: - version "2.2.3" - resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283" - integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg== - jsonfile@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb" @@ -3644,16 +1742,6 @@ jsonfile@^6.0.1: optionalDependencies: graceful-fs "^4.1.6" -jsonify@~0.0.0: - version "0.0.1" - resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.1.tgz#2aa3111dae3d34a0f151c63f3a45d995d9420978" - integrity sha512-2/Ki0GcmuqSrgFyelQq9M05y7PS0mEwuIzrf3f1fPqkVDVRvZrPZtVSMHxdgo8Aq0sxAOb/cr2aqqA3LeWHVPg== - -jsonparse@^1.2.0: - version "1.3.1" - resolved "https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.3.1.tgz#3f4dae4a91fac315f71062f8521cc239f1366280" - integrity sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg== - jsprim@^2.0.2: version "2.0.2" resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-2.0.2.tgz#77ca23dbcd4135cd364800d22ff82c2185803d4d" @@ -3669,14 +1757,6 @@ kleur@~4.1.4: resolved "https://registry.yarnpkg.com/kleur/-/kleur-4.1.5.tgz#95106101795f7050c6c650f350c683febddb1780" integrity sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ== -labeled-stream-splicer@^2.0.0: - version "2.0.2" - resolved "https://registry.yarnpkg.com/labeled-stream-splicer/-/labeled-stream-splicer-2.0.2.tgz#42a41a16abcd46fd046306cf4f2c3576fffb1c21" - integrity sha512-Ca4LSXFFZUjPScRaqOcFxneA0VpKZr4MMYCljyQr4LIewTLb3Y0IUTIsnBBsVubIeEfxeSZpSjSsRM8APEQaAw== - dependencies: - inherits "^2.0.1" - stream-splicer "^2.0.0" - lazy-ass@^1.6.0: version "1.6.0" resolved "https://registry.yarnpkg.com/lazy-ass/-/lazy-ass-1.6.0.tgz#7999655e8646c17f089fdd187d150d3324d54513" @@ -3754,21 +1834,6 @@ locate-path@^5.0.0: dependencies: p-locate "^4.1.0" -lodash.clonedeep@^4.5.0: - version "4.5.0" - resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef" - integrity sha512-H5ZhCF25riFd9uB5UCkVKo61m3S/xZk1x4wA6yp/L3RFP6Z/eHH1ymQcGLo7J3GMPfm0V/7m1tryHuGVxpqEBQ== - -lodash.debounce@^4.0.8: - version "4.0.8" - resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" - integrity sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow== - -lodash.memoize@~3.0.3: - version "3.0.4" - resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-3.0.4.tgz#2dcbd2c287cbc0a55cc42328bd0c736150d53e3f" - integrity sha512-eDn9kqrAmVUC1wmZvlQ6Uhde44n+tXpqPrN8olQJbttgh0oKclk+SF54P47VEGE9CEiMeRwAP8BaM7UHvBkz2A== - lodash.once@^4.1.1: version "4.1.1" resolved "https://registry.yarnpkg.com/lodash.once/-/lodash.once-4.1.1.tgz#0dd3971213c7c56df880977d504c88fb471a97ac" @@ -3802,13 +1867,6 @@ lookup-closest-locale@6.2.0: resolved "https://registry.yarnpkg.com/lookup-closest-locale/-/lookup-closest-locale-6.2.0.tgz#57f665e604fd26f77142d48152015402b607bcf3" integrity sha512-/c2kL+Vnp1jnV6K6RpDTHK3dgg0Tu2VVp+elEiJpjfS1UyY7AjOYHohRug6wT0OpoX2qFgNORndE9RqesfVxWQ== -lru-cache@^5.1.1: - version "5.1.1" - resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920" - integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w== - dependencies: - yallist "^3.0.2" - lru-cache@^6.0.0: version "6.0.0" resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" @@ -3843,15 +1901,6 @@ marky@^1.2.2: resolved "https://registry.yarnpkg.com/marky/-/marky-1.2.5.tgz#55796b688cbd72390d2d399eaaf1832c9413e3c0" integrity sha512-q9JtQJKjpsVxCRVgQ+WapguSbKC3SQ5HEzFGPAJMStgh3QjCawp00UKv3MTTAArTmGmmPUvllHZoNbZ3gs0I+Q== -md5.js@^1.3.4: - version "1.3.5" - resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.5.tgz#b5d07b8e3216e3e27cd728d72f70d1e6a342005f" - integrity sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg== - dependencies: - hash-base "^3.0.0" - inherits "^2.0.1" - safe-buffer "^5.1.2" - merge-stream@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" @@ -3862,14 +1911,6 @@ metaviewport-parser@0.3.0: resolved "https://registry.yarnpkg.com/metaviewport-parser/-/metaviewport-parser-0.3.0.tgz#6af1e99b5eaf250c049e0af1e84143a39750dea6" integrity sha512-EoYJ8xfjQ6kpe9VbVHvZTZHiOl4HL1Z18CrZ+qahvLXT7ZO4YTC2JMyt5FaUp9JJp6J4Ybb/z7IsCXZt86/QkQ== -miller-rabin@^4.0.0: - version "4.0.1" - resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.1.tgz#f080351c865b0dc562a8462966daa53543c78a4d" - integrity sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA== - dependencies: - bn.js "^4.0.0" - brorand "^1.0.1" - mime-db@1.52.0: version "1.52.0" resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70" @@ -3887,16 +1928,6 @@ mimic-fn@^2.1.0: resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== -minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7" - integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A== - -minimalistic-crypto-utils@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" - integrity sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg== - minimatch@^3.0.4, minimatch@^3.1.1: version "3.1.2" resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" @@ -3911,7 +1942,7 @@ minimatch@^8.0.2: dependencies: brace-expansion "^2.0.1" -minimist@^1.1.0, minimist@^1.2.6, minimist@^1.2.8: +minimist@^1.2.8: version "1.2.8" resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c" integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== @@ -3941,27 +1972,6 @@ module-alias@^2.2.2: resolved "https://registry.yarnpkg.com/module-alias/-/module-alias-2.2.3.tgz#ec2e85c68973bda6ab71ce7c93b763ec96053221" integrity sha512-23g5BFj4zdQL/b6tor7Ji+QY4pEfNH784BMslY9Qb0UnJWRAt+lQGLYmRaM0KDBwIG23ffEBELhZDP2rhi9f/Q== -module-deps@^6.2.3: - version "6.2.3" - resolved "https://registry.yarnpkg.com/module-deps/-/module-deps-6.2.3.tgz#15490bc02af4b56cf62299c7c17cba32d71a96ee" - integrity sha512-fg7OZaQBcL4/L+AK5f4iVqf9OMbCclXfy/znXRxTVhJSeW5AIlS9AwheYwDaXM3lVW7OBeaeUEY3gbaC6cLlSA== - dependencies: - JSONStream "^1.0.3" - browser-resolve "^2.0.0" - cached-path-relative "^1.0.2" - concat-stream "~1.6.0" - defined "^1.0.0" - detective "^5.2.0" - duplexer2 "^0.1.2" - inherits "^2.0.1" - parents "^1.0.0" - readable-stream "^2.0.2" - resolve "^1.4.0" - stream-combiner2 "^1.1.1" - subarg "^1.0.0" - through2 "^2.0.0" - xtend "^4.0.0" - ms@2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" @@ -3999,11 +2009,6 @@ node-hook@^1.0.0: resolved "https://registry.yarnpkg.com/node-hook/-/node-hook-1.0.0.tgz#82ca39af991d726d5c7952e59c992378bb296f7e" integrity sha512-tBTIHwkzXvbesP0fY495VsqSWCOS5Ttt5+mAmeqUC1yglCiSYarNewfi2Q+HOL+M6pZYYqwGU6jIi5+gIHQbpg== -node-releases@^2.0.13: - version "2.0.13" - resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.13.tgz#d5ed1627c23e3461e819b02e57b75e4899b1c81d" - integrity sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ== - node.extend@~2.0.2: version "2.0.2" resolved "https://registry.yarnpkg.com/node.extend/-/node.extend-2.0.2.tgz#b4404525494acc99740f3703c496b7d5182cc6cc" @@ -4012,11 +2017,6 @@ node.extend@~2.0.2: has "^1.0.3" is "^3.2.1" -normalize-path@^3.0.0, normalize-path@~3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" - integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== - npm-run-path@^4.0.0: version "4.0.1" resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" @@ -4029,21 +2029,6 @@ object-inspect@^1.9.0: resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.3.tgz#ba62dffd67ee256c8c086dfae69e016cd1f198b9" integrity sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g== -object-keys@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" - integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== - -object.assign@^4.1.4: - version "4.1.4" - resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.4.tgz#9673c7c7c351ab8c4d0b516f4343ebf4dfb7799f" - integrity sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.4" - has-symbols "^1.0.3" - object-keys "^1.1.1" - once@^1.3.0, once@^1.3.1, once@^1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" @@ -4067,23 +2052,11 @@ open@^8.4.0: is-docker "^2.1.1" is-wsl "^2.2.0" -os-browserify@~0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.3.0.tgz#854373c7f5c2315914fc9bfc6bd8238fdda1ec27" - integrity sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A== - ospath@^1.2.2: version "1.2.2" resolved "https://registry.yarnpkg.com/ospath/-/ospath-1.2.2.tgz#1276639774a3f8ef2572f7fe4280e0ea4550c07b" integrity sha512-o6E5qJV5zkAbIDNhGSIlyOhScKXgQrSRMilfph0clDfM0nEnBOlKlH4sWDmG95BW/CvwNz0vmm7dJVtU2KlMiA== -outpipe@^1.1.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/outpipe/-/outpipe-1.1.1.tgz#50cf8616365e87e031e29a5ec9339a3da4725fa2" - integrity sha512-BnNY/RwnDrkmQdUa9U+OfN/Y7AWmKuUPCCd+hbRclZnnANvYpO72zp/a6Q4n829hPbdqEac31XCcsvlEvb+rtA== - dependencies: - shell-quote "^1.4.2" - p-limit@^2.2.0: version "2.3.0" resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" @@ -4155,11 +2128,6 @@ pac-resolver@^7.0.0: ip "^1.1.8" netmask "^2.0.2" -pako@~1.0.5: - version "1.0.11" - resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.11.tgz#6c9599d340d54dfd3946380252a35705a6b992bf" - integrity sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw== - parent-module@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" @@ -4167,24 +2135,6 @@ parent-module@^1.0.0: dependencies: callsites "^3.0.0" -parents@^1.0.0, parents@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/parents/-/parents-1.0.1.tgz#fedd4d2bf193a77745fe71e371d73c3307d9c751" - integrity sha512-mXKF3xkoUt5td2DoxpLmtOmZvko9VfFpwRwkKDHSNvgmpLAeBo18YDhcPbBzJq+QLCHMbGOfzia2cX4U+0v9Mg== - dependencies: - path-platform "~0.11.15" - -parse-asn1@^5.0.0, parse-asn1@^5.1.6: - version "5.1.6" - resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.6.tgz#385080a3ec13cb62a62d39409cb3e88844cdaed4" - integrity sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw== - dependencies: - asn1.js "^5.2.0" - browserify-aes "^1.0.0" - evp_bytestokey "^1.0.0" - pbkdf2 "^3.0.3" - safe-buffer "^5.1.1" - parse-cache-control@1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/parse-cache-control/-/parse-cache-control-1.0.1.tgz#8eeab3e54fa56920fe16ba38f77fa21aacc2d74e" @@ -4200,22 +2150,12 @@ parse-json@^5.0.0: json-parse-even-better-errors "^2.3.0" lines-and-columns "^1.1.6" -path-browserify@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-1.0.1.tgz#d98454a9c3753d5790860f16f68867b9e46be1fd" - integrity sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g== - -path-browserify@~0.0.0: - version "0.0.1" - resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.1.tgz#e6c4ddd7ed3aa27c68a20cc4e50e1a4ee83bbc4a" - integrity sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ== - path-exists@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== -path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: +path-is-absolute@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== @@ -4225,16 +2165,6 @@ path-key@^3.0.0, path-key@^3.1.0: resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== -path-parse@^1.0.7: - version "1.0.7" - resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" - integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== - -path-platform@~0.11.15: - version "0.11.15" - resolved "https://registry.yarnpkg.com/path-platform/-/path-platform-0.11.15.tgz#e864217f74c36850f0852b78dc7bf7d4a5721bf2" - integrity sha512-Y30dB6rab1A/nfEKsZxmr01nUotHX0c/ZiIAsCTatEe1CmS5Pm5He7fZ195bPT7RdquoaL8lLxFCMQi/bS7IJg== - path-scurry@^1.6.1: version "1.10.1" resolved "https://registry.yarnpkg.com/path-scurry/-/path-scurry-1.10.1.tgz#9ba6bf5aa8500fe9fd67df4f0d9483b2b0bfc698" @@ -4248,17 +2178,6 @@ path-type@^4.0.0: resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== -pbkdf2@^3.0.3: - version "3.1.2" - resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.1.2.tgz#dd822aa0887580e52f1a039dc3eda108efae3075" - integrity sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA== - dependencies: - create-hash "^1.1.2" - create-hmac "^1.1.4" - ripemd160 "^2.0.1" - safe-buffer "^5.0.1" - sha.js "^2.4.8" - pend@~1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/pend/-/pend-1.2.0.tgz#7a57eb550a6783f9115331fcf4663d5c8e007a50" @@ -4269,16 +2188,6 @@ performance-now@^2.1.0: resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" integrity sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow== -picocolors@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" - integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== - -picomatch@^2.0.4, picomatch@^2.2.1: - version "2.3.1" - resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" - integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== - pify@^2.2.0: version "2.3.0" resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" @@ -4296,12 +2205,7 @@ pretty-bytes@^5.6.0: resolved "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-5.6.0.tgz#356256f643804773c82f64723fe78c92c62beaeb" integrity sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg== -process-nextick-args@~2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" - integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== - -process@^0.11.10, process@~0.11.0: +process@^0.11.10: version "0.11.10" resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" integrity sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A== @@ -4345,18 +2249,6 @@ psl@^1.1.33: resolved "https://registry.yarnpkg.com/psl/-/psl-1.9.0.tgz#d0df2a137f00794565fcaf3b2c00cd09f8d5a5a7" integrity sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag== -public-encrypt@^4.0.0: - version "4.0.3" - resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.3.tgz#4fcc9d77a07e48ba7527e7cbe0de33d0701331e0" - integrity sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q== - dependencies: - bn.js "^4.1.0" - browserify-rsa "^4.0.0" - create-hash "^1.1.0" - parse-asn1 "^5.0.0" - randombytes "^2.0.1" - safe-buffer "^5.1.2" - pump@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" @@ -4365,11 +2257,6 @@ pump@^3.0.0: end-of-stream "^1.1.0" once "^1.3.1" -punycode@^1.3.2, punycode@^1.4.1: - version "1.4.1" - resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" - integrity sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ== - punycode@^2.1.1: version "2.3.0" resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.0.tgz#f67fa67c94da8f4d0cfff981aee4118064199b8f" @@ -4405,13 +2292,6 @@ puppeteer@~9.1.1: unbzip2-stream "^1.3.3" ws "^7.2.3" -qs@^6.11.2: - version "6.11.2" - resolved "https://registry.yarnpkg.com/qs/-/qs-6.11.2.tgz#64bea51f12c1f5da1bc01496f48ffcff7c69d7d9" - integrity sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA== - dependencies: - side-channel "^1.0.4" - qs@~6.10.3: version "6.10.5" resolved "https://registry.yarnpkg.com/qs/-/qs-6.10.5.tgz#974715920a80ff6a262264acd2c7e6c2a53282b4" @@ -4419,11 +2299,6 @@ qs@~6.10.3: dependencies: side-channel "^1.0.4" -querystring-es3@~0.2.0: - version "0.2.1" - resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" - integrity sha512-773xhDQnZBMFobEiztv8LIl70ch5MSF/jUQVlhwFyBILqq96anmoctVIYz+ZRp0qbCKATTn6ev02M3r7Ga5vqA== - querystringify@^2.1.1: version "2.2.0" resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-2.2.0.tgz#3345941b4153cb9d082d8eee4cda2016a9aef7f6" @@ -4434,29 +2309,7 @@ queue-tick@^1.0.1: resolved "https://registry.yarnpkg.com/queue-tick/-/queue-tick-1.0.1.tgz#f6f07ac82c1fd60f82e098b417a80e52f1f4c142" integrity sha512-kJt5qhMxoszgU/62PLP1CJytzd2NKetjSRnyuj31fDd3Rlcz3fzlFdFLD1SItunPwyqEOkca6GbV612BWfaBag== -randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5: - version "2.1.0" - resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a" - integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ== - dependencies: - safe-buffer "^5.1.0" - -randomfill@^1.0.3: - version "1.0.4" - resolved "https://registry.yarnpkg.com/randomfill/-/randomfill-1.0.4.tgz#c92196fc86ab42be983f1bf31778224931d61458" - integrity sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw== - dependencies: - randombytes "^2.0.5" - safe-buffer "^5.1.0" - -read-only-stream@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/read-only-stream/-/read-only-stream-2.0.0.tgz#2724fd6a8113d73764ac288d4386270c1dbf17f0" - integrity sha512-3ALe0bjBVZtkdWKIcThYpQCLbBMd/+Tbh2CDSrAIDO3UsZ4Xs+tnyjv2MjCOMMgBG+AsUOeuP1cgtY1INISc8w== - dependencies: - readable-stream "^2.0.2" - -readable-stream@3, readable-stream@^3.1.1, readable-stream@^3.4.0, readable-stream@^3.5.0, readable-stream@^3.6.0, readable-stream@^3.6.2: +readable-stream@^3.1.1, readable-stream@^3.4.0: version "3.6.2" resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.2.tgz#56a9b36ea965c00c5a93ef31eb111a0f11056967" integrity sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA== @@ -4465,55 +2318,16 @@ readable-stream@3, readable-stream@^3.1.1, readable-stream@^3.4.0, readable-stre string_decoder "^1.1.1" util-deprecate "^1.0.1" -readable-stream@^2.0.2, readable-stream@^2.2.2, readable-stream@~2.3.6: - version "2.3.8" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.8.tgz#91125e8042bba1b9887f49345f6277027ce8be9b" - integrity sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA== - dependencies: - core-util-is "~1.0.0" - inherits "~2.0.3" - isarray "~1.0.0" - process-nextick-args "~2.0.0" - safe-buffer "~5.1.1" - string_decoder "~1.1.1" - util-deprecate "~1.0.1" - -readdirp@~3.6.0: - version "3.6.0" - resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" - integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== - dependencies: - picomatch "^2.2.1" - reflect-metadata@0.1.13: version "0.1.13" resolved "https://registry.yarnpkg.com/reflect-metadata/-/reflect-metadata-0.1.13.tgz#67ae3ca57c972a2aa1642b10fe363fe32d49dc08" integrity sha512-Ts1Y/anZELhSsjMcU605fU9RE4Oi3p5ORujwbIKXfWa+0Zxs510Qrmrce5/Jowq3cHSZSJqBjypxmHarc+vEWg== -regenerate-unicode-properties@^10.1.0: - version "10.1.1" - resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.1.tgz#6b0e05489d9076b04c436f318d9b067bba459480" - integrity sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q== - dependencies: - regenerate "^1.4.2" - -regenerate@^1.4.2: - version "1.4.2" - resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz#b9346d8827e8f5a32f7ba29637d398b69014848a" - integrity sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A== - regenerator-runtime@^0.14.0: version "0.14.0" resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz#5e19d68eb12d486f797e15a3c6a918f7cec5eb45" integrity sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA== -regenerator-transform@^0.15.2: - version "0.15.2" - resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.15.2.tgz#5bbae58b522098ebdf09bca2f83838929001c7a4" - integrity sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg== - dependencies: - "@babel/runtime" "^7.8.4" - regexp-match-indices@1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/regexp-match-indices/-/regexp-match-indices-1.0.2.tgz#cf20054a6f7d5b3e116a701a7b00f82889d10da6" @@ -4526,25 +2340,6 @@ regexp-tree@^0.1.11: resolved "https://registry.yarnpkg.com/regexp-tree/-/regexp-tree-0.1.27.tgz#2198f0ef54518ffa743fe74d983b56ffd631b6cd" integrity sha512-iETxpjK6YoRWJG5o6hXLwvjYAoW+FEZn9os0PD/b6AP6xQwsa/Y7lCVgIixBbUPMfhu+i2LtdeAqVTgGlQarfA== -regexpu-core@^5.3.1: - version "5.3.2" - resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-5.3.2.tgz#11a2b06884f3527aec3e93dbbf4a3b958a95546b" - integrity sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ== - dependencies: - "@babel/regjsgen" "^0.8.0" - regenerate "^1.4.2" - regenerate-unicode-properties "^10.1.0" - regjsparser "^0.9.1" - unicode-match-property-ecmascript "^2.0.0" - unicode-match-property-value-ecmascript "^2.1.0" - -regjsparser@^0.9.1: - version "0.9.1" - resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.9.1.tgz#272d05aa10c7c1f67095b1ff0addae8442fc5709" - integrity sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ== - dependencies: - jsesc "~0.5.0" - request-progress@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/request-progress/-/request-progress-3.0.0.tgz#4ca754081c7fec63f505e4faa825aa06cd669dbe" @@ -4579,15 +2374,6 @@ resolve-pkg@^2.0.0: dependencies: resolve-from "^5.0.0" -resolve@^1.1.4, resolve@^1.14.2, resolve@^1.17.0, resolve@^1.4.0: - version "1.22.6" - resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.6.tgz#dd209739eca3aef739c626fea1b4f3c506195362" - integrity sha512-njhxM7mV12JfufShqGy3Rz8j11RPdLy4xi15UurGJeoHLfJpVXKdh3ueuOqbYUcDZnffr6X739JBo5LzyahEsw== - dependencies: - is-core-module "^2.13.0" - path-parse "^1.0.7" - supports-preserve-symlinks-flag "^1.0.0" - restore-cursor@^3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-3.1.0.tgz#39f67c54b3a7a58cea5236d95cf0034239631f7e" @@ -4608,14 +2394,6 @@ rimraf@^3.0.0, rimraf@^3.0.2: dependencies: glob "^7.1.3" -ripemd160@^2.0.0, ripemd160@^2.0.1: - version "2.0.2" - resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.2.tgz#a1c1a6f624751577ba5d07914cbc92850585890c" - integrity sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA== - dependencies: - hash-base "^3.0.0" - inherits "^2.0.1" - robots-parser@^3.0.0: version "3.0.1" resolved "https://registry.yarnpkg.com/robots-parser/-/robots-parser-3.0.1.tgz#3d8a3cdfa8ac240cbb062a4bd16fcc0e0fb9ed23" @@ -4628,16 +2406,11 @@ rxjs@^7.0.0, rxjs@^7.5.1: dependencies: tslib "^2.1.0" -safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@^5.2.0, safe-buffer@^5.2.1, safe-buffer@~5.2.0: +safe-buffer@^5.0.1, safe-buffer@^5.1.2, safe-buffer@~5.2.0: version "5.2.1" resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== -safe-buffer@~5.1.0, safe-buffer@~5.1.1: - version "5.1.2" - resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" - integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== - safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0: version "2.1.2" resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" @@ -4648,7 +2421,7 @@ semver@^5.3.0: resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.2.tgz#48d55db737c3287cd4835e17fa13feace1c41ef8" integrity sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g== -semver@^6.0.0, semver@^6.3.1: +semver@^6.0.0: version "6.3.1" resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4" integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== @@ -4667,29 +2440,6 @@ semver@~7.3.5: dependencies: lru-cache "^6.0.0" -sha.js@^2.4.0, sha.js@^2.4.8, sha.js@~2.4.4: - version "2.4.11" - resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.11.tgz#37a5cf0b81ecbc6943de109ba2960d1b26584ae7" - integrity sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ== - dependencies: - inherits "^2.0.1" - safe-buffer "^5.0.1" - -shasum-object@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/shasum-object/-/shasum-object-1.0.0.tgz#0b7b74ff5b66ecf9035475522fa05090ac47e29e" - integrity sha512-Iqo5rp/3xVi6M4YheapzZhhGPVs0yZwHj7wvwQ1B9z8H6zk+FEnI7y3Teq7qwnekfEhu8WmG2z0z4iWZaxLWVg== - dependencies: - fast-safe-stringify "^2.0.7" - -shasum@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/shasum/-/shasum-1.0.2.tgz#e7012310d8f417f4deb5712150e5678b87ae565f" - integrity sha512-UTzHm/+AzKfO9RgPgRpDIuMSNie1ubXRaljjlhFMNGYoG7z+rm9AHLPMf70R7887xboDH9Q+5YQbWKObFHEAtw== - dependencies: - json-stable-stringify "~0.0.0" - sha.js "~2.4.4" - shebang-command@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" @@ -4702,7 +2452,7 @@ 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.4.2, shell-quote@^1.6.1, shell-quote@^1.7.3: +shell-quote@^1.7.3: version "1.8.1" resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.8.1.tgz#6dbf4db75515ad5bac63b4f1894c3a154c766680" integrity sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA== @@ -4721,11 +2471,6 @@ signal-exit@^3.0.2: resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== -simple-concat@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/simple-concat/-/simple-concat-1.0.1.tgz#f46976082ba35c2263f1c8ab5edfe26c41c9552f" - integrity sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q== - slice-ansi@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-3.0.0.tgz#31ddc10930a1b7e0b67b08c96c2f49b77a789787" @@ -4771,11 +2516,6 @@ source-map@^0.7.4: resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.4.tgz#a9bbe705c9d8846f4e08ff6765acf0f1b0898656" integrity sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA== -source-map@~0.5.3: - version "0.5.7" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" - integrity sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ== - source-map@~0.6.1: version "0.6.1" resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" @@ -4815,48 +2555,6 @@ stackframe@^1.3.4: resolved "https://registry.yarnpkg.com/stackframe/-/stackframe-1.3.4.tgz#b881a004c8c149a5e8efef37d51b16e412943310" integrity sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw== -stream-browserify@^2.0.0: - version "2.0.2" - resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.2.tgz#87521d38a44aa7ee91ce1cd2a47df0cb49dd660b" - integrity sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg== - dependencies: - inherits "~2.0.1" - readable-stream "^2.0.2" - -stream-browserify@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-3.0.0.tgz#22b0a2850cdf6503e73085da1fc7b7d0c2122f2f" - integrity sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA== - dependencies: - inherits "~2.0.4" - readable-stream "^3.5.0" - -stream-combiner2@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/stream-combiner2/-/stream-combiner2-1.1.1.tgz#fb4d8a1420ea362764e21ad4780397bebcb41cbe" - integrity sha512-3PnJbYgS56AeWgtKF5jtJRT6uFJe56Z0Hc5Ngg/6sI6rIt8iiMBTa9cvdyFfpMQjaVHr8dusbNeFGIIonxOvKw== - dependencies: - duplexer2 "~0.1.0" - readable-stream "^2.0.2" - -stream-http@^3.0.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-3.2.0.tgz#1872dfcf24cb15752677e40e5c3f9cc1926028b5" - integrity sha512-Oq1bLqisTyK3TSCXpPbT4sdeYNdmyZJv1LxpEm2vu1ZhK89kSE5YXwZc3cWk0MagGaKriBh9mCFbVGtO+vY29A== - dependencies: - builtin-status-codes "^3.0.0" - inherits "^2.0.4" - readable-stream "^3.6.0" - xtend "^4.0.2" - -stream-splicer@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/stream-splicer/-/stream-splicer-2.0.1.tgz#0b13b7ee2b5ac7e0609a7463d83899589a363fcd" - integrity sha512-Xizh4/NPuYSyAXyT7g8IvdJ9HJpxIGL9PjyhtywCZvvP0OPIdqyrr4dMikeuvY8xahpdKEBlBTySe583totajg== - dependencies: - inherits "^2.0.1" - readable-stream "^2.0.2" - streamx@^2.15.0: version "2.15.1" resolved "https://registry.yarnpkg.com/streamx/-/streamx-2.15.1.tgz#396ad286d8bc3eeef8f5cea3f029e81237c024c6" @@ -4881,13 +2579,6 @@ string_decoder@^1.1.1: dependencies: safe-buffer "~5.2.0" -string_decoder@~1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" - integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== - dependencies: - safe-buffer "~5.1.0" - strip-ansi@^6.0.0, strip-ansi@^6.0.1: version "6.0.1" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" @@ -4900,13 +2591,6 @@ strip-final-newline@^2.0.0: resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== -subarg@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/subarg/-/subarg-1.0.0.tgz#f62cf17581e996b48fc965699f54c06ae268b8d2" - integrity sha512-RIrIdRY0X1xojthNcVtgT9sjpOGagEUKpZdgBUi054OEPFo282yg+zE+t1Rj3+RqKq2xStL7uUHhY+AjbC4BXg== - dependencies: - minimist "^1.1.0" - supports-color@^5.3.0: version "5.5.0" resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" @@ -4928,18 +2612,6 @@ supports-color@^8.1.0, supports-color@^8.1.1: dependencies: has-flag "^4.0.0" -supports-preserve-symlinks-flag@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" - integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== - -syntax-error@^1.1.1: - version "1.4.0" - resolved "https://registry.yarnpkg.com/syntax-error/-/syntax-error-1.4.0.tgz#2d9d4ff5c064acb711594a3e3b95054ad51d907c" - integrity sha512-YPPlu67mdnHGTup2A8ff7BC2Pjq0e0Yp/IyTFN03zWO0RcK07uLcbi7C2KpGR2FvWbaB0+bfE27a+sBKebSo7w== - dependencies: - acorn-node "^1.2.0" - tar-fs@3.0.4: version "3.0.4" resolved "https://registry.yarnpkg.com/tar-fs/-/tar-fs-3.0.4.tgz#a21dc60a2d5d9f55e0089ccd78124f1d3771dbbf" @@ -4989,33 +2661,11 @@ throttleit@^1.0.0: resolved "https://registry.yarnpkg.com/throttleit/-/throttleit-1.0.0.tgz#9e785836daf46743145a5984b6268d828528ac6c" integrity sha512-rkTVqu6IjfQ/6+uNuuc3sZek4CEYxTJom3IktzgdSxcZqdARuebbA/f4QmAxMQIxqq9ZLEUkSYqvuk1I6VKq4g== -through2@^2.0.0: - version "2.0.5" - resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd" - integrity sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ== - dependencies: - readable-stream "~2.3.6" - xtend "~4.0.1" - -through2@^4.0.2: - version "4.0.2" - resolved "https://registry.yarnpkg.com/through2/-/through2-4.0.2.tgz#a7ce3ac2a7a8b0b966c80e7c49f0484c3b239764" - integrity sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw== - dependencies: - readable-stream "3" - -"through@>=2.2.7 <3", through@^2.3.8: +through@^2.3.8: version "2.3.8" resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" integrity sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg== -timers-browserify@^1.0.1: - version "1.4.2" - resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-1.4.2.tgz#c9c58b575be8407375cb5e2462dacee74359f41d" - integrity sha512-PIxwAupJZiYU4JmVZYwXp9FKsHMXb5h0ZEFyuXTAn8WLHOlcij+FEcbrvDsom1o5dr1YggEtFbECvGCW2sT53Q== - dependencies: - process "~0.11.0" - tmp@~0.2.1: version "0.2.1" resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.2.1.tgz#8457fc3037dcf4719c251367a1af6500ee1ccf14" @@ -5023,18 +2673,6 @@ tmp@~0.2.1: dependencies: rimraf "^3.0.0" -to-fast-properties@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" - integrity sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog== - -to-regex-range@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" - integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== - dependencies: - is-number "^7.0.0" - tough-cookie@^4.1.3: version "4.1.3" resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-4.1.3.tgz#97b9adb0728b42280aa3d814b6b999b2ff0318bf" @@ -5070,11 +2708,6 @@ tslib@^2.0.1, tslib@^2.1.0: resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.2.tgz#703ac29425e7b37cd6fd456e92404d46d1f3e4ae" integrity sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q== -tty-browserify@0.0.1: - version "0.0.1" - resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.1.tgz#3f05251ee17904dfd0677546670db9651682b811" - integrity sha512-C3TaO7K81YvjCgQH9Q1S3R3P3BtN3RIM8n+OvX4il1K1zgE8ZhI0op7kClgkxtutIE8hQrcrHBXvIheqKUUCxw== - tunnel-agent@^0.6.0: version "0.6.0" resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" @@ -5099,16 +2732,6 @@ typedarray-to-buffer@^3.1.5: dependencies: is-typedarray "^1.0.0" -typedarray@^0.0.6: - version "0.0.6" - resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" - integrity sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA== - -umd@^3.0.0: - version "3.0.3" - resolved "https://registry.yarnpkg.com/umd/-/umd-3.0.3.tgz#aa9fe653c42b9097678489c01000acb69f0b26cf" - integrity sha512-4IcGSufhFshvLNcMCV80UnQVlZ5pMOC8mvNPForqwA4+lzYQuetTESLDQkeLmihq8bRcnpbQa48Wb8Lh16/xow== - unbzip2-stream@1.4.3, unbzip2-stream@^1.3.3: version "1.4.3" resolved "https://registry.yarnpkg.com/unbzip2-stream/-/unbzip2-stream-1.4.3.tgz#b0da04c4371311df771cdc215e87f2130991ace7" @@ -5117,40 +2740,6 @@ unbzip2-stream@1.4.3, unbzip2-stream@^1.3.3: buffer "^5.2.1" through "^2.3.8" -undeclared-identifiers@^1.1.2: - version "1.1.3" - resolved "https://registry.yarnpkg.com/undeclared-identifiers/-/undeclared-identifiers-1.1.3.tgz#9254c1d37bdac0ac2b52de4b6722792d2a91e30f" - integrity sha512-pJOW4nxjlmfwKApE4zvxLScM/njmwj/DiUBv7EabwE4O8kRUy+HIwxQtZLBPll/jx1LJyBcqNfB3/cpv9EZwOw== - dependencies: - acorn-node "^1.3.0" - dash-ast "^1.0.0" - get-assigned-identifiers "^1.2.0" - simple-concat "^1.0.0" - xtend "^4.0.1" - -unicode-canonical-property-names-ecmascript@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz#301acdc525631670d39f6146e0e77ff6bbdebddc" - integrity sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ== - -unicode-match-property-ecmascript@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz#54fd16e0ecb167cf04cf1f756bdcc92eba7976c3" - integrity sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q== - dependencies: - unicode-canonical-property-names-ecmascript "^2.0.0" - unicode-property-aliases-ecmascript "^2.0.0" - -unicode-match-property-value-ecmascript@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz#cb5fffdcd16a05124f5a4b0bf7c3770208acbbe0" - integrity sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA== - -unicode-property-aliases-ecmascript@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz#43d41e3be698bd493ef911077c9b131f827e8ccd" - integrity sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w== - unique-string@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-2.0.0.tgz#39c6451f81afb2749de2b233e3f7c5e8843bd89d" @@ -5178,14 +2767,6 @@ untildify@^4.0.0: resolved "https://registry.yarnpkg.com/untildify/-/untildify-4.0.0.tgz#2bc947b953652487e4600949fb091e3ae8cd919b" integrity sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw== -update-browserslist-db@^1.0.11: - version "1.0.13" - resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz#3c5e4f5c083661bd38ef64b6328c26ed6c8248c4" - integrity sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg== - dependencies: - escalade "^3.1.1" - picocolors "^1.0.0" - url-parse@^1.5.3: version "1.5.10" resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.5.10.tgz#9d3c2f736c1d75dd3bd2be507dcc111f1e2ea9c1" @@ -5194,37 +2775,11 @@ url-parse@^1.5.3: querystringify "^2.1.1" requires-port "^1.0.0" -url@~0.11.0: - version "0.11.3" - resolved "https://registry.yarnpkg.com/url/-/url-0.11.3.tgz#6f495f4b935de40ce4a0a52faee8954244f3d3ad" - integrity sha512-6hxOLGfZASQK/cijlZnZJTq8OXAkt/3YGfQX45vvMYXpZoo8NdWZcY73K108Jf759lS1Bv/8wXnHDTSz17dSRw== - dependencies: - punycode "^1.4.1" - qs "^6.11.2" - -util-deprecate@^1.0.1, util-deprecate@~1.0.1: +util-deprecate@^1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== -util@^0.10.4, util@~0.10.1: - version "0.10.4" - resolved "https://registry.yarnpkg.com/util/-/util-0.10.4.tgz#3aa0125bfe668a4672de58857d3ace27ecb76901" - integrity sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A== - dependencies: - inherits "2.0.3" - -util@~0.12.0: - version "0.12.5" - resolved "https://registry.yarnpkg.com/util/-/util-0.12.5.tgz#5f17a6059b73db61a875668781a1c2b136bd6fbc" - integrity sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA== - dependencies: - inherits "^2.0.3" - is-arguments "^1.0.4" - is-generator-function "^1.0.7" - is-typed-array "^1.1.3" - which-typed-array "^1.1.2" - uuid@9.0.0: version "9.0.0" resolved "https://registry.yarnpkg.com/uuid/-/uuid-9.0.0.tgz#592f550650024a38ceb0c562f2f6aa435761efb5" @@ -5244,24 +2799,6 @@ verror@1.10.0: core-util-is "1.0.2" extsprintf "^1.2.0" -vm-browserify@^1.0.0: - version "1.1.2" - resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-1.1.2.tgz#78641c488b8e6ca91a75f511e7a3b32a86e5dda0" - integrity sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ== - -watchify@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/watchify/-/watchify-4.0.0.tgz#53b002d51e7b0eb640b851bb4de517a689973392" - integrity sha512-2Z04dxwoOeNxa11qzWumBTgSAohTC0+ScuY7XMenPnH+W2lhTcpEOJP4g2EIG/SWeLadPk47x++Yh+8BqPM/lA== - dependencies: - anymatch "^3.1.0" - browserify "^17.0.0" - chokidar "^3.4.0" - defined "^1.0.0" - outpipe "^1.1.0" - through2 "^4.0.2" - xtend "^4.0.2" - webidl-conversions@^3.0.0: version "3.0.1" resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" @@ -5275,17 +2812,6 @@ whatwg-url@^5.0.0: tr46 "~0.0.3" webidl-conversions "^3.0.0" -which-typed-array@^1.1.11, which-typed-array@^1.1.2: - version "1.1.11" - resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.11.tgz#99d691f23c72aab6768680805a271b69761ed61a" - integrity sha512-qe9UWWpkeG5yzZ0tNYxDmd7vo58HDBc39mZ0xWWpolAGADdFOzkfamWLDxkOWcvHQKVmdTyQdLD4NOfjLWTKew== - dependencies: - available-typed-arrays "^1.0.5" - call-bind "^1.0.2" - for-each "^0.3.3" - gopd "^1.0.1" - has-tostringtag "^1.0.0" - which@^2.0.1: version "2.0.2" resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" @@ -5341,21 +2867,11 @@ xdg-basedir@^4.0.0: resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-4.0.0.tgz#4bc8d9984403696225ef83a1573cbbcb4e79db13" integrity sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q== -xtend@^4.0.0, xtend@^4.0.1, xtend@^4.0.2, xtend@~4.0.1: - version "4.0.2" - resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" - integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== - y18n@^5.0.5: version "5.0.8" resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== -yallist@^3.0.2: - version "3.1.1" - resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" - integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== - yallist@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" diff --git a/yarn.lock b/yarn.lock index db382a571..d1296e2f0 100644 --- a/yarn.lock +++ b/yarn.lock @@ -47,6 +47,15 @@ "@aws-sdk/types" "^3.222.0" tslib "^1.11.1" +"@aws-crypto/crc32@5.2.0": + version "5.2.0" + resolved "https://registry.yarnpkg.com/@aws-crypto/crc32/-/crc32-5.2.0.tgz#cfcc22570949c98c6689cfcbd2d693d36cdae2e1" + integrity sha512-nLbCWqQNgUiwwtFsen1AdzAtvuLRsQS8rYgMuxCrdKf9kOssamGLuPwyTY9wyYblNr9+1XM8v6zoDTPPSIeANg== + dependencies: + "@aws-crypto/util" "^5.2.0" + "@aws-sdk/types" "^3.222.0" + tslib "^2.6.2" + "@aws-crypto/crc32c@3.0.0": version "3.0.0" resolved "https://registry.yarnpkg.com/@aws-crypto/crc32c/-/crc32c-3.0.0.tgz#016c92da559ef638a84a245eecb75c3e97cb664f" @@ -56,6 +65,15 @@ "@aws-sdk/types" "^3.222.0" tslib "^1.11.1" +"@aws-crypto/crc32c@5.2.0": + version "5.2.0" + resolved "https://registry.yarnpkg.com/@aws-crypto/crc32c/-/crc32c-5.2.0.tgz#4e34aab7f419307821509a98b9b08e84e0c1917e" + integrity sha512-+iWb8qaHLYKrNvGRbiYRHSdKRWhto5XlZUEBwDjYNf+ly5SVYG6zEoYIdxvf5R3zyeP16w4PLBn3rH1xc74Rag== + dependencies: + "@aws-crypto/util" "^5.2.0" + "@aws-sdk/types" "^3.222.0" + tslib "^2.6.2" + "@aws-crypto/ie11-detection@^3.0.0": version "3.0.0" resolved "https://registry.yarnpkg.com/@aws-crypto/ie11-detection/-/ie11-detection-3.0.0.tgz#640ae66b4ec3395cee6a8e94ebcd9f80c24cd688" @@ -76,6 +94,18 @@ "@aws-sdk/util-utf8-browser" "^3.0.0" tslib "^1.11.1" +"@aws-crypto/sha1-browser@5.2.0": + version "5.2.0" + resolved "https://registry.yarnpkg.com/@aws-crypto/sha1-browser/-/sha1-browser-5.2.0.tgz#b0ee2d2821d3861f017e965ef3b4cb38e3b6a0f4" + integrity sha512-OH6lveCFfcDjX4dbAvCFSYUjJZjDr/3XJ3xHtjn3Oj5b9RjojQo8npoLeA/bNwkOkrSQ0wgrHzXk4tDRxGKJeg== + dependencies: + "@aws-crypto/supports-web-crypto" "^5.2.0" + "@aws-crypto/util" "^5.2.0" + "@aws-sdk/types" "^3.222.0" + "@aws-sdk/util-locate-window" "^3.0.0" + "@smithy/util-utf8" "^2.0.0" + tslib "^2.6.2" + "@aws-crypto/sha256-browser@3.0.0": version "3.0.0" resolved "https://registry.yarnpkg.com/@aws-crypto/sha256-browser/-/sha256-browser-3.0.0.tgz#05f160138ab893f1c6ba5be57cfd108f05827766" @@ -90,6 +120,19 @@ "@aws-sdk/util-utf8-browser" "^3.0.0" tslib "^1.11.1" +"@aws-crypto/sha256-browser@5.2.0": + version "5.2.0" + resolved "https://registry.yarnpkg.com/@aws-crypto/sha256-browser/-/sha256-browser-5.2.0.tgz#153895ef1dba6f9fce38af550e0ef58988eb649e" + integrity sha512-AXfN/lGotSQwu6HNcEsIASo7kWXZ5HYWvfOmSNKDsEqC4OashTp8alTmaz+F7TC2L083SFv5RdB+qU3Vs1kZqw== + dependencies: + "@aws-crypto/sha256-js" "^5.2.0" + "@aws-crypto/supports-web-crypto" "^5.2.0" + "@aws-crypto/util" "^5.2.0" + "@aws-sdk/types" "^3.222.0" + "@aws-sdk/util-locate-window" "^3.0.0" + "@smithy/util-utf8" "^2.0.0" + tslib "^2.6.2" + "@aws-crypto/sha256-js@3.0.0", "@aws-crypto/sha256-js@^3.0.0": version "3.0.0" resolved "https://registry.yarnpkg.com/@aws-crypto/sha256-js/-/sha256-js-3.0.0.tgz#f06b84d550d25521e60d2a0e2a90139341e007c2" @@ -99,6 +142,15 @@ "@aws-sdk/types" "^3.222.0" tslib "^1.11.1" +"@aws-crypto/sha256-js@5.2.0", "@aws-crypto/sha256-js@^5.2.0": + version "5.2.0" + resolved "https://registry.yarnpkg.com/@aws-crypto/sha256-js/-/sha256-js-5.2.0.tgz#c4fdb773fdbed9a664fc1a95724e206cf3860042" + integrity sha512-FFQQyu7edu4ufvIZ+OadFpHHOt+eSTBaYaki44c+akjg7qZg9oOQeLlk77F6tSYqjDAFClrHJk9tMf0HdVyOvA== + dependencies: + "@aws-crypto/util" "^5.2.0" + "@aws-sdk/types" "^3.222.0" + tslib "^2.6.2" + "@aws-crypto/supports-web-crypto@^3.0.0": version "3.0.0" resolved "https://registry.yarnpkg.com/@aws-crypto/supports-web-crypto/-/supports-web-crypto-3.0.0.tgz#5d1bf825afa8072af2717c3e455f35cda0103ec2" @@ -106,6 +158,13 @@ dependencies: tslib "^1.11.1" +"@aws-crypto/supports-web-crypto@^5.2.0": + version "5.2.0" + resolved "https://registry.yarnpkg.com/@aws-crypto/supports-web-crypto/-/supports-web-crypto-5.2.0.tgz#a1e399af29269be08e695109aa15da0a07b5b5fb" + integrity sha512-iAvUotm021kM33eCdNfwIN//F77/IADDSs58i+MDaOqFrVjZo9bAal0NK7HurRuWLLpF1iLX7gbWrjHjeo+YFg== + dependencies: + tslib "^2.6.2" + "@aws-crypto/util@^3.0.0": version "3.0.0" resolved "https://registry.yarnpkg.com/@aws-crypto/util/-/util-3.0.0.tgz#1c7ca90c29293f0883468ad48117937f0fe5bfb0" @@ -115,6 +174,64 @@ "@aws-sdk/util-utf8-browser" "^3.0.0" tslib "^1.11.1" +"@aws-crypto/util@^5.2.0": + version "5.2.0" + resolved "https://registry.yarnpkg.com/@aws-crypto/util/-/util-5.2.0.tgz#71284c9cffe7927ddadac793c14f14886d3876da" + integrity sha512-4RkU9EsI6ZpBve5fseQlGNUWKMa1RLPQ1dnjnQoe07ldfIzcsGb5hC5W0Dm7u423KWzawlrpbjXBrXCEv9zazQ== + dependencies: + "@aws-sdk/types" "^3.222.0" + "@smithy/util-utf8" "^2.0.0" + tslib "^2.6.2" + +"@aws-sdk/client-api-gateway@^3.588.0": + version "3.624.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-api-gateway/-/client-api-gateway-3.624.0.tgz#3d65ddb227b4c8b1a432ed297f1a1be2186ef969" + integrity sha512-9DeJihU48KVVYlymg9/pfgiLNQ4Kiss5Ei2Ph9SUxZwGBw7uKZwHnE8dfBoGGq1KwDo+hEtQSd+/i/K6p/GwYQ== + dependencies: + "@aws-crypto/sha256-browser" "5.2.0" + "@aws-crypto/sha256-js" "5.2.0" + "@aws-sdk/client-sso-oidc" "3.624.0" + "@aws-sdk/client-sts" "3.624.0" + "@aws-sdk/core" "3.624.0" + "@aws-sdk/credential-provider-node" "3.624.0" + "@aws-sdk/middleware-host-header" "3.620.0" + "@aws-sdk/middleware-logger" "3.609.0" + "@aws-sdk/middleware-recursion-detection" "3.620.0" + "@aws-sdk/middleware-sdk-api-gateway" "3.620.0" + "@aws-sdk/middleware-user-agent" "3.620.0" + "@aws-sdk/region-config-resolver" "3.614.0" + "@aws-sdk/types" "3.609.0" + "@aws-sdk/util-endpoints" "3.614.0" + "@aws-sdk/util-user-agent-browser" "3.609.0" + "@aws-sdk/util-user-agent-node" "3.614.0" + "@smithy/config-resolver" "^3.0.5" + "@smithy/core" "^2.3.2" + "@smithy/fetch-http-handler" "^3.2.4" + "@smithy/hash-node" "^3.0.3" + "@smithy/invalid-dependency" "^3.0.3" + "@smithy/middleware-content-length" "^3.0.5" + "@smithy/middleware-endpoint" "^3.1.0" + "@smithy/middleware-retry" "^3.0.14" + "@smithy/middleware-serde" "^3.0.3" + "@smithy/middleware-stack" "^3.0.3" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/node-http-handler" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/smithy-client" "^3.1.12" + "@smithy/types" "^3.3.0" + "@smithy/url-parser" "^3.0.3" + "@smithy/util-base64" "^3.0.0" + "@smithy/util-body-length-browser" "^3.0.0" + "@smithy/util-body-length-node" "^3.0.0" + "@smithy/util-defaults-mode-browser" "^3.0.14" + "@smithy/util-defaults-mode-node" "^3.0.14" + "@smithy/util-endpoints" "^2.0.5" + "@smithy/util-middleware" "^3.0.3" + "@smithy/util-retry" "^3.0.3" + "@smithy/util-stream" "^3.1.3" + "@smithy/util-utf8" "^3.0.0" + tslib "^2.6.2" + "@aws-sdk/client-cloudformation@^3.128.0": version "3.576.0" resolved "https://registry.yarnpkg.com/@aws-sdk/client-cloudformation/-/client-cloudformation-3.576.0.tgz#aac4b796d5998d722cded31a755731b4aec636a4" @@ -261,6 +378,149 @@ tslib "^2.6.2" uuid "^9.0.1" +"@aws-sdk/client-cognito-identity-provider@^3.588.0": + version "3.624.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-cognito-identity-provider/-/client-cognito-identity-provider-3.624.0.tgz#2113f44296454ec1f10f3fcea6fe43a596a7828d" + integrity sha512-AKzSCARzVUqclaXxxRE7UXZAhF+HoJGbAdYvQxj9LJdejuBRCo49LUqmiCTr7pUEPDK/RkDtv3+JLhxqN4z8YA== + dependencies: + "@aws-crypto/sha256-browser" "5.2.0" + "@aws-crypto/sha256-js" "5.2.0" + "@aws-sdk/client-sso-oidc" "3.624.0" + "@aws-sdk/client-sts" "3.624.0" + "@aws-sdk/core" "3.624.0" + "@aws-sdk/credential-provider-node" "3.624.0" + "@aws-sdk/middleware-host-header" "3.620.0" + "@aws-sdk/middleware-logger" "3.609.0" + "@aws-sdk/middleware-recursion-detection" "3.620.0" + "@aws-sdk/middleware-user-agent" "3.620.0" + "@aws-sdk/region-config-resolver" "3.614.0" + "@aws-sdk/types" "3.609.0" + "@aws-sdk/util-endpoints" "3.614.0" + "@aws-sdk/util-user-agent-browser" "3.609.0" + "@aws-sdk/util-user-agent-node" "3.614.0" + "@smithy/config-resolver" "^3.0.5" + "@smithy/core" "^2.3.2" + "@smithy/fetch-http-handler" "^3.2.4" + "@smithy/hash-node" "^3.0.3" + "@smithy/invalid-dependency" "^3.0.3" + "@smithy/middleware-content-length" "^3.0.5" + "@smithy/middleware-endpoint" "^3.1.0" + "@smithy/middleware-retry" "^3.0.14" + "@smithy/middleware-serde" "^3.0.3" + "@smithy/middleware-stack" "^3.0.3" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/node-http-handler" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/smithy-client" "^3.1.12" + "@smithy/types" "^3.3.0" + "@smithy/url-parser" "^3.0.3" + "@smithy/util-base64" "^3.0.0" + "@smithy/util-body-length-browser" "^3.0.0" + "@smithy/util-body-length-node" "^3.0.0" + "@smithy/util-defaults-mode-browser" "^3.0.14" + "@smithy/util-defaults-mode-node" "^3.0.14" + "@smithy/util-endpoints" "^2.0.5" + "@smithy/util-middleware" "^3.0.3" + "@smithy/util-retry" "^3.0.3" + "@smithy/util-utf8" "^3.0.0" + tslib "^2.6.2" + +"@aws-sdk/client-eventbridge@^3.588.0": + version "3.624.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-eventbridge/-/client-eventbridge-3.624.0.tgz#aadd03846b7881e49da6b7c105c8f002669948e8" + integrity sha512-02HxeImNQv+yA+36Y+gn5ZM2v3JhG9gbbtXokv1YoByh9Ot9WG5Xm5Fsj9i6Dno34LneA2HCQqdMws67woXxVg== + dependencies: + "@aws-crypto/sha256-browser" "5.2.0" + "@aws-crypto/sha256-js" "5.2.0" + "@aws-sdk/client-sso-oidc" "3.624.0" + "@aws-sdk/client-sts" "3.624.0" + "@aws-sdk/core" "3.624.0" + "@aws-sdk/credential-provider-node" "3.624.0" + "@aws-sdk/middleware-host-header" "3.620.0" + "@aws-sdk/middleware-logger" "3.609.0" + "@aws-sdk/middleware-recursion-detection" "3.620.0" + "@aws-sdk/middleware-user-agent" "3.620.0" + "@aws-sdk/region-config-resolver" "3.614.0" + "@aws-sdk/signature-v4-multi-region" "3.624.0" + "@aws-sdk/types" "3.609.0" + "@aws-sdk/util-endpoints" "3.614.0" + "@aws-sdk/util-user-agent-browser" "3.609.0" + "@aws-sdk/util-user-agent-node" "3.614.0" + "@smithy/config-resolver" "^3.0.5" + "@smithy/core" "^2.3.2" + "@smithy/fetch-http-handler" "^3.2.4" + "@smithy/hash-node" "^3.0.3" + "@smithy/invalid-dependency" "^3.0.3" + "@smithy/middleware-content-length" "^3.0.5" + "@smithy/middleware-endpoint" "^3.1.0" + "@smithy/middleware-retry" "^3.0.14" + "@smithy/middleware-serde" "^3.0.3" + "@smithy/middleware-stack" "^3.0.3" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/node-http-handler" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/smithy-client" "^3.1.12" + "@smithy/types" "^3.3.0" + "@smithy/url-parser" "^3.0.3" + "@smithy/util-base64" "^3.0.0" + "@smithy/util-body-length-browser" "^3.0.0" + "@smithy/util-body-length-node" "^3.0.0" + "@smithy/util-defaults-mode-browser" "^3.0.14" + "@smithy/util-defaults-mode-node" "^3.0.14" + "@smithy/util-endpoints" "^2.0.5" + "@smithy/util-middleware" "^3.0.3" + "@smithy/util-retry" "^3.0.3" + "@smithy/util-utf8" "^3.0.0" + tslib "^2.6.2" + +"@aws-sdk/client-iam@^3.588.0": + version "3.624.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-iam/-/client-iam-3.624.0.tgz#89c57b70a15c44a007483088d7f6f20844800cb8" + integrity sha512-a3Qy7AIht2nHiZPJ/HiMdyiOLiDN+iKp1R916SEbgFi9MiOyRHFeLCCPQHMf1O8YXfb0hbHr5IFnfZLfUcJaWQ== + dependencies: + "@aws-crypto/sha256-browser" "5.2.0" + "@aws-crypto/sha256-js" "5.2.0" + "@aws-sdk/client-sso-oidc" "3.624.0" + "@aws-sdk/client-sts" "3.624.0" + "@aws-sdk/core" "3.624.0" + "@aws-sdk/credential-provider-node" "3.624.0" + "@aws-sdk/middleware-host-header" "3.620.0" + "@aws-sdk/middleware-logger" "3.609.0" + "@aws-sdk/middleware-recursion-detection" "3.620.0" + "@aws-sdk/middleware-user-agent" "3.620.0" + "@aws-sdk/region-config-resolver" "3.614.0" + "@aws-sdk/types" "3.609.0" + "@aws-sdk/util-endpoints" "3.614.0" + "@aws-sdk/util-user-agent-browser" "3.609.0" + "@aws-sdk/util-user-agent-node" "3.614.0" + "@smithy/config-resolver" "^3.0.5" + "@smithy/core" "^2.3.2" + "@smithy/fetch-http-handler" "^3.2.4" + "@smithy/hash-node" "^3.0.3" + "@smithy/invalid-dependency" "^3.0.3" + "@smithy/middleware-content-length" "^3.0.5" + "@smithy/middleware-endpoint" "^3.1.0" + "@smithy/middleware-retry" "^3.0.14" + "@smithy/middleware-serde" "^3.0.3" + "@smithy/middleware-stack" "^3.0.3" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/node-http-handler" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/smithy-client" "^3.1.12" + "@smithy/types" "^3.3.0" + "@smithy/url-parser" "^3.0.3" + "@smithy/util-base64" "^3.0.0" + "@smithy/util-body-length-browser" "^3.0.0" + "@smithy/util-body-length-node" "^3.0.0" + "@smithy/util-defaults-mode-browser" "^3.0.14" + "@smithy/util-defaults-mode-node" "^3.0.14" + "@smithy/util-endpoints" "^2.0.5" + "@smithy/util-middleware" "^3.0.3" + "@smithy/util-retry" "^3.0.3" + "@smithy/util-utf8" "^3.0.0" + "@smithy/util-waiter" "^3.1.2" + tslib "^2.6.2" + "@aws-sdk/client-lambda@^3.509.0": version "3.569.0" resolved "https://registry.yarnpkg.com/@aws-sdk/client-lambda/-/client-lambda-3.569.0.tgz#b95b6c5186c87ce53b3de2607faebdad1031eddc" @@ -313,6 +573,58 @@ "@smithy/util-waiter" "^2.2.0" tslib "^2.6.2" +"@aws-sdk/client-lambda@^3.588.0": + version "3.624.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-lambda/-/client-lambda-3.624.0.tgz#9d674bc061ba9ca5057426ae6940f5fbb1f73c6b" + integrity sha512-bfhFeg6LoC6AFM68+Gyogq9UpyW83Jwkwobo9CtxSTfaNIOYdKgTOdYtn4pM/bRYrWon4CstJQymIsPbY7ra5Q== + dependencies: + "@aws-crypto/sha256-browser" "5.2.0" + "@aws-crypto/sha256-js" "5.2.0" + "@aws-sdk/client-sso-oidc" "3.624.0" + "@aws-sdk/client-sts" "3.624.0" + "@aws-sdk/core" "3.624.0" + "@aws-sdk/credential-provider-node" "3.624.0" + "@aws-sdk/middleware-host-header" "3.620.0" + "@aws-sdk/middleware-logger" "3.609.0" + "@aws-sdk/middleware-recursion-detection" "3.620.0" + "@aws-sdk/middleware-user-agent" "3.620.0" + "@aws-sdk/region-config-resolver" "3.614.0" + "@aws-sdk/types" "3.609.0" + "@aws-sdk/util-endpoints" "3.614.0" + "@aws-sdk/util-user-agent-browser" "3.609.0" + "@aws-sdk/util-user-agent-node" "3.614.0" + "@smithy/config-resolver" "^3.0.5" + "@smithy/core" "^2.3.2" + "@smithy/eventstream-serde-browser" "^3.0.5" + "@smithy/eventstream-serde-config-resolver" "^3.0.3" + "@smithy/eventstream-serde-node" "^3.0.4" + "@smithy/fetch-http-handler" "^3.2.4" + "@smithy/hash-node" "^3.0.3" + "@smithy/invalid-dependency" "^3.0.3" + "@smithy/middleware-content-length" "^3.0.5" + "@smithy/middleware-endpoint" "^3.1.0" + "@smithy/middleware-retry" "^3.0.14" + "@smithy/middleware-serde" "^3.0.3" + "@smithy/middleware-stack" "^3.0.3" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/node-http-handler" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/smithy-client" "^3.1.12" + "@smithy/types" "^3.3.0" + "@smithy/url-parser" "^3.0.3" + "@smithy/util-base64" "^3.0.0" + "@smithy/util-body-length-browser" "^3.0.0" + "@smithy/util-body-length-node" "^3.0.0" + "@smithy/util-defaults-mode-browser" "^3.0.14" + "@smithy/util-defaults-mode-node" "^3.0.14" + "@smithy/util-endpoints" "^2.0.5" + "@smithy/util-middleware" "^3.0.3" + "@smithy/util-retry" "^3.0.3" + "@smithy/util-stream" "^3.1.3" + "@smithy/util-utf8" "^3.0.0" + "@smithy/util-waiter" "^3.1.2" + tslib "^2.6.2" + "@aws-sdk/client-s3@^3.128.0": version "3.576.0" resolved "https://registry.yarnpkg.com/@aws-sdk/client-s3/-/client-s3-3.576.0.tgz#0e2f8f8fdbf1548ed2bd7d782f8fdf2e90131de1" @@ -441,6 +753,70 @@ "@smithy/util-waiter" "^2.2.0" tslib "^2.6.2" +"@aws-sdk/client-s3@^3.588.0": + version "3.624.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-s3/-/client-s3-3.624.0.tgz#4114c3cb4bf820e0aa480d3783c3cd2ae2575737" + integrity sha512-A18tgTKC4ZTAwV8i3pkyAL1XDLgH7WGS5hZA/0FOntI5l+icztGZFF8CdeYWEAFnZA7SfHK6vmtEbIQDOzTTAA== + dependencies: + "@aws-crypto/sha1-browser" "5.2.0" + "@aws-crypto/sha256-browser" "5.2.0" + "@aws-crypto/sha256-js" "5.2.0" + "@aws-sdk/client-sso-oidc" "3.624.0" + "@aws-sdk/client-sts" "3.624.0" + "@aws-sdk/core" "3.624.0" + "@aws-sdk/credential-provider-node" "3.624.0" + "@aws-sdk/middleware-bucket-endpoint" "3.620.0" + "@aws-sdk/middleware-expect-continue" "3.620.0" + "@aws-sdk/middleware-flexible-checksums" "3.620.0" + "@aws-sdk/middleware-host-header" "3.620.0" + "@aws-sdk/middleware-location-constraint" "3.609.0" + "@aws-sdk/middleware-logger" "3.609.0" + "@aws-sdk/middleware-recursion-detection" "3.620.0" + "@aws-sdk/middleware-sdk-s3" "3.624.0" + "@aws-sdk/middleware-ssec" "3.609.0" + "@aws-sdk/middleware-user-agent" "3.620.0" + "@aws-sdk/region-config-resolver" "3.614.0" + "@aws-sdk/signature-v4-multi-region" "3.624.0" + "@aws-sdk/types" "3.609.0" + "@aws-sdk/util-endpoints" "3.614.0" + "@aws-sdk/util-user-agent-browser" "3.609.0" + "@aws-sdk/util-user-agent-node" "3.614.0" + "@aws-sdk/xml-builder" "3.609.0" + "@smithy/config-resolver" "^3.0.5" + "@smithy/core" "^2.3.2" + "@smithy/eventstream-serde-browser" "^3.0.5" + "@smithy/eventstream-serde-config-resolver" "^3.0.3" + "@smithy/eventstream-serde-node" "^3.0.4" + "@smithy/fetch-http-handler" "^3.2.4" + "@smithy/hash-blob-browser" "^3.1.2" + "@smithy/hash-node" "^3.0.3" + "@smithy/hash-stream-node" "^3.1.2" + "@smithy/invalid-dependency" "^3.0.3" + "@smithy/md5-js" "^3.0.3" + "@smithy/middleware-content-length" "^3.0.5" + "@smithy/middleware-endpoint" "^3.1.0" + "@smithy/middleware-retry" "^3.0.14" + "@smithy/middleware-serde" "^3.0.3" + "@smithy/middleware-stack" "^3.0.3" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/node-http-handler" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/smithy-client" "^3.1.12" + "@smithy/types" "^3.3.0" + "@smithy/url-parser" "^3.0.3" + "@smithy/util-base64" "^3.0.0" + "@smithy/util-body-length-browser" "^3.0.0" + "@smithy/util-body-length-node" "^3.0.0" + "@smithy/util-defaults-mode-browser" "^3.0.14" + "@smithy/util-defaults-mode-node" "^3.0.14" + "@smithy/util-endpoints" "^2.0.5" + "@smithy/util-middleware" "^3.0.3" + "@smithy/util-retry" "^3.0.3" + "@smithy/util-stream" "^3.1.3" + "@smithy/util-utf8" "^3.0.0" + "@smithy/util-waiter" "^3.1.2" + tslib "^2.6.2" + "@aws-sdk/client-sso-oidc@3.554.0": version "3.554.0" resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.554.0.tgz#c4002879c89cf5e4a45f39c63b2963f8fab88385" @@ -624,6 +1000,51 @@ "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" +"@aws-sdk/client-sso-oidc@3.624.0": + version "3.624.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.624.0.tgz#33d0927519de333387ee07cb7f6483b0bd4db2f2" + integrity sha512-Ki2uKYJKKtfHxxZsiMTOvJoVRP6b2pZ1u3rcUb2m/nVgBPUfLdl8ZkGpqE29I+t5/QaS/sEdbn6cgMUZwl+3Dg== + dependencies: + "@aws-crypto/sha256-browser" "5.2.0" + "@aws-crypto/sha256-js" "5.2.0" + "@aws-sdk/core" "3.624.0" + "@aws-sdk/credential-provider-node" "3.624.0" + "@aws-sdk/middleware-host-header" "3.620.0" + "@aws-sdk/middleware-logger" "3.609.0" + "@aws-sdk/middleware-recursion-detection" "3.620.0" + "@aws-sdk/middleware-user-agent" "3.620.0" + "@aws-sdk/region-config-resolver" "3.614.0" + "@aws-sdk/types" "3.609.0" + "@aws-sdk/util-endpoints" "3.614.0" + "@aws-sdk/util-user-agent-browser" "3.609.0" + "@aws-sdk/util-user-agent-node" "3.614.0" + "@smithy/config-resolver" "^3.0.5" + "@smithy/core" "^2.3.2" + "@smithy/fetch-http-handler" "^3.2.4" + "@smithy/hash-node" "^3.0.3" + "@smithy/invalid-dependency" "^3.0.3" + "@smithy/middleware-content-length" "^3.0.5" + "@smithy/middleware-endpoint" "^3.1.0" + "@smithy/middleware-retry" "^3.0.14" + "@smithy/middleware-serde" "^3.0.3" + "@smithy/middleware-stack" "^3.0.3" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/node-http-handler" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/smithy-client" "^3.1.12" + "@smithy/types" "^3.3.0" + "@smithy/url-parser" "^3.0.3" + "@smithy/util-base64" "^3.0.0" + "@smithy/util-body-length-browser" "^3.0.0" + "@smithy/util-body-length-node" "^3.0.0" + "@smithy/util-defaults-mode-browser" "^3.0.14" + "@smithy/util-defaults-mode-node" "^3.0.14" + "@smithy/util-endpoints" "^2.0.5" + "@smithy/util-middleware" "^3.0.3" + "@smithy/util-retry" "^3.0.3" + "@smithy/util-utf8" "^3.0.0" + tslib "^2.6.2" + "@aws-sdk/client-sso@3.554.0": version "3.554.0" resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso/-/client-sso-3.554.0.tgz#fef7b7ee47cad3987b50e9218ec1d11dcd42e32b" @@ -800,6 +1221,50 @@ "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" +"@aws-sdk/client-sso@3.624.0": + version "3.624.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso/-/client-sso-3.624.0.tgz#5d6bd308c1a6bb876c0bffc369c31a4916271219" + integrity sha512-EX6EF+rJzMPC5dcdsu40xSi2To7GSvdGQNIpe97pD9WvZwM9tRNQnNM4T6HA4gjV1L6Jwk8rBlG/CnveXtLEMw== + dependencies: + "@aws-crypto/sha256-browser" "5.2.0" + "@aws-crypto/sha256-js" "5.2.0" + "@aws-sdk/core" "3.624.0" + "@aws-sdk/middleware-host-header" "3.620.0" + "@aws-sdk/middleware-logger" "3.609.0" + "@aws-sdk/middleware-recursion-detection" "3.620.0" + "@aws-sdk/middleware-user-agent" "3.620.0" + "@aws-sdk/region-config-resolver" "3.614.0" + "@aws-sdk/types" "3.609.0" + "@aws-sdk/util-endpoints" "3.614.0" + "@aws-sdk/util-user-agent-browser" "3.609.0" + "@aws-sdk/util-user-agent-node" "3.614.0" + "@smithy/config-resolver" "^3.0.5" + "@smithy/core" "^2.3.2" + "@smithy/fetch-http-handler" "^3.2.4" + "@smithy/hash-node" "^3.0.3" + "@smithy/invalid-dependency" "^3.0.3" + "@smithy/middleware-content-length" "^3.0.5" + "@smithy/middleware-endpoint" "^3.1.0" + "@smithy/middleware-retry" "^3.0.14" + "@smithy/middleware-serde" "^3.0.3" + "@smithy/middleware-stack" "^3.0.3" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/node-http-handler" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/smithy-client" "^3.1.12" + "@smithy/types" "^3.3.0" + "@smithy/url-parser" "^3.0.3" + "@smithy/util-base64" "^3.0.0" + "@smithy/util-body-length-browser" "^3.0.0" + "@smithy/util-body-length-node" "^3.0.0" + "@smithy/util-defaults-mode-browser" "^3.0.14" + "@smithy/util-defaults-mode-node" "^3.0.14" + "@smithy/util-endpoints" "^2.0.5" + "@smithy/util-middleware" "^3.0.3" + "@smithy/util-retry" "^3.0.3" + "@smithy/util-utf8" "^3.0.0" + tslib "^2.6.2" + "@aws-sdk/client-sts@3.554.0", "@aws-sdk/client-sts@^3.410.0": version "3.554.0" resolved "https://registry.yarnpkg.com/@aws-sdk/client-sts/-/client-sts-3.554.0.tgz#511f1bafe628613f1824274f9c11a9df31ac0b09" @@ -982,6 +1447,52 @@ "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" +"@aws-sdk/client-sts@3.624.0": + version "3.624.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-sts/-/client-sts-3.624.0.tgz#ee19e08835a04d173f4997285e26558ac431d938" + integrity sha512-k36fLZCb2nfoV/DKK3jbRgO/Yf7/R80pgYfMiotkGjnZwDmRvNN08z4l06L9C+CieazzkgRxNUzyppsYcYsQaw== + dependencies: + "@aws-crypto/sha256-browser" "5.2.0" + "@aws-crypto/sha256-js" "5.2.0" + "@aws-sdk/client-sso-oidc" "3.624.0" + "@aws-sdk/core" "3.624.0" + "@aws-sdk/credential-provider-node" "3.624.0" + "@aws-sdk/middleware-host-header" "3.620.0" + "@aws-sdk/middleware-logger" "3.609.0" + "@aws-sdk/middleware-recursion-detection" "3.620.0" + "@aws-sdk/middleware-user-agent" "3.620.0" + "@aws-sdk/region-config-resolver" "3.614.0" + "@aws-sdk/types" "3.609.0" + "@aws-sdk/util-endpoints" "3.614.0" + "@aws-sdk/util-user-agent-browser" "3.609.0" + "@aws-sdk/util-user-agent-node" "3.614.0" + "@smithy/config-resolver" "^3.0.5" + "@smithy/core" "^2.3.2" + "@smithy/fetch-http-handler" "^3.2.4" + "@smithy/hash-node" "^3.0.3" + "@smithy/invalid-dependency" "^3.0.3" + "@smithy/middleware-content-length" "^3.0.5" + "@smithy/middleware-endpoint" "^3.1.0" + "@smithy/middleware-retry" "^3.0.14" + "@smithy/middleware-serde" "^3.0.3" + "@smithy/middleware-stack" "^3.0.3" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/node-http-handler" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/smithy-client" "^3.1.12" + "@smithy/types" "^3.3.0" + "@smithy/url-parser" "^3.0.3" + "@smithy/util-base64" "^3.0.0" + "@smithy/util-body-length-browser" "^3.0.0" + "@smithy/util-body-length-node" "^3.0.0" + "@smithy/util-defaults-mode-browser" "^3.0.14" + "@smithy/util-defaults-mode-node" "^3.0.14" + "@smithy/util-endpoints" "^2.0.5" + "@smithy/util-middleware" "^3.0.3" + "@smithy/util-retry" "^3.0.3" + "@smithy/util-utf8" "^3.0.0" + tslib "^2.6.2" + "@aws-sdk/core@3.554.0": version "3.554.0" resolved "https://registry.yarnpkg.com/@aws-sdk/core/-/core-3.554.0.tgz#84def70777ace823efb54451da403bfc125a8571" @@ -1034,6 +1545,21 @@ fast-xml-parser "4.2.5" tslib "^2.6.2" +"@aws-sdk/core@3.624.0": + version "3.624.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/core/-/core-3.624.0.tgz#ff0d7745bd662f53d99dbb7293416a45ddde5aa6" + integrity sha512-WyFmPbhRIvtWi7hBp8uSFy+iPpj8ccNV/eX86hwF4irMjfc/FtsGVIAeBXxXM/vGCjkdfEzOnl+tJ2XACD4OXg== + dependencies: + "@smithy/core" "^2.3.2" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/signature-v4" "^4.1.0" + "@smithy/smithy-client" "^3.1.12" + "@smithy/types" "^3.3.0" + "@smithy/util-middleware" "^3.0.3" + fast-xml-parser "4.4.1" + tslib "^2.6.2" + "@aws-sdk/credential-provider-env@3.535.0": version "3.535.0" resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-env/-/credential-provider-env-3.535.0.tgz#26248e263a8107953d5496cb3760d4e7c877abcf" @@ -1064,6 +1590,16 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" +"@aws-sdk/credential-provider-env@3.620.1": + version "3.620.1" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-env/-/credential-provider-env-3.620.1.tgz#d4692c49a65ebc11dae3f7f8b053fee9268a953c" + integrity sha512-ExuILJ2qLW5ZO+rgkNRj0xiAipKT16Rk77buvPP8csR7kkCflT/gXTyzRe/uzIiETTxM7tr8xuO9MP/DQXqkfg== + dependencies: + "@aws-sdk/types" "3.609.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + "@aws-sdk/credential-provider-http@3.552.0": version "3.552.0" resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-http/-/credential-provider-http-3.552.0.tgz#ecc88d02cba95621887e6b85b2583e756ad29eb6" @@ -1109,6 +1645,21 @@ "@smithy/util-stream" "^3.0.0" tslib "^2.6.2" +"@aws-sdk/credential-provider-http@3.622.0": + version "3.622.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-http/-/credential-provider-http-3.622.0.tgz#db481fdef859849d07dd5870894f45df2debab3d" + integrity sha512-VUHbr24Oll1RK3WR8XLUugLpgK9ZuxEm/NVeVqyFts1Ck9gsKpRg1x4eH7L7tW3SJ4TDEQNMbD7/7J+eoL2svg== + dependencies: + "@aws-sdk/types" "3.609.0" + "@smithy/fetch-http-handler" "^3.2.4" + "@smithy/node-http-handler" "^3.1.4" + "@smithy/property-provider" "^3.1.3" + "@smithy/protocol-http" "^4.1.0" + "@smithy/smithy-client" "^3.1.12" + "@smithy/types" "^3.3.0" + "@smithy/util-stream" "^3.1.3" + tslib "^2.6.2" + "@aws-sdk/credential-provider-imds@^3.81.0": version "3.374.0" resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-imds/-/credential-provider-imds-3.374.0.tgz#19f1d6625b2b91114f3d5c2a479b86a4114620a6" @@ -1182,6 +1733,23 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" +"@aws-sdk/credential-provider-ini@3.624.0": + version "3.624.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.624.0.tgz#af4b485e9ceeca97e1681b2402c50dc192c1dc06" + integrity sha512-mMoNIy7MO2WTBbdqMyLpbt6SZpthE6e0GkRYpsd0yozPt0RZopcBhEh+HG1U9Y1PVODo+jcMk353vAi61CfnhQ== + dependencies: + "@aws-sdk/credential-provider-env" "3.620.1" + "@aws-sdk/credential-provider-http" "3.622.0" + "@aws-sdk/credential-provider-process" "3.620.1" + "@aws-sdk/credential-provider-sso" "3.624.0" + "@aws-sdk/credential-provider-web-identity" "3.621.0" + "@aws-sdk/types" "3.609.0" + "@smithy/credential-provider-imds" "^3.2.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/shared-ini-file-loader" "^3.1.4" + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + "@aws-sdk/credential-provider-node@3.554.0": version "3.554.0" resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-node/-/credential-provider-node-3.554.0.tgz#74e8ae0b69cfba716e57881ace9d6466deedfb5e" @@ -1254,6 +1822,24 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" +"@aws-sdk/credential-provider-node@3.624.0": + version "3.624.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-node/-/credential-provider-node-3.624.0.tgz#d7ebe191194eb09764b313c1f4e259cb42795079" + integrity sha512-vYyGK7oNpd81BdbH5IlmQ6zfaQqU+rPwsKTDDBeLRjshtrGXOEpfoahVpG9PX0ibu32IOWp4ZyXBNyVrnvcMOw== + dependencies: + "@aws-sdk/credential-provider-env" "3.620.1" + "@aws-sdk/credential-provider-http" "3.622.0" + "@aws-sdk/credential-provider-ini" "3.624.0" + "@aws-sdk/credential-provider-process" "3.620.1" + "@aws-sdk/credential-provider-sso" "3.624.0" + "@aws-sdk/credential-provider-web-identity" "3.621.0" + "@aws-sdk/types" "3.609.0" + "@smithy/credential-provider-imds" "^3.2.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/shared-ini-file-loader" "^3.1.4" + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + "@aws-sdk/credential-provider-process@3.535.0": version "3.535.0" resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-process/-/credential-provider-process-3.535.0.tgz#ea1e8a38a32e36bbdc3f75eb03352e6eafa0c659" @@ -1298,6 +1884,17 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" +"@aws-sdk/credential-provider-process@3.620.1": + version "3.620.1" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-process/-/credential-provider-process-3.620.1.tgz#10387cf85400420bb4bbda9cc56937dcc6d6d0ee" + integrity sha512-hWqFMidqLAkaV9G460+1at6qa9vySbjQKKc04p59OT7lZ5cO5VH5S4aI05e+m4j364MBROjjk2ugNvfNf/8ILg== + dependencies: + "@aws-sdk/types" "3.609.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/shared-ini-file-loader" "^3.1.4" + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + "@aws-sdk/credential-provider-sso@3.554.0": version "3.554.0" resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.554.0.tgz#83e950685aaadb18d48d51c39f6201d820a5de41" @@ -1350,6 +1947,19 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" +"@aws-sdk/credential-provider-sso@3.624.0": + version "3.624.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.624.0.tgz#4a617577d04b23f80e86e1f76cc15dc3e9895c21" + integrity sha512-A02bayIjU9APEPKr3HudrFHEx0WfghoSPsPopckDkW7VBqO4wizzcxr75Q9A3vNX+cwg0wCN6UitTNe6pVlRaQ== + dependencies: + "@aws-sdk/client-sso" "3.624.0" + "@aws-sdk/token-providers" "3.614.0" + "@aws-sdk/types" "3.609.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/shared-ini-file-loader" "^3.1.4" + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + "@aws-sdk/credential-provider-web-identity@3.554.0": version "3.554.0" resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.554.0.tgz#6076a32066b633a18fc90cae7ed0b874db78a556" @@ -1381,6 +1991,16 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" +"@aws-sdk/credential-provider-web-identity@3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.621.0.tgz#b25878c0a05dad60cd5f91e7e5a31a145c2f14be" + integrity sha512-w7ASSyfNvcx7+bYGep3VBgC3K6vEdLmlpjT7nSIHxxQf+WSdvy+HynwJosrpZax0sK5q0D1Jpn/5q+r5lwwW6w== + dependencies: + "@aws-sdk/types" "3.609.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + "@aws-sdk/middleware-bucket-endpoint@3.568.0": version "3.568.0" resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-bucket-endpoint/-/middleware-bucket-endpoint-3.568.0.tgz#790c0943cc097d3a83665131bc9e0743598cc6ca" @@ -1407,6 +2027,19 @@ "@smithy/util-config-provider" "^3.0.0" tslib "^2.6.2" +"@aws-sdk/middleware-bucket-endpoint@3.620.0": + version "3.620.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-bucket-endpoint/-/middleware-bucket-endpoint-3.620.0.tgz#c5dc0e98b6209a91479cad6c2c74fbc5a3429fab" + integrity sha512-eGLL0W6L3HDb3OACyetZYOWpHJ+gLo0TehQKeQyy2G8vTYXqNTeqYhuI6up9HVjBzU9eQiULVQETmgQs7TFaRg== + dependencies: + "@aws-sdk/types" "3.609.0" + "@aws-sdk/util-arn-parser" "3.568.0" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/types" "^3.3.0" + "@smithy/util-config-provider" "^3.0.0" + tslib "^2.6.2" + "@aws-sdk/middleware-expect-continue@3.572.0": version "3.572.0" resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-expect-continue/-/middleware-expect-continue-3.572.0.tgz#91df3b88a0a109450db84577609ed19520dfff38" @@ -1427,6 +2060,16 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" +"@aws-sdk/middleware-expect-continue@3.620.0": + version "3.620.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-expect-continue/-/middleware-expect-continue-3.620.0.tgz#6a362c0f0696dc6749108a33de9998e0fa6b50ec" + integrity sha512-QXeRFMLfyQ31nAHLbiTLtk0oHzG9QLMaof5jIfqcUwnOkO8YnQdeqzakrg1Alpy/VQ7aqzIi8qypkBe2KXZz0A== + dependencies: + "@aws-sdk/types" "3.609.0" + "@smithy/protocol-http" "^4.1.0" + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + "@aws-sdk/middleware-flexible-checksums@3.572.0": version "3.572.0" resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-flexible-checksums/-/middleware-flexible-checksums-3.572.0.tgz#639ee54f838a5382a69f07351cd783488b6ad89b" @@ -1455,6 +2098,20 @@ "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" +"@aws-sdk/middleware-flexible-checksums@3.620.0": + version "3.620.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-flexible-checksums/-/middleware-flexible-checksums-3.620.0.tgz#42cd48cdc0ad9639545be000bf537969210ce8c5" + integrity sha512-ftz+NW7qka2sVuwnnO1IzBku5ccP+s5qZGeRTPgrKB7OzRW85gthvIo1vQR2w+OwHFk7WJbbhhWwbCbktnP4UA== + dependencies: + "@aws-crypto/crc32" "5.2.0" + "@aws-crypto/crc32c" "5.2.0" + "@aws-sdk/types" "3.609.0" + "@smithy/is-array-buffer" "^3.0.0" + "@smithy/protocol-http" "^4.1.0" + "@smithy/types" "^3.3.0" + "@smithy/util-utf8" "^3.0.0" + tslib "^2.6.2" + "@aws-sdk/middleware-host-header@3.535.0": version "3.535.0" resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-host-header/-/middleware-host-header-3.535.0.tgz#d5264f813592f5e77df25e5a14bbb0e6441812db" @@ -1485,6 +2142,16 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" +"@aws-sdk/middleware-host-header@3.620.0": + version "3.620.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-host-header/-/middleware-host-header-3.620.0.tgz#b561d419a08a984ba364c193376b482ff5224d74" + integrity sha512-VMtPEZwqYrII/oUkffYsNWY9PZ9xpNJpMgmyU0rlDQ25O1c0Hk3fJmZRe6pEkAJ0omD7kLrqGl1DUjQVxpd/Rg== + dependencies: + "@aws-sdk/types" "3.609.0" + "@smithy/protocol-http" "^4.1.0" + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + "@aws-sdk/middleware-location-constraint@3.567.0": version "3.567.0" resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-location-constraint/-/middleware-location-constraint-3.567.0.tgz#c469e745a3fa146dd29d0024a9f4d2a498985822" @@ -1503,6 +2170,15 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" +"@aws-sdk/middleware-location-constraint@3.609.0": + version "3.609.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-location-constraint/-/middleware-location-constraint-3.609.0.tgz#7ed82d71e5ddcd50683ef2bbde10d1cc2492057e" + integrity sha512-xzsdoTkszGVqGVPjUmgoP7TORiByLueMHieI1fhQL888WPdqctwAx3ES6d/bA9Q/i8jnc6hs+Fjhy8UvBTkE9A== + dependencies: + "@aws-sdk/types" "3.609.0" + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + "@aws-sdk/middleware-logger@3.535.0": version "3.535.0" resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-logger/-/middleware-logger-3.535.0.tgz#1a8ffd6c368edd6cb32e1edf7b1dced95c1820ee" @@ -1530,6 +2206,15 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" +"@aws-sdk/middleware-logger@3.609.0": + version "3.609.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-logger/-/middleware-logger-3.609.0.tgz#ed44d201f091b8bac908cbf14724c7a4d492553f" + integrity sha512-S62U2dy4jMDhDFDK5gZ4VxFdWzCtLzwbYyFZx2uvPYTECkepLUfzLic2BHg2Qvtu4QjX+oGE3P/7fwaGIsGNuQ== + dependencies: + "@aws-sdk/types" "3.609.0" + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + "@aws-sdk/middleware-recursion-detection@3.535.0": version "3.535.0" resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.535.0.tgz#6aa1e1bd1e84730d58a73021b745e20d4341a92d" @@ -1560,6 +2245,26 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" +"@aws-sdk/middleware-recursion-detection@3.620.0": + version "3.620.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.620.0.tgz#f8270dfff843fd756be971e5673f89c6a24c6513" + integrity sha512-nh91S7aGK3e/o1ck64sA/CyoFw+gAYj2BDOnoNa6ouyCrVJED96ZXWbhye/fz9SgmNUZR2g7GdVpiLpMKZoI5w== + dependencies: + "@aws-sdk/types" "3.609.0" + "@smithy/protocol-http" "^4.1.0" + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + +"@aws-sdk/middleware-sdk-api-gateway@3.620.0": + version "3.620.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-sdk-api-gateway/-/middleware-sdk-api-gateway-3.620.0.tgz#479e839455bcfa22952a1080d5598061a1f1f0e3" + integrity sha512-JH8JzZb5CTry5Xit51jwyES8cqihaUWJVS3pcr5L73g8qLDUnvfg2IJJJ7pXs0hVAaCNjDs4L97DW3ity76CUA== + dependencies: + "@aws-sdk/types" "3.609.0" + "@smithy/protocol-http" "^4.1.0" + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + "@aws-sdk/middleware-sdk-s3@3.572.0": version "3.572.0" resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-sdk-s3/-/middleware-sdk-s3-3.572.0.tgz#62534ecbfc55d91fcb768b97bb14f73577c3b00e" @@ -1590,6 +2295,26 @@ "@smithy/util-config-provider" "^3.0.0" tslib "^2.6.2" +"@aws-sdk/middleware-sdk-s3@3.624.0": + version "3.624.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-sdk-s3/-/middleware-sdk-s3-3.624.0.tgz#770cbc3f91b99ed70de6f7b9552917de99ee7e78" + integrity sha512-HUiaZ6+JXcG0qQda10ZxDGJvbT71YUp1zX+oikIsfTUeq0N75O82OY3Noqd7cyjEVtsGSo/y0e6U3aV1hO+wPw== + dependencies: + "@aws-sdk/core" "3.624.0" + "@aws-sdk/types" "3.609.0" + "@aws-sdk/util-arn-parser" "3.568.0" + "@smithy/core" "^2.3.2" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/signature-v4" "^4.1.0" + "@smithy/smithy-client" "^3.1.12" + "@smithy/types" "^3.3.0" + "@smithy/util-config-provider" "^3.0.0" + "@smithy/util-middleware" "^3.0.3" + "@smithy/util-stream" "^3.1.3" + "@smithy/util-utf8" "^3.0.0" + tslib "^2.6.2" + "@aws-sdk/middleware-signing@3.572.0": version "3.572.0" resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-signing/-/middleware-signing-3.572.0.tgz#d3c648e3a280774115003d7ea07860f80f79a19d" @@ -1634,6 +2359,15 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" +"@aws-sdk/middleware-ssec@3.609.0": + version "3.609.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-ssec/-/middleware-ssec-3.609.0.tgz#b87a8bc6133f3f6bdc6801183d0f9dad3f93cf9f" + integrity sha512-GZSD1s7+JswWOTamVap79QiDaIV7byJFssBW68GYjyRS5EBjNfwA/8s+6uE6g39R3ojyTbYOmvcANoZEhSULXg== + dependencies: + "@aws-sdk/types" "3.609.0" + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + "@aws-sdk/middleware-user-agent@3.540.0": version "3.540.0" resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.540.0.tgz#4981c64c1eeb6b5c453bce02d060b8c71d44994d" @@ -1678,6 +2412,17 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" +"@aws-sdk/middleware-user-agent@3.620.0": + version "3.620.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.620.0.tgz#1fe3104f04f576a942cf0469bfbd73c38eef3d9e" + integrity sha512-bvS6etn+KsuL32ubY5D3xNof1qkenpbJXf/ugGXbg0n98DvDFQ/F+SMLxHgbnER5dsKYchNnhmtI6/FC3HFu/A== + dependencies: + "@aws-sdk/types" "3.609.0" + "@aws-sdk/util-endpoints" "3.614.0" + "@smithy/protocol-http" "^4.1.0" + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + "@aws-sdk/property-provider@^3.78.0": version "3.374.0" resolved "https://registry.yarnpkg.com/@aws-sdk/property-provider/-/property-provider-3.374.0.tgz#ba302bfd9cdd4751efdb50ef60e7ee3cbd09c62a" @@ -1734,6 +2479,18 @@ "@smithy/util-middleware" "^3.0.0" tslib "^2.6.2" +"@aws-sdk/region-config-resolver@3.614.0": + version "3.614.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/region-config-resolver/-/region-config-resolver-3.614.0.tgz#9cebb31a5bcfea2a41891fff7f28d0164cde179a" + integrity sha512-vDCeMXvic/LU0KFIUjpC3RiSTIkkvESsEfbVHiHH0YINfl8HnEqR5rj+L8+phsCeVg2+LmYwYxd5NRz4PHxt5g== + dependencies: + "@aws-sdk/types" "3.609.0" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/types" "^3.3.0" + "@smithy/util-config-provider" "^3.0.0" + "@smithy/util-middleware" "^3.0.3" + tslib "^2.6.2" + "@aws-sdk/shared-ini-file-loader@^3.80.0": version "3.374.0" resolved "https://registry.yarnpkg.com/@aws-sdk/shared-ini-file-loader/-/shared-ini-file-loader-3.374.0.tgz#dc992051b59169a33cf1acef2d268b7c8e3470f5" @@ -1766,6 +2523,18 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" +"@aws-sdk/signature-v4-multi-region@3.624.0": + version "3.624.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/signature-v4-multi-region/-/signature-v4-multi-region-3.624.0.tgz#86829acc07871758a592dd50812ca4d370f641ed" + integrity sha512-gu1SfCyUPnq4s0AI1xdAl0whHwhkTyltg4QZWc4vnZvEVudCpJVVxEcroUHYQIO51YyVUT9jSMS1SVRe5VqPEw== + dependencies: + "@aws-sdk/middleware-sdk-s3" "3.624.0" + "@aws-sdk/types" "3.609.0" + "@smithy/protocol-http" "^4.1.0" + "@smithy/signature-v4" "^4.1.0" + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + "@aws-sdk/token-providers@3.554.0": version "3.554.0" resolved "https://registry.yarnpkg.com/@aws-sdk/token-providers/-/token-providers-3.554.0.tgz#5a20ce273451654a1382f772ef119a9a156f537c" @@ -1811,6 +2580,17 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" +"@aws-sdk/token-providers@3.614.0": + version "3.614.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/token-providers/-/token-providers-3.614.0.tgz#88da04f6d4ce916b0b0f6e045676d04201fb47fd" + integrity sha512-okItqyY6L9IHdxqs+Z116y5/nda7rHxLvROxtAJdLavWTYDydxrZstImNgGWTeVdmc0xX2gJCI77UYUTQWnhRw== + dependencies: + "@aws-sdk/types" "3.609.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/shared-ini-file-loader" "^3.1.4" + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + "@aws-sdk/types@3.535.0", "@aws-sdk/types@^3.222.0": version "3.535.0" resolved "https://registry.yarnpkg.com/@aws-sdk/types/-/types-3.535.0.tgz#5e6479f31299dd9df170e63f4d10fe739008cf04" @@ -1835,6 +2615,14 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" +"@aws-sdk/types@3.609.0": + version "3.609.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/types/-/types-3.609.0.tgz#06b39d799c9f197a7b43670243e8e78a3bf7d6a5" + integrity sha512-+Tqnh9w0h2LcrUsdXyT1F8mNhXz+tVYBtP19LpeEGntmvHwa2XzvLUCWpoIAIVsHp5+HdB2X9Sn0KAtmbFXc2Q== + dependencies: + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + "@aws-sdk/util-arn-parser@3.568.0": version "3.568.0" resolved "https://registry.yarnpkg.com/@aws-sdk/util-arn-parser/-/util-arn-parser-3.568.0.tgz#6a19a8c6bbaa520b6be1c278b2b8c17875b91527" @@ -1882,6 +2670,16 @@ "@smithy/util-endpoints" "^2.0.0" tslib "^2.6.2" +"@aws-sdk/util-endpoints@3.614.0": + version "3.614.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-endpoints/-/util-endpoints-3.614.0.tgz#6564b0ffd7dc3728221e9f9821f5aab1cc58468e" + integrity sha512-wK2cdrXHH4oz4IomV/yrGkftU9A+ITB6nFL+rxxyO78is2ifHJpFdV4aqk4LSkXYPi6CXWNru/Dqc7yiKXgJPw== + dependencies: + "@aws-sdk/types" "3.609.0" + "@smithy/types" "^3.3.0" + "@smithy/util-endpoints" "^2.0.5" + tslib "^2.6.2" + "@aws-sdk/util-locate-window@^3.0.0": version "3.535.0" resolved "https://registry.yarnpkg.com/@aws-sdk/util-locate-window/-/util-locate-window-3.535.0.tgz#0200a336fddd47dd6567ce15d01f62be50a315d7" @@ -1919,6 +2717,16 @@ bowser "^2.11.0" tslib "^2.6.2" +"@aws-sdk/util-user-agent-browser@3.609.0": + version "3.609.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.609.0.tgz#aa15421b2e32ae8bc589dac2bd6e8969832ce588" + integrity sha512-fojPU+mNahzQ0YHYBsx0ZIhmMA96H+ZIZ665ObU9tl+SGdbLneVZVikGve+NmHTQwHzwkFsZYYnVKAkreJLAtA== + dependencies: + "@aws-sdk/types" "3.609.0" + "@smithy/types" "^3.3.0" + bowser "^2.11.0" + tslib "^2.6.2" + "@aws-sdk/util-user-agent-node@3.535.0": version "3.535.0" resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.535.0.tgz#f5c26fb6f3f561d3cf35f96f303b1775afad0a5b" @@ -1949,6 +2757,16 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" +"@aws-sdk/util-user-agent-node@3.614.0": + version "3.614.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.614.0.tgz#1e3f49a80f841a3f21647baed2adce01aac5beb5" + integrity sha512-15ElZT88peoHnq5TEoEtZwoXTXRxNrk60TZNdpl/TUBJ5oNJ9Dqb5Z4ryb8ofN6nm9aFf59GVAerFDz8iUoHBA== + dependencies: + "@aws-sdk/types" "3.609.0" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + "@aws-sdk/util-utf8-browser@^3.0.0": version "3.259.0" resolved "https://registry.yarnpkg.com/@aws-sdk/util-utf8-browser/-/util-utf8-browser-3.259.0.tgz#3275a6f5eb334f96ca76635b961d3c50259fd9ff" @@ -1972,6 +2790,14 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" +"@aws-sdk/xml-builder@3.609.0": + version "3.609.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/xml-builder/-/xml-builder-3.609.0.tgz#eeb3d5cde000a23cfeeefe0354b6193440dc7d87" + integrity sha512-l9XxNcA4HX98rwCC2/KoiWcmEiRfZe4G+mYwDbCFT87JIMj6GBhLDkAzr/W8KAaA2IDr8Vc6J8fZPgVulxxfMA== + dependencies: + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + "@babel/code-frame@7.12.11": version "7.12.11" resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.12.11.tgz#f4ad435aa263db935b8f10f2c552d23fb716a63f" @@ -3880,6 +4706,14 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" +"@smithy/abort-controller@^3.1.1": + version "3.1.1" + resolved "https://registry.yarnpkg.com/@smithy/abort-controller/-/abort-controller-3.1.1.tgz#291210611ff6afecfc198d0ca72d5771d8461d16" + integrity sha512-MBJBiidoe+0cTFhyxT8g+9g7CeVccLM0IOKKUMCNQ1CNMJ/eIfoo0RTfVrXOONEI1UCN1W+zkiHSbzUNE9dZtQ== + dependencies: + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + "@smithy/chunked-blob-reader-native@^2.2.0": version "2.2.0" resolved "https://registry.yarnpkg.com/@smithy/chunked-blob-reader-native/-/chunked-blob-reader-native-2.2.0.tgz#aff8bddf9fdc1052f885e1b15aa81e4d274e541e" @@ -3932,6 +4766,17 @@ "@smithy/util-middleware" "^3.0.0" tslib "^2.6.2" +"@smithy/config-resolver@^3.0.5": + version "3.0.5" + resolved "https://registry.yarnpkg.com/@smithy/config-resolver/-/config-resolver-3.0.5.tgz#727978bba7ace754c741c259486a19d3083431fd" + integrity sha512-SkW5LxfkSI1bUC74OtfBbdz+grQXYiPYolyu8VfpLIjEoN/sHVBlLeGXMQ1vX4ejkgfv6sxVbQJ32yF2cl1veA== + dependencies: + "@smithy/node-config-provider" "^3.1.4" + "@smithy/types" "^3.3.0" + "@smithy/util-config-provider" "^3.0.0" + "@smithy/util-middleware" "^3.0.3" + tslib "^2.6.2" + "@smithy/core@^1.4.2": version "1.4.2" resolved "https://registry.yarnpkg.com/@smithy/core/-/core-1.4.2.tgz#1c3ed886d403041ce5bd2d816448420c57baa19c" @@ -3960,6 +4805,20 @@ "@smithy/util-middleware" "^3.0.0" tslib "^2.6.2" +"@smithy/core@^2.3.2": + version "2.3.2" + resolved "https://registry.yarnpkg.com/@smithy/core/-/core-2.3.2.tgz#4a1e3da41d2a3a494cbc6bd1fc6eeb26b2e27184" + integrity sha512-in5wwt6chDBcUv1Lw1+QzZxN9fBffi+qOixfb65yK4sDuKG7zAUO9HAFqmVzsZM3N+3tTyvZjtnDXePpvp007Q== + dependencies: + "@smithy/middleware-endpoint" "^3.1.0" + "@smithy/middleware-retry" "^3.0.14" + "@smithy/middleware-serde" "^3.0.3" + "@smithy/protocol-http" "^4.1.0" + "@smithy/smithy-client" "^3.1.12" + "@smithy/types" "^3.3.0" + "@smithy/util-middleware" "^3.0.3" + tslib "^2.6.2" + "@smithy/credential-provider-imds@^1.0.1": version "1.1.0" resolved "https://registry.yarnpkg.com/@smithy/credential-provider-imds/-/credential-provider-imds-1.1.0.tgz#4d9444c4c8de70143c3f16bdba188b0e42cb48f9" @@ -3993,6 +4852,17 @@ "@smithy/url-parser" "^3.0.0" tslib "^2.6.2" +"@smithy/credential-provider-imds@^3.2.0": + version "3.2.0" + resolved "https://registry.yarnpkg.com/@smithy/credential-provider-imds/-/credential-provider-imds-3.2.0.tgz#0e0e7ddaff1a8633cb927aee1056c0ab506b7ecf" + integrity sha512-0SCIzgd8LYZ9EJxUjLXBmEKSZR/P/w6l7Rz/pab9culE/RWuqelAKGJvn5qUOl8BgX8Yj5HWM50A5hiB/RzsgA== + dependencies: + "@smithy/node-config-provider" "^3.1.4" + "@smithy/property-provider" "^3.1.3" + "@smithy/types" "^3.3.0" + "@smithy/url-parser" "^3.0.3" + tslib "^2.6.2" + "@smithy/eventstream-codec@^2.2.0": version "2.2.0" resolved "https://registry.yarnpkg.com/@smithy/eventstream-codec/-/eventstream-codec-2.2.0.tgz#63d74fa817188995eb55e792a38060b0ede98dc4" @@ -4013,6 +4883,16 @@ "@smithy/util-hex-encoding" "^3.0.0" tslib "^2.6.2" +"@smithy/eventstream-codec@^3.1.2": + version "3.1.2" + resolved "https://registry.yarnpkg.com/@smithy/eventstream-codec/-/eventstream-codec-3.1.2.tgz#4a1c72b34400631b829241151984a1ad8c4f963c" + integrity sha512-0mBcu49JWt4MXhrhRAlxASNy0IjDRFU+aWNDRal9OtUJvJNiwDuyKMUONSOjLjSCeGwZaE0wOErdqULer8r7yw== + dependencies: + "@aws-crypto/crc32" "5.2.0" + "@smithy/types" "^3.3.0" + "@smithy/util-hex-encoding" "^3.0.0" + tslib "^2.6.2" + "@smithy/eventstream-serde-browser@^2.2.0": version "2.2.0" resolved "https://registry.yarnpkg.com/@smithy/eventstream-serde-browser/-/eventstream-serde-browser-2.2.0.tgz#69c93cc0210f04caeb0770856ef88c9a82564e11" @@ -4031,6 +4911,15 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" +"@smithy/eventstream-serde-browser@^3.0.5": + version "3.0.5" + resolved "https://registry.yarnpkg.com/@smithy/eventstream-serde-browser/-/eventstream-serde-browser-3.0.5.tgz#3e971afd2b8a02a098af8decc4b9e3f35296d6a2" + integrity sha512-dEyiUYL/ekDfk+2Ra4GxV+xNnFoCmk1nuIXg+fMChFTrM2uI/1r9AdiTYzPqgb72yIv/NtAj6C3dG//1wwgakQ== + dependencies: + "@smithy/eventstream-serde-universal" "^3.0.4" + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + "@smithy/eventstream-serde-config-resolver@^2.2.0": version "2.2.0" resolved "https://registry.yarnpkg.com/@smithy/eventstream-serde-config-resolver/-/eventstream-serde-config-resolver-2.2.0.tgz#23c8698ce594a128bcc556153efb7fecf6d04f87" @@ -4047,6 +4936,14 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" +"@smithy/eventstream-serde-config-resolver@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/eventstream-serde-config-resolver/-/eventstream-serde-config-resolver-3.0.3.tgz#f852e096d0ad112363b4685e1d441088d1fce67a" + integrity sha512-NVTYjOuYpGfrN/VbRQgn31x73KDLfCXCsFdad8DiIc3IcdxL+dYA9zEQPyOP7Fy2QL8CPy2WE4WCUD+ZsLNfaQ== + dependencies: + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + "@smithy/eventstream-serde-node@^2.2.0": version "2.2.0" resolved "https://registry.yarnpkg.com/@smithy/eventstream-serde-node/-/eventstream-serde-node-2.2.0.tgz#b82870a838b1bd32ad6e0cf33a520191a325508e" @@ -4065,6 +4962,15 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" +"@smithy/eventstream-serde-node@^3.0.4": + version "3.0.4" + resolved "https://registry.yarnpkg.com/@smithy/eventstream-serde-node/-/eventstream-serde-node-3.0.4.tgz#6301752ca51b3ebabcd2dec112f1dacd990de4c1" + integrity sha512-mjlG0OzGAYuUpdUpflfb9zyLrBGgmQmrobNT8b42ZTsGv/J03+t24uhhtVEKG/b2jFtPIHF74Bq+VUtbzEKOKg== + dependencies: + "@smithy/eventstream-serde-universal" "^3.0.4" + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + "@smithy/eventstream-serde-universal@^2.2.0": version "2.2.0" resolved "https://registry.yarnpkg.com/@smithy/eventstream-serde-universal/-/eventstream-serde-universal-2.2.0.tgz#a75e330040d5e2ca2ac0d8bccde3e390ac5afd38" @@ -4083,6 +4989,15 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" +"@smithy/eventstream-serde-universal@^3.0.4": + version "3.0.4" + resolved "https://registry.yarnpkg.com/@smithy/eventstream-serde-universal/-/eventstream-serde-universal-3.0.4.tgz#6754de5b94bdc286d8ef1d6bcf22d80f6ab68f30" + integrity sha512-Od9dv8zh3PgOD7Vj4T3HSuox16n0VG8jJIM2gvKASL6aCtcS8CfHZDWe1Ik3ZXW6xBouU+45Q5wgoliWDZiJ0A== + dependencies: + "@smithy/eventstream-codec" "^3.1.2" + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + "@smithy/fetch-http-handler@^2.5.0": version "2.5.0" resolved "https://registry.yarnpkg.com/@smithy/fetch-http-handler/-/fetch-http-handler-2.5.0.tgz#0b8e1562807fdf91fe7dd5cde620d7a03ddc10ac" @@ -4105,6 +5020,17 @@ "@smithy/util-base64" "^3.0.0" tslib "^2.6.2" +"@smithy/fetch-http-handler@^3.2.4": + version "3.2.4" + resolved "https://registry.yarnpkg.com/@smithy/fetch-http-handler/-/fetch-http-handler-3.2.4.tgz#c754de7e0ff2541b73ac9ba7cc955940114b3d62" + integrity sha512-kBprh5Gs5h7ug4nBWZi1FZthdqSM+T7zMmsZxx0IBvWUn7dK3diz2SHn7Bs4dQGFDk8plDv375gzenDoNwrXjg== + dependencies: + "@smithy/protocol-http" "^4.1.0" + "@smithy/querystring-builder" "^3.0.3" + "@smithy/types" "^3.3.0" + "@smithy/util-base64" "^3.0.0" + tslib "^2.6.2" + "@smithy/hash-blob-browser@^2.2.0": version "2.2.0" resolved "https://registry.yarnpkg.com/@smithy/hash-blob-browser/-/hash-blob-browser-2.2.0.tgz#d26db0e88b8fc4b59ee487bd026363ea9b48cf3a" @@ -4125,6 +5051,16 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" +"@smithy/hash-blob-browser@^3.1.2": + version "3.1.2" + resolved "https://registry.yarnpkg.com/@smithy/hash-blob-browser/-/hash-blob-browser-3.1.2.tgz#90281c1f183d93686fb4f26107f1819644d68829" + integrity sha512-hAbfqN2UbISltakCC2TP0kx4LqXBttEv2MqSPE98gVuDFMf05lU+TpC41QtqGP3Ff5A3GwZMPfKnEy0VmEUpmg== + dependencies: + "@smithy/chunked-blob-reader" "^3.0.0" + "@smithy/chunked-blob-reader-native" "^3.0.0" + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + "@smithy/hash-node@^2.2.0": version "2.2.0" resolved "https://registry.yarnpkg.com/@smithy/hash-node/-/hash-node-2.2.0.tgz#df29e1e64811be905cb3577703b0e2d0b07fc5cc" @@ -4145,6 +5081,16 @@ "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" +"@smithy/hash-node@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/hash-node/-/hash-node-3.0.3.tgz#82c5cb7b0f1a29ee7319081853d2d158c07dff24" + integrity sha512-2ctBXpPMG+B3BtWSGNnKELJ7SH9e4TNefJS0cd2eSkOOROeBnnVBnAy9LtJ8tY4vUEoe55N4CNPxzbWvR39iBw== + dependencies: + "@smithy/types" "^3.3.0" + "@smithy/util-buffer-from" "^3.0.0" + "@smithy/util-utf8" "^3.0.0" + tslib "^2.6.2" + "@smithy/hash-stream-node@^2.2.0": version "2.2.0" resolved "https://registry.yarnpkg.com/@smithy/hash-stream-node/-/hash-stream-node-2.2.0.tgz#7b341fdc89851af6b98d8c01e47185caf0a4b2d9" @@ -4163,6 +5109,15 @@ "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" +"@smithy/hash-stream-node@^3.1.2": + version "3.1.2" + resolved "https://registry.yarnpkg.com/@smithy/hash-stream-node/-/hash-stream-node-3.1.2.tgz#89f0290ae44b113863878e75b10c484ff48af71c" + integrity sha512-PBgDMeEdDzi6JxKwbfBtwQG9eT9cVwsf0dZzLXoJF4sHKHs5HEo/3lJWpn6jibfJwT34I1EBXpBnZE8AxAft6g== + dependencies: + "@smithy/types" "^3.3.0" + "@smithy/util-utf8" "^3.0.0" + tslib "^2.6.2" + "@smithy/invalid-dependency@^2.2.0": version "2.2.0" resolved "https://registry.yarnpkg.com/@smithy/invalid-dependency/-/invalid-dependency-2.2.0.tgz#ee3d8980022cb5edb514ac187d159b3e773640f0" @@ -4179,6 +5134,14 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" +"@smithy/invalid-dependency@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/invalid-dependency/-/invalid-dependency-3.0.3.tgz#8d9fd70e3a94b565a4eba4ffbdc95238e1930528" + integrity sha512-ID1eL/zpDULmHJbflb864k72/SNOZCADRc9i7Exq3RUNJw6raWUSlFEQ+3PX3EYs++bTxZB2dE9mEHTQLv61tw== + dependencies: + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + "@smithy/is-array-buffer@^2.2.0": version "2.2.0" resolved "https://registry.yarnpkg.com/@smithy/is-array-buffer/-/is-array-buffer-2.2.0.tgz#f84f0d9f9a36601a9ca9381688bd1b726fd39111" @@ -4211,6 +5174,15 @@ "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" +"@smithy/md5-js@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/md5-js/-/md5-js-3.0.3.tgz#55ee40aa24075b096c39f7910590c18ff7660c98" + integrity sha512-O/SAkGVwpWmelpj/8yDtsaVe6sINHLB1q8YE/+ZQbDxIw3SRLbTZuRaI10K12sVoENdnHqzPp5i3/H+BcZ3m3Q== + dependencies: + "@smithy/types" "^3.3.0" + "@smithy/util-utf8" "^3.0.0" + tslib "^2.6.2" + "@smithy/middleware-content-length@^2.2.0": version "2.2.0" resolved "https://registry.yarnpkg.com/@smithy/middleware-content-length/-/middleware-content-length-2.2.0.tgz#a82e97bd83d8deab69e07fea4512563bedb9461a" @@ -4229,6 +5201,15 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" +"@smithy/middleware-content-length@^3.0.5": + version "3.0.5" + resolved "https://registry.yarnpkg.com/@smithy/middleware-content-length/-/middleware-content-length-3.0.5.tgz#1680aa4fb2a1c0505756103c9a5c2916307d9035" + integrity sha512-ILEzC2eyxx6ncej3zZSwMpB5RJ0zuqH7eMptxC4KN3f+v9bqT8ohssKbhNR78k/2tWW+KS5Spw+tbPF4Ejyqvw== + dependencies: + "@smithy/protocol-http" "^4.1.0" + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + "@smithy/middleware-endpoint@^2.5.1": version "2.5.1" resolved "https://registry.yarnpkg.com/@smithy/middleware-endpoint/-/middleware-endpoint-2.5.1.tgz#1333c58304aff4d843e8ef4b85c8cb88975dd5ad" @@ -4255,6 +5236,19 @@ "@smithy/util-middleware" "^3.0.0" tslib "^2.6.2" +"@smithy/middleware-endpoint@^3.1.0": + version "3.1.0" + resolved "https://registry.yarnpkg.com/@smithy/middleware-endpoint/-/middleware-endpoint-3.1.0.tgz#9b8a496d87a68ec43f3f1a0139868d6765a88119" + integrity sha512-5y5aiKCEwg9TDPB4yFE7H6tYvGFf1OJHNczeY10/EFF8Ir8jZbNntQJxMWNfeQjC1mxPsaQ6mR9cvQbf+0YeMw== + dependencies: + "@smithy/middleware-serde" "^3.0.3" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/shared-ini-file-loader" "^3.1.4" + "@smithy/types" "^3.3.0" + "@smithy/url-parser" "^3.0.3" + "@smithy/util-middleware" "^3.0.3" + tslib "^2.6.2" + "@smithy/middleware-retry@^2.3.1": version "2.3.1" resolved "https://registry.yarnpkg.com/@smithy/middleware-retry/-/middleware-retry-2.3.1.tgz#d6fdce94f2f826642c01b4448e97a509c4556ede" @@ -4285,6 +5279,21 @@ tslib "^2.6.2" uuid "^9.0.1" +"@smithy/middleware-retry@^3.0.14": + version "3.0.14" + resolved "https://registry.yarnpkg.com/@smithy/middleware-retry/-/middleware-retry-3.0.14.tgz#739e8bac6e465e0cda26446999db614418e79da3" + integrity sha512-7ZaWZJOjUxa5hgmuMspyt8v/zVsh0GXYuF7OvCmdcbVa/xbnKQoYC+uYKunAqRGTkxjOyuOCw9rmFUFOqqC0eQ== + dependencies: + "@smithy/node-config-provider" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/service-error-classification" "^3.0.3" + "@smithy/smithy-client" "^3.1.12" + "@smithy/types" "^3.3.0" + "@smithy/util-middleware" "^3.0.3" + "@smithy/util-retry" "^3.0.3" + tslib "^2.6.2" + uuid "^9.0.1" + "@smithy/middleware-serde@^2.3.0": version "2.3.0" resolved "https://registry.yarnpkg.com/@smithy/middleware-serde/-/middleware-serde-2.3.0.tgz#a7615ba646a88b6f695f2d55de13d8158181dd13" @@ -4301,6 +5310,14 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" +"@smithy/middleware-serde@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/middleware-serde/-/middleware-serde-3.0.3.tgz#74d974460f74d99f38c861e6862984543a880a66" + integrity sha512-puUbyJQBcg9eSErFXjKNiGILJGtiqmuuNKEYNYfUD57fUl4i9+mfmThtQhvFXU0hCVG0iEJhvQUipUf+/SsFdA== + dependencies: + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + "@smithy/middleware-stack@^2.2.0": version "2.2.0" resolved "https://registry.yarnpkg.com/@smithy/middleware-stack/-/middleware-stack-2.2.0.tgz#3fb49eae6313f16f6f30fdaf28e11a7321f34d9f" @@ -4317,6 +5334,14 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" +"@smithy/middleware-stack@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/middleware-stack/-/middleware-stack-3.0.3.tgz#91845c7e61e6f137fa912b623b6def719a4f6ce7" + integrity sha512-r4klY9nFudB0r9UdSMaGSyjyQK5adUyPnQN/ZM6M75phTxOdnc/AhpvGD1fQUvgmqjQEBGCwpnPbDm8pH5PapA== + dependencies: + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + "@smithy/node-config-provider@^1.1.0": version "1.1.0" resolved "https://registry.yarnpkg.com/@smithy/node-config-provider/-/node-config-provider-1.1.0.tgz#86c64e4ef6a557863422a236ba10aa7ed51ad85d" @@ -4347,6 +5372,16 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" +"@smithy/node-config-provider@^3.1.4": + version "3.1.4" + resolved "https://registry.yarnpkg.com/@smithy/node-config-provider/-/node-config-provider-3.1.4.tgz#05647bed666aa8036a1ad72323c1942e5d421be1" + integrity sha512-YvnElQy8HR4vDcAjoy7Xkx9YT8xZP4cBXcbJSgm/kxmiQu08DwUwj8rkGnyoJTpfl/3xYHH+d8zE+eHqoDCSdQ== + dependencies: + "@smithy/property-provider" "^3.1.3" + "@smithy/shared-ini-file-loader" "^3.1.4" + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + "@smithy/node-http-handler@^2.5.0": version "2.5.0" resolved "https://registry.yarnpkg.com/@smithy/node-http-handler/-/node-http-handler-2.5.0.tgz#7b5e0565dd23d340380489bd5fe4316d2bed32de" @@ -4369,6 +5404,17 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" +"@smithy/node-http-handler@^3.1.4": + version "3.1.4" + resolved "https://registry.yarnpkg.com/@smithy/node-http-handler/-/node-http-handler-3.1.4.tgz#be4195e45639e690d522cd5f11513ea822ff9d5f" + integrity sha512-+UmxgixgOr/yLsUxcEKGH0fMNVteJFGkmRltYFHnBMlogyFdpzn2CwqWmxOrfJELhV34v0WSlaqG1UtE1uXlJg== + dependencies: + "@smithy/abort-controller" "^3.1.1" + "@smithy/protocol-http" "^4.1.0" + "@smithy/querystring-builder" "^3.0.3" + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + "@smithy/property-provider@^1.0.1", "@smithy/property-provider@^1.2.0": version "1.2.0" resolved "https://registry.yarnpkg.com/@smithy/property-provider/-/property-provider-1.2.0.tgz#2e4ca34b0994ec6de734316c0093e671a1bfa5c7" @@ -4393,6 +5439,14 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" +"@smithy/property-provider@^3.1.3": + version "3.1.3" + resolved "https://registry.yarnpkg.com/@smithy/property-provider/-/property-provider-3.1.3.tgz#afd57ea82a3f6c79fbda95e3cb85c0ee0a79f39a" + integrity sha512-zahyOVR9Q4PEoguJ/NrFP4O7SMAfYO1HLhB18M+q+Z4KFd4V2obiMnlVoUFzFLSPeVt1POyNWneHHrZaTMoc/g== + dependencies: + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + "@smithy/protocol-http@^3.3.0": version "3.3.0" resolved "https://registry.yarnpkg.com/@smithy/protocol-http/-/protocol-http-3.3.0.tgz#a37df7b4bb4960cdda560ce49acfd64c455e4090" @@ -4409,6 +5463,14 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" +"@smithy/protocol-http@^4.1.0": + version "4.1.0" + resolved "https://registry.yarnpkg.com/@smithy/protocol-http/-/protocol-http-4.1.0.tgz#23519d8f45bf4f33960ea5415847bc2b620a010b" + integrity sha512-dPVoHYQ2wcHooGXg3LQisa1hH0e4y0pAddPMeeUPipI1tEOqL6A4N0/G7abeq+K8wrwSgjk4C0wnD1XZpJm5aA== + dependencies: + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + "@smithy/querystring-builder@^2.2.0": version "2.2.0" resolved "https://registry.yarnpkg.com/@smithy/querystring-builder/-/querystring-builder-2.2.0.tgz#22937e19fcd0aaa1a3e614ef8cb6f8e86756a4ef" @@ -4427,6 +5489,15 @@ "@smithy/util-uri-escape" "^3.0.0" tslib "^2.6.2" +"@smithy/querystring-builder@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/querystring-builder/-/querystring-builder-3.0.3.tgz#6b0e566f885bb84938d077c69e8f8555f686af13" + integrity sha512-vyWckeUeesFKzCDaRwWLUA1Xym9McaA6XpFfAK5qI9DKJ4M33ooQGqvM4J+LalH4u/Dq9nFiC8U6Qn1qi0+9zw== + dependencies: + "@smithy/types" "^3.3.0" + "@smithy/util-uri-escape" "^3.0.0" + tslib "^2.6.2" + "@smithy/querystring-parser@^1.1.0": version "1.1.0" resolved "https://registry.yarnpkg.com/@smithy/querystring-parser/-/querystring-parser-1.1.0.tgz#4bf4be6d1db8b769d346a0d98c5b0db4e99a8ba6" @@ -4451,6 +5522,14 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" +"@smithy/querystring-parser@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/querystring-parser/-/querystring-parser-3.0.3.tgz#272a6b83f88dfcbbec8283d72a6bde850cc00091" + integrity sha512-zahM1lQv2YjmznnfQsWbYojFe55l0SLG/988brlLv1i8z3dubloLF+75ATRsqPBboUXsW6I9CPGE5rQgLfY0vQ== + dependencies: + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + "@smithy/service-error-classification@^2.1.5": version "2.1.5" resolved "https://registry.yarnpkg.com/@smithy/service-error-classification/-/service-error-classification-2.1.5.tgz#0568a977cc0db36299d8703a5d8609c1f600c005" @@ -4465,6 +5544,13 @@ dependencies: "@smithy/types" "^3.0.0" +"@smithy/service-error-classification@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/service-error-classification/-/service-error-classification-3.0.3.tgz#73484255060a094aa9372f6cd972dcaf97e3ce80" + integrity sha512-Jn39sSl8cim/VlkLsUhRFq/dKDnRUFlfRkvhOJaUbLBXUsLRLNf9WaxDv/z9BjuQ3A6k/qE8af1lsqcwm7+DaQ== + dependencies: + "@smithy/types" "^3.3.0" + "@smithy/shared-ini-file-loader@^1.0.1", "@smithy/shared-ini-file-loader@^1.1.0": version "1.1.0" resolved "https://registry.yarnpkg.com/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-1.1.0.tgz#144a03a303590ef7d465ebcb21ffc2a52efc3389" @@ -4489,6 +5575,14 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" +"@smithy/shared-ini-file-loader@^3.1.4": + version "3.1.4" + resolved "https://registry.yarnpkg.com/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.4.tgz#7dceaf5a5307a2ee347ace8aba17312a1a3ede15" + integrity sha512-qMxS4hBGB8FY2GQqshcRUy1K6k8aBWP5vwm8qKkCT3A9K2dawUwOIJfqh9Yste/Bl0J2lzosVyrXDj68kLcHXQ== + dependencies: + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + "@smithy/signature-v4@^2.2.1", "@smithy/signature-v4@^2.3.0": version "2.3.0" resolved "https://registry.yarnpkg.com/@smithy/signature-v4/-/signature-v4-2.3.0.tgz#c30dd4028ae50c607db99459981cce8cdab7a3fd" @@ -4515,6 +5609,20 @@ "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" +"@smithy/signature-v4@^4.1.0": + version "4.1.0" + resolved "https://registry.yarnpkg.com/@smithy/signature-v4/-/signature-v4-4.1.0.tgz#251ff43dc1f4ad66776122732fea9e56efc56443" + integrity sha512-aRryp2XNZeRcOtuJoxjydO6QTaVhxx/vjaR+gx7ZjaFgrgPRyZ3HCTbfwqYj6ZWEBHkCSUfcaymKPURaByukag== + dependencies: + "@smithy/is-array-buffer" "^3.0.0" + "@smithy/protocol-http" "^4.1.0" + "@smithy/types" "^3.3.0" + "@smithy/util-hex-encoding" "^3.0.0" + "@smithy/util-middleware" "^3.0.3" + "@smithy/util-uri-escape" "^3.0.0" + "@smithy/util-utf8" "^3.0.0" + tslib "^2.6.2" + "@smithy/smithy-client@^2.5.1": version "2.5.1" resolved "https://registry.yarnpkg.com/@smithy/smithy-client/-/smithy-client-2.5.1.tgz#0fd2efff09dc65500d260e590f7541f8a387eae3" @@ -4539,6 +5647,18 @@ "@smithy/util-stream" "^3.0.1" tslib "^2.6.2" +"@smithy/smithy-client@^3.1.12": + version "3.1.12" + resolved "https://registry.yarnpkg.com/@smithy/smithy-client/-/smithy-client-3.1.12.tgz#fb6386816ff8a5c50eab7503d4ee3ba2e4ebac63" + integrity sha512-wtm8JtsycthkHy1YA4zjIh2thJgIQ9vGkoR639DBx5lLlLNU0v4GARpQZkr2WjXue74nZ7MiTSWfVrLkyD8RkA== + dependencies: + "@smithy/middleware-endpoint" "^3.1.0" + "@smithy/middleware-stack" "^3.0.3" + "@smithy/protocol-http" "^4.1.0" + "@smithy/types" "^3.3.0" + "@smithy/util-stream" "^3.1.3" + tslib "^2.6.2" + "@smithy/types@^1.2.0": version "1.2.0" resolved "https://registry.yarnpkg.com/@smithy/types/-/types-1.2.0.tgz#9dc65767b0ee3d6681704fcc67665d6fc9b6a34e" @@ -4560,6 +5680,13 @@ dependencies: tslib "^2.6.2" +"@smithy/types@^3.3.0": + version "3.3.0" + resolved "https://registry.yarnpkg.com/@smithy/types/-/types-3.3.0.tgz#fae037c733d09bc758946a01a3de0ef6e210b16b" + integrity sha512-IxvBBCTFDHbVoK7zIxqA1ZOdc4QfM5HM7rGleCuHi7L1wnKv5Pn69xXJQ9hgxH60ZVygH9/JG0jRgtUncE3QUA== + dependencies: + tslib "^2.6.2" + "@smithy/url-parser@^1.1.0": version "1.1.0" resolved "https://registry.yarnpkg.com/@smithy/url-parser/-/url-parser-1.1.0.tgz#1d88af653b02fda0be59064bfe5420c0b34b4dcb" @@ -4587,6 +5714,15 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" +"@smithy/url-parser@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/url-parser/-/url-parser-3.0.3.tgz#e8a060d9810b24b1870385fc2b02485b8a6c5955" + integrity sha512-pw3VtZtX2rg+s6HMs6/+u9+hu6oY6U7IohGhVNnjbgKy86wcIsSZwgHrFR+t67Uyxvp4Xz3p3kGXXIpTNisq8A== + dependencies: + "@smithy/querystring-parser" "^3.0.3" + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + "@smithy/util-base64@^2.3.0": version "2.3.0" resolved "https://registry.yarnpkg.com/@smithy/util-base64/-/util-base64-2.3.0.tgz#312dbb4d73fb94249c7261aee52de4195c2dd8e2" @@ -4685,6 +5821,17 @@ bowser "^2.11.0" tslib "^2.6.2" +"@smithy/util-defaults-mode-browser@^3.0.14": + version "3.0.14" + resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.14.tgz#21f3ebcb07b9d6ae1274b9d655c38bdac59e5c06" + integrity sha512-0iwTgKKmAIf+vFLV8fji21Jb2px11ktKVxbX6LIDPAUJyWQqGqBVfwba7xwa1f2FZUoolYQgLvxQEpJycXuQ5w== + dependencies: + "@smithy/property-provider" "^3.1.3" + "@smithy/smithy-client" "^3.1.12" + "@smithy/types" "^3.3.0" + bowser "^2.11.0" + tslib "^2.6.2" + "@smithy/util-defaults-mode-node@^2.3.1": version "2.3.1" resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-2.3.1.tgz#4613210a3d107aadb3f85bd80cb71c796dd8bf0a" @@ -4711,6 +5858,19 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" +"@smithy/util-defaults-mode-node@^3.0.14": + version "3.0.14" + resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.14.tgz#6bb9e837282e84bbf5093dbcd120fcd296593f7a" + integrity sha512-e9uQarJKfXApkTMMruIdxHprhcXivH1flYCe8JRDTzkkLx8dA3V5J8GZlST9yfDiRWkJpZJlUXGN9Rc9Ade3OQ== + dependencies: + "@smithy/config-resolver" "^3.0.5" + "@smithy/credential-provider-imds" "^3.2.0" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/property-provider" "^3.1.3" + "@smithy/smithy-client" "^3.1.12" + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + "@smithy/util-endpoints@^1.2.0": version "1.2.0" resolved "https://registry.yarnpkg.com/@smithy/util-endpoints/-/util-endpoints-1.2.0.tgz#b8b805f47e8044c158372f69b88337703117665d" @@ -4729,6 +5889,15 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" +"@smithy/util-endpoints@^2.0.5": + version "2.0.5" + resolved "https://registry.yarnpkg.com/@smithy/util-endpoints/-/util-endpoints-2.0.5.tgz#e3a7a4d1c41250bfd2b2d890d591273a7d8934be" + integrity sha512-ReQP0BWihIE68OAblC/WQmDD40Gx+QY1Ez8mTdFMXpmjfxSyz2fVQu3A4zXRfQU9sZXtewk3GmhfOHswvX+eNg== + dependencies: + "@smithy/node-config-provider" "^3.1.4" + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + "@smithy/util-hex-encoding@^2.2.0": version "2.2.0" resolved "https://registry.yarnpkg.com/@smithy/util-hex-encoding/-/util-hex-encoding-2.2.0.tgz#87edb7c88c2f422cfca4bb21f1394ae9602c5085" @@ -4759,6 +5928,14 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" +"@smithy/util-middleware@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/util-middleware/-/util-middleware-3.0.3.tgz#07bf9602682f5a6c55bc2f0384303f85fc68c87e" + integrity sha512-l+StyYYK/eO3DlVPbU+4Bi06Jjal+PFLSMmlWM1BEwyLxZ3aKkf1ROnoIakfaA7mC6uw3ny7JBkau4Yc+5zfWw== + dependencies: + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + "@smithy/util-retry@^2.2.0": version "2.2.0" resolved "https://registry.yarnpkg.com/@smithy/util-retry/-/util-retry-2.2.0.tgz#e8e019537ab47ba6b2e87e723ec51ee223422d85" @@ -4777,6 +5954,15 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" +"@smithy/util-retry@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/util-retry/-/util-retry-3.0.3.tgz#9b2ac0dbb1c81f69812a8affa4d772bebfc0e049" + integrity sha512-AFw+hjpbtVApzpNDhbjNG5NA3kyoMs7vx0gsgmlJF4s+yz1Zlepde7J58zpIRIsdjc+emhpAITxA88qLkPF26w== + dependencies: + "@smithy/service-error-classification" "^3.0.3" + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + "@smithy/util-stream@^2.2.0": version "2.2.0" resolved "https://registry.yarnpkg.com/@smithy/util-stream/-/util-stream-2.2.0.tgz#b1279e417992a0f74afa78d7501658f174ed7370" @@ -4805,6 +5991,20 @@ "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" +"@smithy/util-stream@^3.1.3": + version "3.1.3" + resolved "https://registry.yarnpkg.com/@smithy/util-stream/-/util-stream-3.1.3.tgz#699ee2397cc1d474e46d2034039d5263812dca64" + integrity sha512-FIv/bRhIlAxC0U7xM1BCnF2aDRPq0UaelqBHkM2lsCp26mcBbgI0tCVTv+jGdsQLUmAMybua/bjDsSu8RQHbmw== + dependencies: + "@smithy/fetch-http-handler" "^3.2.4" + "@smithy/node-http-handler" "^3.1.4" + "@smithy/types" "^3.3.0" + "@smithy/util-base64" "^3.0.0" + "@smithy/util-buffer-from" "^3.0.0" + "@smithy/util-hex-encoding" "^3.0.0" + "@smithy/util-utf8" "^3.0.0" + tslib "^2.6.2" + "@smithy/util-uri-escape@^2.2.0": version "2.2.0" resolved "https://registry.yarnpkg.com/@smithy/util-uri-escape/-/util-uri-escape-2.2.0.tgz#56f5764051a33b67bc93fdd2a869f971b0635406" @@ -4819,7 +6019,7 @@ dependencies: tslib "^2.6.2" -"@smithy/util-utf8@^2.3.0": +"@smithy/util-utf8@^2.0.0", "@smithy/util-utf8@^2.3.0": version "2.3.0" resolved "https://registry.yarnpkg.com/@smithy/util-utf8/-/util-utf8-2.3.0.tgz#dd96d7640363259924a214313c3cf16e7dd329c5" integrity sha512-R8Rdn8Hy72KKcebgLiv8jQcQkXoLMOGGv5uI1/k0l+snqkOzQ1R0ChUBCxWMlBsFMekWjq0wRudIweFs7sKT5A== @@ -4853,6 +6053,15 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" +"@smithy/util-waiter@^3.1.2": + version "3.1.2" + resolved "https://registry.yarnpkg.com/@smithy/util-waiter/-/util-waiter-3.1.2.tgz#2d40c3312f3537feee763459a19acafab4c75cf3" + integrity sha512-4pP0EV3iTsexDx+8PPGAKCQpd/6hsQBaQhqWzU4hqKPHN5epPsxKbvUTIiYIHTxaKt6/kEaqPBpu/ufvfbrRzw== + dependencies: + "@smithy/abort-controller" "^3.1.1" + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + "@stratiformdigital/serverless-stage-destroyer@^2.0.0": version "2.1.1" resolved "https://registry.yarnpkg.com/@stratiformdigital/serverless-stage-destroyer/-/serverless-stage-destroyer-2.1.1.tgz#6c0a5bde84d8e0646aa4ddf9ea0b0b9b099495fb" @@ -7975,6 +9184,13 @@ fast-xml-parser@4.2.5: dependencies: strnum "^1.0.5" +fast-xml-parser@4.4.1: + version "4.4.1" + resolved "https://registry.yarnpkg.com/fast-xml-parser/-/fast-xml-parser-4.4.1.tgz#86dbf3f18edf8739326447bcaac31b4ae7f6514f" + integrity sha512-xkjOecfnKGkSsOwtZ5Pz7Us/T6mrbPQrq0nh+aCO5V9nk5NLWmasAHumTKjiPJPWANe+kAZ84Jc8ooJkzZ88Sw== + dependencies: + strnum "^1.0.5" + fastest-levenshtein@^1.0.16: version "1.0.16" resolved "https://registry.yarnpkg.com/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz#210e61b6ff181de91ea9b3d1b84fdedd47e034e5" @@ -11927,11 +13143,17 @@ serverless-webpack@^5.6.1: optionalDependencies: ts-node ">= 8.3.0" -serverless@^3.38.0: - version "3.38.0" - resolved "https://registry.yarnpkg.com/serverless/-/serverless-3.38.0.tgz#9275763cab3ec1cd29635520cf24b9b5e7202583" - integrity sha512-NJE1vOn8XmQEqfU9UxmVhkUFaCRmx6FhYw/jITN863WlOt4Y3PQbj3hwQyIb5QS1ZrXFq5ojklwewUXH7xGpdA== - dependencies: +serverless@^3.39.0: + version "3.39.0" + resolved "https://registry.yarnpkg.com/serverless/-/serverless-3.39.0.tgz#699fbea4d0b0ba0baba0510be743f9d025ac363d" + integrity sha512-FHI3fhe4TRS8+ez/KA7HmO3lt3fAynO+N1pCCzYRThMWG0J8RWCI0BI+K0mw9+sEV+QpBCpZRZbuGyUaTsaQew== + dependencies: + "@aws-sdk/client-api-gateway" "^3.588.0" + "@aws-sdk/client-cognito-identity-provider" "^3.588.0" + "@aws-sdk/client-eventbridge" "^3.588.0" + "@aws-sdk/client-iam" "^3.588.0" + "@aws-sdk/client-lambda" "^3.588.0" + "@aws-sdk/client-s3" "^3.588.0" "@serverless/dashboard-plugin" "^7.2.0" "@serverless/platform-client" "^4.5.1" "@serverless/utils" "^6.13.1"