* Get public profiles for directory
(options: {
search?: string;
offerings?: MemberOffering[];
markets?: string[];
limit?: number;
offset?: number;
} = {})
| 347 | * Get public profiles for directory |
| 348 | */ |
| 349 | async getPublicProfiles(options: { |
| 350 | search?: string; |
| 351 | offerings?: MemberOffering[]; |
| 352 | markets?: string[]; |
| 353 | limit?: number; |
| 354 | offset?: number; |
| 355 | } = {}): Promise<MemberProfile[]> { |
| 356 | return this.listProfiles({ |
| 357 | is_public: true, |
| 358 | ...options, |
| 359 | }); |
| 360 | } |
| 361 | |
| 362 | /** |
| 363 | * Check if slug is available |
no test coverage detected