@hubs101/js-api-skd-client 1.0.10593 → 1.0.10595
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/lib/api/event/types.d.ts +10 -8
- package/package.json +1 -1
package/lib/api/event/types.d.ts
CHANGED
|
@@ -1109,22 +1109,24 @@ export type OfferServerResponse = {
|
|
|
1109
1109
|
event: string;
|
|
1110
1110
|
};
|
|
1111
1111
|
export type TestimonialInput = {
|
|
1112
|
-
|
|
1113
|
-
|
|
1114
|
-
|
|
1112
|
+
first_name?: string;
|
|
1113
|
+
last_name?: string;
|
|
1114
|
+
job_title?: string;
|
|
1115
|
+
company_logo?: File | string;
|
|
1116
|
+
company_name?: string;
|
|
1115
1117
|
content?: string;
|
|
1116
|
-
image?: File | string;
|
|
1117
1118
|
rating?: number;
|
|
1118
1119
|
published?: boolean;
|
|
1119
1120
|
order?: number;
|
|
1120
1121
|
};
|
|
1121
1122
|
export type TestimonialResponse = {
|
|
1122
1123
|
id: string;
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
|
|
1124
|
+
first_name: string;
|
|
1125
|
+
last_name: string;
|
|
1126
|
+
job_title: string;
|
|
1127
|
+
company_logo: string;
|
|
1128
|
+
company_name: string;
|
|
1126
1129
|
content: string;
|
|
1127
|
-
image: string;
|
|
1128
1130
|
rating: number;
|
|
1129
1131
|
published: boolean;
|
|
1130
1132
|
order: number;
|