@memberjunction/core-entities 2.5.0 → 2.5.2
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.
|
@@ -1879,6 +1879,14 @@ exports.CompanyIntegrationRunSchema = zod_1.z.object({
|
|
|
1879
1879
|
* * Display Name: Updated At
|
|
1880
1880
|
* * SQL Data Type: datetimeoffset
|
|
1881
1881
|
* * Default Value: getutcdate()`),
|
|
1882
|
+
Integration: zod_1.z.string().describe(`
|
|
1883
|
+
* * Field Name: Integration
|
|
1884
|
+
* * Display Name: Integration
|
|
1885
|
+
* * SQL Data Type: nvarchar(100)`),
|
|
1886
|
+
Company: zod_1.z.string().describe(`
|
|
1887
|
+
* * Field Name: Company
|
|
1888
|
+
* * Display Name: Company
|
|
1889
|
+
* * SQL Data Type: nvarchar(50)`),
|
|
1882
1890
|
RunByUser: zod_1.z.string().describe(`
|
|
1883
1891
|
* * Field Name: RunByUser
|
|
1884
1892
|
* * Display Name: Run By User
|
|
@@ -2139,23 +2147,19 @@ exports.ContentItemSchema = zod_1.z.object({
|
|
|
2139
2147
|
ContentSource: zod_1.z.string().nullish().describe(`
|
|
2140
2148
|
* * Field Name: ContentSource
|
|
2141
2149
|
* * Display Name: Content Source
|
|
2142
|
-
* * SQL Data Type: nvarchar(255)
|
|
2143
|
-
* * Default Value: null`),
|
|
2150
|
+
* * SQL Data Type: nvarchar(255)`),
|
|
2144
2151
|
ContentType: zod_1.z.string().describe(`
|
|
2145
2152
|
* * Field Name: ContentType
|
|
2146
2153
|
* * Display Name: Content Type
|
|
2147
|
-
* * SQL Data Type: nvarchar(255)
|
|
2148
|
-
* * Default Value: null`),
|
|
2154
|
+
* * SQL Data Type: nvarchar(255)`),
|
|
2149
2155
|
ContentSourceType: zod_1.z.string().describe(`
|
|
2150
2156
|
* * Field Name: ContentSourceType
|
|
2151
2157
|
* * Display Name: Content Source Type
|
|
2152
|
-
* * SQL Data Type: nvarchar(255)
|
|
2153
|
-
* * Default Value: null`),
|
|
2158
|
+
* * SQL Data Type: nvarchar(255)`),
|
|
2154
2159
|
ContentFileType: zod_1.z.string().describe(`
|
|
2155
2160
|
* * Field Name: ContentFileType
|
|
2156
2161
|
* * Display Name: Content File Type
|
|
2157
|
-
* * SQL Data Type: nvarchar(255)
|
|
2158
|
-
* * Default Value: null`),
|
|
2162
|
+
* * SQL Data Type: nvarchar(255)`),
|
|
2159
2163
|
});
|
|
2160
2164
|
/**
|
|
2161
2165
|
* zod schema definition for the entity Content Process Runs
|
|
@@ -2352,18 +2356,15 @@ exports.ContentSourceSchema = zod_1.z.object({
|
|
|
2352
2356
|
ContentType: zod_1.z.string().describe(`
|
|
2353
2357
|
* * Field Name: ContentType
|
|
2354
2358
|
* * Display Name: Content Type
|
|
2355
|
-
* * SQL Data Type: nvarchar(255)
|
|
2356
|
-
* * Default Value: null`),
|
|
2359
|
+
* * SQL Data Type: nvarchar(255)`),
|
|
2357
2360
|
ContentSourceType: zod_1.z.string().describe(`
|
|
2358
2361
|
* * Field Name: ContentSourceType
|
|
2359
2362
|
* * Display Name: Content Source Type
|
|
2360
|
-
* * SQL Data Type: nvarchar(255)
|
|
2361
|
-
* * Default Value: null`),
|
|
2363
|
+
* * SQL Data Type: nvarchar(255)`),
|
|
2362
2364
|
ContentFileType: zod_1.z.string().describe(`
|
|
2363
2365
|
* * Field Name: ContentFileType
|
|
2364
2366
|
* * Display Name: Content File Type
|
|
2365
|
-
* * SQL Data Type: nvarchar(255)
|
|
2366
|
-
* * Default Value: null`),
|
|
2367
|
+
* * SQL Data Type: nvarchar(255)`),
|
|
2367
2368
|
});
|
|
2368
2369
|
/**
|
|
2369
2370
|
* zod schema definition for the entity Content Type Attributes
|
|
@@ -13582,6 +13583,22 @@ let CompanyIntegrationRunEntity = class CompanyIntegrationRunEntity extends core
|
|
|
13582
13583
|
return this.Get('__mj_UpdatedAt');
|
|
13583
13584
|
}
|
|
13584
13585
|
/**
|
|
13586
|
+
* * Field Name: Integration
|
|
13587
|
+
* * Display Name: Integration
|
|
13588
|
+
* * SQL Data Type: nvarchar(100)
|
|
13589
|
+
*/
|
|
13590
|
+
get Integration() {
|
|
13591
|
+
return this.Get('Integration');
|
|
13592
|
+
}
|
|
13593
|
+
/**
|
|
13594
|
+
* * Field Name: Company
|
|
13595
|
+
* * Display Name: Company
|
|
13596
|
+
* * SQL Data Type: nvarchar(50)
|
|
13597
|
+
*/
|
|
13598
|
+
get Company() {
|
|
13599
|
+
return this.Get('Company');
|
|
13600
|
+
}
|
|
13601
|
+
/**
|
|
13585
13602
|
* * Field Name: RunByUser
|
|
13586
13603
|
* * Display Name: Run By User
|
|
13587
13604
|
* * SQL Data Type: nvarchar(100)
|
|
@@ -14285,7 +14302,6 @@ let ContentItemEntity = class ContentItemEntity extends core_1.BaseEntity {
|
|
|
14285
14302
|
* * Field Name: ContentSource
|
|
14286
14303
|
* * Display Name: Content Source
|
|
14287
14304
|
* * SQL Data Type: nvarchar(255)
|
|
14288
|
-
* * Default Value: null
|
|
14289
14305
|
*/
|
|
14290
14306
|
get ContentSource() {
|
|
14291
14307
|
return this.Get('ContentSource');
|
|
@@ -14294,7 +14310,6 @@ let ContentItemEntity = class ContentItemEntity extends core_1.BaseEntity {
|
|
|
14294
14310
|
* * Field Name: ContentType
|
|
14295
14311
|
* * Display Name: Content Type
|
|
14296
14312
|
* * SQL Data Type: nvarchar(255)
|
|
14297
|
-
* * Default Value: null
|
|
14298
14313
|
*/
|
|
14299
14314
|
get ContentType() {
|
|
14300
14315
|
return this.Get('ContentType');
|
|
@@ -14303,7 +14318,6 @@ let ContentItemEntity = class ContentItemEntity extends core_1.BaseEntity {
|
|
|
14303
14318
|
* * Field Name: ContentSourceType
|
|
14304
14319
|
* * Display Name: Content Source Type
|
|
14305
14320
|
* * SQL Data Type: nvarchar(255)
|
|
14306
|
-
* * Default Value: null
|
|
14307
14321
|
*/
|
|
14308
14322
|
get ContentSourceType() {
|
|
14309
14323
|
return this.Get('ContentSourceType');
|
|
@@ -14312,7 +14326,6 @@ let ContentItemEntity = class ContentItemEntity extends core_1.BaseEntity {
|
|
|
14312
14326
|
* * Field Name: ContentFileType
|
|
14313
14327
|
* * Display Name: Content File Type
|
|
14314
14328
|
* * SQL Data Type: nvarchar(255)
|
|
14315
|
-
* * Default Value: null
|
|
14316
14329
|
*/
|
|
14317
14330
|
get ContentFileType() {
|
|
14318
14331
|
return this.Get('ContentFileType');
|
|
@@ -14857,7 +14870,6 @@ let ContentSourceEntity = class ContentSourceEntity extends core_1.BaseEntity {
|
|
|
14857
14870
|
* * Field Name: ContentType
|
|
14858
14871
|
* * Display Name: Content Type
|
|
14859
14872
|
* * SQL Data Type: nvarchar(255)
|
|
14860
|
-
* * Default Value: null
|
|
14861
14873
|
*/
|
|
14862
14874
|
get ContentType() {
|
|
14863
14875
|
return this.Get('ContentType');
|
|
@@ -14866,7 +14878,6 @@ let ContentSourceEntity = class ContentSourceEntity extends core_1.BaseEntity {
|
|
|
14866
14878
|
* * Field Name: ContentSourceType
|
|
14867
14879
|
* * Display Name: Content Source Type
|
|
14868
14880
|
* * SQL Data Type: nvarchar(255)
|
|
14869
|
-
* * Default Value: null
|
|
14870
14881
|
*/
|
|
14871
14882
|
get ContentSourceType() {
|
|
14872
14883
|
return this.Get('ContentSourceType');
|
|
@@ -14875,7 +14886,6 @@ let ContentSourceEntity = class ContentSourceEntity extends core_1.BaseEntity {
|
|
|
14875
14886
|
* * Field Name: ContentFileType
|
|
14876
14887
|
* * Display Name: Content File Type
|
|
14877
14888
|
* * SQL Data Type: nvarchar(255)
|
|
14878
|
-
* * Default Value: null
|
|
14879
14889
|
*/
|
|
14880
14890
|
get ContentFileType() {
|
|
14881
14891
|
return this.Get('ContentFileType');
|