@aceplus/smartace-api 3.5.0 → 3.6.0-alpha.11

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.5.0",
8
+ "version": "3.6.0-alpha.11",
9
9
  "description": "Generated proto files.",
10
10
  "author": "TKF",
11
11
  "files": [
@@ -22,6 +22,9 @@ export class AssetProto extends jspb.Message {
22
22
  getUid(): string;
23
23
  setUid(value: string): void;
24
24
 
25
+ getStatus(): number;
26
+ setStatus(value: number): void;
27
+
25
28
  hasLastStatusUpdate(): boolean;
26
29
  clearLastStatusUpdate(): void;
27
30
  getLastStatusUpdate(): google_protobuf_timestamp_pb.Timestamp | undefined;
@@ -88,6 +91,7 @@ export namespace AssetProto {
88
91
  name: string,
89
92
  locationId: number,
90
93
  uid: string,
94
+ status: number,
91
95
  lastStatusUpdate?: google_protobuf_timestamp_pb.Timestamp.AsObject,
92
96
  groupId: string,
93
97
  clientId: number,
@@ -119,12 +123,6 @@ export namespace AssetProto {
119
123
  getImage(): google_protobuf_wrappers_pb.BytesValue | undefined;
120
124
  setImage(value?: google_protobuf_wrappers_pb.BytesValue): void;
121
125
 
122
- getExtIo1Name(): string;
123
- setExtIo1Name(value: string): void;
124
-
125
- getExtIo2Name(): string;
126
- setExtIo2Name(value: string): void;
127
-
128
126
  getGroupId(): string;
129
127
  setGroupId(value: string): void;
130
128
 
@@ -150,8 +148,6 @@ export namespace AssetProto {
150
148
  locationId: number,
151
149
  uid: string,
152
150
  image?: google_protobuf_wrappers_pb.BytesValue.AsObject,
153
- extIo1Name: string,
154
- extIo2Name: string,
155
151
  groupId: string,
156
152
  clientId: number,
157
153
  assetType: AssetProto.AssetTypeMap[keyof AssetProto.AssetTypeMap],
@@ -211,12 +207,6 @@ export namespace AssetProto {
211
207
  getImage(): google_protobuf_wrappers_pb.BytesValue | undefined;
212
208
  setImage(value?: google_protobuf_wrappers_pb.BytesValue): void;
213
209
 
214
- getExtIo1Name(): string;
215
- setExtIo1Name(value: string): void;
216
-
217
- getExtIo2Name(): string;
218
- setExtIo2Name(value: string): void;
219
-
220
210
  getGroupId(): string;
221
211
  setGroupId(value: string): void;
222
212
 
@@ -243,8 +233,6 @@ export namespace AssetProto {
243
233
  locationId: number,
244
234
  uid: string,
245
235
  image?: google_protobuf_wrappers_pb.BytesValue.AsObject,
246
- extIo1Name: string,
247
- extIo2Name: string,
248
236
  groupId: string,
249
237
  clientId: number,
250
238
  assetType: AssetProto.AssetTypeMap[keyof AssetProto.AssetTypeMap],
@@ -552,8 +540,8 @@ export namespace AssetProto {
552
540
  export const BatteryStatus: BatteryStatusMap;
553
541
 
554
542
  export interface DeviceTypeMap {
555
- SPICV2: 0;
556
- SPICV3: 1;
543
+ SPICV2_PASSIVE_CABINET: 0;
544
+ SPICV2_MANHOLE: 1;
557
545
  }
558
546
 
559
547
  export const DeviceType: DeviceTypeMap;
@@ -656,6 +644,8 @@ export interface ComponentIdentifierMap {
656
644
  EXT_ALARM_1: 31;
657
645
  EXT_ALARM_2: 32;
658
646
  EXT_ALARM_3: 33;
647
+ MANHOLE_COVER: 40;
648
+ MANHOLE_CLOSURE_OPEN: 41;
659
649
  }
660
650
 
661
651
  export const ComponentIdentifier: ComponentIdentifierMap;
package/spic.asset_pb.js CHANGED
@@ -434,6 +434,7 @@ proto.Spic.AssetProto.toObject = function(includeInstance, msg) {
434
434
  name: jspb.Message.getFieldWithDefault(msg, 2, ""),
435
435
  locationId: jspb.Message.getFieldWithDefault(msg, 3, 0),
436
436
  uid: jspb.Message.getFieldWithDefault(msg, 4, ""),
437
+ status: jspb.Message.getFieldWithDefault(msg, 5, 0),
437
438
  lastStatusUpdate: (f = msg.getLastStatusUpdate()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
438
439
  groupId: jspb.Message.getFieldWithDefault(msg, 8, ""),
439
440
  clientId: jspb.Message.getFieldWithDefault(msg, 9, 0),
@@ -501,6 +502,10 @@ proto.Spic.AssetProto.deserializeBinaryFromReader = function(msg, reader) {
501
502
  var value = /** @type {string} */ (reader.readString());
502
503
  msg.setUid(value);
503
504
  break;
505
+ case 5:
506
+ var value = /** @type {number} */ (reader.readInt32());
507
+ msg.setStatus(value);
508
+ break;
504
509
  case 7:
505
510
  var value = new google_protobuf_timestamp_pb.Timestamp;
506
511
  reader.readMessage(value,google_protobuf_timestamp_pb.Timestamp.deserializeBinaryFromReader);
@@ -618,6 +623,13 @@ proto.Spic.AssetProto.serializeBinaryToWriter = function(message, writer) {
618
623
  f
619
624
  );
620
625
  }
626
+ f = message.getStatus();
627
+ if (f !== 0) {
628
+ writer.writeInt32(
629
+ 5,
630
+ f
631
+ );
632
+ }
621
633
  f = message.getLastStatusUpdate();
622
634
  if (f != null) {
623
635
  writer.writeMessage(
@@ -737,8 +749,8 @@ proto.Spic.AssetProto.BatteryStatus = {
737
749
  * @enum {number}
738
750
  */
739
751
  proto.Spic.AssetProto.DeviceType = {
740
- SPICV2: 0,
741
- SPICV3: 1
752
+ SPICV2_PASSIVE_CABINET: 0,
753
+ SPICV2_MANHOLE: 1
742
754
  };
743
755
 
744
756
  /**
@@ -786,11 +798,9 @@ proto.Spic.AssetProto.CreateRequest.toObject = function(includeInstance, msg) {
786
798
  locationId: jspb.Message.getFieldWithDefault(msg, 2, 0),
787
799
  uid: jspb.Message.getFieldWithDefault(msg, 3, ""),
788
800
  image: (f = msg.getImage()) && google_protobuf_wrappers_pb.BytesValue.toObject(includeInstance, f),
789
- extIo1Name: jspb.Message.getFieldWithDefault(msg, 5, ""),
790
- extIo2Name: jspb.Message.getFieldWithDefault(msg, 6, ""),
791
- groupId: jspb.Message.getFieldWithDefault(msg, 7, ""),
792
- clientId: jspb.Message.getFieldWithDefault(msg, 8, 0),
793
- assetType: jspb.Message.getFieldWithDefault(msg, 9, 0)
801
+ groupId: jspb.Message.getFieldWithDefault(msg, 5, ""),
802
+ clientId: jspb.Message.getFieldWithDefault(msg, 6, 0),
803
+ assetType: jspb.Message.getFieldWithDefault(msg, 7, 0)
794
804
  };
795
805
 
796
806
  if (includeInstance) {
@@ -845,22 +855,14 @@ proto.Spic.AssetProto.CreateRequest.deserializeBinaryFromReader = function(msg,
845
855
  msg.setImage(value);
846
856
  break;
847
857
  case 5:
848
- var value = /** @type {string} */ (reader.readString());
849
- msg.setExtIo1Name(value);
850
- break;
851
- case 6:
852
- var value = /** @type {string} */ (reader.readString());
853
- msg.setExtIo2Name(value);
854
- break;
855
- case 7:
856
858
  var value = /** @type {string} */ (reader.readString());
857
859
  msg.setGroupId(value);
858
860
  break;
859
- case 8:
861
+ case 6:
860
862
  var value = /** @type {number} */ (reader.readInt32());
861
863
  msg.setClientId(value);
862
864
  break;
863
- case 9:
865
+ case 7:
864
866
  var value = /** @type {!proto.Spic.AssetProto.AssetType} */ (reader.readEnum());
865
867
  msg.setAssetType(value);
866
868
  break;
@@ -922,38 +924,24 @@ proto.Spic.AssetProto.CreateRequest.serializeBinaryToWriter = function(message,
922
924
  google_protobuf_wrappers_pb.BytesValue.serializeBinaryToWriter
923
925
  );
924
926
  }
925
- f = message.getExtIo1Name();
926
- if (f.length > 0) {
927
- writer.writeString(
928
- 5,
929
- f
930
- );
931
- }
932
- f = message.getExtIo2Name();
933
- if (f.length > 0) {
934
- writer.writeString(
935
- 6,
936
- f
937
- );
938
- }
939
927
  f = message.getGroupId();
940
928
  if (f.length > 0) {
941
929
  writer.writeString(
942
- 7,
930
+ 5,
943
931
  f
944
932
  );
945
933
  }
946
934
  f = message.getClientId();
947
935
  if (f !== 0) {
948
936
  writer.writeInt32(
949
- 8,
937
+ 6,
950
938
  f
951
939
  );
952
940
  }
953
941
  f = message.getAssetType();
954
942
  if (f !== 0.0) {
955
943
  writer.writeEnum(
956
- 9,
944
+ 7,
957
945
  f
958
946
  );
959
947
  }
@@ -1052,47 +1040,11 @@ proto.Spic.AssetProto.CreateRequest.prototype.hasImage = function() {
1052
1040
 
1053
1041
 
1054
1042
  /**
1055
- * optional string ext_io_1_name = 5;
1056
- * @return {string}
1057
- */
1058
- proto.Spic.AssetProto.CreateRequest.prototype.getExtIo1Name = function() {
1059
- return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 5, ""));
1060
- };
1061
-
1062
-
1063
- /**
1064
- * @param {string} value
1065
- * @return {!proto.Spic.AssetProto.CreateRequest} returns this
1066
- */
1067
- proto.Spic.AssetProto.CreateRequest.prototype.setExtIo1Name = function(value) {
1068
- return jspb.Message.setProto3StringField(this, 5, value);
1069
- };
1070
-
1071
-
1072
- /**
1073
- * optional string ext_io_2_name = 6;
1074
- * @return {string}
1075
- */
1076
- proto.Spic.AssetProto.CreateRequest.prototype.getExtIo2Name = function() {
1077
- return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 6, ""));
1078
- };
1079
-
1080
-
1081
- /**
1082
- * @param {string} value
1083
- * @return {!proto.Spic.AssetProto.CreateRequest} returns this
1084
- */
1085
- proto.Spic.AssetProto.CreateRequest.prototype.setExtIo2Name = function(value) {
1086
- return jspb.Message.setProto3StringField(this, 6, value);
1087
- };
1088
-
1089
-
1090
- /**
1091
- * optional string group_id = 7;
1043
+ * optional string group_id = 5;
1092
1044
  * @return {string}
1093
1045
  */
1094
1046
  proto.Spic.AssetProto.CreateRequest.prototype.getGroupId = function() {
1095
- return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 7, ""));
1047
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 5, ""));
1096
1048
  };
1097
1049
 
1098
1050
 
@@ -1101,16 +1053,16 @@ proto.Spic.AssetProto.CreateRequest.prototype.getGroupId = function() {
1101
1053
  * @return {!proto.Spic.AssetProto.CreateRequest} returns this
1102
1054
  */
1103
1055
  proto.Spic.AssetProto.CreateRequest.prototype.setGroupId = function(value) {
1104
- return jspb.Message.setProto3StringField(this, 7, value);
1056
+ return jspb.Message.setProto3StringField(this, 5, value);
1105
1057
  };
1106
1058
 
1107
1059
 
1108
1060
  /**
1109
- * optional int32 client_id = 8;
1061
+ * optional int32 client_id = 6;
1110
1062
  * @return {number}
1111
1063
  */
1112
1064
  proto.Spic.AssetProto.CreateRequest.prototype.getClientId = function() {
1113
- return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 8, 0));
1065
+ return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 6, 0));
1114
1066
  };
1115
1067
 
1116
1068
 
@@ -1119,16 +1071,16 @@ proto.Spic.AssetProto.CreateRequest.prototype.getClientId = function() {
1119
1071
  * @return {!proto.Spic.AssetProto.CreateRequest} returns this
1120
1072
  */
1121
1073
  proto.Spic.AssetProto.CreateRequest.prototype.setClientId = function(value) {
1122
- return jspb.Message.setProto3IntField(this, 8, value);
1074
+ return jspb.Message.setProto3IntField(this, 6, value);
1123
1075
  };
1124
1076
 
1125
1077
 
1126
1078
  /**
1127
- * optional AssetType asset_type = 9;
1079
+ * optional AssetType asset_type = 7;
1128
1080
  * @return {!proto.Spic.AssetProto.AssetType}
1129
1081
  */
1130
1082
  proto.Spic.AssetProto.CreateRequest.prototype.getAssetType = function() {
1131
- return /** @type {!proto.Spic.AssetProto.AssetType} */ (jspb.Message.getFieldWithDefault(this, 9, 0));
1083
+ return /** @type {!proto.Spic.AssetProto.AssetType} */ (jspb.Message.getFieldWithDefault(this, 7, 0));
1132
1084
  };
1133
1085
 
1134
1086
 
@@ -1137,7 +1089,7 @@ proto.Spic.AssetProto.CreateRequest.prototype.getAssetType = function() {
1137
1089
  * @return {!proto.Spic.AssetProto.CreateRequest} returns this
1138
1090
  */
1139
1091
  proto.Spic.AssetProto.CreateRequest.prototype.setAssetType = function(value) {
1140
- return jspb.Message.setProto3EnumField(this, 9, value);
1092
+ return jspb.Message.setProto3EnumField(this, 7, value);
1141
1093
  };
1142
1094
 
1143
1095
 
@@ -1400,11 +1352,9 @@ proto.Spic.AssetProto.UpdateRequest.toObject = function(includeInstance, msg) {
1400
1352
  locationId: jspb.Message.getFieldWithDefault(msg, 3, 0),
1401
1353
  uid: jspb.Message.getFieldWithDefault(msg, 4, ""),
1402
1354
  image: (f = msg.getImage()) && google_protobuf_wrappers_pb.BytesValue.toObject(includeInstance, f),
1403
- extIo1Name: jspb.Message.getFieldWithDefault(msg, 6, ""),
1404
- extIo2Name: jspb.Message.getFieldWithDefault(msg, 7, ""),
1405
- groupId: jspb.Message.getFieldWithDefault(msg, 8, ""),
1406
- clientId: jspb.Message.getFieldWithDefault(msg, 9, 0),
1407
- assetType: jspb.Message.getFieldWithDefault(msg, 10, 0)
1355
+ groupId: jspb.Message.getFieldWithDefault(msg, 6, ""),
1356
+ clientId: jspb.Message.getFieldWithDefault(msg, 7, 0),
1357
+ assetType: jspb.Message.getFieldWithDefault(msg, 8, 0)
1408
1358
  };
1409
1359
 
1410
1360
  if (includeInstance) {
@@ -1463,22 +1413,14 @@ proto.Spic.AssetProto.UpdateRequest.deserializeBinaryFromReader = function(msg,
1463
1413
  msg.setImage(value);
1464
1414
  break;
1465
1415
  case 6:
1466
- var value = /** @type {string} */ (reader.readString());
1467
- msg.setExtIo1Name(value);
1468
- break;
1469
- case 7:
1470
- var value = /** @type {string} */ (reader.readString());
1471
- msg.setExtIo2Name(value);
1472
- break;
1473
- case 8:
1474
1416
  var value = /** @type {string} */ (reader.readString());
1475
1417
  msg.setGroupId(value);
1476
1418
  break;
1477
- case 9:
1419
+ case 7:
1478
1420
  var value = /** @type {number} */ (reader.readInt32());
1479
1421
  msg.setClientId(value);
1480
1422
  break;
1481
- case 10:
1423
+ case 8:
1482
1424
  var value = /** @type {!proto.Spic.AssetProto.AssetType} */ (reader.readEnum());
1483
1425
  msg.setAssetType(value);
1484
1426
  break;
@@ -1547,38 +1489,24 @@ proto.Spic.AssetProto.UpdateRequest.serializeBinaryToWriter = function(message,
1547
1489
  google_protobuf_wrappers_pb.BytesValue.serializeBinaryToWriter
1548
1490
  );
1549
1491
  }
1550
- f = message.getExtIo1Name();
1551
- if (f.length > 0) {
1552
- writer.writeString(
1553
- 6,
1554
- f
1555
- );
1556
- }
1557
- f = message.getExtIo2Name();
1558
- if (f.length > 0) {
1559
- writer.writeString(
1560
- 7,
1561
- f
1562
- );
1563
- }
1564
1492
  f = message.getGroupId();
1565
1493
  if (f.length > 0) {
1566
1494
  writer.writeString(
1567
- 8,
1495
+ 6,
1568
1496
  f
1569
1497
  );
1570
1498
  }
1571
1499
  f = message.getClientId();
1572
1500
  if (f !== 0) {
1573
1501
  writer.writeInt32(
1574
- 9,
1502
+ 7,
1575
1503
  f
1576
1504
  );
1577
1505
  }
1578
1506
  f = message.getAssetType();
1579
1507
  if (f !== 0.0) {
1580
1508
  writer.writeEnum(
1581
- 10,
1509
+ 8,
1582
1510
  f
1583
1511
  );
1584
1512
  }
@@ -1695,47 +1623,11 @@ proto.Spic.AssetProto.UpdateRequest.prototype.hasImage = function() {
1695
1623
 
1696
1624
 
1697
1625
  /**
1698
- * optional string ext_io_1_name = 6;
1699
- * @return {string}
1700
- */
1701
- proto.Spic.AssetProto.UpdateRequest.prototype.getExtIo1Name = function() {
1702
- return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 6, ""));
1703
- };
1704
-
1705
-
1706
- /**
1707
- * @param {string} value
1708
- * @return {!proto.Spic.AssetProto.UpdateRequest} returns this
1709
- */
1710
- proto.Spic.AssetProto.UpdateRequest.prototype.setExtIo1Name = function(value) {
1711
- return jspb.Message.setProto3StringField(this, 6, value);
1712
- };
1713
-
1714
-
1715
- /**
1716
- * optional string ext_io_2_name = 7;
1717
- * @return {string}
1718
- */
1719
- proto.Spic.AssetProto.UpdateRequest.prototype.getExtIo2Name = function() {
1720
- return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 7, ""));
1721
- };
1722
-
1723
-
1724
- /**
1725
- * @param {string} value
1726
- * @return {!proto.Spic.AssetProto.UpdateRequest} returns this
1727
- */
1728
- proto.Spic.AssetProto.UpdateRequest.prototype.setExtIo2Name = function(value) {
1729
- return jspb.Message.setProto3StringField(this, 7, value);
1730
- };
1731
-
1732
-
1733
- /**
1734
- * optional string group_id = 8;
1626
+ * optional string group_id = 6;
1735
1627
  * @return {string}
1736
1628
  */
1737
1629
  proto.Spic.AssetProto.UpdateRequest.prototype.getGroupId = function() {
1738
- return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 8, ""));
1630
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 6, ""));
1739
1631
  };
1740
1632
 
1741
1633
 
@@ -1744,16 +1636,16 @@ proto.Spic.AssetProto.UpdateRequest.prototype.getGroupId = function() {
1744
1636
  * @return {!proto.Spic.AssetProto.UpdateRequest} returns this
1745
1637
  */
1746
1638
  proto.Spic.AssetProto.UpdateRequest.prototype.setGroupId = function(value) {
1747
- return jspb.Message.setProto3StringField(this, 8, value);
1639
+ return jspb.Message.setProto3StringField(this, 6, value);
1748
1640
  };
1749
1641
 
1750
1642
 
1751
1643
  /**
1752
- * optional int32 client_id = 9;
1644
+ * optional int32 client_id = 7;
1753
1645
  * @return {number}
1754
1646
  */
1755
1647
  proto.Spic.AssetProto.UpdateRequest.prototype.getClientId = function() {
1756
- return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 9, 0));
1648
+ return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 7, 0));
1757
1649
  };
1758
1650
 
1759
1651
 
@@ -1762,16 +1654,16 @@ proto.Spic.AssetProto.UpdateRequest.prototype.getClientId = function() {
1762
1654
  * @return {!proto.Spic.AssetProto.UpdateRequest} returns this
1763
1655
  */
1764
1656
  proto.Spic.AssetProto.UpdateRequest.prototype.setClientId = function(value) {
1765
- return jspb.Message.setProto3IntField(this, 9, value);
1657
+ return jspb.Message.setProto3IntField(this, 7, value);
1766
1658
  };
1767
1659
 
1768
1660
 
1769
1661
  /**
1770
- * optional AssetType asset_type = 10;
1662
+ * optional AssetType asset_type = 8;
1771
1663
  * @return {!proto.Spic.AssetProto.AssetType}
1772
1664
  */
1773
1665
  proto.Spic.AssetProto.UpdateRequest.prototype.getAssetType = function() {
1774
- return /** @type {!proto.Spic.AssetProto.AssetType} */ (jspb.Message.getFieldWithDefault(this, 10, 0));
1666
+ return /** @type {!proto.Spic.AssetProto.AssetType} */ (jspb.Message.getFieldWithDefault(this, 8, 0));
1775
1667
  };
1776
1668
 
1777
1669
 
@@ -1780,7 +1672,7 @@ proto.Spic.AssetProto.UpdateRequest.prototype.getAssetType = function() {
1780
1672
  * @return {!proto.Spic.AssetProto.UpdateRequest} returns this
1781
1673
  */
1782
1674
  proto.Spic.AssetProto.UpdateRequest.prototype.setAssetType = function(value) {
1783
- return jspb.Message.setProto3EnumField(this, 10, value);
1675
+ return jspb.Message.setProto3EnumField(this, 8, value);
1784
1676
  };
1785
1677
 
1786
1678
 
@@ -3905,6 +3797,24 @@ proto.Spic.AssetProto.prototype.setUid = function(value) {
3905
3797
  };
3906
3798
 
3907
3799
 
3800
+ /**
3801
+ * optional int32 status = 5;
3802
+ * @return {number}
3803
+ */
3804
+ proto.Spic.AssetProto.prototype.getStatus = function() {
3805
+ return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 5, 0));
3806
+ };
3807
+
3808
+
3809
+ /**
3810
+ * @param {number} value
3811
+ * @return {!proto.Spic.AssetProto} returns this
3812
+ */
3813
+ proto.Spic.AssetProto.prototype.setStatus = function(value) {
3814
+ return jspb.Message.setProto3IntField(this, 5, value);
3815
+ };
3816
+
3817
+
3908
3818
  /**
3909
3819
  * optional google.protobuf.Timestamp last_status_update = 7;
3910
3820
  * @return {?proto.google.protobuf.Timestamp}
@@ -4751,7 +4661,9 @@ proto.Spic.ComponentIdentifier = {
4751
4661
  CABINET_MAIN_DOOR_LOCK: 16,
4752
4662
  EXT_ALARM_1: 31,
4753
4663
  EXT_ALARM_2: 32,
4754
- EXT_ALARM_3: 33
4664
+ EXT_ALARM_3: 33,
4665
+ MANHOLE_COVER: 40,
4666
+ MANHOLE_CLOSURE_OPEN: 41
4755
4667
  };
4756
4668
 
4757
4669
  goog.object.extend(exports, proto.Spic);