MCPcopy Index your code
hub / github.com/simstudioai/sim / mapCampaignTag

Function mapCampaignTag

apps/sim/tools/emailbison/utils.ts:170–178  ·  view source on GitHub ↗
(value: unknown)

Source from the content-addressed store, hash-verified

168}
169
170function mapCampaignTag(value: unknown): EmailBisonCampaignTag {
171 const record = toRecord(value)
172
173 return {
174 id: toNullableNumber(record.id),
175 name: toStringOrNull(record.name),
176 default: toNullableBoolean(record.default),
177 }
178}
179
180export function mapTag(value: unknown): EmailBisonTag {
181 const record = toRecord(value)

Callers

nothing calls this directly

Calls 4

toRecordFunction · 0.85
toNullableNumberFunction · 0.85
toNullableBooleanFunction · 0.85
toStringOrNullFunction · 0.70

Tested by

no test coverage detected