@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.
- package/dist/clients/account.d.ts +52 -52
- package/dist/clients/contact.d.ts +3 -3
- package/dist/clients/draft.d.ts +88 -88
- package/dist/clients/index.d.ts +208 -208
- package/dist/clients/thread.d.ts +48 -48
- package/dist/clients/user.d.ts +17 -17
- package/dist/schemas/auth.d.ts +2 -2
- package/dist/schemas/emailAccount.d.ts +10 -10
- package/dist/schemas/index.d.ts +22 -22
- package/dist/schemas/number.d.ts +2 -2
- package/dist/schemas/pushNotifications.d.ts +2 -2
- package/dist/schemas/string.d.ts +6 -6
- package/dist/sdk/endpoints/index.d.ts +272 -272
- package/dist/sdk/endpoints/private/emailMessage/getEmailMessageAttachment.d.ts +1 -1
- package/dist/sdk/endpoints/private/emailMessage/getEmailMessageHTML.d.ts +2 -2
- package/dist/sdk/endpoints/private/emailMessage/index.d.ts +3 -3
- package/dist/sdk/endpoints/private/index.d.ts +248 -248
- package/dist/sdk/endpoints/private/sync/index.d.ts +244 -244
- package/dist/sdk/endpoints/private/sync/pull/account.d.ts +17 -17
- package/dist/sdk/endpoints/private/sync/pull/contact.d.ts +11 -11
- package/dist/sdk/endpoints/private/sync/pull/draft.d.ts +23 -23
- package/dist/sdk/endpoints/private/sync/pull/index.d.ts +96 -96
- package/dist/sdk/endpoints/private/sync/pull/thread.d.ts +34 -34
- package/dist/sdk/endpoints/private/sync/pull/user.d.ts +11 -11
- package/dist/sdk/endpoints/private/sync/push/account.d.ts +40 -40
- package/dist/sdk/endpoints/private/sync/push/draft.d.ts +70 -70
- package/dist/sdk/endpoints/private/sync/push/index.d.ts +148 -148
- package/dist/sdk/endpoints/private/sync/push/thread.d.ts +27 -27
- package/dist/sdk/endpoints/private/sync/push/user.d.ts +11 -11
- package/dist/sdk/endpoints/private/user/deleteUser.d.ts +1 -1
- package/dist/sdk/endpoints/private/user/index.d.ts +1 -1
- package/dist/sdk/endpoints/public/auth/index.d.ts +21 -21
- package/dist/sdk/endpoints/public/auth/refreshAuth.d.ts +9 -9
- package/dist/sdk/endpoints/public/auth/sendAuthCode.d.ts +2 -2
- package/dist/sdk/endpoints/public/auth/verifyAuthCode.d.ts +10 -10
- package/dist/sdk/endpoints/public/config/index.d.ts +2 -2
- package/dist/sdk/endpoints/public/healthcheck/index.d.ts +1 -1
- package/dist/sdk/endpoints/public/index.d.ts +24 -24
- package/dist/sdk/index.d.ts +272 -272
- package/package.json +46 -46
package/package.json
CHANGED
|
@@ -1,48 +1,48 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
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
|
}
|