@memberjunction/core-entities 2.9.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.
@@ -1279,6 +1279,9 @@ export declare const CompanyIntegrationRunSchema: z.ZodObject<{
1279
1279
  Comments: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1280
1280
  __mj_CreatedAt: z.ZodDate;
1281
1281
  __mj_UpdatedAt: z.ZodDate;
1282
+ Status: z.ZodUnion<[z.ZodLiteral<"In Progress">, z.ZodLiteral<"Success">, z.ZodLiteral<"Pending">, z.ZodLiteral<"Failed">]>;
1283
+ ErrorLog: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1284
+ ConfigData: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1282
1285
  Integration: z.ZodString;
1283
1286
  Company: z.ZodString;
1284
1287
  RunByUser: z.ZodString;
@@ -1287,11 +1290,14 @@ export declare const CompanyIntegrationRunSchema: z.ZodObject<{
1287
1290
  Comments?: string;
1288
1291
  __mj_CreatedAt?: Date;
1289
1292
  __mj_UpdatedAt?: Date;
1293
+ Status?: "Pending" | "Success" | "Failed" | "In Progress";
1290
1294
  StartedAt?: Date;
1291
1295
  EndedAt?: Date;
1292
1296
  CompanyIntegrationID?: string;
1293
1297
  RunByUserID?: string;
1294
1298
  TotalRecords?: number;
1299
+ ErrorLog?: string;
1300
+ ConfigData?: string;
1295
1301
  Integration?: string;
1296
1302
  Company?: string;
1297
1303
  RunByUser?: string;
@@ -1300,11 +1306,14 @@ export declare const CompanyIntegrationRunSchema: z.ZodObject<{
1300
1306
  Comments?: string;
1301
1307
  __mj_CreatedAt?: Date;
1302
1308
  __mj_UpdatedAt?: Date;
1309
+ Status?: "Pending" | "Success" | "Failed" | "In Progress";
1303
1310
  StartedAt?: Date;
1304
1311
  EndedAt?: Date;
1305
1312
  CompanyIntegrationID?: string;
1306
1313
  RunByUserID?: string;
1307
1314
  TotalRecords?: number;
1315
+ ErrorLog?: string;
1316
+ ConfigData?: string;
1308
1317
  Integration?: string;
1309
1318
  Company?: string;
1310
1319
  RunByUser?: string;
@@ -4529,6 +4538,7 @@ export declare const RecordChangeSchema: z.ZodObject<{
4529
4538
  EntityID?: string;
4530
4539
  Entity?: string;
4531
4540
  RecordID?: string;
4541
+ ErrorLog?: string;
4532
4542
  Integration?: string;
4533
4543
  IntegrationID?: string;
4534
4544
  Source?: "Internal" | "External";
@@ -4536,7 +4546,6 @@ export declare const RecordChangeSchema: z.ZodObject<{
4536
4546
  ChangesJSON?: string;
4537
4547
  ChangesDescription?: string;
4538
4548
  FullRecordJSON?: string;
4539
- ErrorLog?: string;
4540
4549
  ReplayRunID?: string;
4541
4550
  CreatedAt?: Date;
4542
4551
  UpdatedAt?: Date;
@@ -4550,6 +4559,7 @@ export declare const RecordChangeSchema: z.ZodObject<{
4550
4559
  EntityID?: string;
4551
4560
  Entity?: string;
4552
4561
  RecordID?: string;
4562
+ ErrorLog?: string;
4553
4563
  Integration?: string;
4554
4564
  IntegrationID?: string;
4555
4565
  Source?: "Internal" | "External";
@@ -4557,7 +4567,6 @@ export declare const RecordChangeSchema: z.ZodObject<{
4557
4567
  ChangesJSON?: string;
4558
4568
  ChangesDescription?: string;
4559
4569
  FullRecordJSON?: string;
4560
- ErrorLog?: string;
4561
4570
  ReplayRunID?: string;
4562
4571
  CreatedAt?: Date;
4563
4572
  UpdatedAt?: Date;
@@ -9747,6 +9756,37 @@ export declare class CompanyIntegrationRunEntity extends BaseEntity<CompanyInteg
9747
9756
  */
9748
9757
  get __mj_UpdatedAt(): Date;
9749
9758
  /**
9759
+ * * Field Name: Status
9760
+ * * Display Name: Status
9761
+ * * SQL Data Type: nvarchar(20)
9762
+ * * Default Value: Pending
9763
+ * * Value List Type: List
9764
+ * * Possible Values
9765
+ * * In Progress
9766
+ * * Success
9767
+ * * Pending
9768
+ * * Failed
9769
+ * * Description: Status of the integration run. Possible values: Pending, In Progress, Success, Failed.
9770
+ */
9771
+ get Status(): 'In Progress' | 'Success' | 'Pending' | 'Failed';
9772
+ set Status(value: 'In Progress' | 'Success' | 'Pending' | 'Failed');
9773
+ /**
9774
+ * * Field Name: ErrorLog
9775
+ * * Display Name: Error Log
9776
+ * * SQL Data Type: nvarchar(MAX)
9777
+ * * Description: Optional error log information for the integration run.
9778
+ */
9779
+ get ErrorLog(): string | null;
9780
+ set ErrorLog(value: string | null);
9781
+ /**
9782
+ * * Field Name: ConfigData
9783
+ * * Display Name: Config Data
9784
+ * * SQL Data Type: nvarchar(MAX)
9785
+ * * Description: Optional configuration data in JSON format for the request that started the integration run for audit purposes.
9786
+ */
9787
+ get ConfigData(): string | null;
9788
+ set ConfigData(value: string | null);
9789
+ /**
9750
9790
  * * Field Name: Integration
9751
9791
  * * Display Name: Integration
9752
9792
  * * SQL Data Type: nvarchar(100)