@daocloud-proto/mcamel-rabbitmq 0.4.1-5 → 0.4.1-53

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/rabbitmq.pb.ts +10 -5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name":"@daocloud-proto/mcamel-rabbitmq",
3
- "version":"0.4.1-5",
3
+ "version":"0.4.1-53",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/rabbitmq.pb.ts CHANGED
@@ -121,6 +121,7 @@ export type UpdateRabbitMqParamsReq = {
121
121
  cpuLimit?: string
122
122
  memoryRequest?: string
123
123
  memoryLimit?: string
124
+ version?: string
124
125
  }
125
126
 
126
127
  export type UpdateRabbitMqParamsResp = {
@@ -136,10 +137,14 @@ export type GetRabbitMqParamRespSelectDataStringValue = {
136
137
  }
137
138
 
138
139
  export type GetRabbitMqParamRespSelectDataResourceValue = {
139
- cpuRequest?: number
140
- cpuLimit?: number
141
- memoryRequest?: number
142
- memoryLimit?: number
140
+ cpuRequest?: string
141
+ cpuLimit?: string
142
+ memoryRequest?: string
143
+ memoryLimit?: string
144
+ }
145
+
146
+ export type GetRabbitMqParamRespSelectDataIntValue = {
147
+ value?: number
143
148
  }
144
149
 
145
150
 
@@ -147,7 +152,7 @@ type BaseGetRabbitMqParamRespSelectData = {
147
152
  }
148
153
 
149
154
  export type GetRabbitMqParamRespSelectData = BaseGetRabbitMqParamRespSelectData
150
- & OneOf<{ sValue: GetRabbitMqParamRespSelectDataStringValue; rValue: GetRabbitMqParamRespSelectDataResourceValue }>
155
+ & OneOf<{ sValue: GetRabbitMqParamRespSelectDataStringValue; rValue: GetRabbitMqParamRespSelectDataResourceValue; iValue: GetRabbitMqParamRespSelectDataIntValue }>
151
156
 
152
157
  export type GetRabbitMqParamRespSelect = {
153
158
  selectType?: GetRabbitMqParamRespSelectSelectType