Skip to content

Rulvar API reference


Rulvar API reference / @rulvar/effects / EffectLookupAnswer

Type Alias: EffectLookupAnswer

ts
type EffectLookupAnswer = 
  | {
  found: true;
  receipt: EffectReceiptObservation;
}
  | {
  acceptanceClosed: boolean;
  found: false;
};

Defined in: packages/effects/src/adapter.ts:77

Union Members

Type Literal

ts
{
  found: true;
  receipt: EffectReceiptObservation;
}

Type Literal

ts
{
  acceptanceClosed: boolean;
  found: false;
}
NameTypeDescriptionDefined in
acceptanceClosedbooleanTrue only when the negative is provider-enforced FINAL: the specific effect is not accepted and can no longer BE accepted (RFC section 6). An eventually consistent miss is false.packages/effects/src/adapter.ts:86
foundfalse-packages/effects/src/adapter.ts:80