@supernova-studio/client 1.71.3 → 1.72.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/dist/index.d.mts +11 -0
- package/dist/index.d.ts +11 -0
- package/dist/index.js +4 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -267382,16 +267382,19 @@ declare const DTOAddMembersToForgeProject: z.ZodObject<{
|
|
|
267382
267382
|
email: string;
|
|
267383
267383
|
role: "Admin" | "Viewer" | "Builder";
|
|
267384
267384
|
}>, "many">;
|
|
267385
|
+
featureId: z.ZodOptional<z.ZodString>;
|
|
267385
267386
|
}, "strip", z.ZodTypeAny, {
|
|
267386
267387
|
membersToInvite: {
|
|
267387
267388
|
email: string;
|
|
267388
267389
|
role: "Admin" | "Viewer" | "Builder";
|
|
267389
267390
|
}[];
|
|
267391
|
+
featureId?: string | undefined;
|
|
267390
267392
|
}, {
|
|
267391
267393
|
membersToInvite: {
|
|
267392
267394
|
email: string;
|
|
267393
267395
|
role: "Admin" | "Viewer" | "Builder";
|
|
267394
267396
|
}[];
|
|
267397
|
+
featureId?: string | undefined;
|
|
267395
267398
|
}>;
|
|
267396
267399
|
type DTOAddMembersToForgeProject = z.infer<typeof DTOAddMembersToForgeProject>;
|
|
267397
267400
|
|
|
@@ -316114,18 +316117,21 @@ declare const DTONotificationCreateInput: z.ZodIntersection<z.ZodDiscriminatedUn
|
|
|
316114
316117
|
projectTitle: z.ZodString;
|
|
316115
316118
|
invitedByUserId: z.ZodString;
|
|
316116
316119
|
invitationRole: z.ZodString;
|
|
316120
|
+
featureId: z.ZodOptional<z.ZodString>;
|
|
316117
316121
|
}, "strip", z.ZodTypeAny, {
|
|
316118
316122
|
workspaceId: string;
|
|
316119
316123
|
projectId: string;
|
|
316120
316124
|
projectTitle: string;
|
|
316121
316125
|
invitedByUserId: string;
|
|
316122
316126
|
invitationRole: string;
|
|
316127
|
+
featureId?: string | undefined;
|
|
316123
316128
|
}, {
|
|
316124
316129
|
workspaceId: string;
|
|
316125
316130
|
projectId: string;
|
|
316126
316131
|
projectTitle: string;
|
|
316127
316132
|
invitedByUserId: string;
|
|
316128
316133
|
invitationRole: string;
|
|
316134
|
+
featureId?: string | undefined;
|
|
316129
316135
|
}>;
|
|
316130
316136
|
}, "strip", z.ZodTypeAny, {
|
|
316131
316137
|
type: "ProjectInvitation";
|
|
@@ -316135,6 +316141,7 @@ declare const DTONotificationCreateInput: z.ZodIntersection<z.ZodDiscriminatedUn
|
|
|
316135
316141
|
projectTitle: string;
|
|
316136
316142
|
invitedByUserId: string;
|
|
316137
316143
|
invitationRole: string;
|
|
316144
|
+
featureId?: string | undefined;
|
|
316138
316145
|
};
|
|
316139
316146
|
}, {
|
|
316140
316147
|
type: "ProjectInvitation";
|
|
@@ -316144,6 +316151,7 @@ declare const DTONotificationCreateInput: z.ZodIntersection<z.ZodDiscriminatedUn
|
|
|
316144
316151
|
projectTitle: string;
|
|
316145
316152
|
invitedByUserId: string;
|
|
316146
316153
|
invitationRole: string;
|
|
316154
|
+
featureId?: string | undefined;
|
|
316147
316155
|
};
|
|
316148
316156
|
}>, z.ZodObject<{
|
|
316149
316157
|
type: z.ZodLiteral<"ProjectDocumentComment">;
|
|
@@ -316259,18 +316267,21 @@ declare const DTONotificationProjectInvitationPayload: z.ZodObject<{
|
|
|
316259
316267
|
projectTitle: z.ZodString;
|
|
316260
316268
|
invitedByUserId: z.ZodString;
|
|
316261
316269
|
invitationRole: z.ZodString;
|
|
316270
|
+
featureId: z.ZodOptional<z.ZodString>;
|
|
316262
316271
|
}, "strip", z.ZodTypeAny, {
|
|
316263
316272
|
workspaceId: string;
|
|
316264
316273
|
projectId: string;
|
|
316265
316274
|
projectTitle: string;
|
|
316266
316275
|
invitedByUserId: string;
|
|
316267
316276
|
invitationRole: string;
|
|
316277
|
+
featureId?: string | undefined;
|
|
316268
316278
|
}, {
|
|
316269
316279
|
workspaceId: string;
|
|
316270
316280
|
projectId: string;
|
|
316271
316281
|
projectTitle: string;
|
|
316272
316282
|
invitedByUserId: string;
|
|
316273
316283
|
invitationRole: string;
|
|
316284
|
+
featureId?: string | undefined;
|
|
316274
316285
|
}>;
|
|
316275
316286
|
type DTONotificationProjectInvitationPayload = z.infer<typeof DTONotificationProjectInvitationPayload>;
|
|
316276
316287
|
declare const DTONotificationProjectDocumentCommentPayload: z.ZodObject<{
|
package/dist/index.d.ts
CHANGED
|
@@ -267382,16 +267382,19 @@ declare const DTOAddMembersToForgeProject: z.ZodObject<{
|
|
|
267382
267382
|
email: string;
|
|
267383
267383
|
role: "Admin" | "Viewer" | "Builder";
|
|
267384
267384
|
}>, "many">;
|
|
267385
|
+
featureId: z.ZodOptional<z.ZodString>;
|
|
267385
267386
|
}, "strip", z.ZodTypeAny, {
|
|
267386
267387
|
membersToInvite: {
|
|
267387
267388
|
email: string;
|
|
267388
267389
|
role: "Admin" | "Viewer" | "Builder";
|
|
267389
267390
|
}[];
|
|
267391
|
+
featureId?: string | undefined;
|
|
267390
267392
|
}, {
|
|
267391
267393
|
membersToInvite: {
|
|
267392
267394
|
email: string;
|
|
267393
267395
|
role: "Admin" | "Viewer" | "Builder";
|
|
267394
267396
|
}[];
|
|
267397
|
+
featureId?: string | undefined;
|
|
267395
267398
|
}>;
|
|
267396
267399
|
type DTOAddMembersToForgeProject = z.infer<typeof DTOAddMembersToForgeProject>;
|
|
267397
267400
|
|
|
@@ -316114,18 +316117,21 @@ declare const DTONotificationCreateInput: z.ZodIntersection<z.ZodDiscriminatedUn
|
|
|
316114
316117
|
projectTitle: z.ZodString;
|
|
316115
316118
|
invitedByUserId: z.ZodString;
|
|
316116
316119
|
invitationRole: z.ZodString;
|
|
316120
|
+
featureId: z.ZodOptional<z.ZodString>;
|
|
316117
316121
|
}, "strip", z.ZodTypeAny, {
|
|
316118
316122
|
workspaceId: string;
|
|
316119
316123
|
projectId: string;
|
|
316120
316124
|
projectTitle: string;
|
|
316121
316125
|
invitedByUserId: string;
|
|
316122
316126
|
invitationRole: string;
|
|
316127
|
+
featureId?: string | undefined;
|
|
316123
316128
|
}, {
|
|
316124
316129
|
workspaceId: string;
|
|
316125
316130
|
projectId: string;
|
|
316126
316131
|
projectTitle: string;
|
|
316127
316132
|
invitedByUserId: string;
|
|
316128
316133
|
invitationRole: string;
|
|
316134
|
+
featureId?: string | undefined;
|
|
316129
316135
|
}>;
|
|
316130
316136
|
}, "strip", z.ZodTypeAny, {
|
|
316131
316137
|
type: "ProjectInvitation";
|
|
@@ -316135,6 +316141,7 @@ declare const DTONotificationCreateInput: z.ZodIntersection<z.ZodDiscriminatedUn
|
|
|
316135
316141
|
projectTitle: string;
|
|
316136
316142
|
invitedByUserId: string;
|
|
316137
316143
|
invitationRole: string;
|
|
316144
|
+
featureId?: string | undefined;
|
|
316138
316145
|
};
|
|
316139
316146
|
}, {
|
|
316140
316147
|
type: "ProjectInvitation";
|
|
@@ -316144,6 +316151,7 @@ declare const DTONotificationCreateInput: z.ZodIntersection<z.ZodDiscriminatedUn
|
|
|
316144
316151
|
projectTitle: string;
|
|
316145
316152
|
invitedByUserId: string;
|
|
316146
316153
|
invitationRole: string;
|
|
316154
|
+
featureId?: string | undefined;
|
|
316147
316155
|
};
|
|
316148
316156
|
}>, z.ZodObject<{
|
|
316149
316157
|
type: z.ZodLiteral<"ProjectDocumentComment">;
|
|
@@ -316259,18 +316267,21 @@ declare const DTONotificationProjectInvitationPayload: z.ZodObject<{
|
|
|
316259
316267
|
projectTitle: z.ZodString;
|
|
316260
316268
|
invitedByUserId: z.ZodString;
|
|
316261
316269
|
invitationRole: z.ZodString;
|
|
316270
|
+
featureId: z.ZodOptional<z.ZodString>;
|
|
316262
316271
|
}, "strip", z.ZodTypeAny, {
|
|
316263
316272
|
workspaceId: string;
|
|
316264
316273
|
projectId: string;
|
|
316265
316274
|
projectTitle: string;
|
|
316266
316275
|
invitedByUserId: string;
|
|
316267
316276
|
invitationRole: string;
|
|
316277
|
+
featureId?: string | undefined;
|
|
316268
316278
|
}, {
|
|
316269
316279
|
workspaceId: string;
|
|
316270
316280
|
projectId: string;
|
|
316271
316281
|
projectTitle: string;
|
|
316272
316282
|
invitedByUserId: string;
|
|
316273
316283
|
invitationRole: string;
|
|
316284
|
+
featureId?: string | undefined;
|
|
316274
316285
|
}>;
|
|
316275
316286
|
type DTONotificationProjectInvitationPayload = z.infer<typeof DTONotificationProjectInvitationPayload>;
|
|
316276
316287
|
declare const DTONotificationProjectDocumentCommentPayload: z.ZodObject<{
|
package/dist/index.js
CHANGED
|
@@ -10903,7 +10903,8 @@ var DTOForgeProjectMemberRemoveResponse = _zod.z.object({
|
|
|
10903
10903
|
ok: _zod.z.literal(true)
|
|
10904
10904
|
});
|
|
10905
10905
|
var DTOAddMembersToForgeProject = _zod.z.object({
|
|
10906
|
-
membersToInvite: DTOCreateForgeProjectInvitation.array().min(1)
|
|
10906
|
+
membersToInvite: DTOCreateForgeProjectInvitation.array().min(1),
|
|
10907
|
+
featureId: _zod.z.string().optional()
|
|
10907
10908
|
});
|
|
10908
10909
|
|
|
10909
10910
|
// src/api/dto/forge/project-room.ts
|
|
@@ -11260,7 +11261,8 @@ var DTONotificationProjectInvitationPayload = _zod.z.object({
|
|
|
11260
11261
|
projectId: _zod.z.string(),
|
|
11261
11262
|
projectTitle: _zod.z.string(),
|
|
11262
11263
|
invitedByUserId: _zod.z.string(),
|
|
11263
|
-
invitationRole: _zod.z.string()
|
|
11264
|
+
invitationRole: _zod.z.string(),
|
|
11265
|
+
featureId: _zod.z.string().optional()
|
|
11264
11266
|
});
|
|
11265
11267
|
var DTONotificationProjectDocumentCommentPayload = _zod.z.object({
|
|
11266
11268
|
documentId: _zod.z.string(),
|