@supernova-studio/client 1.2.1 → 1.2.2
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 +82 -18
- package/dist/index.d.ts +82 -18
- 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.ts
CHANGED
|
@@ -1135,13 +1135,13 @@ declare const DocumentationHierarchySettings: z.ZodObject<{
|
|
|
1135
1135
|
}, "strip", z.ZodTypeAny, {
|
|
1136
1136
|
isApprovalFeatureEnabled: boolean;
|
|
1137
1137
|
approvalRequiredForPublishing: boolean;
|
|
1138
|
-
isDraftFeatureAdopted: boolean;
|
|
1139
1138
|
routingVersion: string;
|
|
1139
|
+
isDraftFeatureAdopted: boolean;
|
|
1140
1140
|
}, {
|
|
1141
1141
|
isApprovalFeatureEnabled: boolean;
|
|
1142
1142
|
approvalRequiredForPublishing: boolean;
|
|
1143
|
-
isDraftFeatureAdopted: boolean;
|
|
1144
1143
|
routingVersion: string;
|
|
1144
|
+
isDraftFeatureAdopted: boolean;
|
|
1145
1145
|
}>;
|
|
1146
1146
|
type DocumentationHierarchySettings = z.infer<typeof DocumentationHierarchySettings>;
|
|
1147
1147
|
/**
|
|
@@ -52071,14 +52071,18 @@ declare const DTOExporter: z.ZodObject<{
|
|
|
52071
52071
|
}>, "many">>;
|
|
52072
52072
|
homepage: z.ZodOptional<z.ZodString>;
|
|
52073
52073
|
organization: z.ZodOptional<z.ZodString>;
|
|
52074
|
-
gitProivder: z.ZodOptional<z.ZodString>;
|
|
52075
52074
|
packageId: z.ZodOptional<z.ZodString>;
|
|
52076
52075
|
tags: z.ZodArray<z.ZodString, "many">;
|
|
52077
52076
|
author: z.ZodOptional<z.ZodString>;
|
|
52077
|
+
version: z.ZodString;
|
|
52078
|
+
description: z.ZodString;
|
|
52078
52079
|
usesLocale: z.ZodBoolean;
|
|
52079
52080
|
usesBrands: z.ZodBoolean;
|
|
52080
52081
|
usesThemes: z.ZodBoolean;
|
|
52082
|
+
readme: z.ZodOptional<z.ZodString>;
|
|
52083
|
+
routingVersion: z.ZodOptional<z.ZodString>;
|
|
52081
52084
|
source: z.ZodEnum<["git", "upload"]>;
|
|
52085
|
+
gitProvider: z.ZodOptional<z.ZodString>;
|
|
52082
52086
|
gitUrl: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
52083
52087
|
gitBranch: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
52084
52088
|
gitDirectory: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -52086,10 +52090,12 @@ declare const DTOExporter: z.ZodObject<{
|
|
|
52086
52090
|
deprecationNote: z.ZodOptional<z.ZodString>;
|
|
52087
52091
|
replacementExporterId: z.ZodOptional<z.ZodString>;
|
|
52088
52092
|
}, "strip", z.ZodTypeAny, {
|
|
52093
|
+
description: string;
|
|
52089
52094
|
isPrivate: boolean;
|
|
52090
52095
|
id: string;
|
|
52091
52096
|
name: string;
|
|
52092
52097
|
source: "upload" | "git";
|
|
52098
|
+
version: string;
|
|
52093
52099
|
exporterType: "code" | "documentation";
|
|
52094
52100
|
isDefaultDocumentationExporter: boolean;
|
|
52095
52101
|
configurationProperties: {
|
|
@@ -52196,19 +52202,23 @@ declare const DTOExporter: z.ZodObject<{
|
|
|
52196
52202
|
organization?: string | undefined;
|
|
52197
52203
|
iconURL?: string | undefined;
|
|
52198
52204
|
homepage?: string | undefined;
|
|
52199
|
-
gitProivder?: string | undefined;
|
|
52200
52205
|
packageId?: string | undefined;
|
|
52201
52206
|
author?: string | undefined;
|
|
52207
|
+
readme?: string | undefined;
|
|
52208
|
+
routingVersion?: string | undefined;
|
|
52209
|
+
gitProvider?: string | undefined;
|
|
52202
52210
|
gitUrl?: string | undefined;
|
|
52203
52211
|
gitBranch?: string | undefined;
|
|
52204
52212
|
gitDirectory?: string | undefined;
|
|
52205
52213
|
deprecationNote?: string | undefined;
|
|
52206
52214
|
replacementExporterId?: string | undefined;
|
|
52207
52215
|
}, {
|
|
52216
|
+
description: string;
|
|
52208
52217
|
isPrivate: boolean;
|
|
52209
52218
|
id: string;
|
|
52210
52219
|
name: string;
|
|
52211
52220
|
source: "upload" | "git";
|
|
52221
|
+
version: string;
|
|
52212
52222
|
exporterType: "code" | "documentation";
|
|
52213
52223
|
isDefaultDocumentationExporter: boolean;
|
|
52214
52224
|
configurationProperties: {
|
|
@@ -52315,9 +52325,11 @@ declare const DTOExporter: z.ZodObject<{
|
|
|
52315
52325
|
organization?: string | undefined;
|
|
52316
52326
|
iconURL?: string | undefined;
|
|
52317
52327
|
homepage?: string | undefined;
|
|
52318
|
-
gitProivder?: string | undefined;
|
|
52319
52328
|
packageId?: string | undefined;
|
|
52320
52329
|
author?: string | undefined;
|
|
52330
|
+
readme?: string | undefined;
|
|
52331
|
+
routingVersion?: string | undefined;
|
|
52332
|
+
gitProvider?: string | undefined;
|
|
52321
52333
|
gitUrl?: string | null | undefined;
|
|
52322
52334
|
gitBranch?: string | null | undefined;
|
|
52323
52335
|
gitDirectory?: string | null | undefined;
|
|
@@ -52697,14 +52709,18 @@ declare const DTOExporterResponse: z.ZodObject<{
|
|
|
52697
52709
|
}>, "many">>;
|
|
52698
52710
|
homepage: z.ZodOptional<z.ZodString>;
|
|
52699
52711
|
organization: z.ZodOptional<z.ZodString>;
|
|
52700
|
-
gitProivder: z.ZodOptional<z.ZodString>;
|
|
52701
52712
|
packageId: z.ZodOptional<z.ZodString>;
|
|
52702
52713
|
tags: z.ZodArray<z.ZodString, "many">;
|
|
52703
52714
|
author: z.ZodOptional<z.ZodString>;
|
|
52715
|
+
version: z.ZodString;
|
|
52716
|
+
description: z.ZodString;
|
|
52704
52717
|
usesLocale: z.ZodBoolean;
|
|
52705
52718
|
usesBrands: z.ZodBoolean;
|
|
52706
52719
|
usesThemes: z.ZodBoolean;
|
|
52720
|
+
readme: z.ZodOptional<z.ZodString>;
|
|
52721
|
+
routingVersion: z.ZodOptional<z.ZodString>;
|
|
52707
52722
|
source: z.ZodEnum<["git", "upload"]>;
|
|
52723
|
+
gitProvider: z.ZodOptional<z.ZodString>;
|
|
52708
52724
|
gitUrl: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
52709
52725
|
gitBranch: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
52710
52726
|
gitDirectory: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -52712,10 +52728,12 @@ declare const DTOExporterResponse: z.ZodObject<{
|
|
|
52712
52728
|
deprecationNote: z.ZodOptional<z.ZodString>;
|
|
52713
52729
|
replacementExporterId: z.ZodOptional<z.ZodString>;
|
|
52714
52730
|
}, "strip", z.ZodTypeAny, {
|
|
52731
|
+
description: string;
|
|
52715
52732
|
isPrivate: boolean;
|
|
52716
52733
|
id: string;
|
|
52717
52734
|
name: string;
|
|
52718
52735
|
source: "upload" | "git";
|
|
52736
|
+
version: string;
|
|
52719
52737
|
exporterType: "code" | "documentation";
|
|
52720
52738
|
isDefaultDocumentationExporter: boolean;
|
|
52721
52739
|
configurationProperties: {
|
|
@@ -52822,19 +52840,23 @@ declare const DTOExporterResponse: z.ZodObject<{
|
|
|
52822
52840
|
organization?: string | undefined;
|
|
52823
52841
|
iconURL?: string | undefined;
|
|
52824
52842
|
homepage?: string | undefined;
|
|
52825
|
-
gitProivder?: string | undefined;
|
|
52826
52843
|
packageId?: string | undefined;
|
|
52827
52844
|
author?: string | undefined;
|
|
52845
|
+
readme?: string | undefined;
|
|
52846
|
+
routingVersion?: string | undefined;
|
|
52847
|
+
gitProvider?: string | undefined;
|
|
52828
52848
|
gitUrl?: string | undefined;
|
|
52829
52849
|
gitBranch?: string | undefined;
|
|
52830
52850
|
gitDirectory?: string | undefined;
|
|
52831
52851
|
deprecationNote?: string | undefined;
|
|
52832
52852
|
replacementExporterId?: string | undefined;
|
|
52833
52853
|
}, {
|
|
52854
|
+
description: string;
|
|
52834
52855
|
isPrivate: boolean;
|
|
52835
52856
|
id: string;
|
|
52836
52857
|
name: string;
|
|
52837
52858
|
source: "upload" | "git";
|
|
52859
|
+
version: string;
|
|
52838
52860
|
exporterType: "code" | "documentation";
|
|
52839
52861
|
isDefaultDocumentationExporter: boolean;
|
|
52840
52862
|
configurationProperties: {
|
|
@@ -52941,9 +52963,11 @@ declare const DTOExporterResponse: z.ZodObject<{
|
|
|
52941
52963
|
organization?: string | undefined;
|
|
52942
52964
|
iconURL?: string | undefined;
|
|
52943
52965
|
homepage?: string | undefined;
|
|
52944
|
-
gitProivder?: string | undefined;
|
|
52945
52966
|
packageId?: string | undefined;
|
|
52946
52967
|
author?: string | undefined;
|
|
52968
|
+
readme?: string | undefined;
|
|
52969
|
+
routingVersion?: string | undefined;
|
|
52970
|
+
gitProvider?: string | undefined;
|
|
52947
52971
|
gitUrl?: string | null | undefined;
|
|
52948
52972
|
gitBranch?: string | null | undefined;
|
|
52949
52973
|
gitDirectory?: string | null | undefined;
|
|
@@ -52970,10 +52994,12 @@ declare const DTOExporterResponse: z.ZodObject<{
|
|
|
52970
52994
|
exporterId: string;
|
|
52971
52995
|
};
|
|
52972
52996
|
exporter: {
|
|
52997
|
+
description: string;
|
|
52973
52998
|
isPrivate: boolean;
|
|
52974
52999
|
id: string;
|
|
52975
53000
|
name: string;
|
|
52976
53001
|
source: "upload" | "git";
|
|
53002
|
+
version: string;
|
|
52977
53003
|
exporterType: "code" | "documentation";
|
|
52978
53004
|
isDefaultDocumentationExporter: boolean;
|
|
52979
53005
|
configurationProperties: {
|
|
@@ -53080,9 +53106,11 @@ declare const DTOExporterResponse: z.ZodObject<{
|
|
|
53080
53106
|
organization?: string | undefined;
|
|
53081
53107
|
iconURL?: string | undefined;
|
|
53082
53108
|
homepage?: string | undefined;
|
|
53083
|
-
gitProivder?: string | undefined;
|
|
53084
53109
|
packageId?: string | undefined;
|
|
53085
53110
|
author?: string | undefined;
|
|
53111
|
+
readme?: string | undefined;
|
|
53112
|
+
routingVersion?: string | undefined;
|
|
53113
|
+
gitProvider?: string | undefined;
|
|
53086
53114
|
gitUrl?: string | undefined;
|
|
53087
53115
|
gitBranch?: string | undefined;
|
|
53088
53116
|
gitDirectory?: string | undefined;
|
|
@@ -53096,10 +53124,12 @@ declare const DTOExporterResponse: z.ZodObject<{
|
|
|
53096
53124
|
exporterId: string;
|
|
53097
53125
|
};
|
|
53098
53126
|
exporter: {
|
|
53127
|
+
description: string;
|
|
53099
53128
|
isPrivate: boolean;
|
|
53100
53129
|
id: string;
|
|
53101
53130
|
name: string;
|
|
53102
53131
|
source: "upload" | "git";
|
|
53132
|
+
version: string;
|
|
53103
53133
|
exporterType: "code" | "documentation";
|
|
53104
53134
|
isDefaultDocumentationExporter: boolean;
|
|
53105
53135
|
configurationProperties: {
|
|
@@ -53206,9 +53236,11 @@ declare const DTOExporterResponse: z.ZodObject<{
|
|
|
53206
53236
|
organization?: string | undefined;
|
|
53207
53237
|
iconURL?: string | undefined;
|
|
53208
53238
|
homepage?: string | undefined;
|
|
53209
|
-
gitProivder?: string | undefined;
|
|
53210
53239
|
packageId?: string | undefined;
|
|
53211
53240
|
author?: string | undefined;
|
|
53241
|
+
readme?: string | undefined;
|
|
53242
|
+
routingVersion?: string | undefined;
|
|
53243
|
+
gitProvider?: string | undefined;
|
|
53212
53244
|
gitUrl?: string | null | undefined;
|
|
53213
53245
|
gitBranch?: string | null | undefined;
|
|
53214
53246
|
gitDirectory?: string | null | undefined;
|
|
@@ -53575,14 +53607,18 @@ declare const DTOExporterListResponse: z.ZodObject<{
|
|
|
53575
53607
|
}>, "many">>;
|
|
53576
53608
|
homepage: z.ZodOptional<z.ZodString>;
|
|
53577
53609
|
organization: z.ZodOptional<z.ZodString>;
|
|
53578
|
-
gitProivder: z.ZodOptional<z.ZodString>;
|
|
53579
53610
|
packageId: z.ZodOptional<z.ZodString>;
|
|
53580
53611
|
tags: z.ZodArray<z.ZodString, "many">;
|
|
53581
53612
|
author: z.ZodOptional<z.ZodString>;
|
|
53613
|
+
version: z.ZodString;
|
|
53614
|
+
description: z.ZodString;
|
|
53582
53615
|
usesLocale: z.ZodBoolean;
|
|
53583
53616
|
usesBrands: z.ZodBoolean;
|
|
53584
53617
|
usesThemes: z.ZodBoolean;
|
|
53618
|
+
readme: z.ZodOptional<z.ZodString>;
|
|
53619
|
+
routingVersion: z.ZodOptional<z.ZodString>;
|
|
53585
53620
|
source: z.ZodEnum<["git", "upload"]>;
|
|
53621
|
+
gitProvider: z.ZodOptional<z.ZodString>;
|
|
53586
53622
|
gitUrl: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
53587
53623
|
gitBranch: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
53588
53624
|
gitDirectory: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -53590,10 +53626,12 @@ declare const DTOExporterListResponse: z.ZodObject<{
|
|
|
53590
53626
|
deprecationNote: z.ZodOptional<z.ZodString>;
|
|
53591
53627
|
replacementExporterId: z.ZodOptional<z.ZodString>;
|
|
53592
53628
|
}, "strip", z.ZodTypeAny, {
|
|
53629
|
+
description: string;
|
|
53593
53630
|
isPrivate: boolean;
|
|
53594
53631
|
id: string;
|
|
53595
53632
|
name: string;
|
|
53596
53633
|
source: "upload" | "git";
|
|
53634
|
+
version: string;
|
|
53597
53635
|
exporterType: "code" | "documentation";
|
|
53598
53636
|
isDefaultDocumentationExporter: boolean;
|
|
53599
53637
|
configurationProperties: {
|
|
@@ -53700,19 +53738,23 @@ declare const DTOExporterListResponse: z.ZodObject<{
|
|
|
53700
53738
|
organization?: string | undefined;
|
|
53701
53739
|
iconURL?: string | undefined;
|
|
53702
53740
|
homepage?: string | undefined;
|
|
53703
|
-
gitProivder?: string | undefined;
|
|
53704
53741
|
packageId?: string | undefined;
|
|
53705
53742
|
author?: string | undefined;
|
|
53743
|
+
readme?: string | undefined;
|
|
53744
|
+
routingVersion?: string | undefined;
|
|
53745
|
+
gitProvider?: string | undefined;
|
|
53706
53746
|
gitUrl?: string | undefined;
|
|
53707
53747
|
gitBranch?: string | undefined;
|
|
53708
53748
|
gitDirectory?: string | undefined;
|
|
53709
53749
|
deprecationNote?: string | undefined;
|
|
53710
53750
|
replacementExporterId?: string | undefined;
|
|
53711
53751
|
}, {
|
|
53752
|
+
description: string;
|
|
53712
53753
|
isPrivate: boolean;
|
|
53713
53754
|
id: string;
|
|
53714
53755
|
name: string;
|
|
53715
53756
|
source: "upload" | "git";
|
|
53757
|
+
version: string;
|
|
53716
53758
|
exporterType: "code" | "documentation";
|
|
53717
53759
|
isDefaultDocumentationExporter: boolean;
|
|
53718
53760
|
configurationProperties: {
|
|
@@ -53819,9 +53861,11 @@ declare const DTOExporterListResponse: z.ZodObject<{
|
|
|
53819
53861
|
organization?: string | undefined;
|
|
53820
53862
|
iconURL?: string | undefined;
|
|
53821
53863
|
homepage?: string | undefined;
|
|
53822
|
-
gitProivder?: string | undefined;
|
|
53823
53864
|
packageId?: string | undefined;
|
|
53824
53865
|
author?: string | undefined;
|
|
53866
|
+
readme?: string | undefined;
|
|
53867
|
+
routingVersion?: string | undefined;
|
|
53868
|
+
gitProvider?: string | undefined;
|
|
53825
53869
|
gitUrl?: string | null | undefined;
|
|
53826
53870
|
gitBranch?: string | null | undefined;
|
|
53827
53871
|
gitDirectory?: string | null | undefined;
|
|
@@ -53849,10 +53893,12 @@ declare const DTOExporterListResponse: z.ZodObject<{
|
|
|
53849
53893
|
exporterId: string;
|
|
53850
53894
|
}[];
|
|
53851
53895
|
exporters: {
|
|
53896
|
+
description: string;
|
|
53852
53897
|
isPrivate: boolean;
|
|
53853
53898
|
id: string;
|
|
53854
53899
|
name: string;
|
|
53855
53900
|
source: "upload" | "git";
|
|
53901
|
+
version: string;
|
|
53856
53902
|
exporterType: "code" | "documentation";
|
|
53857
53903
|
isDefaultDocumentationExporter: boolean;
|
|
53858
53904
|
configurationProperties: {
|
|
@@ -53959,9 +54005,11 @@ declare const DTOExporterListResponse: z.ZodObject<{
|
|
|
53959
54005
|
organization?: string | undefined;
|
|
53960
54006
|
iconURL?: string | undefined;
|
|
53961
54007
|
homepage?: string | undefined;
|
|
53962
|
-
gitProivder?: string | undefined;
|
|
53963
54008
|
packageId?: string | undefined;
|
|
53964
54009
|
author?: string | undefined;
|
|
54010
|
+
readme?: string | undefined;
|
|
54011
|
+
routingVersion?: string | undefined;
|
|
54012
|
+
gitProvider?: string | undefined;
|
|
53965
54013
|
gitUrl?: string | undefined;
|
|
53966
54014
|
gitBranch?: string | undefined;
|
|
53967
54015
|
gitDirectory?: string | undefined;
|
|
@@ -53976,10 +54024,12 @@ declare const DTOExporterListResponse: z.ZodObject<{
|
|
|
53976
54024
|
exporterId: string;
|
|
53977
54025
|
}[];
|
|
53978
54026
|
exporters: {
|
|
54027
|
+
description: string;
|
|
53979
54028
|
isPrivate: boolean;
|
|
53980
54029
|
id: string;
|
|
53981
54030
|
name: string;
|
|
53982
54031
|
source: "upload" | "git";
|
|
54032
|
+
version: string;
|
|
53983
54033
|
exporterType: "code" | "documentation";
|
|
53984
54034
|
isDefaultDocumentationExporter: boolean;
|
|
53985
54035
|
configurationProperties: {
|
|
@@ -54086,9 +54136,11 @@ declare const DTOExporterListResponse: z.ZodObject<{
|
|
|
54086
54136
|
organization?: string | undefined;
|
|
54087
54137
|
iconURL?: string | undefined;
|
|
54088
54138
|
homepage?: string | undefined;
|
|
54089
|
-
gitProivder?: string | undefined;
|
|
54090
54139
|
packageId?: string | undefined;
|
|
54091
54140
|
author?: string | undefined;
|
|
54141
|
+
readme?: string | undefined;
|
|
54142
|
+
routingVersion?: string | undefined;
|
|
54143
|
+
gitProvider?: string | undefined;
|
|
54092
54144
|
gitUrl?: string | null | undefined;
|
|
54093
54145
|
gitBranch?: string | null | undefined;
|
|
54094
54146
|
gitDirectory?: string | null | undefined;
|
|
@@ -91993,10 +92045,12 @@ declare class ExportersEndpoint {
|
|
|
91993
92045
|
exporterId: string;
|
|
91994
92046
|
};
|
|
91995
92047
|
exporter: {
|
|
92048
|
+
description: string;
|
|
91996
92049
|
isPrivate: boolean;
|
|
91997
92050
|
id: string;
|
|
91998
92051
|
name: string;
|
|
91999
92052
|
source: "upload" | "git";
|
|
92053
|
+
version: string;
|
|
92000
92054
|
exporterType: "code" | "documentation";
|
|
92001
92055
|
isDefaultDocumentationExporter: boolean;
|
|
92002
92056
|
configurationProperties: {
|
|
@@ -92103,9 +92157,11 @@ declare class ExportersEndpoint {
|
|
|
92103
92157
|
organization?: string | undefined;
|
|
92104
92158
|
iconURL?: string | undefined;
|
|
92105
92159
|
homepage?: string | undefined;
|
|
92106
|
-
gitProivder?: string | undefined;
|
|
92107
92160
|
packageId?: string | undefined;
|
|
92108
92161
|
author?: string | undefined;
|
|
92162
|
+
readme?: string | undefined;
|
|
92163
|
+
routingVersion?: string | undefined;
|
|
92164
|
+
gitProvider?: string | undefined;
|
|
92109
92165
|
gitUrl?: string | undefined;
|
|
92110
92166
|
gitBranch?: string | undefined;
|
|
92111
92167
|
gitDirectory?: string | undefined;
|
|
@@ -92120,10 +92176,12 @@ declare class ExportersEndpoint {
|
|
|
92120
92176
|
exporterId: string;
|
|
92121
92177
|
}[];
|
|
92122
92178
|
exporters: {
|
|
92179
|
+
description: string;
|
|
92123
92180
|
isPrivate: boolean;
|
|
92124
92181
|
id: string;
|
|
92125
92182
|
name: string;
|
|
92126
92183
|
source: "upload" | "git";
|
|
92184
|
+
version: string;
|
|
92127
92185
|
exporterType: "code" | "documentation";
|
|
92128
92186
|
isDefaultDocumentationExporter: boolean;
|
|
92129
92187
|
configurationProperties: {
|
|
@@ -92230,9 +92288,11 @@ declare class ExportersEndpoint {
|
|
|
92230
92288
|
organization?: string | undefined;
|
|
92231
92289
|
iconURL?: string | undefined;
|
|
92232
92290
|
homepage?: string | undefined;
|
|
92233
|
-
gitProivder?: string | undefined;
|
|
92234
92291
|
packageId?: string | undefined;
|
|
92235
92292
|
author?: string | undefined;
|
|
92293
|
+
readme?: string | undefined;
|
|
92294
|
+
routingVersion?: string | undefined;
|
|
92295
|
+
gitProvider?: string | undefined;
|
|
92236
92296
|
gitUrl?: string | undefined;
|
|
92237
92297
|
gitBranch?: string | undefined;
|
|
92238
92298
|
gitDirectory?: string | undefined;
|
|
@@ -92248,10 +92308,12 @@ declare class ExportersEndpoint {
|
|
|
92248
92308
|
exporterId: string;
|
|
92249
92309
|
};
|
|
92250
92310
|
exporter: {
|
|
92311
|
+
description: string;
|
|
92251
92312
|
isPrivate: boolean;
|
|
92252
92313
|
id: string;
|
|
92253
92314
|
name: string;
|
|
92254
92315
|
source: "upload" | "git";
|
|
92316
|
+
version: string;
|
|
92255
92317
|
exporterType: "code" | "documentation";
|
|
92256
92318
|
isDefaultDocumentationExporter: boolean;
|
|
92257
92319
|
configurationProperties: {
|
|
@@ -92358,9 +92420,11 @@ declare class ExportersEndpoint {
|
|
|
92358
92420
|
organization?: string | undefined;
|
|
92359
92421
|
iconURL?: string | undefined;
|
|
92360
92422
|
homepage?: string | undefined;
|
|
92361
|
-
gitProivder?: string | undefined;
|
|
92362
92423
|
packageId?: string | undefined;
|
|
92363
92424
|
author?: string | undefined;
|
|
92425
|
+
readme?: string | undefined;
|
|
92426
|
+
routingVersion?: string | undefined;
|
|
92427
|
+
gitProvider?: string | undefined;
|
|
92364
92428
|
gitUrl?: string | undefined;
|
|
92365
92429
|
gitBranch?: string | undefined;
|
|
92366
92430
|
gitDirectory?: string | undefined;
|
package/dist/index.js
CHANGED
|
@@ -6597,14 +6597,18 @@ var DTOExporter = _zod.z.object({
|
|
|
6597
6597
|
blockVariants: _zod.z.record(_zod.z.string(), PulsarContributionVariant.array()),
|
|
6598
6598
|
homepage: _zod.z.string().optional(),
|
|
6599
6599
|
organization: _zod.z.string().optional(),
|
|
6600
|
-
gitProivder: _zod.z.string().optional(),
|
|
6601
6600
|
packageId: _zod.z.string().optional(),
|
|
6602
6601
|
tags: _zod.z.array(_zod.z.string()),
|
|
6603
6602
|
author: _zod.z.string().optional(),
|
|
6603
|
+
version: _zod.z.string(),
|
|
6604
|
+
description: _zod.z.string(),
|
|
6604
6605
|
usesLocale: _zod.z.boolean(),
|
|
6605
6606
|
usesBrands: _zod.z.boolean(),
|
|
6606
6607
|
usesThemes: _zod.z.boolean(),
|
|
6608
|
+
readme: _zod.z.string().optional(),
|
|
6609
|
+
routingVersion: _zod.z.string().optional(),
|
|
6607
6610
|
source: DTOExporterSource,
|
|
6611
|
+
gitProvider: _zod.z.string().optional(),
|
|
6608
6612
|
gitUrl: nullishToOptional(_zod.z.string()),
|
|
6609
6613
|
gitBranch: nullishToOptional(_zod.z.string()),
|
|
6610
6614
|
gitDirectory: nullishToOptional(_zod.z.string()),
|