@supernova-studio/client 1.61.0 → 1.62.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 +250 -116
- package/dist/index.d.ts +250 -116
- package/dist/index.js +6 -5
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +6 -5
- 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
|
}>;
|
|
@@ -249988,7 +249966,6 @@ declare const DTOForgeProjectPublishedFeatureGetResponse: z$1.ZodObject<{
|
|
|
249988
249966
|
type DTOForgeProjectPublishedFeatureGetResponse = z$1.infer<typeof DTOForgeProjectPublishedFeatureGetResponse>;
|
|
249989
249967
|
declare const DTOFeaturePublishedStateUpdateInput: z$1.ZodObject<Pick<{
|
|
249990
249968
|
userId: z$1.ZodOptional<z$1.ZodString>;
|
|
249991
|
-
userName: z$1.ZodOptional<z$1.ZodString>;
|
|
249992
249969
|
lastPublishedAt: z$1.ZodDate;
|
|
249993
249970
|
iterationId: z$1.ZodNullable<z$1.ZodString>;
|
|
249994
249971
|
hideSupernovaUI: z$1.ZodBoolean;
|
|
@@ -338083,68 +338060,68 @@ declare const DTOTrailEvent: z.ZodIntersection<z.ZodDiscriminatedUnion<"type", [
|
|
|
338083
338060
|
payload: z.ZodObject<{
|
|
338084
338061
|
featureId: z.ZodString;
|
|
338085
338062
|
featureName: z.ZodString;
|
|
338086
|
-
iterationId: z.ZodString
|
|
338087
|
-
iterationName: z.ZodString
|
|
338063
|
+
iterationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
338064
|
+
iterationName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
338088
338065
|
}, "strip", z.ZodTypeAny, {
|
|
338089
|
-
iterationId: string;
|
|
338090
338066
|
featureId: string;
|
|
338091
338067
|
featureName: string;
|
|
338092
|
-
|
|
338068
|
+
iterationId?: string | null | undefined;
|
|
338069
|
+
iterationName?: string | null | undefined;
|
|
338093
338070
|
}, {
|
|
338094
|
-
iterationId: string;
|
|
338095
338071
|
featureId: string;
|
|
338096
338072
|
featureName: string;
|
|
338097
|
-
|
|
338073
|
+
iterationId?: string | null | undefined;
|
|
338074
|
+
iterationName?: string | null | undefined;
|
|
338098
338075
|
}>;
|
|
338099
338076
|
}, "strip", z.ZodTypeAny, {
|
|
338100
338077
|
type: "FeaturePublished";
|
|
338101
338078
|
payload: {
|
|
338102
|
-
iterationId: string;
|
|
338103
338079
|
featureId: string;
|
|
338104
338080
|
featureName: string;
|
|
338105
|
-
|
|
338081
|
+
iterationId?: string | null | undefined;
|
|
338082
|
+
iterationName?: string | null | undefined;
|
|
338106
338083
|
};
|
|
338107
338084
|
}, {
|
|
338108
338085
|
type: "FeaturePublished";
|
|
338109
338086
|
payload: {
|
|
338110
|
-
iterationId: string;
|
|
338111
338087
|
featureId: string;
|
|
338112
338088
|
featureName: string;
|
|
338113
|
-
|
|
338089
|
+
iterationId?: string | null | undefined;
|
|
338090
|
+
iterationName?: string | null | undefined;
|
|
338114
338091
|
};
|
|
338115
338092
|
}>, z.ZodObject<{
|
|
338116
338093
|
type: z.ZodLiteral<"FeatureUnpublished">;
|
|
338117
338094
|
payload: z.ZodObject<{
|
|
338118
338095
|
featureId: z.ZodString;
|
|
338119
338096
|
featureName: z.ZodString;
|
|
338120
|
-
iterationId: z.ZodString
|
|
338121
|
-
iterationName: z.ZodString
|
|
338097
|
+
iterationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
338098
|
+
iterationName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
338122
338099
|
}, "strip", z.ZodTypeAny, {
|
|
338123
|
-
iterationId: string;
|
|
338124
338100
|
featureId: string;
|
|
338125
338101
|
featureName: string;
|
|
338126
|
-
|
|
338102
|
+
iterationId?: string | null | undefined;
|
|
338103
|
+
iterationName?: string | null | undefined;
|
|
338127
338104
|
}, {
|
|
338128
|
-
iterationId: string;
|
|
338129
338105
|
featureId: string;
|
|
338130
338106
|
featureName: string;
|
|
338131
|
-
|
|
338107
|
+
iterationId?: string | null | undefined;
|
|
338108
|
+
iterationName?: string | null | undefined;
|
|
338132
338109
|
}>;
|
|
338133
338110
|
}, "strip", z.ZodTypeAny, {
|
|
338134
338111
|
type: "FeatureUnpublished";
|
|
338135
338112
|
payload: {
|
|
338136
|
-
iterationId: string;
|
|
338137
338113
|
featureId: string;
|
|
338138
338114
|
featureName: string;
|
|
338139
|
-
|
|
338115
|
+
iterationId?: string | null | undefined;
|
|
338116
|
+
iterationName?: string | null | undefined;
|
|
338140
338117
|
};
|
|
338141
338118
|
}, {
|
|
338142
338119
|
type: "FeatureUnpublished";
|
|
338143
338120
|
payload: {
|
|
338144
|
-
iterationId: string;
|
|
338145
338121
|
featureId: string;
|
|
338146
338122
|
featureName: string;
|
|
338147
|
-
|
|
338123
|
+
iterationId?: string | null | undefined;
|
|
338124
|
+
iterationName?: string | null | undefined;
|
|
338148
338125
|
};
|
|
338149
338126
|
}>]>, z.ZodObject<{
|
|
338150
338127
|
id: z.ZodString;
|
|
@@ -338537,68 +338514,68 @@ declare const DTOTrailEventWithDetails: z.ZodIntersection<z.ZodIntersection<z.Zo
|
|
|
338537
338514
|
payload: z.ZodObject<{
|
|
338538
338515
|
featureId: z.ZodString;
|
|
338539
338516
|
featureName: z.ZodString;
|
|
338540
|
-
iterationId: z.ZodString
|
|
338541
|
-
iterationName: z.ZodString
|
|
338517
|
+
iterationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
338518
|
+
iterationName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
338542
338519
|
}, "strip", z.ZodTypeAny, {
|
|
338543
|
-
iterationId: string;
|
|
338544
338520
|
featureId: string;
|
|
338545
338521
|
featureName: string;
|
|
338546
|
-
|
|
338522
|
+
iterationId?: string | null | undefined;
|
|
338523
|
+
iterationName?: string | null | undefined;
|
|
338547
338524
|
}, {
|
|
338548
|
-
iterationId: string;
|
|
338549
338525
|
featureId: string;
|
|
338550
338526
|
featureName: string;
|
|
338551
|
-
|
|
338527
|
+
iterationId?: string | null | undefined;
|
|
338528
|
+
iterationName?: string | null | undefined;
|
|
338552
338529
|
}>;
|
|
338553
338530
|
}, "strip", z.ZodTypeAny, {
|
|
338554
338531
|
type: "FeaturePublished";
|
|
338555
338532
|
payload: {
|
|
338556
|
-
iterationId: string;
|
|
338557
338533
|
featureId: string;
|
|
338558
338534
|
featureName: string;
|
|
338559
|
-
|
|
338535
|
+
iterationId?: string | null | undefined;
|
|
338536
|
+
iterationName?: string | null | undefined;
|
|
338560
338537
|
};
|
|
338561
338538
|
}, {
|
|
338562
338539
|
type: "FeaturePublished";
|
|
338563
338540
|
payload: {
|
|
338564
|
-
iterationId: string;
|
|
338565
338541
|
featureId: string;
|
|
338566
338542
|
featureName: string;
|
|
338567
|
-
|
|
338543
|
+
iterationId?: string | null | undefined;
|
|
338544
|
+
iterationName?: string | null | undefined;
|
|
338568
338545
|
};
|
|
338569
338546
|
}>, z.ZodObject<{
|
|
338570
338547
|
type: z.ZodLiteral<"FeatureUnpublished">;
|
|
338571
338548
|
payload: z.ZodObject<{
|
|
338572
338549
|
featureId: z.ZodString;
|
|
338573
338550
|
featureName: z.ZodString;
|
|
338574
|
-
iterationId: z.ZodString
|
|
338575
|
-
iterationName: z.ZodString
|
|
338551
|
+
iterationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
338552
|
+
iterationName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
338576
338553
|
}, "strip", z.ZodTypeAny, {
|
|
338577
|
-
iterationId: string;
|
|
338578
338554
|
featureId: string;
|
|
338579
338555
|
featureName: string;
|
|
338580
|
-
|
|
338556
|
+
iterationId?: string | null | undefined;
|
|
338557
|
+
iterationName?: string | null | undefined;
|
|
338581
338558
|
}, {
|
|
338582
|
-
iterationId: string;
|
|
338583
338559
|
featureId: string;
|
|
338584
338560
|
featureName: string;
|
|
338585
|
-
|
|
338561
|
+
iterationId?: string | null | undefined;
|
|
338562
|
+
iterationName?: string | null | undefined;
|
|
338586
338563
|
}>;
|
|
338587
338564
|
}, "strip", z.ZodTypeAny, {
|
|
338588
338565
|
type: "FeatureUnpublished";
|
|
338589
338566
|
payload: {
|
|
338590
|
-
iterationId: string;
|
|
338591
338567
|
featureId: string;
|
|
338592
338568
|
featureName: string;
|
|
338593
|
-
|
|
338569
|
+
iterationId?: string | null | undefined;
|
|
338570
|
+
iterationName?: string | null | undefined;
|
|
338594
338571
|
};
|
|
338595
338572
|
}, {
|
|
338596
338573
|
type: "FeatureUnpublished";
|
|
338597
338574
|
payload: {
|
|
338598
|
-
iterationId: string;
|
|
338599
338575
|
featureId: string;
|
|
338600
338576
|
featureName: string;
|
|
338601
|
-
|
|
338577
|
+
iterationId?: string | null | undefined;
|
|
338578
|
+
iterationName?: string | null | undefined;
|
|
338602
338579
|
};
|
|
338603
338580
|
}>]>, z.ZodObject<{
|
|
338604
338581
|
id: z.ZodString;
|
|
@@ -339009,68 +338986,68 @@ declare const DTOTrailEventListResponse: z.ZodObject<{
|
|
|
339009
338986
|
payload: z.ZodObject<{
|
|
339010
338987
|
featureId: z.ZodString;
|
|
339011
338988
|
featureName: z.ZodString;
|
|
339012
|
-
iterationId: z.ZodString
|
|
339013
|
-
iterationName: z.ZodString
|
|
338989
|
+
iterationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
338990
|
+
iterationName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
339014
338991
|
}, "strip", z.ZodTypeAny, {
|
|
339015
|
-
iterationId: string;
|
|
339016
338992
|
featureId: string;
|
|
339017
338993
|
featureName: string;
|
|
339018
|
-
|
|
338994
|
+
iterationId?: string | null | undefined;
|
|
338995
|
+
iterationName?: string | null | undefined;
|
|
339019
338996
|
}, {
|
|
339020
|
-
iterationId: string;
|
|
339021
338997
|
featureId: string;
|
|
339022
338998
|
featureName: string;
|
|
339023
|
-
|
|
338999
|
+
iterationId?: string | null | undefined;
|
|
339000
|
+
iterationName?: string | null | undefined;
|
|
339024
339001
|
}>;
|
|
339025
339002
|
}, "strip", z.ZodTypeAny, {
|
|
339026
339003
|
type: "FeaturePublished";
|
|
339027
339004
|
payload: {
|
|
339028
|
-
iterationId: string;
|
|
339029
339005
|
featureId: string;
|
|
339030
339006
|
featureName: string;
|
|
339031
|
-
|
|
339007
|
+
iterationId?: string | null | undefined;
|
|
339008
|
+
iterationName?: string | null | undefined;
|
|
339032
339009
|
};
|
|
339033
339010
|
}, {
|
|
339034
339011
|
type: "FeaturePublished";
|
|
339035
339012
|
payload: {
|
|
339036
|
-
iterationId: string;
|
|
339037
339013
|
featureId: string;
|
|
339038
339014
|
featureName: string;
|
|
339039
|
-
|
|
339015
|
+
iterationId?: string | null | undefined;
|
|
339016
|
+
iterationName?: string | null | undefined;
|
|
339040
339017
|
};
|
|
339041
339018
|
}>, z.ZodObject<{
|
|
339042
339019
|
type: z.ZodLiteral<"FeatureUnpublished">;
|
|
339043
339020
|
payload: z.ZodObject<{
|
|
339044
339021
|
featureId: z.ZodString;
|
|
339045
339022
|
featureName: z.ZodString;
|
|
339046
|
-
iterationId: z.ZodString
|
|
339047
|
-
iterationName: z.ZodString
|
|
339023
|
+
iterationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
339024
|
+
iterationName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
339048
339025
|
}, "strip", z.ZodTypeAny, {
|
|
339049
|
-
iterationId: string;
|
|
339050
339026
|
featureId: string;
|
|
339051
339027
|
featureName: string;
|
|
339052
|
-
|
|
339028
|
+
iterationId?: string | null | undefined;
|
|
339029
|
+
iterationName?: string | null | undefined;
|
|
339053
339030
|
}, {
|
|
339054
|
-
iterationId: string;
|
|
339055
339031
|
featureId: string;
|
|
339056
339032
|
featureName: string;
|
|
339057
|
-
|
|
339033
|
+
iterationId?: string | null | undefined;
|
|
339034
|
+
iterationName?: string | null | undefined;
|
|
339058
339035
|
}>;
|
|
339059
339036
|
}, "strip", z.ZodTypeAny, {
|
|
339060
339037
|
type: "FeatureUnpublished";
|
|
339061
339038
|
payload: {
|
|
339062
|
-
iterationId: string;
|
|
339063
339039
|
featureId: string;
|
|
339064
339040
|
featureName: string;
|
|
339065
|
-
|
|
339041
|
+
iterationId?: string | null | undefined;
|
|
339042
|
+
iterationName?: string | null | undefined;
|
|
339066
339043
|
};
|
|
339067
339044
|
}, {
|
|
339068
339045
|
type: "FeatureUnpublished";
|
|
339069
339046
|
payload: {
|
|
339070
|
-
iterationId: string;
|
|
339071
339047
|
featureId: string;
|
|
339072
339048
|
featureName: string;
|
|
339073
|
-
|
|
339049
|
+
iterationId?: string | null | undefined;
|
|
339050
|
+
iterationName?: string | null | undefined;
|
|
339074
339051
|
};
|
|
339075
339052
|
}>]>, z.ZodObject<{
|
|
339076
339053
|
id: z.ZodString;
|
|
@@ -339194,18 +339171,18 @@ declare const DTOTrailEventListResponse: z.ZodObject<{
|
|
|
339194
339171
|
} | {
|
|
339195
339172
|
type: "FeaturePublished";
|
|
339196
339173
|
payload: {
|
|
339197
|
-
iterationId: string;
|
|
339198
339174
|
featureId: string;
|
|
339199
339175
|
featureName: string;
|
|
339200
|
-
|
|
339176
|
+
iterationId?: string | null | undefined;
|
|
339177
|
+
iterationName?: string | null | undefined;
|
|
339201
339178
|
};
|
|
339202
339179
|
} | {
|
|
339203
339180
|
type: "FeatureUnpublished";
|
|
339204
339181
|
payload: {
|
|
339205
|
-
iterationId: string;
|
|
339206
339182
|
featureId: string;
|
|
339207
339183
|
featureName: string;
|
|
339208
|
-
|
|
339184
|
+
iterationId?: string | null | undefined;
|
|
339185
|
+
iterationName?: string | null | undefined;
|
|
339209
339186
|
};
|
|
339210
339187
|
}) & {
|
|
339211
339188
|
id: string;
|
|
@@ -339311,18 +339288,18 @@ declare const DTOTrailEventListResponse: z.ZodObject<{
|
|
|
339311
339288
|
} | {
|
|
339312
339289
|
type: "FeaturePublished";
|
|
339313
339290
|
payload: {
|
|
339314
|
-
iterationId: string;
|
|
339315
339291
|
featureId: string;
|
|
339316
339292
|
featureName: string;
|
|
339317
|
-
|
|
339293
|
+
iterationId?: string | null | undefined;
|
|
339294
|
+
iterationName?: string | null | undefined;
|
|
339318
339295
|
};
|
|
339319
339296
|
} | {
|
|
339320
339297
|
type: "FeatureUnpublished";
|
|
339321
339298
|
payload: {
|
|
339322
|
-
iterationId: string;
|
|
339323
339299
|
featureId: string;
|
|
339324
339300
|
featureName: string;
|
|
339325
|
-
|
|
339301
|
+
iterationId?: string | null | undefined;
|
|
339302
|
+
iterationName?: string | null | undefined;
|
|
339326
339303
|
};
|
|
339327
339304
|
}) & {
|
|
339328
339305
|
id: string;
|
|
@@ -339709,68 +339686,68 @@ declare const DTOTrailEventCreate: z.ZodIntersection<z.ZodDiscriminatedUnion<"ty
|
|
|
339709
339686
|
payload: z.ZodObject<{
|
|
339710
339687
|
featureId: z.ZodString;
|
|
339711
339688
|
featureName: z.ZodString;
|
|
339712
|
-
iterationId: z.ZodString
|
|
339713
|
-
iterationName: z.ZodString
|
|
339689
|
+
iterationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
339690
|
+
iterationName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
339714
339691
|
}, "strip", z.ZodTypeAny, {
|
|
339715
|
-
iterationId: string;
|
|
339716
339692
|
featureId: string;
|
|
339717
339693
|
featureName: string;
|
|
339718
|
-
|
|
339694
|
+
iterationId?: string | null | undefined;
|
|
339695
|
+
iterationName?: string | null | undefined;
|
|
339719
339696
|
}, {
|
|
339720
|
-
iterationId: string;
|
|
339721
339697
|
featureId: string;
|
|
339722
339698
|
featureName: string;
|
|
339723
|
-
|
|
339699
|
+
iterationId?: string | null | undefined;
|
|
339700
|
+
iterationName?: string | null | undefined;
|
|
339724
339701
|
}>;
|
|
339725
339702
|
}, "strip", z.ZodTypeAny, {
|
|
339726
339703
|
type: "FeaturePublished";
|
|
339727
339704
|
payload: {
|
|
339728
|
-
iterationId: string;
|
|
339729
339705
|
featureId: string;
|
|
339730
339706
|
featureName: string;
|
|
339731
|
-
|
|
339707
|
+
iterationId?: string | null | undefined;
|
|
339708
|
+
iterationName?: string | null | undefined;
|
|
339732
339709
|
};
|
|
339733
339710
|
}, {
|
|
339734
339711
|
type: "FeaturePublished";
|
|
339735
339712
|
payload: {
|
|
339736
|
-
iterationId: string;
|
|
339737
339713
|
featureId: string;
|
|
339738
339714
|
featureName: string;
|
|
339739
|
-
|
|
339715
|
+
iterationId?: string | null | undefined;
|
|
339716
|
+
iterationName?: string | null | undefined;
|
|
339740
339717
|
};
|
|
339741
339718
|
}>, z.ZodObject<{
|
|
339742
339719
|
type: z.ZodLiteral<"FeatureUnpublished">;
|
|
339743
339720
|
payload: z.ZodObject<{
|
|
339744
339721
|
featureId: z.ZodString;
|
|
339745
339722
|
featureName: z.ZodString;
|
|
339746
|
-
iterationId: z.ZodString
|
|
339747
|
-
iterationName: z.ZodString
|
|
339723
|
+
iterationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
339724
|
+
iterationName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
339748
339725
|
}, "strip", z.ZodTypeAny, {
|
|
339749
|
-
iterationId: string;
|
|
339750
339726
|
featureId: string;
|
|
339751
339727
|
featureName: string;
|
|
339752
|
-
|
|
339728
|
+
iterationId?: string | null | undefined;
|
|
339729
|
+
iterationName?: string | null | undefined;
|
|
339753
339730
|
}, {
|
|
339754
|
-
iterationId: string;
|
|
339755
339731
|
featureId: string;
|
|
339756
339732
|
featureName: string;
|
|
339757
|
-
|
|
339733
|
+
iterationId?: string | null | undefined;
|
|
339734
|
+
iterationName?: string | null | undefined;
|
|
339758
339735
|
}>;
|
|
339759
339736
|
}, "strip", z.ZodTypeAny, {
|
|
339760
339737
|
type: "FeatureUnpublished";
|
|
339761
339738
|
payload: {
|
|
339762
|
-
iterationId: string;
|
|
339763
339739
|
featureId: string;
|
|
339764
339740
|
featureName: string;
|
|
339765
|
-
|
|
339741
|
+
iterationId?: string | null | undefined;
|
|
339742
|
+
iterationName?: string | null | undefined;
|
|
339766
339743
|
};
|
|
339767
339744
|
}, {
|
|
339768
339745
|
type: "FeatureUnpublished";
|
|
339769
339746
|
payload: {
|
|
339770
|
-
iterationId: string;
|
|
339771
339747
|
featureId: string;
|
|
339772
339748
|
featureName: string;
|
|
339773
|
-
|
|
339749
|
+
iterationId?: string | null | undefined;
|
|
339750
|
+
iterationName?: string | null | undefined;
|
|
339774
339751
|
};
|
|
339775
339752
|
}>]>, z.ZodObject<Omit<{
|
|
339776
339753
|
id: z.ZodString;
|
|
@@ -346508,6 +346485,32 @@ declare const DTOSubscription: z$1.ZodObject<{
|
|
|
346508
346485
|
errorReason: string;
|
|
346509
346486
|
max?: number | undefined;
|
|
346510
346487
|
}>;
|
|
346488
|
+
forgeFeatureWorkspacePublishing: z$1.ZodObject<{
|
|
346489
|
+
enabled: z$1.ZodBoolean;
|
|
346490
|
+
errorMessage: z$1.ZodString;
|
|
346491
|
+
errorReason: z$1.ZodString;
|
|
346492
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
346493
|
+
errorMessage: string;
|
|
346494
|
+
errorReason: string;
|
|
346495
|
+
enabled: boolean;
|
|
346496
|
+
}, {
|
|
346497
|
+
errorMessage: string;
|
|
346498
|
+
errorReason: string;
|
|
346499
|
+
enabled: boolean;
|
|
346500
|
+
}>;
|
|
346501
|
+
forgeFeatureHideSupernovaUI: z$1.ZodObject<{
|
|
346502
|
+
enabled: z$1.ZodBoolean;
|
|
346503
|
+
errorMessage: z$1.ZodString;
|
|
346504
|
+
errorReason: z$1.ZodString;
|
|
346505
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
346506
|
+
errorMessage: string;
|
|
346507
|
+
errorReason: string;
|
|
346508
|
+
enabled: boolean;
|
|
346509
|
+
}, {
|
|
346510
|
+
errorMessage: string;
|
|
346511
|
+
errorReason: string;
|
|
346512
|
+
enabled: boolean;
|
|
346513
|
+
}>;
|
|
346511
346514
|
documentationPages: z$1.ZodObject<{
|
|
346512
346515
|
max: z$1.ZodOptional<z$1.ZodNumber>;
|
|
346513
346516
|
errorMessage: z$1.ZodString;
|
|
@@ -346692,6 +346695,16 @@ declare const DTOSubscription: z$1.ZodObject<{
|
|
|
346692
346695
|
errorReason: string;
|
|
346693
346696
|
max?: number | undefined;
|
|
346694
346697
|
};
|
|
346698
|
+
forgeFeatureWorkspacePublishing: {
|
|
346699
|
+
errorMessage: string;
|
|
346700
|
+
errorReason: string;
|
|
346701
|
+
enabled: boolean;
|
|
346702
|
+
};
|
|
346703
|
+
forgeFeatureHideSupernovaUI: {
|
|
346704
|
+
errorMessage: string;
|
|
346705
|
+
errorReason: string;
|
|
346706
|
+
enabled: boolean;
|
|
346707
|
+
};
|
|
346695
346708
|
documentationPages: {
|
|
346696
346709
|
errorMessage: string;
|
|
346697
346710
|
errorReason: string;
|
|
@@ -346860,6 +346873,16 @@ declare const DTOSubscription: z$1.ZodObject<{
|
|
|
346860
346873
|
errorReason: string;
|
|
346861
346874
|
max?: number | undefined;
|
|
346862
346875
|
};
|
|
346876
|
+
forgeFeatureWorkspacePublishing: {
|
|
346877
|
+
errorMessage: string;
|
|
346878
|
+
errorReason: string;
|
|
346879
|
+
enabled: boolean;
|
|
346880
|
+
};
|
|
346881
|
+
forgeFeatureHideSupernovaUI: {
|
|
346882
|
+
errorMessage: string;
|
|
346883
|
+
errorReason: string;
|
|
346884
|
+
enabled: boolean;
|
|
346885
|
+
};
|
|
346863
346886
|
documentationPages: {
|
|
346864
346887
|
errorMessage: string;
|
|
346865
346888
|
errorReason: string;
|
|
@@ -347122,6 +347145,16 @@ declare const DTOSubscription: z$1.ZodObject<{
|
|
|
347122
347145
|
errorReason: string;
|
|
347123
347146
|
max?: number | undefined;
|
|
347124
347147
|
};
|
|
347148
|
+
forgeFeatureWorkspacePublishing: {
|
|
347149
|
+
errorMessage: string;
|
|
347150
|
+
errorReason: string;
|
|
347151
|
+
enabled: boolean;
|
|
347152
|
+
};
|
|
347153
|
+
forgeFeatureHideSupernovaUI: {
|
|
347154
|
+
errorMessage: string;
|
|
347155
|
+
errorReason: string;
|
|
347156
|
+
enabled: boolean;
|
|
347157
|
+
};
|
|
347125
347158
|
documentationPages: {
|
|
347126
347159
|
errorMessage: string;
|
|
347127
347160
|
errorReason: string;
|
|
@@ -347334,6 +347367,16 @@ declare const DTOSubscription: z$1.ZodObject<{
|
|
|
347334
347367
|
errorReason: string;
|
|
347335
347368
|
max?: number | undefined;
|
|
347336
347369
|
};
|
|
347370
|
+
forgeFeatureWorkspacePublishing: {
|
|
347371
|
+
errorMessage: string;
|
|
347372
|
+
errorReason: string;
|
|
347373
|
+
enabled: boolean;
|
|
347374
|
+
};
|
|
347375
|
+
forgeFeatureHideSupernovaUI: {
|
|
347376
|
+
errorMessage: string;
|
|
347377
|
+
errorReason: string;
|
|
347378
|
+
enabled: boolean;
|
|
347379
|
+
};
|
|
347337
347380
|
documentationPages: {
|
|
347338
347381
|
errorMessage: string;
|
|
347339
347382
|
errorReason: string;
|
|
@@ -347784,6 +347827,32 @@ declare const DTOSubscriptionResponse: z$1.ZodObject<{
|
|
|
347784
347827
|
errorReason: string;
|
|
347785
347828
|
max?: number | undefined;
|
|
347786
347829
|
}>;
|
|
347830
|
+
forgeFeatureWorkspacePublishing: z$1.ZodObject<{
|
|
347831
|
+
enabled: z$1.ZodBoolean;
|
|
347832
|
+
errorMessage: z$1.ZodString;
|
|
347833
|
+
errorReason: z$1.ZodString;
|
|
347834
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
347835
|
+
errorMessage: string;
|
|
347836
|
+
errorReason: string;
|
|
347837
|
+
enabled: boolean;
|
|
347838
|
+
}, {
|
|
347839
|
+
errorMessage: string;
|
|
347840
|
+
errorReason: string;
|
|
347841
|
+
enabled: boolean;
|
|
347842
|
+
}>;
|
|
347843
|
+
forgeFeatureHideSupernovaUI: z$1.ZodObject<{
|
|
347844
|
+
enabled: z$1.ZodBoolean;
|
|
347845
|
+
errorMessage: z$1.ZodString;
|
|
347846
|
+
errorReason: z$1.ZodString;
|
|
347847
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
347848
|
+
errorMessage: string;
|
|
347849
|
+
errorReason: string;
|
|
347850
|
+
enabled: boolean;
|
|
347851
|
+
}, {
|
|
347852
|
+
errorMessage: string;
|
|
347853
|
+
errorReason: string;
|
|
347854
|
+
enabled: boolean;
|
|
347855
|
+
}>;
|
|
347787
347856
|
documentationPages: z$1.ZodObject<{
|
|
347788
347857
|
max: z$1.ZodOptional<z$1.ZodNumber>;
|
|
347789
347858
|
errorMessage: z$1.ZodString;
|
|
@@ -347968,6 +348037,16 @@ declare const DTOSubscriptionResponse: z$1.ZodObject<{
|
|
|
347968
348037
|
errorReason: string;
|
|
347969
348038
|
max?: number | undefined;
|
|
347970
348039
|
};
|
|
348040
|
+
forgeFeatureWorkspacePublishing: {
|
|
348041
|
+
errorMessage: string;
|
|
348042
|
+
errorReason: string;
|
|
348043
|
+
enabled: boolean;
|
|
348044
|
+
};
|
|
348045
|
+
forgeFeatureHideSupernovaUI: {
|
|
348046
|
+
errorMessage: string;
|
|
348047
|
+
errorReason: string;
|
|
348048
|
+
enabled: boolean;
|
|
348049
|
+
};
|
|
347971
348050
|
documentationPages: {
|
|
347972
348051
|
errorMessage: string;
|
|
347973
348052
|
errorReason: string;
|
|
@@ -348136,6 +348215,16 @@ declare const DTOSubscriptionResponse: z$1.ZodObject<{
|
|
|
348136
348215
|
errorReason: string;
|
|
348137
348216
|
max?: number | undefined;
|
|
348138
348217
|
};
|
|
348218
|
+
forgeFeatureWorkspacePublishing: {
|
|
348219
|
+
errorMessage: string;
|
|
348220
|
+
errorReason: string;
|
|
348221
|
+
enabled: boolean;
|
|
348222
|
+
};
|
|
348223
|
+
forgeFeatureHideSupernovaUI: {
|
|
348224
|
+
errorMessage: string;
|
|
348225
|
+
errorReason: string;
|
|
348226
|
+
enabled: boolean;
|
|
348227
|
+
};
|
|
348139
348228
|
documentationPages: {
|
|
348140
348229
|
errorMessage: string;
|
|
348141
348230
|
errorReason: string;
|
|
@@ -348398,6 +348487,16 @@ declare const DTOSubscriptionResponse: z$1.ZodObject<{
|
|
|
348398
348487
|
errorReason: string;
|
|
348399
348488
|
max?: number | undefined;
|
|
348400
348489
|
};
|
|
348490
|
+
forgeFeatureWorkspacePublishing: {
|
|
348491
|
+
errorMessage: string;
|
|
348492
|
+
errorReason: string;
|
|
348493
|
+
enabled: boolean;
|
|
348494
|
+
};
|
|
348495
|
+
forgeFeatureHideSupernovaUI: {
|
|
348496
|
+
errorMessage: string;
|
|
348497
|
+
errorReason: string;
|
|
348498
|
+
enabled: boolean;
|
|
348499
|
+
};
|
|
348401
348500
|
documentationPages: {
|
|
348402
348501
|
errorMessage: string;
|
|
348403
348502
|
errorReason: string;
|
|
@@ -348610,6 +348709,16 @@ declare const DTOSubscriptionResponse: z$1.ZodObject<{
|
|
|
348610
348709
|
errorReason: string;
|
|
348611
348710
|
max?: number | undefined;
|
|
348612
348711
|
};
|
|
348712
|
+
forgeFeatureWorkspacePublishing: {
|
|
348713
|
+
errorMessage: string;
|
|
348714
|
+
errorReason: string;
|
|
348715
|
+
enabled: boolean;
|
|
348716
|
+
};
|
|
348717
|
+
forgeFeatureHideSupernovaUI: {
|
|
348718
|
+
errorMessage: string;
|
|
348719
|
+
errorReason: string;
|
|
348720
|
+
enabled: boolean;
|
|
348721
|
+
};
|
|
348613
348722
|
documentationPages: {
|
|
348614
348723
|
errorMessage: string;
|
|
348615
348724
|
errorReason: string;
|
|
@@ -348993,6 +349102,16 @@ declare const DTOSubscriptionResponse: z$1.ZodObject<{
|
|
|
348993
349102
|
errorReason: string;
|
|
348994
349103
|
max?: number | undefined;
|
|
348995
349104
|
};
|
|
349105
|
+
forgeFeatureWorkspacePublishing: {
|
|
349106
|
+
errorMessage: string;
|
|
349107
|
+
errorReason: string;
|
|
349108
|
+
enabled: boolean;
|
|
349109
|
+
};
|
|
349110
|
+
forgeFeatureHideSupernovaUI: {
|
|
349111
|
+
errorMessage: string;
|
|
349112
|
+
errorReason: string;
|
|
349113
|
+
enabled: boolean;
|
|
349114
|
+
};
|
|
348996
349115
|
documentationPages: {
|
|
348997
349116
|
errorMessage: string;
|
|
348998
349117
|
errorReason: string;
|
|
@@ -349244,6 +349363,16 @@ declare const DTOSubscriptionResponse: z$1.ZodObject<{
|
|
|
349244
349363
|
errorReason: string;
|
|
349245
349364
|
max?: number | undefined;
|
|
349246
349365
|
};
|
|
349366
|
+
forgeFeatureWorkspacePublishing: {
|
|
349367
|
+
errorMessage: string;
|
|
349368
|
+
errorReason: string;
|
|
349369
|
+
enabled: boolean;
|
|
349370
|
+
};
|
|
349371
|
+
forgeFeatureHideSupernovaUI: {
|
|
349372
|
+
errorMessage: string;
|
|
349373
|
+
errorReason: string;
|
|
349374
|
+
enabled: boolean;
|
|
349375
|
+
};
|
|
349247
349376
|
documentationPages: {
|
|
349248
349377
|
errorMessage: string;
|
|
349249
349378
|
errorReason: string;
|
|
@@ -362414,7 +362543,6 @@ declare class ForgeProjectFeaturesEndpoint {
|
|
|
362414
362543
|
lastPublishedAt: Date;
|
|
362415
362544
|
hideSupernovaUI: boolean;
|
|
362416
362545
|
userId?: string | undefined;
|
|
362417
|
-
userName?: string | undefined;
|
|
362418
362546
|
} | undefined;
|
|
362419
362547
|
}[];
|
|
362420
362548
|
}>;
|
|
@@ -362455,7 +362583,6 @@ declare class ForgeProjectFeaturesEndpoint {
|
|
|
362455
362583
|
lastPublishedAt: Date;
|
|
362456
362584
|
hideSupernovaUI: boolean;
|
|
362457
362585
|
userId?: string | undefined;
|
|
362458
|
-
userName?: string | undefined;
|
|
362459
362586
|
} | undefined;
|
|
362460
362587
|
};
|
|
362461
362588
|
}>;
|
|
@@ -362496,7 +362623,6 @@ declare class ForgeProjectFeaturesEndpoint {
|
|
|
362496
362623
|
lastPublishedAt: Date;
|
|
362497
362624
|
hideSupernovaUI: boolean;
|
|
362498
362625
|
userId?: string | undefined;
|
|
362499
|
-
userName?: string | undefined;
|
|
362500
362626
|
} | undefined;
|
|
362501
362627
|
};
|
|
362502
362628
|
}>;
|
|
@@ -372313,6 +372439,16 @@ declare class WorkspaceSubscriptionEndpoint {
|
|
|
372313
372439
|
errorReason: string;
|
|
372314
372440
|
max?: number | undefined;
|
|
372315
372441
|
};
|
|
372442
|
+
forgeFeatureWorkspacePublishing: {
|
|
372443
|
+
errorMessage: string;
|
|
372444
|
+
errorReason: string;
|
|
372445
|
+
enabled: boolean;
|
|
372446
|
+
};
|
|
372447
|
+
forgeFeatureHideSupernovaUI: {
|
|
372448
|
+
errorMessage: string;
|
|
372449
|
+
errorReason: string;
|
|
372450
|
+
enabled: boolean;
|
|
372451
|
+
};
|
|
372316
372452
|
documentationPages: {
|
|
372317
372453
|
errorMessage: string;
|
|
372318
372454
|
errorReason: string;
|
|
@@ -375815,7 +375951,6 @@ declare function applyProjectActionsLocally(input: Input): {
|
|
|
375815
375951
|
lastPublishedAt: Date;
|
|
375816
375952
|
hideSupernovaUI: boolean;
|
|
375817
375953
|
userId?: string | undefined;
|
|
375818
|
-
userName?: string | undefined;
|
|
375819
375954
|
} | undefined;
|
|
375820
375955
|
}[];
|
|
375821
375956
|
artifactSections: {
|
|
@@ -375919,7 +376054,6 @@ declare class LocalProjectActionExecutor {
|
|
|
375919
376054
|
lastPublishedAt: Date;
|
|
375920
376055
|
hideSupernovaUI: boolean;
|
|
375921
376056
|
userId?: string | undefined;
|
|
375922
|
-
userName?: string | undefined;
|
|
375923
376057
|
} | undefined;
|
|
375924
376058
|
}[];
|
|
375925
376059
|
artifactSections: {
|