notify-and-hydrate-state
This module has been generated via dagger init and serves as a reference tobasic module structure as you get started with Dagger.
Two functions have been pre-created. You can modify, delete, or add to them,
as needed. They demonstrate usage of arguments and return types using simple
echo and grep commands. The functions can be called from the dagger CLI or
from one of the SDKs.
The first line in this comment block is a short description line and the
rest is a long description with more detail on the module's purpose or usage,
if appropriate. All modules should have a short description.
Installation
dagger install github.com/prefapp/daggerverse/notify-and-hydrate-state@eab2dd21a2a2d44ce446db5980f9a7809e59478c
Entrypoint
Return Type
NotifyAndHydrateState !
Arguments
Name | Type | Description |
---|---|---|
firestarterImageTag | String | No description provided |
firestarterImage | String | No description provided |
githubAppId | String ! | Github application ID |
githubInstallationId | String ! | Github installation ID |
githubPrefappInstallationId | String ! | Github prefapp installation ID |
githubPrivateKey | Secret ! | Github private key |
githubOrganization | String ! | Github organization |
ghToken | Secret ! | Github token |
claimsDefaultBranch | String ! | No description provided |
Example
dagger -m github.com/prefapp/daggerverse/notify-and-hydrate-state@eab2dd21a2a2d44ce446db5980f9a7809e59478c call \
--github-app-id string --github-installation-id string --github-prefapp-installation-id string --github-private-key env:MYSECRET --github-organization string --gh-token env:MYSECRET --claims-default-branch string
func (m *myModule) example(githubAppId string, githubInstallationId string, githubPrefappInstallationId string, githubPrivateKey *Secret, githubOrganization string, ghToken *Secret, claimsDefaultBranch string) *NotifyAndHydrateState {
return dag.
NotifyAndHydrateState(githubAppId, githubInstallationId, githubPrefappInstallationId, githubPrivateKey, githubOrganization, ghToken, claimsDefaultBranch)
}
@function
def example(github_app_id: str, github_installation_id: str, github_prefapp_installation_id: str, github_private_key: dagger.Secret, github_organization: str, gh_token: dagger.Secret, claims_default_branch: str) -> dag.NotifyAndHydrateState:
return (
dag.notify_and_hydrate_state(github_app_id, github_installation_id, github_prefapp_installation_id, github_private_key, github_organization, gh_token, claims_default_branch)
)
@func()
example(githubAppId: string, githubInstallationId: string, githubPrefappInstallationId: string, githubPrivateKey: Secret, githubOrganization: string, ghToken: Secret, claimsDefaultBranch: string): NotifyAndHydrateState {
return dag
.notifyAndHydrateState(githubAppId, githubInstallationId, githubPrefappInstallationId, githubPrivateKey, githubOrganization, ghToken, claimsDefaultBranch)
}
Types
NotifyAndHydrateState 🔗
firestarterImage() 🔗
Return Type
String !
Example
dagger -m github.com/prefapp/daggerverse/notify-and-hydrate-state@eab2dd21a2a2d44ce446db5980f9a7809e59478c call \
--github-app-id string --github-installation-id string --github-prefapp-installation-id string --github-private-key env:MYSECRET --github-organization string --gh-token env:MYSECRET --claims-default-branch string firestarter-image
func (m *myModule) example(ctx context.Context, githubAppId string, githubInstallationId string, githubPrefappInstallationId string, githubPrivateKey *Secret, githubOrganization string, ghToken *Secret, claimsDefaultBranch string) string {
return dag.
NotifyAndHydrateState(githubAppId, githubInstallationId, githubPrefappInstallationId, githubPrivateKey, githubOrganization, ghToken, claimsDefaultBranch).
FirestarterImage(ctx)
}
@function
async def example(github_app_id: str, github_installation_id: str, github_prefapp_installation_id: str, github_private_key: dagger.Secret, github_organization: str, gh_token: dagger.Secret, claims_default_branch: str) -> str:
return await (
dag.notify_and_hydrate_state(github_app_id, github_installation_id, github_prefapp_installation_id, github_private_key, github_organization, gh_token, claims_default_branch)
.firestarter_image()
)
@func()
async example(githubAppId: string, githubInstallationId: string, githubPrefappInstallationId: string, githubPrivateKey: Secret, githubOrganization: string, ghToken: Secret, claimsDefaultBranch: string): Promise<string> {
return dag
.notifyAndHydrateState(githubAppId, githubInstallationId, githubPrefappInstallationId, githubPrivateKey, githubOrganization, ghToken, claimsDefaultBranch)
.firestarterImage()
}
firestarterImageTag() 🔗
Return Type
String !
Example
dagger -m github.com/prefapp/daggerverse/notify-and-hydrate-state@eab2dd21a2a2d44ce446db5980f9a7809e59478c call \
--github-app-id string --github-installation-id string --github-prefapp-installation-id string --github-private-key env:MYSECRET --github-organization string --gh-token env:MYSECRET --claims-default-branch string firestarter-image-tag
func (m *myModule) example(ctx context.Context, githubAppId string, githubInstallationId string, githubPrefappInstallationId string, githubPrivateKey *Secret, githubOrganization string, ghToken *Secret, claimsDefaultBranch string) string {
return dag.
NotifyAndHydrateState(githubAppId, githubInstallationId, githubPrefappInstallationId, githubPrivateKey, githubOrganization, ghToken, claimsDefaultBranch).
FirestarterImageTag(ctx)
}
@function
async def example(github_app_id: str, github_installation_id: str, github_prefapp_installation_id: str, github_private_key: dagger.Secret, github_organization: str, gh_token: dagger.Secret, claims_default_branch: str) -> str:
return await (
dag.notify_and_hydrate_state(github_app_id, github_installation_id, github_prefapp_installation_id, github_private_key, github_organization, gh_token, claims_default_branch)
.firestarter_image_tag()
)
@func()
async example(githubAppId: string, githubInstallationId: string, githubPrefappInstallationId: string, githubPrivateKey: Secret, githubOrganization: string, ghToken: Secret, claimsDefaultBranch: string): Promise<string> {
return dag
.notifyAndHydrateState(githubAppId, githubInstallationId, githubPrefappInstallationId, githubPrivateKey, githubOrganization, ghToken, claimsDefaultBranch)
.firestarterImageTag()
}
githubAppId() 🔗
Return Type
String !
Example
dagger -m github.com/prefapp/daggerverse/notify-and-hydrate-state@eab2dd21a2a2d44ce446db5980f9a7809e59478c call \
--github-app-id string --github-installation-id string --github-prefapp-installation-id string --github-private-key env:MYSECRET --github-organization string --gh-token env:MYSECRET --claims-default-branch string github-app-id
func (m *myModule) example(ctx context.Context, githubAppId string, githubInstallationId string, githubPrefappInstallationId string, githubPrivateKey *Secret, githubOrganization string, ghToken *Secret, claimsDefaultBranch string) string {
return dag.
NotifyAndHydrateState(githubAppId, githubInstallationId, githubPrefappInstallationId, githubPrivateKey, githubOrganization, ghToken, claimsDefaultBranch).
GithubAppId(ctx)
}
@function
async def example(github_app_id: str, github_installation_id: str, github_prefapp_installation_id: str, github_private_key: dagger.Secret, github_organization: str, gh_token: dagger.Secret, claims_default_branch: str) -> str:
return await (
dag.notify_and_hydrate_state(github_app_id, github_installation_id, github_prefapp_installation_id, github_private_key, github_organization, gh_token, claims_default_branch)
.github_app_id()
)
@func()
async example(githubAppId: string, githubInstallationId: string, githubPrefappInstallationId: string, githubPrivateKey: Secret, githubOrganization: string, ghToken: Secret, claimsDefaultBranch: string): Promise<string> {
return dag
.notifyAndHydrateState(githubAppId, githubInstallationId, githubPrefappInstallationId, githubPrivateKey, githubOrganization, ghToken, claimsDefaultBranch)
.githubAppId()
}
githubInstallationId() 🔗
Return Type
String !
Example
dagger -m github.com/prefapp/daggerverse/notify-and-hydrate-state@eab2dd21a2a2d44ce446db5980f9a7809e59478c call \
--github-app-id string --github-installation-id string --github-prefapp-installation-id string --github-private-key env:MYSECRET --github-organization string --gh-token env:MYSECRET --claims-default-branch string github-installation-id
func (m *myModule) example(ctx context.Context, githubAppId string, githubInstallationId string, githubPrefappInstallationId string, githubPrivateKey *Secret, githubOrganization string, ghToken *Secret, claimsDefaultBranch string) string {
return dag.
NotifyAndHydrateState(githubAppId, githubInstallationId, githubPrefappInstallationId, githubPrivateKey, githubOrganization, ghToken, claimsDefaultBranch).
GithubInstallationId(ctx)
}
@function
async def example(github_app_id: str, github_installation_id: str, github_prefapp_installation_id: str, github_private_key: dagger.Secret, github_organization: str, gh_token: dagger.Secret, claims_default_branch: str) -> str:
return await (
dag.notify_and_hydrate_state(github_app_id, github_installation_id, github_prefapp_installation_id, github_private_key, github_organization, gh_token, claims_default_branch)
.github_installation_id()
)
@func()
async example(githubAppId: string, githubInstallationId: string, githubPrefappInstallationId: string, githubPrivateKey: Secret, githubOrganization: string, ghToken: Secret, claimsDefaultBranch: string): Promise<string> {
return dag
.notifyAndHydrateState(githubAppId, githubInstallationId, githubPrefappInstallationId, githubPrivateKey, githubOrganization, ghToken, claimsDefaultBranch)
.githubInstallationId()
}
githubPrefappInstallationId() 🔗
Return Type
String !
Example
dagger -m github.com/prefapp/daggerverse/notify-and-hydrate-state@eab2dd21a2a2d44ce446db5980f9a7809e59478c call \
--github-app-id string --github-installation-id string --github-prefapp-installation-id string --github-private-key env:MYSECRET --github-organization string --gh-token env:MYSECRET --claims-default-branch string github-prefapp-installation-id
func (m *myModule) example(ctx context.Context, githubAppId string, githubInstallationId string, githubPrefappInstallationId string, githubPrivateKey *Secret, githubOrganization string, ghToken *Secret, claimsDefaultBranch string) string {
return dag.
NotifyAndHydrateState(githubAppId, githubInstallationId, githubPrefappInstallationId, githubPrivateKey, githubOrganization, ghToken, claimsDefaultBranch).
GithubPrefappInstallationId(ctx)
}
@function
async def example(github_app_id: str, github_installation_id: str, github_prefapp_installation_id: str, github_private_key: dagger.Secret, github_organization: str, gh_token: dagger.Secret, claims_default_branch: str) -> str:
return await (
dag.notify_and_hydrate_state(github_app_id, github_installation_id, github_prefapp_installation_id, github_private_key, github_organization, gh_token, claims_default_branch)
.github_prefapp_installation_id()
)
@func()
async example(githubAppId: string, githubInstallationId: string, githubPrefappInstallationId: string, githubPrivateKey: Secret, githubOrganization: string, ghToken: Secret, claimsDefaultBranch: string): Promise<string> {
return dag
.notifyAndHydrateState(githubAppId, githubInstallationId, githubPrefappInstallationId, githubPrivateKey, githubOrganization, ghToken, claimsDefaultBranch)
.githubPrefappInstallationId()
}
githubPrivateKey() 🔗
Return Type
Secret !
Example
dagger -m github.com/prefapp/daggerverse/notify-and-hydrate-state@eab2dd21a2a2d44ce446db5980f9a7809e59478c call \
--github-app-id string --github-installation-id string --github-prefapp-installation-id string --github-private-key env:MYSECRET --github-organization string --gh-token env:MYSECRET --claims-default-branch string github-private-key
func (m *myModule) example(githubAppId string, githubInstallationId string, githubPrefappInstallationId string, githubPrivateKey *Secret, githubOrganization string, ghToken *Secret, claimsDefaultBranch string) *Secret {
return dag.
NotifyAndHydrateState(githubAppId, githubInstallationId, githubPrefappInstallationId, githubPrivateKey, githubOrganization, ghToken, claimsDefaultBranch).
GithubPrivateKey()
}
@function
def example(github_app_id: str, github_installation_id: str, github_prefapp_installation_id: str, github_private_key: dagger.Secret, github_organization: str, gh_token: dagger.Secret, claims_default_branch: str) -> dagger.Secret:
return (
dag.notify_and_hydrate_state(github_app_id, github_installation_id, github_prefapp_installation_id, github_private_key, github_organization, gh_token, claims_default_branch)
.github_private_key()
)
@func()
example(githubAppId: string, githubInstallationId: string, githubPrefappInstallationId: string, githubPrivateKey: Secret, githubOrganization: string, ghToken: Secret, claimsDefaultBranch: string): Secret {
return dag
.notifyAndHydrateState(githubAppId, githubInstallationId, githubPrefappInstallationId, githubPrivateKey, githubOrganization, ghToken, claimsDefaultBranch)
.githubPrivateKey()
}
githubOrganization() 🔗
Return Type
String !
Example
dagger -m github.com/prefapp/daggerverse/notify-and-hydrate-state@eab2dd21a2a2d44ce446db5980f9a7809e59478c call \
--github-app-id string --github-installation-id string --github-prefapp-installation-id string --github-private-key env:MYSECRET --github-organization string --gh-token env:MYSECRET --claims-default-branch string github-organization
func (m *myModule) example(ctx context.Context, githubAppId string, githubInstallationId string, githubPrefappInstallationId string, githubPrivateKey *Secret, githubOrganization string, ghToken *Secret, claimsDefaultBranch string) string {
return dag.
NotifyAndHydrateState(githubAppId, githubInstallationId, githubPrefappInstallationId, githubPrivateKey, githubOrganization, ghToken, claimsDefaultBranch).
GithubOrganization(ctx)
}
@function
async def example(github_app_id: str, github_installation_id: str, github_prefapp_installation_id: str, github_private_key: dagger.Secret, github_organization: str, gh_token: dagger.Secret, claims_default_branch: str) -> str:
return await (
dag.notify_and_hydrate_state(github_app_id, github_installation_id, github_prefapp_installation_id, github_private_key, github_organization, gh_token, claims_default_branch)
.github_organization()
)
@func()
async example(githubAppId: string, githubInstallationId: string, githubPrefappInstallationId: string, githubPrivateKey: Secret, githubOrganization: string, ghToken: Secret, claimsDefaultBranch: string): Promise<string> {
return dag
.notifyAndHydrateState(githubAppId, githubInstallationId, githubPrefappInstallationId, githubPrivateKey, githubOrganization, ghToken, claimsDefaultBranch)
.githubOrganization()
}
ghToken() 🔗
Return Type
Secret !
Example
dagger -m github.com/prefapp/daggerverse/notify-and-hydrate-state@eab2dd21a2a2d44ce446db5980f9a7809e59478c call \
--github-app-id string --github-installation-id string --github-prefapp-installation-id string --github-private-key env:MYSECRET --github-organization string --gh-token env:MYSECRET --claims-default-branch string gh-token
func (m *myModule) example(githubAppId string, githubInstallationId string, githubPrefappInstallationId string, githubPrivateKey *Secret, githubOrganization string, ghToken *Secret, claimsDefaultBranch string) *Secret {
return dag.
NotifyAndHydrateState(githubAppId, githubInstallationId, githubPrefappInstallationId, githubPrivateKey, githubOrganization, ghToken, claimsDefaultBranch).
GhToken()
}
@function
def example(github_app_id: str, github_installation_id: str, github_prefapp_installation_id: str, github_private_key: dagger.Secret, github_organization: str, gh_token: dagger.Secret, claims_default_branch: str) -> dagger.Secret:
return (
dag.notify_and_hydrate_state(github_app_id, github_installation_id, github_prefapp_installation_id, github_private_key, github_organization, gh_token, claims_default_branch)
.gh_token()
)
@func()
example(githubAppId: string, githubInstallationId: string, githubPrefappInstallationId: string, githubPrivateKey: Secret, githubOrganization: string, ghToken: Secret, claimsDefaultBranch: string): Secret {
return dag
.notifyAndHydrateState(githubAppId, githubInstallationId, githubPrefappInstallationId, githubPrivateKey, githubOrganization, ghToken, claimsDefaultBranch)
.ghToken()
}
claimsDefaultBranch() 🔗
Return Type
String !
Example
dagger -m github.com/prefapp/daggerverse/notify-and-hydrate-state@eab2dd21a2a2d44ce446db5980f9a7809e59478c call \
--github-app-id string --github-installation-id string --github-prefapp-installation-id string --github-private-key env:MYSECRET --github-organization string --gh-token env:MYSECRET --claims-default-branch string claims-default-branch
func (m *myModule) example(ctx context.Context, githubAppId string, githubInstallationId string, githubPrefappInstallationId string, githubPrivateKey *Secret, githubOrganization string, ghToken *Secret, claimsDefaultBranch string) string {
return dag.
NotifyAndHydrateState(githubAppId, githubInstallationId, githubPrefappInstallationId, githubPrivateKey, githubOrganization, ghToken, claimsDefaultBranch).
ClaimsDefaultBranch(ctx)
}
@function
async def example(github_app_id: str, github_installation_id: str, github_prefapp_installation_id: str, github_private_key: dagger.Secret, github_organization: str, gh_token: dagger.Secret, claims_default_branch: str) -> str:
return await (
dag.notify_and_hydrate_state(github_app_id, github_installation_id, github_prefapp_installation_id, github_private_key, github_organization, gh_token, claims_default_branch)
.claims_default_branch()
)
@func()
async example(githubAppId: string, githubInstallationId: string, githubPrefappInstallationId: string, githubPrivateKey: Secret, githubOrganization: string, ghToken: Secret, claimsDefaultBranch: string): Promise<string> {
return dag
.notifyAndHydrateState(githubAppId, githubInstallationId, githubPrefappInstallationId, githubPrivateKey, githubOrganization, ghToken, claimsDefaultBranch)
.claimsDefaultBranch()
}
verify() 🔗
Return Type
Boolean !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
claimsPr | String ! | - | PR number ("<owner>/<repo>#<pr-number>") |
ghRepo | String ! | - | Repository name ("<owner>/<repo>") |
crs | [File ! ] ! | - | CRs to verify |
prs | [NotifyAndHydrateStatePrBranchName ! ] ! | - | No description provided |
Example
echo 'Custom types are not supported in shell examples'
func (m *myModule) example(ctx context.Context, githubAppId string, githubInstallationId string, githubPrefappInstallationId string, githubPrivateKey *Secret, githubOrganization string, ghToken *Secret, claimsDefaultBranch string, claimsPr string, ghRepo string, crs []*File, prs []*NotifyAndHydrateStatePrBranchName) bool {
return dag.
NotifyAndHydrateState(githubAppId, githubInstallationId, githubPrefappInstallationId, githubPrivateKey, githubOrganization, ghToken, claimsDefaultBranch).
Verify(ctx, claimsPr, ghRepo, crs, prs)
}
@function
async def example(github_app_id: str, github_installation_id: str, github_prefapp_installation_id: str, github_private_key: dagger.Secret, github_organization: str, gh_token: dagger.Secret, claims_default_branch: str, claims_pr: str, gh_repo: str, crs: List[dagger.File], prs: List[dag.NotifyAndHydrateStatePrBranchName]) -> bool:
return await (
dag.notify_and_hydrate_state(github_app_id, github_installation_id, github_prefapp_installation_id, github_private_key, github_organization, gh_token, claims_default_branch)
.verify(claims_pr, gh_repo, crs, prs)
)
@func()
async example(githubAppId: string, githubInstallationId: string, githubPrefappInstallationId: string, githubPrivateKey: Secret, githubOrganization: string, ghToken: Secret, claimsDefaultBranch: string, claimsPr: string, ghRepo: string, crs: File[], prs: NotifyAndHydrateStatePrBranchName[]): Promise<boolean> {
return dag
.notifyAndHydrateState(githubAppId, githubInstallationId, githubPrefappInstallationId, githubPrivateKey, githubOrganization, ghToken, claimsDefaultBranch)
.verify(claimsPr, ghRepo, crs, prs)
}
crHasPendingPr() 🔗
Return Type
Boolean !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
prs | [NotifyAndHydrateStatePrBranchName ! ] ! | - | No description provided |
currentPrNumber | String ! | - | No description provided |
cr | NotifyAndHydrateStateCr ! | - | No description provided |
Example
echo 'Custom types are not supported in shell examples'
func (m *myModule) example(ctx context.Context, githubAppId string, githubInstallationId string, githubPrefappInstallationId string, githubPrivateKey *Secret, githubOrganization string, ghToken *Secret, claimsDefaultBranch string, prs []*NotifyAndHydrateStatePrBranchName, currentPrNumber string, cr *NotifyAndHydrateStateCr) bool {
return dag.
NotifyAndHydrateState(githubAppId, githubInstallationId, githubPrefappInstallationId, githubPrivateKey, githubOrganization, ghToken, claimsDefaultBranch).
CrHasPendingPr(ctx, prs, currentPrNumber, cr)
}
@function
async def example(github_app_id: str, github_installation_id: str, github_prefapp_installation_id: str, github_private_key: dagger.Secret, github_organization: str, gh_token: dagger.Secret, claims_default_branch: str, prs: List[dag.NotifyAndHydrateStatePrBranchName], current_pr_number: str, cr: dag.NotifyAndHydrateStateCr) -> bool:
return await (
dag.notify_and_hydrate_state(github_app_id, github_installation_id, github_prefapp_installation_id, github_private_key, github_organization, gh_token, claims_default_branch)
.cr_has_pending_pr(prs, current_pr_number, cr)
)
@func()
async example(githubAppId: string, githubInstallationId: string, githubPrefappInstallationId: string, githubPrivateKey: Secret, githubOrganization: string, ghToken: Secret, claimsDefaultBranch: string, prs: NotifyAndHydrateStatePrBranchName[], currentPrNumber: string, cr: NotifyAndHydrateStateCr): Promise<boolean> {
return dag
.notifyAndHydrateState(githubAppId, githubInstallationId, githubPrefappInstallationId, githubPrivateKey, githubOrganization, ghToken, claimsDefaultBranch)
.crHasPendingPr(prs, currentPrNumber, cr)
}
getRepoPrs() 🔗
Return Type
[NotifyAndHydrateStatePrBranchName ! ] !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
ghRepo | String ! | - | Repository name ("<owner>/<repo>") |
Example
dagger -m github.com/prefapp/daggerverse/notify-and-hydrate-state@eab2dd21a2a2d44ce446db5980f9a7809e59478c call \
--github-app-id string --github-installation-id string --github-prefapp-installation-id string --github-private-key env:MYSECRET --github-organization string --gh-token env:MYSECRET --claims-default-branch string get-repo-prs --gh-repo string
func (m *myModule) example(githubAppId string, githubInstallationId string, githubPrefappInstallationId string, githubPrivateKey *Secret, githubOrganization string, ghToken *Secret, claimsDefaultBranch string, ghRepo string) []*NotifyAndHydrateStatePrBranchName {
return dag.
NotifyAndHydrateState(githubAppId, githubInstallationId, githubPrefappInstallationId, githubPrivateKey, githubOrganization, ghToken, claimsDefaultBranch).
GetRepoPrs(ghRepo)
}
@function
def example(github_app_id: str, github_installation_id: str, github_prefapp_installation_id: str, github_private_key: dagger.Secret, github_organization: str, gh_token: dagger.Secret, claims_default_branch: str, gh_repo: str) -> List[dag.NotifyAndHydrateStatePrBranchName]:
return (
dag.notify_and_hydrate_state(github_app_id, github_installation_id, github_prefapp_installation_id, github_private_key, github_organization, gh_token, claims_default_branch)
.get_repo_prs(gh_repo)
)
@func()
example(githubAppId: string, githubInstallationId: string, githubPrefappInstallationId: string, githubPrivateKey: Secret, githubOrganization: string, ghToken: Secret, claimsDefaultBranch: string, ghRepo: string): NotifyAndHydrateStatePrBranchName[] {
return dag
.notifyAndHydrateState(githubAppId, githubInstallationId, githubPrefappInstallationId, githubPrivateKey, githubOrganization, ghToken, claimsDefaultBranch)
.getRepoPrs(ghRepo)
}
createPrsFromDiff() 🔗
Return Type
[String ! ] !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
diff | NotifyAndHydrateStateDiffResult ! | - | No description provided |
wetRepositoryDir | Directory ! | - | No description provided |
wetRepoName | String ! | - | No description provided |
claimPrNumber | String ! | - | No description provided |
prs | [NotifyAndHydrateStatePrBranchName ! ] ! | - | No description provided |
Example
echo 'Custom types are not supported in shell examples'
func (m *myModule) example(ctx context.Context, githubAppId string, githubInstallationId string, githubPrefappInstallationId string, githubPrivateKey *Secret, githubOrganization string, ghToken *Secret, claimsDefaultBranch string, diff *NotifyAndHydrateStateDiffResult, wetRepositoryDir *Directory, wetRepoName string, claimPrNumber string, prs []*NotifyAndHydrateStatePrBranchName) []string {
return dag.
NotifyAndHydrateState(githubAppId, githubInstallationId, githubPrefappInstallationId, githubPrivateKey, githubOrganization, ghToken, claimsDefaultBranch).
CreatePrsFromDiff(ctx, diff, wetRepositoryDir, wetRepoName, claimPrNumber, prs)
}
@function
async def example(github_app_id: str, github_installation_id: str, github_prefapp_installation_id: str, github_private_key: dagger.Secret, github_organization: str, gh_token: dagger.Secret, claims_default_branch: str, diff: dag.NotifyAndHydrateStateDiffResult, wet_repository_dir: dagger.Directory, wet_repo_name: str, claim_pr_number: str, prs: List[dag.NotifyAndHydrateStatePrBranchName]) -> List[str]:
return await (
dag.notify_and_hydrate_state(github_app_id, github_installation_id, github_prefapp_installation_id, github_private_key, github_organization, gh_token, claims_default_branch)
.create_prs_from_diff(diff, wet_repository_dir, wet_repo_name, claim_pr_number, prs)
)
@func()
async example(githubAppId: string, githubInstallationId: string, githubPrefappInstallationId: string, githubPrivateKey: Secret, githubOrganization: string, ghToken: Secret, claimsDefaultBranch: string, diff: NotifyAndHydrateStateDiffResult, wetRepositoryDir: Directory, wetRepoName: string, claimPrNumber: string, prs: NotifyAndHydrateStatePrBranchName[]): Promise<string[]> {
return dag
.notifyAndHydrateState(githubAppId, githubInstallationId, githubPrefappInstallationId, githubPrivateKey, githubOrganization, ghToken, claimsDefaultBranch)
.createPrsFromDiff(diff, wetRepositoryDir, wetRepoName, claimPrNumber, prs)
}
createPr() 🔗
Return Type
String !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
file | File ! | - | No description provided |
wetRepositoryDir | Directory ! | - | No description provided |
wetRepoName | String ! | - | No description provided |
action | String ! | - | No description provided |
claimPrNumber | String ! | - | No description provided |
prs | [NotifyAndHydrateStatePrBranchName ! ] ! | - | No description provided |
Example
echo 'Custom types are not supported in shell examples'
func (m *myModule) example(ctx context.Context, githubAppId string, githubInstallationId string, githubPrefappInstallationId string, githubPrivateKey *Secret, githubOrganization string, ghToken *Secret, claimsDefaultBranch string, file *File, wetRepositoryDir *Directory, wetRepoName string, action string, claimPrNumber string, prs []*NotifyAndHydrateStatePrBranchName) string {
return dag.
NotifyAndHydrateState(githubAppId, githubInstallationId, githubPrefappInstallationId, githubPrivateKey, githubOrganization, ghToken, claimsDefaultBranch).
CreatePr(ctx, file, wetRepositoryDir, wetRepoName, action, claimPrNumber, prs)
}
@function
async def example(github_app_id: str, github_installation_id: str, github_prefapp_installation_id: str, github_private_key: dagger.Secret, github_organization: str, gh_token: dagger.Secret, claims_default_branch: str, file: dagger.File, wet_repository_dir: dagger.Directory, wet_repo_name: str, action: str, claim_pr_number: str, prs: List[dag.NotifyAndHydrateStatePrBranchName]) -> str:
return await (
dag.notify_and_hydrate_state(github_app_id, github_installation_id, github_prefapp_installation_id, github_private_key, github_organization, gh_token, claims_default_branch)
.create_pr(file, wet_repository_dir, wet_repo_name, action, claim_pr_number, prs)
)
@func()
async example(githubAppId: string, githubInstallationId: string, githubPrefappInstallationId: string, githubPrivateKey: Secret, githubOrganization: string, ghToken: Secret, claimsDefaultBranch: string, file: File, wetRepositoryDir: Directory, wetRepoName: string, action: string, claimPrNumber: string, prs: NotifyAndHydrateStatePrBranchName[]): Promise<string> {
return dag
.notifyAndHydrateState(githubAppId, githubInstallationId, githubPrefappInstallationId, githubPrivateKey, githubOrganization, ghToken, claimsDefaultBranch)
.createPr(file, wetRepositoryDir, wetRepoName, action, claimPrNumber, prs)
}
configGitContainer() 🔗
Return Type
Container !
Example
dagger -m github.com/prefapp/daggerverse/notify-and-hydrate-state@eab2dd21a2a2d44ce446db5980f9a7809e59478c call \
--github-app-id string --github-installation-id string --github-prefapp-installation-id string --github-private-key env:MYSECRET --github-organization string --gh-token env:MYSECRET --claims-default-branch string config-git-container
func (m *myModule) example(githubAppId string, githubInstallationId string, githubPrefappInstallationId string, githubPrivateKey *Secret, githubOrganization string, ghToken *Secret, claimsDefaultBranch string) *Container {
return dag.
NotifyAndHydrateState(githubAppId, githubInstallationId, githubPrefappInstallationId, githubPrivateKey, githubOrganization, ghToken, claimsDefaultBranch).
ConfigGitContainer()
}
@function
def example(github_app_id: str, github_installation_id: str, github_prefapp_installation_id: str, github_private_key: dagger.Secret, github_organization: str, gh_token: dagger.Secret, claims_default_branch: str) -> dagger.Container:
return (
dag.notify_and_hydrate_state(github_app_id, github_installation_id, github_prefapp_installation_id, github_private_key, github_organization, gh_token, claims_default_branch)
.config_git_container()
)
@func()
example(githubAppId: string, githubInstallationId: string, githubPrefappInstallationId: string, githubPrivateKey: Secret, githubOrganization: string, ghToken: Secret, claimsDefaultBranch: string): Container {
return dag
.notifyAndHydrateState(githubAppId, githubInstallationId, githubPrefappInstallationId, githubPrivateKey, githubOrganization, ghToken, claimsDefaultBranch)
.configGitContainer()
}
createPrIfNotExists() 🔗
Return Type
String !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
branch | String ! | - | No description provided |
repo | String ! | - | No description provided |
title | String ! | - | No description provided |
body | String ! | - | No description provided |
prs | [NotifyAndHydrateStatePrBranchName ! ] ! | - | No description provided |
Example
echo 'Custom types are not supported in shell examples'
func (m *myModule) example(ctx context.Context, githubAppId string, githubInstallationId string, githubPrefappInstallationId string, githubPrivateKey *Secret, githubOrganization string, ghToken *Secret, claimsDefaultBranch string, branch string, repo string, title string, body string, prs []*NotifyAndHydrateStatePrBranchName) string {
return dag.
NotifyAndHydrateState(githubAppId, githubInstallationId, githubPrefappInstallationId, githubPrivateKey, githubOrganization, ghToken, claimsDefaultBranch).
CreatePrIfNotExists(ctx, branch, repo, title, body, prs)
}
@function
async def example(github_app_id: str, github_installation_id: str, github_prefapp_installation_id: str, github_private_key: dagger.Secret, github_organization: str, gh_token: dagger.Secret, claims_default_branch: str, branch: str, repo: str, title: str, body: str, prs: List[dag.NotifyAndHydrateStatePrBranchName]) -> str:
return await (
dag.notify_and_hydrate_state(github_app_id, github_installation_id, github_prefapp_installation_id, github_private_key, github_organization, gh_token, claims_default_branch)
.create_pr_if_not_exists(branch, repo, title, body, prs)
)
@func()
async example(githubAppId: string, githubInstallationId: string, githubPrefappInstallationId: string, githubPrivateKey: Secret, githubOrganization: string, ghToken: Secret, claimsDefaultBranch: string, branch: string, repo: string, title: string, body: string, prs: NotifyAndHydrateStatePrBranchName[]): Promise<string> {
return dag
.notifyAndHydrateState(githubAppId, githubInstallationId, githubPrefappInstallationId, githubPrivateKey, githubOrganization, ghToken, claimsDefaultBranch)
.createPrIfNotExists(branch, repo, title, body, prs)
}
workflow() 🔗
Return Type
NotifyAndHydrateStateDiffResult !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
claimsRepo | String ! | - | Claims repository name |
wetRepo | String ! | - | Wet repository name |
claimsDir | Directory ! | - | Claims directory |
crsDir | Directory ! | - | Previous CRs directory |
provider | String ! | - | Provider to render |
claimsPr | String ! | - | Claims PR |
Example
dagger -m github.com/prefapp/daggerverse/notify-and-hydrate-state@eab2dd21a2a2d44ce446db5980f9a7809e59478c call \
--github-app-id string --github-installation-id string --github-prefapp-installation-id string --github-private-key env:MYSECRET --github-organization string --gh-token env:MYSECRET --claims-default-branch string workflow --claims-repo string --wet-repo string --claims-dir DIR_PATH --crs-dir DIR_PATH --provider string --claims-pr string
func (m *myModule) example(githubAppId string, githubInstallationId string, githubPrefappInstallationId string, githubPrivateKey *Secret, githubOrganization string, ghToken *Secret, claimsDefaultBranch string, claimsRepo string, wetRepo string, claimsDir *Directory, crsDir *Directory, provider string, claimsPr string) *NotifyAndHydrateStateDiffResult {
return dag.
NotifyAndHydrateState(githubAppId, githubInstallationId, githubPrefappInstallationId, githubPrivateKey, githubOrganization, ghToken, claimsDefaultBranch).
Workflow(claimsRepo, wetRepo, claimsDir, crsDir, provider, claimsPr)
}
@function
def example(github_app_id: str, github_installation_id: str, github_prefapp_installation_id: str, github_private_key: dagger.Secret, github_organization: str, gh_token: dagger.Secret, claims_default_branch: str, claims_repo: str, wet_repo: str, claims_dir: dagger.Directory, crs_dir: dagger.Directory, provider: str, claims_pr: str) -> dag.NotifyAndHydrateStateDiffResult:
return (
dag.notify_and_hydrate_state(github_app_id, github_installation_id, github_prefapp_installation_id, github_private_key, github_organization, gh_token, claims_default_branch)
.workflow(claims_repo, wet_repo, claims_dir, crs_dir, provider, claims_pr)
)
@func()
example(githubAppId: string, githubInstallationId: string, githubPrefappInstallationId: string, githubPrivateKey: Secret, githubOrganization: string, ghToken: Secret, claimsDefaultBranch: string, claimsRepo: string, wetRepo: string, claimsDir: Directory, crsDir: Directory, provider: string, claimsPr: string): NotifyAndHydrateStateDiffResult {
return dag
.notifyAndHydrateState(githubAppId, githubInstallationId, githubPrefappInstallationId, githubPrivateKey, githubOrganization, ghToken, claimsDefaultBranch)
.workflow(claimsRepo, wetRepo, claimsDir, crsDir, provider, claimsPr)
}
addPrReferences() 🔗
Return Type
String !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
claimsRepo | String ! | - | Claims repository name |
claimPrNumber | String ! | - | Claim PR number |
prLinks | [String ! ] ! | - | List of PR links |
Example
dagger -m github.com/prefapp/daggerverse/notify-and-hydrate-state@eab2dd21a2a2d44ce446db5980f9a7809e59478c call \
--github-app-id string --github-installation-id string --github-prefapp-installation-id string --github-private-key env:MYSECRET --github-organization string --gh-token env:MYSECRET --claims-default-branch string add-pr-references --claims-repo string --claim-pr-number string --pr-links string1 --pr-links string2
func (m *myModule) example(ctx context.Context, githubAppId string, githubInstallationId string, githubPrefappInstallationId string, githubPrivateKey *Secret, githubOrganization string, ghToken *Secret, claimsDefaultBranch string, claimsRepo string, claimPrNumber string, prLinks []string) string {
return dag.
NotifyAndHydrateState(githubAppId, githubInstallationId, githubPrefappInstallationId, githubPrivateKey, githubOrganization, ghToken, claimsDefaultBranch).
AddPrReferences(ctx, claimsRepo, claimPrNumber, prLinks)
}
@function
async def example(github_app_id: str, github_installation_id: str, github_prefapp_installation_id: str, github_private_key: dagger.Secret, github_organization: str, gh_token: dagger.Secret, claims_default_branch: str, claims_repo: str, claim_pr_number: str, pr_links: List[str]) -> str:
return await (
dag.notify_and_hydrate_state(github_app_id, github_installation_id, github_prefapp_installation_id, github_private_key, github_organization, gh_token, claims_default_branch)
.add_pr_references(claims_repo, claim_pr_number, pr_links)
)
@func()
async example(githubAppId: string, githubInstallationId: string, githubPrefappInstallationId: string, githubPrivateKey: Secret, githubOrganization: string, ghToken: Secret, claimsDefaultBranch: string, claimsRepo: string, claimPrNumber: string, prLinks: string[]): Promise<string> {
return dag
.notifyAndHydrateState(githubAppId, githubInstallationId, githubPrefappInstallationId, githubPrivateKey, githubOrganization, ghToken, claimsDefaultBranch)
.addPrReferences(claimsRepo, claimPrNumber, prLinks)
}
cmdContainer() 🔗
Return Type
Container !
Example
dagger -m github.com/prefapp/daggerverse/notify-and-hydrate-state@eab2dd21a2a2d44ce446db5980f9a7809e59478c call \
--github-app-id string --github-installation-id string --github-prefapp-installation-id string --github-private-key env:MYSECRET --github-organization string --gh-token env:MYSECRET --claims-default-branch string cmd-container
func (m *myModule) example(githubAppId string, githubInstallationId string, githubPrefappInstallationId string, githubPrivateKey *Secret, githubOrganization string, ghToken *Secret, claimsDefaultBranch string) *Container {
return dag.
NotifyAndHydrateState(githubAppId, githubInstallationId, githubPrefappInstallationId, githubPrivateKey, githubOrganization, ghToken, claimsDefaultBranch).
CmdContainer()
}
@function
def example(github_app_id: str, github_installation_id: str, github_prefapp_installation_id: str, github_private_key: dagger.Secret, github_organization: str, gh_token: dagger.Secret, claims_default_branch: str) -> dagger.Container:
return (
dag.notify_and_hydrate_state(github_app_id, github_installation_id, github_prefapp_installation_id, github_private_key, github_organization, gh_token, claims_default_branch)
.cmd_container()
)
@func()
example(githubAppId: string, githubInstallationId: string, githubPrefappInstallationId: string, githubPrivateKey: Secret, githubOrganization: string, ghToken: Secret, claimsDefaultBranch: string): Container {
return dag
.notifyAndHydrateState(githubAppId, githubInstallationId, githubPrefappInstallationId, githubPrivateKey, githubOrganization, ghToken, claimsDefaultBranch)
.cmdContainer()
}
cmdHydrate() 🔗
Render claims into CRs
Return Type
Directory !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
claimsRepo | String ! | - | Claims repository name |
claimsDir | Directory ! | - | Claims directory |
crsDir | Directory ! | - | Previous CRs directory |
provider | String ! | - | Provider to render |
Example
dagger -m github.com/prefapp/daggerverse/notify-and-hydrate-state@eab2dd21a2a2d44ce446db5980f9a7809e59478c call \
--github-app-id string --github-installation-id string --github-prefapp-installation-id string --github-private-key env:MYSECRET --github-organization string --gh-token env:MYSECRET --claims-default-branch string cmd-hydrate --claims-repo string --claims-dir DIR_PATH --crs-dir DIR_PATH --provider string
func (m *myModule) example(githubAppId string, githubInstallationId string, githubPrefappInstallationId string, githubPrivateKey *Secret, githubOrganization string, ghToken *Secret, claimsDefaultBranch string, claimsRepo string, claimsDir *Directory, crsDir *Directory, provider string) *Directory {
return dag.
NotifyAndHydrateState(githubAppId, githubInstallationId, githubPrefappInstallationId, githubPrivateKey, githubOrganization, ghToken, claimsDefaultBranch).
CmdHydrate(claimsRepo, claimsDir, crsDir, provider)
}
@function
def example(github_app_id: str, github_installation_id: str, github_prefapp_installation_id: str, github_private_key: dagger.Secret, github_organization: str, gh_token: dagger.Secret, claims_default_branch: str, claims_repo: str, claims_dir: dagger.Directory, crs_dir: dagger.Directory, provider: str) -> dagger.Directory:
return (
dag.notify_and_hydrate_state(github_app_id, github_installation_id, github_prefapp_installation_id, github_private_key, github_organization, gh_token, claims_default_branch)
.cmd_hydrate(claims_repo, claims_dir, crs_dir, provider)
)
@func()
example(githubAppId: string, githubInstallationId: string, githubPrefappInstallationId: string, githubPrivateKey: Secret, githubOrganization: string, ghToken: Secret, claimsDefaultBranch: string, claimsRepo: string, claimsDir: Directory, crsDir: Directory, provider: string): Directory {
return dag
.notifyAndHydrateState(githubAppId, githubInstallationId, githubPrefappInstallationId, githubPrivateKey, githubOrganization, ghToken, claimsDefaultBranch)
.cmdHydrate(claimsRepo, claimsDir, crsDir, provider)
}
cmdAnnotateCrPr() 🔗
Render claims into CRs
Return Type
Directory !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
lastClaimPrLink | String ! | - | Last claim PR link (https://...//pulls/123) |
lastStatePrLink | String ! | - | Last state PR link (https://...//pulls/123) |
wetRepo | Directory ! | - | Previous CRs directory |
crFileName | String ! | - | Path to the cr |
Example
dagger -m github.com/prefapp/daggerverse/notify-and-hydrate-state@eab2dd21a2a2d44ce446db5980f9a7809e59478c call \
--github-app-id string --github-installation-id string --github-prefapp-installation-id string --github-private-key env:MYSECRET --github-organization string --gh-token env:MYSECRET --claims-default-branch string cmd-annotate-cr-pr --last-claim-pr-link string --last-state-pr-link string --wet-repo DIR_PATH --cr-file-name string
func (m *myModule) example(githubAppId string, githubInstallationId string, githubPrefappInstallationId string, githubPrivateKey *Secret, githubOrganization string, ghToken *Secret, claimsDefaultBranch string, lastClaimPrLink string, lastStatePrLink string, wetRepo *Directory, crFileName string) *Directory {
return dag.
NotifyAndHydrateState(githubAppId, githubInstallationId, githubPrefappInstallationId, githubPrivateKey, githubOrganization, ghToken, claimsDefaultBranch).
CmdAnnotateCrPr(lastClaimPrLink, lastStatePrLink, wetRepo, crFileName)
}
@function
def example(github_app_id: str, github_installation_id: str, github_prefapp_installation_id: str, github_private_key: dagger.Secret, github_organization: str, gh_token: dagger.Secret, claims_default_branch: str, last_claim_pr_link: str, last_state_pr_link: str, wet_repo: dagger.Directory, cr_file_name: str) -> dagger.Directory:
return (
dag.notify_and_hydrate_state(github_app_id, github_installation_id, github_prefapp_installation_id, github_private_key, github_organization, gh_token, claims_default_branch)
.cmd_annotate_cr_pr(last_claim_pr_link, last_state_pr_link, wet_repo, cr_file_name)
)
@func()
example(githubAppId: string, githubInstallationId: string, githubPrefappInstallationId: string, githubPrivateKey: Secret, githubOrganization: string, ghToken: Secret, claimsDefaultBranch: string, lastClaimPrLink: string, lastStatePrLink: string, wetRepo: Directory, crFileName: string): Directory {
return dag
.notifyAndHydrateState(githubAppId, githubInstallationId, githubPrefappInstallationId, githubPrivateKey, githubOrganization, ghToken, claimsDefaultBranch)
.cmdAnnotateCrPr(lastClaimPrLink, lastStatePrLink, wetRepo, crFileName)
}
cmdAffectedWetRepos() 🔗
Return Type
File !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
claimsFromMain | Directory ! | - | No description provided |
claimsFromPr | Directory ! | - | No description provided |
claimsDefaults | Directory ! | - | No description provided |
wetReposConfig | File ! | - | No description provided |
Example
dagger -m github.com/prefapp/daggerverse/notify-and-hydrate-state@eab2dd21a2a2d44ce446db5980f9a7809e59478c call \
--github-app-id string --github-installation-id string --github-prefapp-installation-id string --github-private-key env:MYSECRET --github-organization string --gh-token env:MYSECRET --claims-default-branch string cmd-affected-wet-repos --claims-from-main DIR_PATH --claims-from-pr DIR_PATH --claims-defaults DIR_PATH --wet-repos-config file:path
func (m *myModule) example(githubAppId string, githubInstallationId string, githubPrefappInstallationId string, githubPrivateKey *Secret, githubOrganization string, ghToken *Secret, claimsDefaultBranch string, claimsFromMain *Directory, claimsFromPr *Directory, claimsDefaults *Directory, wetReposConfig *File) *File {
return dag.
NotifyAndHydrateState(githubAppId, githubInstallationId, githubPrefappInstallationId, githubPrivateKey, githubOrganization, ghToken, claimsDefaultBranch).
CmdAffectedWetRepos(claimsFromMain, claimsFromPr, claimsDefaults, wetReposConfig)
}
@function
def example(github_app_id: str, github_installation_id: str, github_prefapp_installation_id: str, github_private_key: dagger.Secret, github_organization: str, gh_token: dagger.Secret, claims_default_branch: str, claims_from_main: dagger.Directory, claims_from_pr: dagger.Directory, claims_defaults: dagger.Directory, wet_repos_config: dagger.File) -> dagger.File:
return (
dag.notify_and_hydrate_state(github_app_id, github_installation_id, github_prefapp_installation_id, github_private_key, github_organization, gh_token, claims_default_branch)
.cmd_affected_wet_repos(claims_from_main, claims_from_pr, claims_defaults, wet_repos_config)
)
@func()
example(githubAppId: string, githubInstallationId: string, githubPrefappInstallationId: string, githubPrivateKey: Secret, githubOrganization: string, ghToken: Secret, claimsDefaultBranch: string, claimsFromMain: Directory, claimsFromPr: Directory, claimsDefaults: Directory, wetReposConfig: File): File {
return dag
.notifyAndHydrateState(githubAppId, githubInstallationId, githubPrefappInstallationId, githubPrivateKey, githubOrganization, ghToken, claimsDefaultBranch)
.cmdAffectedWetRepos(claimsFromMain, claimsFromPr, claimsDefaults, wetReposConfig)
}
cmdAnnotateCrs() 🔗
Return Type
Directory !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
claimsRepo | String ! | - | Claims repository name |
wetRepo | String ! | - | Wet repository name |
wetPrNumber | String ! | - | Wet PR number |
crsDir | Directory ! | - | CRs directory |
Example
dagger -m github.com/prefapp/daggerverse/notify-and-hydrate-state@eab2dd21a2a2d44ce446db5980f9a7809e59478c call \
--github-app-id string --github-installation-id string --github-prefapp-installation-id string --github-private-key env:MYSECRET --github-organization string --gh-token env:MYSECRET --claims-default-branch string cmd-annotate-crs --claims-repo string --wet-repo string --wet-pr-number string --crs-dir DIR_PATH
func (m *myModule) example(githubAppId string, githubInstallationId string, githubPrefappInstallationId string, githubPrivateKey *Secret, githubOrganization string, ghToken *Secret, claimsDefaultBranch string, claimsRepo string, wetRepo string, wetPrNumber string, crsDir *Directory) *Directory {
return dag.
NotifyAndHydrateState(githubAppId, githubInstallationId, githubPrefappInstallationId, githubPrivateKey, githubOrganization, ghToken, claimsDefaultBranch).
CmdAnnotateCrs(claimsRepo, wetRepo, wetPrNumber, crsDir)
}
@function
def example(github_app_id: str, github_installation_id: str, github_prefapp_installation_id: str, github_private_key: dagger.Secret, github_organization: str, gh_token: dagger.Secret, claims_default_branch: str, claims_repo: str, wet_repo: str, wet_pr_number: str, crs_dir: dagger.Directory) -> dagger.Directory:
return (
dag.notify_and_hydrate_state(github_app_id, github_installation_id, github_prefapp_installation_id, github_private_key, github_organization, gh_token, claims_default_branch)
.cmd_annotate_crs(claims_repo, wet_repo, wet_pr_number, crs_dir)
)
@func()
example(githubAppId: string, githubInstallationId: string, githubPrefappInstallationId: string, githubPrivateKey: Secret, githubOrganization: string, ghToken: Secret, claimsDefaultBranch: string, claimsRepo: string, wetRepo: string, wetPrNumber: string, crsDir: Directory): Directory {
return dag
.notifyAndHydrateState(githubAppId, githubInstallationId, githubPrefappInstallationId, githubPrivateKey, githubOrganization, ghToken, claimsDefaultBranch)
.cmdAnnotateCrs(claimsRepo, wetRepo, wetPrNumber, crsDir)
}
compareDirs() 🔗
Return Type
NotifyAndHydrateStateDiffResult !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
oldCrs | Directory ! | - | No description provided |
newCrs | Directory ! | - | No description provided |
affectedClaims | [String ! ] ! | - | No description provided |
Example
dagger -m github.com/prefapp/daggerverse/notify-and-hydrate-state@eab2dd21a2a2d44ce446db5980f9a7809e59478c call \
--github-app-id string --github-installation-id string --github-prefapp-installation-id string --github-private-key env:MYSECRET --github-organization string --gh-token env:MYSECRET --claims-default-branch string compare-dirs --old-crs DIR_PATH --new-crs DIR_PATH --affected-claims string1 --affected-claims string2
func (m *myModule) example(githubAppId string, githubInstallationId string, githubPrefappInstallationId string, githubPrivateKey *Secret, githubOrganization string, ghToken *Secret, claimsDefaultBranch string, oldCrs *Directory, newCrs *Directory, affectedClaims []string) *NotifyAndHydrateStateDiffResult {
return dag.
NotifyAndHydrateState(githubAppId, githubInstallationId, githubPrefappInstallationId, githubPrivateKey, githubOrganization, ghToken, claimsDefaultBranch).
CompareDirs(oldCrs, newCrs, affectedClaims)
}
@function
def example(github_app_id: str, github_installation_id: str, github_prefapp_installation_id: str, github_private_key: dagger.Secret, github_organization: str, gh_token: dagger.Secret, claims_default_branch: str, old_crs: dagger.Directory, new_crs: dagger.Directory, affected_claims: List[str]) -> dag.NotifyAndHydrateStateDiffResult:
return (
dag.notify_and_hydrate_state(github_app_id, github_installation_id, github_prefapp_installation_id, github_private_key, github_organization, gh_token, claims_default_branch)
.compare_dirs(old_crs, new_crs, affected_claims)
)
@func()
example(githubAppId: string, githubInstallationId: string, githubPrefappInstallationId: string, githubPrivateKey: Secret, githubOrganization: string, ghToken: Secret, claimsDefaultBranch: string, oldCrs: Directory, newCrs: Directory, affectedClaims: string[]): NotifyAndHydrateStateDiffResult {
return dag
.notifyAndHydrateState(githubAppId, githubInstallationId, githubPrefappInstallationId, githubPrivateKey, githubOrganization, ghToken, claimsDefaultBranch)
.compareDirs(oldCrs, newCrs, affectedClaims)
}
areYamlsEqual() 🔗
Return Type
Boolean !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
yamlA | String ! | - | No description provided |
yamlB | String ! | - | No description provided |
Example
dagger -m github.com/prefapp/daggerverse/notify-and-hydrate-state@eab2dd21a2a2d44ce446db5980f9a7809e59478c call \
--github-app-id string --github-installation-id string --github-prefapp-installation-id string --github-private-key env:MYSECRET --github-organization string --gh-token env:MYSECRET --claims-default-branch string are-yamls-equal --yaml-a string --yaml-b string
func (m *myModule) example(ctx context.Context, githubAppId string, githubInstallationId string, githubPrefappInstallationId string, githubPrivateKey *Secret, githubOrganization string, ghToken *Secret, claimsDefaultBranch string, yamlA string, yamlB string) bool {
return dag.
NotifyAndHydrateState(githubAppId, githubInstallationId, githubPrefappInstallationId, githubPrivateKey, githubOrganization, ghToken, claimsDefaultBranch).
AreYamlsEqual(ctx, yamlA, yamlB)
}
@function
async def example(github_app_id: str, github_installation_id: str, github_prefapp_installation_id: str, github_private_key: dagger.Secret, github_organization: str, gh_token: dagger.Secret, claims_default_branch: str, yaml_a: str, yaml_b: str) -> bool:
return await (
dag.notify_and_hydrate_state(github_app_id, github_installation_id, github_prefapp_installation_id, github_private_key, github_organization, gh_token, claims_default_branch)
.are_yamls_equal(yaml_a, yaml_b)
)
@func()
async example(githubAppId: string, githubInstallationId: string, githubPrefappInstallationId: string, githubPrivateKey: Secret, githubOrganization: string, ghToken: Secret, claimsDefaultBranch: string, yamlA: string, yamlB: string): Promise<boolean> {
return dag
.notifyAndHydrateState(githubAppId, githubInstallationId, githubPrefappInstallationId, githubPrivateKey, githubOrganization, ghToken, claimsDefaultBranch)
.areYamlsEqual(yamlA, yamlB)
}
isAffectedCrfromPr() 🔗
Return Type
Boolean !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
affectedClaims | [String ! ] ! | - | No description provided |
cr | File ! | - | No description provided |
Example
dagger -m github.com/prefapp/daggerverse/notify-and-hydrate-state@eab2dd21a2a2d44ce446db5980f9a7809e59478c call \
--github-app-id string --github-installation-id string --github-prefapp-installation-id string --github-private-key env:MYSECRET --github-organization string --gh-token env:MYSECRET --claims-default-branch string is-affected-crfrom-pr --affected-claims string1 --affected-claims string2 --cr file:path
func (m *myModule) example(ctx context.Context, githubAppId string, githubInstallationId string, githubPrefappInstallationId string, githubPrivateKey *Secret, githubOrganization string, ghToken *Secret, claimsDefaultBranch string, affectedClaims []string, cr *File) bool {
return dag.
NotifyAndHydrateState(githubAppId, githubInstallationId, githubPrefappInstallationId, githubPrivateKey, githubOrganization, ghToken, claimsDefaultBranch).
IsAffectedCrfromPr(ctx, affectedClaims, cr)
}
@function
async def example(github_app_id: str, github_installation_id: str, github_prefapp_installation_id: str, github_private_key: dagger.Secret, github_organization: str, gh_token: dagger.Secret, claims_default_branch: str, affected_claims: List[str], cr: dagger.File) -> bool:
return await (
dag.notify_and_hydrate_state(github_app_id, github_installation_id, github_prefapp_installation_id, github_private_key, github_organization, gh_token, claims_default_branch)
.is_affected_crfrom_pr(affected_claims, cr)
)
@func()
async example(githubAppId: string, githubInstallationId: string, githubPrefappInstallationId: string, githubPrivateKey: Secret, githubOrganization: string, ghToken: Secret, claimsDefaultBranch: string, affectedClaims: string[], cr: File): Promise<boolean> {
return dag
.notifyAndHydrateState(githubAppId, githubInstallationId, githubPrefappInstallationId, githubPrivateKey, githubOrganization, ghToken, claimsDefaultBranch)
.isAffectedCrfromPr(affectedClaims, cr)
}
getPrChangedFiles() 🔗
Return Type
[String ! ] !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
claimsRepo | Directory ! | - | No description provided |
Example
dagger -m github.com/prefapp/daggerverse/notify-and-hydrate-state@eab2dd21a2a2d44ce446db5980f9a7809e59478c call \
--github-app-id string --github-installation-id string --github-prefapp-installation-id string --github-private-key env:MYSECRET --github-organization string --gh-token env:MYSECRET --claims-default-branch string get-pr-changed-files --claims-repo DIR_PATH
func (m *myModule) example(ctx context.Context, githubAppId string, githubInstallationId string, githubPrefappInstallationId string, githubPrivateKey *Secret, githubOrganization string, ghToken *Secret, claimsDefaultBranch string, claimsRepo *Directory) []string {
return dag.
NotifyAndHydrateState(githubAppId, githubInstallationId, githubPrefappInstallationId, githubPrivateKey, githubOrganization, ghToken, claimsDefaultBranch).
GetPrChangedFiles(ctx, claimsRepo)
}
@function
async def example(github_app_id: str, github_installation_id: str, github_prefapp_installation_id: str, github_private_key: dagger.Secret, github_organization: str, gh_token: dagger.Secret, claims_default_branch: str, claims_repo: dagger.Directory) -> List[str]:
return await (
dag.notify_and_hydrate_state(github_app_id, github_installation_id, github_prefapp_installation_id, github_private_key, github_organization, gh_token, claims_default_branch)
.get_pr_changed_files(claims_repo)
)
@func()
async example(githubAppId: string, githubInstallationId: string, githubPrefappInstallationId: string, githubPrivateKey: Secret, githubOrganization: string, ghToken: Secret, claimsDefaultBranch: string, claimsRepo: Directory): Promise<string[]> {
return dag
.notifyAndHydrateState(githubAppId, githubInstallationId, githubPrefappInstallationId, githubPrivateKey, githubOrganization, ghToken, claimsDefaultBranch)
.getPrChangedFiles(claimsRepo)
}
getAffectedClaims() 🔗
Return Type
[String ! ] !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
ghRepo | String ! | - | No description provided |
prNumber | String ! | - | No description provided |
claimsDir | Directory ! | - | No description provided |
Example
dagger -m github.com/prefapp/daggerverse/notify-and-hydrate-state@eab2dd21a2a2d44ce446db5980f9a7809e59478c call \
--github-app-id string --github-installation-id string --github-prefapp-installation-id string --github-private-key env:MYSECRET --github-organization string --gh-token env:MYSECRET --claims-default-branch string get-affected-claims --gh-repo string --pr-number string --claims-dir DIR_PATH
func (m *myModule) example(ctx context.Context, githubAppId string, githubInstallationId string, githubPrefappInstallationId string, githubPrivateKey *Secret, githubOrganization string, ghToken *Secret, claimsDefaultBranch string, ghRepo string, prNumber string, claimsDir *Directory) []string {
return dag.
NotifyAndHydrateState(githubAppId, githubInstallationId, githubPrefappInstallationId, githubPrivateKey, githubOrganization, ghToken, claimsDefaultBranch).
GetAffectedClaims(ctx, ghRepo, prNumber, claimsDir)
}
@function
async def example(github_app_id: str, github_installation_id: str, github_prefapp_installation_id: str, github_private_key: dagger.Secret, github_organization: str, gh_token: dagger.Secret, claims_default_branch: str, gh_repo: str, pr_number: str, claims_dir: dagger.Directory) -> List[str]:
return await (
dag.notify_and_hydrate_state(github_app_id, github_installation_id, github_prefapp_installation_id, github_private_key, github_organization, gh_token, claims_default_branch)
.get_affected_claims(gh_repo, pr_number, claims_dir)
)
@func()
async example(githubAppId: string, githubInstallationId: string, githubPrefappInstallationId: string, githubPrivateKey: Secret, githubOrganization: string, ghToken: Secret, claimsDefaultBranch: string, ghRepo: string, prNumber: string, claimsDir: Directory): Promise<string[]> {
return dag
.notifyAndHydrateState(githubAppId, githubInstallationId, githubPrefappInstallationId, githubPrivateKey, githubOrganization, ghToken, claimsDefaultBranch)
.getAffectedClaims(ghRepo, prNumber, claimsDir)
}
filterClaimsByYamlChanges() 🔗
Return Type
[String ! ] !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
claimsDir | Directory ! | - | No description provided |
prFiles | [String ! ] ! | - | No description provided |
ghRepo | String ! | - | No description provided |
Example
dagger -m github.com/prefapp/daggerverse/notify-and-hydrate-state@eab2dd21a2a2d44ce446db5980f9a7809e59478c call \
--github-app-id string --github-installation-id string --github-prefapp-installation-id string --github-private-key env:MYSECRET --github-organization string --gh-token env:MYSECRET --claims-default-branch string filter-claims-by-yaml-changes --claims-dir DIR_PATH --pr-files string1 --pr-files string2 --gh-repo string
func (m *myModule) example(ctx context.Context, githubAppId string, githubInstallationId string, githubPrefappInstallationId string, githubPrivateKey *Secret, githubOrganization string, ghToken *Secret, claimsDefaultBranch string, claimsDir *Directory, prFiles []string, ghRepo string) []string {
return dag.
NotifyAndHydrateState(githubAppId, githubInstallationId, githubPrefappInstallationId, githubPrivateKey, githubOrganization, ghToken, claimsDefaultBranch).
FilterClaimsByYamlChanges(ctx, claimsDir, prFiles, ghRepo)
}
@function
async def example(github_app_id: str, github_installation_id: str, github_prefapp_installation_id: str, github_private_key: dagger.Secret, github_organization: str, gh_token: dagger.Secret, claims_default_branch: str, claims_dir: dagger.Directory, pr_files: List[str], gh_repo: str) -> List[str]:
return await (
dag.notify_and_hydrate_state(github_app_id, github_installation_id, github_prefapp_installation_id, github_private_key, github_organization, gh_token, claims_default_branch)
.filter_claims_by_yaml_changes(claims_dir, pr_files, gh_repo)
)
@func()
async example(githubAppId: string, githubInstallationId: string, githubPrefappInstallationId: string, githubPrivateKey: Secret, githubOrganization: string, ghToken: Secret, claimsDefaultBranch: string, claimsDir: Directory, prFiles: string[], ghRepo: string): Promise<string[]> {
return dag
.notifyAndHydrateState(githubAppId, githubInstallationId, githubPrefappInstallationId, githubPrivateKey, githubOrganization, ghToken, claimsDefaultBranch)
.filterClaimsByYamlChanges(claimsDir, prFiles, ghRepo)
}
filterClaimsByTfChanges() 🔗
Return Type
[String ! ] !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
claimsDir | Directory ! | - | No description provided |
prFiles | [String ! ] ! | - | No description provided |
Example
dagger -m github.com/prefapp/daggerverse/notify-and-hydrate-state@eab2dd21a2a2d44ce446db5980f9a7809e59478c call \
--github-app-id string --github-installation-id string --github-prefapp-installation-id string --github-private-key env:MYSECRET --github-organization string --gh-token env:MYSECRET --claims-default-branch string filter-claims-by-tf-changes --claims-dir DIR_PATH --pr-files string1 --pr-files string2
func (m *myModule) example(ctx context.Context, githubAppId string, githubInstallationId string, githubPrefappInstallationId string, githubPrivateKey *Secret, githubOrganization string, ghToken *Secret, claimsDefaultBranch string, claimsDir *Directory, prFiles []string) []string {
return dag.
NotifyAndHydrateState(githubAppId, githubInstallationId, githubPrefappInstallationId, githubPrivateKey, githubOrganization, ghToken, claimsDefaultBranch).
FilterClaimsByTfChanges(ctx, claimsDir, prFiles)
}
@function
async def example(github_app_id: str, github_installation_id: str, github_prefapp_installation_id: str, github_private_key: dagger.Secret, github_organization: str, gh_token: dagger.Secret, claims_default_branch: str, claims_dir: dagger.Directory, pr_files: List[str]) -> List[str]:
return await (
dag.notify_and_hydrate_state(github_app_id, github_installation_id, github_prefapp_installation_id, github_private_key, github_organization, gh_token, claims_default_branch)
.filter_claims_by_tf_changes(claims_dir, pr_files)
)
@func()
async example(githubAppId: string, githubInstallationId: string, githubPrefappInstallationId: string, githubPrivateKey: Secret, githubOrganization: string, ghToken: Secret, claimsDefaultBranch: string, claimsDir: Directory, prFiles: string[]): Promise<string[]> {
return dag
.notifyAndHydrateState(githubAppId, githubInstallationId, githubPrefappInstallationId, githubPrivateKey, githubOrganization, ghToken, claimsDefaultBranch)
.filterClaimsByTfChanges(claimsDir, prFiles)
}
getFileContentFromDefaultBranch() 🔗
gh api
-H “Accept: application/vnd.github+json”
-H “X-GitHub-Api-Version: 2022-11-28”
/repos/OWNER/REPO/contents/PATH
Return Type
String !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
repo | String ! | "claims" | No description provided |
path | String ! | "claims/tfworkspaces/test-module-a.yaml" | No description provided |
Example
dagger -m github.com/prefapp/daggerverse/notify-and-hydrate-state@eab2dd21a2a2d44ce446db5980f9a7809e59478c call \
--github-app-id string --github-installation-id string --github-prefapp-installation-id string --github-private-key env:MYSECRET --github-organization string --gh-token env:MYSECRET --claims-default-branch string get-file-content-from-default-branch --repo string --path string
func (m *myModule) example(ctx context.Context, githubAppId string, githubInstallationId string, githubPrefappInstallationId string, githubPrivateKey *Secret, githubOrganization string, ghToken *Secret, claimsDefaultBranch string, repo string, path string) string {
return dag.
NotifyAndHydrateState(githubAppId, githubInstallationId, githubPrefappInstallationId, githubPrivateKey, githubOrganization, ghToken, claimsDefaultBranch).
GetFileContentFromDefaultBranch(ctx, repo, path)
}
@function
async def example(github_app_id: str, github_installation_id: str, github_prefapp_installation_id: str, github_private_key: dagger.Secret, github_organization: str, gh_token: dagger.Secret, claims_default_branch: str, repo: str, path: str) -> str:
return await (
dag.notify_and_hydrate_state(github_app_id, github_installation_id, github_prefapp_installation_id, github_private_key, github_organization, gh_token, claims_default_branch)
.get_file_content_from_default_branch(repo, path)
)
@func()
async example(githubAppId: string, githubInstallationId: string, githubPrefappInstallationId: string, githubPrivateKey: Secret, githubOrganization: string, ghToken: Secret, claimsDefaultBranch: string, repo: string, path: string): Promise<string> {
return dag
.notifyAndHydrateState(githubAppId, githubInstallationId, githubPrefappInstallationId, githubPrivateKey, githubOrganization, ghToken, claimsDefaultBranch)
.getFileContentFromDefaultBranch(repo, path)
}
NotifyAndHydrateStatePrBranchName 🔗
headRefName() 🔗
Return Type
String !
Example
Function NotifyAndHydrateStatePrBranchName.headRefName is not accessible from the notify-and-hydrate-state module
Function NotifyAndHydrateStatePrBranchName.headRefName is not accessible from the notify-and-hydrate-state module
Function NotifyAndHydrateStatePrBranchName.headRefName is not accessible from the notify-and-hydrate-state module
Function NotifyAndHydrateStatePrBranchName.headRefName is not accessible from the notify-and-hydrate-state module
url() 🔗
Return Type
String !
Example
Function NotifyAndHydrateStatePrBranchName.url is not accessible from the notify-and-hydrate-state module
Function NotifyAndHydrateStatePrBranchName.url is not accessible from the notify-and-hydrate-state module
Function NotifyAndHydrateStatePrBranchName.url is not accessible from the notify-and-hydrate-state module
Function NotifyAndHydrateStatePrBranchName.url is not accessible from the notify-and-hydrate-state module
NotifyAndHydrateStateCr 🔗
metadata() 🔗
Return Type
NotifyAndHydrateStateMetadata !
Example
Function NotifyAndHydrateStateCr.metadata is not accessible from the notify-and-hydrate-state module
Function NotifyAndHydrateStateCr.metadata is not accessible from the notify-and-hydrate-state module
Function NotifyAndHydrateStateCr.metadata is not accessible from the notify-and-hydrate-state module
Function NotifyAndHydrateStateCr.metadata is not accessible from the notify-and-hydrate-state module
NotifyAndHydrateStateDiffResult 🔗
addedFiles() 🔗
Return Type
[File ! ] !
Example
dagger -m github.com/prefapp/daggerverse/notify-and-hydrate-state@eab2dd21a2a2d44ce446db5980f9a7809e59478c call \
compare-dirs --old-crs DIR_PATH --new-crs DIR_PATH --affected-claims string1 --affected-claims string2 \
added-files
func (m *myModule) example(oldCrs *Directory, newCrs *Directory, affectedClaims []string) []*File {
return dag.
NotifyAndHydrateState().
CompareDirs(oldCrs, newCrs, affectedClaims).
AddedFiles()
}
@function
def example(old_crs: dagger.Directory, new_crs: dagger.Directory, affected_claims: List[str]) -> List[dagger.File]:
return (
dag.notify_and_hydrate_state()
.compare_dirs(old_crs, new_crs, affected_claims)
.added_files()
)
@func()
example(oldCrs: Directory, newCrs: Directory, affectedClaims: string[]): File[] {
return dag
.notifyAndHydrateState()
.compareDirs(oldCrs, newCrs, affectedClaims)
.addedFiles()
}
deletedFiles() 🔗
Return Type
[File ! ] !
Example
dagger -m github.com/prefapp/daggerverse/notify-and-hydrate-state@eab2dd21a2a2d44ce446db5980f9a7809e59478c call \
compare-dirs --old-crs DIR_PATH --new-crs DIR_PATH --affected-claims string1 --affected-claims string2 \
deleted-files
func (m *myModule) example(oldCrs *Directory, newCrs *Directory, affectedClaims []string) []*File {
return dag.
NotifyAndHydrateState().
CompareDirs(oldCrs, newCrs, affectedClaims).
DeletedFiles()
}
@function
def example(old_crs: dagger.Directory, new_crs: dagger.Directory, affected_claims: List[str]) -> List[dagger.File]:
return (
dag.notify_and_hydrate_state()
.compare_dirs(old_crs, new_crs, affected_claims)
.deleted_files()
)
@func()
example(oldCrs: Directory, newCrs: Directory, affectedClaims: string[]): File[] {
return dag
.notifyAndHydrateState()
.compareDirs(oldCrs, newCrs, affectedClaims)
.deletedFiles()
}
modifiedFiles() 🔗
Return Type
[File ! ] !
Example
dagger -m github.com/prefapp/daggerverse/notify-and-hydrate-state@eab2dd21a2a2d44ce446db5980f9a7809e59478c call \
compare-dirs --old-crs DIR_PATH --new-crs DIR_PATH --affected-claims string1 --affected-claims string2 \
modified-files
func (m *myModule) example(oldCrs *Directory, newCrs *Directory, affectedClaims []string) []*File {
return dag.
NotifyAndHydrateState().
CompareDirs(oldCrs, newCrs, affectedClaims).
ModifiedFiles()
}
@function
def example(old_crs: dagger.Directory, new_crs: dagger.Directory, affected_claims: List[str]) -> List[dagger.File]:
return (
dag.notify_and_hydrate_state()
.compare_dirs(old_crs, new_crs, affected_claims)
.modified_files()
)
@func()
example(oldCrs: Directory, newCrs: Directory, affectedClaims: string[]): File[] {
return dag
.notifyAndHydrateState()
.compareDirs(oldCrs, newCrs, affectedClaims)
.modifiedFiles()
}
unmodifiedFiles() 🔗
Return Type
[File ! ] !
Example
dagger -m github.com/prefapp/daggerverse/notify-and-hydrate-state@eab2dd21a2a2d44ce446db5980f9a7809e59478c call \
compare-dirs --old-crs DIR_PATH --new-crs DIR_PATH --affected-claims string1 --affected-claims string2 \
unmodified-files
func (m *myModule) example(oldCrs *Directory, newCrs *Directory, affectedClaims []string) []*File {
return dag.
NotifyAndHydrateState().
CompareDirs(oldCrs, newCrs, affectedClaims).
UnmodifiedFiles()
}
@function
def example(old_crs: dagger.Directory, new_crs: dagger.Directory, affected_claims: List[str]) -> List[dagger.File]:
return (
dag.notify_and_hydrate_state()
.compare_dirs(old_crs, new_crs, affected_claims)
.unmodified_files()
)
@func()
example(oldCrs: Directory, newCrs: Directory, affectedClaims: string[]): File[] {
return dag
.notifyAndHydrateState()
.compareDirs(oldCrs, newCrs, affectedClaims)
.unmodifiedFiles()
}
NotifyAndHydrateStateMetadata 🔗
name() 🔗
Return Type
String !
Example
Function NotifyAndHydrateStateMetadata.name is not accessible from the notify-and-hydrate-state module
Function NotifyAndHydrateStateMetadata.name is not accessible from the notify-and-hydrate-state module
Function NotifyAndHydrateStateMetadata.name is not accessible from the notify-and-hydrate-state module
Function NotifyAndHydrateStateMetadata.name is not accessible from the notify-and-hydrate-state module