vanta-auditor-api-sdk 0.6.2 → 0.6.3
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/README.md +4 -2
- package/jsr.json +1 -1
- package/lib/config.d.ts +2 -2
- package/lib/config.js +2 -2
- package/package.json +1 -1
- package/src/lib/config.ts +2 -2
package/README.md
CHANGED
|
@@ -326,8 +326,10 @@ const vanta = new Vanta({
|
|
|
326
326
|
|
|
327
327
|
async function run() {
|
|
328
328
|
try {
|
|
329
|
-
const result = await vanta.
|
|
330
|
-
|
|
329
|
+
const result = await vanta.auditors.create({
|
|
330
|
+
email: "Genesis_Kunze87@yahoo.com",
|
|
331
|
+
givenName: "<value>",
|
|
332
|
+
familyName: "<value>",
|
|
331
333
|
});
|
|
332
334
|
|
|
333
335
|
console.log(result);
|
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.
|
|
34
|
+
readonly sdkVersion: "0.6.3";
|
|
35
35
|
readonly genVersion: "2.884.13";
|
|
36
|
-
readonly userAgent: "speakeasy-sdk/typescript 0.6.
|
|
36
|
+
readonly userAgent: "speakeasy-sdk/typescript 0.6.3 2.884.13 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.
|
|
38
|
+
sdkVersion: "0.6.3",
|
|
39
39
|
genVersion: "2.884.13",
|
|
40
|
-
userAgent: "speakeasy-sdk/typescript 0.6.
|
|
40
|
+
userAgent: "speakeasy-sdk/typescript 0.6.3 2.884.13 1.0.0 vanta-auditor-api-sdk",
|
|
41
41
|
};
|
|
42
42
|
//# sourceMappingURL=config.js.map
|
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.
|
|
68
|
+
sdkVersion: "0.6.3",
|
|
69
69
|
genVersion: "2.884.13",
|
|
70
70
|
userAgent:
|
|
71
|
-
"speakeasy-sdk/typescript 0.6.
|
|
71
|
+
"speakeasy-sdk/typescript 0.6.3 2.884.13 1.0.0 vanta-auditor-api-sdk",
|
|
72
72
|
} as const;
|