Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
15ae283
WIP - public search with OpenSearch
landonshumway-ia Feb 27, 2026
683d5c6
Move public search logic into separate file
landonshumway-ia Mar 2, 2026
d3c83d3
Add additional cursor tests to verify pagination
landonshumway-ia Mar 3, 2026
9eb8be9
Add mock DB setup for remaining search tests
landonshumway-ia Mar 3, 2026
771aa6b
Update CDK tests
landonshumway-ia Mar 3, 2026
d0b23be
Remove complex pagination logic
landonshumway-ia Mar 26, 2026
e41a7d2
Add support for sorting results by familyName or dateOfUpdate
landonshumway-ia Mar 27, 2026
17bd140
Cleanup response schema validation
landonshumway-ia Mar 27, 2026
c0d9e73
PR feedback - set license number max length to match api spec
landonshumway-ia Mar 27, 2026
8216615
Set all public request schemas to limit license number to 100 chars
landonshumway-ia Mar 27, 2026
c00141f
Remove previous public search implementation
landonshumway-ia Mar 27, 2026
8c9c69b
Add public license response schema for cosm public lookup
landonshumway-ia Mar 27, 2026
ab36ddd
linter/formatting
landonshumway-ia Mar 27, 2026
430e17e
Add licenseType to top level public search response
landonshumway-ia Mar 27, 2026
a4e52fb
Add public license api model to response schema
landonshumway-ia Mar 27, 2026
15486e2
Remove aa and history fields from privilege public response model
landonshumway-ia Mar 27, 2026
3278730
Update API specs to latest
landonshumway-ia Mar 27, 2026
de20e40
Update API specs to latest
landonshumway-ia Mar 27, 2026
c0f4c69
remove provider id access pattern from public query
landonshumway-ia Mar 27, 2026
2cd2840
Add ability to reset indexes when populating documents
landonshumway-ia Mar 31, 2026
32557d0
Grant populate provider documents lambda permission to reset
landonshumway-ia Mar 31, 2026
bca7ab5
Check for index under alias name
landonshumway-ia Apr 1, 2026
dddacd0
linter/comments
landonshumway-ia Apr 1, 2026
520fa83
Remove search filter constraints
landonshumway-ia Apr 1, 2026
096f2e5
PR feedback - set timeout
landonshumway-ia Apr 1, 2026
2628c42
Prevent reset functionality in prod environment
landonshumway-ia Apr 1, 2026
76cb22f
Update cosmetology python requirements to latest
landonshumway-ia Apr 1, 2026
d068ac9
formatting
landonshumway-ia Apr 1, 2026
f370eee
PR feedback - cleanup tests/comments
landonshumway-ia Apr 9, 2026
aebcc40
fix example in mock license script
landonshumway-ia Apr 9, 2026
1c4d5c7
Remove irrelevant query provider smoke test
landonshumway-ia Apr 9, 2026
9824eef
PR feedback - validate path parameter
landonshumway-ia Apr 9, 2026
7f00cf0
PR feedback sort by inner license record
landonshumway-ia Apr 9, 2026
1c78620
formatting
landonshumway-ia Apr 9, 2026
f839d5a
Update nodemailer dep to latest
landonshumway-ia Apr 9, 2026
8c773ba
PR feedback - check missing jurisdiction with schema validation
landonshumway-ia Apr 9, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
# The JSON file can be used for API testing or other purposes.
#
# Run from 'backend/compact-connect' like:
# bin/generate_mock_license_csv_upload_file.py --count 100 --compact octp --jurisdiction ne --format csv
# bin/generate_mock_license_csv_upload_file.py --count 100 --compact octp --jurisdiction ne --format json
# bin/generate_mock_license_csv_upload_file.py --count 100 --compact cosm --jurisdiction al --format csv
# bin/generate_mock_license_csv_upload_file.py --count 100 --compact cosm --jurisdiction al --format json
import json
import os
import sys
Expand Down
1 change: 1 addition & 0 deletions backend/cosmetology-app/bin/run_python_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
'lambdas/python/disaster-recovery',
'lambdas/python/migration',
'lambdas/python/provider-data-v1',
'lambdas/python/search',
'lambdas/python/staff-user-pre-token',
'lambdas/python/staff-users',
'.', # CDK tests
Expand Down
24 changes: 21 additions & 3 deletions backend/cosmetology-app/docs/api-specification/latest-oas30.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"openapi": "3.0.1",
"info": {
"title": "StateApi",
"version": "2026-02-16T16:29:16Z"
"version": "2026-03-13T17:32:08Z"
},
"servers": [
{
Expand Down Expand Up @@ -74,7 +74,16 @@
{
"SandboxStateAPIStackStateApiStateAuthAuthorizer7F83A6D3": [
"cosm/write",
"az/cosm.write"
"al/cosm.write",
"az/cosm.write",
"co/cosm.write",
"ks/cosm.write",
"ky/cosm.write",
"md/cosm.write",
"oh/cosm.write",
"tn/cosm.write",
"va/cosm.write",
"wa/cosm.write"
]
}
]
Expand Down Expand Up @@ -124,7 +133,16 @@
{
"SandboxStateAPIStackStateApiStateAuthAuthorizer7F83A6D3": [
"cosm/write",
"az/cosm.write"
"al/cosm.write",
"az/cosm.write",
"co/cosm.write",
"ks/cosm.write",
"ky/cosm.write",
"md/cosm.write",
"oh/cosm.write",
"tn/cosm.write",
"va/cosm.write",
"wa/cosm.write"
]
}
]
Expand Down
Loading
Loading