@andrebuzeli/git-mcp 3.0.0 → 3.1.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/README.md +329 -356
- package/dist/server.d.ts.map +1 -1
- package/dist/server.js +78 -55
- package/dist/server.js.map +1 -1
- package/dist/tools/git-commits.d.ts +2 -2
- package/dist/tools/git-config.d.ts +2 -2
- package/dist/tools/git-files.d.ts +2 -2
- package/dist/tools/git-issues.d.ts +6 -6
- package/dist/tools/git-packages.d.ts +2 -2
- package/dist/tools/git-projects.d.ts +57 -142
- package/dist/tools/git-projects.d.ts.map +1 -1
- package/dist/tools/git-projects.js +283 -281
- package/dist/tools/git-projects.js.map +1 -1
- package/dist/tools/git-publish.d.ts +327 -0
- package/dist/tools/git-publish.d.ts.map +1 -0
- package/dist/tools/git-publish.js +632 -0
- package/dist/tools/git-publish.js.map +1 -0
- package/dist/tools/git-pulls.d.ts +8 -8
- package/dist/tools/git-releases.d.ts +2 -2
- package/dist/tools/git-remote.d.ts +2 -2
- package/dist/tools/git-repositories.d.ts +4 -4
- package/dist/tools/git-sync.d.ts +4 -4
- package/dist/tools/git-tags.d.ts +2 -2
- package/dist/tools/git-update-project.d.ts +159 -4
- package/dist/tools/git-update-project.d.ts.map +1 -1
- package/dist/tools/git-update-project.js +349 -7
- package/dist/tools/git-update-project.js.map +1 -1
- package/dist/tools/git-workflow.d.ts +252 -230
- package/dist/tools/git-workflow.d.ts.map +1 -1
- package/dist/tools/git-workflow.js +479 -452
- package/dist/tools/git-workflow.js.map +1 -1
- package/package.json +13 -4
- package/dist/tools/git-undo.d.ts +0 -268
- package/dist/tools/git-undo.d.ts.map +0 -1
- package/dist/tools/git-undo.js +0 -516
- package/dist/tools/git-undo.js.map +0 -1
- package/dist/tools/git-versioning.d.ts +0 -286
- package/dist/tools/git-versioning.d.ts.map +0 -1
- package/dist/tools/git-versioning.js +0 -483
- package/dist/tools/git-versioning.js.map +0 -1
|
@@ -78,7 +78,7 @@ declare const PullsInputSchema: z.ZodObject<{
|
|
|
78
78
|
}, "strip", z.ZodTypeAny, {
|
|
79
79
|
provider: "gitea" | "github";
|
|
80
80
|
repo: string;
|
|
81
|
-
action: "merge" | "get" | "search" | "list" | "create" | "
|
|
81
|
+
action: "merge" | "get" | "search" | "list" | "create" | "close" | "update" | "review";
|
|
82
82
|
projectPath: string;
|
|
83
83
|
title?: string | undefined;
|
|
84
84
|
body?: string | undefined;
|
|
@@ -90,17 +90,17 @@ declare const PullsInputSchema: z.ZodObject<{
|
|
|
90
90
|
draft?: boolean | undefined;
|
|
91
91
|
page?: number | undefined;
|
|
92
92
|
limit?: number | undefined;
|
|
93
|
+
query?: string | undefined;
|
|
94
|
+
author?: string | undefined;
|
|
95
|
+
merge_method?: "merge" | "rebase" | "squash" | undefined;
|
|
93
96
|
milestone?: number | undefined;
|
|
94
97
|
new_title?: string | undefined;
|
|
95
98
|
new_body?: string | undefined;
|
|
96
99
|
new_labels?: string[] | undefined;
|
|
97
100
|
new_assignees?: string[] | undefined;
|
|
98
101
|
new_milestone?: number | undefined;
|
|
99
|
-
query?: string | undefined;
|
|
100
|
-
author?: string | undefined;
|
|
101
102
|
assignee?: string | undefined;
|
|
102
103
|
label?: string | undefined;
|
|
103
|
-
merge_method?: "merge" | "rebase" | "squash" | undefined;
|
|
104
104
|
reviewers?: string[] | undefined;
|
|
105
105
|
pull_number?: number | undefined;
|
|
106
106
|
new_base?: string | undefined;
|
|
@@ -112,7 +112,7 @@ declare const PullsInputSchema: z.ZodObject<{
|
|
|
112
112
|
}, {
|
|
113
113
|
provider: "gitea" | "github";
|
|
114
114
|
repo: string;
|
|
115
|
-
action: "merge" | "get" | "search" | "list" | "create" | "
|
|
115
|
+
action: "merge" | "get" | "search" | "list" | "create" | "close" | "update" | "review";
|
|
116
116
|
projectPath: string;
|
|
117
117
|
title?: string | undefined;
|
|
118
118
|
body?: string | undefined;
|
|
@@ -124,17 +124,17 @@ declare const PullsInputSchema: z.ZodObject<{
|
|
|
124
124
|
draft?: boolean | undefined;
|
|
125
125
|
page?: number | undefined;
|
|
126
126
|
limit?: number | undefined;
|
|
127
|
+
query?: string | undefined;
|
|
128
|
+
author?: string | undefined;
|
|
129
|
+
merge_method?: "merge" | "rebase" | "squash" | undefined;
|
|
127
130
|
milestone?: number | undefined;
|
|
128
131
|
new_title?: string | undefined;
|
|
129
132
|
new_body?: string | undefined;
|
|
130
133
|
new_labels?: string[] | undefined;
|
|
131
134
|
new_assignees?: string[] | undefined;
|
|
132
135
|
new_milestone?: number | undefined;
|
|
133
|
-
query?: string | undefined;
|
|
134
|
-
author?: string | undefined;
|
|
135
136
|
assignee?: string | undefined;
|
|
136
137
|
label?: string | undefined;
|
|
137
|
-
merge_method?: "merge" | "rebase" | "squash" | undefined;
|
|
138
138
|
reviewers?: string[] | undefined;
|
|
139
139
|
pull_number?: number | undefined;
|
|
140
140
|
new_base?: string | undefined;
|
|
@@ -76,11 +76,11 @@ declare const ReleasesInputSchema: z.ZodObject<{
|
|
|
76
76
|
page?: number | undefined;
|
|
77
77
|
limit?: number | undefined;
|
|
78
78
|
latest?: boolean | undefined;
|
|
79
|
+
new_name?: string | undefined;
|
|
79
80
|
new_body?: string | undefined;
|
|
80
81
|
target_commitish?: string | undefined;
|
|
81
82
|
release_id?: number | undefined;
|
|
82
83
|
new_tag_name?: string | undefined;
|
|
83
|
-
new_name?: string | undefined;
|
|
84
84
|
new_draft?: boolean | undefined;
|
|
85
85
|
new_prerelease?: boolean | undefined;
|
|
86
86
|
new_target_commitish?: string | undefined;
|
|
@@ -98,11 +98,11 @@ declare const ReleasesInputSchema: z.ZodObject<{
|
|
|
98
98
|
page?: number | undefined;
|
|
99
99
|
limit?: number | undefined;
|
|
100
100
|
latest?: boolean | undefined;
|
|
101
|
+
new_name?: string | undefined;
|
|
101
102
|
new_body?: string | undefined;
|
|
102
103
|
target_commitish?: string | undefined;
|
|
103
104
|
release_id?: number | undefined;
|
|
104
105
|
new_tag_name?: string | undefined;
|
|
105
|
-
new_name?: string | undefined;
|
|
106
106
|
new_draft?: boolean | undefined;
|
|
107
107
|
new_prerelease?: boolean | undefined;
|
|
108
108
|
new_target_commitish?: string | undefined;
|
|
@@ -37,7 +37,7 @@ declare const GitRemoteInputSchema: z.ZodObject<{
|
|
|
37
37
|
}, "strip", z.ZodTypeAny, {
|
|
38
38
|
provider: "gitea" | "github";
|
|
39
39
|
repo: string;
|
|
40
|
-
action: "add" | "show" | "remove" | "prune" | "
|
|
40
|
+
action: "add" | "show" | "remove" | "prune" | "set-url" | "rename";
|
|
41
41
|
projectPath: string;
|
|
42
42
|
remote?: string | undefined;
|
|
43
43
|
new_name?: string | undefined;
|
|
@@ -47,7 +47,7 @@ declare const GitRemoteInputSchema: z.ZodObject<{
|
|
|
47
47
|
}, {
|
|
48
48
|
provider: "gitea" | "github";
|
|
49
49
|
repo: string;
|
|
50
|
-
action: "add" | "show" | "remove" | "prune" | "
|
|
50
|
+
action: "add" | "show" | "remove" | "prune" | "set-url" | "rename";
|
|
51
51
|
projectPath: string;
|
|
52
52
|
remote?: string | undefined;
|
|
53
53
|
new_name?: string | undefined;
|
|
@@ -144,16 +144,16 @@ declare const GitRepositoriesInputSchema: z.ZodObject<{
|
|
|
144
144
|
repo?: string | undefined;
|
|
145
145
|
page?: number | undefined;
|
|
146
146
|
limit?: number | undefined;
|
|
147
|
-
query?: string | undefined;
|
|
148
|
-
new_name?: string | undefined;
|
|
149
147
|
auto_init?: boolean | undefined;
|
|
150
148
|
gitignores?: string | undefined;
|
|
151
149
|
license?: string | undefined;
|
|
152
150
|
readme?: string | undefined;
|
|
153
151
|
username?: string | undefined;
|
|
152
|
+
new_name?: string | undefined;
|
|
154
153
|
new_description?: string | undefined;
|
|
155
154
|
new_private?: boolean | undefined;
|
|
156
155
|
archived?: boolean | undefined;
|
|
156
|
+
query?: string | undefined;
|
|
157
157
|
}, {
|
|
158
158
|
provider: "gitea" | "github";
|
|
159
159
|
action: "delete" | "get" | "search" | "init" | "clone" | "list" | "create" | "update" | "fork";
|
|
@@ -166,16 +166,16 @@ declare const GitRepositoriesInputSchema: z.ZodObject<{
|
|
|
166
166
|
repo?: string | undefined;
|
|
167
167
|
page?: number | undefined;
|
|
168
168
|
limit?: number | undefined;
|
|
169
|
-
query?: string | undefined;
|
|
170
|
-
new_name?: string | undefined;
|
|
171
169
|
auto_init?: boolean | undefined;
|
|
172
170
|
gitignores?: string | undefined;
|
|
173
171
|
license?: string | undefined;
|
|
174
172
|
readme?: string | undefined;
|
|
175
173
|
username?: string | undefined;
|
|
174
|
+
new_name?: string | undefined;
|
|
176
175
|
new_description?: string | undefined;
|
|
177
176
|
new_private?: boolean | undefined;
|
|
178
177
|
archived?: boolean | undefined;
|
|
178
|
+
query?: string | undefined;
|
|
179
179
|
}>;
|
|
180
180
|
export type GitRepositoriesInput = z.infer<typeof GitRepositoriesInputSchema>;
|
|
181
181
|
declare const GitRepositoriesResultSchema: z.ZodObject<{
|
package/dist/tools/git-sync.d.ts
CHANGED
|
@@ -47,11 +47,11 @@ declare const GitSyncInputSchema: z.ZodObject<{
|
|
|
47
47
|
dry_run: z.ZodOptional<z.ZodBoolean>;
|
|
48
48
|
}, "strip", z.ZodTypeAny, {
|
|
49
49
|
action: "status" | "configure" | "one-shot";
|
|
50
|
-
|
|
50
|
+
target: {
|
|
51
51
|
provider: "gitea" | "github";
|
|
52
52
|
repo: string;
|
|
53
53
|
};
|
|
54
|
-
|
|
54
|
+
source: {
|
|
55
55
|
provider: "gitea" | "github";
|
|
56
56
|
repo: string;
|
|
57
57
|
};
|
|
@@ -61,11 +61,11 @@ declare const GitSyncInputSchema: z.ZodObject<{
|
|
|
61
61
|
dry_run?: boolean | undefined;
|
|
62
62
|
}, {
|
|
63
63
|
action: "status" | "configure" | "one-shot";
|
|
64
|
-
|
|
64
|
+
target: {
|
|
65
65
|
provider: "gitea" | "github";
|
|
66
66
|
repo: string;
|
|
67
67
|
};
|
|
68
|
-
|
|
68
|
+
source: {
|
|
69
69
|
provider: "gitea" | "github";
|
|
70
70
|
repo: string;
|
|
71
71
|
};
|
package/dist/tools/git-tags.d.ts
CHANGED
|
@@ -67,10 +67,10 @@ declare const TagsInputSchema: z.ZodObject<{
|
|
|
67
67
|
limit?: number | undefined;
|
|
68
68
|
tag?: string | undefined;
|
|
69
69
|
query?: string | undefined;
|
|
70
|
-
pattern?: string | undefined;
|
|
71
70
|
target?: string | undefined;
|
|
72
71
|
tagger_name?: string | undefined;
|
|
73
72
|
tagger_email?: string | undefined;
|
|
73
|
+
pattern?: string | undefined;
|
|
74
74
|
}, {
|
|
75
75
|
provider: "gitea" | "github";
|
|
76
76
|
repo: string;
|
|
@@ -83,10 +83,10 @@ declare const TagsInputSchema: z.ZodObject<{
|
|
|
83
83
|
limit?: number | undefined;
|
|
84
84
|
tag?: string | undefined;
|
|
85
85
|
query?: string | undefined;
|
|
86
|
-
pattern?: string | undefined;
|
|
87
86
|
target?: string | undefined;
|
|
88
87
|
tagger_name?: string | undefined;
|
|
89
88
|
tagger_email?: string | undefined;
|
|
89
|
+
pattern?: string | undefined;
|
|
90
90
|
}>;
|
|
91
91
|
export type TagsInput = z.infer<typeof TagsInputSchema>;
|
|
92
92
|
/**
|
|
@@ -16,8 +16,8 @@ declare const GitUpdateProjectInputSchema: z.ZodDiscriminatedUnion<"action", [z.
|
|
|
16
16
|
action: "init";
|
|
17
17
|
projectPath: string;
|
|
18
18
|
branch?: string | undefined;
|
|
19
|
-
forcePush?: boolean | undefined;
|
|
20
19
|
createRepo?: boolean | undefined;
|
|
20
|
+
forcePush?: boolean | undefined;
|
|
21
21
|
granular?: boolean | undefined;
|
|
22
22
|
}, {
|
|
23
23
|
provider: "gitea" | "github";
|
|
@@ -26,8 +26,8 @@ declare const GitUpdateProjectInputSchema: z.ZodDiscriminatedUnion<"action", [z.
|
|
|
26
26
|
action: "init";
|
|
27
27
|
projectPath: string;
|
|
28
28
|
branch?: string | undefined;
|
|
29
|
-
forcePush?: boolean | undefined;
|
|
30
29
|
createRepo?: boolean | undefined;
|
|
30
|
+
forcePush?: boolean | undefined;
|
|
31
31
|
granular?: boolean | undefined;
|
|
32
32
|
}>, z.ZodObject<{
|
|
33
33
|
action: z.ZodLiteral<"update">;
|
|
@@ -93,14 +93,14 @@ declare const GitUpdateProjectInputSchema: z.ZodDiscriminatedUnion<"action", [z.
|
|
|
93
93
|
action: "log";
|
|
94
94
|
projectPath: string;
|
|
95
95
|
branch?: string | undefined;
|
|
96
|
-
oneline?: boolean | undefined;
|
|
97
96
|
maxCount?: number | undefined;
|
|
97
|
+
oneline?: boolean | undefined;
|
|
98
98
|
}, {
|
|
99
99
|
action: "log";
|
|
100
100
|
projectPath: string;
|
|
101
101
|
branch?: string | undefined;
|
|
102
|
-
oneline?: boolean | undefined;
|
|
103
102
|
maxCount?: number | undefined;
|
|
103
|
+
oneline?: boolean | undefined;
|
|
104
104
|
}>, z.ZodObject<{
|
|
105
105
|
action: z.ZodLiteral<"reset">;
|
|
106
106
|
projectPath: z.ZodString;
|
|
@@ -167,6 +167,93 @@ declare const GitUpdateProjectInputSchema: z.ZodDiscriminatedUnion<"action", [z.
|
|
|
167
167
|
projectPath: string;
|
|
168
168
|
branch?: string | undefined;
|
|
169
169
|
forcePush?: boolean | undefined;
|
|
170
|
+
}>, z.ZodObject<{
|
|
171
|
+
action: z.ZodLiteral<"daily-workflow">;
|
|
172
|
+
projectPath: z.ZodString;
|
|
173
|
+
autoMessage: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
174
|
+
autoPush: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
175
|
+
createBackup: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
176
|
+
granularCommits: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
177
|
+
}, "strip", z.ZodTypeAny, {
|
|
178
|
+
action: "daily-workflow";
|
|
179
|
+
projectPath: string;
|
|
180
|
+
autoMessage: boolean;
|
|
181
|
+
autoPush: boolean;
|
|
182
|
+
createBackup: boolean;
|
|
183
|
+
granularCommits: boolean;
|
|
184
|
+
}, {
|
|
185
|
+
action: "daily-workflow";
|
|
186
|
+
projectPath: string;
|
|
187
|
+
autoMessage?: boolean | undefined;
|
|
188
|
+
autoPush?: boolean | undefined;
|
|
189
|
+
createBackup?: boolean | undefined;
|
|
190
|
+
granularCommits?: boolean | undefined;
|
|
191
|
+
}>, z.ZodObject<{
|
|
192
|
+
action: z.ZodLiteral<"smart-commit">;
|
|
193
|
+
projectPath: z.ZodString;
|
|
194
|
+
detectChanges: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
195
|
+
autoCategorize: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
196
|
+
suggestedMessage: z.ZodOptional<z.ZodString>;
|
|
197
|
+
validateSyntax: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
198
|
+
autoPush: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
199
|
+
}, "strip", z.ZodTypeAny, {
|
|
200
|
+
action: "smart-commit";
|
|
201
|
+
projectPath: string;
|
|
202
|
+
autoPush: boolean;
|
|
203
|
+
detectChanges: boolean;
|
|
204
|
+
autoCategorize: boolean;
|
|
205
|
+
validateSyntax: boolean;
|
|
206
|
+
suggestedMessage?: string | undefined;
|
|
207
|
+
}, {
|
|
208
|
+
action: "smart-commit";
|
|
209
|
+
projectPath: string;
|
|
210
|
+
autoPush?: boolean | undefined;
|
|
211
|
+
detectChanges?: boolean | undefined;
|
|
212
|
+
autoCategorize?: boolean | undefined;
|
|
213
|
+
suggestedMessage?: string | undefined;
|
|
214
|
+
validateSyntax?: boolean | undefined;
|
|
215
|
+
}>, z.ZodObject<{
|
|
216
|
+
action: z.ZodLiteral<"full-sync">;
|
|
217
|
+
repo: z.ZodString;
|
|
218
|
+
projectPath: z.ZodString;
|
|
219
|
+
provider: z.ZodEnum<["gitea", "github"]>;
|
|
220
|
+
pullFirst: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
221
|
+
resolveConflicts: z.ZodDefault<z.ZodOptional<z.ZodEnum<["auto", "manual", "skip"]>>>;
|
|
222
|
+
forcePush: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
223
|
+
createBackup: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
224
|
+
}, "strip", z.ZodTypeAny, {
|
|
225
|
+
provider: "gitea" | "github";
|
|
226
|
+
repo: string;
|
|
227
|
+
action: "full-sync";
|
|
228
|
+
projectPath: string;
|
|
229
|
+
forcePush: boolean;
|
|
230
|
+
createBackup: boolean;
|
|
231
|
+
pullFirst: boolean;
|
|
232
|
+
resolveConflicts: "auto" | "manual" | "skip";
|
|
233
|
+
}, {
|
|
234
|
+
provider: "gitea" | "github";
|
|
235
|
+
repo: string;
|
|
236
|
+
action: "full-sync";
|
|
237
|
+
projectPath: string;
|
|
238
|
+
forcePush?: boolean | undefined;
|
|
239
|
+
createBackup?: boolean | undefined;
|
|
240
|
+
pullFirst?: boolean | undefined;
|
|
241
|
+
resolveConflicts?: "auto" | "manual" | "skip" | undefined;
|
|
242
|
+
}>, z.ZodObject<{
|
|
243
|
+
action: z.ZodLiteral<"auto-backup">;
|
|
244
|
+
projectPath: z.ZodString;
|
|
245
|
+
message: z.ZodOptional<z.ZodString>;
|
|
246
|
+
includeUntracked: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
247
|
+
}, "strip", z.ZodTypeAny, {
|
|
248
|
+
action: "auto-backup";
|
|
249
|
+
projectPath: string;
|
|
250
|
+
includeUntracked: boolean;
|
|
251
|
+
message?: string | undefined;
|
|
252
|
+
}, {
|
|
253
|
+
action: "auto-backup";
|
|
254
|
+
projectPath: string;
|
|
255
|
+
message?: string | undefined;
|
|
256
|
+
includeUntracked?: boolean | undefined;
|
|
170
257
|
}>]>;
|
|
171
258
|
export type GitUpdateProjectInput = z.infer<typeof GitUpdateProjectInputSchema>;
|
|
172
259
|
declare const GitUpdateProjectResultSchema: z.ZodObject<{
|
|
@@ -278,6 +365,61 @@ export declare const gitUpdateProjectTool: {
|
|
|
278
365
|
description: string;
|
|
279
366
|
default: string;
|
|
280
367
|
};
|
|
368
|
+
autoMessage: {
|
|
369
|
+
type: string;
|
|
370
|
+
description: string;
|
|
371
|
+
default: boolean;
|
|
372
|
+
};
|
|
373
|
+
autoPush: {
|
|
374
|
+
type: string;
|
|
375
|
+
description: string;
|
|
376
|
+
default: boolean;
|
|
377
|
+
};
|
|
378
|
+
createBackup: {
|
|
379
|
+
type: string;
|
|
380
|
+
description: string;
|
|
381
|
+
default: boolean;
|
|
382
|
+
};
|
|
383
|
+
granularCommits: {
|
|
384
|
+
type: string;
|
|
385
|
+
description: string;
|
|
386
|
+
default: boolean;
|
|
387
|
+
};
|
|
388
|
+
detectChanges: {
|
|
389
|
+
type: string;
|
|
390
|
+
description: string;
|
|
391
|
+
default: boolean;
|
|
392
|
+
};
|
|
393
|
+
autoCategorize: {
|
|
394
|
+
type: string;
|
|
395
|
+
description: string;
|
|
396
|
+
default: boolean;
|
|
397
|
+
};
|
|
398
|
+
suggestedMessage: {
|
|
399
|
+
type: string;
|
|
400
|
+
description: string;
|
|
401
|
+
};
|
|
402
|
+
validateSyntax: {
|
|
403
|
+
type: string;
|
|
404
|
+
description: string;
|
|
405
|
+
default: boolean;
|
|
406
|
+
};
|
|
407
|
+
pullFirst: {
|
|
408
|
+
type: string;
|
|
409
|
+
description: string;
|
|
410
|
+
default: boolean;
|
|
411
|
+
};
|
|
412
|
+
resolveConflicts: {
|
|
413
|
+
type: string;
|
|
414
|
+
enum: string[];
|
|
415
|
+
description: string;
|
|
416
|
+
default: string;
|
|
417
|
+
};
|
|
418
|
+
includeUntracked: {
|
|
419
|
+
type: string;
|
|
420
|
+
description: string;
|
|
421
|
+
default: boolean;
|
|
422
|
+
};
|
|
281
423
|
};
|
|
282
424
|
required: string[];
|
|
283
425
|
};
|
|
@@ -310,6 +452,19 @@ export declare const gitUpdateProjectTool: {
|
|
|
310
452
|
action: "sync";
|
|
311
453
|
}): Promise<GitUpdateProjectResult>;
|
|
312
454
|
groupFilesByType(projectPath: string): Promise<Record<string, string[]>>;
|
|
455
|
+
handleDailyWorkflow(params: GitUpdateProjectInput & {
|
|
456
|
+
action: "daily-workflow";
|
|
457
|
+
}): Promise<GitUpdateProjectResult>;
|
|
458
|
+
handleSmartCommit(params: GitUpdateProjectInput & {
|
|
459
|
+
action: "smart-commit";
|
|
460
|
+
}): Promise<GitUpdateProjectResult>;
|
|
461
|
+
handleFullSync(params: GitUpdateProjectInput & {
|
|
462
|
+
action: "full-sync";
|
|
463
|
+
}): Promise<GitUpdateProjectResult>;
|
|
464
|
+
handleAutoBackup(params: GitUpdateProjectInput & {
|
|
465
|
+
action: "auto-backup";
|
|
466
|
+
}): Promise<GitUpdateProjectResult>;
|
|
467
|
+
generateSmartCommitMessage(fileGroups: Record<string, string[]>): string;
|
|
313
468
|
};
|
|
314
469
|
export {};
|
|
315
470
|
//# sourceMappingURL=git-update-project.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"git-update-project.d.ts","sourceRoot":"","sources":["../../src/tools/git-update-project.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAKxB,QAAA,MAAM,2BAA2B
|
|
1
|
+
{"version":3,"file":"git-update-project.d.ts","sourceRoot":"","sources":["../../src/tools/git-update-project.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAKxB,QAAA,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IA4H/B,CAAC;AAEH,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,2BAA2B,CAAC,CAAC;AAEhF,QAAA,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;EAMhC,CAAC;AAEH,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,4BAA4B,CAAC,CAAC;AAElF,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mBAgDV,qBAAqB,GAAG,OAAO,CAAC,sBAAsB,CAAC;yBA6CjD,qBAAqB,GAAG;QAAE,MAAM,EAAE,QAAQ,CAAA;KAAE,GAAG,OAAO,CAAC,sBAAsB,CAAC;uBAyLhF,qBAAqB,GAAG;QAAE,MAAM,EAAE,MAAM,CAAA;KAAE,GAAG,OAAO,CAAC,sBAAsB,CAAC;yBAuJ1E,qBAAqB,GAAG;QAAE,MAAM,EAAE,QAAQ,CAAA;KAAE,GAAG,OAAO,CAAC,sBAAsB,CAAC;uBAmDhF,qBAAqB,GAAG;QAAE,MAAM,EAAE,MAAM,CAAA;KAAE,GAAG,OAAO,CAAC,sBAAsB,CAAC;sBAiD7E,qBAAqB,GAAG;QAAE,MAAM,EAAE,KAAK,CAAA;KAAE,GAAG,OAAO,CAAC,sBAAsB,CAAC;wBAkDzE,qBAAqB,GAAG;QAAE,MAAM,EAAE,OAAO,CAAA;KAAE,GAAG,OAAO,CAAC,sBAAsB,CAAC;wBA2C7E,qBAAqB,GAAG;QAAE,MAAM,EAAE,OAAO,CAAA;KAAE,GAAG,OAAO,CAAC,sBAAsB,CAAC;uBA+D9E,qBAAqB,GAAG;QAAE,MAAM,EAAE,MAAM,CAAA;KAAE,GAAG,OAAO,CAAC,sBAAsB,CAAC;uBAwC5E,qBAAqB,GAAG;QAAE,MAAM,EAAE,MAAM,CAAA;KAAE,GAAG,OAAO,CAAC,sBAAsB,CAAC;kCAkGjE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC,MAAM,EAAE,MAAM,EAAE,CAAC,CAAC;gCA0C5C,qBAAqB,GAAG;QAAE,MAAM,EAAE,gBAAgB,CAAA;KAAE,GAAG,OAAO,CAAC,sBAAsB,CAAC;8BAuHxF,qBAAqB,GAAG;QAAE,MAAM,EAAE,cAAc,CAAA;KAAE,GAAG,OAAO,CAAC,sBAAsB,CAAC;2BAsEvF,qBAAqB,GAAG;QAAE,MAAM,EAAE,WAAW,CAAA;KAAE,GAAG,OAAO,CAAC,sBAAsB,CAAC;6BAiE/E,qBAAqB,GAAG;QAAE,MAAM,EAAE,aAAa,CAAA;KAAE,GAAG,OAAO,CAAC,sBAAsB,CAAC;2CA2C3E,MAAM,CAAC,MAAM,EAAE,MAAM,EAAE,CAAC,GAAG,MAAM;CAkBzE,CAAC"}
|