vanta-auditor-api-sdk 0.6.0 → 0.6.1
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/jsr.json +1 -1
- package/lib/config.d.ts +3 -3
- package/lib/config.js +3 -3
- package/models/components/vantatestrunstatus.d.ts +1 -1
- package/models/components/vantatestrunstatus.js +1 -1
- package/models/components/vantatestsnapshotevidence.d.ts +1 -1
- package/models/components/vantatestsnapshotevidence.js +1 -1
- package/package.json +1 -1
- package/src/lib/config.ts +3 -3
- package/src/models/components/vantatestrunstatus.ts +1 -1
- package/src/models/components/vantatestsnapshotevidence.ts +1 -1
package/jsr.json
CHANGED
package/lib/config.d.ts
CHANGED
|
@@ -31,8 +31,8 @@ export declare function serverURLFromOptions(options: SDKOptions): URL | null;
|
|
|
31
31
|
export declare const SDK_METADATA: {
|
|
32
32
|
readonly language: "typescript";
|
|
33
33
|
readonly openapiDocVersion: "1.0.0";
|
|
34
|
-
readonly sdkVersion: "0.6.
|
|
35
|
-
readonly genVersion: "2.
|
|
36
|
-
readonly userAgent: "speakeasy-sdk/typescript 0.6.
|
|
34
|
+
readonly sdkVersion: "0.6.1";
|
|
35
|
+
readonly genVersion: "2.884.4";
|
|
36
|
+
readonly userAgent: "speakeasy-sdk/typescript 0.6.1 2.884.4 1.0.0 vanta-auditor-api-sdk";
|
|
37
37
|
};
|
|
38
38
|
//# sourceMappingURL=config.d.ts.map
|
package/lib/config.js
CHANGED
|
@@ -35,8 +35,8 @@ function serverURLFromOptions(options) {
|
|
|
35
35
|
exports.SDK_METADATA = {
|
|
36
36
|
language: "typescript",
|
|
37
37
|
openapiDocVersion: "1.0.0",
|
|
38
|
-
sdkVersion: "0.6.
|
|
39
|
-
genVersion: "2.
|
|
40
|
-
userAgent: "speakeasy-sdk/typescript 0.6.
|
|
38
|
+
sdkVersion: "0.6.1",
|
|
39
|
+
genVersion: "2.884.4",
|
|
40
|
+
userAgent: "speakeasy-sdk/typescript 0.6.1 2.884.4 1.0.0 vanta-auditor-api-sdk",
|
|
41
41
|
};
|
|
42
42
|
//# sourceMappingURL=config.js.map
|
|
@@ -3,8 +3,8 @@ import { ClosedEnum } from "../../types/enums.js";
|
|
|
3
3
|
export declare const VantaTestRunStatus: {
|
|
4
4
|
readonly Na: "NA";
|
|
5
5
|
readonly InProgress: "IN_PROGRESS";
|
|
6
|
-
readonly Pass: "PASS";
|
|
7
6
|
readonly Fail: "FAIL";
|
|
7
|
+
readonly Pass: "PASS";
|
|
8
8
|
readonly Invalid: "INVALID";
|
|
9
9
|
readonly Disabled: "DISABLED";
|
|
10
10
|
};
|
|
@@ -8,8 +8,8 @@ import { SDKValidationError } from "../errors/sdkvalidationerror.js";
|
|
|
8
8
|
export declare const TestRunStatus: {
|
|
9
9
|
readonly Na: "NA";
|
|
10
10
|
readonly InProgress: "IN_PROGRESS";
|
|
11
|
-
readonly Pass: "PASS";
|
|
12
11
|
readonly Fail: "FAIL";
|
|
12
|
+
readonly Pass: "PASS";
|
|
13
13
|
readonly Invalid: "INVALID";
|
|
14
14
|
readonly Disabled: "DISABLED";
|
|
15
15
|
};
|
package/package.json
CHANGED
package/src/lib/config.ts
CHANGED
|
@@ -65,8 +65,8 @@ export function serverURLFromOptions(options: SDKOptions): URL | null {
|
|
|
65
65
|
export const SDK_METADATA = {
|
|
66
66
|
language: "typescript",
|
|
67
67
|
openapiDocVersion: "1.0.0",
|
|
68
|
-
sdkVersion: "0.6.
|
|
69
|
-
genVersion: "2.
|
|
68
|
+
sdkVersion: "0.6.1",
|
|
69
|
+
genVersion: "2.884.4",
|
|
70
70
|
userAgent:
|
|
71
|
-
"speakeasy-sdk/typescript 0.6.
|
|
71
|
+
"speakeasy-sdk/typescript 0.6.1 2.884.4 1.0.0 vanta-auditor-api-sdk",
|
|
72
72
|
} as const;
|
|
@@ -14,8 +14,8 @@ import { SDKValidationError } from "../errors/sdkvalidationerror.js";
|
|
|
14
14
|
export const TestRunStatus = {
|
|
15
15
|
Na: "NA",
|
|
16
16
|
InProgress: "IN_PROGRESS",
|
|
17
|
-
Pass: "PASS",
|
|
18
17
|
Fail: "FAIL",
|
|
18
|
+
Pass: "PASS",
|
|
19
19
|
Invalid: "INVALID",
|
|
20
20
|
Disabled: "DISABLED",
|
|
21
21
|
} as const;
|