@longzai-intelligence-tenant/sdk 0.0.1 → 0.0.2
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/index.d.ts +6 -6
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -163,10 +163,10 @@ declare const memberStatusSchema: z.ZodEnum<{
|
|
|
163
163
|
}>;
|
|
164
164
|
/** 邀请状态 Schema */
|
|
165
165
|
declare const invitationStatusSchema: z.ZodEnum<{
|
|
166
|
-
expired: "expired";
|
|
167
|
-
cancelled: "cancelled";
|
|
168
166
|
pending: "pending";
|
|
169
167
|
accepted: "accepted";
|
|
168
|
+
expired: "expired";
|
|
169
|
+
cancelled: "cancelled";
|
|
170
170
|
}>;
|
|
171
171
|
/** 成员项 Schema */
|
|
172
172
|
declare const memberItemSchema: z.ZodObject<{
|
|
@@ -199,10 +199,10 @@ declare const invitationItemSchema: z.ZodObject<{
|
|
|
199
199
|
}>;
|
|
200
200
|
expiresAt: z.ZodString;
|
|
201
201
|
status: z.ZodEnum<{
|
|
202
|
-
expired: "expired";
|
|
203
|
-
cancelled: "cancelled";
|
|
204
202
|
pending: "pending";
|
|
205
203
|
accepted: "accepted";
|
|
204
|
+
expired: "expired";
|
|
205
|
+
cancelled: "cancelled";
|
|
206
206
|
}>;
|
|
207
207
|
usedBy: z.ZodNullable<z.ZodString>;
|
|
208
208
|
usedAt: z.ZodNullable<z.ZodString>;
|
|
@@ -248,10 +248,10 @@ declare const invitationListQuerySchema: z.ZodObject<{
|
|
|
248
248
|
page: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
249
249
|
pageSize: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
250
250
|
status: z.ZodOptional<z.ZodEnum<{
|
|
251
|
-
expired: "expired";
|
|
252
|
-
cancelled: "cancelled";
|
|
253
251
|
pending: "pending";
|
|
254
252
|
accepted: "accepted";
|
|
253
|
+
expired: "expired";
|
|
254
|
+
cancelled: "cancelled";
|
|
255
255
|
}>>;
|
|
256
256
|
}, z.core.$strip>;
|
|
257
257
|
type MemberRole = z.infer<typeof memberRoleSchema>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@longzai-intelligence-tenant/sdk",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.2",
|
|
4
4
|
"private": false,
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"type": "module",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"clean": "rm -rf dist out .cache"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@longzai-intelligence-tenant/core": "0.0.
|
|
34
|
+
"@longzai-intelligence-tenant/core": "0.0.2",
|
|
35
35
|
"zod": "^4.4.3"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {}
|