@rhoas/kafka-instance-sdk
Advanced tools
Comparing version 0.11.2 to 0.12.0
@@ -5,3 +5,3 @@ /** | ||
* | ||
* The version of the OpenAPI document: 0.2.0 | ||
* The version of the OpenAPI document: 0.3.0 | ||
* | ||
@@ -13,2 +13,4 @@ * | ||
*/ | ||
export * from './api/default-api'; | ||
export * from './api/acls-api'; | ||
export * from './api/groups-api'; | ||
export * from './api/topics-api'; |
@@ -8,3 +8,3 @@ "use strict"; | ||
* | ||
* The version of the OpenAPI document: 0.2.0 | ||
* The version of the OpenAPI document: 0.3.0 | ||
* | ||
@@ -27,2 +27,4 @@ * | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
__exportStar(require("./api/default-api"), exports); | ||
__exportStar(require("./api/acls-api"), exports); | ||
__exportStar(require("./api/groups-api"), exports); | ||
__exportStar(require("./api/topics-api"), exports); |
@@ -5,3 +5,3 @@ /** | ||
* | ||
* The version of the OpenAPI document: 0.2.0 | ||
* The version of the OpenAPI document: 0.3.0 | ||
* | ||
@@ -8,0 +8,0 @@ * |
@@ -8,3 +8,3 @@ "use strict"; | ||
* | ||
* The version of the OpenAPI document: 0.2.0 | ||
* The version of the OpenAPI document: 0.3.0 | ||
* | ||
@@ -11,0 +11,0 @@ * |
@@ -5,3 +5,3 @@ /** | ||
* | ||
* The version of the OpenAPI document: 0.2.0 | ||
* The version of the OpenAPI document: 0.3.0 | ||
* | ||
@@ -8,0 +8,0 @@ * |
@@ -8,3 +8,3 @@ "use strict"; | ||
* | ||
* The version of the OpenAPI document: 0.2.0 | ||
* The version of the OpenAPI document: 0.3.0 | ||
* | ||
@@ -11,0 +11,0 @@ * |
@@ -5,3 +5,3 @@ /** | ||
* | ||
* The version of the OpenAPI document: 0.2.0 | ||
* The version of the OpenAPI document: 0.3.0 | ||
* | ||
@@ -8,0 +8,0 @@ * |
@@ -8,3 +8,3 @@ "use strict"; | ||
* | ||
* The version of the OpenAPI document: 0.2.0 | ||
* The version of the OpenAPI document: 0.3.0 | ||
* | ||
@@ -11,0 +11,0 @@ * |
@@ -5,3 +5,3 @@ /** | ||
* | ||
* The version of the OpenAPI document: 0.2.0 | ||
* The version of the OpenAPI document: 0.3.0 | ||
* | ||
@@ -8,0 +8,0 @@ * |
@@ -8,3 +8,3 @@ "use strict"; | ||
* | ||
* The version of the OpenAPI document: 0.2.0 | ||
* The version of the OpenAPI document: 0.3.0 | ||
* | ||
@@ -11,0 +11,0 @@ * |
@@ -5,3 +5,3 @@ /** | ||
* | ||
* The version of the OpenAPI document: 0.2.0 | ||
* The version of the OpenAPI document: 0.3.0 | ||
* | ||
@@ -8,0 +8,0 @@ * |
@@ -8,3 +8,3 @@ "use strict"; | ||
* | ||
* The version of the OpenAPI document: 0.2.0 | ||
* The version of the OpenAPI document: 0.3.0 | ||
* | ||
@@ -11,0 +11,0 @@ * |
@@ -5,3 +5,3 @@ /** | ||
* | ||
* The version of the OpenAPI document: 0.2.0 | ||
* The version of the OpenAPI document: 0.3.0 | ||
* | ||
@@ -8,0 +8,0 @@ * |
@@ -8,3 +8,3 @@ "use strict"; | ||
* | ||
* The version of the OpenAPI document: 0.2.0 | ||
* The version of the OpenAPI document: 0.3.0 | ||
* | ||
@@ -11,0 +11,0 @@ * |
@@ -5,3 +5,3 @@ /** | ||
* | ||
* The version of the OpenAPI document: 0.2.0 | ||
* The version of the OpenAPI document: 0.3.0 | ||
* | ||
@@ -8,0 +8,0 @@ * |
@@ -8,3 +8,3 @@ "use strict"; | ||
* | ||
* The version of the OpenAPI document: 0.2.0 | ||
* The version of the OpenAPI document: 0.3.0 | ||
* | ||
@@ -11,0 +11,0 @@ * |
@@ -5,3 +5,3 @@ /** | ||
* | ||
* The version of the OpenAPI document: 0.2.0 | ||
* The version of the OpenAPI document: 0.3.0 | ||
* | ||
@@ -27,2 +27,8 @@ * | ||
/** | ||
* | ||
* @type {string} | ||
* @memberof ConsumerGroup | ||
*/ | ||
state?: ConsumerGroupStateEnum; | ||
/** | ||
* The list of consumers associated with this consumer group | ||
@@ -34,1 +40,13 @@ * @type {Array<Consumer>} | ||
} | ||
/** | ||
* @export | ||
* @enum {string} | ||
*/ | ||
export declare enum ConsumerGroupStateEnum { | ||
Stable = "STABLE", | ||
Dead = "DEAD", | ||
Empty = "EMPTY", | ||
CompletingRebalance = "COMPLETING_REBALANCE", | ||
PreparingRebalance = "PREPARING_REBALANCE", | ||
Unknown = "UNKNOWN" | ||
} |
@@ -8,3 +8,3 @@ "use strict"; | ||
* | ||
* The version of the OpenAPI document: 0.2.0 | ||
* The version of the OpenAPI document: 0.3.0 | ||
* | ||
@@ -17,1 +17,15 @@ * | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.ConsumerGroupStateEnum = void 0; | ||
/** | ||
* @export | ||
* @enum {string} | ||
*/ | ||
var ConsumerGroupStateEnum; | ||
(function (ConsumerGroupStateEnum) { | ||
ConsumerGroupStateEnum["Stable"] = "STABLE"; | ||
ConsumerGroupStateEnum["Dead"] = "DEAD"; | ||
ConsumerGroupStateEnum["Empty"] = "EMPTY"; | ||
ConsumerGroupStateEnum["CompletingRebalance"] = "COMPLETING_REBALANCE"; | ||
ConsumerGroupStateEnum["PreparingRebalance"] = "PREPARING_REBALANCE"; | ||
ConsumerGroupStateEnum["Unknown"] = "UNKNOWN"; | ||
})(ConsumerGroupStateEnum = exports.ConsumerGroupStateEnum || (exports.ConsumerGroupStateEnum = {})); |
@@ -5,3 +5,3 @@ /** | ||
* | ||
* The version of the OpenAPI document: 0.2.0 | ||
* The version of the OpenAPI document: 0.3.0 | ||
* | ||
@@ -8,0 +8,0 @@ * |
@@ -8,3 +8,3 @@ "use strict"; | ||
* | ||
* The version of the OpenAPI document: 0.2.0 | ||
* The version of the OpenAPI document: 0.3.0 | ||
* | ||
@@ -11,0 +11,0 @@ * |
@@ -0,1 +1,14 @@ | ||
export * from './acl-binding'; | ||
export * from './acl-binding-list-page'; | ||
export * from './acl-binding-list-page-all-of'; | ||
export * from './acl-filter-any'; | ||
export * from './acl-operation'; | ||
export * from './acl-operation-filter'; | ||
export * from './acl-pattern-type'; | ||
export * from './acl-pattern-type-filter'; | ||
export * from './acl-pattern-type-filter-one-of'; | ||
export * from './acl-permission-type'; | ||
export * from './acl-permission-type-filter'; | ||
export * from './acl-resource-type'; | ||
export * from './acl-resource-type-filter'; | ||
export * from './config-entry'; | ||
@@ -6,4 +19,6 @@ export * from './consumer'; | ||
export * from './consumer-group-reset-offset-parameters'; | ||
export * from './model-error'; | ||
export * from './new-topic-input'; | ||
export * from './partition'; | ||
export * from './result-list-page'; | ||
export * from './topic'; | ||
@@ -10,0 +25,0 @@ export * from './topic-settings'; |
@@ -13,2 +13,15 @@ "use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
__exportStar(require("./acl-binding"), exports); | ||
__exportStar(require("./acl-binding-list-page"), exports); | ||
__exportStar(require("./acl-binding-list-page-all-of"), exports); | ||
__exportStar(require("./acl-filter-any"), exports); | ||
__exportStar(require("./acl-operation"), exports); | ||
__exportStar(require("./acl-operation-filter"), exports); | ||
__exportStar(require("./acl-pattern-type"), exports); | ||
__exportStar(require("./acl-pattern-type-filter"), exports); | ||
__exportStar(require("./acl-pattern-type-filter-one-of"), exports); | ||
__exportStar(require("./acl-permission-type"), exports); | ||
__exportStar(require("./acl-permission-type-filter"), exports); | ||
__exportStar(require("./acl-resource-type"), exports); | ||
__exportStar(require("./acl-resource-type-filter"), exports); | ||
__exportStar(require("./config-entry"), exports); | ||
@@ -19,4 +32,6 @@ __exportStar(require("./consumer"), exports); | ||
__exportStar(require("./consumer-group-reset-offset-parameters"), exports); | ||
__exportStar(require("./model-error"), exports); | ||
__exportStar(require("./new-topic-input"), exports); | ||
__exportStar(require("./partition"), exports); | ||
__exportStar(require("./result-list-page"), exports); | ||
__exportStar(require("./topic"), exports); | ||
@@ -23,0 +38,0 @@ __exportStar(require("./topic-settings"), exports); |
@@ -5,3 +5,3 @@ /** | ||
* | ||
* The version of the OpenAPI document: 0.2.0 | ||
* The version of the OpenAPI document: 0.3.0 | ||
* | ||
@@ -8,0 +8,0 @@ * |
@@ -8,3 +8,3 @@ "use strict"; | ||
* | ||
* The version of the OpenAPI document: 0.2.0 | ||
* The version of the OpenAPI document: 0.3.0 | ||
* | ||
@@ -11,0 +11,0 @@ * |
@@ -5,3 +5,3 @@ /** | ||
* | ||
* The version of the OpenAPI document: 0.2.0 | ||
* The version of the OpenAPI document: 0.3.0 | ||
* | ||
@@ -8,0 +8,0 @@ * |
@@ -8,3 +8,3 @@ "use strict"; | ||
* | ||
* The version of the OpenAPI document: 0.2.0 | ||
* The version of the OpenAPI document: 0.3.0 | ||
* | ||
@@ -11,0 +11,0 @@ * |
@@ -5,3 +5,3 @@ /** | ||
* | ||
* The version of the OpenAPI document: 0.2.0 | ||
* The version of the OpenAPI document: 0.3.0 | ||
* | ||
@@ -8,0 +8,0 @@ * |
@@ -8,3 +8,3 @@ "use strict"; | ||
* | ||
* The version of the OpenAPI document: 0.2.0 | ||
* The version of the OpenAPI document: 0.3.0 | ||
* | ||
@@ -11,0 +11,0 @@ * |
@@ -5,3 +5,3 @@ /** | ||
* | ||
* The version of the OpenAPI document: 0.2.0 | ||
* The version of the OpenAPI document: 0.3.0 | ||
* | ||
@@ -8,0 +8,0 @@ * |
@@ -8,3 +8,3 @@ "use strict"; | ||
* | ||
* The version of the OpenAPI document: 0.2.0 | ||
* The version of the OpenAPI document: 0.3.0 | ||
* | ||
@@ -11,0 +11,0 @@ * |
@@ -5,3 +5,3 @@ /** | ||
* | ||
* The version of the OpenAPI document: 0.2.0 | ||
* The version of the OpenAPI document: 0.3.0 | ||
* | ||
@@ -8,0 +8,0 @@ * |
@@ -8,3 +8,3 @@ "use strict"; | ||
* | ||
* The version of the OpenAPI document: 0.2.0 | ||
* The version of the OpenAPI document: 0.3.0 | ||
* | ||
@@ -11,0 +11,0 @@ * |
@@ -5,3 +5,3 @@ /** | ||
* | ||
* The version of the OpenAPI document: 0.2.0 | ||
* The version of the OpenAPI document: 0.3.0 | ||
* | ||
@@ -8,0 +8,0 @@ * |
@@ -8,3 +8,3 @@ "use strict"; | ||
* | ||
* The version of the OpenAPI document: 0.2.0 | ||
* The version of the OpenAPI document: 0.3.0 | ||
* | ||
@@ -11,0 +11,0 @@ * |
@@ -5,3 +5,3 @@ /** | ||
* | ||
* The version of the OpenAPI document: 0.2.0 | ||
* The version of the OpenAPI document: 0.3.0 | ||
* | ||
@@ -8,0 +8,0 @@ * |
@@ -8,3 +8,3 @@ "use strict"; | ||
* | ||
* The version of the OpenAPI document: 0.2.0 | ||
* The version of the OpenAPI document: 0.3.0 | ||
* | ||
@@ -11,0 +11,0 @@ * |
{ | ||
"name": "@rhoas/kafka-instance-sdk", | ||
"version": "0.11.2", | ||
"version": "0.12.0", | ||
"description": "RHOAS Kafka Instance Adminstration SDK", | ||
@@ -5,0 +5,0 @@ "author": "Red Hat Developers", |
@@ -7,3 +7,3 @@ /* tslint:disable */ | ||
* | ||
* The version of the OpenAPI document: 0.2.0 | ||
* The version of the OpenAPI document: 0.3.0 | ||
* | ||
@@ -18,3 +18,5 @@ * | ||
export * from './api/default-api'; | ||
export * from './api/acls-api'; | ||
export * from './api/groups-api'; | ||
export * from './api/topics-api'; | ||
@@ -7,3 +7,3 @@ /* tslint:disable */ | ||
* | ||
* The version of the OpenAPI document: 0.2.0 | ||
* The version of the OpenAPI document: 0.3.0 | ||
* | ||
@@ -10,0 +10,0 @@ * |
@@ -7,3 +7,3 @@ /* tslint:disable */ | ||
* | ||
* The version of the OpenAPI document: 0.2.0 | ||
* The version of the OpenAPI document: 0.3.0 | ||
* | ||
@@ -10,0 +10,0 @@ * |
@@ -7,3 +7,3 @@ /* tslint:disable */ | ||
* | ||
* The version of the OpenAPI document: 0.2.0 | ||
* The version of the OpenAPI document: 0.3.0 | ||
* | ||
@@ -10,0 +10,0 @@ * |
@@ -7,3 +7,3 @@ /* tslint:disable */ | ||
* | ||
* The version of the OpenAPI document: 0.2.0 | ||
* The version of the OpenAPI document: 0.3.0 | ||
* | ||
@@ -10,0 +10,0 @@ * |
@@ -7,3 +7,3 @@ /* tslint:disable */ | ||
* | ||
* The version of the OpenAPI document: 0.2.0 | ||
* The version of the OpenAPI document: 0.3.0 | ||
* | ||
@@ -10,0 +10,0 @@ * |
@@ -7,3 +7,3 @@ /* tslint:disable */ | ||
* | ||
* The version of the OpenAPI document: 0.2.0 | ||
* The version of the OpenAPI document: 0.3.0 | ||
* | ||
@@ -10,0 +10,0 @@ * |
@@ -7,3 +7,3 @@ /* tslint:disable */ | ||
* | ||
* The version of the OpenAPI document: 0.2.0 | ||
* The version of the OpenAPI document: 0.3.0 | ||
* | ||
@@ -10,0 +10,0 @@ * |
@@ -7,3 +7,3 @@ /* tslint:disable */ | ||
* | ||
* The version of the OpenAPI document: 0.2.0 | ||
* The version of the OpenAPI document: 0.3.0 | ||
* | ||
@@ -32,2 +32,8 @@ * | ||
/** | ||
* | ||
* @type {string} | ||
* @memberof ConsumerGroup | ||
*/ | ||
state?: ConsumerGroupStateEnum; | ||
/** | ||
* The list of consumers associated with this consumer group | ||
@@ -40,2 +46,16 @@ * @type {Array<Consumer>} | ||
/** | ||
* @export | ||
* @enum {string} | ||
*/ | ||
export enum ConsumerGroupStateEnum { | ||
Stable = 'STABLE', | ||
Dead = 'DEAD', | ||
Empty = 'EMPTY', | ||
CompletingRebalance = 'COMPLETING_REBALANCE', | ||
PreparingRebalance = 'PREPARING_REBALANCE', | ||
Unknown = 'UNKNOWN' | ||
} | ||
@@ -7,3 +7,3 @@ /* tslint:disable */ | ||
* | ||
* The version of the OpenAPI document: 0.2.0 | ||
* The version of the OpenAPI document: 0.3.0 | ||
* | ||
@@ -10,0 +10,0 @@ * |
@@ -0,1 +1,14 @@ | ||
export * from './acl-binding'; | ||
export * from './acl-binding-list-page'; | ||
export * from './acl-binding-list-page-all-of'; | ||
export * from './acl-filter-any'; | ||
export * from './acl-operation'; | ||
export * from './acl-operation-filter'; | ||
export * from './acl-pattern-type'; | ||
export * from './acl-pattern-type-filter'; | ||
export * from './acl-pattern-type-filter-one-of'; | ||
export * from './acl-permission-type'; | ||
export * from './acl-permission-type-filter'; | ||
export * from './acl-resource-type'; | ||
export * from './acl-resource-type-filter'; | ||
export * from './config-entry'; | ||
@@ -6,4 +19,6 @@ export * from './consumer'; | ||
export * from './consumer-group-reset-offset-parameters'; | ||
export * from './model-error'; | ||
export * from './new-topic-input'; | ||
export * from './partition'; | ||
export * from './result-list-page'; | ||
export * from './topic'; | ||
@@ -10,0 +25,0 @@ export * from './topic-settings'; |
@@ -7,3 +7,3 @@ /* tslint:disable */ | ||
* | ||
* The version of the OpenAPI document: 0.2.0 | ||
* The version of the OpenAPI document: 0.3.0 | ||
* | ||
@@ -10,0 +10,0 @@ * |
@@ -7,3 +7,3 @@ /* tslint:disable */ | ||
* | ||
* The version of the OpenAPI document: 0.2.0 | ||
* The version of the OpenAPI document: 0.3.0 | ||
* | ||
@@ -10,0 +10,0 @@ * |
@@ -7,3 +7,3 @@ /* tslint:disable */ | ||
* | ||
* The version of the OpenAPI document: 0.2.0 | ||
* The version of the OpenAPI document: 0.3.0 | ||
* | ||
@@ -10,0 +10,0 @@ * |
@@ -7,3 +7,3 @@ /* tslint:disable */ | ||
* | ||
* The version of the OpenAPI document: 0.2.0 | ||
* The version of the OpenAPI document: 0.3.0 | ||
* | ||
@@ -10,0 +10,0 @@ * |
@@ -7,3 +7,3 @@ /* tslint:disable */ | ||
* | ||
* The version of the OpenAPI document: 0.2.0 | ||
* The version of the OpenAPI document: 0.3.0 | ||
* | ||
@@ -10,0 +10,0 @@ * |
@@ -7,3 +7,3 @@ /* tslint:disable */ | ||
* | ||
* The version of the OpenAPI document: 0.2.0 | ||
* The version of the OpenAPI document: 0.3.0 | ||
* | ||
@@ -10,0 +10,0 @@ * |
@@ -7,3 +7,3 @@ /* tslint:disable */ | ||
* | ||
* The version of the OpenAPI document: 0.2.0 | ||
* The version of the OpenAPI document: 0.3.0 | ||
* | ||
@@ -10,0 +10,0 @@ * |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
301704
114
6887
1