-
Notifications
You must be signed in to change notification settings - Fork 10
CHI-3295: use new prepopulate config in Twilio Lambda #2970
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
stephenhand
wants to merge
31
commits into
CHI-3295-formdef_package_move
Choose a base branch
from
CHI-3295-use_new_prepopulate_defs
base: CHI-3295-formdef_package_move
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
83f36da
Tests passing for populateMappings
stephenhand 0e9dc8b
Add more tests and fix issues highlighted by tests
stephenhand 511dfce
Flip dependencies so hrm-form-definitions depends on hrm-types
stephenhand f54a6ee
Fix package pathing in lambda dockerfile
stephenhand 91bee68
Try changing nrm-form-definitions -> hrm-types dependency to a file d…
stephenhand 0b3f52c
Break dependency between hrm-types and hrm-form-definitions
stephenhand 8182028
Fix build
stephenhand 05283cf
Fix build
stephenhand 8bd0596
Fix a bunch of deps
stephenhand 8cd8aea
Move hrm-form-definitions tests to lambda CI
stephenhand be1c87a
Linter
stephenhand f5acf27
Fix lambda service tests
stephenhand 3b3fcf3
Fix lambda service tests
stephenhand d9994d0
Fix lambda service tests
stephenhand f3edffc
Upgrade @babel/runtime
stephenhand e31890c
Upgrade package-lock.json
stephenhand 5f979a1
Build lambdas for plugin tests
stephenhand ef0f223
Build lambdas for plugin tests
stephenhand 2064750
Install lambda packages outside workspace for unit tests
stephenhand a2d5a5a
Try copying packages to local node_modules :-/
stephenhand 56b5e50
Try copying packages to local node_modules :-/
stephenhand 05bc0c6
Try copying packages to local node_modules :-/
stephenhand 9b804ff
Shotgun fixing
stephenhand 266d335
Shotgun fixing
stephenhand cbdbd31
Shotgun fixing
stephenhand 85ba443
Remove DefinitionVersionId enum
stephenhand c827677
Try reordering ci calls installing flex plugin deps
stephenhand 77b0141
Try reordering ci calls installing flex plugin deps
stephenhand 81df3fa
Remove reference to old DefinitionVersion enum
stephenhand dc68730
Remove unused export
stephenhand 81df0f6
Fix form def deploy path
stephenhand File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,11 +25,11 @@ runs: | |
- name: Install the Twilio CLI and plugins | ||
run: npm install -g twilio-cli && twilio plugins:install @twilio-labs/[email protected] | ||
shell: bash | ||
- name: Install hrm-form-definitions Packages | ||
run: npm ci | ||
working-directory: ${{ inputs.path }}/lambdas/packages/hrm-form-definitions | ||
shell: bash | ||
- name: Install plugin-hrm-form Packages | ||
run: npm ci | ||
working-directory: ${{ inputs.path }}/plugin-hrm-form | ||
shell: bash | ||
- name: Install hrm-types packages | ||
run: npm ci | ||
working-directory: ${{ inputs.path }}/lambdas | ||
shell: bash |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
40 changes: 40 additions & 0 deletions
40
lambdas/account-scoped/src/hrm/availableContactFormSelector.ts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
/** | ||
* Copyright (C) 2021-2023 Technology Matters | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License as published | ||
* by the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU Affero General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Affero General Public License | ||
* along with this program. If not, see https://www.gnu.org/licenses/. | ||
*/ | ||
|
||
import { HrmContactRawJson } from '@tech-matters/hrm-types'; | ||
import { DefinitionVersion } from '@tech-matters/hrm-form-definitions'; | ||
|
||
export type ContactFormDefinitionName = keyof Pick< | ||
DefinitionVersion['tabbedForms'], | ||
'ChildInformationTab' | 'CallerInformationTab' | 'CaseInformationTab' | ||
>; | ||
|
||
export type ContactFormName = keyof Omit< | ||
HrmContactRawJson, | ||
'callType' | 'definitionVersion' | 'categories' | 'contactlessTask' | ||
>; | ||
|
||
export type AvailableContactFormSelector = ( | ||
parameter?: any, | ||
) => ( | ||
source: keyof DefinitionVersion['prepopulateMappings'], | ||
preEngagementSelections: any, | ||
surveyAnswers: any, | ||
) => ContactFormDefinitionName[]; | ||
|
||
export const staticAvailableContactTabSelector: AvailableContactFormSelector = | ||
availableTabs => () => | ||
availableTabs; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There are a few github lint notes up in this file, maybe address them?