@vibexp/api-client 0.25.0 → 0.26.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/axios/types.gen.d.ts +2 -2
- package/dist/schema.d.ts +3 -3
- package/package.json +1 -1
|
@@ -2172,9 +2172,9 @@ export type BlueprintStatsResponse = {
|
|
|
2172
2172
|
*/
|
|
2173
2173
|
total_projects: number;
|
|
2174
2174
|
/**
|
|
2175
|
-
* Total number of
|
|
2175
|
+
* Total number of blueprints
|
|
2176
2176
|
*/
|
|
2177
|
-
|
|
2177
|
+
total_blueprints: number;
|
|
2178
2178
|
/**
|
|
2179
2179
|
* Number of spec libraries added in the current week
|
|
2180
2180
|
*/
|
package/dist/schema.d.ts
CHANGED
|
@@ -6664,10 +6664,10 @@ export interface components {
|
|
|
6664
6664
|
*/
|
|
6665
6665
|
total_projects: number;
|
|
6666
6666
|
/**
|
|
6667
|
-
* @description Total number of
|
|
6667
|
+
* @description Total number of blueprints
|
|
6668
6668
|
* @example 42
|
|
6669
6669
|
*/
|
|
6670
|
-
|
|
6670
|
+
total_blueprints: number;
|
|
6671
6671
|
/**
|
|
6672
6672
|
* @description Number of spec libraries added in the current week
|
|
6673
6673
|
* @example 3
|
|
@@ -11631,7 +11631,7 @@ export interface operations {
|
|
|
11631
11631
|
/**
|
|
11632
11632
|
* @example {
|
|
11633
11633
|
* "total_projects": 3,
|
|
11634
|
-
* "
|
|
11634
|
+
* "total_blueprints": 12,
|
|
11635
11635
|
* "added_this_week": 2,
|
|
11636
11636
|
* "total_by_type": {
|
|
11637
11637
|
* "general": 12
|
package/package.json
CHANGED