@supernova-studio/client 1.91.0 → 1.92.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 +4 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -16490,6 +16490,8 @@ type DTOCodeHistoryRepositoryFilter = z$1.infer<typeof DTOCodeHistoryRepositoryF
|
|
|
16490
16490
|
declare const DTOCodeHistoryQuery: z$1.ZodObject<{
|
|
16491
16491
|
/** Filters components and usages by component package name (e.g. `@supernovaio/dm`) */
|
|
16492
16492
|
packageNames: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
|
|
16493
|
+
/** Filters usages by component name (e.g. `Button`, `Icon`) */
|
|
16494
|
+
componentNames: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
|
|
16493
16495
|
/**
|
|
16494
16496
|
* Filters usages by repository and optionally by usage package within that repository.
|
|
16495
16497
|
*
|
|
@@ -16513,6 +16515,7 @@ declare const DTOCodeHistoryQuery: z$1.ZodObject<{
|
|
|
16513
16515
|
timeFrameTo: z$1.ZodOptional<z$1.ZodString>;
|
|
16514
16516
|
}, "strip", z$1.ZodTypeAny, {
|
|
16515
16517
|
packageNames?: string[] | undefined;
|
|
16518
|
+
componentNames?: string[] | undefined;
|
|
16516
16519
|
repositoryFilters?: {
|
|
16517
16520
|
repositoryName: string;
|
|
16518
16521
|
usagePackageNames?: string[] | undefined;
|
|
@@ -16521,6 +16524,7 @@ declare const DTOCodeHistoryQuery: z$1.ZodObject<{
|
|
|
16521
16524
|
timeFrameTo?: string | undefined;
|
|
16522
16525
|
}, {
|
|
16523
16526
|
packageNames?: string[] | undefined;
|
|
16527
|
+
componentNames?: string[] | undefined;
|
|
16524
16528
|
repositoryFilters?: {
|
|
16525
16529
|
repositoryName: string;
|
|
16526
16530
|
usagePackageNames?: string[] | undefined;
|
package/dist/index.d.ts
CHANGED
|
@@ -16490,6 +16490,8 @@ type DTOCodeHistoryRepositoryFilter = z$1.infer<typeof DTOCodeHistoryRepositoryF
|
|
|
16490
16490
|
declare const DTOCodeHistoryQuery: z$1.ZodObject<{
|
|
16491
16491
|
/** Filters components and usages by component package name (e.g. `@supernovaio/dm`) */
|
|
16492
16492
|
packageNames: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
|
|
16493
|
+
/** Filters usages by component name (e.g. `Button`, `Icon`) */
|
|
16494
|
+
componentNames: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
|
|
16493
16495
|
/**
|
|
16494
16496
|
* Filters usages by repository and optionally by usage package within that repository.
|
|
16495
16497
|
*
|
|
@@ -16513,6 +16515,7 @@ declare const DTOCodeHistoryQuery: z$1.ZodObject<{
|
|
|
16513
16515
|
timeFrameTo: z$1.ZodOptional<z$1.ZodString>;
|
|
16514
16516
|
}, "strip", z$1.ZodTypeAny, {
|
|
16515
16517
|
packageNames?: string[] | undefined;
|
|
16518
|
+
componentNames?: string[] | undefined;
|
|
16516
16519
|
repositoryFilters?: {
|
|
16517
16520
|
repositoryName: string;
|
|
16518
16521
|
usagePackageNames?: string[] | undefined;
|
|
@@ -16521,6 +16524,7 @@ declare const DTOCodeHistoryQuery: z$1.ZodObject<{
|
|
|
16521
16524
|
timeFrameTo?: string | undefined;
|
|
16522
16525
|
}, {
|
|
16523
16526
|
packageNames?: string[] | undefined;
|
|
16527
|
+
componentNames?: string[] | undefined;
|
|
16524
16528
|
repositoryFilters?: {
|
|
16525
16529
|
repositoryName: string;
|
|
16526
16530
|
usagePackageNames?: string[] | undefined;
|
package/dist/index.js
CHANGED
|
@@ -7262,6 +7262,8 @@ var DTOCodeHistoryRepositoryFilter = _zod2.default.object({
|
|
|
7262
7262
|
var DTOCodeHistoryQuery = _zod2.default.object({
|
|
7263
7263
|
/** Filters components and usages by component package name (e.g. `@supernovaio/dm`) */
|
|
7264
7264
|
packageNames: _zod2.default.array(_zod2.default.string()).optional(),
|
|
7265
|
+
/** Filters usages by component name (e.g. `Button`, `Icon`) */
|
|
7266
|
+
componentNames: _zod2.default.array(_zod2.default.string()).optional(),
|
|
7265
7267
|
/**
|
|
7266
7268
|
* Filters usages by repository and optionally by usage package within that repository.
|
|
7267
7269
|
*
|