@memberjunction/core-entities 2.9.0 → 2.11.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
|
|
@@ -13743,6 +13765,49 @@ let CompanyIntegrationRunEntity = class CompanyIntegrationRunEntity extends core
|
|
|
13743
13765
|
return this.Get('__mj_UpdatedAt');
|
|
13744
13766
|
}
|
|
13745
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
|
+
/**
|
|
13746
13811
|
* * Field Name: Integration
|
|
13747
13812
|
* * Display Name: Integration
|
|
13748
13813
|
* * SQL Data Type: nvarchar(100)
|