@ampsec/platform-client 75.5.0 → 75.6.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.
- package/build/src/dto/coverage.dto.d.ts +10 -1
- package/build/src/dto/platform/platform.saasAssets.dto.d.ts +7 -0
- package/build/src/dto/saasAssets.dto.d.ts +22 -0
- package/build/src/dto/saasAssets.dto.js +2 -0
- package/build/src/dto/saasAssets.dto.js.map +1 -1
- package/build/src/settings.d.ts +11 -0
- package/build/src/settings.js +11 -0
- package/build/src/settings.js.map +1 -1
- package/package.json +1 -1
- package/src/dto/saasAssets.dto.ts +2 -0
- package/src/settings.ts +12 -0
|
@@ -794,7 +794,7 @@ export declare const _UserCoverageReport: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
794
794
|
cid: z.ZodString;
|
|
795
795
|
aid: z.ZodString;
|
|
796
796
|
uid: z.ZodOptional<z.ZodString>;
|
|
797
|
-
displayValue: z.ZodString;
|
|
797
|
+
displayValue: z.ZodString;
|
|
798
798
|
meta: z.ZodObject<{
|
|
799
799
|
_asset: z.ZodObject<{
|
|
800
800
|
extId: z.ZodString;
|
|
@@ -820,9 +820,11 @@ export declare const _UserCoverageReport: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
820
820
|
}>>;
|
|
821
821
|
make: z.ZodOptional<z.ZodString>;
|
|
822
822
|
model: z.ZodOptional<z.ZodString>;
|
|
823
|
+
active: z.ZodBoolean;
|
|
823
824
|
}, "strip", z.ZodTypeAny, {
|
|
824
825
|
extId: string;
|
|
825
826
|
assetType: import("./enums").GlobalAssetType;
|
|
827
|
+
active: boolean;
|
|
826
828
|
hostNames: string[];
|
|
827
829
|
operatingSystems: {
|
|
828
830
|
displayValue: string;
|
|
@@ -839,6 +841,7 @@ export declare const _UserCoverageReport: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
839
841
|
}, {
|
|
840
842
|
extId: string;
|
|
841
843
|
assetType: import("./enums").GlobalAssetType;
|
|
844
|
+
active: boolean;
|
|
842
845
|
hostNames: string[];
|
|
843
846
|
operatingSystems: {
|
|
844
847
|
displayValue: string;
|
|
@@ -858,6 +861,7 @@ export declare const _UserCoverageReport: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
858
861
|
_asset: {
|
|
859
862
|
extId: string;
|
|
860
863
|
assetType: import("./enums").GlobalAssetType;
|
|
864
|
+
active: boolean;
|
|
861
865
|
hostNames: string[];
|
|
862
866
|
operatingSystems: {
|
|
863
867
|
displayValue: string;
|
|
@@ -877,6 +881,7 @@ export declare const _UserCoverageReport: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
877
881
|
_asset: {
|
|
878
882
|
extId: string;
|
|
879
883
|
assetType: import("./enums").GlobalAssetType;
|
|
884
|
+
active: boolean;
|
|
880
885
|
hostNames: string[];
|
|
881
886
|
operatingSystems: {
|
|
882
887
|
displayValue: string;
|
|
@@ -919,6 +924,7 @@ export declare const _UserCoverageReport: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
919
924
|
_asset: {
|
|
920
925
|
extId: string;
|
|
921
926
|
assetType: import("./enums").GlobalAssetType;
|
|
927
|
+
active: boolean;
|
|
922
928
|
hostNames: string[];
|
|
923
929
|
operatingSystems: {
|
|
924
930
|
displayValue: string;
|
|
@@ -955,6 +961,7 @@ export declare const _UserCoverageReport: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
955
961
|
_asset: {
|
|
956
962
|
extId: string;
|
|
957
963
|
assetType: import("./enums").GlobalAssetType;
|
|
964
|
+
active: boolean;
|
|
958
965
|
hostNames: string[];
|
|
959
966
|
operatingSystems: {
|
|
960
967
|
displayValue: string;
|
|
@@ -1061,6 +1068,7 @@ export declare const _UserCoverageReport: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1061
1068
|
_asset: {
|
|
1062
1069
|
extId: string;
|
|
1063
1070
|
assetType: import("./enums").GlobalAssetType;
|
|
1071
|
+
active: boolean;
|
|
1064
1072
|
hostNames: string[];
|
|
1065
1073
|
operatingSystems: {
|
|
1066
1074
|
displayValue: string;
|
|
@@ -1169,6 +1177,7 @@ export declare const _UserCoverageReport: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1169
1177
|
_asset: {
|
|
1170
1178
|
extId: string;
|
|
1171
1179
|
assetType: import("./enums").GlobalAssetType;
|
|
1180
|
+
active: boolean;
|
|
1172
1181
|
hostNames: string[];
|
|
1173
1182
|
operatingSystems: {
|
|
1174
1183
|
displayValue: string;
|
|
@@ -56,9 +56,11 @@ export declare const _StagedSaasAssetUpsertDto: z.ZodObject<z.objectUtil.extendS
|
|
|
56
56
|
}>>;
|
|
57
57
|
make: z.ZodOptional<z.ZodString>;
|
|
58
58
|
model: z.ZodOptional<z.ZodString>;
|
|
59
|
+
active: z.ZodBoolean;
|
|
59
60
|
}, "strip", z.ZodTypeAny, {
|
|
60
61
|
extId: string;
|
|
61
62
|
assetType: import("..").GlobalAssetType;
|
|
63
|
+
active: boolean;
|
|
62
64
|
hostNames: string[];
|
|
63
65
|
operatingSystems: {
|
|
64
66
|
displayValue: string;
|
|
@@ -75,6 +77,7 @@ export declare const _StagedSaasAssetUpsertDto: z.ZodObject<z.objectUtil.extendS
|
|
|
75
77
|
}, {
|
|
76
78
|
extId: string;
|
|
77
79
|
assetType: import("..").GlobalAssetType;
|
|
80
|
+
active: boolean;
|
|
78
81
|
hostNames: string[];
|
|
79
82
|
operatingSystems: {
|
|
80
83
|
displayValue: string;
|
|
@@ -94,6 +97,7 @@ export declare const _StagedSaasAssetUpsertDto: z.ZodObject<z.objectUtil.extendS
|
|
|
94
97
|
_asset: {
|
|
95
98
|
extId: string;
|
|
96
99
|
assetType: import("..").GlobalAssetType;
|
|
100
|
+
active: boolean;
|
|
97
101
|
hostNames: string[];
|
|
98
102
|
operatingSystems: {
|
|
99
103
|
displayValue: string;
|
|
@@ -113,6 +117,7 @@ export declare const _StagedSaasAssetUpsertDto: z.ZodObject<z.objectUtil.extendS
|
|
|
113
117
|
_asset: {
|
|
114
118
|
extId: string;
|
|
115
119
|
assetType: import("..").GlobalAssetType;
|
|
120
|
+
active: boolean;
|
|
116
121
|
hostNames: string[];
|
|
117
122
|
operatingSystems: {
|
|
118
123
|
displayValue: string;
|
|
@@ -146,6 +151,7 @@ export declare const _StagedSaasAssetUpsertDto: z.ZodObject<z.objectUtil.extendS
|
|
|
146
151
|
_asset: {
|
|
147
152
|
extId: string;
|
|
148
153
|
assetType: import("..").GlobalAssetType;
|
|
154
|
+
active: boolean;
|
|
149
155
|
hostNames: string[];
|
|
150
156
|
operatingSystems: {
|
|
151
157
|
displayValue: string;
|
|
@@ -183,6 +189,7 @@ export declare const _StagedSaasAssetUpsertDto: z.ZodObject<z.objectUtil.extendS
|
|
|
183
189
|
_asset: {
|
|
184
190
|
extId: string;
|
|
185
191
|
assetType: import("..").GlobalAssetType;
|
|
192
|
+
active: boolean;
|
|
186
193
|
hostNames: string[];
|
|
187
194
|
operatingSystems: {
|
|
188
195
|
displayValue: string;
|
|
@@ -36,9 +36,12 @@ export declare const _SaasAssetMeta: z.ZodObject<{
|
|
|
36
36
|
make: z.ZodOptional<z.ZodString>;
|
|
37
37
|
/** Asset model */
|
|
38
38
|
model: z.ZodOptional<z.ZodString>;
|
|
39
|
+
/** Asset active status */
|
|
40
|
+
active: z.ZodBoolean;
|
|
39
41
|
}, "strip", z.ZodTypeAny, {
|
|
40
42
|
extId: string;
|
|
41
43
|
assetType: GlobalAssetType;
|
|
44
|
+
active: boolean;
|
|
42
45
|
hostNames: string[];
|
|
43
46
|
operatingSystems: {
|
|
44
47
|
displayValue: string;
|
|
@@ -55,6 +58,7 @@ export declare const _SaasAssetMeta: z.ZodObject<{
|
|
|
55
58
|
}, {
|
|
56
59
|
extId: string;
|
|
57
60
|
assetType: GlobalAssetType;
|
|
61
|
+
active: boolean;
|
|
58
62
|
hostNames: string[];
|
|
59
63
|
operatingSystems: {
|
|
60
64
|
displayValue: string;
|
|
@@ -74,6 +78,7 @@ export declare const _SaasAssetMeta: z.ZodObject<{
|
|
|
74
78
|
_asset: {
|
|
75
79
|
extId: string;
|
|
76
80
|
assetType: GlobalAssetType;
|
|
81
|
+
active: boolean;
|
|
77
82
|
hostNames: string[];
|
|
78
83
|
operatingSystems: {
|
|
79
84
|
displayValue: string;
|
|
@@ -93,6 +98,7 @@ export declare const _SaasAssetMeta: z.ZodObject<{
|
|
|
93
98
|
_asset: {
|
|
94
99
|
extId: string;
|
|
95
100
|
assetType: GlobalAssetType;
|
|
101
|
+
active: boolean;
|
|
96
102
|
hostNames: string[];
|
|
97
103
|
operatingSystems: {
|
|
98
104
|
displayValue: string;
|
|
@@ -181,9 +187,12 @@ export declare const _SaasAssetUpsertDto: z.ZodObject<z.objectUtil.extendShape<z
|
|
|
181
187
|
make: z.ZodOptional<z.ZodString>;
|
|
182
188
|
/** Asset model */
|
|
183
189
|
model: z.ZodOptional<z.ZodString>;
|
|
190
|
+
/** Asset active status */
|
|
191
|
+
active: z.ZodBoolean;
|
|
184
192
|
}, "strip", z.ZodTypeAny, {
|
|
185
193
|
extId: string;
|
|
186
194
|
assetType: GlobalAssetType;
|
|
195
|
+
active: boolean;
|
|
187
196
|
hostNames: string[];
|
|
188
197
|
operatingSystems: {
|
|
189
198
|
displayValue: string;
|
|
@@ -200,6 +209,7 @@ export declare const _SaasAssetUpsertDto: z.ZodObject<z.objectUtil.extendShape<z
|
|
|
200
209
|
}, {
|
|
201
210
|
extId: string;
|
|
202
211
|
assetType: GlobalAssetType;
|
|
212
|
+
active: boolean;
|
|
203
213
|
hostNames: string[];
|
|
204
214
|
operatingSystems: {
|
|
205
215
|
displayValue: string;
|
|
@@ -219,6 +229,7 @@ export declare const _SaasAssetUpsertDto: z.ZodObject<z.objectUtil.extendShape<z
|
|
|
219
229
|
_asset: {
|
|
220
230
|
extId: string;
|
|
221
231
|
assetType: GlobalAssetType;
|
|
232
|
+
active: boolean;
|
|
222
233
|
hostNames: string[];
|
|
223
234
|
operatingSystems: {
|
|
224
235
|
displayValue: string;
|
|
@@ -238,6 +249,7 @@ export declare const _SaasAssetUpsertDto: z.ZodObject<z.objectUtil.extendShape<z
|
|
|
238
249
|
_asset: {
|
|
239
250
|
extId: string;
|
|
240
251
|
assetType: GlobalAssetType;
|
|
252
|
+
active: boolean;
|
|
241
253
|
hostNames: string[];
|
|
242
254
|
operatingSystems: {
|
|
243
255
|
displayValue: string;
|
|
@@ -269,6 +281,7 @@ export declare const _SaasAssetUpsertDto: z.ZodObject<z.objectUtil.extendShape<z
|
|
|
269
281
|
_asset: {
|
|
270
282
|
extId: string;
|
|
271
283
|
assetType: GlobalAssetType;
|
|
284
|
+
active: boolean;
|
|
272
285
|
hostNames: string[];
|
|
273
286
|
operatingSystems: {
|
|
274
287
|
displayValue: string;
|
|
@@ -305,6 +318,7 @@ export declare const _SaasAssetUpsertDto: z.ZodObject<z.objectUtil.extendShape<z
|
|
|
305
318
|
_asset: {
|
|
306
319
|
extId: string;
|
|
307
320
|
assetType: GlobalAssetType;
|
|
321
|
+
active: boolean;
|
|
308
322
|
hostNames: string[];
|
|
309
323
|
operatingSystems: {
|
|
310
324
|
displayValue: string;
|
|
@@ -399,9 +413,12 @@ export declare const _SaasAssetDto: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
399
413
|
make: z.ZodOptional<z.ZodString>;
|
|
400
414
|
/** Asset model */
|
|
401
415
|
model: z.ZodOptional<z.ZodString>;
|
|
416
|
+
/** Asset active status */
|
|
417
|
+
active: z.ZodBoolean;
|
|
402
418
|
}, "strip", z.ZodTypeAny, {
|
|
403
419
|
extId: string;
|
|
404
420
|
assetType: GlobalAssetType;
|
|
421
|
+
active: boolean;
|
|
405
422
|
hostNames: string[];
|
|
406
423
|
operatingSystems: {
|
|
407
424
|
displayValue: string;
|
|
@@ -418,6 +435,7 @@ export declare const _SaasAssetDto: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
418
435
|
}, {
|
|
419
436
|
extId: string;
|
|
420
437
|
assetType: GlobalAssetType;
|
|
438
|
+
active: boolean;
|
|
421
439
|
hostNames: string[];
|
|
422
440
|
operatingSystems: {
|
|
423
441
|
displayValue: string;
|
|
@@ -437,6 +455,7 @@ export declare const _SaasAssetDto: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
437
455
|
_asset: {
|
|
438
456
|
extId: string;
|
|
439
457
|
assetType: GlobalAssetType;
|
|
458
|
+
active: boolean;
|
|
440
459
|
hostNames: string[];
|
|
441
460
|
operatingSystems: {
|
|
442
461
|
displayValue: string;
|
|
@@ -456,6 +475,7 @@ export declare const _SaasAssetDto: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
456
475
|
_asset: {
|
|
457
476
|
extId: string;
|
|
458
477
|
assetType: GlobalAssetType;
|
|
478
|
+
active: boolean;
|
|
459
479
|
hostNames: string[];
|
|
460
480
|
operatingSystems: {
|
|
461
481
|
displayValue: string;
|
|
@@ -499,6 +519,7 @@ export declare const _SaasAssetDto: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
499
519
|
_asset: {
|
|
500
520
|
extId: string;
|
|
501
521
|
assetType: GlobalAssetType;
|
|
522
|
+
active: boolean;
|
|
502
523
|
hostNames: string[];
|
|
503
524
|
operatingSystems: {
|
|
504
525
|
displayValue: string;
|
|
@@ -535,6 +556,7 @@ export declare const _SaasAssetDto: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
535
556
|
_asset: {
|
|
536
557
|
extId: string;
|
|
537
558
|
assetType: GlobalAssetType;
|
|
559
|
+
active: boolean;
|
|
538
560
|
hostNames: string[];
|
|
539
561
|
operatingSystems: {
|
|
540
562
|
displayValue: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"saasAssets.dto.js","sourceRoot":"","sources":["../../../src/dto/saasAssets.dto.ts"],"names":[],"mappings":";;;AAAA,6BAAsB;AACtB,2CAAuC;AACvC,yCAAkE;AAClE,mCAAwC;AAE3B,QAAA,cAAc,GAAG,OAAC,CAAC,MAAM,CAAC;IACrC,MAAM,EAAE,OAAC,CAAC,MAAM,CAAC;QACf,6BAA6B;QAC7B,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE;QACjB,iBAAiB;QACjB,SAAS,EAAE,OAAC,CAAC,UAAU,CAAC,uBAAe,CAAC;QACxC,iBAAiB;QACjB,UAAU,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;QACjC,sBAAsB;QACtB,SAAS,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,MAAM,EAAE,CAAC;QAC9B,+CAA+C;QAC/C,mBAAmB;QACnB,kCAAkC;QAClC,gBAAgB,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;QACvC,gCAAgC;QAChC,gBAAgB,EAAE,OAAC,CAAC,KAAK,CACvB,OAAC,CAAC,MAAM,CAAC;YACP,YAAY,EAAE,OAAC,CAAC,MAAM,EAAE;YACxB,gCAAgC;YAChC,cAAc;SACf,CAAC,CACH;QACD,0BAA0B;QAC1B,EAAE,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;QACzB,0BAA0B;QAC1B,IAAI,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,EAAE;QACpC,8BAA8B;QAC9B,KAAK,EAAE,OAAC;aACL,MAAM,CAAC;YACN,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;SAC7B,CAAC;aACD,QAAQ,EAAE;QACb,iBAAiB;QACjB,IAAI,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;QAC3B,kBAAkB;QAClB,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;
|
|
1
|
+
{"version":3,"file":"saasAssets.dto.js","sourceRoot":"","sources":["../../../src/dto/saasAssets.dto.ts"],"names":[],"mappings":";;;AAAA,6BAAsB;AACtB,2CAAuC;AACvC,yCAAkE;AAClE,mCAAwC;AAE3B,QAAA,cAAc,GAAG,OAAC,CAAC,MAAM,CAAC;IACrC,MAAM,EAAE,OAAC,CAAC,MAAM,CAAC;QACf,6BAA6B;QAC7B,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE;QACjB,iBAAiB;QACjB,SAAS,EAAE,OAAC,CAAC,UAAU,CAAC,uBAAe,CAAC;QACxC,iBAAiB;QACjB,UAAU,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;QACjC,sBAAsB;QACtB,SAAS,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,MAAM,EAAE,CAAC;QAC9B,+CAA+C;QAC/C,mBAAmB;QACnB,kCAAkC;QAClC,gBAAgB,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;QACvC,gCAAgC;QAChC,gBAAgB,EAAE,OAAC,CAAC,KAAK,CACvB,OAAC,CAAC,MAAM,CAAC;YACP,YAAY,EAAE,OAAC,CAAC,MAAM,EAAE;YACxB,gCAAgC;YAChC,cAAc;SACf,CAAC,CACH;QACD,0BAA0B;QAC1B,EAAE,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;QACzB,0BAA0B;QAC1B,IAAI,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,EAAE;QACpC,8BAA8B;QAC9B,KAAK,EAAE,OAAC;aACL,MAAM,CAAC;YACN,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;SAC7B,CAAC;aACD,QAAQ,EAAE;QACb,iBAAiB;QACjB,IAAI,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;QAC3B,kBAAkB;QAClB,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;QAC5B,0BAA0B;QAC1B,MAAM,EAAE,OAAC,CAAC,OAAO,EAAE;KACpB,CAAC;IACF,IAAI,EAAE,OAAC,CAAC,OAAO,EAAE;CAClB,CAAC,CAAC;AAIU,QAAA,mBAAmB,GAAG,gCAAqB,CAAC,KAAK,CAC5D,OAAC,CAAC,MAAM,CAAC;IACP,mBAAmB;IACnB,OAAO,EAAE,sBAAU;IACnB,mBAAmB;IACnB,GAAG,EAAE,OAAC,CAAC,MAAM,EAAE;IACf,eAAe;IACf,GAAG,EAAE,OAAC,CAAC,MAAM,EAAE;IACf,cAAc;IACd,GAAG,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC1B,0BAA0B;IAC1B,YAAY,EAAE,OAAC,CAAC,MAAM,EAAE;IACxB,yCAAyC;IACzC,IAAI,EAAE,sBAAc;CACrB,CAAC,CACH,CAAC;AAIW,QAAA,aAAa,GAAG,2BAAmB,CAAC,KAAK,CAAC,0BAAe,CAAC,CAAC"}
|
package/build/src/settings.d.ts
CHANGED
|
@@ -62,6 +62,14 @@ export declare const AMP_SETTINGS: {
|
|
|
62
62
|
*/
|
|
63
63
|
RECONCILIATION_ASSET_CLUSTER_V2_ENABLED: import("./services").TypedAmpSettingsKey<boolean>;
|
|
64
64
|
WELCOME_MESSAGE_DELAY: import("./services").TypedAmpSettingsKey<string>;
|
|
65
|
+
/**
|
|
66
|
+
* Use for populating asset as active or not
|
|
67
|
+
*/
|
|
68
|
+
ASSET_LAST_SEEN_THRESHOLD: import("./services").TypedAmpSettingsKey<string>;
|
|
69
|
+
/**
|
|
70
|
+
* Use for populating asset type as archived or not
|
|
71
|
+
*/
|
|
72
|
+
ASSET_ARCHIVED_THRESHOLD: import("./services").TypedAmpSettingsKey<string>;
|
|
65
73
|
};
|
|
66
74
|
/**
|
|
67
75
|
* GLOBAL
|
|
@@ -121,9 +129,11 @@ export declare const AMP_SETTINGS: {
|
|
|
121
129
|
};
|
|
122
130
|
tenable: {
|
|
123
131
|
/** Used to calculate `active` status. */
|
|
132
|
+
/** @deprecated */
|
|
124
133
|
TENABLE_ACTIVE_LAST_SEEN_THRESHOLD: import("./services").TypedAmpSettingsKey<string>;
|
|
125
134
|
TENABLE_ASSET_ARCHIVED_RULE: import("./services").TypedAmpSettingsKey<unknown>;
|
|
126
135
|
/** Used to limit results returned from Asset Export */
|
|
136
|
+
/** @deprecated */
|
|
127
137
|
TENABLE_ASSET_ARCHIVED_THRESHOLD: import("./services").TypedAmpSettingsKey<string>;
|
|
128
138
|
TENABLE_ASSET_EXPORT_FILTER: import("./services").TypedAmpSettingsKey<unknown>;
|
|
129
139
|
TENABLE_VULN_CRIT_DEADLINE_THRESHOLD: import("./services").TypedAmpSettingsKey<string>;
|
|
@@ -151,6 +161,7 @@ export declare const AMP_SETTINGS: {
|
|
|
151
161
|
};
|
|
152
162
|
sentinelone: {
|
|
153
163
|
/** Used to calculate `active` status. */
|
|
164
|
+
/** @deprecated */
|
|
154
165
|
SENTINELONE_ACTIVE_LAST_ACTIVITY_THRESHOLD: import("./services").TypedAmpSettingsKey<string>;
|
|
155
166
|
SENTINELONE_VULN_CRIT_DEADLINE_THRESHOLD: import("./services").TypedAmpSettingsKey<string>;
|
|
156
167
|
SENTINELONE_VULN_HIGH_DEADLINE_THRESHOLD: import("./services").TypedAmpSettingsKey<string>;
|
package/build/src/settings.js
CHANGED
|
@@ -49,6 +49,14 @@ const TENANT_SETTINGS = {
|
|
|
49
49
|
*/
|
|
50
50
|
RECONCILIATION_ASSET_CLUSTER_V2_ENABLED: services_1.AmpSettingsMap.asKey('reconciliation.asset.cluster.v2.enabled', true),
|
|
51
51
|
WELCOME_MESSAGE_DELAY: services_1.AmpSettingsMap.asKey('welcome.message.delay', '1 minutes'),
|
|
52
|
+
/**
|
|
53
|
+
* Use for populating asset as active or not
|
|
54
|
+
*/
|
|
55
|
+
ASSET_LAST_SEEN_THRESHOLD: services_1.AmpSettingsMap.asKey('asset.lastSeen.threshold', '3 day'),
|
|
56
|
+
/**
|
|
57
|
+
* Use for populating asset type as archived or not
|
|
58
|
+
*/
|
|
59
|
+
ASSET_ARCHIVED_THRESHOLD: services_1.AmpSettingsMap.asKey('asset.archived.threshold', '45 day'),
|
|
52
60
|
};
|
|
53
61
|
/**
|
|
54
62
|
* GLOBAL CONNECTOR DEFAULTS
|
|
@@ -107,9 +115,11 @@ const SLACK_SETTINGS = {
|
|
|
107
115
|
};
|
|
108
116
|
const TENABLE_SETTINGS = {
|
|
109
117
|
/** Used to calculate `active` status. */
|
|
118
|
+
/** @deprecated */
|
|
110
119
|
TENABLE_ACTIVE_LAST_SEEN_THRESHOLD: services_1.AmpSettingsMap.asKey('tenable.active.lastSeen.threshold', '14 day'),
|
|
111
120
|
TENABLE_ASSET_ARCHIVED_RULE: services_1.AmpSettingsMap.asKey('tenable.asset.archived.rule', { MATCH_NOTHING: true }),
|
|
112
121
|
/** Used to limit results returned from Asset Export */
|
|
122
|
+
/** @deprecated */
|
|
113
123
|
TENABLE_ASSET_ARCHIVED_THRESHOLD: services_1.AmpSettingsMap.asKey('tenable.asset.archived.threshold', '1 year'),
|
|
114
124
|
TENABLE_ASSET_EXPORT_FILTER: services_1.AmpSettingsMap.asKey('tenable.asset.export.filter', {}),
|
|
115
125
|
TENABLE_VULN_CRIT_DEADLINE_THRESHOLD: services_1.AmpSettingsMap.asKey('tenable.vuln.crit.deadline', '14 day'),
|
|
@@ -137,6 +147,7 @@ const CARBONBLACK_SETTINGS = {
|
|
|
137
147
|
};
|
|
138
148
|
const SENTINELONE_SETTINGS = {
|
|
139
149
|
/** Used to calculate `active` status. */
|
|
150
|
+
/** @deprecated */
|
|
140
151
|
SENTINELONE_ACTIVE_LAST_ACTIVITY_THRESHOLD: services_1.AmpSettingsMap.asKey('sentinelone.active.lastActivity.threshold', '14 day'),
|
|
141
152
|
SENTINELONE_VULN_CRIT_DEADLINE_THRESHOLD: services_1.AmpSettingsMap.asKey('sentinelone.vuln.crit.deadline', '13 day'),
|
|
142
153
|
SENTINELONE_VULN_HIGH_DEADLINE_THRESHOLD: services_1.AmpSettingsMap.asKey('sentinelone.vuln.high.deadline', '30 day'),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"settings.js","sourceRoot":"","sources":["../../src/settings.ts"],"names":[],"mappings":";;;AACA,yCAA0C;AAE1C;;2BAE2B;AAC3B;;;;GAIG;AACH,MAAM,eAAe,GAAG;IACtB,kBAAkB;IAClB,UAAU,EAAE,yBAAc,CAAC,KAAK,CAAU,iCAAiC,EAAE,IAAI,CAAC;IAClF,oEAAoE;IACpE,qBAAqB,EAAE,yBAAc,CAAC,KAAK,CAAU,uBAAuB,EAAE,IAAI,CAAC;IACnF,4CAA4C;IAC5C,YAAY,EAAE,yBAAc,CAAC,KAAK,CAAU,eAAe,EAAE,KAAK,CAAC;IACnE,sDAAsD;IACtD,mBAAmB,EAAE,yBAAc,CAAC,KAAK,CAAsB,0BAA0B,CAAC;IAC1F;;;;;;;OAOG;IACH,cAAc,EAAE,yBAAc,CAAC,KAAK,CAAS,iBAAiB,EAAE,SAAS,CAAC;IAC1E;;OAEG;IACH,mBAAmB,EAAE,yBAAc,CAAC,KAAK,CAAS,yBAAyB,CAAC;IAC5E;;OAEG;IACH,qBAAqB,EAAE,yBAAc,CAAC,KAAK,CAAU,uBAAuB,CAAC;IAC7E;;OAEG;IACH,qCAAqC,EAAE,yBAAc,CAAC,KAAK,CAAU,uBAAuB,EAAE,KAAK,CAAC;IACpG;;OAEG;IACH,yBAAyB,EAAE,yBAAc,CAAC,KAAK,CAAS,2BAA2B,EAAE,EAAE,CAAC;IACxF;;OAEG;IACH,uCAAuC,EAAE,yBAAc,CAAC,KAAK,CAAU,yCAAyC,EAAE,IAAI,CAAC;IACvH,qBAAqB,EAAE,yBAAc,CAAC,KAAK,CAAS,uBAAuB,EAAE,WAAW,CAAC;
|
|
1
|
+
{"version":3,"file":"settings.js","sourceRoot":"","sources":["../../src/settings.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
package/src/settings.ts
CHANGED
|
@@ -48,6 +48,15 @@ const TENANT_SETTINGS = {
|
|
|
48
48
|
*/
|
|
49
49
|
RECONCILIATION_ASSET_CLUSTER_V2_ENABLED: AmpSettingsMap.asKey<boolean>('reconciliation.asset.cluster.v2.enabled', true),
|
|
50
50
|
WELCOME_MESSAGE_DELAY: AmpSettingsMap.asKey<string>('welcome.message.delay', '1 minutes'),
|
|
51
|
+
|
|
52
|
+
/**
|
|
53
|
+
* Use for populating asset as active or not
|
|
54
|
+
*/
|
|
55
|
+
ASSET_LAST_SEEN_THRESHOLD: AmpSettingsMap.asKey<string>('asset.lastSeen.threshold', '3 day'),
|
|
56
|
+
/**
|
|
57
|
+
* Use for populating asset type as archived or not
|
|
58
|
+
*/
|
|
59
|
+
ASSET_ARCHIVED_THRESHOLD: AmpSettingsMap.asKey<string>('asset.archived.threshold', '45 day'),
|
|
51
60
|
};
|
|
52
61
|
|
|
53
62
|
/**
|
|
@@ -117,9 +126,11 @@ const SLACK_SETTINGS = {
|
|
|
117
126
|
|
|
118
127
|
const TENABLE_SETTINGS = {
|
|
119
128
|
/** Used to calculate `active` status. */
|
|
129
|
+
/** @deprecated */
|
|
120
130
|
TENABLE_ACTIVE_LAST_SEEN_THRESHOLD: AmpSettingsMap.asKey<string>('tenable.active.lastSeen.threshold', '14 day'),
|
|
121
131
|
TENABLE_ASSET_ARCHIVED_RULE: AmpSettingsMap.asKey<unknown>('tenable.asset.archived.rule', {MATCH_NOTHING: true}),
|
|
122
132
|
/** Used to limit results returned from Asset Export */
|
|
133
|
+
/** @deprecated */
|
|
123
134
|
TENABLE_ASSET_ARCHIVED_THRESHOLD: AmpSettingsMap.asKey<string>('tenable.asset.archived.threshold', '1 year'),
|
|
124
135
|
TENABLE_ASSET_EXPORT_FILTER: AmpSettingsMap.asKey<unknown>('tenable.asset.export.filter', {}),
|
|
125
136
|
TENABLE_VULN_CRIT_DEADLINE_THRESHOLD: AmpSettingsMap.asKey<string>('tenable.vuln.crit.deadline', '14 day'),
|
|
@@ -151,6 +162,7 @@ const CARBONBLACK_SETTINGS = {
|
|
|
151
162
|
|
|
152
163
|
const SENTINELONE_SETTINGS = {
|
|
153
164
|
/** Used to calculate `active` status. */
|
|
165
|
+
/** @deprecated */
|
|
154
166
|
SENTINELONE_ACTIVE_LAST_ACTIVITY_THRESHOLD: AmpSettingsMap.asKey<string>('sentinelone.active.lastActivity.threshold', '14 day'),
|
|
155
167
|
SENTINELONE_VULN_CRIT_DEADLINE_THRESHOLD: AmpSettingsMap.asKey<string>('sentinelone.vuln.crit.deadline', '13 day'),
|
|
156
168
|
SENTINELONE_VULN_HIGH_DEADLINE_THRESHOLD: AmpSettingsMap.asKey<string>('sentinelone.vuln.high.deadline', '30 day'),
|