-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed data point (DocuSign, Dropbox Sign) (#204)
* feat(): add signed data point to docu sign * feat(): add signed data point to dropbox sign
- Loading branch information
1 parent
d1b9d81
commit dee64de
Showing
7 changed files
with
23 additions
and
3 deletions.
There are no files selected for viewing
8 changes: 8 additions & 0 deletions
8
extensions/docuSign/actions/embeddedSigning/config/dataPoints.ts
This file contains 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,8 @@ | ||
import { type DataPointDefinition } from '@awell-health/extensions-core' | ||
|
||
export const dataPoints = { | ||
signed: { | ||
key: 'signed', | ||
valueType: 'boolean', | ||
}, | ||
} satisfies Record<string, DataPointDefinition> |
This file contains 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 |
---|---|---|
@@ -1 +1,2 @@ | ||
export { fields } from './fields' | ||
export { dataPoints } from './dataPoints' |
This file contains 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
8 changes: 8 additions & 0 deletions
8
extensions/dropboxSign/v1/actions/embeddedSigning/config/dataPoints.ts
This file contains 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,8 @@ | ||
import { type DataPointDefinition } from '@awell-health/extensions-core' | ||
|
||
export const dataPoints = { | ||
signed: { | ||
key: 'signed', | ||
valueType: 'boolean', | ||
}, | ||
} satisfies Record<string, DataPointDefinition> |
1 change: 1 addition & 0 deletions
1
extensions/dropboxSign/v1/actions/embeddedSigning/config/index.ts
This file contains 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 |
---|---|---|
@@ -1 +1,2 @@ | ||
export { fields } from './fields' | ||
export { dataPoints } from './dataPoints' |
This file contains 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 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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@awell-health/awell-extensions", | ||
"version": "1.0.45", | ||
"version": "1.0.46", | ||
"packageManager": "[email protected]", | ||
"main": "dist/src/index.js", | ||
"repository": { | ||
|