@ampsec/platform-client 18.0.0 → 19.0.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.
@@ -7,3 +7,11 @@ export declare enum RiskContributorType {
7
7
  TRAINING = "TRAINING",
8
8
  VULNERABILITY = "VULNERABILITY"
9
9
  }
10
+ export type RiskContributorValuesType = {
11
+ [key in keyof typeof RiskContributorType]: {
12
+ type: RiskContributorType;
13
+ displayValue: string;
14
+ description: string;
15
+ };
16
+ };
17
+ export declare const RiskContributorValues: RiskContributorValuesType;
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.RiskContributorType = void 0;
3
+ exports.RiskContributorValues = exports.RiskContributorType = void 0;
4
4
  /* eslint-disable no-unused-vars */
5
5
  var RiskContributorType;
6
6
  (function (RiskContributorType) {
@@ -12,4 +12,41 @@ var RiskContributorType;
12
12
  RiskContributorType["TRAINING"] = "TRAINING";
13
13
  RiskContributorType["VULNERABILITY"] = "VULNERABILITY";
14
14
  })(RiskContributorType || (exports.RiskContributorType = RiskContributorType = {}));
15
+ exports.RiskContributorValues = {
16
+ IS_EXECUTIVE: {
17
+ type: RiskContributorType.IS_EXECUTIVE,
18
+ displayValue: 'EXEC',
19
+ description: 'User has executive access',
20
+ },
21
+ MFA: {
22
+ type: RiskContributorType.MFA,
23
+ displayValue: 'MFA',
24
+ description: 'User mfa not enabled',
25
+ },
26
+ PRODUCTION_ACCESS: {
27
+ type: RiskContributorType.PRODUCTION_ACCESS,
28
+ displayValue: 'PROD',
29
+ description: 'User has production access',
30
+ },
31
+ PRIVILEGED_ACCESS: {
32
+ type: RiskContributorType.PRIVILEGED_ACCESS,
33
+ displayValue: 'PRIV',
34
+ description: 'User has privileged access',
35
+ },
36
+ TOOLING: {
37
+ type: RiskContributorType.TOOLING,
38
+ displayValue: 'TOOLING',
39
+ description: 'User edr not enabled',
40
+ },
41
+ TRAINING: {
42
+ type: RiskContributorType.TRAINING,
43
+ displayValue: 'TRAIN',
44
+ description: 'User has failed phishing',
45
+ },
46
+ VULNERABILITY: {
47
+ type: RiskContributorType.VULNERABILITY,
48
+ displayValue: 'VULN',
49
+ description: 'User has vulnerabilities',
50
+ },
51
+ };
15
52
  //# sourceMappingURL=riskContributor.type.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"riskContributor.type.js","sourceRoot":"","sources":["../../../../src/dto/enums/riskContributor.type.ts"],"names":[],"mappings":";;;AAAA,mCAAmC;AACnC,IAAY,mBAQX;AARD,WAAY,mBAAmB;IAC7B,oDAA6B,CAAA;IAC7B,kCAAW,CAAA;IACX,8DAAuC,CAAA;IACvC,8DAAuC,CAAA;IACvC,0CAAmB,CAAA;IACnB,4CAAqB,CAAA;IACrB,sDAA+B,CAAA;AACjC,CAAC,EARW,mBAAmB,mCAAnB,mBAAmB,QAQ9B"}
1
+ {"version":3,"file":"riskContributor.type.js","sourceRoot":"","sources":["../../../../src/dto/enums/riskContributor.type.ts"],"names":[],"mappings":";;;AAAA,mCAAmC;AACnC,IAAY,mBAQX;AARD,WAAY,mBAAmB;IAC7B,oDAA6B,CAAA;IAC7B,kCAAW,CAAA;IACX,8DAAuC,CAAA;IACvC,8DAAuC,CAAA;IACvC,0CAAmB,CAAA;IACnB,4CAAqB,CAAA;IACrB,sDAA+B,CAAA;AACjC,CAAC,EARW,mBAAmB,mCAAnB,mBAAmB,QAQ9B;AAUY,QAAA,qBAAqB,GAA8B;IAC9D,YAAY,EAAE;QACZ,IAAI,EAAE,mBAAmB,CAAC,YAAY;QACtC,YAAY,EAAE,MAAM;QACpB,WAAW,EAAE,2BAA2B;KACzC;IACD,GAAG,EAAE;QACH,IAAI,EAAE,mBAAmB,CAAC,GAAG;QAC7B,YAAY,EAAE,KAAK;QACnB,WAAW,EAAE,sBAAsB;KACpC;IACD,iBAAiB,EAAE;QACjB,IAAI,EAAE,mBAAmB,CAAC,iBAAiB;QAC3C,YAAY,EAAE,MAAM;QACpB,WAAW,EAAE,4BAA4B;KAC1C;IACD,iBAAiB,EAAE;QACjB,IAAI,EAAE,mBAAmB,CAAC,iBAAiB;QAC3C,YAAY,EAAE,MAAM;QACpB,WAAW,EAAE,4BAA4B;KAC1C;IACD,OAAO,EAAE;QACP,IAAI,EAAE,mBAAmB,CAAC,OAAO;QACjC,YAAY,EAAE,SAAS;QACvB,WAAW,EAAE,sBAAsB;KACpC;IACD,QAAQ,EAAE;QACR,IAAI,EAAE,mBAAmB,CAAC,QAAQ;QAClC,YAAY,EAAE,OAAO;QACrB,WAAW,EAAE,0BAA0B;KACxC;IACD,aAAa,EAAE;QACb,IAAI,EAAE,mBAAmB,CAAC,aAAa;QACvC,YAAY,EAAE,MAAM;QACpB,WAAW,EAAE,0BAA0B;KACxC;CACF,CAAC"}
@@ -6,6 +6,7 @@ export * from './platform.jobExecutionState.dto';
6
6
  export * from './platform.jobSpec.dto';
7
7
  export * from './platform.providers.dto';
8
8
  export * from './platform.reportResults.dto';
9
+ export * from './platform.riskContributor.dto';
9
10
  export * from './platform.saasAssets.dto';
10
11
  export * from './platform.saasComponents.dto';
11
12
  export * from './platform.saasUsers.dto';
@@ -22,6 +22,7 @@ __exportStar(require("./platform.jobExecutionState.dto"), exports);
22
22
  __exportStar(require("./platform.jobSpec.dto"), exports);
23
23
  __exportStar(require("./platform.providers.dto"), exports);
24
24
  __exportStar(require("./platform.reportResults.dto"), exports);
25
+ __exportStar(require("./platform.riskContributor.dto"), exports);
25
26
  __exportStar(require("./platform.saasAssets.dto"), exports);
26
27
  __exportStar(require("./platform.saasComponents.dto"), exports);
27
28
  __exportStar(require("./platform.saasUsers.dto"), exports);
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/dto/platform/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,wDAAsC;AACtC,wDAAsC;AACtC,4DAA0C;AAC1C,0DAAwC;AACxC,mEAAiD;AACjD,yDAAuC;AACvC,2DAAyC;AACzC,+DAA6C;AAC7C,4DAA0C;AAC1C,gEAA8C;AAC9C,2DAAyC;AACzC,4DAA0C;AAC1C,yDAAuC;AACvC,uDAAqC;AACrC,qDAAmC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/dto/platform/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,wDAAsC;AACtC,wDAAsC;AACtC,4DAA0C;AAC1C,0DAAwC;AACxC,mEAAiD;AACjD,yDAAuC;AACvC,2DAAyC;AACzC,+DAA6C;AAC7C,iEAA+C;AAC/C,4DAA0C;AAC1C,gEAA8C;AAC9C,2DAAyC;AACzC,4DAA0C;AAC1C,yDAAuC;AACvC,uDAAqC;AACrC,qDAAmC"}
@@ -0,0 +1,3 @@
1
+ import { RiskContributorDto, RiskContributorUpsertDto } from '../riskContributors.dto';
2
+ export type PlatformRiskContributorUpsertDto = RiskContributorUpsertDto;
3
+ export type PlatformRiskContributorDto = RiskContributorDto;
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=platform.riskContributor.dto.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"platform.riskContributor.dto.js","sourceRoot":"","sources":["../../../../src/dto/platform/platform.riskContributor.dto.ts"],"names":[],"mappings":""}
@@ -7,5 +7,7 @@ export type RiskContributorUpsertDto = BaseUpsertDto & {
7
7
  displayValue: string;
8
8
  /** Description of the risk contributor */
9
9
  description: string;
10
+ /** User Id */
11
+ uid: string;
10
12
  };
11
13
  export type RiskContributorDto = BaseDto & RiskContributorUpsertDto;
@@ -1,4 +1,4 @@
1
- import { PlatformAgentDto, PlatformAgentUpsertDto, PlatformAssetDto, PlatformAssetUpsertDto, PlatformConnectorDto, PlatformConnectorUpsertDto, PlatformFindingDto, PlatformFindingUpsertDto, PlatformProviderUpsertDto, PlatformReportResultDto, PlatformReportResultUpsertDto, PlatformSaasAssetDto, PlatformSaasAssetUpsertDto, PlatformSaasComponentDto, PlatformSaasComponentUpsertDto, PlatformSaasUserDto, PlatformSaasUserUpsertDto, PlatformUserDto, PlatformUserUpsertDto, ProviderDto, TenantDto, TenantUpsertDto } from '../dto';
1
+ import { PlatformAgentDto, PlatformAgentUpsertDto, PlatformAssetDto, PlatformAssetUpsertDto, PlatformConnectorDto, PlatformConnectorUpsertDto, PlatformFindingDto, PlatformFindingUpsertDto, PlatformProviderUpsertDto, PlatformReportResultDto, PlatformReportResultUpsertDto, PlatformRiskContributorDto, PlatformRiskContributorUpsertDto, PlatformSaasAssetDto, PlatformSaasAssetUpsertDto, PlatformSaasComponentDto, PlatformSaasComponentUpsertDto, PlatformSaasUserDto, PlatformSaasUserUpsertDto, PlatformUserDto, PlatformUserUpsertDto, ProviderDto, TenantDto, TenantUpsertDto } from '../dto';
2
2
  import { AmpEntityService, AmpGlobalEntityService, AmpSaaSEntityService } from './entity.service';
3
3
  import { AmpRestClientOptions, RestClient } from './rest';
4
4
  import { PlatformJobSpecDto, PlatformJobSpecUpsertDto } from '../dto/platform/platform.jobSpec.dto';
@@ -25,6 +25,7 @@ export declare class AmpSdkServices {
25
25
  readonly jobs: AmpEntityService<PlatformJobSpecUpsertDto, PlatformJobSpecDto>;
26
26
  readonly providers: AmpEntityService<PlatformProviderUpsertDto, ProviderDto>;
27
27
  readonly reportResults: AmpSaaSEntityService<PlatformReportResultUpsertDto, PlatformReportResultDto>;
28
+ readonly riskContributors: AmpSaaSEntityService<PlatformRiskContributorUpsertDto, PlatformRiskContributorDto>;
28
29
  readonly saasAssets: AmpSaaSEntityService<PlatformSaasAssetUpsertDto, PlatformSaasAssetDto>;
29
30
  readonly saasComponents: AmpSaaSEntityService<PlatformSaasComponentUpsertDto, PlatformSaasComponentDto>;
30
31
  readonly saasUsers: AmpSaaSEntityService<PlatformSaasUserUpsertDto, PlatformSaasUserDto>;
@@ -26,6 +26,7 @@ class AmpSdkServices {
26
26
  this.jobs = new entity_service_1.AmpEntityServiceImpl(rest, constants_1.KIND.JOB_SPEC, constants_1.TARGET_API_PLATFORM);
27
27
  this.providers = new entity_service_1.AmpEntityServiceImpl(rest, constants_1.KIND.PROVIDERS, constants_1.TARGET_API_PLATFORM);
28
28
  this.reportResults = new entity_service_1.AmpSaaSEntityServiceImpl(rest, constants_1.KIND.REPORT_RESULTS, constants_1.TARGET_API_PLATFORM);
29
+ this.riskContributors = new entity_service_1.AmpSaaSEntityServiceImpl(rest, constants_1.KIND.RISK_CONTRIBUTORS, constants_1.TARGET_API_PLATFORM);
29
30
  this.saasAssets = new entity_service_1.AmpSaaSEntityServiceImpl(rest, constants_1.KIND.SAAS_ASSETS, constants_1.TARGET_API_PLATFORM);
30
31
  this.saasComponents = new entity_service_1.AmpSaaSEntityServiceImpl(rest, constants_1.KIND.SAAS_COMPONENTS, constants_1.TARGET_API_PLATFORM);
31
32
  this.saasUsers = new entity_service_1.AmpSaaSEntityServiceImpl(rest, constants_1.KIND.SAAS_USERS, constants_1.TARGET_API_PLATFORM);
@@ -1 +1 @@
1
- {"version":3,"file":"AmpSdk.js","sourceRoot":"","sources":["../../../src/services/AmpSdk.ts"],"names":[],"mappings":";;;AAwBA,qDAA4K;AAC5K,iCAA0E;AAC1E,2CAAsD;AAGtD,oDAAmE;AACnE,yDAAsD;AAItD;;;;;;;;GAQG;AACH,MAAa,cAAc;IAiBzB,YAAY,IAAgB;QAC1B,IAAI,CAAC,MAAM,GAAG,IAAI,qCAAoB,CAA2C,IAAI,EAAE,gBAAI,CAAC,MAAM,EAAE,+BAAmB,CAAC,CAAC;QACzH,IAAI,CAAC,KAAK,GAAG,IAAI,2CAA0B,CAA2C,IAAI,EAAE,gBAAI,CAAC,MAAM,EAAE,+BAAmB,CAAC,CAAC;QAC9H,IAAI,CAAC,UAAU,GAAG,IAAI,qCAAoB,CAAmD,IAAI,EAAE,gBAAI,CAAC,UAAU,EAAE,+BAAmB,CAAC,CAAC;QACzI,IAAI,CAAC,KAAK,GAAG,IAAI,gCAAkB,CAAC,IAAI,EAAE,+BAAmB,CAAC,CAAC;QAC/D,IAAI,CAAC,QAAQ,GAAG,IAAI,yCAAwB,CAA+C,IAAI,EAAE,gBAAI,CAAC,QAAQ,EAAE,+BAAmB,CAAC,CAAC;QACrI,IAAI,CAAC,aAAa,GAAG,IAAI,qCAAoB,CAAmE,IAAI,EAAE,gBAAI,CAAC,cAAc,EAAE,+BAAmB,CAAC,CAAC;QAChK,IAAI,CAAC,IAAI,GAAG,IAAI,qCAAoB,CAA+C,IAAI,EAAE,gBAAI,CAAC,QAAQ,EAAE,+BAAmB,CAAC,CAAC;QAC7H,IAAI,CAAC,SAAS,GAAG,IAAI,qCAAoB,CAAyC,IAAI,EAAE,gBAAI,CAAC,SAAS,EAAE,+BAAmB,CAAC,CAAC;QAC7H,IAAI,CAAC,aAAa,GAAG,IAAI,yCAAwB,CAAyD,IAAI,EAAE,gBAAI,CAAC,cAAc,EAAE,+BAAmB,CAAC,CAAC;QAC1J,IAAI,CAAC,UAAU,GAAG,IAAI,yCAAwB,CAAmD,IAAI,EAAE,gBAAI,CAAC,WAAW,EAAE,+BAAmB,CAAC,CAAC;QAC9I,IAAI,CAAC,cAAc,GAAG,IAAI,yCAAwB,CAA2D,IAAI,EAAE,gBAAI,CAAC,eAAe,EAAE,+BAAmB,CAAC,CAAC;QAC9J,IAAI,CAAC,SAAS,GAAG,IAAI,yCAAwB,CAAiD,IAAI,EAAE,gBAAI,CAAC,UAAU,EAAE,+BAAmB,CAAC,CAAC;QAC1I,IAAI,CAAC,QAAQ,GAAG,IAAI,qCAAkB,CAAC,IAAI,EAAE,+BAAmB,CAAC,CAAC;QAClE,IAAI,CAAC,OAAO,GAAG,IAAI,qCAAoB,CAA6B,IAAI,EAAE,gBAAI,CAAC,OAAO,EAAE,+BAAmB,CAAC,CAAC;QAC7G,IAAI,CAAC,KAAK,GAAG,IAAI,2CAA0B,CAAyC,IAAI,EAAE,gBAAI,CAAC,KAAK,EAAE,+BAAmB,CAAC,CAAC;IAC7H,CAAC;IAED,MAAM,CAAC,QAAQ,CAAC,OAAsB;QACpC,MAAM,IAAI,GAAG,IAAA,uBAAgB,EAAC,OAAO,CAAC,CAAC;QACvC,OAAO,IAAI,cAAc,CAAC,IAAI,CAAC,CAAC;IAClC,CAAC;CACF;AAvCD,wCAuCC"}
1
+ {"version":3,"file":"AmpSdk.js","sourceRoot":"","sources":["../../../src/services/AmpSdk.ts"],"names":[],"mappings":";;;AA0BA,qDAA4K;AAC5K,iCAA0E;AAC1E,2CAAsD;AAGtD,oDAAmE;AACnE,yDAAsD;AAItD;;;;;;;;GAQG;AACH,MAAa,cAAc;IAkBzB,YAAY,IAAgB;QAC1B,IAAI,CAAC,MAAM,GAAG,IAAI,qCAAoB,CAA2C,IAAI,EAAE,gBAAI,CAAC,MAAM,EAAE,+BAAmB,CAAC,CAAC;QACzH,IAAI,CAAC,KAAK,GAAG,IAAI,2CAA0B,CAA2C,IAAI,EAAE,gBAAI,CAAC,MAAM,EAAE,+BAAmB,CAAC,CAAC;QAC9H,IAAI,CAAC,UAAU,GAAG,IAAI,qCAAoB,CAAmD,IAAI,EAAE,gBAAI,CAAC,UAAU,EAAE,+BAAmB,CAAC,CAAC;QACzI,IAAI,CAAC,KAAK,GAAG,IAAI,gCAAkB,CAAC,IAAI,EAAE,+BAAmB,CAAC,CAAC;QAC/D,IAAI,CAAC,QAAQ,GAAG,IAAI,yCAAwB,CAA+C,IAAI,EAAE,gBAAI,CAAC,QAAQ,EAAE,+BAAmB,CAAC,CAAC;QACrI,IAAI,CAAC,aAAa,GAAG,IAAI,qCAAoB,CAAmE,IAAI,EAAE,gBAAI,CAAC,cAAc,EAAE,+BAAmB,CAAC,CAAC;QAChK,IAAI,CAAC,IAAI,GAAG,IAAI,qCAAoB,CAA+C,IAAI,EAAE,gBAAI,CAAC,QAAQ,EAAE,+BAAmB,CAAC,CAAC;QAC7H,IAAI,CAAC,SAAS,GAAG,IAAI,qCAAoB,CAAyC,IAAI,EAAE,gBAAI,CAAC,SAAS,EAAE,+BAAmB,CAAC,CAAC;QAC7H,IAAI,CAAC,aAAa,GAAG,IAAI,yCAAwB,CAAyD,IAAI,EAAE,gBAAI,CAAC,cAAc,EAAE,+BAAmB,CAAC,CAAC;QAC1J,IAAI,CAAC,gBAAgB,GAAG,IAAI,yCAAwB,CAA+D,IAAI,EAAE,gBAAI,CAAC,iBAAiB,EAAE,+BAAmB,CAAC,CAAC;QACtK,IAAI,CAAC,UAAU,GAAG,IAAI,yCAAwB,CAAmD,IAAI,EAAE,gBAAI,CAAC,WAAW,EAAE,+BAAmB,CAAC,CAAC;QAC9I,IAAI,CAAC,cAAc,GAAG,IAAI,yCAAwB,CAA2D,IAAI,EAAE,gBAAI,CAAC,eAAe,EAAE,+BAAmB,CAAC,CAAC;QAC9J,IAAI,CAAC,SAAS,GAAG,IAAI,yCAAwB,CAAiD,IAAI,EAAE,gBAAI,CAAC,UAAU,EAAE,+BAAmB,CAAC,CAAC;QAC1I,IAAI,CAAC,QAAQ,GAAG,IAAI,qCAAkB,CAAC,IAAI,EAAE,+BAAmB,CAAC,CAAC;QAClE,IAAI,CAAC,OAAO,GAAG,IAAI,qCAAoB,CAA6B,IAAI,EAAE,gBAAI,CAAC,OAAO,EAAE,+BAAmB,CAAC,CAAC;QAC7G,IAAI,CAAC,KAAK,GAAG,IAAI,2CAA0B,CAAyC,IAAI,EAAE,gBAAI,CAAC,KAAK,EAAE,+BAAmB,CAAC,CAAC;IAC7H,CAAC;IAED,MAAM,CAAC,QAAQ,CAAC,OAAsB;QACpC,MAAM,IAAI,GAAG,IAAA,uBAAgB,EAAC,OAAO,CAAC,CAAC;QACvC,OAAO,IAAI,cAAc,CAAC,IAAI,CAAC,CAAC;IAClC,CAAC;CACF;AAzCD,wCAyCC"}
@@ -16,6 +16,7 @@ export declare const KIND: {
16
16
  JOB_SPEC: string;
17
17
  PROVIDERS: string;
18
18
  REPORT_RESULTS: string;
19
+ RISK_CONTRIBUTORS: string;
19
20
  SAAS_ASSETS: string;
20
21
  SAAS_COMPONENTS: string;
21
22
  SAAS_USERS: string;
@@ -15,6 +15,7 @@ exports.KIND = {
15
15
  JOB_SPEC: 'jobs',
16
16
  PROVIDERS: 'providers',
17
17
  REPORT_RESULTS: 'report_results',
18
+ RISK_CONTRIBUTORS: 'risk_contributors',
18
19
  SAAS_ASSETS: 'saas_assets',
19
20
  SAAS_COMPONENTS: 'saas_components',
20
21
  SAAS_USERS: 'saas_users',
@@ -1 +1 @@
1
- {"version":3,"file":"constants.js","sourceRoot":"","sources":["../../../src/services/constants.ts"],"names":[],"mappings":";;;AAIa,QAAA,2BAA2B,GAAG,CAAC,CAAC;AAGhC,QAAA,mBAAmB,GAAc,UAAU,CAAC;AAC5C,QAAA,gBAAgB,GAAc,KAAK,CAAC;AAEpC,QAAA,IAAI,GAAG;IAClB,MAAM,EAAE,QAAQ;IAChB,MAAM,EAAE,QAAQ;IAChB,UAAU,EAAE,YAAY;IACxB,gBAAgB,EAAE,aAAa;IAC/B,kBAAkB,EAAE,eAAe;IACnC,QAAQ,EAAE,UAAU;IACpB,cAAc,EAAE,gBAAgB;IAChC,QAAQ,EAAE,MAAM;IAChB,SAAS,EAAE,WAAW;IACtB,cAAc,EAAE,gBAAgB;IAChC,WAAW,EAAE,aAAa;IAC1B,eAAe,EAAE,iBAAiB;IAClC,UAAU,EAAE,YAAY;IACxB,OAAO,EAAE,SAAS;IAClB,KAAK,EAAE,OAAO;CACf,CAAC;AAEW,QAAA,OAAO,GAAG;IACrB,YAAY,EAAE,cAAc;IAC5B,yBAAyB,EAAE,qCAAqC;IAChE,yBAAyB,EAAE,qCAAqC;IAChE,iBAAiB,EAAE,mBAAmB;IACtC,qBAAqB,EAAE,uBAAuB;IAC9C,YAAY,EAAE,0BAA0B;IACxC,qBAAqB,EAAE,uBAAuB;IAC9C,gBAAgB,EAAE,kBAAkB;IACpC,mBAAmB;IACnB,kBAAkB,EAAE,cAAc;CACnC,CAAC"}
1
+ {"version":3,"file":"constants.js","sourceRoot":"","sources":["../../../src/services/constants.ts"],"names":[],"mappings":";;;AAIa,QAAA,2BAA2B,GAAG,CAAC,CAAC;AAGhC,QAAA,mBAAmB,GAAc,UAAU,CAAC;AAC5C,QAAA,gBAAgB,GAAc,KAAK,CAAC;AAEpC,QAAA,IAAI,GAAG;IAClB,MAAM,EAAE,QAAQ;IAChB,MAAM,EAAE,QAAQ;IAChB,UAAU,EAAE,YAAY;IACxB,gBAAgB,EAAE,aAAa;IAC/B,kBAAkB,EAAE,eAAe;IACnC,QAAQ,EAAE,UAAU;IACpB,cAAc,EAAE,gBAAgB;IAChC,QAAQ,EAAE,MAAM;IAChB,SAAS,EAAE,WAAW;IACtB,cAAc,EAAE,gBAAgB;IAChC,iBAAiB,EAAE,mBAAmB;IACtC,WAAW,EAAE,aAAa;IAC1B,eAAe,EAAE,iBAAiB;IAClC,UAAU,EAAE,YAAY;IACxB,OAAO,EAAE,SAAS;IAClB,KAAK,EAAE,OAAO;CACf,CAAC;AAEW,QAAA,OAAO,GAAG;IACrB,YAAY,EAAE,cAAc;IAC5B,yBAAyB,EAAE,qCAAqC;IAChE,yBAAyB,EAAE,qCAAqC;IAChE,iBAAiB,EAAE,mBAAmB;IACtC,qBAAqB,EAAE,uBAAuB;IAC9C,YAAY,EAAE,0BAA0B;IACxC,qBAAqB,EAAE,uBAAuB;IAC9C,gBAAgB,EAAE,kBAAkB;IACpC,mBAAmB;IACnB,kBAAkB,EAAE,cAAc;CACnC,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ampsec/platform-client",
3
- "version": "18.0.0",
3
+ "version": "19.0.0",
4
4
  "description": "",
5
5
  "main": "build/src/index.js",
6
6
  "runkitExampleFilename": "example/main.js",
@@ -8,3 +8,49 @@ export enum RiskContributorType {
8
8
  TRAINING = 'TRAINING',
9
9
  VULNERABILITY = 'VULNERABILITY',
10
10
  }
11
+
12
+ export type RiskContributorValuesType = {
13
+ [key in keyof typeof RiskContributorType]: {
14
+ type: RiskContributorType;
15
+ displayValue: string;
16
+ description: string;
17
+ };
18
+ };
19
+
20
+ export const RiskContributorValues: RiskContributorValuesType = {
21
+ IS_EXECUTIVE: {
22
+ type: RiskContributorType.IS_EXECUTIVE,
23
+ displayValue: 'EXEC',
24
+ description: 'User has executive access',
25
+ },
26
+ MFA: {
27
+ type: RiskContributorType.MFA,
28
+ displayValue: 'MFA',
29
+ description: 'User mfa not enabled',
30
+ },
31
+ PRODUCTION_ACCESS: {
32
+ type: RiskContributorType.PRODUCTION_ACCESS,
33
+ displayValue: 'PROD',
34
+ description: 'User has production access',
35
+ },
36
+ PRIVILEGED_ACCESS: {
37
+ type: RiskContributorType.PRIVILEGED_ACCESS,
38
+ displayValue: 'PRIV',
39
+ description: 'User has privileged access',
40
+ },
41
+ TOOLING: {
42
+ type: RiskContributorType.TOOLING,
43
+ displayValue: 'TOOLING',
44
+ description: 'User edr not enabled',
45
+ },
46
+ TRAINING: {
47
+ type: RiskContributorType.TRAINING,
48
+ displayValue: 'TRAIN',
49
+ description: 'User has failed phishing',
50
+ },
51
+ VULNERABILITY: {
52
+ type: RiskContributorType.VULNERABILITY,
53
+ displayValue: 'VULN',
54
+ description: 'User has vulnerabilities',
55
+ },
56
+ };
@@ -6,6 +6,7 @@ export * from './platform.jobExecutionState.dto';
6
6
  export * from './platform.jobSpec.dto';
7
7
  export * from './platform.providers.dto';
8
8
  export * from './platform.reportResults.dto';
9
+ export * from './platform.riskContributor.dto';
9
10
  export * from './platform.saasAssets.dto';
10
11
  export * from './platform.saasComponents.dto';
11
12
  export * from './platform.saasUsers.dto';
@@ -0,0 +1,5 @@
1
+ import {RiskContributorDto, RiskContributorUpsertDto} from '../riskContributors.dto';
2
+
3
+ export type PlatformRiskContributorUpsertDto = RiskContributorUpsertDto;
4
+
5
+ export type PlatformRiskContributorDto = RiskContributorDto;
@@ -8,6 +8,8 @@ export type RiskContributorUpsertDto = BaseUpsertDto & {
8
8
  displayValue: string;
9
9
  /** Description of the risk contributor */
10
10
  description: string;
11
+ /** User Id */
12
+ uid: string;
11
13
  };
12
14
 
13
15
  export type RiskContributorDto = BaseDto & RiskContributorUpsertDto;
@@ -10,6 +10,8 @@ import {
10
10
  PlatformProviderUpsertDto,
11
11
  PlatformReportResultDto,
12
12
  PlatformReportResultUpsertDto,
13
+ PlatformRiskContributorDto,
14
+ PlatformRiskContributorUpsertDto,
13
15
  PlatformSaasAssetDto,
14
16
  PlatformSaasAssetUpsertDto,
15
17
  PlatformSaasComponentDto,
@@ -51,6 +53,7 @@ export class AmpSdkServices {
51
53
  readonly jobs: AmpEntityService<PlatformJobSpecUpsertDto, PlatformJobSpecDto>;
52
54
  readonly providers: AmpEntityService<PlatformProviderUpsertDto, ProviderDto>;
53
55
  readonly reportResults: AmpSaaSEntityService<PlatformReportResultUpsertDto, PlatformReportResultDto>;
56
+ readonly riskContributors: AmpSaaSEntityService<PlatformRiskContributorUpsertDto, PlatformRiskContributorDto>;
54
57
  readonly saasAssets: AmpSaaSEntityService<PlatformSaasAssetUpsertDto, PlatformSaasAssetDto>;
55
58
  readonly saasComponents: AmpSaaSEntityService<PlatformSaasComponentUpsertDto, PlatformSaasComponentDto>;
56
59
  readonly saasUsers: AmpSaaSEntityService<PlatformSaasUserUpsertDto, PlatformSaasUserDto>;
@@ -68,6 +71,7 @@ export class AmpSdkServices {
68
71
  this.jobs = new AmpEntityServiceImpl<PlatformJobSpecUpsertDto, PlatformJobSpecDto>(rest, KIND.JOB_SPEC, TARGET_API_PLATFORM);
69
72
  this.providers = new AmpEntityServiceImpl<PlatformProviderUpsertDto, ProviderDto>(rest, KIND.PROVIDERS, TARGET_API_PLATFORM);
70
73
  this.reportResults = new AmpSaaSEntityServiceImpl<PlatformReportResultUpsertDto, PlatformReportResultDto>(rest, KIND.REPORT_RESULTS, TARGET_API_PLATFORM);
74
+ this.riskContributors = new AmpSaaSEntityServiceImpl<PlatformRiskContributorUpsertDto, PlatformRiskContributorDto>(rest, KIND.RISK_CONTRIBUTORS, TARGET_API_PLATFORM);
71
75
  this.saasAssets = new AmpSaaSEntityServiceImpl<PlatformSaasAssetUpsertDto, PlatformSaasAssetDto>(rest, KIND.SAAS_ASSETS, TARGET_API_PLATFORM);
72
76
  this.saasComponents = new AmpSaaSEntityServiceImpl<PlatformSaasComponentUpsertDto, PlatformSaasComponentDto>(rest, KIND.SAAS_COMPONENTS, TARGET_API_PLATFORM);
73
77
  this.saasUsers = new AmpSaaSEntityServiceImpl<PlatformSaasUserUpsertDto, PlatformSaasUserDto>(rest, KIND.SAAS_USERS, TARGET_API_PLATFORM);
@@ -19,6 +19,7 @@ export const KIND = {
19
19
  JOB_SPEC: 'jobs',
20
20
  PROVIDERS: 'providers',
21
21
  REPORT_RESULTS: 'report_results',
22
+ RISK_CONTRIBUTORS: 'risk_contributors',
22
23
  SAAS_ASSETS: 'saas_assets',
23
24
  SAAS_COMPONENTS: 'saas_components',
24
25
  SAAS_USERS: 'saas_users',