@daocloud-proto/mcamel-rabbitmq 0.4.1-32 → 0.4.1-37
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/package.json +1 -1
- package/rabbitmq.pb.ts +9 -5
package/package.json
CHANGED
package/rabbitmq.pb.ts
CHANGED
|
@@ -136,10 +136,14 @@ export type GetRabbitMqParamRespSelectDataStringValue = {
|
|
|
136
136
|
}
|
|
137
137
|
|
|
138
138
|
export type GetRabbitMqParamRespSelectDataResourceValue = {
|
|
139
|
-
cpuRequest?:
|
|
140
|
-
cpuLimit?:
|
|
141
|
-
memoryRequest?:
|
|
142
|
-
memoryLimit?:
|
|
139
|
+
cpuRequest?: string
|
|
140
|
+
cpuLimit?: string
|
|
141
|
+
memoryRequest?: string
|
|
142
|
+
memoryLimit?: string
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
export type GetRabbitMqParamRespSelectDataIntValue = {
|
|
146
|
+
value?: number
|
|
143
147
|
}
|
|
144
148
|
|
|
145
149
|
|
|
@@ -147,7 +151,7 @@ type BaseGetRabbitMqParamRespSelectData = {
|
|
|
147
151
|
}
|
|
148
152
|
|
|
149
153
|
export type GetRabbitMqParamRespSelectData = BaseGetRabbitMqParamRespSelectData
|
|
150
|
-
& OneOf<{ sValue: GetRabbitMqParamRespSelectDataStringValue; rValue: GetRabbitMqParamRespSelectDataResourceValue }>
|
|
154
|
+
& OneOf<{ sValue: GetRabbitMqParamRespSelectDataStringValue; rValue: GetRabbitMqParamRespSelectDataResourceValue; iValue: GetRabbitMqParamRespSelectDataIntValue }>
|
|
151
155
|
|
|
152
156
|
export type GetRabbitMqParamRespSelect = {
|
|
153
157
|
selectType?: GetRabbitMqParamRespSelectSelectType
|