seam 1.227.0 → 1.227.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/dist/index.cjs CHANGED
@@ -1,6 +1,7 @@
1
1
  'use strict';
2
2
 
3
3
  var http = require('@seamapi/http');
4
+ var types = require('@seamapi/types');
4
5
  var webhook = require('@seamapi/webhook');
5
6
 
6
7
 
@@ -17,6 +18,10 @@ Object.defineProperty(exports, "SeamWithoutWorkspace", {
17
18
  enumerable: true,
18
19
  get: function () { return http.SeamHttpWithoutWorkspace; }
19
20
  });
21
+ Object.defineProperty(exports, "schemas", {
22
+ enumerable: true,
23
+ get: function () { return types.schemas; }
24
+ });
20
25
  Object.keys(http).forEach(function (k) {
21
26
  if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
22
27
  enumerable: true,
package/dist/index.d.cts CHANGED
@@ -1,4 +1,4 @@
1
1
  export * from '@seamapi/http';
2
2
  export { SeamHttp as Seam, SeamHttpEndpoints as SeamEndpoints, SeamHttpWithoutWorkspaceOptions as SeamMultiWorkspaceOptions, SeamHttpOptions as SeamOptions, SeamHttpWithoutWorkspace as SeamWithoutWorkspace, SeamHttpWithoutWorkspace as SeamWithoutWorkspaceOptions } from '@seamapi/http';
3
- export { openapi } from '@seamapi/types';
3
+ export { openapi, schemas } from '@seamapi/types';
4
4
  export * from '@seamapi/webhook';
package/index.d.ts CHANGED
@@ -1,6 +1,7 @@
1
1
  import { SeamHttp as Seam, SeamHttpEndpoints as SeamEndpoints, type SeamHttpOptions as SeamOptions, SeamHttpWithoutWorkspace as SeamWithoutWorkspace, type SeamHttpWithoutWorkspace as SeamWithoutWorkspaceOptions, type SeamHttpWithoutWorkspaceOptions as SeamMultiWorkspaceOptions } from '@seamapi/http';
2
2
  export * from '@seamapi/http';
3
3
  export type { openapi } from '@seamapi/types';
4
+ export { schemas } from '@seamapi/types';
4
5
  export * from '@seamapi/webhook';
5
6
  export { Seam, SeamEndpoints, SeamWithoutWorkspace };
6
7
  export type { SeamMultiWorkspaceOptions, SeamOptions, SeamWithoutWorkspaceOptions, };
package/index.js CHANGED
@@ -1,5 +1,6 @@
1
1
  import { SeamHttp as Seam, SeamHttpEndpoints as SeamEndpoints, SeamHttpWithoutWorkspace as SeamWithoutWorkspace, } from '@seamapi/http';
2
2
  export * from '@seamapi/http';
3
+ export { schemas } from '@seamapi/types';
3
4
  export * from '@seamapi/webhook';
4
5
  export { Seam, SeamEndpoints, SeamWithoutWorkspace };
5
6
  //# sourceMappingURL=index.js.map
package/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,QAAQ,IAAI,IAAI,EAChB,iBAAiB,IAAI,aAAa,EAElC,wBAAwB,IAAI,oBAAoB,GAGjD,MAAM,eAAe,CAAA;AAEtB,cAAc,eAAe,CAAA;AAE7B,cAAc,kBAAkB,CAAA;AAChC,OAAO,EAAE,IAAI,EAAE,aAAa,EAAE,oBAAoB,EAAE,CAAA"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,QAAQ,IAAI,IAAI,EAChB,iBAAiB,IAAI,aAAa,EAElC,wBAAwB,IAAI,oBAAoB,GAGjD,MAAM,eAAe,CAAA;AAEtB,cAAc,eAAe,CAAA;AAE7B,OAAO,EAAE,OAAO,EAAE,MAAM,gBAAgB,CAAA;AACxC,cAAc,kBAAkB,CAAA;AAChC,OAAO,EAAE,IAAI,EAAE,aAAa,EAAE,oBAAoB,EAAE,CAAA"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "seam",
3
- "version": "1.227.0",
3
+ "version": "1.227.1",
4
4
  "description": "JavaScript SDK for the Seam API written in TypeScript.",
5
5
  "type": "module",
6
6
  "main": "index.js",
package/src/index.ts CHANGED
@@ -9,6 +9,7 @@ import {
9
9
 
10
10
  export * from '@seamapi/http'
11
11
  export type { openapi } from '@seamapi/types'
12
+ export { schemas } from '@seamapi/types'
12
13
  export * from '@seamapi/webhook'
13
14
  export { Seam, SeamEndpoints, SeamWithoutWorkspace }
14
15
  export type {