@aceplus/smartace-api 3.6.0-alpha.4 → 3.6.0-alpha.5

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 CHANGED
@@ -5,7 +5,7 @@
5
5
  "grpc-web": "^1.4.2",
6
6
  "ts-protoc-gen": "^0.15.0"
7
7
  },
8
- "version": "3.6.0-alpha.4",
8
+ "version": "3.6.0-alpha.5",
9
9
  "description": "Generated proto files.",
10
10
  "author": "TKF",
11
11
  "files": [
@@ -1123,9 +1123,6 @@ export namespace CabinetProto {
1123
1123
  getCabinetId(): number;
1124
1124
  setCabinetId(value: number): void;
1125
1125
 
1126
- getRequesterId(): number;
1127
- setRequesterId(value: number): void;
1128
-
1129
1126
  hasRequestTime(): boolean;
1130
1127
  clearRequestTime(): void;
1131
1128
  getRequestTime(): google_protobuf_timestamp_pb.Timestamp | undefined;
@@ -1164,7 +1161,6 @@ export namespace CabinetProto {
1164
1161
  export namespace CreateRequest {
1165
1162
  export type AsObject = {
1166
1163
  cabinetId: number,
1167
- requesterId: number,
1168
1164
  requestTime?: google_protobuf_timestamp_pb.Timestamp.AsObject,
1169
1165
  validUntil?: google_protobuf_timestamp_pb.Timestamp.AsObject,
1170
1166
  longitude: number,
@@ -1280,7 +1276,6 @@ export namespace CabinetProto {
1280
1276
  export interface OpenRequestTypeMap {
1281
1277
  APP_OPENING: 0;
1282
1278
  ADMIN_OPENING: 1;
1283
- MANHOLE_OPENING: 2;
1284
1279
  }
1285
1280
 
1286
1281
  export const OpenRequestType: OpenRequestTypeMap;
@@ -8034,8 +8034,7 @@ proto.Spic.CabinetProto.OpenRequest.serializeBinaryToWriter = function(message,
8034
8034
  */
8035
8035
  proto.Spic.CabinetProto.OpenRequest.OpenRequestType = {
8036
8036
  APP_OPENING: 0,
8037
- ADMIN_OPENING: 1,
8038
- MANHOLE_OPENING: 2
8037
+ ADMIN_OPENING: 1
8039
8038
  };
8040
8039
 
8041
8040
 
@@ -8071,7 +8070,6 @@ proto.Spic.CabinetProto.OpenRequest.CreateRequest.prototype.toObject = function(
8071
8070
  proto.Spic.CabinetProto.OpenRequest.CreateRequest.toObject = function(includeInstance, msg) {
8072
8071
  var f, obj = {
8073
8072
  cabinetId: jspb.Message.getFieldWithDefault(msg, 1, 0),
8074
- requesterId: jspb.Message.getFieldWithDefault(msg, 2, 0),
8075
8073
  requestTime: (f = msg.getRequestTime()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
8076
8074
  validUntil: (f = msg.getValidUntil()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
8077
8075
  longitude: jspb.Message.getFloatingPointFieldWithDefault(msg, 5, 0.0),
@@ -8119,10 +8117,6 @@ proto.Spic.CabinetProto.OpenRequest.CreateRequest.deserializeBinaryFromReader =
8119
8117
  var value = /** @type {number} */ (reader.readInt64());
8120
8118
  msg.setCabinetId(value);
8121
8119
  break;
8122
- case 2:
8123
- var value = /** @type {number} */ (reader.readInt64());
8124
- msg.setRequesterId(value);
8125
- break;
8126
8120
  case 3:
8127
8121
  var value = new google_protobuf_timestamp_pb.Timestamp;
8128
8122
  reader.readMessage(value,google_protobuf_timestamp_pb.Timestamp.deserializeBinaryFromReader);
@@ -8189,13 +8183,6 @@ proto.Spic.CabinetProto.OpenRequest.CreateRequest.serializeBinaryToWriter = func
8189
8183
  f
8190
8184
  );
8191
8185
  }
8192
- f = message.getRequesterId();
8193
- if (f !== 0) {
8194
- writer.writeInt64(
8195
- 2,
8196
- f
8197
- );
8198
- }
8199
8186
  f = message.getRequestTime();
8200
8187
  if (f != null) {
8201
8188
  writer.writeMessage(
@@ -8268,24 +8255,6 @@ proto.Spic.CabinetProto.OpenRequest.CreateRequest.prototype.setCabinetId = funct
8268
8255
  };
8269
8256
 
8270
8257
 
8271
- /**
8272
- * optional int64 requester_id = 2;
8273
- * @return {number}
8274
- */
8275
- proto.Spic.CabinetProto.OpenRequest.CreateRequest.prototype.getRequesterId = function() {
8276
- return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 2, 0));
8277
- };
8278
-
8279
-
8280
- /**
8281
- * @param {number} value
8282
- * @return {!proto.Spic.CabinetProto.OpenRequest.CreateRequest} returns this
8283
- */
8284
- proto.Spic.CabinetProto.OpenRequest.CreateRequest.prototype.setRequesterId = function(value) {
8285
- return jspb.Message.setProto3IntField(this, 2, value);
8286
- };
8287
-
8288
-
8289
8258
  /**
8290
8259
  * optional google.protobuf.Timestamp request_time = 3;
8291
8260
  * @return {?proto.google.protobuf.Timestamp}