seam 0.52.0 → 0.53.0

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,7 +1,6 @@
1
1
  'use strict';
2
2
 
3
3
  var connect = require('@seamapi/http/connect');
4
- var connect$1 = require('@seamapi/types/connect');
5
4
  var webhook = require('@seamapi/webhook');
6
5
 
7
6
 
@@ -16,12 +15,6 @@ Object.keys(connect).forEach(function (k) {
16
15
  get: function () { return connect[k]; }
17
16
  });
18
17
  });
19
- Object.keys(connect$1).forEach(function (k) {
20
- if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
21
- enumerable: true,
22
- get: function () { return connect$1[k]; }
23
- });
24
- });
25
18
  Object.keys(webhook).forEach(function (k) {
26
19
  if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
27
20
  enumerable: true,
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/index.ts"],"names":[],"mappings":";AAAA,SAAS,YAAY,YAAY;AAEjC,cAAc;AACd,cAAc;AACd,cAAc","sourcesContent":["import { SeamHttp as Seam } from '@seamapi/http/connect'\n\nexport * from '@seamapi/http/connect'\nexport * from '@seamapi/types/connect'\nexport * from '@seamapi/webhook'\nexport { Seam }\n"]}
1
+ {"version":3,"sources":["../src/index.ts"],"names":[],"mappings":";AAAA,SAAS,YAAY,YAAY;AAEjC,cAAc;AAEd,cAAc","sourcesContent":["import { SeamHttp as Seam } from '@seamapi/http/connect'\n\nexport * from '@seamapi/http/connect'\nexport type * from '@seamapi/types/connect'\nexport * from '@seamapi/webhook'\nexport { Seam }\n"]}
package/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import { SeamHttp as Seam } from '@seamapi/http/connect';
2
2
  export * from '@seamapi/http/connect';
3
- export * from '@seamapi/types/connect';
3
+ export type * from '@seamapi/types/connect';
4
4
  export * from '@seamapi/webhook';
5
5
  export { Seam };
package/index.js CHANGED
@@ -1,6 +1,5 @@
1
1
  import { SeamHttp as Seam } from '@seamapi/http/connect';
2
2
  export * from '@seamapi/http/connect';
3
- export * from '@seamapi/types/connect';
4
3
  export * from '@seamapi/webhook';
5
4
  export { Seam };
6
5
  //# 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,EAAE,QAAQ,IAAI,IAAI,EAAE,MAAM,uBAAuB,CAAA;AAExD,cAAc,uBAAuB,CAAA;AACrC,cAAc,wBAAwB,CAAA;AACtC,cAAc,kBAAkB,CAAA;AAChC,OAAO,EAAE,IAAI,EAAE,CAAA"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,IAAI,IAAI,EAAE,MAAM,uBAAuB,CAAA;AAExD,cAAc,uBAAuB,CAAA;AAErC,cAAc,kBAAkB,CAAA;AAChC,OAAO,EAAE,IAAI,EAAE,CAAA"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "seam",
3
- "version": "0.52.0",
3
+ "version": "0.53.0",
4
4
  "description": "JavaScript SDK for the Seam API written in TypeScript.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -65,9 +65,10 @@
65
65
  },
66
66
  "dependencies": {
67
67
  "@seamapi/http": "0.25.3",
68
- "@seamapi/types": "1.153.0",
68
+ "@seamapi/types": "1.153.2",
69
69
  "@seamapi/webhook": "1.0.0-rc.0",
70
- "seamapi-types": "1.42.0"
70
+ "seamapi-types": "1.42.0",
71
+ "zod": "^3.21.4"
71
72
  },
72
73
  "devDependencies": {
73
74
  "@types/node": "^20.8.10",
package/src/index.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import { SeamHttp as Seam } from '@seamapi/http/connect'
2
2
 
3
3
  export * from '@seamapi/http/connect'
4
- export * from '@seamapi/types/connect'
4
+ export type * from '@seamapi/types/connect'
5
5
  export * from '@seamapi/webhook'
6
6
  export { Seam }