-
Notifications
You must be signed in to change notification settings - Fork 9
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
Update BQ Documentation: new tables added #203
base: main
Are you sure you want to change the base?
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
PR Reviewer Guide 🔍Here are some key observations to aid the review process:
|
PR Code Suggestions ✨Explore these optional code suggestions:
|
User description
This PR introduces documentation for three new tables that extract specific objects from the activities table, allowing for easier and more detailed analytics:
Actions Table:
Added description of the
actions
table, which captures data about orchestrated actions within care flows. It includes information on action definition, last state, associated objects, and relationships with care flows, steps, and tracks.Steps Table:
Included documentation for the
steps
table, which contains data about orchestrated steps within care flows. This table provides information on step definition, timing, last status, and associations with care flows and tracks.Tracks Table:
Added details about the
tracks
table, which captures data on orchestrated tracks within care flows. It includes information on track definition, timing, last status, and care flow associations.PR Type
Documentation, Enhancement
Description
ActionsTableSpecs
,StepsTableSpecs
, andTracksTableSpecs
.actions
,steps
, andtracks
, enhancing data analytics capabilities.activities
table configuration with additional properties and improved descriptions.Changes walkthrough 📝
ActionsTableSpecs.tsx
Add ActionsTableSpecs component for actions table rendering
src/components/DataRepository/ActionsTableSpecs.tsx
ActionsTableSpecs
for rendering the actionstable.
actions
configuration for table data.Column
,Type
, andDescription
.StepsTableSpecs.tsx
Add StepsTableSpecs component for steps table rendering
src/components/DataRepository/StepsTableSpecs.tsx
StepsTableSpecs
for rendering the steps table.steps
configuration for table data.Column
,Type
, andDescription
.TracksTableSpecs.tsx
Add TracksTableSpecs component for tracks table rendering
src/components/DataRepository/TracksTableSpecs.tsx
TracksTableSpecs
for rendering the tracks table.tracks
configuration for table data.Column
,Type
, andDescription
.index.ts
Export new table specs components in index
src/components/DataRepository/index.ts
ActionsTableSpecs
,StepsTableSpecs
, andTracksTableSpecs
.bq-tables.ts
Add new BigQuery table configurations and update activities table
src/config/bq-tables.ts
actions
,steps
, andtracks
.activities
table with new properties and descriptions.mdx.tsx
Update MDX configuration with new table specs components
src/config/mdx.tsx
ActionsTableSpecs
,StepsTableSpecs
,TracksTableSpecs
.api.types.ts
Extend API types with new activity and decision-related types
src/types/generated/api.types.ts
identity verification.
decision outputs.
data-schema.mdx
Document new BigQuery tables in data schema
content/awell-orchestration/docs/data/bigquery/data-schema.mdx
actions
,steps
, andtracks
.