@harnessio/react-har-service-client 0.15.0 → 0.16.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/dist/har-service/src/services/schemas/AccessKeySecretKey.d.ts +6 -0
- package/dist/har-service/src/services/schemas/ExtraHeader.d.ts +2 -2
- package/dist/har-service/src/services/schemas/MavenArtifactDetailConfig.d.ts +1 -1
- package/dist/har-service/src/services/schemas/NpmArtifactDetailConfig.d.ts +3 -4
- package/dist/har-service/src/services/schemas/Registry.d.ts +2 -0
- package/dist/har-service/src/services/schemas/Trigger.d.ts +1 -1
- package/dist/har-service/src/services/schemas/Webhook.d.ts +3 -0
- package/dist/har-service/src/services/schemas/WebhookRequest.d.ts +3 -0
- package/package.json +1 -1
|
@@ -1,9 +1,15 @@
|
|
|
1
1
|
export interface AccessKeySecretKey {
|
|
2
2
|
accessKey?: string;
|
|
3
3
|
accessKeySecretIdentifier?: string;
|
|
4
|
+
/**
|
|
5
|
+
* @format int64
|
|
6
|
+
*/
|
|
4
7
|
accessKeySecretSpaceId?: number;
|
|
5
8
|
accessKeySecretSpacePath?: string;
|
|
6
9
|
secretKeyIdentifier: string;
|
|
10
|
+
/**
|
|
11
|
+
* @format int64
|
|
12
|
+
*/
|
|
7
13
|
secretKeySpaceId?: number;
|
|
8
14
|
secretKeySpacePath?: string;
|
|
9
15
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import type { CleanupPolicy } from '../schemas/CleanupPolicy';
|
|
2
2
|
import type { RegistryConfig } from '../schemas/RegistryConfig';
|
|
3
3
|
import type { PackageType } from '../schemas/PackageType';
|
|
4
|
+
import type { Scanner } from '../schemas/Scanner';
|
|
4
5
|
/**
|
|
5
6
|
* Harness Artifact Registry
|
|
6
7
|
*/
|
|
@@ -15,5 +16,6 @@ export interface Registry<T0 extends RegistryConfig = RegistryConfig> {
|
|
|
15
16
|
labels?: string[];
|
|
16
17
|
modifiedAt?: string;
|
|
17
18
|
packageType: PackageType;
|
|
19
|
+
scanners?: Scanner[];
|
|
18
20
|
url: string;
|
|
19
21
|
}
|