GraphReFlyTS

API Reference

verificationPlanChanged()

Creates a verification plan changed.

Import

import { verificationPlanChanged } from "@graphrefly/ts/solutions/work-item/scheduling";

Signature

function verificationPlanChanged(
	workItemId: string,
	verificationPlan: VerificationPlan<TInput>,
	opts: Partial<
		Omit<VerificationPlanChanged<TInput>, "kind" | "eventId" | "workItemId" | "verificationPlan">
	> & {
		readonly eventId: string;
	},
): VerificationPlanChanged<TInput>

Parameters

ParameterTypeDescription
workItemIdstringStable identifier used by the emitted record.
verificationPlanVerificationPlan<TInput>verification plan value used by the helper.
optsPartial< Omit<VerificationPlanChanged<TInput>, "kind" | "eventId" | "workItemId" | "verificationPlan"> > & { readonly eventId: string; }Options that configure the helper.

Returns

The verification plan changed result.

Example

import { verificationPlanChanged } from "@graphrefly/ts/solutions/work-item/scheduling";

Source

packages/ts/src/solutions/work-item/scheduling-constructors.ts