@supernova-studio/client 1.0.6 → 1.1.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 +112 -0
- package/dist/index.d.ts +112 -0
- package/dist/index.js +15 -8
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +20 -13
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -52069,6 +52069,13 @@ declare const DTOExporter: z.ZodObject<{
|
|
|
52069
52069
|
isDefault?: boolean | null | undefined;
|
|
52070
52070
|
thumbnailURL?: string | null | undefined;
|
|
52071
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;
|
|
52072
52079
|
usesBrands: z.ZodBoolean;
|
|
52073
52080
|
usesThemes: z.ZodBoolean;
|
|
52074
52081
|
source: z.ZodEnum<["git", "upload"]>;
|
|
@@ -52121,6 +52128,8 @@ declare const DTOExporter: z.ZodObject<{
|
|
|
52121
52128
|
isDefault?: boolean | undefined;
|
|
52122
52129
|
thumbnailURL?: string | undefined;
|
|
52123
52130
|
}[]>;
|
|
52131
|
+
tags: string[];
|
|
52132
|
+
usesLocale: boolean;
|
|
52124
52133
|
usesBrands: boolean;
|
|
52125
52134
|
usesThemes: boolean;
|
|
52126
52135
|
isDeprecated: boolean;
|
|
@@ -52184,7 +52193,12 @@ declare const DTOExporter: z.ZodObject<{
|
|
|
52184
52193
|
type: string;
|
|
52185
52194
|
} | undefined;
|
|
52186
52195
|
})[] | undefined;
|
|
52196
|
+
organization?: string | undefined;
|
|
52187
52197
|
iconURL?: string | undefined;
|
|
52198
|
+
homepage?: string | undefined;
|
|
52199
|
+
gitProivder?: string | undefined;
|
|
52200
|
+
packageId?: string | undefined;
|
|
52201
|
+
author?: string | undefined;
|
|
52188
52202
|
gitUrl?: string | undefined;
|
|
52189
52203
|
gitBranch?: string | undefined;
|
|
52190
52204
|
gitDirectory?: string | undefined;
|
|
@@ -52233,6 +52247,8 @@ declare const DTOExporter: z.ZodObject<{
|
|
|
52233
52247
|
isDefault?: boolean | null | undefined;
|
|
52234
52248
|
thumbnailURL?: string | null | undefined;
|
|
52235
52249
|
}[]>;
|
|
52250
|
+
tags: string[];
|
|
52251
|
+
usesLocale: boolean;
|
|
52236
52252
|
usesBrands: boolean;
|
|
52237
52253
|
usesThemes: boolean;
|
|
52238
52254
|
isDeprecated: boolean;
|
|
@@ -52296,7 +52312,12 @@ declare const DTOExporter: z.ZodObject<{
|
|
|
52296
52312
|
type: string;
|
|
52297
52313
|
} | undefined;
|
|
52298
52314
|
})[] | undefined;
|
|
52315
|
+
organization?: string | undefined;
|
|
52299
52316
|
iconURL?: string | undefined;
|
|
52317
|
+
homepage?: string | undefined;
|
|
52318
|
+
gitProivder?: string | undefined;
|
|
52319
|
+
packageId?: string | undefined;
|
|
52320
|
+
author?: string | undefined;
|
|
52300
52321
|
gitUrl?: string | null | undefined;
|
|
52301
52322
|
gitBranch?: string | null | undefined;
|
|
52302
52323
|
gitDirectory?: string | null | undefined;
|
|
@@ -52674,6 +52695,13 @@ declare const DTOExporterResponse: z.ZodObject<{
|
|
|
52674
52695
|
isDefault?: boolean | null | undefined;
|
|
52675
52696
|
thumbnailURL?: string | null | undefined;
|
|
52676
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;
|
|
52677
52705
|
usesBrands: z.ZodBoolean;
|
|
52678
52706
|
usesThemes: z.ZodBoolean;
|
|
52679
52707
|
source: z.ZodEnum<["git", "upload"]>;
|
|
@@ -52726,6 +52754,8 @@ declare const DTOExporterResponse: z.ZodObject<{
|
|
|
52726
52754
|
isDefault?: boolean | undefined;
|
|
52727
52755
|
thumbnailURL?: string | undefined;
|
|
52728
52756
|
}[]>;
|
|
52757
|
+
tags: string[];
|
|
52758
|
+
usesLocale: boolean;
|
|
52729
52759
|
usesBrands: boolean;
|
|
52730
52760
|
usesThemes: boolean;
|
|
52731
52761
|
isDeprecated: boolean;
|
|
@@ -52789,7 +52819,12 @@ declare const DTOExporterResponse: z.ZodObject<{
|
|
|
52789
52819
|
type: string;
|
|
52790
52820
|
} | undefined;
|
|
52791
52821
|
})[] | undefined;
|
|
52822
|
+
organization?: string | undefined;
|
|
52792
52823
|
iconURL?: string | undefined;
|
|
52824
|
+
homepage?: string | undefined;
|
|
52825
|
+
gitProivder?: string | undefined;
|
|
52826
|
+
packageId?: string | undefined;
|
|
52827
|
+
author?: string | undefined;
|
|
52793
52828
|
gitUrl?: string | undefined;
|
|
52794
52829
|
gitBranch?: string | undefined;
|
|
52795
52830
|
gitDirectory?: string | undefined;
|
|
@@ -52838,6 +52873,8 @@ declare const DTOExporterResponse: z.ZodObject<{
|
|
|
52838
52873
|
isDefault?: boolean | null | undefined;
|
|
52839
52874
|
thumbnailURL?: string | null | undefined;
|
|
52840
52875
|
}[]>;
|
|
52876
|
+
tags: string[];
|
|
52877
|
+
usesLocale: boolean;
|
|
52841
52878
|
usesBrands: boolean;
|
|
52842
52879
|
usesThemes: boolean;
|
|
52843
52880
|
isDeprecated: boolean;
|
|
@@ -52901,7 +52938,12 @@ declare const DTOExporterResponse: z.ZodObject<{
|
|
|
52901
52938
|
type: string;
|
|
52902
52939
|
} | undefined;
|
|
52903
52940
|
})[] | undefined;
|
|
52941
|
+
organization?: string | undefined;
|
|
52904
52942
|
iconURL?: string | undefined;
|
|
52943
|
+
homepage?: string | undefined;
|
|
52944
|
+
gitProivder?: string | undefined;
|
|
52945
|
+
packageId?: string | undefined;
|
|
52946
|
+
author?: string | undefined;
|
|
52905
52947
|
gitUrl?: string | null | undefined;
|
|
52906
52948
|
gitBranch?: string | null | undefined;
|
|
52907
52949
|
gitDirectory?: string | null | undefined;
|
|
@@ -52970,6 +53012,8 @@ declare const DTOExporterResponse: z.ZodObject<{
|
|
|
52970
53012
|
isDefault?: boolean | undefined;
|
|
52971
53013
|
thumbnailURL?: string | undefined;
|
|
52972
53014
|
}[]>;
|
|
53015
|
+
tags: string[];
|
|
53016
|
+
usesLocale: boolean;
|
|
52973
53017
|
usesBrands: boolean;
|
|
52974
53018
|
usesThemes: boolean;
|
|
52975
53019
|
isDeprecated: boolean;
|
|
@@ -53033,7 +53077,12 @@ declare const DTOExporterResponse: z.ZodObject<{
|
|
|
53033
53077
|
type: string;
|
|
53034
53078
|
} | undefined;
|
|
53035
53079
|
})[] | undefined;
|
|
53080
|
+
organization?: string | undefined;
|
|
53036
53081
|
iconURL?: string | undefined;
|
|
53082
|
+
homepage?: string | undefined;
|
|
53083
|
+
gitProivder?: string | undefined;
|
|
53084
|
+
packageId?: string | undefined;
|
|
53085
|
+
author?: string | undefined;
|
|
53037
53086
|
gitUrl?: string | undefined;
|
|
53038
53087
|
gitBranch?: string | undefined;
|
|
53039
53088
|
gitDirectory?: string | undefined;
|
|
@@ -53089,6 +53138,8 @@ declare const DTOExporterResponse: z.ZodObject<{
|
|
|
53089
53138
|
isDefault?: boolean | null | undefined;
|
|
53090
53139
|
thumbnailURL?: string | null | undefined;
|
|
53091
53140
|
}[]>;
|
|
53141
|
+
tags: string[];
|
|
53142
|
+
usesLocale: boolean;
|
|
53092
53143
|
usesBrands: boolean;
|
|
53093
53144
|
usesThemes: boolean;
|
|
53094
53145
|
isDeprecated: boolean;
|
|
@@ -53152,7 +53203,12 @@ declare const DTOExporterResponse: z.ZodObject<{
|
|
|
53152
53203
|
type: string;
|
|
53153
53204
|
} | undefined;
|
|
53154
53205
|
})[] | undefined;
|
|
53206
|
+
organization?: string | undefined;
|
|
53155
53207
|
iconURL?: string | undefined;
|
|
53208
|
+
homepage?: string | undefined;
|
|
53209
|
+
gitProivder?: string | undefined;
|
|
53210
|
+
packageId?: string | undefined;
|
|
53211
|
+
author?: string | undefined;
|
|
53156
53212
|
gitUrl?: string | null | undefined;
|
|
53157
53213
|
gitBranch?: string | null | undefined;
|
|
53158
53214
|
gitDirectory?: string | null | undefined;
|
|
@@ -53517,6 +53573,13 @@ declare const DTOExporterListResponse: z.ZodObject<{
|
|
|
53517
53573
|
isDefault?: boolean | null | undefined;
|
|
53518
53574
|
thumbnailURL?: string | null | undefined;
|
|
53519
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;
|
|
53520
53583
|
usesBrands: z.ZodBoolean;
|
|
53521
53584
|
usesThemes: z.ZodBoolean;
|
|
53522
53585
|
source: z.ZodEnum<["git", "upload"]>;
|
|
@@ -53569,6 +53632,8 @@ declare const DTOExporterListResponse: z.ZodObject<{
|
|
|
53569
53632
|
isDefault?: boolean | undefined;
|
|
53570
53633
|
thumbnailURL?: string | undefined;
|
|
53571
53634
|
}[]>;
|
|
53635
|
+
tags: string[];
|
|
53636
|
+
usesLocale: boolean;
|
|
53572
53637
|
usesBrands: boolean;
|
|
53573
53638
|
usesThemes: boolean;
|
|
53574
53639
|
isDeprecated: boolean;
|
|
@@ -53632,7 +53697,12 @@ declare const DTOExporterListResponse: z.ZodObject<{
|
|
|
53632
53697
|
type: string;
|
|
53633
53698
|
} | undefined;
|
|
53634
53699
|
})[] | undefined;
|
|
53700
|
+
organization?: string | undefined;
|
|
53635
53701
|
iconURL?: string | undefined;
|
|
53702
|
+
homepage?: string | undefined;
|
|
53703
|
+
gitProivder?: string | undefined;
|
|
53704
|
+
packageId?: string | undefined;
|
|
53705
|
+
author?: string | undefined;
|
|
53636
53706
|
gitUrl?: string | undefined;
|
|
53637
53707
|
gitBranch?: string | undefined;
|
|
53638
53708
|
gitDirectory?: string | undefined;
|
|
@@ -53681,6 +53751,8 @@ declare const DTOExporterListResponse: z.ZodObject<{
|
|
|
53681
53751
|
isDefault?: boolean | null | undefined;
|
|
53682
53752
|
thumbnailURL?: string | null | undefined;
|
|
53683
53753
|
}[]>;
|
|
53754
|
+
tags: string[];
|
|
53755
|
+
usesLocale: boolean;
|
|
53684
53756
|
usesBrands: boolean;
|
|
53685
53757
|
usesThemes: boolean;
|
|
53686
53758
|
isDeprecated: boolean;
|
|
@@ -53744,7 +53816,12 @@ declare const DTOExporterListResponse: z.ZodObject<{
|
|
|
53744
53816
|
type: string;
|
|
53745
53817
|
} | undefined;
|
|
53746
53818
|
})[] | undefined;
|
|
53819
|
+
organization?: string | undefined;
|
|
53747
53820
|
iconURL?: string | undefined;
|
|
53821
|
+
homepage?: string | undefined;
|
|
53822
|
+
gitProivder?: string | undefined;
|
|
53823
|
+
packageId?: string | undefined;
|
|
53824
|
+
author?: string | undefined;
|
|
53748
53825
|
gitUrl?: string | null | undefined;
|
|
53749
53826
|
gitBranch?: string | null | undefined;
|
|
53750
53827
|
gitDirectory?: string | null | undefined;
|
|
@@ -53814,6 +53891,8 @@ declare const DTOExporterListResponse: z.ZodObject<{
|
|
|
53814
53891
|
isDefault?: boolean | undefined;
|
|
53815
53892
|
thumbnailURL?: string | undefined;
|
|
53816
53893
|
}[]>;
|
|
53894
|
+
tags: string[];
|
|
53895
|
+
usesLocale: boolean;
|
|
53817
53896
|
usesBrands: boolean;
|
|
53818
53897
|
usesThemes: boolean;
|
|
53819
53898
|
isDeprecated: boolean;
|
|
@@ -53877,7 +53956,12 @@ declare const DTOExporterListResponse: z.ZodObject<{
|
|
|
53877
53956
|
type: string;
|
|
53878
53957
|
} | undefined;
|
|
53879
53958
|
})[] | undefined;
|
|
53959
|
+
organization?: string | undefined;
|
|
53880
53960
|
iconURL?: string | undefined;
|
|
53961
|
+
homepage?: string | undefined;
|
|
53962
|
+
gitProivder?: string | undefined;
|
|
53963
|
+
packageId?: string | undefined;
|
|
53964
|
+
author?: string | undefined;
|
|
53881
53965
|
gitUrl?: string | undefined;
|
|
53882
53966
|
gitBranch?: string | undefined;
|
|
53883
53967
|
gitDirectory?: string | undefined;
|
|
@@ -53934,6 +54018,8 @@ declare const DTOExporterListResponse: z.ZodObject<{
|
|
|
53934
54018
|
isDefault?: boolean | null | undefined;
|
|
53935
54019
|
thumbnailURL?: string | null | undefined;
|
|
53936
54020
|
}[]>;
|
|
54021
|
+
tags: string[];
|
|
54022
|
+
usesLocale: boolean;
|
|
53937
54023
|
usesBrands: boolean;
|
|
53938
54024
|
usesThemes: boolean;
|
|
53939
54025
|
isDeprecated: boolean;
|
|
@@ -53997,7 +54083,12 @@ declare const DTOExporterListResponse: z.ZodObject<{
|
|
|
53997
54083
|
type: string;
|
|
53998
54084
|
} | undefined;
|
|
53999
54085
|
})[] | undefined;
|
|
54086
|
+
organization?: string | undefined;
|
|
54000
54087
|
iconURL?: string | undefined;
|
|
54088
|
+
homepage?: string | undefined;
|
|
54089
|
+
gitProivder?: string | undefined;
|
|
54090
|
+
packageId?: string | undefined;
|
|
54091
|
+
author?: string | undefined;
|
|
54001
54092
|
gitUrl?: string | null | undefined;
|
|
54002
54093
|
gitBranch?: string | null | undefined;
|
|
54003
54094
|
gitDirectory?: string | null | undefined;
|
|
@@ -91944,6 +92035,8 @@ declare class ExportersEndpoint {
|
|
|
91944
92035
|
isDefault?: boolean | undefined;
|
|
91945
92036
|
thumbnailURL?: string | undefined;
|
|
91946
92037
|
}[]>;
|
|
92038
|
+
tags: string[];
|
|
92039
|
+
usesLocale: boolean;
|
|
91947
92040
|
usesBrands: boolean;
|
|
91948
92041
|
usesThemes: boolean;
|
|
91949
92042
|
isDeprecated: boolean;
|
|
@@ -92007,7 +92100,12 @@ declare class ExportersEndpoint {
|
|
|
92007
92100
|
type: string;
|
|
92008
92101
|
} | undefined;
|
|
92009
92102
|
})[] | undefined;
|
|
92103
|
+
organization?: string | undefined;
|
|
92010
92104
|
iconURL?: string | undefined;
|
|
92105
|
+
homepage?: string | undefined;
|
|
92106
|
+
gitProivder?: string | undefined;
|
|
92107
|
+
packageId?: string | undefined;
|
|
92108
|
+
author?: string | undefined;
|
|
92011
92109
|
gitUrl?: string | undefined;
|
|
92012
92110
|
gitBranch?: string | undefined;
|
|
92013
92111
|
gitDirectory?: string | undefined;
|
|
@@ -92064,6 +92162,8 @@ declare class ExportersEndpoint {
|
|
|
92064
92162
|
isDefault?: boolean | undefined;
|
|
92065
92163
|
thumbnailURL?: string | undefined;
|
|
92066
92164
|
}[]>;
|
|
92165
|
+
tags: string[];
|
|
92166
|
+
usesLocale: boolean;
|
|
92067
92167
|
usesBrands: boolean;
|
|
92068
92168
|
usesThemes: boolean;
|
|
92069
92169
|
isDeprecated: boolean;
|
|
@@ -92127,7 +92227,12 @@ declare class ExportersEndpoint {
|
|
|
92127
92227
|
type: string;
|
|
92128
92228
|
} | undefined;
|
|
92129
92229
|
})[] | undefined;
|
|
92230
|
+
organization?: string | undefined;
|
|
92130
92231
|
iconURL?: string | undefined;
|
|
92232
|
+
homepage?: string | undefined;
|
|
92233
|
+
gitProivder?: string | undefined;
|
|
92234
|
+
packageId?: string | undefined;
|
|
92235
|
+
author?: string | undefined;
|
|
92131
92236
|
gitUrl?: string | undefined;
|
|
92132
92237
|
gitBranch?: string | undefined;
|
|
92133
92238
|
gitDirectory?: string | undefined;
|
|
@@ -92185,6 +92290,8 @@ declare class ExportersEndpoint {
|
|
|
92185
92290
|
isDefault?: boolean | undefined;
|
|
92186
92291
|
thumbnailURL?: string | undefined;
|
|
92187
92292
|
}[]>;
|
|
92293
|
+
tags: string[];
|
|
92294
|
+
usesLocale: boolean;
|
|
92188
92295
|
usesBrands: boolean;
|
|
92189
92296
|
usesThemes: boolean;
|
|
92190
92297
|
isDeprecated: boolean;
|
|
@@ -92248,7 +92355,12 @@ declare class ExportersEndpoint {
|
|
|
92248
92355
|
type: string;
|
|
92249
92356
|
} | undefined;
|
|
92250
92357
|
})[] | undefined;
|
|
92358
|
+
organization?: string | undefined;
|
|
92251
92359
|
iconURL?: string | undefined;
|
|
92360
|
+
homepage?: string | undefined;
|
|
92361
|
+
gitProivder?: string | undefined;
|
|
92362
|
+
packageId?: string | undefined;
|
|
92363
|
+
author?: string | undefined;
|
|
92252
92364
|
gitUrl?: string | undefined;
|
|
92253
92365
|
gitBranch?: string | undefined;
|
|
92254
92366
|
gitDirectory?: string | undefined;
|
package/dist/index.d.ts
CHANGED
|
@@ -52069,6 +52069,13 @@ declare const DTOExporter: z.ZodObject<{
|
|
|
52069
52069
|
isDefault?: boolean | null | undefined;
|
|
52070
52070
|
thumbnailURL?: string | null | undefined;
|
|
52071
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;
|
|
52072
52079
|
usesBrands: z.ZodBoolean;
|
|
52073
52080
|
usesThemes: z.ZodBoolean;
|
|
52074
52081
|
source: z.ZodEnum<["git", "upload"]>;
|
|
@@ -52121,6 +52128,8 @@ declare const DTOExporter: z.ZodObject<{
|
|
|
52121
52128
|
isDefault?: boolean | undefined;
|
|
52122
52129
|
thumbnailURL?: string | undefined;
|
|
52123
52130
|
}[]>;
|
|
52131
|
+
tags: string[];
|
|
52132
|
+
usesLocale: boolean;
|
|
52124
52133
|
usesBrands: boolean;
|
|
52125
52134
|
usesThemes: boolean;
|
|
52126
52135
|
isDeprecated: boolean;
|
|
@@ -52184,7 +52193,12 @@ declare const DTOExporter: z.ZodObject<{
|
|
|
52184
52193
|
type: string;
|
|
52185
52194
|
} | undefined;
|
|
52186
52195
|
})[] | undefined;
|
|
52196
|
+
organization?: string | undefined;
|
|
52187
52197
|
iconURL?: string | undefined;
|
|
52198
|
+
homepage?: string | undefined;
|
|
52199
|
+
gitProivder?: string | undefined;
|
|
52200
|
+
packageId?: string | undefined;
|
|
52201
|
+
author?: string | undefined;
|
|
52188
52202
|
gitUrl?: string | undefined;
|
|
52189
52203
|
gitBranch?: string | undefined;
|
|
52190
52204
|
gitDirectory?: string | undefined;
|
|
@@ -52233,6 +52247,8 @@ declare const DTOExporter: z.ZodObject<{
|
|
|
52233
52247
|
isDefault?: boolean | null | undefined;
|
|
52234
52248
|
thumbnailURL?: string | null | undefined;
|
|
52235
52249
|
}[]>;
|
|
52250
|
+
tags: string[];
|
|
52251
|
+
usesLocale: boolean;
|
|
52236
52252
|
usesBrands: boolean;
|
|
52237
52253
|
usesThemes: boolean;
|
|
52238
52254
|
isDeprecated: boolean;
|
|
@@ -52296,7 +52312,12 @@ declare const DTOExporter: z.ZodObject<{
|
|
|
52296
52312
|
type: string;
|
|
52297
52313
|
} | undefined;
|
|
52298
52314
|
})[] | undefined;
|
|
52315
|
+
organization?: string | undefined;
|
|
52299
52316
|
iconURL?: string | undefined;
|
|
52317
|
+
homepage?: string | undefined;
|
|
52318
|
+
gitProivder?: string | undefined;
|
|
52319
|
+
packageId?: string | undefined;
|
|
52320
|
+
author?: string | undefined;
|
|
52300
52321
|
gitUrl?: string | null | undefined;
|
|
52301
52322
|
gitBranch?: string | null | undefined;
|
|
52302
52323
|
gitDirectory?: string | null | undefined;
|
|
@@ -52674,6 +52695,13 @@ declare const DTOExporterResponse: z.ZodObject<{
|
|
|
52674
52695
|
isDefault?: boolean | null | undefined;
|
|
52675
52696
|
thumbnailURL?: string | null | undefined;
|
|
52676
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;
|
|
52677
52705
|
usesBrands: z.ZodBoolean;
|
|
52678
52706
|
usesThemes: z.ZodBoolean;
|
|
52679
52707
|
source: z.ZodEnum<["git", "upload"]>;
|
|
@@ -52726,6 +52754,8 @@ declare const DTOExporterResponse: z.ZodObject<{
|
|
|
52726
52754
|
isDefault?: boolean | undefined;
|
|
52727
52755
|
thumbnailURL?: string | undefined;
|
|
52728
52756
|
}[]>;
|
|
52757
|
+
tags: string[];
|
|
52758
|
+
usesLocale: boolean;
|
|
52729
52759
|
usesBrands: boolean;
|
|
52730
52760
|
usesThemes: boolean;
|
|
52731
52761
|
isDeprecated: boolean;
|
|
@@ -52789,7 +52819,12 @@ declare const DTOExporterResponse: z.ZodObject<{
|
|
|
52789
52819
|
type: string;
|
|
52790
52820
|
} | undefined;
|
|
52791
52821
|
})[] | undefined;
|
|
52822
|
+
organization?: string | undefined;
|
|
52792
52823
|
iconURL?: string | undefined;
|
|
52824
|
+
homepage?: string | undefined;
|
|
52825
|
+
gitProivder?: string | undefined;
|
|
52826
|
+
packageId?: string | undefined;
|
|
52827
|
+
author?: string | undefined;
|
|
52793
52828
|
gitUrl?: string | undefined;
|
|
52794
52829
|
gitBranch?: string | undefined;
|
|
52795
52830
|
gitDirectory?: string | undefined;
|
|
@@ -52838,6 +52873,8 @@ declare const DTOExporterResponse: z.ZodObject<{
|
|
|
52838
52873
|
isDefault?: boolean | null | undefined;
|
|
52839
52874
|
thumbnailURL?: string | null | undefined;
|
|
52840
52875
|
}[]>;
|
|
52876
|
+
tags: string[];
|
|
52877
|
+
usesLocale: boolean;
|
|
52841
52878
|
usesBrands: boolean;
|
|
52842
52879
|
usesThemes: boolean;
|
|
52843
52880
|
isDeprecated: boolean;
|
|
@@ -52901,7 +52938,12 @@ declare const DTOExporterResponse: z.ZodObject<{
|
|
|
52901
52938
|
type: string;
|
|
52902
52939
|
} | undefined;
|
|
52903
52940
|
})[] | undefined;
|
|
52941
|
+
organization?: string | undefined;
|
|
52904
52942
|
iconURL?: string | undefined;
|
|
52943
|
+
homepage?: string | undefined;
|
|
52944
|
+
gitProivder?: string | undefined;
|
|
52945
|
+
packageId?: string | undefined;
|
|
52946
|
+
author?: string | undefined;
|
|
52905
52947
|
gitUrl?: string | null | undefined;
|
|
52906
52948
|
gitBranch?: string | null | undefined;
|
|
52907
52949
|
gitDirectory?: string | null | undefined;
|
|
@@ -52970,6 +53012,8 @@ declare const DTOExporterResponse: z.ZodObject<{
|
|
|
52970
53012
|
isDefault?: boolean | undefined;
|
|
52971
53013
|
thumbnailURL?: string | undefined;
|
|
52972
53014
|
}[]>;
|
|
53015
|
+
tags: string[];
|
|
53016
|
+
usesLocale: boolean;
|
|
52973
53017
|
usesBrands: boolean;
|
|
52974
53018
|
usesThemes: boolean;
|
|
52975
53019
|
isDeprecated: boolean;
|
|
@@ -53033,7 +53077,12 @@ declare const DTOExporterResponse: z.ZodObject<{
|
|
|
53033
53077
|
type: string;
|
|
53034
53078
|
} | undefined;
|
|
53035
53079
|
})[] | undefined;
|
|
53080
|
+
organization?: string | undefined;
|
|
53036
53081
|
iconURL?: string | undefined;
|
|
53082
|
+
homepage?: string | undefined;
|
|
53083
|
+
gitProivder?: string | undefined;
|
|
53084
|
+
packageId?: string | undefined;
|
|
53085
|
+
author?: string | undefined;
|
|
53037
53086
|
gitUrl?: string | undefined;
|
|
53038
53087
|
gitBranch?: string | undefined;
|
|
53039
53088
|
gitDirectory?: string | undefined;
|
|
@@ -53089,6 +53138,8 @@ declare const DTOExporterResponse: z.ZodObject<{
|
|
|
53089
53138
|
isDefault?: boolean | null | undefined;
|
|
53090
53139
|
thumbnailURL?: string | null | undefined;
|
|
53091
53140
|
}[]>;
|
|
53141
|
+
tags: string[];
|
|
53142
|
+
usesLocale: boolean;
|
|
53092
53143
|
usesBrands: boolean;
|
|
53093
53144
|
usesThemes: boolean;
|
|
53094
53145
|
isDeprecated: boolean;
|
|
@@ -53152,7 +53203,12 @@ declare const DTOExporterResponse: z.ZodObject<{
|
|
|
53152
53203
|
type: string;
|
|
53153
53204
|
} | undefined;
|
|
53154
53205
|
})[] | undefined;
|
|
53206
|
+
organization?: string | undefined;
|
|
53155
53207
|
iconURL?: string | undefined;
|
|
53208
|
+
homepage?: string | undefined;
|
|
53209
|
+
gitProivder?: string | undefined;
|
|
53210
|
+
packageId?: string | undefined;
|
|
53211
|
+
author?: string | undefined;
|
|
53156
53212
|
gitUrl?: string | null | undefined;
|
|
53157
53213
|
gitBranch?: string | null | undefined;
|
|
53158
53214
|
gitDirectory?: string | null | undefined;
|
|
@@ -53517,6 +53573,13 @@ declare const DTOExporterListResponse: z.ZodObject<{
|
|
|
53517
53573
|
isDefault?: boolean | null | undefined;
|
|
53518
53574
|
thumbnailURL?: string | null | undefined;
|
|
53519
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;
|
|
53520
53583
|
usesBrands: z.ZodBoolean;
|
|
53521
53584
|
usesThemes: z.ZodBoolean;
|
|
53522
53585
|
source: z.ZodEnum<["git", "upload"]>;
|
|
@@ -53569,6 +53632,8 @@ declare const DTOExporterListResponse: z.ZodObject<{
|
|
|
53569
53632
|
isDefault?: boolean | undefined;
|
|
53570
53633
|
thumbnailURL?: string | undefined;
|
|
53571
53634
|
}[]>;
|
|
53635
|
+
tags: string[];
|
|
53636
|
+
usesLocale: boolean;
|
|
53572
53637
|
usesBrands: boolean;
|
|
53573
53638
|
usesThemes: boolean;
|
|
53574
53639
|
isDeprecated: boolean;
|
|
@@ -53632,7 +53697,12 @@ declare const DTOExporterListResponse: z.ZodObject<{
|
|
|
53632
53697
|
type: string;
|
|
53633
53698
|
} | undefined;
|
|
53634
53699
|
})[] | undefined;
|
|
53700
|
+
organization?: string | undefined;
|
|
53635
53701
|
iconURL?: string | undefined;
|
|
53702
|
+
homepage?: string | undefined;
|
|
53703
|
+
gitProivder?: string | undefined;
|
|
53704
|
+
packageId?: string | undefined;
|
|
53705
|
+
author?: string | undefined;
|
|
53636
53706
|
gitUrl?: string | undefined;
|
|
53637
53707
|
gitBranch?: string | undefined;
|
|
53638
53708
|
gitDirectory?: string | undefined;
|
|
@@ -53681,6 +53751,8 @@ declare const DTOExporterListResponse: z.ZodObject<{
|
|
|
53681
53751
|
isDefault?: boolean | null | undefined;
|
|
53682
53752
|
thumbnailURL?: string | null | undefined;
|
|
53683
53753
|
}[]>;
|
|
53754
|
+
tags: string[];
|
|
53755
|
+
usesLocale: boolean;
|
|
53684
53756
|
usesBrands: boolean;
|
|
53685
53757
|
usesThemes: boolean;
|
|
53686
53758
|
isDeprecated: boolean;
|
|
@@ -53744,7 +53816,12 @@ declare const DTOExporterListResponse: z.ZodObject<{
|
|
|
53744
53816
|
type: string;
|
|
53745
53817
|
} | undefined;
|
|
53746
53818
|
})[] | undefined;
|
|
53819
|
+
organization?: string | undefined;
|
|
53747
53820
|
iconURL?: string | undefined;
|
|
53821
|
+
homepage?: string | undefined;
|
|
53822
|
+
gitProivder?: string | undefined;
|
|
53823
|
+
packageId?: string | undefined;
|
|
53824
|
+
author?: string | undefined;
|
|
53748
53825
|
gitUrl?: string | null | undefined;
|
|
53749
53826
|
gitBranch?: string | null | undefined;
|
|
53750
53827
|
gitDirectory?: string | null | undefined;
|
|
@@ -53814,6 +53891,8 @@ declare const DTOExporterListResponse: z.ZodObject<{
|
|
|
53814
53891
|
isDefault?: boolean | undefined;
|
|
53815
53892
|
thumbnailURL?: string | undefined;
|
|
53816
53893
|
}[]>;
|
|
53894
|
+
tags: string[];
|
|
53895
|
+
usesLocale: boolean;
|
|
53817
53896
|
usesBrands: boolean;
|
|
53818
53897
|
usesThemes: boolean;
|
|
53819
53898
|
isDeprecated: boolean;
|
|
@@ -53877,7 +53956,12 @@ declare const DTOExporterListResponse: z.ZodObject<{
|
|
|
53877
53956
|
type: string;
|
|
53878
53957
|
} | undefined;
|
|
53879
53958
|
})[] | undefined;
|
|
53959
|
+
organization?: string | undefined;
|
|
53880
53960
|
iconURL?: string | undefined;
|
|
53961
|
+
homepage?: string | undefined;
|
|
53962
|
+
gitProivder?: string | undefined;
|
|
53963
|
+
packageId?: string | undefined;
|
|
53964
|
+
author?: string | undefined;
|
|
53881
53965
|
gitUrl?: string | undefined;
|
|
53882
53966
|
gitBranch?: string | undefined;
|
|
53883
53967
|
gitDirectory?: string | undefined;
|
|
@@ -53934,6 +54018,8 @@ declare const DTOExporterListResponse: z.ZodObject<{
|
|
|
53934
54018
|
isDefault?: boolean | null | undefined;
|
|
53935
54019
|
thumbnailURL?: string | null | undefined;
|
|
53936
54020
|
}[]>;
|
|
54021
|
+
tags: string[];
|
|
54022
|
+
usesLocale: boolean;
|
|
53937
54023
|
usesBrands: boolean;
|
|
53938
54024
|
usesThemes: boolean;
|
|
53939
54025
|
isDeprecated: boolean;
|
|
@@ -53997,7 +54083,12 @@ declare const DTOExporterListResponse: z.ZodObject<{
|
|
|
53997
54083
|
type: string;
|
|
53998
54084
|
} | undefined;
|
|
53999
54085
|
})[] | undefined;
|
|
54086
|
+
organization?: string | undefined;
|
|
54000
54087
|
iconURL?: string | undefined;
|
|
54088
|
+
homepage?: string | undefined;
|
|
54089
|
+
gitProivder?: string | undefined;
|
|
54090
|
+
packageId?: string | undefined;
|
|
54091
|
+
author?: string | undefined;
|
|
54001
54092
|
gitUrl?: string | null | undefined;
|
|
54002
54093
|
gitBranch?: string | null | undefined;
|
|
54003
54094
|
gitDirectory?: string | null | undefined;
|
|
@@ -91944,6 +92035,8 @@ declare class ExportersEndpoint {
|
|
|
91944
92035
|
isDefault?: boolean | undefined;
|
|
91945
92036
|
thumbnailURL?: string | undefined;
|
|
91946
92037
|
}[]>;
|
|
92038
|
+
tags: string[];
|
|
92039
|
+
usesLocale: boolean;
|
|
91947
92040
|
usesBrands: boolean;
|
|
91948
92041
|
usesThemes: boolean;
|
|
91949
92042
|
isDeprecated: boolean;
|
|
@@ -92007,7 +92100,12 @@ declare class ExportersEndpoint {
|
|
|
92007
92100
|
type: string;
|
|
92008
92101
|
} | undefined;
|
|
92009
92102
|
})[] | undefined;
|
|
92103
|
+
organization?: string | undefined;
|
|
92010
92104
|
iconURL?: string | undefined;
|
|
92105
|
+
homepage?: string | undefined;
|
|
92106
|
+
gitProivder?: string | undefined;
|
|
92107
|
+
packageId?: string | undefined;
|
|
92108
|
+
author?: string | undefined;
|
|
92011
92109
|
gitUrl?: string | undefined;
|
|
92012
92110
|
gitBranch?: string | undefined;
|
|
92013
92111
|
gitDirectory?: string | undefined;
|
|
@@ -92064,6 +92162,8 @@ declare class ExportersEndpoint {
|
|
|
92064
92162
|
isDefault?: boolean | undefined;
|
|
92065
92163
|
thumbnailURL?: string | undefined;
|
|
92066
92164
|
}[]>;
|
|
92165
|
+
tags: string[];
|
|
92166
|
+
usesLocale: boolean;
|
|
92067
92167
|
usesBrands: boolean;
|
|
92068
92168
|
usesThemes: boolean;
|
|
92069
92169
|
isDeprecated: boolean;
|
|
@@ -92127,7 +92227,12 @@ declare class ExportersEndpoint {
|
|
|
92127
92227
|
type: string;
|
|
92128
92228
|
} | undefined;
|
|
92129
92229
|
})[] | undefined;
|
|
92230
|
+
organization?: string | undefined;
|
|
92130
92231
|
iconURL?: string | undefined;
|
|
92232
|
+
homepage?: string | undefined;
|
|
92233
|
+
gitProivder?: string | undefined;
|
|
92234
|
+
packageId?: string | undefined;
|
|
92235
|
+
author?: string | undefined;
|
|
92131
92236
|
gitUrl?: string | undefined;
|
|
92132
92237
|
gitBranch?: string | undefined;
|
|
92133
92238
|
gitDirectory?: string | undefined;
|
|
@@ -92185,6 +92290,8 @@ declare class ExportersEndpoint {
|
|
|
92185
92290
|
isDefault?: boolean | undefined;
|
|
92186
92291
|
thumbnailURL?: string | undefined;
|
|
92187
92292
|
}[]>;
|
|
92293
|
+
tags: string[];
|
|
92294
|
+
usesLocale: boolean;
|
|
92188
92295
|
usesBrands: boolean;
|
|
92189
92296
|
usesThemes: boolean;
|
|
92190
92297
|
isDeprecated: boolean;
|
|
@@ -92248,7 +92355,12 @@ declare class ExportersEndpoint {
|
|
|
92248
92355
|
type: string;
|
|
92249
92356
|
} | undefined;
|
|
92250
92357
|
})[] | undefined;
|
|
92358
|
+
organization?: string | undefined;
|
|
92251
92359
|
iconURL?: string | undefined;
|
|
92360
|
+
homepage?: string | undefined;
|
|
92361
|
+
gitProivder?: string | undefined;
|
|
92362
|
+
packageId?: string | undefined;
|
|
92363
|
+
author?: string | undefined;
|
|
92252
92364
|
gitUrl?: string | undefined;
|
|
92253
92365
|
gitBranch?: string | undefined;
|
|
92254
92366
|
gitDirectory?: string | undefined;
|
package/dist/index.js
CHANGED
|
@@ -4760,13 +4760,6 @@ var ExportJobFindByFilter = ExportJob.pick({
|
|
|
4760
4760
|
destinations: _zod.z.array(ExportJobDestinationType),
|
|
4761
4761
|
docsEnvironment: PublishedDocEnvironment
|
|
4762
4762
|
}).partial();
|
|
4763
|
-
var ExporterWorkspaceMembershipRole = _zod.z.enum(["Owner", "OwnerArchived", "User"]);
|
|
4764
|
-
var ExporterWorkspaceMembership = _zod.z.object({
|
|
4765
|
-
id: _zod.z.string(),
|
|
4766
|
-
workspaceId: _zod.z.string(),
|
|
4767
|
-
exporterId: _zod.z.string(),
|
|
4768
|
-
role: ExporterWorkspaceMembershipRole
|
|
4769
|
-
});
|
|
4770
4763
|
var ExporterType2 = _zod.z.enum(["documentation", "code"]);
|
|
4771
4764
|
var ListExporterQuery = _zod.z.object({
|
|
4772
4765
|
limit: _zod.z.number().optional(),
|
|
@@ -4774,6 +4767,13 @@ var ListExporterQuery = _zod.z.object({
|
|
|
4774
4767
|
type: ExporterType2.optional(),
|
|
4775
4768
|
search: _zod.z.string().optional()
|
|
4776
4769
|
});
|
|
4770
|
+
var ExporterWorkspaceMembershipRole = _zod.z.enum(["Owner", "OwnerArchived", "User"]);
|
|
4771
|
+
var ExporterWorkspaceMembership = _zod.z.object({
|
|
4772
|
+
id: _zod.z.string(),
|
|
4773
|
+
workspaceId: _zod.z.string(),
|
|
4774
|
+
exporterId: _zod.z.string(),
|
|
4775
|
+
role: ExporterWorkspaceMembershipRole
|
|
4776
|
+
});
|
|
4777
4777
|
var FlaggedFeature = _zod.z.enum([
|
|
4778
4778
|
"FigmaImporterV2",
|
|
4779
4779
|
"ShadowOpacityOptional",
|
|
@@ -6595,6 +6595,13 @@ var DTOExporter = _zod.z.object({
|
|
|
6595
6595
|
properties: DTOExporterPropertyDefinition.array().optional(),
|
|
6596
6596
|
customBlocks: PulsarCustomBlock.array(),
|
|
6597
6597
|
blockVariants: _zod.z.record(_zod.z.string(), PulsarContributionVariant.array()),
|
|
6598
|
+
homepage: _zod.z.string().optional(),
|
|
6599
|
+
organization: _zod.z.string().optional(),
|
|
6600
|
+
gitProivder: _zod.z.string().optional(),
|
|
6601
|
+
packageId: _zod.z.string().optional(),
|
|
6602
|
+
tags: _zod.z.array(_zod.z.string()),
|
|
6603
|
+
author: _zod.z.string().optional(),
|
|
6604
|
+
usesLocale: _zod.z.boolean(),
|
|
6598
6605
|
usesBrands: _zod.z.boolean(),
|
|
6599
6606
|
usesThemes: _zod.z.boolean(),
|
|
6600
6607
|
source: DTOExporterSource,
|
|
@@ -7274,7 +7281,7 @@ var DTOFrameNodeStructureListResponse = _zod.z.object({
|
|
|
7274
7281
|
|
|
7275
7282
|
// src/api/dto/elements/properties/property-definitions.ts
|
|
7276
7283
|
|
|
7277
|
-
var CODE_NAME_REGEX2 = /^[a-zA-Z_$][a-zA-Z_$0-9]{1,99}$/;
|
|
7284
|
+
var CODE_NAME_REGEX2 = /^[a-zA-Z_$][a-zA-Z_$0-9-]{1,99}$/;
|
|
7278
7285
|
var DTOElementPropertyDefinitionOption = _zod.z.object({
|
|
7279
7286
|
id: _zod.z.string(),
|
|
7280
7287
|
name: _zod.z.string(),
|