merchi_sdk_ts 1.7.7 → 1.7.8

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.
@@ -214,6 +214,18 @@ var Domain = /** @class */ (function (_super) {
214
214
  Domain.property({ type: String }),
215
215
  __metadata("design:type", String)
216
216
  ], Domain.prototype, "googleMerchantId", void 0);
217
+ __decorate([
218
+ Domain.property({ type: Boolean }),
219
+ __metadata("design:type", Boolean)
220
+ ], Domain.prototype, "googleProductReviewsFeedEnabled", void 0);
221
+ __decorate([
222
+ Domain.property({ type: String }),
223
+ __metadata("design:type", Object)
224
+ ], Domain.prototype, "googleProductReviewsFeedToken", void 0);
225
+ __decorate([
226
+ Domain.property({ type: String }),
227
+ __metadata("design:type", Object)
228
+ ], Domain.prototype, "googleProductReviewsFeedUrl", void 0);
217
229
  __decorate([
218
230
  Domain.property({ type: String }),
219
231
  __metadata("design:type", Object)
@@ -189,6 +189,10 @@ var ProductReview = /** @class */ (function (_super) {
189
189
  ProductReview.property({ type: Number }),
190
190
  __metadata("design:type", Number)
191
191
  ], ProductReview.prototype, "authorUserId", void 0);
192
+ __decorate([
193
+ ProductReview.property({ type: String }),
194
+ __metadata("design:type", Object)
195
+ ], ProductReview.prototype, "authorName", void 0);
192
196
  __decorate([
193
197
  ProductReview.property({ type: 'Job' }),
194
198
  __metadata("design:type", Function)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "merchi_sdk_ts",
3
- "version": "1.7.7",
3
+ "version": "1.7.8",
4
4
  "main": "dist/index.js",
5
5
  "type": "module",
6
6
  "repository": "git@github.com:merchisdk/merchi_sdk_ts.git",
@@ -147,6 +147,15 @@ export class Domain extends Entity {
147
147
  @Domain.property({type: String})
148
148
  public googleMerchantId?: string;
149
149
 
150
+ @Domain.property({type: Boolean})
151
+ public googleProductReviewsFeedEnabled?: boolean;
152
+
153
+ @Domain.property({type: String})
154
+ public googleProductReviewsFeedToken?: string | null;
155
+
156
+ @Domain.property({type: String})
157
+ public googleProductReviewsFeedUrl?: string | null;
158
+
150
159
  @Domain.property({type: String})
151
160
  public socialBitchute?: string | null;
152
161
 
@@ -45,6 +45,9 @@ export class ProductReview extends Entity {
45
45
  @ProductReview.property({ type: Number })
46
46
  public authorUserId?: number;
47
47
 
48
+ @ProductReview.property({ type: String })
49
+ public authorName?: string | null;
50
+
48
51
  @ProductReview.property({ type: 'Job' })
49
52
  public job?: Job;
50
53