@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.
@@ -1109,22 +1109,24 @@ export type OfferServerResponse = {
1109
1109
  event: string;
1110
1110
  };
1111
1111
  export type TestimonialInput = {
1112
- name?: string;
1113
- position?: string;
1114
- company?: string;
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
- name: string;
1124
- position: string;
1125
- company: string;
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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hubs101/js-api-skd-client",
3
- "version": "1.0.10593",
3
+ "version": "1.0.10595",
4
4
  "author": "Liveware",
5
5
  "scripts": {
6
6
  "test": "jest --config jestconfig.json",