@memberjunction/server 2.8.0 → 2.10.0

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.
@@ -10398,6 +10398,9 @@ let CompanyIntegrationRun_ = class CompanyIntegrationRun_ {
10398
10398
  Comments;
10399
10399
  _mj__CreatedAt;
10400
10400
  _mj__UpdatedAt;
10401
+ Status;
10402
+ ErrorLog;
10403
+ ConfigData;
10401
10404
  Integration;
10402
10405
  Company;
10403
10406
  RunByUser;
@@ -10448,6 +10451,19 @@ __decorate([
10448
10451
  MaxLength(10),
10449
10452
  __metadata("design:type", Date)
10450
10453
  ], CompanyIntegrationRun_.prototype, "_mj__UpdatedAt", void 0);
10454
+ __decorate([
10455
+ Field({ description: 'Status of the integration run. Possible values: Pending, In Progress, Success, Failed.' }),
10456
+ MaxLength(40),
10457
+ __metadata("design:type", String)
10458
+ ], CompanyIntegrationRun_.prototype, "Status", void 0);
10459
+ __decorate([
10460
+ Field({ nullable: true, description: 'Optional error log information for the integration run.' }),
10461
+ __metadata("design:type", String)
10462
+ ], CompanyIntegrationRun_.prototype, "ErrorLog", void 0);
10463
+ __decorate([
10464
+ Field({ nullable: true, description: 'Optional configuration data in JSON format for the request that started the integration run for audit purposes.' }),
10465
+ __metadata("design:type", String)
10466
+ ], CompanyIntegrationRun_.prototype, "ConfigData", void 0);
10451
10467
  __decorate([
10452
10468
  Field(),
10453
10469
  MaxLength(200),
@@ -10486,6 +10502,9 @@ let CreateCompanyIntegrationRunInput = class CreateCompanyIntegrationRunInput {
10486
10502
  EndedAt;
10487
10503
  TotalRecords;
10488
10504
  Comments;
10505
+ Status;
10506
+ ErrorLog;
10507
+ ConfigData;
10489
10508
  };
10490
10509
  __decorate([
10491
10510
  Field(),
@@ -10511,6 +10530,18 @@ __decorate([
10511
10530
  Field({ nullable: true }),
10512
10531
  __metadata("design:type", String)
10513
10532
  ], CreateCompanyIntegrationRunInput.prototype, "Comments", void 0);
10533
+ __decorate([
10534
+ Field(),
10535
+ __metadata("design:type", String)
10536
+ ], CreateCompanyIntegrationRunInput.prototype, "Status", void 0);
10537
+ __decorate([
10538
+ Field({ nullable: true }),
10539
+ __metadata("design:type", String)
10540
+ ], CreateCompanyIntegrationRunInput.prototype, "ErrorLog", void 0);
10541
+ __decorate([
10542
+ Field({ nullable: true }),
10543
+ __metadata("design:type", String)
10544
+ ], CreateCompanyIntegrationRunInput.prototype, "ConfigData", void 0);
10514
10545
  CreateCompanyIntegrationRunInput = __decorate([
10515
10546
  InputType()
10516
10547
  ], CreateCompanyIntegrationRunInput);
@@ -10523,6 +10554,9 @@ let UpdateCompanyIntegrationRunInput = class UpdateCompanyIntegrationRunInput {
10523
10554
  EndedAt;
10524
10555
  TotalRecords;
10525
10556
  Comments;
10557
+ Status;
10558
+ ErrorLog;
10559
+ ConfigData;
10526
10560
  OldValues___;
10527
10561
  };
10528
10562
  __decorate([
@@ -10553,6 +10587,18 @@ __decorate([
10553
10587
  Field({ nullable: true }),
10554
10588
  __metadata("design:type", String)
10555
10589
  ], UpdateCompanyIntegrationRunInput.prototype, "Comments", void 0);
10590
+ __decorate([
10591
+ Field(),
10592
+ __metadata("design:type", String)
10593
+ ], UpdateCompanyIntegrationRunInput.prototype, "Status", void 0);
10594
+ __decorate([
10595
+ Field({ nullable: true }),
10596
+ __metadata("design:type", String)
10597
+ ], UpdateCompanyIntegrationRunInput.prototype, "ErrorLog", void 0);
10598
+ __decorate([
10599
+ Field({ nullable: true }),
10600
+ __metadata("design:type", String)
10601
+ ], UpdateCompanyIntegrationRunInput.prototype, "ConfigData", void 0);
10556
10602
  __decorate([
10557
10603
  Field(() => [KeyValuePairInput], { nullable: true }),
10558
10604
  __metadata("design:type", Array)
@@ -22396,6 +22442,7 @@ let DatasetItem_ = class DatasetItem_ {
22396
22442
  Description;
22397
22443
  _mj__CreatedAt;
22398
22444
  _mj__UpdatedAt;
22445
+ Columns;
22399
22446
  Dataset;
22400
22447
  Entity;
22401
22448
  };
@@ -22446,6 +22493,10 @@ __decorate([
22446
22493
  MaxLength(10),
22447
22494
  __metadata("design:type", Date)
22448
22495
  ], DatasetItem_.prototype, "_mj__UpdatedAt", void 0);
22496
+ __decorate([
22497
+ Field({ nullable: true, description: 'Optional column to store a comma-delimited list of columns for the DatasetItem' }),
22498
+ __metadata("design:type", String)
22499
+ ], DatasetItem_.prototype, "Columns", void 0);
22449
22500
  __decorate([
22450
22501
  Field(),
22451
22502
  MaxLength(200),