@supernova-studio/client 1.0.5 → 1.0.7
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 +126 -1
- package/dist/index.d.ts +126 -1
- package/dist/index.js +22 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1204 -1185
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -51693,10 +51693,19 @@ type DTOExporterPropertyValueMap = z.infer<typeof DTOExporterPropertyValueMap>;
|
|
|
51693
51693
|
|
|
51694
51694
|
declare const DTOExporterListQuery: z.ZodObject<{
|
|
51695
51695
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
51696
|
+
offset: z.ZodOptional<z.ZodNumber>;
|
|
51697
|
+
type: z.ZodOptional<z.ZodEnum<["documentation", "code"]>>;
|
|
51698
|
+
search: z.ZodOptional<z.ZodString>;
|
|
51696
51699
|
}, "strip", z.ZodTypeAny, {
|
|
51700
|
+
type?: "code" | "documentation" | undefined;
|
|
51697
51701
|
limit?: number | undefined;
|
|
51702
|
+
offset?: number | undefined;
|
|
51703
|
+
search?: string | undefined;
|
|
51698
51704
|
}, {
|
|
51705
|
+
type?: "code" | "documentation" | undefined;
|
|
51699
51706
|
limit?: number | undefined;
|
|
51707
|
+
offset?: number | undefined;
|
|
51708
|
+
search?: string | undefined;
|
|
51700
51709
|
}>;
|
|
51701
51710
|
type DTOExporterListQuery = z.infer<typeof DTOExporterListQuery>;
|
|
51702
51711
|
declare const DTOExporterType: z.ZodEnum<["documentation", "code"]>;
|
|
@@ -52060,6 +52069,13 @@ declare const DTOExporter: z.ZodObject<{
|
|
|
52060
52069
|
isDefault?: boolean | null | undefined;
|
|
52061
52070
|
thumbnailURL?: string | null | undefined;
|
|
52062
52071
|
}>, "many">>;
|
|
52072
|
+
homepage: z.ZodOptional<z.ZodString>;
|
|
52073
|
+
organization: z.ZodOptional<z.ZodString>;
|
|
52074
|
+
gitProivder: z.ZodOptional<z.ZodString>;
|
|
52075
|
+
packageId: z.ZodOptional<z.ZodString>;
|
|
52076
|
+
tags: z.ZodArray<z.ZodString, "many">;
|
|
52077
|
+
author: z.ZodOptional<z.ZodString>;
|
|
52078
|
+
usesLocale: z.ZodBoolean;
|
|
52063
52079
|
usesBrands: z.ZodBoolean;
|
|
52064
52080
|
usesThemes: z.ZodBoolean;
|
|
52065
52081
|
source: z.ZodEnum<["git", "upload"]>;
|
|
@@ -52112,6 +52128,8 @@ declare const DTOExporter: z.ZodObject<{
|
|
|
52112
52128
|
isDefault?: boolean | undefined;
|
|
52113
52129
|
thumbnailURL?: string | undefined;
|
|
52114
52130
|
}[]>;
|
|
52131
|
+
tags: string[];
|
|
52132
|
+
usesLocale: boolean;
|
|
52115
52133
|
usesBrands: boolean;
|
|
52116
52134
|
usesThemes: boolean;
|
|
52117
52135
|
isDeprecated: boolean;
|
|
@@ -52175,7 +52193,12 @@ declare const DTOExporter: z.ZodObject<{
|
|
|
52175
52193
|
type: string;
|
|
52176
52194
|
} | undefined;
|
|
52177
52195
|
})[] | undefined;
|
|
52196
|
+
organization?: string | undefined;
|
|
52178
52197
|
iconURL?: string | undefined;
|
|
52198
|
+
homepage?: string | undefined;
|
|
52199
|
+
gitProivder?: string | undefined;
|
|
52200
|
+
packageId?: string | undefined;
|
|
52201
|
+
author?: string | undefined;
|
|
52179
52202
|
gitUrl?: string | undefined;
|
|
52180
52203
|
gitBranch?: string | undefined;
|
|
52181
52204
|
gitDirectory?: string | undefined;
|
|
@@ -52224,6 +52247,8 @@ declare const DTOExporter: z.ZodObject<{
|
|
|
52224
52247
|
isDefault?: boolean | null | undefined;
|
|
52225
52248
|
thumbnailURL?: string | null | undefined;
|
|
52226
52249
|
}[]>;
|
|
52250
|
+
tags: string[];
|
|
52251
|
+
usesLocale: boolean;
|
|
52227
52252
|
usesBrands: boolean;
|
|
52228
52253
|
usesThemes: boolean;
|
|
52229
52254
|
isDeprecated: boolean;
|
|
@@ -52287,7 +52312,12 @@ declare const DTOExporter: z.ZodObject<{
|
|
|
52287
52312
|
type: string;
|
|
52288
52313
|
} | undefined;
|
|
52289
52314
|
})[] | undefined;
|
|
52315
|
+
organization?: string | undefined;
|
|
52290
52316
|
iconURL?: string | undefined;
|
|
52317
|
+
homepage?: string | undefined;
|
|
52318
|
+
gitProivder?: string | undefined;
|
|
52319
|
+
packageId?: string | undefined;
|
|
52320
|
+
author?: string | undefined;
|
|
52291
52321
|
gitUrl?: string | null | undefined;
|
|
52292
52322
|
gitBranch?: string | null | undefined;
|
|
52293
52323
|
gitDirectory?: string | null | undefined;
|
|
@@ -52665,6 +52695,13 @@ declare const DTOExporterResponse: z.ZodObject<{
|
|
|
52665
52695
|
isDefault?: boolean | null | undefined;
|
|
52666
52696
|
thumbnailURL?: string | null | undefined;
|
|
52667
52697
|
}>, "many">>;
|
|
52698
|
+
homepage: z.ZodOptional<z.ZodString>;
|
|
52699
|
+
organization: z.ZodOptional<z.ZodString>;
|
|
52700
|
+
gitProivder: z.ZodOptional<z.ZodString>;
|
|
52701
|
+
packageId: z.ZodOptional<z.ZodString>;
|
|
52702
|
+
tags: z.ZodArray<z.ZodString, "many">;
|
|
52703
|
+
author: z.ZodOptional<z.ZodString>;
|
|
52704
|
+
usesLocale: z.ZodBoolean;
|
|
52668
52705
|
usesBrands: z.ZodBoolean;
|
|
52669
52706
|
usesThemes: z.ZodBoolean;
|
|
52670
52707
|
source: z.ZodEnum<["git", "upload"]>;
|
|
@@ -52717,6 +52754,8 @@ declare const DTOExporterResponse: z.ZodObject<{
|
|
|
52717
52754
|
isDefault?: boolean | undefined;
|
|
52718
52755
|
thumbnailURL?: string | undefined;
|
|
52719
52756
|
}[]>;
|
|
52757
|
+
tags: string[];
|
|
52758
|
+
usesLocale: boolean;
|
|
52720
52759
|
usesBrands: boolean;
|
|
52721
52760
|
usesThemes: boolean;
|
|
52722
52761
|
isDeprecated: boolean;
|
|
@@ -52780,7 +52819,12 @@ declare const DTOExporterResponse: z.ZodObject<{
|
|
|
52780
52819
|
type: string;
|
|
52781
52820
|
} | undefined;
|
|
52782
52821
|
})[] | undefined;
|
|
52822
|
+
organization?: string | undefined;
|
|
52783
52823
|
iconURL?: string | undefined;
|
|
52824
|
+
homepage?: string | undefined;
|
|
52825
|
+
gitProivder?: string | undefined;
|
|
52826
|
+
packageId?: string | undefined;
|
|
52827
|
+
author?: string | undefined;
|
|
52784
52828
|
gitUrl?: string | undefined;
|
|
52785
52829
|
gitBranch?: string | undefined;
|
|
52786
52830
|
gitDirectory?: string | undefined;
|
|
@@ -52829,6 +52873,8 @@ declare const DTOExporterResponse: z.ZodObject<{
|
|
|
52829
52873
|
isDefault?: boolean | null | undefined;
|
|
52830
52874
|
thumbnailURL?: string | null | undefined;
|
|
52831
52875
|
}[]>;
|
|
52876
|
+
tags: string[];
|
|
52877
|
+
usesLocale: boolean;
|
|
52832
52878
|
usesBrands: boolean;
|
|
52833
52879
|
usesThemes: boolean;
|
|
52834
52880
|
isDeprecated: boolean;
|
|
@@ -52892,7 +52938,12 @@ declare const DTOExporterResponse: z.ZodObject<{
|
|
|
52892
52938
|
type: string;
|
|
52893
52939
|
} | undefined;
|
|
52894
52940
|
})[] | undefined;
|
|
52941
|
+
organization?: string | undefined;
|
|
52895
52942
|
iconURL?: string | undefined;
|
|
52943
|
+
homepage?: string | undefined;
|
|
52944
|
+
gitProivder?: string | undefined;
|
|
52945
|
+
packageId?: string | undefined;
|
|
52946
|
+
author?: string | undefined;
|
|
52896
52947
|
gitUrl?: string | null | undefined;
|
|
52897
52948
|
gitBranch?: string | null | undefined;
|
|
52898
52949
|
gitDirectory?: string | null | undefined;
|
|
@@ -52961,6 +53012,8 @@ declare const DTOExporterResponse: z.ZodObject<{
|
|
|
52961
53012
|
isDefault?: boolean | undefined;
|
|
52962
53013
|
thumbnailURL?: string | undefined;
|
|
52963
53014
|
}[]>;
|
|
53015
|
+
tags: string[];
|
|
53016
|
+
usesLocale: boolean;
|
|
52964
53017
|
usesBrands: boolean;
|
|
52965
53018
|
usesThemes: boolean;
|
|
52966
53019
|
isDeprecated: boolean;
|
|
@@ -53024,7 +53077,12 @@ declare const DTOExporterResponse: z.ZodObject<{
|
|
|
53024
53077
|
type: string;
|
|
53025
53078
|
} | undefined;
|
|
53026
53079
|
})[] | undefined;
|
|
53080
|
+
organization?: string | undefined;
|
|
53027
53081
|
iconURL?: string | undefined;
|
|
53082
|
+
homepage?: string | undefined;
|
|
53083
|
+
gitProivder?: string | undefined;
|
|
53084
|
+
packageId?: string | undefined;
|
|
53085
|
+
author?: string | undefined;
|
|
53028
53086
|
gitUrl?: string | undefined;
|
|
53029
53087
|
gitBranch?: string | undefined;
|
|
53030
53088
|
gitDirectory?: string | undefined;
|
|
@@ -53080,6 +53138,8 @@ declare const DTOExporterResponse: z.ZodObject<{
|
|
|
53080
53138
|
isDefault?: boolean | null | undefined;
|
|
53081
53139
|
thumbnailURL?: string | null | undefined;
|
|
53082
53140
|
}[]>;
|
|
53141
|
+
tags: string[];
|
|
53142
|
+
usesLocale: boolean;
|
|
53083
53143
|
usesBrands: boolean;
|
|
53084
53144
|
usesThemes: boolean;
|
|
53085
53145
|
isDeprecated: boolean;
|
|
@@ -53143,7 +53203,12 @@ declare const DTOExporterResponse: z.ZodObject<{
|
|
|
53143
53203
|
type: string;
|
|
53144
53204
|
} | undefined;
|
|
53145
53205
|
})[] | undefined;
|
|
53206
|
+
organization?: string | undefined;
|
|
53146
53207
|
iconURL?: string | undefined;
|
|
53208
|
+
homepage?: string | undefined;
|
|
53209
|
+
gitProivder?: string | undefined;
|
|
53210
|
+
packageId?: string | undefined;
|
|
53211
|
+
author?: string | undefined;
|
|
53147
53212
|
gitUrl?: string | null | undefined;
|
|
53148
53213
|
gitBranch?: string | null | undefined;
|
|
53149
53214
|
gitDirectory?: string | null | undefined;
|
|
@@ -53508,6 +53573,13 @@ declare const DTOExporterListResponse: z.ZodObject<{
|
|
|
53508
53573
|
isDefault?: boolean | null | undefined;
|
|
53509
53574
|
thumbnailURL?: string | null | undefined;
|
|
53510
53575
|
}>, "many">>;
|
|
53576
|
+
homepage: z.ZodOptional<z.ZodString>;
|
|
53577
|
+
organization: z.ZodOptional<z.ZodString>;
|
|
53578
|
+
gitProivder: z.ZodOptional<z.ZodString>;
|
|
53579
|
+
packageId: z.ZodOptional<z.ZodString>;
|
|
53580
|
+
tags: z.ZodArray<z.ZodString, "many">;
|
|
53581
|
+
author: z.ZodOptional<z.ZodString>;
|
|
53582
|
+
usesLocale: z.ZodBoolean;
|
|
53511
53583
|
usesBrands: z.ZodBoolean;
|
|
53512
53584
|
usesThemes: z.ZodBoolean;
|
|
53513
53585
|
source: z.ZodEnum<["git", "upload"]>;
|
|
@@ -53560,6 +53632,8 @@ declare const DTOExporterListResponse: z.ZodObject<{
|
|
|
53560
53632
|
isDefault?: boolean | undefined;
|
|
53561
53633
|
thumbnailURL?: string | undefined;
|
|
53562
53634
|
}[]>;
|
|
53635
|
+
tags: string[];
|
|
53636
|
+
usesLocale: boolean;
|
|
53563
53637
|
usesBrands: boolean;
|
|
53564
53638
|
usesThemes: boolean;
|
|
53565
53639
|
isDeprecated: boolean;
|
|
@@ -53623,7 +53697,12 @@ declare const DTOExporterListResponse: z.ZodObject<{
|
|
|
53623
53697
|
type: string;
|
|
53624
53698
|
} | undefined;
|
|
53625
53699
|
})[] | undefined;
|
|
53700
|
+
organization?: string | undefined;
|
|
53626
53701
|
iconURL?: string | undefined;
|
|
53702
|
+
homepage?: string | undefined;
|
|
53703
|
+
gitProivder?: string | undefined;
|
|
53704
|
+
packageId?: string | undefined;
|
|
53705
|
+
author?: string | undefined;
|
|
53627
53706
|
gitUrl?: string | undefined;
|
|
53628
53707
|
gitBranch?: string | undefined;
|
|
53629
53708
|
gitDirectory?: string | undefined;
|
|
@@ -53672,6 +53751,8 @@ declare const DTOExporterListResponse: z.ZodObject<{
|
|
|
53672
53751
|
isDefault?: boolean | null | undefined;
|
|
53673
53752
|
thumbnailURL?: string | null | undefined;
|
|
53674
53753
|
}[]>;
|
|
53754
|
+
tags: string[];
|
|
53755
|
+
usesLocale: boolean;
|
|
53675
53756
|
usesBrands: boolean;
|
|
53676
53757
|
usesThemes: boolean;
|
|
53677
53758
|
isDeprecated: boolean;
|
|
@@ -53735,7 +53816,12 @@ declare const DTOExporterListResponse: z.ZodObject<{
|
|
|
53735
53816
|
type: string;
|
|
53736
53817
|
} | undefined;
|
|
53737
53818
|
})[] | undefined;
|
|
53819
|
+
organization?: string | undefined;
|
|
53738
53820
|
iconURL?: string | undefined;
|
|
53821
|
+
homepage?: string | undefined;
|
|
53822
|
+
gitProivder?: string | undefined;
|
|
53823
|
+
packageId?: string | undefined;
|
|
53824
|
+
author?: string | undefined;
|
|
53739
53825
|
gitUrl?: string | null | undefined;
|
|
53740
53826
|
gitBranch?: string | null | undefined;
|
|
53741
53827
|
gitDirectory?: string | null | undefined;
|
|
@@ -53755,6 +53841,7 @@ declare const DTOExporterListResponse: z.ZodObject<{
|
|
|
53755
53841
|
role: "Owner" | "OwnerArchived" | "User";
|
|
53756
53842
|
exporterId: string;
|
|
53757
53843
|
}>, "many">;
|
|
53844
|
+
total: z.ZodNumber;
|
|
53758
53845
|
}, "strip", z.ZodTypeAny, {
|
|
53759
53846
|
membership: {
|
|
53760
53847
|
workspaceId: string;
|
|
@@ -53804,6 +53891,8 @@ declare const DTOExporterListResponse: z.ZodObject<{
|
|
|
53804
53891
|
isDefault?: boolean | undefined;
|
|
53805
53892
|
thumbnailURL?: string | undefined;
|
|
53806
53893
|
}[]>;
|
|
53894
|
+
tags: string[];
|
|
53895
|
+
usesLocale: boolean;
|
|
53807
53896
|
usesBrands: boolean;
|
|
53808
53897
|
usesThemes: boolean;
|
|
53809
53898
|
isDeprecated: boolean;
|
|
@@ -53867,13 +53956,19 @@ declare const DTOExporterListResponse: z.ZodObject<{
|
|
|
53867
53956
|
type: string;
|
|
53868
53957
|
} | undefined;
|
|
53869
53958
|
})[] | undefined;
|
|
53959
|
+
organization?: string | undefined;
|
|
53870
53960
|
iconURL?: string | undefined;
|
|
53961
|
+
homepage?: string | undefined;
|
|
53962
|
+
gitProivder?: string | undefined;
|
|
53963
|
+
packageId?: string | undefined;
|
|
53964
|
+
author?: string | undefined;
|
|
53871
53965
|
gitUrl?: string | undefined;
|
|
53872
53966
|
gitBranch?: string | undefined;
|
|
53873
53967
|
gitDirectory?: string | undefined;
|
|
53874
53968
|
deprecationNote?: string | undefined;
|
|
53875
53969
|
replacementExporterId?: string | undefined;
|
|
53876
53970
|
}[];
|
|
53971
|
+
total: number;
|
|
53877
53972
|
}, {
|
|
53878
53973
|
membership: {
|
|
53879
53974
|
workspaceId: string;
|
|
@@ -53923,6 +54018,8 @@ declare const DTOExporterListResponse: z.ZodObject<{
|
|
|
53923
54018
|
isDefault?: boolean | null | undefined;
|
|
53924
54019
|
thumbnailURL?: string | null | undefined;
|
|
53925
54020
|
}[]>;
|
|
54021
|
+
tags: string[];
|
|
54022
|
+
usesLocale: boolean;
|
|
53926
54023
|
usesBrands: boolean;
|
|
53927
54024
|
usesThemes: boolean;
|
|
53928
54025
|
isDeprecated: boolean;
|
|
@@ -53986,13 +54083,19 @@ declare const DTOExporterListResponse: z.ZodObject<{
|
|
|
53986
54083
|
type: string;
|
|
53987
54084
|
} | undefined;
|
|
53988
54085
|
})[] | undefined;
|
|
54086
|
+
organization?: string | undefined;
|
|
53989
54087
|
iconURL?: string | undefined;
|
|
54088
|
+
homepage?: string | undefined;
|
|
54089
|
+
gitProivder?: string | undefined;
|
|
54090
|
+
packageId?: string | undefined;
|
|
54091
|
+
author?: string | undefined;
|
|
53990
54092
|
gitUrl?: string | null | undefined;
|
|
53991
54093
|
gitBranch?: string | null | undefined;
|
|
53992
54094
|
gitDirectory?: string | null | undefined;
|
|
53993
54095
|
deprecationNote?: string | undefined;
|
|
53994
54096
|
replacementExporterId?: string | undefined;
|
|
53995
54097
|
}[];
|
|
54098
|
+
total: number;
|
|
53996
54099
|
}>;
|
|
53997
54100
|
type DTOExporterListResponse = z.infer<typeof DTOExporterListResponse>;
|
|
53998
54101
|
declare const DTOExporterGitProviderEnum: z.ZodEnum<["github", "gitlab", "bitbucket", "azure"]>;
|
|
@@ -91932,6 +92035,8 @@ declare class ExportersEndpoint {
|
|
|
91932
92035
|
isDefault?: boolean | undefined;
|
|
91933
92036
|
thumbnailURL?: string | undefined;
|
|
91934
92037
|
}[]>;
|
|
92038
|
+
tags: string[];
|
|
92039
|
+
usesLocale: boolean;
|
|
91935
92040
|
usesBrands: boolean;
|
|
91936
92041
|
usesThemes: boolean;
|
|
91937
92042
|
isDeprecated: boolean;
|
|
@@ -91995,7 +92100,12 @@ declare class ExportersEndpoint {
|
|
|
91995
92100
|
type: string;
|
|
91996
92101
|
} | undefined;
|
|
91997
92102
|
})[] | undefined;
|
|
92103
|
+
organization?: string | undefined;
|
|
91998
92104
|
iconURL?: string | undefined;
|
|
92105
|
+
homepage?: string | undefined;
|
|
92106
|
+
gitProivder?: string | undefined;
|
|
92107
|
+
packageId?: string | undefined;
|
|
92108
|
+
author?: string | undefined;
|
|
91999
92109
|
gitUrl?: string | undefined;
|
|
92000
92110
|
gitBranch?: string | undefined;
|
|
92001
92111
|
gitDirectory?: string | undefined;
|
|
@@ -92003,7 +92113,7 @@ declare class ExportersEndpoint {
|
|
|
92003
92113
|
replacementExporterId?: string | undefined;
|
|
92004
92114
|
};
|
|
92005
92115
|
}>;
|
|
92006
|
-
list(workspaceId: string, query
|
|
92116
|
+
list(workspaceId: string, query?: DTOExporterListQuery): Promise<{
|
|
92007
92117
|
membership: {
|
|
92008
92118
|
workspaceId: string;
|
|
92009
92119
|
role: "Owner" | "OwnerArchived" | "User";
|
|
@@ -92052,6 +92162,8 @@ declare class ExportersEndpoint {
|
|
|
92052
92162
|
isDefault?: boolean | undefined;
|
|
92053
92163
|
thumbnailURL?: string | undefined;
|
|
92054
92164
|
}[]>;
|
|
92165
|
+
tags: string[];
|
|
92166
|
+
usesLocale: boolean;
|
|
92055
92167
|
usesBrands: boolean;
|
|
92056
92168
|
usesThemes: boolean;
|
|
92057
92169
|
isDeprecated: boolean;
|
|
@@ -92115,13 +92227,19 @@ declare class ExportersEndpoint {
|
|
|
92115
92227
|
type: string;
|
|
92116
92228
|
} | undefined;
|
|
92117
92229
|
})[] | undefined;
|
|
92230
|
+
organization?: string | undefined;
|
|
92118
92231
|
iconURL?: string | undefined;
|
|
92232
|
+
homepage?: string | undefined;
|
|
92233
|
+
gitProivder?: string | undefined;
|
|
92234
|
+
packageId?: string | undefined;
|
|
92235
|
+
author?: string | undefined;
|
|
92119
92236
|
gitUrl?: string | undefined;
|
|
92120
92237
|
gitBranch?: string | undefined;
|
|
92121
92238
|
gitDirectory?: string | undefined;
|
|
92122
92239
|
deprecationNote?: string | undefined;
|
|
92123
92240
|
replacementExporterId?: string | undefined;
|
|
92124
92241
|
}[];
|
|
92242
|
+
total: number;
|
|
92125
92243
|
}>;
|
|
92126
92244
|
get(workspaceId: string, exporterId: string): Promise<{
|
|
92127
92245
|
membership: {
|
|
@@ -92172,6 +92290,8 @@ declare class ExportersEndpoint {
|
|
|
92172
92290
|
isDefault?: boolean | undefined;
|
|
92173
92291
|
thumbnailURL?: string | undefined;
|
|
92174
92292
|
}[]>;
|
|
92293
|
+
tags: string[];
|
|
92294
|
+
usesLocale: boolean;
|
|
92175
92295
|
usesBrands: boolean;
|
|
92176
92296
|
usesThemes: boolean;
|
|
92177
92297
|
isDeprecated: boolean;
|
|
@@ -92235,7 +92355,12 @@ declare class ExportersEndpoint {
|
|
|
92235
92355
|
type: string;
|
|
92236
92356
|
} | undefined;
|
|
92237
92357
|
})[] | undefined;
|
|
92358
|
+
organization?: string | undefined;
|
|
92238
92359
|
iconURL?: string | undefined;
|
|
92360
|
+
homepage?: string | undefined;
|
|
92361
|
+
gitProivder?: string | undefined;
|
|
92362
|
+
packageId?: string | undefined;
|
|
92363
|
+
author?: string | undefined;
|
|
92239
92364
|
gitUrl?: string | undefined;
|
|
92240
92365
|
gitBranch?: string | undefined;
|
|
92241
92366
|
gitDirectory?: string | undefined;
|