@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.
|
@@ -2536,6 +2536,10 @@ exports.CompanyIntegrationRecordMapSchema = zod_1.z.object({
|
|
|
2536
2536
|
* * Display Name: Updated At
|
|
2537
2537
|
* * SQL Data Type: datetimeoffset
|
|
2538
2538
|
* * Default Value: getutcdate()`),
|
|
2539
|
+
CompanyIntegration: zod_1.z.string().describe(`
|
|
2540
|
+
* * Field Name: CompanyIntegration
|
|
2541
|
+
* * Display Name: Company Integration
|
|
2542
|
+
* * SQL Data Type: nvarchar(255)`),
|
|
2539
2543
|
Entity: zod_1.z.string().describe(`
|
|
2540
2544
|
* * Field Name: Entity
|
|
2541
2545
|
* * Display Name: Entity
|
|
@@ -2797,6 +2801,11 @@ exports.CompanyIntegrationSchema = zod_1.z.object({
|
|
|
2797
2801
|
* * Display Name: Updated At
|
|
2798
2802
|
* * SQL Data Type: datetimeoffset
|
|
2799
2803
|
* * Default Value: getutcdate()`),
|
|
2804
|
+
Name: zod_1.z.string().describe(`
|
|
2805
|
+
* * Field Name: Name
|
|
2806
|
+
* * Display Name: Name
|
|
2807
|
+
* * SQL Data Type: nvarchar(255)
|
|
2808
|
+
* * Description: User-friendly name for the company integration instance, typically in the format "Company: Integration".`),
|
|
2800
2809
|
Company: zod_1.z.string().describe(`
|
|
2801
2810
|
* * Field Name: Company
|
|
2802
2811
|
* * SQL Data Type: nvarchar(50)`),
|
|
@@ -4127,6 +4136,10 @@ exports.EmployeeCompanyIntegrationSchema = zod_1.z.object({
|
|
|
4127
4136
|
* * Display Name: Updated At
|
|
4128
4137
|
* * SQL Data Type: datetimeoffset
|
|
4129
4138
|
* * Default Value: getutcdate()`),
|
|
4139
|
+
CompanyIntegration: zod_1.z.string().describe(`
|
|
4140
|
+
* * Field Name: CompanyIntegration
|
|
4141
|
+
* * Display Name: Company Integration
|
|
4142
|
+
* * SQL Data Type: nvarchar(255)`),
|
|
4130
4143
|
});
|
|
4131
4144
|
/**
|
|
4132
4145
|
* zod schema definition for the entity Employee Roles
|
|
@@ -6817,6 +6830,10 @@ exports.ListSchema = zod_1.z.object({
|
|
|
6817
6830
|
* * Field Name: Category
|
|
6818
6831
|
* * Display Name: Category
|
|
6819
6832
|
* * SQL Data Type: nvarchar(100)`),
|
|
6833
|
+
CompanyIntegration: zod_1.z.string().nullable().describe(`
|
|
6834
|
+
* * Field Name: CompanyIntegration
|
|
6835
|
+
* * Display Name: Company Integration
|
|
6836
|
+
* * SQL Data Type: nvarchar(255)`),
|
|
6820
6837
|
});
|
|
6821
6838
|
/**
|
|
6822
6839
|
* zod schema definition for the entity MJ: AI Agent Prompts
|
|
@@ -18312,6 +18329,14 @@ let CompanyIntegrationRecordMapEntity = class CompanyIntegrationRecordMapEntity
|
|
|
18312
18329
|
return this.Get('__mj_UpdatedAt');
|
|
18313
18330
|
}
|
|
18314
18331
|
/**
|
|
18332
|
+
* * Field Name: CompanyIntegration
|
|
18333
|
+
* * Display Name: Company Integration
|
|
18334
|
+
* * SQL Data Type: nvarchar(255)
|
|
18335
|
+
*/
|
|
18336
|
+
get CompanyIntegration() {
|
|
18337
|
+
return this.Get('CompanyIntegration');
|
|
18338
|
+
}
|
|
18339
|
+
/**
|
|
18315
18340
|
* * Field Name: Entity
|
|
18316
18341
|
* * Display Name: Entity
|
|
18317
18342
|
* * SQL Data Type: nvarchar(255)
|
|
@@ -19001,6 +19026,18 @@ let CompanyIntegrationEntity = class CompanyIntegrationEntity extends core_1.Bas
|
|
|
19001
19026
|
return this.Get('__mj_UpdatedAt');
|
|
19002
19027
|
}
|
|
19003
19028
|
/**
|
|
19029
|
+
* * Field Name: Name
|
|
19030
|
+
* * Display Name: Name
|
|
19031
|
+
* * SQL Data Type: nvarchar(255)
|
|
19032
|
+
* * Description: User-friendly name for the company integration instance, typically in the format "Company: Integration".
|
|
19033
|
+
*/
|
|
19034
|
+
get Name() {
|
|
19035
|
+
return this.Get('Name');
|
|
19036
|
+
}
|
|
19037
|
+
set Name(value) {
|
|
19038
|
+
this.Set('Name', value);
|
|
19039
|
+
}
|
|
19040
|
+
/**
|
|
19004
19041
|
* * Field Name: Company
|
|
19005
19042
|
* * SQL Data Type: nvarchar(50)
|
|
19006
19043
|
*/
|
|
@@ -22468,6 +22505,14 @@ let EmployeeCompanyIntegrationEntity = class EmployeeCompanyIntegrationEntity ex
|
|
|
22468
22505
|
get __mj_UpdatedAt() {
|
|
22469
22506
|
return this.Get('__mj_UpdatedAt');
|
|
22470
22507
|
}
|
|
22508
|
+
/**
|
|
22509
|
+
* * Field Name: CompanyIntegration
|
|
22510
|
+
* * Display Name: Company Integration
|
|
22511
|
+
* * SQL Data Type: nvarchar(255)
|
|
22512
|
+
*/
|
|
22513
|
+
get CompanyIntegration() {
|
|
22514
|
+
return this.Get('CompanyIntegration');
|
|
22515
|
+
}
|
|
22471
22516
|
};
|
|
22472
22517
|
exports.EmployeeCompanyIntegrationEntity = EmployeeCompanyIntegrationEntity;
|
|
22473
22518
|
exports.EmployeeCompanyIntegrationEntity = EmployeeCompanyIntegrationEntity = __decorate([
|
|
@@ -29229,6 +29274,14 @@ let ListEntity = class ListEntity extends core_1.BaseEntity {
|
|
|
29229
29274
|
get Category() {
|
|
29230
29275
|
return this.Get('Category');
|
|
29231
29276
|
}
|
|
29277
|
+
/**
|
|
29278
|
+
* * Field Name: CompanyIntegration
|
|
29279
|
+
* * Display Name: Company Integration
|
|
29280
|
+
* * SQL Data Type: nvarchar(255)
|
|
29281
|
+
*/
|
|
29282
|
+
get CompanyIntegration() {
|
|
29283
|
+
return this.Get('CompanyIntegration');
|
|
29284
|
+
}
|
|
29232
29285
|
};
|
|
29233
29286
|
exports.ListEntity = ListEntity;
|
|
29234
29287
|
exports.ListEntity = ListEntity = __decorate([
|