Skip to content

Commit d13959e

Browse files
hakonboWorking Group Two Maintainers
andauthored
Syncing protocol buffers (#77)
GitOrigin-RevId: 71223d8982747c8c5185897dbc8f8a6ec56e39ba Co-authored-by: Working Group Two Maintainers <[email protected]>
1 parent 7dca993 commit d13959e

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

wgtwo/ir21/v1/ir21.proto

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,8 @@ service Ir21Service {
7272
option (scope) = "";
7373
}
7474

75-
// GetOrganisation is used to get an organisation from the IR21 database. The organisation is identified by its UUID. <br>
75+
// GetOrganisation is used to get an organisation from the IR21 database.
76+
// The organisation is identified by its UUID. <br>
7677
// <br>
7778
// NOTE: THIS METHOD IS CURRENTLY IN BETA RELEASE
7879
// See https://developer.cisco.com/docs/mobility-services/api-lifecycle
@@ -286,4 +287,12 @@ message Tadig {
286287
repeated wgtwo.common.v1.NetworkIdentity mccmncs = 2; // List of MCCMNCs associated with this TADIG.
287288
repeated string realms = 3; // List of realms associated with the MCCMNCs.
288289
repeated string gt_prefixes = 4; // List of GT prefixes associated with the MCCMNCs.
290+
repeated GtRange gt_ranges = 5; // List of GT ranges associated with the MCCMNCs.
291+
}
292+
293+
// GT range is a closed interval and corresponds to SN Range Start / SN Range Stop values
294+
// in a RAEX IR.21 document.
295+
message GtRange {
296+
int64 start = 1; // Range start, e.g., 4712345000
297+
int64 stop = 2; // Range stop, e.g., 4712345999
289298
}

wgtwo/lookup/v0/number_lookup.proto

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// Copyright (C) 2023 Cisco Systems, Inc.
2+
13
// Copyright 2023 [Working Group Two]/[Cisco Systems]
24
//
35
// Licensed under the Apache License, Version 2.0 (the "License");
@@ -37,6 +39,8 @@ message NumberLookupRequest {
3739
string id = 1;
3840
// The number to lookup
3941
wgtwo.common.v0.PhoneNumber number = 2;
42+
// Only present if the client has scope "lookup.number_detailed:read"
43+
wgtwo.common.v0.PhoneNumber recipient = 3;
4044
}
4145

4246
message NumberLookupResponse {

0 commit comments

Comments
 (0)