@aceplus/smartace-api 3.5.0-alpha.1 → 3.5.0-alpha.2
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
|
@@ -49,6 +49,9 @@ export namespace LocalDistributionProto {
|
|
|
49
49
|
getClient(): platform_client_pb.ClientProto | undefined;
|
|
50
50
|
setClient(value?: platform_client_pb.ClientProto): void;
|
|
51
51
|
|
|
52
|
+
getIotDomainPrefix(): string;
|
|
53
|
+
setIotDomainPrefix(value: string): void;
|
|
54
|
+
|
|
52
55
|
serializeBinary(): Uint8Array;
|
|
53
56
|
toObject(includeInstance?: boolean): CheckExistenceResponse.AsObject;
|
|
54
57
|
static toObject(includeInstance: boolean, msg: CheckExistenceResponse): CheckExistenceResponse.AsObject;
|
|
@@ -63,6 +66,7 @@ export namespace LocalDistributionProto {
|
|
|
63
66
|
export type AsObject = {
|
|
64
67
|
exist: boolean,
|
|
65
68
|
client?: platform_client_pb.ClientProto.AsObject,
|
|
69
|
+
iotDomainPrefix: string,
|
|
66
70
|
}
|
|
67
71
|
}
|
|
68
72
|
}
|
|
@@ -355,7 +355,8 @@ proto.Platform.LocalDistributionProto.CheckExistenceResponse.prototype.toObject
|
|
|
355
355
|
proto.Platform.LocalDistributionProto.CheckExistenceResponse.toObject = function(includeInstance, msg) {
|
|
356
356
|
var f, obj = {
|
|
357
357
|
exist: jspb.Message.getBooleanFieldWithDefault(msg, 1, false),
|
|
358
|
-
client: (f = msg.getClient()) && platform_client_pb.ClientProto.toObject(includeInstance, f)
|
|
358
|
+
client: (f = msg.getClient()) && platform_client_pb.ClientProto.toObject(includeInstance, f),
|
|
359
|
+
iotDomainPrefix: jspb.Message.getFieldWithDefault(msg, 3, "")
|
|
359
360
|
};
|
|
360
361
|
|
|
361
362
|
if (includeInstance) {
|
|
@@ -401,6 +402,10 @@ proto.Platform.LocalDistributionProto.CheckExistenceResponse.deserializeBinaryFr
|
|
|
401
402
|
reader.readMessage(value,platform_client_pb.ClientProto.deserializeBinaryFromReader);
|
|
402
403
|
msg.setClient(value);
|
|
403
404
|
break;
|
|
405
|
+
case 3:
|
|
406
|
+
var value = /** @type {string} */ (reader.readString());
|
|
407
|
+
msg.setIotDomainPrefix(value);
|
|
408
|
+
break;
|
|
404
409
|
default:
|
|
405
410
|
reader.skipField();
|
|
406
411
|
break;
|
|
@@ -445,6 +450,13 @@ proto.Platform.LocalDistributionProto.CheckExistenceResponse.serializeBinaryToWr
|
|
|
445
450
|
platform_client_pb.ClientProto.serializeBinaryToWriter
|
|
446
451
|
);
|
|
447
452
|
}
|
|
453
|
+
f = message.getIotDomainPrefix();
|
|
454
|
+
if (f.length > 0) {
|
|
455
|
+
writer.writeString(
|
|
456
|
+
3,
|
|
457
|
+
f
|
|
458
|
+
);
|
|
459
|
+
}
|
|
448
460
|
};
|
|
449
461
|
|
|
450
462
|
|
|
@@ -503,4 +515,22 @@ proto.Platform.LocalDistributionProto.CheckExistenceResponse.prototype.hasClient
|
|
|
503
515
|
};
|
|
504
516
|
|
|
505
517
|
|
|
518
|
+
/**
|
|
519
|
+
* optional string iot_domain_prefix = 3;
|
|
520
|
+
* @return {string}
|
|
521
|
+
*/
|
|
522
|
+
proto.Platform.LocalDistributionProto.CheckExistenceResponse.prototype.getIotDomainPrefix = function() {
|
|
523
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 3, ""));
|
|
524
|
+
};
|
|
525
|
+
|
|
526
|
+
|
|
527
|
+
/**
|
|
528
|
+
* @param {string} value
|
|
529
|
+
* @return {!proto.Platform.LocalDistributionProto.CheckExistenceResponse} returns this
|
|
530
|
+
*/
|
|
531
|
+
proto.Platform.LocalDistributionProto.CheckExistenceResponse.prototype.setIotDomainPrefix = function(value) {
|
|
532
|
+
return jspb.Message.setProto3StringField(this, 3, value);
|
|
533
|
+
};
|
|
534
|
+
|
|
535
|
+
|
|
506
536
|
goog.object.extend(exports, proto.Platform);
|