@claude-sync/cli 0.1.15 → 0.1.16
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
CHANGED
|
@@ -4346,7 +4346,7 @@ var require_validation = __commonJS({
|
|
|
4346
4346
|
"use strict";
|
|
4347
4347
|
init_esm_shims();
|
|
4348
4348
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4349
|
-
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
|
+
exports.createFeatureRequestCommentSchema = exports.updateFeatureRequestStatusSchema = exports.updateFeatureRequestSchema = exports.createFeatureRequestSchema = exports.featureRequestStatusSchema = exports.featureRequestTypeSchema = exports.updateProfileSchema = exports.resetPasswordSchema = exports.forgotPasswordSchema = exports.oauthExchangeSchema = exports.refreshTokenSchema = exports.syncCompleteSchema = exports.downloadUrlSchema = exports.uploadUrlSchema = exports.pullRequestSchema = exports.pushManifestSchema = exports.updateDeviceSchema = exports.createDeviceSchema = exports.registerSchema = exports.loginSchema = void 0;
|
|
4350
4350
|
var zod_1 = require_zod();
|
|
4351
4351
|
exports.loginSchema = zod_1.z.object({
|
|
4352
4352
|
email: zod_1.z.string().email(),
|
|
@@ -4412,6 +4412,13 @@ var require_validation = __commonJS({
|
|
|
4412
4412
|
provider: zod_1.z.enum(["github", "google"]),
|
|
4413
4413
|
accessToken: zod_1.z.string().min(1)
|
|
4414
4414
|
});
|
|
4415
|
+
exports.forgotPasswordSchema = zod_1.z.object({
|
|
4416
|
+
email: zod_1.z.string().email()
|
|
4417
|
+
});
|
|
4418
|
+
exports.resetPasswordSchema = zod_1.z.object({
|
|
4419
|
+
token: zod_1.z.string().min(1),
|
|
4420
|
+
password: zod_1.z.string().min(8)
|
|
4421
|
+
});
|
|
4415
4422
|
exports.updateProfileSchema = zod_1.z.object({
|
|
4416
4423
|
name: zod_1.z.string().min(1).max(100).optional(),
|
|
4417
4424
|
avatarUrl: zod_1.z.string().url().nullable().optional()
|