@claude-sync/cli 0.1.10 → 0.1.11
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/bin/claude-sync.js +18 -1
- package/dist/bin/claude-sync.js.map +1 -1
- package/dist/src/index.js +18 -1
- package/dist/src/index.js.map +1 -1
- package/package.json +1 -1
package/dist/src/index.js
CHANGED
|
@@ -4345,7 +4345,7 @@ var require_validation = __commonJS({
|
|
|
4345
4345
|
"use strict";
|
|
4346
4346
|
init_esm_shims();
|
|
4347
4347
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4348
|
-
exports.updateProfileSchema = exports.oauthExchangeSchema = exports.refreshTokenSchema = exports.syncCompleteSchema = exports.downloadUrlSchema = exports.uploadUrlSchema = exports.pullRequestSchema = exports.pushManifestSchema = exports.updateDeviceSchema = exports.createDeviceSchema = exports.registerSchema = exports.loginSchema = void 0;
|
|
4348
|
+
exports.createFeatureRequestCommentSchema = exports.updateFeatureRequestStatusSchema = exports.updateFeatureRequestSchema = exports.createFeatureRequestSchema = exports.featureRequestStatusSchema = exports.featureRequestTypeSchema = exports.updateProfileSchema = exports.oauthExchangeSchema = exports.refreshTokenSchema = exports.syncCompleteSchema = exports.downloadUrlSchema = exports.uploadUrlSchema = exports.pullRequestSchema = exports.pushManifestSchema = exports.updateDeviceSchema = exports.createDeviceSchema = exports.registerSchema = exports.loginSchema = void 0;
|
|
4349
4349
|
var zod_1 = require_zod();
|
|
4350
4350
|
exports.loginSchema = zod_1.z.object({
|
|
4351
4351
|
email: zod_1.z.string().email(),
|
|
@@ -4415,6 +4415,23 @@ var require_validation = __commonJS({
|
|
|
4415
4415
|
name: zod_1.z.string().min(1).max(100).optional(),
|
|
4416
4416
|
avatarUrl: zod_1.z.string().url().nullable().optional()
|
|
4417
4417
|
});
|
|
4418
|
+
exports.featureRequestTypeSchema = zod_1.z.enum(["bug", "feature", "help"]);
|
|
4419
|
+
exports.featureRequestStatusSchema = zod_1.z.enum(["open", "in_progress", "resolved", "closed"]);
|
|
4420
|
+
exports.createFeatureRequestSchema = zod_1.z.object({
|
|
4421
|
+
title: zod_1.z.string().min(5).max(200),
|
|
4422
|
+
body: zod_1.z.string().min(10).max(5e3),
|
|
4423
|
+
type: exports.featureRequestTypeSchema
|
|
4424
|
+
});
|
|
4425
|
+
exports.updateFeatureRequestSchema = zod_1.z.object({
|
|
4426
|
+
title: zod_1.z.string().min(5).max(200).optional(),
|
|
4427
|
+
body: zod_1.z.string().min(10).max(5e3).optional()
|
|
4428
|
+
});
|
|
4429
|
+
exports.updateFeatureRequestStatusSchema = zod_1.z.object({
|
|
4430
|
+
status: exports.featureRequestStatusSchema
|
|
4431
|
+
});
|
|
4432
|
+
exports.createFeatureRequestCommentSchema = zod_1.z.object({
|
|
4433
|
+
body: zod_1.z.string().min(1).max(2e3)
|
|
4434
|
+
});
|
|
4418
4435
|
}
|
|
4419
4436
|
});
|
|
4420
4437
|
|