Spaces:
Build error
Build error
File size: 485 Bytes
d9494a5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | import { computeDeterministicUuid } from '@/application/deterministic-identifier/compute-deterministic-uuid.util';
// A logic function is identified by its name within its application.
export const getLogicFunctionUniversalIdentifier = ({
applicationUniversalIdentifier,
name,
}: {
applicationUniversalIdentifier: string;
name: string;
}): string =>
computeDeterministicUuid({
entityNamespace: 'logicFunction',
value: name,
applicationUniversalIdentifier,
});
|