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 CHANGED
@@ -326,8 +326,10 @@ const vanta = new Vanta({
326
326
 
327
327
  async function run() {
328
328
  try {
329
- const result = await vanta.audits.getAudit({
330
- auditId: "<id>",
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
@@ -2,7 +2,7 @@
2
2
 
3
3
  {
4
4
  "name": "vanta-auditor-api-sdk",
5
- "version": "0.6.2",
5
+ "version": "0.6.3",
6
6
  "exports": {
7
7
  ".": "./src/index.ts",
8
8
  "./models/errors": "./src/models/errors/index.ts",
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.2";
34
+ readonly sdkVersion: "0.6.3";
35
35
  readonly genVersion: "2.884.13";
36
- readonly userAgent: "speakeasy-sdk/typescript 0.6.2 2.884.13 1.0.0 vanta-auditor-api-sdk";
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.2",
38
+ sdkVersion: "0.6.3",
39
39
  genVersion: "2.884.13",
40
- userAgent: "speakeasy-sdk/typescript 0.6.2 2.884.13 1.0.0 vanta-auditor-api-sdk",
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vanta-auditor-api-sdk",
3
- "version": "0.6.2",
3
+ "version": "0.6.3",
4
4
  "author": "Speakeasy",
5
5
  "main": "./index.js",
6
6
  "sideEffects": false,
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.2",
68
+ sdkVersion: "0.6.3",
69
69
  genVersion: "2.884.13",
70
70
  userAgent:
71
- "speakeasy-sdk/typescript 0.6.2 2.884.13 1.0.0 vanta-auditor-api-sdk",
71
+ "speakeasy-sdk/typescript 0.6.3 2.884.13 1.0.0 vanta-auditor-api-sdk",
72
72
  } as const;