@steuerboard/mcp 0.3.0 → 0.3.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.
@@ -35,8 +35,8 @@ export declare function serverURLFromOptions(options: SDKOptions): URL | null;
35
35
  export declare const SDK_METADATA: {
36
36
  readonly language: "typescript";
37
37
  readonly openapiDocVersion: "0.1.0";
38
- readonly sdkVersion: "0.3.0";
38
+ readonly sdkVersion: "0.3.3";
39
39
  readonly genVersion: "2.721.3";
40
- readonly userAgent: "speakeasy-sdk/mcp-typescript 0.3.0 2.721.3 0.1.0 @steuerboard/mcp";
40
+ readonly userAgent: "speakeasy-sdk/mcp-typescript 0.3.3 2.721.3 0.1.0 @steuerboard/mcp";
41
41
  };
42
42
  //# sourceMappingURL=config.d.ts.map
@@ -24,8 +24,8 @@ export function serverURLFromOptions(options) {
24
24
  export const SDK_METADATA = {
25
25
  language: "typescript",
26
26
  openapiDocVersion: "0.1.0",
27
- sdkVersion: "0.3.0",
27
+ sdkVersion: "0.3.3",
28
28
  genVersion: "2.721.3",
29
- userAgent: "speakeasy-sdk/mcp-typescript 0.3.0 2.721.3 0.1.0 @steuerboard/mcp",
29
+ userAgent: "speakeasy-sdk/mcp-typescript 0.3.3 2.721.3 0.1.0 @steuerboard/mcp",
30
30
  };
31
31
  //# sourceMappingURL=config.js.map
@@ -16,7 +16,7 @@ const routes = buildRouteMap({
16
16
  export const app = buildApplication(routes, {
17
17
  name: "mcp",
18
18
  versionInfo: {
19
- currentVersion: "0.3.0",
19
+ currentVersion: "0.3.3",
20
20
  },
21
21
  });
22
22
  run(app, process.argv.slice(2), buildContext(process));
@@ -43,7 +43,7 @@ import { tool$workspacesUpdateWorkspace } from "./tools/workspacesUpdateWorkspac
43
43
  export function createMCPServer(deps) {
44
44
  const server = new McpServer({
45
45
  name: "Steuerboard",
46
- version: "0.3.0",
46
+ version: "0.3.3",
47
47
  });
48
48
  const getClient = deps.getSDK || (() => new SteuerboardCore({
49
49
  security: deps.security,
@@ -1,12 +1,12 @@
1
1
  import * as z from "zod";
2
2
  /**
3
- * Role to assign to the invited user.
3
+ * Role to assign to the invited user. Can be 'admin', 'user'.
4
4
  */
5
- export declare const ClientUserInviteRole$zodSchema: z.ZodEnum<["client_admin", "client_user"]>;
6
- export type ClientUserInviteRole = z.infer<typeof ClientUserInviteRole$zodSchema>;
5
+ export declare const ClientUserInviteUserRole$zodSchema: z.ZodEnum<["admin", "user"]>;
6
+ export type ClientUserInviteUserRole = z.infer<typeof ClientUserInviteUserRole$zodSchema>;
7
7
  export type ClientUserInvite = {
8
8
  email: string;
9
- role: ClientUserInviteRole;
9
+ role: ClientUserInviteUserRole;
10
10
  workspaceIds?: Array<string> | undefined;
11
11
  };
12
12
  export declare const ClientUserInvite$zodSchema: z.ZodType<ClientUserInvite, z.ZodTypeDef, unknown>;
@@ -1 +1 @@
1
- {"version":3,"file":"clientuserinvite.d.ts","sourceRoot":"","sources":["../../../src/models/clientuserinvite.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB;;GAEG;AACH,eAAO,MAAM,8BAA8B,4CAGO,CAAC;AAEnD,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CACxC,OAAO,8BAA8B,CACtC,CAAC;AAEF,MAAM,MAAM,gBAAgB,GAAG;IAC7B,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,oBAAoB,CAAC;IAC3B,YAAY,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,GAAG,SAAS,CAAC;CAC1C,CAAC;AAEF,eAAO,MAAM,0BAA0B,EAAE,CAAC,CAAC,OAAO,CAChD,gBAAgB,EAChB,CAAC,CAAC,UAAU,EACZ,OAAO,CAKP,CAAC"}
1
+ {"version":3,"file":"clientuserinvite.d.ts","sourceRoot":"","sources":["../../../src/models/clientuserinvite.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB;;GAEG;AACH,eAAO,MAAM,kCAAkC,8BAG2B,CAAC;AAE3E,MAAM,MAAM,wBAAwB,GAAG,CAAC,CAAC,KAAK,CAC5C,OAAO,kCAAkC,CAC1C,CAAC;AAEF,MAAM,MAAM,gBAAgB,GAAG;IAC7B,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,wBAAwB,CAAC;IAC/B,YAAY,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,GAAG,SAAS,CAAC;CAC1C,CAAC;AAEF,eAAO,MAAM,0BAA0B,EAAE,CAAC,CAAC,OAAO,CAChD,gBAAgB,EAChB,CAAC,CAAC,UAAU,EACZ,OAAO,CAKP,CAAC"}
@@ -3,15 +3,15 @@
3
3
  */
4
4
  import * as z from "zod";
5
5
  /**
6
- * Role to assign to the invited user.
6
+ * Role to assign to the invited user. Can be 'admin', 'user'.
7
7
  */
8
- export const ClientUserInviteRole$zodSchema = z.enum([
9
- "client_admin",
10
- "client_user",
11
- ]).describe("Role to assign to the invited user.");
8
+ export const ClientUserInviteUserRole$zodSchema = z.enum([
9
+ "admin",
10
+ "user",
11
+ ]).describe("Role to assign to the invited user. Can be 'admin', 'user'.");
12
12
  export const ClientUserInvite$zodSchema = z.object({
13
13
  email: z.string(),
14
- role: ClientUserInviteRole$zodSchema,
14
+ role: ClientUserInviteUserRole$zodSchema,
15
15
  workspaceIds: z.array(z.string()).optional(),
16
16
  });
17
17
  //# sourceMappingURL=clientuserinvite.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"clientuserinvite.js","sourceRoot":"","sources":["../../../src/models/clientuserinvite.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB;;GAEG;AACH,MAAM,CAAC,MAAM,8BAA8B,GAAG,CAAC,CAAC,IAAI,CAAC;IACnD,cAAc;IACd,aAAa;CACd,CAAC,CAAC,QAAQ,CAAC,qCAAqC,CAAC,CAAC;AAYnD,MAAM,CAAC,MAAM,0BAA0B,GAInC,CAAC,CAAC,MAAM,CAAC;IACX,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE;IACjB,IAAI,EAAE,8BAA8B;IACpC,YAAY,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,EAAE;CAC7C,CAAC,CAAC"}
1
+ {"version":3,"file":"clientuserinvite.js","sourceRoot":"","sources":["../../../src/models/clientuserinvite.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB;;GAEG;AACH,MAAM,CAAC,MAAM,kCAAkC,GAAG,CAAC,CAAC,IAAI,CAAC;IACvD,OAAO;IACP,MAAM;CACP,CAAC,CAAC,QAAQ,CAAC,6DAA6D,CAAC,CAAC;AAY3E,MAAM,CAAC,MAAM,0BAA0B,GAInC,CAAC,CAAC,MAAM,CAAC;IACX,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE;IACjB,IAAI,EAAE,kCAAkC;IACxC,YAAY,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,EAAE;CAC7C,CAAC,CAAC"}
@@ -1,11 +1,11 @@
1
1
  import * as z from "zod";
2
2
  /**
3
- * Role that should replace the user's current role.
3
+ * Role to assign to the invited user. Can be 'admin', 'user'.
4
4
  */
5
- export declare const ClientUserUpdateRole$zodSchema: z.ZodEnum<["client_admin", "client_user"]>;
6
- export type ClientUserUpdateRole = z.infer<typeof ClientUserUpdateRole$zodSchema>;
5
+ export declare const ClientUserUpdateUserRole$zodSchema: z.ZodEnum<["admin", "user"]>;
6
+ export type ClientUserUpdateUserRole = z.infer<typeof ClientUserUpdateUserRole$zodSchema>;
7
7
  export type ClientUserUpdate = {
8
- role: ClientUserUpdateRole;
8
+ role: ClientUserUpdateUserRole;
9
9
  };
10
10
  export declare const ClientUserUpdate$zodSchema: z.ZodType<ClientUserUpdate, z.ZodTypeDef, unknown>;
11
11
  //# sourceMappingURL=clientuserupdate.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"clientuserupdate.d.ts","sourceRoot":"","sources":["../../../src/models/clientuserupdate.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB;;GAEG;AACH,eAAO,MAAM,8BAA8B,4CAGqB,CAAC;AAEjE,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CACxC,OAAO,8BAA8B,CACtC,CAAC;AAEF,MAAM,MAAM,gBAAgB,GAAG;IAAE,IAAI,EAAE,oBAAoB,CAAA;CAAE,CAAC;AAE9D,eAAO,MAAM,0BAA0B,EAAE,CAAC,CAAC,OAAO,CAChD,gBAAgB,EAChB,CAAC,CAAC,UAAU,EACZ,OAAO,CAGP,CAAC"}
1
+ {"version":3,"file":"clientuserupdate.d.ts","sourceRoot":"","sources":["../../../src/models/clientuserupdate.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB;;GAEG;AACH,eAAO,MAAM,kCAAkC,8BAG2B,CAAC;AAE3E,MAAM,MAAM,wBAAwB,GAAG,CAAC,CAAC,KAAK,CAC5C,OAAO,kCAAkC,CAC1C,CAAC;AAEF,MAAM,MAAM,gBAAgB,GAAG;IAAE,IAAI,EAAE,wBAAwB,CAAA;CAAE,CAAC;AAElE,eAAO,MAAM,0BAA0B,EAAE,CAAC,CAAC,OAAO,CAChD,gBAAgB,EAChB,CAAC,CAAC,UAAU,EACZ,OAAO,CAGP,CAAC"}
@@ -3,13 +3,13 @@
3
3
  */
4
4
  import * as z from "zod";
5
5
  /**
6
- * Role that should replace the user's current role.
6
+ * Role to assign to the invited user. Can be 'admin', 'user'.
7
7
  */
8
- export const ClientUserUpdateRole$zodSchema = z.enum([
9
- "client_admin",
10
- "client_user",
11
- ]).describe("Role that should replace the user's current role.");
8
+ export const ClientUserUpdateUserRole$zodSchema = z.enum([
9
+ "admin",
10
+ "user",
11
+ ]).describe("Role to assign to the invited user. Can be 'admin', 'user'.");
12
12
  export const ClientUserUpdate$zodSchema = z.object({
13
- role: ClientUserUpdateRole$zodSchema,
13
+ role: ClientUserUpdateUserRole$zodSchema,
14
14
  });
15
15
  //# sourceMappingURL=clientuserupdate.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"clientuserupdate.js","sourceRoot":"","sources":["../../../src/models/clientuserupdate.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB;;GAEG;AACH,MAAM,CAAC,MAAM,8BAA8B,GAAG,CAAC,CAAC,IAAI,CAAC;IACnD,cAAc;IACd,aAAa;CACd,CAAC,CAAC,QAAQ,CAAC,mDAAmD,CAAC,CAAC;AAQjE,MAAM,CAAC,MAAM,0BAA0B,GAInC,CAAC,CAAC,MAAM,CAAC;IACX,IAAI,EAAE,8BAA8B;CACrC,CAAC,CAAC"}
1
+ {"version":3,"file":"clientuserupdate.js","sourceRoot":"","sources":["../../../src/models/clientuserupdate.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB;;GAEG;AACH,MAAM,CAAC,MAAM,kCAAkC,GAAG,CAAC,CAAC,IAAI,CAAC;IACvD,OAAO;IACP,MAAM;CACP,CAAC,CAAC,QAAQ,CAAC,6DAA6D,CAAC,CAAC;AAQ3E,MAAM,CAAC,MAAM,0BAA0B,GAInC,CAAC,CAAC,MAAM,CAAC;IACX,IAAI,EAAE,kCAAkC;CACzC,CAAC,CAAC"}
package/manifest.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "dxt_version": "0.1",
3
3
  "name": "@steuerboard/mcp",
4
- "version": "0.3.0",
4
+ "version": "0.3.3",
5
5
  "description": "",
6
6
  "long_description": "",
7
7
  "author": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@steuerboard/mcp",
3
- "version": "0.3.0",
3
+ "version": "0.3.3",
4
4
  "author": "Steuerboard",
5
5
  "type": "module",
6
6
  "sideEffects": false,
package/src/lib/config.ts CHANGED
@@ -62,8 +62,8 @@ export function serverURLFromOptions(options: SDKOptions): URL | null {
62
62
  export const SDK_METADATA = {
63
63
  language: "typescript",
64
64
  openapiDocVersion: "0.1.0",
65
- sdkVersion: "0.3.0",
65
+ sdkVersion: "0.3.3",
66
66
  genVersion: "2.721.3",
67
67
  userAgent:
68
- "speakeasy-sdk/mcp-typescript 0.3.0 2.721.3 0.1.0 @steuerboard/mcp",
68
+ "speakeasy-sdk/mcp-typescript 0.3.3 2.721.3 0.1.0 @steuerboard/mcp",
69
69
  } as const;
@@ -19,7 +19,7 @@ const routes = buildRouteMap({
19
19
  export const app = buildApplication(routes, {
20
20
  name: "mcp",
21
21
  versionInfo: {
22
- currentVersion: "0.3.0",
22
+ currentVersion: "0.3.3",
23
23
  },
24
24
  });
25
25
 
@@ -59,7 +59,7 @@ export function createMCPServer(deps: {
59
59
  }) {
60
60
  const server = new McpServer({
61
61
  name: "Steuerboard",
62
- version: "0.3.0",
62
+ version: "0.3.3",
63
63
  });
64
64
 
65
65
  const getClient = deps.getSDK || (() =>
@@ -5,20 +5,20 @@
5
5
  import * as z from "zod";
6
6
 
7
7
  /**
8
- * Role to assign to the invited user.
8
+ * Role to assign to the invited user. Can be 'admin', 'user'.
9
9
  */
10
- export const ClientUserInviteRole$zodSchema = z.enum([
11
- "client_admin",
12
- "client_user",
13
- ]).describe("Role to assign to the invited user.");
10
+ export const ClientUserInviteUserRole$zodSchema = z.enum([
11
+ "admin",
12
+ "user",
13
+ ]).describe("Role to assign to the invited user. Can be 'admin', 'user'.");
14
14
 
15
- export type ClientUserInviteRole = z.infer<
16
- typeof ClientUserInviteRole$zodSchema
15
+ export type ClientUserInviteUserRole = z.infer<
16
+ typeof ClientUserInviteUserRole$zodSchema
17
17
  >;
18
18
 
19
19
  export type ClientUserInvite = {
20
20
  email: string;
21
- role: ClientUserInviteRole;
21
+ role: ClientUserInviteUserRole;
22
22
  workspaceIds?: Array<string> | undefined;
23
23
  };
24
24
 
@@ -28,6 +28,6 @@ export const ClientUserInvite$zodSchema: z.ZodType<
28
28
  unknown
29
29
  > = z.object({
30
30
  email: z.string(),
31
- role: ClientUserInviteRole$zodSchema,
31
+ role: ClientUserInviteUserRole$zodSchema,
32
32
  workspaceIds: z.array(z.string()).optional(),
33
33
  });
@@ -5,23 +5,23 @@
5
5
  import * as z from "zod";
6
6
 
7
7
  /**
8
- * Role that should replace the user's current role.
8
+ * Role to assign to the invited user. Can be 'admin', 'user'.
9
9
  */
10
- export const ClientUserUpdateRole$zodSchema = z.enum([
11
- "client_admin",
12
- "client_user",
13
- ]).describe("Role that should replace the user's current role.");
10
+ export const ClientUserUpdateUserRole$zodSchema = z.enum([
11
+ "admin",
12
+ "user",
13
+ ]).describe("Role to assign to the invited user. Can be 'admin', 'user'.");
14
14
 
15
- export type ClientUserUpdateRole = z.infer<
16
- typeof ClientUserUpdateRole$zodSchema
15
+ export type ClientUserUpdateUserRole = z.infer<
16
+ typeof ClientUserUpdateUserRole$zodSchema
17
17
  >;
18
18
 
19
- export type ClientUserUpdate = { role: ClientUserUpdateRole };
19
+ export type ClientUserUpdate = { role: ClientUserUpdateUserRole };
20
20
 
21
21
  export const ClientUserUpdate$zodSchema: z.ZodType<
22
22
  ClientUserUpdate,
23
23
  z.ZodTypeDef,
24
24
  unknown
25
25
  > = z.object({
26
- role: ClientUserUpdateRole$zodSchema,
26
+ role: ClientUserUpdateUserRole$zodSchema,
27
27
  });