@marcoappio/marco-config 2.0.406 → 2.0.407

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.
Files changed (40) hide show
  1. package/dist/clients/account.d.ts +52 -52
  2. package/dist/clients/contact.d.ts +3 -3
  3. package/dist/clients/draft.d.ts +88 -88
  4. package/dist/clients/index.d.ts +208 -208
  5. package/dist/clients/thread.d.ts +48 -48
  6. package/dist/clients/user.d.ts +17 -17
  7. package/dist/schemas/auth.d.ts +2 -2
  8. package/dist/schemas/emailAccount.d.ts +10 -10
  9. package/dist/schemas/index.d.ts +22 -22
  10. package/dist/schemas/number.d.ts +2 -2
  11. package/dist/schemas/pushNotifications.d.ts +2 -2
  12. package/dist/schemas/string.d.ts +6 -6
  13. package/dist/sdk/endpoints/index.d.ts +272 -272
  14. package/dist/sdk/endpoints/private/emailMessage/getEmailMessageAttachment.d.ts +1 -1
  15. package/dist/sdk/endpoints/private/emailMessage/getEmailMessageHTML.d.ts +2 -2
  16. package/dist/sdk/endpoints/private/emailMessage/index.d.ts +3 -3
  17. package/dist/sdk/endpoints/private/index.d.ts +248 -248
  18. package/dist/sdk/endpoints/private/sync/index.d.ts +244 -244
  19. package/dist/sdk/endpoints/private/sync/pull/account.d.ts +17 -17
  20. package/dist/sdk/endpoints/private/sync/pull/contact.d.ts +11 -11
  21. package/dist/sdk/endpoints/private/sync/pull/draft.d.ts +23 -23
  22. package/dist/sdk/endpoints/private/sync/pull/index.d.ts +96 -96
  23. package/dist/sdk/endpoints/private/sync/pull/thread.d.ts +34 -34
  24. package/dist/sdk/endpoints/private/sync/pull/user.d.ts +11 -11
  25. package/dist/sdk/endpoints/private/sync/push/account.d.ts +40 -40
  26. package/dist/sdk/endpoints/private/sync/push/draft.d.ts +70 -70
  27. package/dist/sdk/endpoints/private/sync/push/index.d.ts +148 -148
  28. package/dist/sdk/endpoints/private/sync/push/thread.d.ts +27 -27
  29. package/dist/sdk/endpoints/private/sync/push/user.d.ts +11 -11
  30. package/dist/sdk/endpoints/private/user/deleteUser.d.ts +1 -1
  31. package/dist/sdk/endpoints/private/user/index.d.ts +1 -1
  32. package/dist/sdk/endpoints/public/auth/index.d.ts +21 -21
  33. package/dist/sdk/endpoints/public/auth/refreshAuth.d.ts +9 -9
  34. package/dist/sdk/endpoints/public/auth/sendAuthCode.d.ts +2 -2
  35. package/dist/sdk/endpoints/public/auth/verifyAuthCode.d.ts +10 -10
  36. package/dist/sdk/endpoints/public/config/index.d.ts +2 -2
  37. package/dist/sdk/endpoints/public/healthcheck/index.d.ts +1 -1
  38. package/dist/sdk/endpoints/public/index.d.ts +24 -24
  39. package/dist/sdk/index.d.ts +272 -272
  40. package/package.json +46 -46
package/package.json CHANGED
@@ -1,48 +1,48 @@
1
1
  {
2
- "name": "@marcoappio/marco-config",
3
- "packageManager": "bun@1.2.0",
4
- "version": "2.0.406",
5
- "author": "team@marcoapp.io",
6
- "main": "dist/index.js",
7
- "repository": "git@github.com:marcoappio/marco-config.git",
8
- "engines": {
9
- "node": "24.9.0"
10
- },
11
- "files": [
12
- "dist/",
13
- ".eslintrc.json"
14
- ],
15
- "auto": {
16
- "plugins": [
17
- "npm"
18
- ]
19
- },
20
- "scripts": {
21
- "build": "tsc && tsc-alias",
22
- "lint": "eslint --ext .ts,.tsx,.js src",
23
- "release": "bun run build && auto shipit",
24
- "test": "bun test",
25
- "typecheck": "tsc -noEmit --incremental"
26
- },
27
- "dependencies": {
28
- "@typescript-eslint/eslint-plugin": "5.62.0",
29
- "@typescript-eslint/parser": "6.21.0",
30
- "diff": "8.0.0-beta",
31
- "eslint": "8.41.0",
32
- "eslint-plugin-import": "2.29.1",
33
- "eslint-plugin-prefer-arrow": "1.2.3",
34
- "eslint-plugin-react": "7.35.0",
35
- "eslint-plugin-react-hooks": "4.6.2",
36
- "eslint-plugin-sort-destructure-keys": "1.4.0",
37
- "eslint-plugin-sort-keys-fix": "1.1.2",
38
- "eslint-plugin-typescript-sort-keys": "2.3.0",
39
- "valibot": "1.0.0-beta.9"
40
- },
41
- "devDependencies": {
42
- "@auto-it/npm": "11.2.0",
43
- "@types/bun": "1.2.0",
44
- "auto": "11.2.0",
45
- "tsc-alias": "1.8.16",
46
- "typescript": "5.7.3"
47
- }
2
+ "name": "@marcoappio/marco-config",
3
+ "packageManager": "bun@1.3.1",
4
+ "version": "2.0.407",
5
+ "author": "team@marcoapp.io",
6
+ "main": "dist/index.js",
7
+ "repository": "git@github.com:marcoappio/marco-config.git",
8
+ "engines": {
9
+ "node": "24.9.0"
10
+ },
11
+ "files": [
12
+ "dist/",
13
+ ".eslintrc.json"
14
+ ],
15
+ "auto": {
16
+ "plugins": [
17
+ "npm"
18
+ ]
19
+ },
20
+ "scripts": {
21
+ "build": "tsc && tsc-alias",
22
+ "lint": "eslint --ext .ts,.tsx,.js src",
23
+ "release": "bun run build && auto shipit",
24
+ "test": "bun test",
25
+ "typecheck": "tsc -noEmit --incremental"
26
+ },
27
+ "dependencies": {
28
+ "diff": "8.0.2",
29
+ "valibot": "1.1.0"
30
+ },
31
+ "devDependencies": {
32
+ "@auto-it/npm": "11.2.0",
33
+ "@types/bun": "1.3.0",
34
+ "@typescript-eslint/eslint-plugin": "5.62.0",
35
+ "@typescript-eslint/parser": "6.21.0",
36
+ "auto": "11.2.0",
37
+ "eslint-plugin-import": "2.29.1",
38
+ "eslint-plugin-prefer-arrow": "1.2.3",
39
+ "eslint-plugin-react-hooks": "4.6.2",
40
+ "eslint-plugin-react": "7.35.0",
41
+ "eslint-plugin-sort-destructure-keys": "1.4.0",
42
+ "eslint-plugin-sort-keys-fix": "1.1.2",
43
+ "eslint-plugin-typescript-sort-keys": "2.3.0",
44
+ "eslint": "8.41.0",
45
+ "tsc-alias": "1.8.16",
46
+ "typescript": "5.7.3"
47
+ }
48
48
  }