@supernova-studio/client 1.40.9 → 1.40.10
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 +37 -14
- package/dist/index.d.ts +37 -14
- package/dist/index.js +5 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -68719,7 +68719,7 @@ declare const DTOFeatureArtifact: z__default.ZodObject<{
|
|
|
68719
68719
|
/**
|
|
68720
68720
|
* Id of the project file that holds content of this artifact
|
|
68721
68721
|
*/
|
|
68722
|
-
fileId: z__default.ZodString
|
|
68722
|
+
fileId: z__default.ZodOptional<z__default.ZodString>;
|
|
68723
68723
|
/**
|
|
68724
68724
|
* Id of the Iteration that this artifact belongs to
|
|
68725
68725
|
*/
|
|
@@ -68728,6 +68728,10 @@ declare const DTOFeatureArtifact: z__default.ZodObject<{
|
|
|
68728
68728
|
* URL of the feature artifact's contents
|
|
68729
68729
|
*/
|
|
68730
68730
|
url: z__default.ZodString;
|
|
68731
|
+
/**
|
|
68732
|
+
* Relative file path of the artifact (without domain/base URL)
|
|
68733
|
+
*/
|
|
68734
|
+
filePath: z__default.ZodOptional<z__default.ZodString>;
|
|
68731
68735
|
createdAt: z__default.ZodString;
|
|
68732
68736
|
updatedAt: z__default.ZodString;
|
|
68733
68737
|
}, "strip", z__default.ZodTypeAny, {
|
|
@@ -68735,17 +68739,19 @@ declare const DTOFeatureArtifact: z__default.ZodObject<{
|
|
|
68735
68739
|
createdAt: string;
|
|
68736
68740
|
url: string;
|
|
68737
68741
|
updatedAt: string;
|
|
68738
|
-
fileId: string;
|
|
68739
68742
|
key: string;
|
|
68743
|
+
fileId?: string | undefined;
|
|
68740
68744
|
iterationId?: string | undefined;
|
|
68745
|
+
filePath?: string | undefined;
|
|
68741
68746
|
}, {
|
|
68742
68747
|
id: string;
|
|
68743
68748
|
createdAt: string;
|
|
68744
68749
|
url: string;
|
|
68745
68750
|
updatedAt: string;
|
|
68746
|
-
fileId: string;
|
|
68747
68751
|
key: string;
|
|
68752
|
+
fileId?: string | undefined;
|
|
68748
68753
|
iterationId?: string | undefined;
|
|
68754
|
+
filePath?: string | undefined;
|
|
68749
68755
|
}>;
|
|
68750
68756
|
type DTOFeatureArtifact = z__default.infer<typeof DTOFeatureArtifact>;
|
|
68751
68757
|
declare const DTOFeatureIteration: z__default.ZodObject<{
|
|
@@ -69658,7 +69664,7 @@ declare const DTOFeatureArtifactResponse: z__default.ZodObject<{
|
|
|
69658
69664
|
/**
|
|
69659
69665
|
* Id of the project file that holds content of this artifact
|
|
69660
69666
|
*/
|
|
69661
|
-
fileId: z__default.ZodString
|
|
69667
|
+
fileId: z__default.ZodOptional<z__default.ZodString>;
|
|
69662
69668
|
/**
|
|
69663
69669
|
* Id of the Iteration that this artifact belongs to
|
|
69664
69670
|
*/
|
|
@@ -69667,6 +69673,10 @@ declare const DTOFeatureArtifactResponse: z__default.ZodObject<{
|
|
|
69667
69673
|
* URL of the feature artifact's contents
|
|
69668
69674
|
*/
|
|
69669
69675
|
url: z__default.ZodString;
|
|
69676
|
+
/**
|
|
69677
|
+
* Relative file path of the artifact (without domain/base URL)
|
|
69678
|
+
*/
|
|
69679
|
+
filePath: z__default.ZodOptional<z__default.ZodString>;
|
|
69670
69680
|
createdAt: z__default.ZodString;
|
|
69671
69681
|
updatedAt: z__default.ZodString;
|
|
69672
69682
|
}, "strip", z__default.ZodTypeAny, {
|
|
@@ -69674,17 +69684,19 @@ declare const DTOFeatureArtifactResponse: z__default.ZodObject<{
|
|
|
69674
69684
|
createdAt: string;
|
|
69675
69685
|
url: string;
|
|
69676
69686
|
updatedAt: string;
|
|
69677
|
-
fileId: string;
|
|
69678
69687
|
key: string;
|
|
69688
|
+
fileId?: string | undefined;
|
|
69679
69689
|
iterationId?: string | undefined;
|
|
69690
|
+
filePath?: string | undefined;
|
|
69680
69691
|
}, {
|
|
69681
69692
|
id: string;
|
|
69682
69693
|
createdAt: string;
|
|
69683
69694
|
url: string;
|
|
69684
69695
|
updatedAt: string;
|
|
69685
|
-
fileId: string;
|
|
69686
69696
|
key: string;
|
|
69697
|
+
fileId?: string | undefined;
|
|
69687
69698
|
iterationId?: string | undefined;
|
|
69699
|
+
filePath?: string | undefined;
|
|
69688
69700
|
}>;
|
|
69689
69701
|
}, "strip", z__default.ZodTypeAny, {
|
|
69690
69702
|
artifact: {
|
|
@@ -69692,9 +69704,10 @@ declare const DTOFeatureArtifactResponse: z__default.ZodObject<{
|
|
|
69692
69704
|
createdAt: string;
|
|
69693
69705
|
url: string;
|
|
69694
69706
|
updatedAt: string;
|
|
69695
|
-
fileId: string;
|
|
69696
69707
|
key: string;
|
|
69708
|
+
fileId?: string | undefined;
|
|
69697
69709
|
iterationId?: string | undefined;
|
|
69710
|
+
filePath?: string | undefined;
|
|
69698
69711
|
};
|
|
69699
69712
|
}, {
|
|
69700
69713
|
artifact: {
|
|
@@ -69702,9 +69715,10 @@ declare const DTOFeatureArtifactResponse: z__default.ZodObject<{
|
|
|
69702
69715
|
createdAt: string;
|
|
69703
69716
|
url: string;
|
|
69704
69717
|
updatedAt: string;
|
|
69705
|
-
fileId: string;
|
|
69706
69718
|
key: string;
|
|
69719
|
+
fileId?: string | undefined;
|
|
69707
69720
|
iterationId?: string | undefined;
|
|
69721
|
+
filePath?: string | undefined;
|
|
69708
69722
|
};
|
|
69709
69723
|
}>;
|
|
69710
69724
|
type DTOFeatureArtifactResponse = z__default.infer<typeof DTOFeatureArtifactResponse>;
|
|
@@ -69718,7 +69732,7 @@ declare const DTOFeatureArtifactListResponse: z__default.ZodObject<{
|
|
|
69718
69732
|
/**
|
|
69719
69733
|
* Id of the project file that holds content of this artifact
|
|
69720
69734
|
*/
|
|
69721
|
-
fileId: z__default.ZodString
|
|
69735
|
+
fileId: z__default.ZodOptional<z__default.ZodString>;
|
|
69722
69736
|
/**
|
|
69723
69737
|
* Id of the Iteration that this artifact belongs to
|
|
69724
69738
|
*/
|
|
@@ -69727,6 +69741,10 @@ declare const DTOFeatureArtifactListResponse: z__default.ZodObject<{
|
|
|
69727
69741
|
* URL of the feature artifact's contents
|
|
69728
69742
|
*/
|
|
69729
69743
|
url: z__default.ZodString;
|
|
69744
|
+
/**
|
|
69745
|
+
* Relative file path of the artifact (without domain/base URL)
|
|
69746
|
+
*/
|
|
69747
|
+
filePath: z__default.ZodOptional<z__default.ZodString>;
|
|
69730
69748
|
createdAt: z__default.ZodString;
|
|
69731
69749
|
updatedAt: z__default.ZodString;
|
|
69732
69750
|
}, "strip", z__default.ZodTypeAny, {
|
|
@@ -69734,17 +69752,19 @@ declare const DTOFeatureArtifactListResponse: z__default.ZodObject<{
|
|
|
69734
69752
|
createdAt: string;
|
|
69735
69753
|
url: string;
|
|
69736
69754
|
updatedAt: string;
|
|
69737
|
-
fileId: string;
|
|
69738
69755
|
key: string;
|
|
69756
|
+
fileId?: string | undefined;
|
|
69739
69757
|
iterationId?: string | undefined;
|
|
69758
|
+
filePath?: string | undefined;
|
|
69740
69759
|
}, {
|
|
69741
69760
|
id: string;
|
|
69742
69761
|
createdAt: string;
|
|
69743
69762
|
url: string;
|
|
69744
69763
|
updatedAt: string;
|
|
69745
|
-
fileId: string;
|
|
69746
69764
|
key: string;
|
|
69765
|
+
fileId?: string | undefined;
|
|
69747
69766
|
iterationId?: string | undefined;
|
|
69767
|
+
filePath?: string | undefined;
|
|
69748
69768
|
}>, "many">;
|
|
69749
69769
|
}, "strip", z__default.ZodTypeAny, {
|
|
69750
69770
|
artifacts: {
|
|
@@ -69752,9 +69772,10 @@ declare const DTOFeatureArtifactListResponse: z__default.ZodObject<{
|
|
|
69752
69772
|
createdAt: string;
|
|
69753
69773
|
url: string;
|
|
69754
69774
|
updatedAt: string;
|
|
69755
|
-
fileId: string;
|
|
69756
69775
|
key: string;
|
|
69776
|
+
fileId?: string | undefined;
|
|
69757
69777
|
iterationId?: string | undefined;
|
|
69778
|
+
filePath?: string | undefined;
|
|
69758
69779
|
}[];
|
|
69759
69780
|
}, {
|
|
69760
69781
|
artifacts: {
|
|
@@ -69762,9 +69783,10 @@ declare const DTOFeatureArtifactListResponse: z__default.ZodObject<{
|
|
|
69762
69783
|
createdAt: string;
|
|
69763
69784
|
url: string;
|
|
69764
69785
|
updatedAt: string;
|
|
69765
|
-
fileId: string;
|
|
69766
69786
|
key: string;
|
|
69787
|
+
fileId?: string | undefined;
|
|
69767
69788
|
iterationId?: string | undefined;
|
|
69789
|
+
filePath?: string | undefined;
|
|
69768
69790
|
}[];
|
|
69769
69791
|
}>;
|
|
69770
69792
|
type DTOFeatureArtifactListResponse = z__default.infer<typeof DTOFeatureArtifactListResponse>;
|
|
@@ -255258,9 +255280,10 @@ declare class ForgeFeatureArtifactsEndpoint {
|
|
|
255258
255280
|
createdAt: string;
|
|
255259
255281
|
url: string;
|
|
255260
255282
|
updatedAt: string;
|
|
255261
|
-
fileId: string;
|
|
255262
255283
|
key: string;
|
|
255284
|
+
fileId?: string | undefined;
|
|
255263
255285
|
iterationId?: string | undefined;
|
|
255286
|
+
filePath?: string | undefined;
|
|
255264
255287
|
}[];
|
|
255265
255288
|
}>;
|
|
255266
255289
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -68719,7 +68719,7 @@ declare const DTOFeatureArtifact: z__default.ZodObject<{
|
|
|
68719
68719
|
/**
|
|
68720
68720
|
* Id of the project file that holds content of this artifact
|
|
68721
68721
|
*/
|
|
68722
|
-
fileId: z__default.ZodString
|
|
68722
|
+
fileId: z__default.ZodOptional<z__default.ZodString>;
|
|
68723
68723
|
/**
|
|
68724
68724
|
* Id of the Iteration that this artifact belongs to
|
|
68725
68725
|
*/
|
|
@@ -68728,6 +68728,10 @@ declare const DTOFeatureArtifact: z__default.ZodObject<{
|
|
|
68728
68728
|
* URL of the feature artifact's contents
|
|
68729
68729
|
*/
|
|
68730
68730
|
url: z__default.ZodString;
|
|
68731
|
+
/**
|
|
68732
|
+
* Relative file path of the artifact (without domain/base URL)
|
|
68733
|
+
*/
|
|
68734
|
+
filePath: z__default.ZodOptional<z__default.ZodString>;
|
|
68731
68735
|
createdAt: z__default.ZodString;
|
|
68732
68736
|
updatedAt: z__default.ZodString;
|
|
68733
68737
|
}, "strip", z__default.ZodTypeAny, {
|
|
@@ -68735,17 +68739,19 @@ declare const DTOFeatureArtifact: z__default.ZodObject<{
|
|
|
68735
68739
|
createdAt: string;
|
|
68736
68740
|
url: string;
|
|
68737
68741
|
updatedAt: string;
|
|
68738
|
-
fileId: string;
|
|
68739
68742
|
key: string;
|
|
68743
|
+
fileId?: string | undefined;
|
|
68740
68744
|
iterationId?: string | undefined;
|
|
68745
|
+
filePath?: string | undefined;
|
|
68741
68746
|
}, {
|
|
68742
68747
|
id: string;
|
|
68743
68748
|
createdAt: string;
|
|
68744
68749
|
url: string;
|
|
68745
68750
|
updatedAt: string;
|
|
68746
|
-
fileId: string;
|
|
68747
68751
|
key: string;
|
|
68752
|
+
fileId?: string | undefined;
|
|
68748
68753
|
iterationId?: string | undefined;
|
|
68754
|
+
filePath?: string | undefined;
|
|
68749
68755
|
}>;
|
|
68750
68756
|
type DTOFeatureArtifact = z__default.infer<typeof DTOFeatureArtifact>;
|
|
68751
68757
|
declare const DTOFeatureIteration: z__default.ZodObject<{
|
|
@@ -69658,7 +69664,7 @@ declare const DTOFeatureArtifactResponse: z__default.ZodObject<{
|
|
|
69658
69664
|
/**
|
|
69659
69665
|
* Id of the project file that holds content of this artifact
|
|
69660
69666
|
*/
|
|
69661
|
-
fileId: z__default.ZodString
|
|
69667
|
+
fileId: z__default.ZodOptional<z__default.ZodString>;
|
|
69662
69668
|
/**
|
|
69663
69669
|
* Id of the Iteration that this artifact belongs to
|
|
69664
69670
|
*/
|
|
@@ -69667,6 +69673,10 @@ declare const DTOFeatureArtifactResponse: z__default.ZodObject<{
|
|
|
69667
69673
|
* URL of the feature artifact's contents
|
|
69668
69674
|
*/
|
|
69669
69675
|
url: z__default.ZodString;
|
|
69676
|
+
/**
|
|
69677
|
+
* Relative file path of the artifact (without domain/base URL)
|
|
69678
|
+
*/
|
|
69679
|
+
filePath: z__default.ZodOptional<z__default.ZodString>;
|
|
69670
69680
|
createdAt: z__default.ZodString;
|
|
69671
69681
|
updatedAt: z__default.ZodString;
|
|
69672
69682
|
}, "strip", z__default.ZodTypeAny, {
|
|
@@ -69674,17 +69684,19 @@ declare const DTOFeatureArtifactResponse: z__default.ZodObject<{
|
|
|
69674
69684
|
createdAt: string;
|
|
69675
69685
|
url: string;
|
|
69676
69686
|
updatedAt: string;
|
|
69677
|
-
fileId: string;
|
|
69678
69687
|
key: string;
|
|
69688
|
+
fileId?: string | undefined;
|
|
69679
69689
|
iterationId?: string | undefined;
|
|
69690
|
+
filePath?: string | undefined;
|
|
69680
69691
|
}, {
|
|
69681
69692
|
id: string;
|
|
69682
69693
|
createdAt: string;
|
|
69683
69694
|
url: string;
|
|
69684
69695
|
updatedAt: string;
|
|
69685
|
-
fileId: string;
|
|
69686
69696
|
key: string;
|
|
69697
|
+
fileId?: string | undefined;
|
|
69687
69698
|
iterationId?: string | undefined;
|
|
69699
|
+
filePath?: string | undefined;
|
|
69688
69700
|
}>;
|
|
69689
69701
|
}, "strip", z__default.ZodTypeAny, {
|
|
69690
69702
|
artifact: {
|
|
@@ -69692,9 +69704,10 @@ declare const DTOFeatureArtifactResponse: z__default.ZodObject<{
|
|
|
69692
69704
|
createdAt: string;
|
|
69693
69705
|
url: string;
|
|
69694
69706
|
updatedAt: string;
|
|
69695
|
-
fileId: string;
|
|
69696
69707
|
key: string;
|
|
69708
|
+
fileId?: string | undefined;
|
|
69697
69709
|
iterationId?: string | undefined;
|
|
69710
|
+
filePath?: string | undefined;
|
|
69698
69711
|
};
|
|
69699
69712
|
}, {
|
|
69700
69713
|
artifact: {
|
|
@@ -69702,9 +69715,10 @@ declare const DTOFeatureArtifactResponse: z__default.ZodObject<{
|
|
|
69702
69715
|
createdAt: string;
|
|
69703
69716
|
url: string;
|
|
69704
69717
|
updatedAt: string;
|
|
69705
|
-
fileId: string;
|
|
69706
69718
|
key: string;
|
|
69719
|
+
fileId?: string | undefined;
|
|
69707
69720
|
iterationId?: string | undefined;
|
|
69721
|
+
filePath?: string | undefined;
|
|
69708
69722
|
};
|
|
69709
69723
|
}>;
|
|
69710
69724
|
type DTOFeatureArtifactResponse = z__default.infer<typeof DTOFeatureArtifactResponse>;
|
|
@@ -69718,7 +69732,7 @@ declare const DTOFeatureArtifactListResponse: z__default.ZodObject<{
|
|
|
69718
69732
|
/**
|
|
69719
69733
|
* Id of the project file that holds content of this artifact
|
|
69720
69734
|
*/
|
|
69721
|
-
fileId: z__default.ZodString
|
|
69735
|
+
fileId: z__default.ZodOptional<z__default.ZodString>;
|
|
69722
69736
|
/**
|
|
69723
69737
|
* Id of the Iteration that this artifact belongs to
|
|
69724
69738
|
*/
|
|
@@ -69727,6 +69741,10 @@ declare const DTOFeatureArtifactListResponse: z__default.ZodObject<{
|
|
|
69727
69741
|
* URL of the feature artifact's contents
|
|
69728
69742
|
*/
|
|
69729
69743
|
url: z__default.ZodString;
|
|
69744
|
+
/**
|
|
69745
|
+
* Relative file path of the artifact (without domain/base URL)
|
|
69746
|
+
*/
|
|
69747
|
+
filePath: z__default.ZodOptional<z__default.ZodString>;
|
|
69730
69748
|
createdAt: z__default.ZodString;
|
|
69731
69749
|
updatedAt: z__default.ZodString;
|
|
69732
69750
|
}, "strip", z__default.ZodTypeAny, {
|
|
@@ -69734,17 +69752,19 @@ declare const DTOFeatureArtifactListResponse: z__default.ZodObject<{
|
|
|
69734
69752
|
createdAt: string;
|
|
69735
69753
|
url: string;
|
|
69736
69754
|
updatedAt: string;
|
|
69737
|
-
fileId: string;
|
|
69738
69755
|
key: string;
|
|
69756
|
+
fileId?: string | undefined;
|
|
69739
69757
|
iterationId?: string | undefined;
|
|
69758
|
+
filePath?: string | undefined;
|
|
69740
69759
|
}, {
|
|
69741
69760
|
id: string;
|
|
69742
69761
|
createdAt: string;
|
|
69743
69762
|
url: string;
|
|
69744
69763
|
updatedAt: string;
|
|
69745
|
-
fileId: string;
|
|
69746
69764
|
key: string;
|
|
69765
|
+
fileId?: string | undefined;
|
|
69747
69766
|
iterationId?: string | undefined;
|
|
69767
|
+
filePath?: string | undefined;
|
|
69748
69768
|
}>, "many">;
|
|
69749
69769
|
}, "strip", z__default.ZodTypeAny, {
|
|
69750
69770
|
artifacts: {
|
|
@@ -69752,9 +69772,10 @@ declare const DTOFeatureArtifactListResponse: z__default.ZodObject<{
|
|
|
69752
69772
|
createdAt: string;
|
|
69753
69773
|
url: string;
|
|
69754
69774
|
updatedAt: string;
|
|
69755
|
-
fileId: string;
|
|
69756
69775
|
key: string;
|
|
69776
|
+
fileId?: string | undefined;
|
|
69757
69777
|
iterationId?: string | undefined;
|
|
69778
|
+
filePath?: string | undefined;
|
|
69758
69779
|
}[];
|
|
69759
69780
|
}, {
|
|
69760
69781
|
artifacts: {
|
|
@@ -69762,9 +69783,10 @@ declare const DTOFeatureArtifactListResponse: z__default.ZodObject<{
|
|
|
69762
69783
|
createdAt: string;
|
|
69763
69784
|
url: string;
|
|
69764
69785
|
updatedAt: string;
|
|
69765
|
-
fileId: string;
|
|
69766
69786
|
key: string;
|
|
69787
|
+
fileId?: string | undefined;
|
|
69767
69788
|
iterationId?: string | undefined;
|
|
69789
|
+
filePath?: string | undefined;
|
|
69768
69790
|
}[];
|
|
69769
69791
|
}>;
|
|
69770
69792
|
type DTOFeatureArtifactListResponse = z__default.infer<typeof DTOFeatureArtifactListResponse>;
|
|
@@ -255258,9 +255280,10 @@ declare class ForgeFeatureArtifactsEndpoint {
|
|
|
255258
255280
|
createdAt: string;
|
|
255259
255281
|
url: string;
|
|
255260
255282
|
updatedAt: string;
|
|
255261
|
-
fileId: string;
|
|
255262
255283
|
key: string;
|
|
255284
|
+
fileId?: string | undefined;
|
|
255263
255285
|
iterationId?: string | undefined;
|
|
255286
|
+
filePath?: string | undefined;
|
|
255264
255287
|
}[];
|
|
255265
255288
|
}>;
|
|
255266
255289
|
}
|
package/dist/index.js
CHANGED
|
@@ -9263,7 +9263,7 @@ var DTOFeatureArtifact = _zod2.default.object({
|
|
|
9263
9263
|
/**
|
|
9264
9264
|
* Id of the project file that holds content of this artifact
|
|
9265
9265
|
*/
|
|
9266
|
-
fileId: _zod2.default.string(),
|
|
9266
|
+
fileId: _zod2.default.string().optional(),
|
|
9267
9267
|
/**
|
|
9268
9268
|
* Id of the Iteration that this artifact belongs to
|
|
9269
9269
|
*/
|
|
@@ -9272,6 +9272,10 @@ var DTOFeatureArtifact = _zod2.default.object({
|
|
|
9272
9272
|
* URL of the feature artifact's contents
|
|
9273
9273
|
*/
|
|
9274
9274
|
url: _zod2.default.string(),
|
|
9275
|
+
/**
|
|
9276
|
+
* Relative file path of the artifact (without domain/base URL)
|
|
9277
|
+
*/
|
|
9278
|
+
filePath: _zod2.default.string().optional(),
|
|
9275
9279
|
createdAt: _zod2.default.string(),
|
|
9276
9280
|
updatedAt: _zod2.default.string()
|
|
9277
9281
|
});
|