postiz/libraries/nestjs-libraries/src/temporal/temporal.search.attribute.ts

15 lines
287 B
TypeScript

import {
defineSearchAttributeKey,
SearchAttributeType,
} from '@temporalio/common';
export const organizationId = defineSearchAttributeKey(
'organizationId',
SearchAttributeType.TEXT
);
export const postId = defineSearchAttributeKey(
'postId',
SearchAttributeType.TEXT
);