@justins-home/api-services 1.2.29 → 1.2.31
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +24 -2
- package/dist/index.d.ts +24 -2
- package/package.json +3 -3
package/dist/index.d.mts
CHANGED
|
@@ -1140,14 +1140,25 @@ declare const admin: {
|
|
|
1140
1140
|
};
|
|
1141
1141
|
}>;
|
|
1142
1142
|
getFeatures: (payload: ApiRequest<"getFeaturesAdmin">) => Promise<{
|
|
1143
|
+
message?: string;
|
|
1144
|
+
event?: string | null;
|
|
1143
1145
|
data?: {
|
|
1144
1146
|
group?: {
|
|
1145
1147
|
id?: number;
|
|
1146
1148
|
name?: string;
|
|
1147
1149
|
description?: string;
|
|
1148
1150
|
display_order?: number;
|
|
1151
|
+
applicable_verticals?: string[];
|
|
1149
1152
|
};
|
|
1150
|
-
features?:
|
|
1153
|
+
features?: {
|
|
1154
|
+
id?: number;
|
|
1155
|
+
category_id?: number;
|
|
1156
|
+
name?: string;
|
|
1157
|
+
description?: string;
|
|
1158
|
+
icon?: string | null;
|
|
1159
|
+
is_active?: boolean;
|
|
1160
|
+
is_filterable?: boolean;
|
|
1161
|
+
}[];
|
|
1151
1162
|
}[];
|
|
1152
1163
|
}>;
|
|
1153
1164
|
createFeature: (payload: ApiRequest<"createFeature">) => Promise<{
|
|
@@ -2042,14 +2053,25 @@ declare const github: {
|
|
|
2042
2053
|
|
|
2043
2054
|
declare const feature: {
|
|
2044
2055
|
get: (query?: Expand<ApiRequest<"getFeature">>) => Promise<{
|
|
2056
|
+
message?: string;
|
|
2057
|
+
event?: string | null;
|
|
2045
2058
|
data?: {
|
|
2046
2059
|
group?: {
|
|
2047
2060
|
id?: number;
|
|
2048
2061
|
name?: string;
|
|
2049
2062
|
description?: string;
|
|
2050
2063
|
display_order?: number;
|
|
2064
|
+
applicable_verticals?: string[];
|
|
2051
2065
|
};
|
|
2052
|
-
features?:
|
|
2066
|
+
features?: {
|
|
2067
|
+
id?: number;
|
|
2068
|
+
category_id?: number;
|
|
2069
|
+
name?: string;
|
|
2070
|
+
description?: string;
|
|
2071
|
+
icon?: string | null;
|
|
2072
|
+
is_active?: boolean;
|
|
2073
|
+
is_filterable?: boolean;
|
|
2074
|
+
}[];
|
|
2053
2075
|
}[];
|
|
2054
2076
|
}>;
|
|
2055
2077
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -1140,14 +1140,25 @@ declare const admin: {
|
|
|
1140
1140
|
};
|
|
1141
1141
|
}>;
|
|
1142
1142
|
getFeatures: (payload: ApiRequest<"getFeaturesAdmin">) => Promise<{
|
|
1143
|
+
message?: string;
|
|
1144
|
+
event?: string | null;
|
|
1143
1145
|
data?: {
|
|
1144
1146
|
group?: {
|
|
1145
1147
|
id?: number;
|
|
1146
1148
|
name?: string;
|
|
1147
1149
|
description?: string;
|
|
1148
1150
|
display_order?: number;
|
|
1151
|
+
applicable_verticals?: string[];
|
|
1149
1152
|
};
|
|
1150
|
-
features?:
|
|
1153
|
+
features?: {
|
|
1154
|
+
id?: number;
|
|
1155
|
+
category_id?: number;
|
|
1156
|
+
name?: string;
|
|
1157
|
+
description?: string;
|
|
1158
|
+
icon?: string | null;
|
|
1159
|
+
is_active?: boolean;
|
|
1160
|
+
is_filterable?: boolean;
|
|
1161
|
+
}[];
|
|
1151
1162
|
}[];
|
|
1152
1163
|
}>;
|
|
1153
1164
|
createFeature: (payload: ApiRequest<"createFeature">) => Promise<{
|
|
@@ -2042,14 +2053,25 @@ declare const github: {
|
|
|
2042
2053
|
|
|
2043
2054
|
declare const feature: {
|
|
2044
2055
|
get: (query?: Expand<ApiRequest<"getFeature">>) => Promise<{
|
|
2056
|
+
message?: string;
|
|
2057
|
+
event?: string | null;
|
|
2045
2058
|
data?: {
|
|
2046
2059
|
group?: {
|
|
2047
2060
|
id?: number;
|
|
2048
2061
|
name?: string;
|
|
2049
2062
|
description?: string;
|
|
2050
2063
|
display_order?: number;
|
|
2064
|
+
applicable_verticals?: string[];
|
|
2051
2065
|
};
|
|
2052
|
-
features?:
|
|
2066
|
+
features?: {
|
|
2067
|
+
id?: number;
|
|
2068
|
+
category_id?: number;
|
|
2069
|
+
name?: string;
|
|
2070
|
+
description?: string;
|
|
2071
|
+
icon?: string | null;
|
|
2072
|
+
is_active?: boolean;
|
|
2073
|
+
is_filterable?: boolean;
|
|
2074
|
+
}[];
|
|
2053
2075
|
}[];
|
|
2054
2076
|
}>;
|
|
2055
2077
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@justins-home/api-services",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.31",
|
|
4
4
|
"private": false,
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -16,8 +16,8 @@
|
|
|
16
16
|
"dist"
|
|
17
17
|
],
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@justins-home/http-client": "1.1.
|
|
20
|
-
"@justins-home/types": "1.1.
|
|
19
|
+
"@justins-home/http-client": "1.1.25",
|
|
20
|
+
"@justins-home/types": "1.1.25"
|
|
21
21
|
},
|
|
22
22
|
"publishConfig": {
|
|
23
23
|
"access": "public"
|