@octelium/apis 1.0.2 → 1.0.3
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/main/corev1/corev1.d.ts +252 -0
- package/main/corev1/corev1.d.ts.map +1 -1
- package/main/corev1/corev1.js +476 -3
- package/main/corev1/corev1.js.map +1 -1
- package/main/corev1/corev1.ts +648 -3
- package/main/userv1/userv1.d.ts +4 -0
- package/main/userv1/userv1.d.ts.map +1 -1
- package/main/userv1/userv1.js +9 -1
- package/main/userv1/userv1.js.map +1 -1
- package/main/userv1/userv1.ts +13 -1
- package/package.json +1 -1
package/main/userv1/userv1.ts
CHANGED
|
@@ -880,6 +880,10 @@ export interface ListServiceOptions {
|
|
|
880
880
|
* @generated from protobuf field: string namespace = 2
|
|
881
881
|
*/
|
|
882
882
|
namespace: string;
|
|
883
|
+
/**
|
|
884
|
+
* @generated from protobuf field: octelium.api.main.user.v1.Service.Spec.Type type = 3
|
|
885
|
+
*/
|
|
886
|
+
type: Service_Spec_Type;
|
|
883
887
|
}
|
|
884
888
|
/**
|
|
885
889
|
* @generated from protobuf message octelium.api.main.user.v1.ListNamespaceOptions
|
|
@@ -3194,12 +3198,14 @@ class ListServiceOptions$Type extends MessageType<ListServiceOptions> {
|
|
|
3194
3198
|
constructor() {
|
|
3195
3199
|
super("octelium.api.main.user.v1.ListServiceOptions", [
|
|
3196
3200
|
{ no: 1, name: "common", kind: "message", T: () => CommonListOptions },
|
|
3197
|
-
{ no: 2, name: "namespace", kind: "scalar", T: 9 /*ScalarType.STRING*/ }
|
|
3201
|
+
{ no: 2, name: "namespace", kind: "scalar", T: 9 /*ScalarType.STRING*/ },
|
|
3202
|
+
{ no: 3, name: "type", kind: "enum", T: () => ["octelium.api.main.user.v1.Service.Spec.Type", Service_Spec_Type] }
|
|
3198
3203
|
]);
|
|
3199
3204
|
}
|
|
3200
3205
|
create(value?: PartialMessage<ListServiceOptions>): ListServiceOptions {
|
|
3201
3206
|
const message = globalThis.Object.create((this.messagePrototype!));
|
|
3202
3207
|
message.namespace = "";
|
|
3208
|
+
message.type = 0;
|
|
3203
3209
|
if (value !== undefined)
|
|
3204
3210
|
reflectionMergePartial<ListServiceOptions>(this, message, value);
|
|
3205
3211
|
return message;
|
|
@@ -3215,6 +3221,9 @@ class ListServiceOptions$Type extends MessageType<ListServiceOptions> {
|
|
|
3215
3221
|
case /* string namespace */ 2:
|
|
3216
3222
|
message.namespace = reader.string();
|
|
3217
3223
|
break;
|
|
3224
|
+
case /* octelium.api.main.user.v1.Service.Spec.Type type */ 3:
|
|
3225
|
+
message.type = reader.int32();
|
|
3226
|
+
break;
|
|
3218
3227
|
default:
|
|
3219
3228
|
let u = options.readUnknownField;
|
|
3220
3229
|
if (u === "throw")
|
|
@@ -3233,6 +3242,9 @@ class ListServiceOptions$Type extends MessageType<ListServiceOptions> {
|
|
|
3233
3242
|
/* string namespace = 2; */
|
|
3234
3243
|
if (message.namespace !== "")
|
|
3235
3244
|
writer.tag(2, WireType.LengthDelimited).string(message.namespace);
|
|
3245
|
+
/* octelium.api.main.user.v1.Service.Spec.Type type = 3; */
|
|
3246
|
+
if (message.type !== 0)
|
|
3247
|
+
writer.tag(3, WireType.Varint).int32(message.type);
|
|
3236
3248
|
let u = options.writeUnknownFields;
|
|
3237
3249
|
if (u !== false)
|
|
3238
3250
|
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
|