@memberjunction/core-entities 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.
@@ -1879,6 +1879,28 @@ exports.CompanyIntegrationRunSchema = zod_1.z.object({
1879
1879
  * * Display Name: Updated At
1880
1880
  * * SQL Data Type: datetimeoffset
1881
1881
  * * Default Value: getutcdate()`),
1882
+ Status: zod_1.z.union([zod_1.z.literal('In Progress'), zod_1.z.literal('Success'), zod_1.z.literal('Pending'), zod_1.z.literal('Failed')]).describe(`
1883
+ * * Field Name: Status
1884
+ * * Display Name: Status
1885
+ * * SQL Data Type: nvarchar(20)
1886
+ * * Default Value: Pending
1887
+ * * Value List Type: List
1888
+ * * Possible Values
1889
+ * * In Progress
1890
+ * * Success
1891
+ * * Pending
1892
+ * * Failed
1893
+ * * Description: Status of the integration run. Possible values: Pending, In Progress, Success, Failed.`),
1894
+ ErrorLog: zod_1.z.string().nullish().describe(`
1895
+ * * Field Name: ErrorLog
1896
+ * * Display Name: Error Log
1897
+ * * SQL Data Type: nvarchar(MAX)
1898
+ * * Description: Optional error log information for the integration run.`),
1899
+ ConfigData: zod_1.z.string().nullish().describe(`
1900
+ * * Field Name: ConfigData
1901
+ * * Display Name: Config Data
1902
+ * * SQL Data Type: nvarchar(MAX)
1903
+ * * Description: Optional configuration data in JSON format for the request that started the integration run for audit purposes.`),
1882
1904
  Integration: zod_1.z.string().describe(`
1883
1905
  * * Field Name: Integration
1884
1906
  * * Display Name: Integration
@@ -2851,6 +2873,11 @@ exports.DatasetItemSchema = zod_1.z.object({
2851
2873
  * * Display Name: Updated At
2852
2874
  * * SQL Data Type: datetimeoffset
2853
2875
  * * Default Value: getutcdate()`),
2876
+ Columns: zod_1.z.string().nullish().describe(`
2877
+ * * Field Name: Columns
2878
+ * * Display Name: Columns
2879
+ * * SQL Data Type: nvarchar(MAX)
2880
+ * * Description: Optional column to store a comma-delimited list of columns for the DatasetItem`),
2854
2881
  Dataset: zod_1.z.string().describe(`
2855
2882
  * * Field Name: Dataset
2856
2883
  * * Display Name: Dataset
@@ -7003,14 +7030,13 @@ exports.ResourcePermissionSchema = zod_1.z.object({
7003
7030
  * * Display Name: Updated At
7004
7031
  * * SQL Data Type: datetimeoffset
7005
7032
  * * Default Value: getutcdate()`),
7006
- Status: zod_1.z.union([zod_1.z.literal('Pending'), zod_1.z.literal('Approved'), zod_1.z.literal('Rejected'), zod_1.z.literal('Revoked'), zod_1.z.literal('Requested')]).describe(`
7033
+ Status: zod_1.z.union([zod_1.z.literal('Approved'), zod_1.z.literal('Rejected'), zod_1.z.literal('Revoked'), zod_1.z.literal('Requested')]).describe(`
7007
7034
  * * Field Name: Status
7008
7035
  * * Display Name: Status
7009
7036
  * * SQL Data Type: nvarchar(20)
7010
7037
  * * Default Value: Requested
7011
7038
  * * Value List Type: List
7012
7039
  * * Possible Values
7013
- * * Pending
7014
7040
  * * Approved
7015
7041
  * * Rejected
7016
7042
  * * Revoked
@@ -13739,6 +13765,49 @@ let CompanyIntegrationRunEntity = class CompanyIntegrationRunEntity extends core
13739
13765
  return this.Get('__mj_UpdatedAt');
13740
13766
  }
13741
13767
  /**
13768
+ * * Field Name: Status
13769
+ * * Display Name: Status
13770
+ * * SQL Data Type: nvarchar(20)
13771
+ * * Default Value: Pending
13772
+ * * Value List Type: List
13773
+ * * Possible Values
13774
+ * * In Progress
13775
+ * * Success
13776
+ * * Pending
13777
+ * * Failed
13778
+ * * Description: Status of the integration run. Possible values: Pending, In Progress, Success, Failed.
13779
+ */
13780
+ get Status() {
13781
+ return this.Get('Status');
13782
+ }
13783
+ set Status(value) {
13784
+ this.Set('Status', value);
13785
+ }
13786
+ /**
13787
+ * * Field Name: ErrorLog
13788
+ * * Display Name: Error Log
13789
+ * * SQL Data Type: nvarchar(MAX)
13790
+ * * Description: Optional error log information for the integration run.
13791
+ */
13792
+ get ErrorLog() {
13793
+ return this.Get('ErrorLog');
13794
+ }
13795
+ set ErrorLog(value) {
13796
+ this.Set('ErrorLog', value);
13797
+ }
13798
+ /**
13799
+ * * Field Name: ConfigData
13800
+ * * Display Name: Config Data
13801
+ * * SQL Data Type: nvarchar(MAX)
13802
+ * * Description: Optional configuration data in JSON format for the request that started the integration run for audit purposes.
13803
+ */
13804
+ get ConfigData() {
13805
+ return this.Get('ConfigData');
13806
+ }
13807
+ set ConfigData(value) {
13808
+ this.Set('ConfigData', value);
13809
+ }
13810
+ /**
13742
13811
  * * Field Name: Integration
13743
13812
  * * Display Name: Integration
13744
13813
  * * SQL Data Type: nvarchar(100)
@@ -16337,6 +16406,18 @@ let DatasetItemEntity = class DatasetItemEntity extends core_1.BaseEntity {
16337
16406
  return this.Get('__mj_UpdatedAt');
16338
16407
  }
16339
16408
  /**
16409
+ * * Field Name: Columns
16410
+ * * Display Name: Columns
16411
+ * * SQL Data Type: nvarchar(MAX)
16412
+ * * Description: Optional column to store a comma-delimited list of columns for the DatasetItem
16413
+ */
16414
+ get Columns() {
16415
+ return this.Get('Columns');
16416
+ }
16417
+ set Columns(value) {
16418
+ this.Set('Columns', value);
16419
+ }
16420
+ /**
16340
16421
  * * Field Name: Dataset
16341
16422
  * * Display Name: Dataset
16342
16423
  * * SQL Data Type: nvarchar(100)
@@ -27224,11 +27305,11 @@ let ResourcePermissionEntity = class ResourcePermissionEntity extends core_1.Bas
27224
27305
  * * Default Value: Requested
27225
27306
  * * Value List Type: List
27226
27307
  * * Possible Values
27227
- * * Requested
27228
27308
  * * Approved
27229
27309
  * * Rejected
27230
27310
  * * Revoked
27231
- * * Description: Status of the resource permission request. Possible values are Requested, Approved, Rejected, or Revoked.
27311
+ * * Requested
27312
+ * * Description: Status of the resource permission request. Possible values are Pending, Approved, Rejected, Revoked, or Requested.
27232
27313
  */
27233
27314
  get Status() {
27234
27315
  return this.Get('Status');