@memberjunction/core-entities 2.60.0 → 2.61.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.
@@ -1627,6 +1627,7 @@ export declare const CompanyIntegrationRecordMapSchema: z.ZodObject<{
1627
1627
  EntityRecordID: z.ZodString;
1628
1628
  __mj_CreatedAt: z.ZodDate;
1629
1629
  __mj_UpdatedAt: z.ZodDate;
1630
+ CompanyIntegration: z.ZodString;
1630
1631
  Entity: z.ZodString;
1631
1632
  }, "strip", z.ZodTypeAny, {
1632
1633
  ID?: string;
@@ -1637,6 +1638,7 @@ export declare const CompanyIntegrationRecordMapSchema: z.ZodObject<{
1637
1638
  CompanyIntegrationID?: string;
1638
1639
  ExternalSystemRecordID?: string;
1639
1640
  EntityRecordID?: string;
1641
+ CompanyIntegration?: string;
1640
1642
  }, {
1641
1643
  ID?: string;
1642
1644
  __mj_CreatedAt?: Date;
@@ -1646,6 +1648,7 @@ export declare const CompanyIntegrationRecordMapSchema: z.ZodObject<{
1646
1648
  CompanyIntegrationID?: string;
1647
1649
  ExternalSystemRecordID?: string;
1648
1650
  EntityRecordID?: string;
1651
+ CompanyIntegration?: string;
1649
1652
  }>;
1650
1653
  export type CompanyIntegrationRecordMapEntityType = z.infer<typeof CompanyIntegrationRecordMapSchema>;
1651
1654
  /**
@@ -1799,6 +1802,7 @@ export declare const CompanyIntegrationSchema: z.ZodObject<{
1799
1802
  CustomAttribute1: z.ZodNullable<z.ZodString>;
1800
1803
  __mj_CreatedAt: z.ZodDate;
1801
1804
  __mj_UpdatedAt: z.ZodDate;
1805
+ Name: z.ZodString;
1802
1806
  Company: z.ZodString;
1803
1807
  Integration: z.ZodString;
1804
1808
  DriverClassName: z.ZodNullable<z.ZodString>;
@@ -1810,6 +1814,7 @@ export declare const CompanyIntegrationSchema: z.ZodObject<{
1810
1814
  ID?: string;
1811
1815
  __mj_CreatedAt?: Date;
1812
1816
  __mj_UpdatedAt?: Date;
1817
+ Name?: string;
1813
1818
  IsActive?: boolean;
1814
1819
  DriverImportPath?: string;
1815
1820
  Integration?: string;
@@ -1833,6 +1838,7 @@ export declare const CompanyIntegrationSchema: z.ZodObject<{
1833
1838
  ID?: string;
1834
1839
  __mj_CreatedAt?: Date;
1835
1840
  __mj_UpdatedAt?: Date;
1841
+ Name?: string;
1836
1842
  IsActive?: boolean;
1837
1843
  DriverImportPath?: string;
1838
1844
  Integration?: string;
@@ -2749,6 +2755,7 @@ export declare const EmployeeCompanyIntegrationSchema: z.ZodObject<{
2749
2755
  IsActive: z.ZodBoolean;
2750
2756
  __mj_CreatedAt: z.ZodDate;
2751
2757
  __mj_UpdatedAt: z.ZodDate;
2758
+ CompanyIntegration: z.ZodString;
2752
2759
  }, "strip", z.ZodTypeAny, {
2753
2760
  ID?: string;
2754
2761
  __mj_CreatedAt?: Date;
@@ -2756,6 +2763,7 @@ export declare const EmployeeCompanyIntegrationSchema: z.ZodObject<{
2756
2763
  IsActive?: boolean;
2757
2764
  CompanyIntegrationID?: string;
2758
2765
  ExternalSystemRecordID?: string;
2766
+ CompanyIntegration?: string;
2759
2767
  EmployeeID?: string;
2760
2768
  }, {
2761
2769
  ID?: string;
@@ -2764,6 +2772,7 @@ export declare const EmployeeCompanyIntegrationSchema: z.ZodObject<{
2764
2772
  IsActive?: boolean;
2765
2773
  CompanyIntegrationID?: string;
2766
2774
  ExternalSystemRecordID?: string;
2775
+ CompanyIntegration?: string;
2767
2776
  EmployeeID?: string;
2768
2777
  }>;
2769
2778
  export type EmployeeCompanyIntegrationEntityType = z.infer<typeof EmployeeCompanyIntegrationSchema>;
@@ -4532,6 +4541,7 @@ export declare const ListSchema: z.ZodObject<{
4532
4541
  Entity: z.ZodString;
4533
4542
  User: z.ZodString;
4534
4543
  Category: z.ZodNullable<z.ZodString>;
4544
+ CompanyIntegration: z.ZodNullable<z.ZodString>;
4535
4545
  }, "strip", z.ZodTypeAny, {
4536
4546
  ID?: string;
4537
4547
  __mj_CreatedAt?: Date;
@@ -4546,6 +4556,7 @@ export declare const ListSchema: z.ZodObject<{
4546
4556
  Entity?: string;
4547
4557
  CompanyIntegrationID?: string;
4548
4558
  ExternalSystemRecordID?: string;
4559
+ CompanyIntegration?: string;
4549
4560
  }, {
4550
4561
  ID?: string;
4551
4562
  __mj_CreatedAt?: Date;
@@ -4560,6 +4571,7 @@ export declare const ListSchema: z.ZodObject<{
4560
4571
  Entity?: string;
4561
4572
  CompanyIntegrationID?: string;
4562
4573
  ExternalSystemRecordID?: string;
4574
+ CompanyIntegration?: string;
4563
4575
  }>;
4564
4576
  export type ListEntityType = z.infer<typeof ListSchema>;
4565
4577
  /**
@@ -12567,6 +12579,12 @@ export declare class CompanyIntegrationRecordMapEntity extends BaseEntity<Compan
12567
12579
  */
12568
12580
  get __mj_UpdatedAt(): Date;
12569
12581
  /**
12582
+ * * Field Name: CompanyIntegration
12583
+ * * Display Name: Company Integration
12584
+ * * SQL Data Type: nvarchar(255)
12585
+ */
12586
+ get CompanyIntegration(): string;
12587
+ /**
12570
12588
  * * Field Name: Entity
12571
12589
  * * Display Name: Entity
12572
12590
  * * SQL Data Type: nvarchar(255)
@@ -13046,6 +13064,14 @@ export declare class CompanyIntegrationEntity extends BaseEntity<CompanyIntegrat
13046
13064
  */
13047
13065
  get __mj_UpdatedAt(): Date;
13048
13066
  /**
13067
+ * * Field Name: Name
13068
+ * * Display Name: Name
13069
+ * * SQL Data Type: nvarchar(255)
13070
+ * * Description: User-friendly name for the company integration instance, typically in the format "Company: Integration".
13071
+ */
13072
+ get Name(): string;
13073
+ set Name(value: string);
13074
+ /**
13049
13075
  * * Field Name: Company
13050
13076
  * * SQL Data Type: nvarchar(50)
13051
13077
  */
@@ -15495,6 +15521,12 @@ export declare class EmployeeCompanyIntegrationEntity extends BaseEntity<Employe
15495
15521
  * * Default Value: getutcdate()
15496
15522
  */
15497
15523
  get __mj_UpdatedAt(): Date;
15524
+ /**
15525
+ * * Field Name: CompanyIntegration
15526
+ * * Display Name: Company Integration
15527
+ * * SQL Data Type: nvarchar(255)
15528
+ */
15529
+ get CompanyIntegration(): string;
15498
15530
  }
15499
15531
  /**
15500
15532
  * Employee Roles - strongly typed entity sub-class
@@ -20288,6 +20320,12 @@ export declare class ListEntity extends BaseEntity<ListEntityType> {
20288
20320
  * * SQL Data Type: nvarchar(100)
20289
20321
  */
20290
20322
  get Category(): string | null;
20323
+ /**
20324
+ * * Field Name: CompanyIntegration
20325
+ * * Display Name: Company Integration
20326
+ * * SQL Data Type: nvarchar(255)
20327
+ */
20328
+ get CompanyIntegration(): string | null;
20291
20329
  }
20292
20330
  /**
20293
20331
  * MJ: AI Agent Prompts - strongly typed entity sub-class