@supernova-studio/client 1.61.0 → 1.63.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 +274 -124
- package/dist/index.d.ts +274 -124
- package/dist/index.js +11 -7
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +11 -7
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -141115,7 +141115,6 @@ declare const DTOForgeProjectActionFeatureUpdate: z$1.ZodObject<{
|
|
|
141115
141115
|
status: z$1.ZodOptional<z$1.ZodEnum<["Draft", "ReadyForDevelopment"]>>;
|
|
141116
141116
|
publishedState: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<Pick<{
|
|
141117
141117
|
userId: z$1.ZodOptional<z$1.ZodString>;
|
|
141118
|
-
userName: z$1.ZodOptional<z$1.ZodString>;
|
|
141119
141118
|
lastPublishedAt: z$1.ZodDate;
|
|
141120
141119
|
iterationId: z$1.ZodNullable<z$1.ZodString>;
|
|
141121
141120
|
hideSupernovaUI: z$1.ZodBoolean;
|
|
@@ -141952,7 +141951,6 @@ declare const DTOForgeProjectAction: z$1.ZodIntersection<z$1.ZodDiscriminatedUni
|
|
|
141952
141951
|
status: z$1.ZodOptional<z$1.ZodEnum<["Draft", "ReadyForDevelopment"]>>;
|
|
141953
141952
|
publishedState: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<Pick<{
|
|
141954
141953
|
userId: z$1.ZodOptional<z$1.ZodString>;
|
|
141955
|
-
userName: z$1.ZodOptional<z$1.ZodString>;
|
|
141956
141954
|
lastPublishedAt: z$1.ZodDate;
|
|
141957
141955
|
iterationId: z$1.ZodNullable<z$1.ZodString>;
|
|
141958
141956
|
hideSupernovaUI: z$1.ZodBoolean;
|
|
@@ -249037,7 +249035,6 @@ declare const DTOForgeProjectFeature: z$1.ZodObject<{
|
|
|
249037
249035
|
}>>;
|
|
249038
249036
|
publishedState: z$1.ZodOptional<z$1.ZodObject<{
|
|
249039
249037
|
userId: z$1.ZodOptional<z$1.ZodString>;
|
|
249040
|
-
userName: z$1.ZodOptional<z$1.ZodString>;
|
|
249041
249038
|
lastPublishedAt: z$1.ZodDate;
|
|
249042
249039
|
iterationId: z$1.ZodNullable<z$1.ZodString>;
|
|
249043
249040
|
hideSupernovaUI: z$1.ZodBoolean;
|
|
@@ -249048,14 +249045,12 @@ declare const DTOForgeProjectFeature: z$1.ZodObject<{
|
|
|
249048
249045
|
lastPublishedAt: Date;
|
|
249049
249046
|
hideSupernovaUI: boolean;
|
|
249050
249047
|
userId?: string | undefined;
|
|
249051
|
-
userName?: string | undefined;
|
|
249052
249048
|
}, {
|
|
249053
249049
|
iterationId: string | null;
|
|
249054
249050
|
lastPublishedAt: Date;
|
|
249055
249051
|
hideSupernovaUI: boolean;
|
|
249056
249052
|
userId?: string | undefined;
|
|
249057
249053
|
visibility?: "Public" | "WorkspaceMembers" | undefined;
|
|
249058
|
-
userName?: string | undefined;
|
|
249059
249054
|
}>>;
|
|
249060
249055
|
}, "strip", z$1.ZodTypeAny, {
|
|
249061
249056
|
status: "Draft" | "ReadyForDevelopment";
|
|
@@ -249093,7 +249088,6 @@ declare const DTOForgeProjectFeature: z$1.ZodObject<{
|
|
|
249093
249088
|
lastPublishedAt: Date;
|
|
249094
249089
|
hideSupernovaUI: boolean;
|
|
249095
249090
|
userId?: string | undefined;
|
|
249096
|
-
userName?: string | undefined;
|
|
249097
249091
|
} | undefined;
|
|
249098
249092
|
}, {
|
|
249099
249093
|
id: string;
|
|
@@ -249131,7 +249125,6 @@ declare const DTOForgeProjectFeature: z$1.ZodObject<{
|
|
|
249131
249125
|
hideSupernovaUI: boolean;
|
|
249132
249126
|
userId?: string | undefined;
|
|
249133
249127
|
visibility?: "Public" | "WorkspaceMembers" | undefined;
|
|
249134
|
-
userName?: string | undefined;
|
|
249135
249128
|
} | undefined;
|
|
249136
249129
|
}>;
|
|
249137
249130
|
type DTOForgeProjectFeature = z$1.infer<typeof DTOForgeProjectFeature>;
|
|
@@ -249208,7 +249201,6 @@ declare const DTOForgeProjectFeatureListResponse: z$1.ZodObject<{
|
|
|
249208
249201
|
}>>;
|
|
249209
249202
|
publishedState: z$1.ZodOptional<z$1.ZodObject<{
|
|
249210
249203
|
userId: z$1.ZodOptional<z$1.ZodString>;
|
|
249211
|
-
userName: z$1.ZodOptional<z$1.ZodString>;
|
|
249212
249204
|
lastPublishedAt: z$1.ZodDate;
|
|
249213
249205
|
iterationId: z$1.ZodNullable<z$1.ZodString>;
|
|
249214
249206
|
hideSupernovaUI: z$1.ZodBoolean;
|
|
@@ -249219,14 +249211,12 @@ declare const DTOForgeProjectFeatureListResponse: z$1.ZodObject<{
|
|
|
249219
249211
|
lastPublishedAt: Date;
|
|
249220
249212
|
hideSupernovaUI: boolean;
|
|
249221
249213
|
userId?: string | undefined;
|
|
249222
|
-
userName?: string | undefined;
|
|
249223
249214
|
}, {
|
|
249224
249215
|
iterationId: string | null;
|
|
249225
249216
|
lastPublishedAt: Date;
|
|
249226
249217
|
hideSupernovaUI: boolean;
|
|
249227
249218
|
userId?: string | undefined;
|
|
249228
249219
|
visibility?: "Public" | "WorkspaceMembers" | undefined;
|
|
249229
|
-
userName?: string | undefined;
|
|
249230
249220
|
}>>;
|
|
249231
249221
|
}, "strip", z$1.ZodTypeAny, {
|
|
249232
249222
|
status: "Draft" | "ReadyForDevelopment";
|
|
@@ -249264,7 +249254,6 @@ declare const DTOForgeProjectFeatureListResponse: z$1.ZodObject<{
|
|
|
249264
249254
|
lastPublishedAt: Date;
|
|
249265
249255
|
hideSupernovaUI: boolean;
|
|
249266
249256
|
userId?: string | undefined;
|
|
249267
|
-
userName?: string | undefined;
|
|
249268
249257
|
} | undefined;
|
|
249269
249258
|
}, {
|
|
249270
249259
|
id: string;
|
|
@@ -249302,7 +249291,6 @@ declare const DTOForgeProjectFeatureListResponse: z$1.ZodObject<{
|
|
|
249302
249291
|
hideSupernovaUI: boolean;
|
|
249303
249292
|
userId?: string | undefined;
|
|
249304
249293
|
visibility?: "Public" | "WorkspaceMembers" | undefined;
|
|
249305
|
-
userName?: string | undefined;
|
|
249306
249294
|
} | undefined;
|
|
249307
249295
|
}>, "many">;
|
|
249308
249296
|
}, "strip", z$1.ZodTypeAny, {
|
|
@@ -249342,7 +249330,6 @@ declare const DTOForgeProjectFeatureListResponse: z$1.ZodObject<{
|
|
|
249342
249330
|
lastPublishedAt: Date;
|
|
249343
249331
|
hideSupernovaUI: boolean;
|
|
249344
249332
|
userId?: string | undefined;
|
|
249345
|
-
userName?: string | undefined;
|
|
249346
249333
|
} | undefined;
|
|
249347
249334
|
}[];
|
|
249348
249335
|
}, {
|
|
@@ -249382,7 +249369,6 @@ declare const DTOForgeProjectFeatureListResponse: z$1.ZodObject<{
|
|
|
249382
249369
|
hideSupernovaUI: boolean;
|
|
249383
249370
|
userId?: string | undefined;
|
|
249384
249371
|
visibility?: "Public" | "WorkspaceMembers" | undefined;
|
|
249385
|
-
userName?: string | undefined;
|
|
249386
249372
|
} | undefined;
|
|
249387
249373
|
}[];
|
|
249388
249374
|
}>;
|
|
@@ -249600,7 +249586,6 @@ declare const DTOForgeProjectFeatureUpdateInput: z$1.ZodObject<{
|
|
|
249600
249586
|
*/
|
|
249601
249587
|
publishedState: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<Pick<{
|
|
249602
249588
|
userId: z$1.ZodOptional<z$1.ZodString>;
|
|
249603
|
-
userName: z$1.ZodOptional<z$1.ZodString>;
|
|
249604
249589
|
lastPublishedAt: z$1.ZodDate;
|
|
249605
249590
|
iterationId: z$1.ZodNullable<z$1.ZodString>;
|
|
249606
249591
|
hideSupernovaUI: z$1.ZodBoolean;
|
|
@@ -249741,7 +249726,6 @@ declare const DTOForgeProjectFeatureGetResponse: z$1.ZodObject<{
|
|
|
249741
249726
|
}>>;
|
|
249742
249727
|
publishedState: z$1.ZodOptional<z$1.ZodObject<{
|
|
249743
249728
|
userId: z$1.ZodOptional<z$1.ZodString>;
|
|
249744
|
-
userName: z$1.ZodOptional<z$1.ZodString>;
|
|
249745
249729
|
lastPublishedAt: z$1.ZodDate;
|
|
249746
249730
|
iterationId: z$1.ZodNullable<z$1.ZodString>;
|
|
249747
249731
|
hideSupernovaUI: z$1.ZodBoolean;
|
|
@@ -249752,14 +249736,12 @@ declare const DTOForgeProjectFeatureGetResponse: z$1.ZodObject<{
|
|
|
249752
249736
|
lastPublishedAt: Date;
|
|
249753
249737
|
hideSupernovaUI: boolean;
|
|
249754
249738
|
userId?: string | undefined;
|
|
249755
|
-
userName?: string | undefined;
|
|
249756
249739
|
}, {
|
|
249757
249740
|
iterationId: string | null;
|
|
249758
249741
|
lastPublishedAt: Date;
|
|
249759
249742
|
hideSupernovaUI: boolean;
|
|
249760
249743
|
userId?: string | undefined;
|
|
249761
249744
|
visibility?: "Public" | "WorkspaceMembers" | undefined;
|
|
249762
|
-
userName?: string | undefined;
|
|
249763
249745
|
}>>;
|
|
249764
249746
|
}, "strip", z$1.ZodTypeAny, {
|
|
249765
249747
|
status: "Draft" | "ReadyForDevelopment";
|
|
@@ -249797,7 +249779,6 @@ declare const DTOForgeProjectFeatureGetResponse: z$1.ZodObject<{
|
|
|
249797
249779
|
lastPublishedAt: Date;
|
|
249798
249780
|
hideSupernovaUI: boolean;
|
|
249799
249781
|
userId?: string | undefined;
|
|
249800
|
-
userName?: string | undefined;
|
|
249801
249782
|
} | undefined;
|
|
249802
249783
|
}, {
|
|
249803
249784
|
id: string;
|
|
@@ -249835,7 +249816,6 @@ declare const DTOForgeProjectFeatureGetResponse: z$1.ZodObject<{
|
|
|
249835
249816
|
hideSupernovaUI: boolean;
|
|
249836
249817
|
userId?: string | undefined;
|
|
249837
249818
|
visibility?: "Public" | "WorkspaceMembers" | undefined;
|
|
249838
|
-
userName?: string | undefined;
|
|
249839
249819
|
} | undefined;
|
|
249840
249820
|
}>;
|
|
249841
249821
|
}, "strip", z$1.ZodTypeAny, {
|
|
@@ -249875,7 +249855,6 @@ declare const DTOForgeProjectFeatureGetResponse: z$1.ZodObject<{
|
|
|
249875
249855
|
lastPublishedAt: Date;
|
|
249876
249856
|
hideSupernovaUI: boolean;
|
|
249877
249857
|
userId?: string | undefined;
|
|
249878
|
-
userName?: string | undefined;
|
|
249879
249858
|
} | undefined;
|
|
249880
249859
|
};
|
|
249881
249860
|
}, {
|
|
@@ -249915,7 +249894,6 @@ declare const DTOForgeProjectFeatureGetResponse: z$1.ZodObject<{
|
|
|
249915
249894
|
hideSupernovaUI: boolean;
|
|
249916
249895
|
userId?: string | undefined;
|
|
249917
249896
|
visibility?: "Public" | "WorkspaceMembers" | undefined;
|
|
249918
|
-
userName?: string | undefined;
|
|
249919
249897
|
} | undefined;
|
|
249920
249898
|
};
|
|
249921
249899
|
}>;
|
|
@@ -249923,72 +249901,87 @@ type DTOForgeProjectFeatureGetResponse = z$1.infer<typeof DTOForgeProjectFeature
|
|
|
249923
249901
|
declare const DTOForgeProjectPublishedFeature: z$1.ZodObject<{
|
|
249924
249902
|
featureName: z$1.ZodString;
|
|
249925
249903
|
iterationName: z$1.ZodString;
|
|
249926
|
-
projectId: z$1.ZodString;
|
|
249927
249904
|
hideSupernovaUI: z$1.ZodBoolean;
|
|
249928
249905
|
thumbnailUrl: z$1.ZodOptional<z$1.ZodString>;
|
|
249929
249906
|
staticPreviewUrl: z$1.ZodString;
|
|
249907
|
+
projectId: z$1.ZodOptional<z$1.ZodString>;
|
|
249908
|
+
projectName: z$1.ZodOptional<z$1.ZodString>;
|
|
249909
|
+
workspaceId: z$1.ZodOptional<z$1.ZodString>;
|
|
249930
249910
|
}, "strip", z$1.ZodTypeAny, {
|
|
249931
|
-
projectId: string;
|
|
249932
249911
|
staticPreviewUrl: string;
|
|
249933
249912
|
hideSupernovaUI: boolean;
|
|
249934
249913
|
featureName: string;
|
|
249935
249914
|
iterationName: string;
|
|
249915
|
+
workspaceId?: string | undefined;
|
|
249936
249916
|
thumbnailUrl?: string | undefined;
|
|
249917
|
+
projectId?: string | undefined;
|
|
249918
|
+
projectName?: string | undefined;
|
|
249937
249919
|
}, {
|
|
249938
|
-
projectId: string;
|
|
249939
249920
|
staticPreviewUrl: string;
|
|
249940
249921
|
hideSupernovaUI: boolean;
|
|
249941
249922
|
featureName: string;
|
|
249942
249923
|
iterationName: string;
|
|
249924
|
+
workspaceId?: string | undefined;
|
|
249943
249925
|
thumbnailUrl?: string | undefined;
|
|
249926
|
+
projectId?: string | undefined;
|
|
249927
|
+
projectName?: string | undefined;
|
|
249944
249928
|
}>;
|
|
249945
249929
|
type DTOForgeProjectPublishedFeature = z$1.infer<typeof DTOForgeProjectPublishedFeature>;
|
|
249946
249930
|
declare const DTOForgeProjectPublishedFeatureGetResponse: z$1.ZodObject<{
|
|
249947
249931
|
publishedFeature: z$1.ZodObject<{
|
|
249948
249932
|
featureName: z$1.ZodString;
|
|
249949
249933
|
iterationName: z$1.ZodString;
|
|
249950
|
-
projectId: z$1.ZodString;
|
|
249951
249934
|
hideSupernovaUI: z$1.ZodBoolean;
|
|
249952
249935
|
thumbnailUrl: z$1.ZodOptional<z$1.ZodString>;
|
|
249953
249936
|
staticPreviewUrl: z$1.ZodString;
|
|
249937
|
+
projectId: z$1.ZodOptional<z$1.ZodString>;
|
|
249938
|
+
projectName: z$1.ZodOptional<z$1.ZodString>;
|
|
249939
|
+
workspaceId: z$1.ZodOptional<z$1.ZodString>;
|
|
249954
249940
|
}, "strip", z$1.ZodTypeAny, {
|
|
249955
|
-
projectId: string;
|
|
249956
249941
|
staticPreviewUrl: string;
|
|
249957
249942
|
hideSupernovaUI: boolean;
|
|
249958
249943
|
featureName: string;
|
|
249959
249944
|
iterationName: string;
|
|
249945
|
+
workspaceId?: string | undefined;
|
|
249960
249946
|
thumbnailUrl?: string | undefined;
|
|
249947
|
+
projectId?: string | undefined;
|
|
249948
|
+
projectName?: string | undefined;
|
|
249961
249949
|
}, {
|
|
249962
|
-
projectId: string;
|
|
249963
249950
|
staticPreviewUrl: string;
|
|
249964
249951
|
hideSupernovaUI: boolean;
|
|
249965
249952
|
featureName: string;
|
|
249966
249953
|
iterationName: string;
|
|
249954
|
+
workspaceId?: string | undefined;
|
|
249967
249955
|
thumbnailUrl?: string | undefined;
|
|
249956
|
+
projectId?: string | undefined;
|
|
249957
|
+
projectName?: string | undefined;
|
|
249968
249958
|
}>;
|
|
249969
249959
|
}, "strip", z$1.ZodTypeAny, {
|
|
249970
249960
|
publishedFeature: {
|
|
249971
|
-
projectId: string;
|
|
249972
249961
|
staticPreviewUrl: string;
|
|
249973
249962
|
hideSupernovaUI: boolean;
|
|
249974
249963
|
featureName: string;
|
|
249975
249964
|
iterationName: string;
|
|
249965
|
+
workspaceId?: string | undefined;
|
|
249976
249966
|
thumbnailUrl?: string | undefined;
|
|
249967
|
+
projectId?: string | undefined;
|
|
249968
|
+
projectName?: string | undefined;
|
|
249977
249969
|
};
|
|
249978
249970
|
}, {
|
|
249979
249971
|
publishedFeature: {
|
|
249980
|
-
projectId: string;
|
|
249981
249972
|
staticPreviewUrl: string;
|
|
249982
249973
|
hideSupernovaUI: boolean;
|
|
249983
249974
|
featureName: string;
|
|
249984
249975
|
iterationName: string;
|
|
249976
|
+
workspaceId?: string | undefined;
|
|
249985
249977
|
thumbnailUrl?: string | undefined;
|
|
249978
|
+
projectId?: string | undefined;
|
|
249979
|
+
projectName?: string | undefined;
|
|
249986
249980
|
};
|
|
249987
249981
|
}>;
|
|
249988
249982
|
type DTOForgeProjectPublishedFeatureGetResponse = z$1.infer<typeof DTOForgeProjectPublishedFeatureGetResponse>;
|
|
249989
249983
|
declare const DTOFeaturePublishedStateUpdateInput: z$1.ZodObject<Pick<{
|
|
249990
249984
|
userId: z$1.ZodOptional<z$1.ZodString>;
|
|
249991
|
-
userName: z$1.ZodOptional<z$1.ZodString>;
|
|
249992
249985
|
lastPublishedAt: z$1.ZodDate;
|
|
249993
249986
|
iterationId: z$1.ZodNullable<z$1.ZodString>;
|
|
249994
249987
|
hideSupernovaUI: z$1.ZodBoolean;
|
|
@@ -338083,68 +338076,68 @@ declare const DTOTrailEvent: z.ZodIntersection<z.ZodDiscriminatedUnion<"type", [
|
|
|
338083
338076
|
payload: z.ZodObject<{
|
|
338084
338077
|
featureId: z.ZodString;
|
|
338085
338078
|
featureName: z.ZodString;
|
|
338086
|
-
iterationId: z.ZodString
|
|
338087
|
-
iterationName: z.ZodString
|
|
338079
|
+
iterationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
338080
|
+
iterationName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
338088
338081
|
}, "strip", z.ZodTypeAny, {
|
|
338089
|
-
iterationId: string;
|
|
338090
338082
|
featureId: string;
|
|
338091
338083
|
featureName: string;
|
|
338092
|
-
|
|
338084
|
+
iterationId?: string | null | undefined;
|
|
338085
|
+
iterationName?: string | null | undefined;
|
|
338093
338086
|
}, {
|
|
338094
|
-
iterationId: string;
|
|
338095
338087
|
featureId: string;
|
|
338096
338088
|
featureName: string;
|
|
338097
|
-
|
|
338089
|
+
iterationId?: string | null | undefined;
|
|
338090
|
+
iterationName?: string | null | undefined;
|
|
338098
338091
|
}>;
|
|
338099
338092
|
}, "strip", z.ZodTypeAny, {
|
|
338100
338093
|
type: "FeaturePublished";
|
|
338101
338094
|
payload: {
|
|
338102
|
-
iterationId: string;
|
|
338103
338095
|
featureId: string;
|
|
338104
338096
|
featureName: string;
|
|
338105
|
-
|
|
338097
|
+
iterationId?: string | null | undefined;
|
|
338098
|
+
iterationName?: string | null | undefined;
|
|
338106
338099
|
};
|
|
338107
338100
|
}, {
|
|
338108
338101
|
type: "FeaturePublished";
|
|
338109
338102
|
payload: {
|
|
338110
|
-
iterationId: string;
|
|
338111
338103
|
featureId: string;
|
|
338112
338104
|
featureName: string;
|
|
338113
|
-
|
|
338105
|
+
iterationId?: string | null | undefined;
|
|
338106
|
+
iterationName?: string | null | undefined;
|
|
338114
338107
|
};
|
|
338115
338108
|
}>, z.ZodObject<{
|
|
338116
338109
|
type: z.ZodLiteral<"FeatureUnpublished">;
|
|
338117
338110
|
payload: z.ZodObject<{
|
|
338118
338111
|
featureId: z.ZodString;
|
|
338119
338112
|
featureName: z.ZodString;
|
|
338120
|
-
iterationId: z.ZodString
|
|
338121
|
-
iterationName: z.ZodString
|
|
338113
|
+
iterationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
338114
|
+
iterationName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
338122
338115
|
}, "strip", z.ZodTypeAny, {
|
|
338123
|
-
iterationId: string;
|
|
338124
338116
|
featureId: string;
|
|
338125
338117
|
featureName: string;
|
|
338126
|
-
|
|
338118
|
+
iterationId?: string | null | undefined;
|
|
338119
|
+
iterationName?: string | null | undefined;
|
|
338127
338120
|
}, {
|
|
338128
|
-
iterationId: string;
|
|
338129
338121
|
featureId: string;
|
|
338130
338122
|
featureName: string;
|
|
338131
|
-
|
|
338123
|
+
iterationId?: string | null | undefined;
|
|
338124
|
+
iterationName?: string | null | undefined;
|
|
338132
338125
|
}>;
|
|
338133
338126
|
}, "strip", z.ZodTypeAny, {
|
|
338134
338127
|
type: "FeatureUnpublished";
|
|
338135
338128
|
payload: {
|
|
338136
|
-
iterationId: string;
|
|
338137
338129
|
featureId: string;
|
|
338138
338130
|
featureName: string;
|
|
338139
|
-
|
|
338131
|
+
iterationId?: string | null | undefined;
|
|
338132
|
+
iterationName?: string | null | undefined;
|
|
338140
338133
|
};
|
|
338141
338134
|
}, {
|
|
338142
338135
|
type: "FeatureUnpublished";
|
|
338143
338136
|
payload: {
|
|
338144
|
-
iterationId: string;
|
|
338145
338137
|
featureId: string;
|
|
338146
338138
|
featureName: string;
|
|
338147
|
-
|
|
338139
|
+
iterationId?: string | null | undefined;
|
|
338140
|
+
iterationName?: string | null | undefined;
|
|
338148
338141
|
};
|
|
338149
338142
|
}>]>, z.ZodObject<{
|
|
338150
338143
|
id: z.ZodString;
|
|
@@ -338537,68 +338530,68 @@ declare const DTOTrailEventWithDetails: z.ZodIntersection<z.ZodIntersection<z.Zo
|
|
|
338537
338530
|
payload: z.ZodObject<{
|
|
338538
338531
|
featureId: z.ZodString;
|
|
338539
338532
|
featureName: z.ZodString;
|
|
338540
|
-
iterationId: z.ZodString
|
|
338541
|
-
iterationName: z.ZodString
|
|
338533
|
+
iterationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
338534
|
+
iterationName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
338542
338535
|
}, "strip", z.ZodTypeAny, {
|
|
338543
|
-
iterationId: string;
|
|
338544
338536
|
featureId: string;
|
|
338545
338537
|
featureName: string;
|
|
338546
|
-
|
|
338538
|
+
iterationId?: string | null | undefined;
|
|
338539
|
+
iterationName?: string | null | undefined;
|
|
338547
338540
|
}, {
|
|
338548
|
-
iterationId: string;
|
|
338549
338541
|
featureId: string;
|
|
338550
338542
|
featureName: string;
|
|
338551
|
-
|
|
338543
|
+
iterationId?: string | null | undefined;
|
|
338544
|
+
iterationName?: string | null | undefined;
|
|
338552
338545
|
}>;
|
|
338553
338546
|
}, "strip", z.ZodTypeAny, {
|
|
338554
338547
|
type: "FeaturePublished";
|
|
338555
338548
|
payload: {
|
|
338556
|
-
iterationId: string;
|
|
338557
338549
|
featureId: string;
|
|
338558
338550
|
featureName: string;
|
|
338559
|
-
|
|
338551
|
+
iterationId?: string | null | undefined;
|
|
338552
|
+
iterationName?: string | null | undefined;
|
|
338560
338553
|
};
|
|
338561
338554
|
}, {
|
|
338562
338555
|
type: "FeaturePublished";
|
|
338563
338556
|
payload: {
|
|
338564
|
-
iterationId: string;
|
|
338565
338557
|
featureId: string;
|
|
338566
338558
|
featureName: string;
|
|
338567
|
-
|
|
338559
|
+
iterationId?: string | null | undefined;
|
|
338560
|
+
iterationName?: string | null | undefined;
|
|
338568
338561
|
};
|
|
338569
338562
|
}>, z.ZodObject<{
|
|
338570
338563
|
type: z.ZodLiteral<"FeatureUnpublished">;
|
|
338571
338564
|
payload: z.ZodObject<{
|
|
338572
338565
|
featureId: z.ZodString;
|
|
338573
338566
|
featureName: z.ZodString;
|
|
338574
|
-
iterationId: z.ZodString
|
|
338575
|
-
iterationName: z.ZodString
|
|
338567
|
+
iterationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
338568
|
+
iterationName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
338576
338569
|
}, "strip", z.ZodTypeAny, {
|
|
338577
|
-
iterationId: string;
|
|
338578
338570
|
featureId: string;
|
|
338579
338571
|
featureName: string;
|
|
338580
|
-
|
|
338572
|
+
iterationId?: string | null | undefined;
|
|
338573
|
+
iterationName?: string | null | undefined;
|
|
338581
338574
|
}, {
|
|
338582
|
-
iterationId: string;
|
|
338583
338575
|
featureId: string;
|
|
338584
338576
|
featureName: string;
|
|
338585
|
-
|
|
338577
|
+
iterationId?: string | null | undefined;
|
|
338578
|
+
iterationName?: string | null | undefined;
|
|
338586
338579
|
}>;
|
|
338587
338580
|
}, "strip", z.ZodTypeAny, {
|
|
338588
338581
|
type: "FeatureUnpublished";
|
|
338589
338582
|
payload: {
|
|
338590
|
-
iterationId: string;
|
|
338591
338583
|
featureId: string;
|
|
338592
338584
|
featureName: string;
|
|
338593
|
-
|
|
338585
|
+
iterationId?: string | null | undefined;
|
|
338586
|
+
iterationName?: string | null | undefined;
|
|
338594
338587
|
};
|
|
338595
338588
|
}, {
|
|
338596
338589
|
type: "FeatureUnpublished";
|
|
338597
338590
|
payload: {
|
|
338598
|
-
iterationId: string;
|
|
338599
338591
|
featureId: string;
|
|
338600
338592
|
featureName: string;
|
|
338601
|
-
|
|
338593
|
+
iterationId?: string | null | undefined;
|
|
338594
|
+
iterationName?: string | null | undefined;
|
|
338602
338595
|
};
|
|
338603
338596
|
}>]>, z.ZodObject<{
|
|
338604
338597
|
id: z.ZodString;
|
|
@@ -339009,68 +339002,68 @@ declare const DTOTrailEventListResponse: z.ZodObject<{
|
|
|
339009
339002
|
payload: z.ZodObject<{
|
|
339010
339003
|
featureId: z.ZodString;
|
|
339011
339004
|
featureName: z.ZodString;
|
|
339012
|
-
iterationId: z.ZodString
|
|
339013
|
-
iterationName: z.ZodString
|
|
339005
|
+
iterationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
339006
|
+
iterationName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
339014
339007
|
}, "strip", z.ZodTypeAny, {
|
|
339015
|
-
iterationId: string;
|
|
339016
339008
|
featureId: string;
|
|
339017
339009
|
featureName: string;
|
|
339018
|
-
|
|
339010
|
+
iterationId?: string | null | undefined;
|
|
339011
|
+
iterationName?: string | null | undefined;
|
|
339019
339012
|
}, {
|
|
339020
|
-
iterationId: string;
|
|
339021
339013
|
featureId: string;
|
|
339022
339014
|
featureName: string;
|
|
339023
|
-
|
|
339015
|
+
iterationId?: string | null | undefined;
|
|
339016
|
+
iterationName?: string | null | undefined;
|
|
339024
339017
|
}>;
|
|
339025
339018
|
}, "strip", z.ZodTypeAny, {
|
|
339026
339019
|
type: "FeaturePublished";
|
|
339027
339020
|
payload: {
|
|
339028
|
-
iterationId: string;
|
|
339029
339021
|
featureId: string;
|
|
339030
339022
|
featureName: string;
|
|
339031
|
-
|
|
339023
|
+
iterationId?: string | null | undefined;
|
|
339024
|
+
iterationName?: string | null | undefined;
|
|
339032
339025
|
};
|
|
339033
339026
|
}, {
|
|
339034
339027
|
type: "FeaturePublished";
|
|
339035
339028
|
payload: {
|
|
339036
|
-
iterationId: string;
|
|
339037
339029
|
featureId: string;
|
|
339038
339030
|
featureName: string;
|
|
339039
|
-
|
|
339031
|
+
iterationId?: string | null | undefined;
|
|
339032
|
+
iterationName?: string | null | undefined;
|
|
339040
339033
|
};
|
|
339041
339034
|
}>, z.ZodObject<{
|
|
339042
339035
|
type: z.ZodLiteral<"FeatureUnpublished">;
|
|
339043
339036
|
payload: z.ZodObject<{
|
|
339044
339037
|
featureId: z.ZodString;
|
|
339045
339038
|
featureName: z.ZodString;
|
|
339046
|
-
iterationId: z.ZodString
|
|
339047
|
-
iterationName: z.ZodString
|
|
339039
|
+
iterationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
339040
|
+
iterationName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
339048
339041
|
}, "strip", z.ZodTypeAny, {
|
|
339049
|
-
iterationId: string;
|
|
339050
339042
|
featureId: string;
|
|
339051
339043
|
featureName: string;
|
|
339052
|
-
|
|
339044
|
+
iterationId?: string | null | undefined;
|
|
339045
|
+
iterationName?: string | null | undefined;
|
|
339053
339046
|
}, {
|
|
339054
|
-
iterationId: string;
|
|
339055
339047
|
featureId: string;
|
|
339056
339048
|
featureName: string;
|
|
339057
|
-
|
|
339049
|
+
iterationId?: string | null | undefined;
|
|
339050
|
+
iterationName?: string | null | undefined;
|
|
339058
339051
|
}>;
|
|
339059
339052
|
}, "strip", z.ZodTypeAny, {
|
|
339060
339053
|
type: "FeatureUnpublished";
|
|
339061
339054
|
payload: {
|
|
339062
|
-
iterationId: string;
|
|
339063
339055
|
featureId: string;
|
|
339064
339056
|
featureName: string;
|
|
339065
|
-
|
|
339057
|
+
iterationId?: string | null | undefined;
|
|
339058
|
+
iterationName?: string | null | undefined;
|
|
339066
339059
|
};
|
|
339067
339060
|
}, {
|
|
339068
339061
|
type: "FeatureUnpublished";
|
|
339069
339062
|
payload: {
|
|
339070
|
-
iterationId: string;
|
|
339071
339063
|
featureId: string;
|
|
339072
339064
|
featureName: string;
|
|
339073
|
-
|
|
339065
|
+
iterationId?: string | null | undefined;
|
|
339066
|
+
iterationName?: string | null | undefined;
|
|
339074
339067
|
};
|
|
339075
339068
|
}>]>, z.ZodObject<{
|
|
339076
339069
|
id: z.ZodString;
|
|
@@ -339194,18 +339187,18 @@ declare const DTOTrailEventListResponse: z.ZodObject<{
|
|
|
339194
339187
|
} | {
|
|
339195
339188
|
type: "FeaturePublished";
|
|
339196
339189
|
payload: {
|
|
339197
|
-
iterationId: string;
|
|
339198
339190
|
featureId: string;
|
|
339199
339191
|
featureName: string;
|
|
339200
|
-
|
|
339192
|
+
iterationId?: string | null | undefined;
|
|
339193
|
+
iterationName?: string | null | undefined;
|
|
339201
339194
|
};
|
|
339202
339195
|
} | {
|
|
339203
339196
|
type: "FeatureUnpublished";
|
|
339204
339197
|
payload: {
|
|
339205
|
-
iterationId: string;
|
|
339206
339198
|
featureId: string;
|
|
339207
339199
|
featureName: string;
|
|
339208
|
-
|
|
339200
|
+
iterationId?: string | null | undefined;
|
|
339201
|
+
iterationName?: string | null | undefined;
|
|
339209
339202
|
};
|
|
339210
339203
|
}) & {
|
|
339211
339204
|
id: string;
|
|
@@ -339311,18 +339304,18 @@ declare const DTOTrailEventListResponse: z.ZodObject<{
|
|
|
339311
339304
|
} | {
|
|
339312
339305
|
type: "FeaturePublished";
|
|
339313
339306
|
payload: {
|
|
339314
|
-
iterationId: string;
|
|
339315
339307
|
featureId: string;
|
|
339316
339308
|
featureName: string;
|
|
339317
|
-
|
|
339309
|
+
iterationId?: string | null | undefined;
|
|
339310
|
+
iterationName?: string | null | undefined;
|
|
339318
339311
|
};
|
|
339319
339312
|
} | {
|
|
339320
339313
|
type: "FeatureUnpublished";
|
|
339321
339314
|
payload: {
|
|
339322
|
-
iterationId: string;
|
|
339323
339315
|
featureId: string;
|
|
339324
339316
|
featureName: string;
|
|
339325
|
-
|
|
339317
|
+
iterationId?: string | null | undefined;
|
|
339318
|
+
iterationName?: string | null | undefined;
|
|
339326
339319
|
};
|
|
339327
339320
|
}) & {
|
|
339328
339321
|
id: string;
|
|
@@ -339709,68 +339702,68 @@ declare const DTOTrailEventCreate: z.ZodIntersection<z.ZodDiscriminatedUnion<"ty
|
|
|
339709
339702
|
payload: z.ZodObject<{
|
|
339710
339703
|
featureId: z.ZodString;
|
|
339711
339704
|
featureName: z.ZodString;
|
|
339712
|
-
iterationId: z.ZodString
|
|
339713
|
-
iterationName: z.ZodString
|
|
339705
|
+
iterationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
339706
|
+
iterationName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
339714
339707
|
}, "strip", z.ZodTypeAny, {
|
|
339715
|
-
iterationId: string;
|
|
339716
339708
|
featureId: string;
|
|
339717
339709
|
featureName: string;
|
|
339718
|
-
|
|
339710
|
+
iterationId?: string | null | undefined;
|
|
339711
|
+
iterationName?: string | null | undefined;
|
|
339719
339712
|
}, {
|
|
339720
|
-
iterationId: string;
|
|
339721
339713
|
featureId: string;
|
|
339722
339714
|
featureName: string;
|
|
339723
|
-
|
|
339715
|
+
iterationId?: string | null | undefined;
|
|
339716
|
+
iterationName?: string | null | undefined;
|
|
339724
339717
|
}>;
|
|
339725
339718
|
}, "strip", z.ZodTypeAny, {
|
|
339726
339719
|
type: "FeaturePublished";
|
|
339727
339720
|
payload: {
|
|
339728
|
-
iterationId: string;
|
|
339729
339721
|
featureId: string;
|
|
339730
339722
|
featureName: string;
|
|
339731
|
-
|
|
339723
|
+
iterationId?: string | null | undefined;
|
|
339724
|
+
iterationName?: string | null | undefined;
|
|
339732
339725
|
};
|
|
339733
339726
|
}, {
|
|
339734
339727
|
type: "FeaturePublished";
|
|
339735
339728
|
payload: {
|
|
339736
|
-
iterationId: string;
|
|
339737
339729
|
featureId: string;
|
|
339738
339730
|
featureName: string;
|
|
339739
|
-
|
|
339731
|
+
iterationId?: string | null | undefined;
|
|
339732
|
+
iterationName?: string | null | undefined;
|
|
339740
339733
|
};
|
|
339741
339734
|
}>, z.ZodObject<{
|
|
339742
339735
|
type: z.ZodLiteral<"FeatureUnpublished">;
|
|
339743
339736
|
payload: z.ZodObject<{
|
|
339744
339737
|
featureId: z.ZodString;
|
|
339745
339738
|
featureName: z.ZodString;
|
|
339746
|
-
iterationId: z.ZodString
|
|
339747
|
-
iterationName: z.ZodString
|
|
339739
|
+
iterationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
339740
|
+
iterationName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
339748
339741
|
}, "strip", z.ZodTypeAny, {
|
|
339749
|
-
iterationId: string;
|
|
339750
339742
|
featureId: string;
|
|
339751
339743
|
featureName: string;
|
|
339752
|
-
|
|
339744
|
+
iterationId?: string | null | undefined;
|
|
339745
|
+
iterationName?: string | null | undefined;
|
|
339753
339746
|
}, {
|
|
339754
|
-
iterationId: string;
|
|
339755
339747
|
featureId: string;
|
|
339756
339748
|
featureName: string;
|
|
339757
|
-
|
|
339749
|
+
iterationId?: string | null | undefined;
|
|
339750
|
+
iterationName?: string | null | undefined;
|
|
339758
339751
|
}>;
|
|
339759
339752
|
}, "strip", z.ZodTypeAny, {
|
|
339760
339753
|
type: "FeatureUnpublished";
|
|
339761
339754
|
payload: {
|
|
339762
|
-
iterationId: string;
|
|
339763
339755
|
featureId: string;
|
|
339764
339756
|
featureName: string;
|
|
339765
|
-
|
|
339757
|
+
iterationId?: string | null | undefined;
|
|
339758
|
+
iterationName?: string | null | undefined;
|
|
339766
339759
|
};
|
|
339767
339760
|
}, {
|
|
339768
339761
|
type: "FeatureUnpublished";
|
|
339769
339762
|
payload: {
|
|
339770
|
-
iterationId: string;
|
|
339771
339763
|
featureId: string;
|
|
339772
339764
|
featureName: string;
|
|
339773
|
-
|
|
339765
|
+
iterationId?: string | null | undefined;
|
|
339766
|
+
iterationName?: string | null | undefined;
|
|
339774
339767
|
};
|
|
339775
339768
|
}>]>, z.ZodObject<Omit<{
|
|
339776
339769
|
id: z.ZodString;
|
|
@@ -346508,6 +346501,32 @@ declare const DTOSubscription: z$1.ZodObject<{
|
|
|
346508
346501
|
errorReason: string;
|
|
346509
346502
|
max?: number | undefined;
|
|
346510
346503
|
}>;
|
|
346504
|
+
forgeFeatureWorkspacePublishing: z$1.ZodObject<{
|
|
346505
|
+
enabled: z$1.ZodBoolean;
|
|
346506
|
+
errorMessage: z$1.ZodString;
|
|
346507
|
+
errorReason: z$1.ZodString;
|
|
346508
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
346509
|
+
errorMessage: string;
|
|
346510
|
+
errorReason: string;
|
|
346511
|
+
enabled: boolean;
|
|
346512
|
+
}, {
|
|
346513
|
+
errorMessage: string;
|
|
346514
|
+
errorReason: string;
|
|
346515
|
+
enabled: boolean;
|
|
346516
|
+
}>;
|
|
346517
|
+
forgeFeatureHideSupernovaUI: z$1.ZodObject<{
|
|
346518
|
+
enabled: z$1.ZodBoolean;
|
|
346519
|
+
errorMessage: z$1.ZodString;
|
|
346520
|
+
errorReason: z$1.ZodString;
|
|
346521
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
346522
|
+
errorMessage: string;
|
|
346523
|
+
errorReason: string;
|
|
346524
|
+
enabled: boolean;
|
|
346525
|
+
}, {
|
|
346526
|
+
errorMessage: string;
|
|
346527
|
+
errorReason: string;
|
|
346528
|
+
enabled: boolean;
|
|
346529
|
+
}>;
|
|
346511
346530
|
documentationPages: z$1.ZodObject<{
|
|
346512
346531
|
max: z$1.ZodOptional<z$1.ZodNumber>;
|
|
346513
346532
|
errorMessage: z$1.ZodString;
|
|
@@ -346692,6 +346711,16 @@ declare const DTOSubscription: z$1.ZodObject<{
|
|
|
346692
346711
|
errorReason: string;
|
|
346693
346712
|
max?: number | undefined;
|
|
346694
346713
|
};
|
|
346714
|
+
forgeFeatureWorkspacePublishing: {
|
|
346715
|
+
errorMessage: string;
|
|
346716
|
+
errorReason: string;
|
|
346717
|
+
enabled: boolean;
|
|
346718
|
+
};
|
|
346719
|
+
forgeFeatureHideSupernovaUI: {
|
|
346720
|
+
errorMessage: string;
|
|
346721
|
+
errorReason: string;
|
|
346722
|
+
enabled: boolean;
|
|
346723
|
+
};
|
|
346695
346724
|
documentationPages: {
|
|
346696
346725
|
errorMessage: string;
|
|
346697
346726
|
errorReason: string;
|
|
@@ -346860,6 +346889,16 @@ declare const DTOSubscription: z$1.ZodObject<{
|
|
|
346860
346889
|
errorReason: string;
|
|
346861
346890
|
max?: number | undefined;
|
|
346862
346891
|
};
|
|
346892
|
+
forgeFeatureWorkspacePublishing: {
|
|
346893
|
+
errorMessage: string;
|
|
346894
|
+
errorReason: string;
|
|
346895
|
+
enabled: boolean;
|
|
346896
|
+
};
|
|
346897
|
+
forgeFeatureHideSupernovaUI: {
|
|
346898
|
+
errorMessage: string;
|
|
346899
|
+
errorReason: string;
|
|
346900
|
+
enabled: boolean;
|
|
346901
|
+
};
|
|
346863
346902
|
documentationPages: {
|
|
346864
346903
|
errorMessage: string;
|
|
346865
346904
|
errorReason: string;
|
|
@@ -347122,6 +347161,16 @@ declare const DTOSubscription: z$1.ZodObject<{
|
|
|
347122
347161
|
errorReason: string;
|
|
347123
347162
|
max?: number | undefined;
|
|
347124
347163
|
};
|
|
347164
|
+
forgeFeatureWorkspacePublishing: {
|
|
347165
|
+
errorMessage: string;
|
|
347166
|
+
errorReason: string;
|
|
347167
|
+
enabled: boolean;
|
|
347168
|
+
};
|
|
347169
|
+
forgeFeatureHideSupernovaUI: {
|
|
347170
|
+
errorMessage: string;
|
|
347171
|
+
errorReason: string;
|
|
347172
|
+
enabled: boolean;
|
|
347173
|
+
};
|
|
347125
347174
|
documentationPages: {
|
|
347126
347175
|
errorMessage: string;
|
|
347127
347176
|
errorReason: string;
|
|
@@ -347334,6 +347383,16 @@ declare const DTOSubscription: z$1.ZodObject<{
|
|
|
347334
347383
|
errorReason: string;
|
|
347335
347384
|
max?: number | undefined;
|
|
347336
347385
|
};
|
|
347386
|
+
forgeFeatureWorkspacePublishing: {
|
|
347387
|
+
errorMessage: string;
|
|
347388
|
+
errorReason: string;
|
|
347389
|
+
enabled: boolean;
|
|
347390
|
+
};
|
|
347391
|
+
forgeFeatureHideSupernovaUI: {
|
|
347392
|
+
errorMessage: string;
|
|
347393
|
+
errorReason: string;
|
|
347394
|
+
enabled: boolean;
|
|
347395
|
+
};
|
|
347337
347396
|
documentationPages: {
|
|
347338
347397
|
errorMessage: string;
|
|
347339
347398
|
errorReason: string;
|
|
@@ -347784,6 +347843,32 @@ declare const DTOSubscriptionResponse: z$1.ZodObject<{
|
|
|
347784
347843
|
errorReason: string;
|
|
347785
347844
|
max?: number | undefined;
|
|
347786
347845
|
}>;
|
|
347846
|
+
forgeFeatureWorkspacePublishing: z$1.ZodObject<{
|
|
347847
|
+
enabled: z$1.ZodBoolean;
|
|
347848
|
+
errorMessage: z$1.ZodString;
|
|
347849
|
+
errorReason: z$1.ZodString;
|
|
347850
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
347851
|
+
errorMessage: string;
|
|
347852
|
+
errorReason: string;
|
|
347853
|
+
enabled: boolean;
|
|
347854
|
+
}, {
|
|
347855
|
+
errorMessage: string;
|
|
347856
|
+
errorReason: string;
|
|
347857
|
+
enabled: boolean;
|
|
347858
|
+
}>;
|
|
347859
|
+
forgeFeatureHideSupernovaUI: z$1.ZodObject<{
|
|
347860
|
+
enabled: z$1.ZodBoolean;
|
|
347861
|
+
errorMessage: z$1.ZodString;
|
|
347862
|
+
errorReason: z$1.ZodString;
|
|
347863
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
347864
|
+
errorMessage: string;
|
|
347865
|
+
errorReason: string;
|
|
347866
|
+
enabled: boolean;
|
|
347867
|
+
}, {
|
|
347868
|
+
errorMessage: string;
|
|
347869
|
+
errorReason: string;
|
|
347870
|
+
enabled: boolean;
|
|
347871
|
+
}>;
|
|
347787
347872
|
documentationPages: z$1.ZodObject<{
|
|
347788
347873
|
max: z$1.ZodOptional<z$1.ZodNumber>;
|
|
347789
347874
|
errorMessage: z$1.ZodString;
|
|
@@ -347968,6 +348053,16 @@ declare const DTOSubscriptionResponse: z$1.ZodObject<{
|
|
|
347968
348053
|
errorReason: string;
|
|
347969
348054
|
max?: number | undefined;
|
|
347970
348055
|
};
|
|
348056
|
+
forgeFeatureWorkspacePublishing: {
|
|
348057
|
+
errorMessage: string;
|
|
348058
|
+
errorReason: string;
|
|
348059
|
+
enabled: boolean;
|
|
348060
|
+
};
|
|
348061
|
+
forgeFeatureHideSupernovaUI: {
|
|
348062
|
+
errorMessage: string;
|
|
348063
|
+
errorReason: string;
|
|
348064
|
+
enabled: boolean;
|
|
348065
|
+
};
|
|
347971
348066
|
documentationPages: {
|
|
347972
348067
|
errorMessage: string;
|
|
347973
348068
|
errorReason: string;
|
|
@@ -348136,6 +348231,16 @@ declare const DTOSubscriptionResponse: z$1.ZodObject<{
|
|
|
348136
348231
|
errorReason: string;
|
|
348137
348232
|
max?: number | undefined;
|
|
348138
348233
|
};
|
|
348234
|
+
forgeFeatureWorkspacePublishing: {
|
|
348235
|
+
errorMessage: string;
|
|
348236
|
+
errorReason: string;
|
|
348237
|
+
enabled: boolean;
|
|
348238
|
+
};
|
|
348239
|
+
forgeFeatureHideSupernovaUI: {
|
|
348240
|
+
errorMessage: string;
|
|
348241
|
+
errorReason: string;
|
|
348242
|
+
enabled: boolean;
|
|
348243
|
+
};
|
|
348139
348244
|
documentationPages: {
|
|
348140
348245
|
errorMessage: string;
|
|
348141
348246
|
errorReason: string;
|
|
@@ -348398,6 +348503,16 @@ declare const DTOSubscriptionResponse: z$1.ZodObject<{
|
|
|
348398
348503
|
errorReason: string;
|
|
348399
348504
|
max?: number | undefined;
|
|
348400
348505
|
};
|
|
348506
|
+
forgeFeatureWorkspacePublishing: {
|
|
348507
|
+
errorMessage: string;
|
|
348508
|
+
errorReason: string;
|
|
348509
|
+
enabled: boolean;
|
|
348510
|
+
};
|
|
348511
|
+
forgeFeatureHideSupernovaUI: {
|
|
348512
|
+
errorMessage: string;
|
|
348513
|
+
errorReason: string;
|
|
348514
|
+
enabled: boolean;
|
|
348515
|
+
};
|
|
348401
348516
|
documentationPages: {
|
|
348402
348517
|
errorMessage: string;
|
|
348403
348518
|
errorReason: string;
|
|
@@ -348610,6 +348725,16 @@ declare const DTOSubscriptionResponse: z$1.ZodObject<{
|
|
|
348610
348725
|
errorReason: string;
|
|
348611
348726
|
max?: number | undefined;
|
|
348612
348727
|
};
|
|
348728
|
+
forgeFeatureWorkspacePublishing: {
|
|
348729
|
+
errorMessage: string;
|
|
348730
|
+
errorReason: string;
|
|
348731
|
+
enabled: boolean;
|
|
348732
|
+
};
|
|
348733
|
+
forgeFeatureHideSupernovaUI: {
|
|
348734
|
+
errorMessage: string;
|
|
348735
|
+
errorReason: string;
|
|
348736
|
+
enabled: boolean;
|
|
348737
|
+
};
|
|
348613
348738
|
documentationPages: {
|
|
348614
348739
|
errorMessage: string;
|
|
348615
348740
|
errorReason: string;
|
|
@@ -348993,6 +349118,16 @@ declare const DTOSubscriptionResponse: z$1.ZodObject<{
|
|
|
348993
349118
|
errorReason: string;
|
|
348994
349119
|
max?: number | undefined;
|
|
348995
349120
|
};
|
|
349121
|
+
forgeFeatureWorkspacePublishing: {
|
|
349122
|
+
errorMessage: string;
|
|
349123
|
+
errorReason: string;
|
|
349124
|
+
enabled: boolean;
|
|
349125
|
+
};
|
|
349126
|
+
forgeFeatureHideSupernovaUI: {
|
|
349127
|
+
errorMessage: string;
|
|
349128
|
+
errorReason: string;
|
|
349129
|
+
enabled: boolean;
|
|
349130
|
+
};
|
|
348996
349131
|
documentationPages: {
|
|
348997
349132
|
errorMessage: string;
|
|
348998
349133
|
errorReason: string;
|
|
@@ -349244,6 +349379,16 @@ declare const DTOSubscriptionResponse: z$1.ZodObject<{
|
|
|
349244
349379
|
errorReason: string;
|
|
349245
349380
|
max?: number | undefined;
|
|
349246
349381
|
};
|
|
349382
|
+
forgeFeatureWorkspacePublishing: {
|
|
349383
|
+
errorMessage: string;
|
|
349384
|
+
errorReason: string;
|
|
349385
|
+
enabled: boolean;
|
|
349386
|
+
};
|
|
349387
|
+
forgeFeatureHideSupernovaUI: {
|
|
349388
|
+
errorMessage: string;
|
|
349389
|
+
errorReason: string;
|
|
349390
|
+
enabled: boolean;
|
|
349391
|
+
};
|
|
349247
349392
|
documentationPages: {
|
|
349248
349393
|
errorMessage: string;
|
|
349249
349394
|
errorReason: string;
|
|
@@ -362414,7 +362559,6 @@ declare class ForgeProjectFeaturesEndpoint {
|
|
|
362414
362559
|
lastPublishedAt: Date;
|
|
362415
362560
|
hideSupernovaUI: boolean;
|
|
362416
362561
|
userId?: string | undefined;
|
|
362417
|
-
userName?: string | undefined;
|
|
362418
362562
|
} | undefined;
|
|
362419
362563
|
}[];
|
|
362420
362564
|
}>;
|
|
@@ -362455,7 +362599,6 @@ declare class ForgeProjectFeaturesEndpoint {
|
|
|
362455
362599
|
lastPublishedAt: Date;
|
|
362456
362600
|
hideSupernovaUI: boolean;
|
|
362457
362601
|
userId?: string | undefined;
|
|
362458
|
-
userName?: string | undefined;
|
|
362459
362602
|
} | undefined;
|
|
362460
362603
|
};
|
|
362461
362604
|
}>;
|
|
@@ -362496,7 +362639,6 @@ declare class ForgeProjectFeaturesEndpoint {
|
|
|
362496
362639
|
lastPublishedAt: Date;
|
|
362497
362640
|
hideSupernovaUI: boolean;
|
|
362498
362641
|
userId?: string | undefined;
|
|
362499
|
-
userName?: string | undefined;
|
|
362500
362642
|
} | undefined;
|
|
362501
362643
|
};
|
|
362502
362644
|
}>;
|
|
@@ -372313,6 +372455,16 @@ declare class WorkspaceSubscriptionEndpoint {
|
|
|
372313
372455
|
errorReason: string;
|
|
372314
372456
|
max?: number | undefined;
|
|
372315
372457
|
};
|
|
372458
|
+
forgeFeatureWorkspacePublishing: {
|
|
372459
|
+
errorMessage: string;
|
|
372460
|
+
errorReason: string;
|
|
372461
|
+
enabled: boolean;
|
|
372462
|
+
};
|
|
372463
|
+
forgeFeatureHideSupernovaUI: {
|
|
372464
|
+
errorMessage: string;
|
|
372465
|
+
errorReason: string;
|
|
372466
|
+
enabled: boolean;
|
|
372467
|
+
};
|
|
372316
372468
|
documentationPages: {
|
|
372317
372469
|
errorMessage: string;
|
|
372318
372470
|
errorReason: string;
|
|
@@ -375815,7 +375967,6 @@ declare function applyProjectActionsLocally(input: Input): {
|
|
|
375815
375967
|
lastPublishedAt: Date;
|
|
375816
375968
|
hideSupernovaUI: boolean;
|
|
375817
375969
|
userId?: string | undefined;
|
|
375818
|
-
userName?: string | undefined;
|
|
375819
375970
|
} | undefined;
|
|
375820
375971
|
}[];
|
|
375821
375972
|
artifactSections: {
|
|
@@ -375919,7 +376070,6 @@ declare class LocalProjectActionExecutor {
|
|
|
375919
376070
|
lastPublishedAt: Date;
|
|
375920
376071
|
hideSupernovaUI: boolean;
|
|
375921
376072
|
userId?: string | undefined;
|
|
375922
|
-
userName?: string | undefined;
|
|
375923
376073
|
} | undefined;
|
|
375924
376074
|
}[];
|
|
375925
376075
|
artifactSections: {
|