diff --git a/.github/actions/build-vars/action.yml b/.github/actions/build-vars/action.yml index 663d29f06dd..07a7fe0bf3e 100644 --- a/.github/actions/build-vars/action.yml +++ b/.github/actions/build-vars/action.yml @@ -103,8 +103,8 @@ runs: - name: Set Build Environment - STAGING id: build_staging if: | - (github.event_name != 'pull_request' && github.ref_name == 'master') || - (github.event_name == 'pull_request' && github.base_ref == 'master') + (github.event_name != 'pull_request' && github.ref_name == 'main') || + (github.event_name == 'pull_request' && github.base_ref == 'main') shell: bash run: | echo "env_name=staging" >> $GITHUB_OUTPUT diff --git a/.github/actions/demo-env/action.yml b/.github/actions/demo-env/action.yml index 3ef5847af33..fb0a4e9ecc0 100644 --- a/.github/actions/demo-env/action.yml +++ b/.github/actions/demo-env/action.yml @@ -174,7 +174,7 @@ runs: with: owner: CDCgov repo: prime-reportstream - ref: master + ref: main github_token: ${{ inputs.github-token }} workflow_file_name: restore_databases.yml wait_interval: 120 diff --git a/.github/changelog_config.json b/.github/changelog_config.json index 7d9a2ad4266..b9a84bf1d4e 100644 --- a/.github/changelog_config.json +++ b/.github/changelog_config.json @@ -113,6 +113,6 @@ } }, "base_branches": [ - "master" + "main" ] } diff --git a/.github/scripts/alert_stale_branches/stale_branch_check.sh b/.github/scripts/alert_stale_branches/stale_branch_check.sh index e38d7cb2853..3479151e7e5 100755 --- a/.github/scripts/alert_stale_branches/stale_branch_check.sh +++ b/.github/scripts/alert_stale_branches/stale_branch_check.sh @@ -23,7 +23,7 @@ get_branches () { count=0 for k in $branches do - if [[ "$k" != *"HEAD"* ]] && [[ "$k" != *"->"* ]] && [[ "$k" != *"master"* ]] + if [[ "$k" != *"HEAD"* ]] && [[ "$k" != *"->"* ]] && [[ "$k" != *"main"* ]] then if [ -z "$(git log -1 --since='6 months ago' -s $k)" ] then diff --git a/.github/workflows/frontend_chromatic_main.yml b/.github/workflows/frontend_chromatic_main.yml index 7ca6151a5df..3be72354c75 100644 --- a/.github/workflows/frontend_chromatic_main.yml +++ b/.github/workflows/frontend_chromatic_main.yml @@ -2,7 +2,7 @@ name: Chromatic Main Branch on: push: - branches: [master] + branches: [main] paths: - "frontend-react/**" diff --git a/.github/workflows/snyk.yml b/.github/workflows/snyk.yml index 4afb51085c9..fa532920c3d 100644 --- a/.github/workflows/snyk.yml +++ b/.github/workflows/snyk.yml @@ -1,6 +1,6 @@ name: Snyk Java/Kotlin scan -# refresh Snyk console results for Java/Kotlin scans when merging with master +# refresh Snyk console results for Java/Kotlin scans when merging with main on: push: branches: diff --git a/.github/workflows/sonarcloud.yml b/.github/workflows/sonarcloud.yml index 49b2d3d38f4..fa9c8b9f2be 100644 --- a/.github/workflows/sonarcloud.yml +++ b/.github/workflows/sonarcloud.yml @@ -128,7 +128,7 @@ jobs: yarn run test:ci shell: bash - - name: Run SonarCloud Scan master or full + - name: Run SonarCloud Scan main or full if: ( steps.changed-files-yaml.outputs.frontend_any_changed == 'true' && steps.changed-files-yaml.outputs.backend_any_changed == 'true' ) || steps.branch-name.outputs.is_default == 'true' uses: ./.github/actions/sonarcloud with: diff --git a/prime-router/docs/api/admin.yml b/prime-router/docs/api/admin.yml index 8beab84be1e..faad234a950 100644 --- a/prime-router/docs/api/admin.yml +++ b/prime-router/docs/api/admin.yml @@ -252,4 +252,4 @@ components: example: "elr-secondary" securitySchemes: OAuth2: - $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/master/prime-router/docs/api/components/security_schemes.yml#/OAuth2' + $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/main/prime-router/docs/api/components/security_schemes.yml#/OAuth2' diff --git a/prime-router/docs/api/api-keys.yml b/prime-router/docs/api/api-keys.yml index 19719682580..924b8bb28da 100644 --- a/prime-router/docs/api/api-keys.yml +++ b/prime-router/docs/api/api-keys.yml @@ -109,7 +109,7 @@ paths: components: securitySchemes: OAuth2: - $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/master/prime-router/docs/api/components/security_schemes.yml#/OAuth2' + $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/main/prime-router/docs/api/components/security_schemes.yml#/OAuth2' schemas: ApiKeysResponse: description: Fetch or modify API Keys diff --git a/prime-router/docs/api/check.yml b/prime-router/docs/api/check.yml index 570bba3e4cf..44d209159d9 100644 --- a/prime-router/docs/api/check.yml +++ b/prime-router/docs/api/check.yml @@ -53,7 +53,7 @@ paths: components: securitySchemes: OAuth2: - $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/master/prime-router/docs/api/components/security_schemes.yml#/OAuth2' + $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/main/prime-router/docs/api/components/security_schemes.yml#/OAuth2' schemas: CheckReceiverResponse: diff --git a/prime-router/docs/api/covid-result-metadata.yml b/prime-router/docs/api/covid-result-metadata.yml index c971126596f..e081c36033e 100644 --- a/prime-router/docs/api/covid-result-metadata.yml +++ b/prime-router/docs/api/covid-result-metadata.yml @@ -20,4 +20,4 @@ paths: components: securitySchemes: OAuth2: - $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/master/prime-router/docs/api/components/security_schemes.yml#/OAuth2' + $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/main/prime-router/docs/api/components/security_schemes.yml#/OAuth2' diff --git a/prime-router/docs/api/delivery.yml b/prime-router/docs/api/delivery.yml index f6be75c81f7..bfa8c3f190b 100644 --- a/prime-router/docs/api/delivery.yml +++ b/prime-router/docs/api/delivery.yml @@ -100,9 +100,9 @@ paths: components: securitySchemes: OAuth2: - $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/master/prime-router/docs/api/components/security_schemes.yml#/OAuth2' + $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/main/prime-router/docs/api/components/security_schemes.yml#/OAuth2' ApiKeyAuth: - $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/master/prime-router/docs/api/components/security_schemes.yml#/ApiKeyAuth' + $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/main/prime-router/docs/api/components/security_schemes.yml#/ApiKeyAuth' schemas: DeliveryApiSearch: type: object diff --git a/prime-router/docs/api/email-engine.yml b/prime-router/docs/api/email-engine.yml index c9cedc1d101..59c84812731 100644 --- a/prime-router/docs/api/email-engine.yml +++ b/prime-router/docs/api/email-engine.yml @@ -28,4 +28,4 @@ paths: components: securitySchemes: OAuth2: - $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/master/prime-router/docs/api/components/security_schemes.yml#/OAuth2' + $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/main/prime-router/docs/api/components/security_schemes.yml#/OAuth2' diff --git a/prime-router/docs/api/email-sender.yml b/prime-router/docs/api/email-sender.yml index 7e74a53fd3d..35e7b5869b7 100644 --- a/prime-router/docs/api/email-sender.yml +++ b/prime-router/docs/api/email-sender.yml @@ -19,4 +19,4 @@ paths: components: securitySchemes: OAuth2: - $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/master/prime-router/docs/api/components/security_schemes.yml#/OAuth2' + $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/main/prime-router/docs/api/components/security_schemes.yml#/OAuth2' diff --git a/prime-router/docs/api/messages.yml b/prime-router/docs/api/messages.yml index e39570f6299..81ea67ef22d 100644 --- a/prime-router/docs/api/messages.yml +++ b/prime-router/docs/api/messages.yml @@ -203,4 +203,4 @@ components: securitySchemes: OAuth2: - $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/master/prime-router/docs/api/components/security_schemes.yml#/OAuth2' + $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/main/prime-router/docs/api/components/security_schemes.yml#/OAuth2' diff --git a/prime-router/docs/api/reports.yml b/prime-router/docs/api/reports.yml index 3212c7f4e96..364ff5c104b 100644 --- a/prime-router/docs/api/reports.yml +++ b/prime-router/docs/api/reports.yml @@ -282,4 +282,4 @@ components: securitySchemes: ApiKeyAuth: - $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/master/prime-router/docs/api/components/security_schemes.yml#/ApiKeyAuth' + $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/main/prime-router/docs/api/components/security_schemes.yml#/ApiKeyAuth' diff --git a/prime-router/docs/api/requeue.yml b/prime-router/docs/api/requeue.yml index 3f16265e0f2..628e7208364 100644 --- a/prime-router/docs/api/requeue.yml +++ b/prime-router/docs/api/requeue.yml @@ -56,4 +56,4 @@ components: securitySchemes: OAuth2: - $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/master/prime-router/docs/api/components/security_schemes.yml#/OAuth2' + $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/main/prime-router/docs/api/components/security_schemes.yml#/OAuth2' diff --git a/prime-router/docs/api/sender-files.yaml b/prime-router/docs/api/sender-files.yaml index 3de5bc78ac9..e5c2c18e293 100644 --- a/prime-router/docs/api/sender-files.yaml +++ b/prime-router/docs/api/sender-files.yaml @@ -104,4 +104,4 @@ components: securitySchemes: OAuth2: - $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/master/prime-router/docs/api/components/security_schemes.yml#/OAuth2' + $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/main/prime-router/docs/api/components/security_schemes.yml#/OAuth2' diff --git a/prime-router/docs/api/settings.yml b/prime-router/docs/api/settings.yml index 3dba9c8f04e..1906a95d4af 100644 --- a/prime-router/docs/api/settings.yml +++ b/prime-router/docs/api/settings.yml @@ -909,6 +909,6 @@ components: type: string securitySchemes: OAuth2: - $ref: "https://raw.githubusercontent.com/CDCgov/prime-reportstream/master/prime-router/docs/api/components/security_schemes.yml#/OAuth2" + $ref: "https://raw.githubusercontent.com/CDCgov/prime-reportstream/main/prime-router/docs/api/components/security_schemes.yml#/OAuth2" Server2Server: - $ref: "https://raw.githubusercontent.com/CDCgov/prime-reportstream/master/prime-router/docs/api/components/security_schemes.yml#/Server2Server" + $ref: "https://raw.githubusercontent.com/CDCgov/prime-reportstream/main/prime-router/docs/api/components/security_schemes.yml#/Server2Server" diff --git a/prime-router/docs/api/submissions.yml b/prime-router/docs/api/submissions.yml index c4cae6985b5..b0395da1863 100644 --- a/prime-router/docs/api/submissions.yml +++ b/prime-router/docs/api/submissions.yml @@ -223,6 +223,6 @@ components: securitySchemes: OAuth2: - $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/master/prime-router/docs/api/components/security_schemes.yml#/OAuth2' + $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/main/prime-router/docs/api/components/security_schemes.yml#/OAuth2' ApiKeyAuth: - $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/master/prime-router/docs/api/components/security_schemes.yml#/ApiKeyAuth' + $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/main/prime-router/docs/api/components/security_schemes.yml#/ApiKeyAuth' diff --git a/prime-router/docs/api/token.yml b/prime-router/docs/api/token.yml index c9a3e9acf60..002921fc6db 100644 --- a/prime-router/docs/api/token.yml +++ b/prime-router/docs/api/token.yml @@ -31,7 +31,7 @@ paths: description: The value should always be "urn:ietf:params:oauth:client-assertion-type:jwt-bearer" client_assertion: type: string - description: signed JWT from the sender. See https://github.com/CDCgov/prime-reportstream/blob/master/prime-router/docs/playbooks/how-to-use-token-auth.md + description: signed JWT from the sender. See https://github.com/CDCgov/prime-reportstream/blob/main/prime-router/docs/playbooks/how-to-use-token-auth.md responses: '200': description: the token was created and returned @@ -47,4 +47,4 @@ paths: components: securitySchemes: OAuth2: - $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/master/prime-router/docs/api/components/security_schemes.yml#/OAuth2' + $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/main/prime-router/docs/api/components/security_schemes.yml#/OAuth2' diff --git a/prime-router/docs/api/validate.yml b/prime-router/docs/api/validate.yml index 094f9f21b7d..4009c3ab016 100644 --- a/prime-router/docs/api/validate.yml +++ b/prime-router/docs/api/validate.yml @@ -62,6 +62,6 @@ paths: content: application/json: schema: - $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/master/prime-router/docs/api/reports.yml#/components/schemas/Report' + $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/main/prime-router/docs/api/reports.yml#/components/schemas/Report' '400': description: Bad Request diff --git a/prime-router/docs/api/waters-delivery.yml b/prime-router/docs/api/waters-delivery.yml index 1de8525ee85..be0f581affc 100644 --- a/prime-router/docs/api/waters-delivery.yml +++ b/prime-router/docs/api/waters-delivery.yml @@ -9,7 +9,7 @@ info: email: usds@cdc.gov license: name: Creative Commons Zero v1.0 Universal - url: https://github.com/CDCgov/prime-reportstream/blob/master/LICENSE + url: https://github.com/CDCgov/prime-reportstream/blob/main/LICENSE servers: - url: https://prime.cdc.gov/api description: Production server (uses live data) @@ -50,12 +50,12 @@ paths: - ACTIVE - INACTIVE - TESTING - - $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/master/prime-router/docs/api/components/sort_and_filter.yml#/sortDir' - - $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/master/prime-router/docs/api/components/sort_and_filter.yml#/sortCol' - - $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/master/prime-router/docs/api/components/sort_and_filter.yml#/cursor' - - $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/master/prime-router/docs/api/components/sort_and_filter.yml#/since' - - $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/master/prime-router/docs/api/components/sort_and_filter.yml#/until' - - $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/master/prime-router/docs/api/components/sort_and_filter.yml#/pagesize' + - $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/main/prime-router/docs/api/components/sort_and_filter.yml#/sortDir' + - $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/main/prime-router/docs/api/components/sort_and_filter.yml#/sortCol' + - $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/main/prime-router/docs/api/components/sort_and_filter.yml#/cursor' + - $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/main/prime-router/docs/api/components/sort_and_filter.yml#/since' + - $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/main/prime-router/docs/api/components/sort_and_filter.yml#/until' + - $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/main/prime-router/docs/api/components/sort_and_filter.yml#/pagesize' responses: '200': description: a list of AvailableReport objects @@ -164,12 +164,12 @@ paths: - ACTIVE - INACTIVE - TESTING - - $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/master/prime-router/docs/api/components/sort_and_filter.yml#/sortDir' - - $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/master/prime-router/docs/api/components/sort_and_filter.yml#/sortCol' - - $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/master/prime-router/docs/api/components/sort_and_filter.yml#/cursor' - - $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/master/prime-router/docs/api/components/sort_and_filter.yml#/since' - - $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/master/prime-router/docs/api/components/sort_and_filter.yml#/until' - - $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/master/prime-router/docs/api/components/sort_and_filter.yml#/pagesize' + - $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/main/prime-router/docs/api/components/sort_and_filter.yml#/sortDir' + - $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/main/prime-router/docs/api/components/sort_and_filter.yml#/sortCol' + - $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/main/prime-router/docs/api/components/sort_and_filter.yml#/cursor' + - $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/main/prime-router/docs/api/components/sort_and_filter.yml#/since' + - $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/main/prime-router/docs/api/components/sort_and_filter.yml#/until' + - $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/main/prime-router/docs/api/components/sort_and_filter.yml#/pagesize' responses: '200': description: a list of AvailableReport objects @@ -228,8 +228,8 @@ paths: schema: type: string format: uuid or int - - $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/master/prime-router/docs/api/components/sort_and_filter.yml#/sortDir' - - $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/master/prime-router/docs/api/components/sort_and_filter.yml#/sortCol' + - $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/main/prime-router/docs/api/components/sort_and_filter.yml#/sortDir' + - $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/main/prime-router/docs/api/components/sort_and_filter.yml#/sortCol' enum: [ NAME, CITY, STATE, CLIA, POSITIVE, TOTAL ] responses: '200': @@ -247,9 +247,9 @@ paths: components: securitySchemes: OAuth2: - $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/master/prime-router/docs/api/components/security_schemes.yml#/OAuth2' + $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/main/prime-router/docs/api/components/security_schemes.yml#/OAuth2' Server2Server: - $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/master/prime-router/docs/api/components/security_schemes.yml#/Server2Server' + $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/main/prime-router/docs/api/components/security_schemes.yml#/Server2Server' schemas: GetDeliveriesResponse: type: array diff --git a/prime-router/docs/api/waters-reports.yml b/prime-router/docs/api/waters-reports.yml index 942249362dd..22fde885740 100644 --- a/prime-router/docs/api/waters-reports.yml +++ b/prime-router/docs/api/waters-reports.yml @@ -261,4 +261,4 @@ components: securitySchemes: OAuth2: - $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/master/prime-router/docs/api/components/security_schemes.yml#/OAuth2' + $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/main/prime-router/docs/api/components/security_schemes.yml#/OAuth2' diff --git a/prime-router/docs/api/waters-submissions.yml b/prime-router/docs/api/waters-submissions.yml index d7774b9e103..80f51c0a4d3 100644 --- a/prime-router/docs/api/waters-submissions.yml +++ b/prime-router/docs/api/waters-submissions.yml @@ -19,12 +19,12 @@ paths: required: true schema: type: string - - $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/master/prime-router/docs/api/components/sort_and_filter.yml#/sortDir' - - $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/master/prime-router/docs/api/components/sort_and_filter.yml#/sortCol' - - $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/master/prime-router/docs/api/components/sort_and_filter.yml#/cursor' - - $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/master/prime-router/docs/api/components/sort_and_filter.yml#/since' - - $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/master/prime-router/docs/api/components/sort_and_filter.yml#/until' - - $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/master/prime-router/docs/api/components/sort_and_filter.yml#/pagesize' + - $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/main/prime-router/docs/api/components/sort_and_filter.yml#/sortDir' + - $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/main/prime-router/docs/api/components/sort_and_filter.yml#/sortCol' + - $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/main/prime-router/docs/api/components/sort_and_filter.yml#/cursor' + - $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/main/prime-router/docs/api/components/sort_and_filter.yml#/since' + - $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/main/prime-router/docs/api/components/sort_and_filter.yml#/until' + - $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/main/prime-router/docs/api/components/sort_and_filter.yml#/pagesize' - name: showFailed in: query description: whether or not to show submissions that failed delivery @@ -57,12 +57,12 @@ paths: required: true schema: type: string - - $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/master/prime-router/docs/api/components/sort_and_filter.yml#/sortDir' - - $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/master/prime-router/docs/api/components/sort_and_filter.yml#/sortCol' - - $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/master/prime-router/docs/api/components/sort_and_filter.yml#/cursor' - - $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/master/prime-router/docs/api/components/sort_and_filter.yml#/since' - - $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/master/prime-router/docs/api/components/sort_and_filter.yml#/until' - - $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/master/prime-router/docs/api/components/sort_and_filter.yml#/pagesize' + - $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/main/prime-router/docs/api/components/sort_and_filter.yml#/sortDir' + - $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/main/prime-router/docs/api/components/sort_and_filter.yml#/sortCol' + - $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/main/prime-router/docs/api/components/sort_and_filter.yml#/cursor' + - $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/main/prime-router/docs/api/components/sort_and_filter.yml#/since' + - $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/main/prime-router/docs/api/components/sort_and_filter.yml#/until' + - $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/main/prime-router/docs/api/components/sort_and_filter.yml#/pagesize' - name: showFailed in: query description: whether or not to show submissions that failed delivery @@ -123,4 +123,4 @@ components: securitySchemes: OAuth2: - $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/master/prime-router/docs/api/components/security_schemes.yml#/OAuth2' + $ref: 'https://raw.githubusercontent.com/CDCgov/prime-reportstream/main/prime-router/docs/api/components/security_schemes.yml#/OAuth2'