@servicelabsco/slabs-access-manager 0.1.216 → 0.1.217
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.
- package/dist/migrations/1737687769409-CustomFieldDateRangeSupportDataSeederTable.d.ts +6 -0
- package/dist/migrations/1737687769409-CustomFieldDateRangeSupportDataSeederTable.js +24 -0
- package/dist/migrations/1737687769409-CustomFieldDateRangeSupportDataSeederTable.js.map +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.CustomFieldDateRangeSupportDataSeederTable1737687769409 = void 0;
|
|
4
|
+
const nestjs_utility_services_1 = require("@servicelabsco/nestjs-utility-services");
|
|
5
|
+
class CustomFieldDateRangeSupportDataSeederTable1737687769409 extends nestjs_utility_services_1.SeederUtility {
|
|
6
|
+
constructor() {
|
|
7
|
+
super('sys_lookup_values');
|
|
8
|
+
this.process();
|
|
9
|
+
}
|
|
10
|
+
process() {
|
|
11
|
+
this.addLookUpValues();
|
|
12
|
+
}
|
|
13
|
+
addLookUpValues() {
|
|
14
|
+
this.addRecord({
|
|
15
|
+
id: 5055,
|
|
16
|
+
name: 'Date Range',
|
|
17
|
+
value: 'Date Range',
|
|
18
|
+
description: 'Date Range',
|
|
19
|
+
lookup_type_id: 109,
|
|
20
|
+
});
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
exports.CustomFieldDateRangeSupportDataSeederTable1737687769409 = CustomFieldDateRangeSupportDataSeederTable1737687769409;
|
|
24
|
+
//# sourceMappingURL=1737687769409-CustomFieldDateRangeSupportDataSeederTable.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"1737687769409-CustomFieldDateRangeSupportDataSeederTable.js","sourceRoot":"","sources":["../../src/migrations/1737687769409-CustomFieldDateRangeSupportDataSeederTable.ts"],"names":[],"mappings":";;;AAAA,oFAAuE;AAEvE,MAAa,uDAAwD,SAAQ,uCAAa;IACtF;QACI,KAAK,CAAC,mBAAmB,CAAC,CAAC;QAC3B,IAAI,CAAC,OAAO,EAAE,CAAC;IACnB,CAAC;IAED,OAAO;QACH,IAAI,CAAC,eAAe,EAAE,CAAC;IAC3B,CAAC;IAED,eAAe;QACX,IAAI,CAAC,SAAS,CAAC;YACX,EAAE,EAAE,IAAI;YACR,IAAI,EAAE,YAAY;YAClB,KAAK,EAAE,YAAY;YACnB,WAAW,EAAE,YAAY;YACzB,cAAc,EAAE,GAAG;SACtB,CAAC,CAAC;IACP,CAAC;CACJ;AAnBD,0HAmBC"}
|
package/package.json
CHANGED