Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 | 94x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | // Taxonomy API - Public and Admin endpoints
import { request } from "./base";
// Taxonomy Types
export type BusinessType = {
id: string;
name: string;
description: string | null;
icon: string | null;
sortOrder: number;
isActive: boolean;
dateCreated: string;
};
export type TimelineCategory = {
id: string;
name: string;
description: string | null;
sortOrder: number;
isActive: boolean;
dateCreated: string;
};
export type CustomerSegment = {
id: string;
name: string;
description: string | null;
priceIndicator: string | null;
sortOrder: number;
isActive: boolean;
dateCreated: string;
};
export type ProjectScale = {
id: string;
name: string;
description: string | null;
sortOrder: number;
isActive: boolean;
dateCreated: string;
};
export type ServiceCategory = {
id: string;
name: string;
parentId: string | null;
icon: string | null;
sortOrder: number;
isActive: boolean;
dateCreated: string;
children?: ServiceCategory[];
};
export type MaterialTag = {
id: string;
name: string;
category: "core" | "finish" | "hardware";
sortOrder: number;
isActive: boolean;
dateCreated: string;
};
export type Brand = {
id: string;
name: string;
logoUrl: string | null;
category:
| "hardware"
| "laminates"
| "plywood_boards"
| "kitchen_appliances"
| "modular_systems"
| "paints"
| "sanitaryware";
websiteUrl: string | null;
sortOrder: number;
isActive: boolean;
dateCreated: string;
};
export type City = {
id: string;
name: string;
state: string;
sortOrder: number;
isActive: boolean;
dateCreated: string;
};
export type Zone = {
id: string;
cityId: string;
name: string;
sortOrder: number;
isActive: boolean;
dateCreated: string;
};
export type Locality = {
id: string;
zoneId: string;
name: string;
pinCodes: string[] | null;
sortOrder: number;
isActive: boolean;
dateCreated: string;
};
export type RoomType = {
code: string;
displayName: string;
displayNameHindi: string | null;
icon: string | null;
sortOrder: number;
isActive: boolean;
dateCreated: string;
};
// Generic taxonomy item type (union of all taxonomy types)
export type TaxonomyItem =
| BusinessType
| TimelineCategory
| CustomerSegment
| ProjectScale
| ServiceCategory
| MaterialTag
| Brand
| City
| Zone
| Locality;
// Public Taxonomy API (no auth required)
export const taxonomyApi = {
async getBusinessTypes() {
return request<BusinessType[]>(`/api/taxonomy/business-types`);
},
async getTimelineCategories() {
return request<TimelineCategory[]>(`/api/taxonomy/timeline-categories`);
},
// Alias for onboarding steps that use "capabilities" terminology
async getTimelineCapabilities() {
return request<TimelineCategory[]>(`/api/taxonomy/timeline-categories`);
},
async getCustomerSegments() {
return request<CustomerSegment[]>(`/api/taxonomy/customer-segments`);
},
async getProjectScales() {
return request<ProjectScale[]>(`/api/taxonomy/project-scales`);
},
async getServiceCategories() {
return request<ServiceCategory[]>(`/api/taxonomy/service-categories`);
},
async getMaterialTags() {
return request<Record<string, MaterialTag[]>>(
`/api/taxonomy/material-tags`,
);
},
async getBrands() {
return request<Record<string, Brand[]>>(`/api/taxonomy/brands`);
},
async getCities() {
return request<City[]>(`/api/taxonomy/cities`);
},
async getZones(cityId: string) {
return request<Zone[]>(`/api/taxonomy/cities/${cityId}/zones`);
},
async getLocalities(zoneId: string) {
return request<Locality[]>(`/api/taxonomy/zones/${zoneId}/localities`);
},
async getLocalitiesByCity(cityId: string) {
return request<Locality[]>(`/api/taxonomy/cities/${cityId}/localities`);
},
async getRoomTypes() {
return request<RoomType[]>(`/api/taxonomy/room-types`);
},
};
|