waldur-js-client 8.0.3 → 8.0.4-dev.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/types.gen.d.ts +8 -0
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -51139,6 +51139,10 @@ export type MarketplaceSoftwarePackagesListData = {
|
|
|
51139
51139
|
* Filter packages that have a specific version
|
|
51140
51140
|
*/
|
|
51141
51141
|
has_version?: string;
|
|
51142
|
+
/**
|
|
51143
|
+
* Filter packages that are extensions of other packages
|
|
51144
|
+
*/
|
|
51145
|
+
is_extension?: boolean;
|
|
51142
51146
|
/**
|
|
51143
51147
|
* Filter packages by name (case-insensitive partial match)
|
|
51144
51148
|
*/
|
|
@@ -51212,6 +51216,10 @@ export type MarketplaceSoftwarePackagesCountData = {
|
|
|
51212
51216
|
* Filter packages that have a specific version
|
|
51213
51217
|
*/
|
|
51214
51218
|
has_version?: string;
|
|
51219
|
+
/**
|
|
51220
|
+
* Filter packages that are extensions of other packages
|
|
51221
|
+
*/
|
|
51222
|
+
is_extension?: boolean;
|
|
51215
51223
|
/**
|
|
51216
51224
|
* Filter packages by name (case-insensitive partial match)
|
|
51217
51225
|
*/
|