Skip to content

Commit 091b6de

Browse files
author
Build System
committed
'Protobuf files change'
1 parent 93553be commit 091b6de

File tree

15 files changed

+54
-50
lines changed

15 files changed

+54
-50
lines changed

buf.yaml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
version: v1beta1
2-
build:
3-
roots:
4-
- src
5-
lint:
6-
use:
7-
- DEFAULT
8-
ignore:
9-
- google
10-
breaking:
11-
use:
1+
version: v1beta1
2+
build:
3+
roots:
4+
- src
5+
lint:
6+
use:
7+
- DEFAULT
8+
ignore:
9+
- google
10+
breaking:
11+
use:
1212
- FILE

src/systemathics/apis/services/corporate_actions/v1/changes.proto

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ syntax = "proto3";
2525
import "google/type/date.proto";
2626

2727
import "systemathics/apis/type/shared/v1/identifier.proto";
28-
import "systemathics/apis/type/shared/v1/constraints.proto";
28+
import "systemathics/apis/type/shared/v1/date_interval.proto";
2929

3030
package systemathics.apis.services.corporate_actions.v1;
3131

@@ -42,9 +42,9 @@ message ChangesRequest
4242
// [Mandatory] The instrument identifier: a ticker and exchange
4343
systemathics.apis.type.shared.v1.Identifier identifier = 1;
4444

45-
// [Optional] The time constraints used to define the look-back period.
45+
// [Optional] The time date interval used to define the look-back period.
4646
// If empty, then all the available data is retrieved.
47-
systemathics.apis.type.shared.v1.Constraints constraints = 2;
47+
systemathics.apis.type.shared.v1.DateInterval date_interval = 2;
4848
}
4949

5050
// Represents a change response.

src/systemathics/apis/services/corporate_actions/v1/dividends.proto

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ syntax = "proto3";
2525
import "google/type/date.proto";
2626

2727
import "systemathics/apis/type/shared/v1/identifier.proto";
28-
import "systemathics/apis/type/shared/v1/constraints.proto";
28+
import "systemathics/apis/type/shared/v1/date_interval.proto";
2929

3030
package systemathics.apis.services.corporate_actions.v1;
3131

@@ -42,9 +42,9 @@ message DividendsRequest
4242
// [Mandatory] The instrument identifier: a ticker and exchange
4343
systemathics.apis.type.shared.v1.Identifier identifier = 1;
4444

45-
// [Optional] The time constraints used to define the look-back period.
45+
// [Optional] The date interval used to define the look-back period.
4646
// If empty, then all the available data is retrieved.
47-
systemathics.apis.type.shared.v1.Constraints constraints = 2;
47+
systemathics.apis.type.shared.v1.DateInterval date_interval = 2;
4848
}
4949

5050
// Represents a dividend response.

src/systemathics/apis/services/corporate_actions/v1/splits.proto

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ syntax = "proto3";
2525
import "google/type/date.proto";
2626

2727
import "systemathics/apis/type/shared/v1/identifier.proto";
28-
import "systemathics/apis/type/shared/v1/constraints.proto";
28+
import "systemathics/apis/type/shared/v1/date_interval.proto";
2929

3030
package systemathics.apis.services.corporate_actions.v1;
3131

@@ -42,9 +42,9 @@ message SplitsRequest
4242
// [Mandatory] The instrument identifier: a ticker and exchange
4343
systemathics.apis.type.shared.v1.Identifier identifier = 1;
4444

45-
// [Optional] The time constraints used to define the look-back period.
45+
// [Optional] The date interval used to define the look-back period.
4646
// If empty, then all the available data is retrieved.
47-
systemathics.apis.type.shared.v1.Constraints constraints = 2;
47+
systemathics.apis.type.shared.v1.DateInterval date_interval = 2;
4848
}
4949

5050
// Represents a split response.

src/systemathics/apis/services/daily/v1/daily_bars.proto

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ syntax = "proto3";
2626
import "google/type/date.proto";
2727

2828
import "systemathics/apis/type/shared/v1/identifier.proto";
29-
import "systemathics/apis/type/shared/v1/constraints.proto";
29+
import "systemathics/apis/type/shared/v1/date_interval.proto";
3030

3131
package systemathics.apis.services.daily.v1;
3232

@@ -43,9 +43,9 @@ message DailyBarsRequest
4343
// [Mandatory] The instrument identifier: a ticker and exchange
4444
systemathics.apis.type.shared.v1.Identifier identifier = 1;
4545

46-
// [Optional] The time constraints used to define the look-back period.
46+
// [Optional] The date interval used to define the look-back period.
4747
// If empty, then all the available data is retrieved.
48-
systemathics.apis.type.shared.v1.Constraints constraints = 2;
48+
systemathics.apis.type.shared.v1.DateInterval date_interval = 2;
4949

5050
// [Optional] The corporate action adjustment (dividends).
5151
// By default the value is set to false : the split is applied in all cases

src/systemathics/apis/services/daily/v1/daily_prices.proto

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ syntax = "proto3";
2525
import "google/type/date.proto";
2626

2727
import "systemathics/apis/type/shared/v1/identifier.proto";
28-
import "systemathics/apis/type/shared/v1/constraints.proto";
28+
import "systemathics/apis/type/shared/v1/date_interval.proto";
2929

3030
package systemathics.apis.services.daily.v1;
3131

@@ -42,9 +42,9 @@ message DailyPricesRequest
4242
// [Mandatory] The instrument identifier: a ticker and exchange
4343
systemathics.apis.type.shared.v1.Identifier identifier = 1;
4444

45-
// [Optional] The time constraints used to define the look-back period.
45+
// [Optional] The date interval used to define the look-back period.
4646
// If empty, then all the available data is retrieved.
47-
systemathics.apis.type.shared.v1.Constraints constraints = 2;
47+
systemathics.apis.type.shared.v1.DateInterval date_interval = 2;
4848

4949
// [Optional] The corporate action adjustment (dividends).
5050
// By default the value is set to false : the split is applied in all cases

src/systemathics/apis/services/daily/v1/daily_vwap.proto

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ syntax = "proto3";
2929
import "google/type/date.proto";
3030

3131
import "systemathics/apis/type/shared/v1/identifier.proto";
32-
import "systemathics/apis/type/shared/v1/constraints.proto";
32+
import "systemathics/apis/type/shared/v1/date_interval.proto";
3333

3434
package systemathics.apis.services.daily.v1;
3535

@@ -46,9 +46,9 @@ message DailyVwapsRequest
4646
// [Mandatory] The instrument identifier: a ticker and exchange
4747
systemathics.apis.type.shared.v1.Identifier identifier = 1;
4848

49-
// [Optional] The time constraints used to define the look-back period.
49+
// [Optional] The date interval used to define the look-back period.
5050
// If empty, then all the available data is retrieved.
51-
systemathics.apis.type.shared.v1.Constraints constraints = 2;
51+
systemathics.apis.type.shared.v1.DateInterval date_interval = 2;
5252

5353
// [Optional] The corporate action adjustment (dividends).
5454
// By default the value is set to false : the split is applied in all cases

src/systemathics/apis/services/daily_analytics/v1/daily_bollinger.proto

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ import "google/type/date.proto";
3131
import "google/protobuf/wrappers.proto";
3232

3333
import "systemathics/apis/type/shared/v1/identifier.proto";
34-
import "systemathics/apis/type/shared/v1/constraints.proto";
34+
import "systemathics/apis/type/shared/v1/date_interval.proto";
3535

3636
package systemathics.apis.services.daily_analytics.v1;
3737

@@ -48,9 +48,9 @@ message DailyBollingerRequest
4848
// [Mandatory] The instrument identifier: a ticker and exchange
4949
systemathics.apis.type.shared.v1.Identifier identifier = 1;
5050

51-
// [Optional] The time constraints used to define the look-back period.
51+
// [Optional] The date interval used to define the look-back period.
5252
// If empty, then all the available data is retrieved.
53-
systemathics.apis.type.shared.v1.Constraints constraints = 2;
53+
systemathics.apis.type.shared.v1.DateInterval date_interval = 2;
5454

5555
// [Mandatory] The simple moving average window length (period: data points number)
5656
int32 length = 3;

src/systemathics/apis/services/daily_analytics/v1/daily_cma.proto

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ import "google/type/date.proto";
3030
import "google/protobuf/wrappers.proto";
3131

3232
import "systemathics/apis/type/shared/v1/identifier.proto";
33-
import "systemathics/apis/type/shared/v1/constraints.proto";
33+
import "systemathics/apis/type/shared/v1/date_interval.proto";
3434

3535
package systemathics.apis.services.daily_analytics.v1;
3636

@@ -47,9 +47,9 @@ message DailyCmaRequest
4747
// [Mandatory] The instrument identifier: a ticker and exchange
4848
systemathics.apis.type.shared.v1.Identifier identifier = 1;
4949

50-
// [Optional] The time constraints used to define the look-back period.
50+
// [Optional] The date interval used to define the look-back period.
5151
// If empty, then all the available data is retrieved.
52-
systemathics.apis.type.shared.v1.Constraints constraints = 2;
52+
systemathics.apis.type.shared.v1.DateInterval date_interval = 2;
5353

5454
// [Optional] The corporate action adjustment (dividends).
5555
// By default the value is set to false : the split is applied in all cases

src/systemathics/apis/services/daily_analytics/v1/daily_ema.proto

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ import "google/type/date.proto";
3232
import "google/protobuf/wrappers.proto";
3333

3434
import "systemathics/apis/type/shared/v1/identifier.proto";
35-
import "systemathics/apis/type/shared/v1/constraints.proto";
35+
import "systemathics/apis/type/shared/v1/date_interval.proto";
3636

3737
package systemathics.apis.services.daily_analytics.v1;
3838

@@ -49,9 +49,9 @@ message DailyEmaRequest
4949
// [Mandatory] The instrument identifier: a ticker and exchange
5050
systemathics.apis.type.shared.v1.Identifier identifier = 1;
5151

52-
// [Optional] The time constraints used to define the look-back period.
52+
// [Optional] The date interval used to define the look-back period.
5353
// If empty, then all the available data is retrieved.
54-
systemathics.apis.type.shared.v1.Constraints constraints = 2;
54+
systemathics.apis.type.shared.v1.DateInterval date_interval = 2;
5555

5656
// [Mandatory] The exponential moving average window length (period : points number)
5757
int32 length = 3;

src/systemathics/apis/services/daily_analytics/v1/daily_macd.proto

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ syntax = "proto3";
2929
import "google/type/date.proto";
3030

3131
import "systemathics/apis/type/shared/v1/identifier.proto";
32-
import "systemathics/apis/type/shared/v1/constraints.proto";
32+
import "systemathics/apis/type/shared/v1/date_interval.proto";
3333

3434
package systemathics.apis.services.daily_analytics.v1;
3535

@@ -46,9 +46,9 @@ message DailyMacdRequest
4646
// [Mandatory] The instrument identifier: a ticker and exchange
4747
systemathics.apis.type.shared.v1.Identifier identifier = 1;
4848

49-
// [Optional] The time constraints used to define the look-back period.
49+
// [Optional] The date interval used to define the look-back period.
5050
// If empty, then all the available data is retrieved.
51-
systemathics.apis.type.shared.v1.Constraints constraints = 2;
51+
systemathics.apis.type.shared.v1.DateInterval date_interval = 2;
5252

5353
// [Mandatory] The long EMA window length (period : points number)
5454
int32 long = 3;

src/systemathics/apis/services/daily_analytics/v1/daily_rsi.proto

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ syntax = "proto3";
3131
import "google/type/date.proto";
3232

3333
import "systemathics/apis/type/shared/v1/identifier.proto";
34-
import "systemathics/apis/type/shared/v1/constraints.proto";
34+
import "systemathics/apis/type/shared/v1/date_interval.proto";
3535

3636
package systemathics.apis.services.daily_analytics.v1;
3737

@@ -48,9 +48,9 @@ message DailyRsiRequest
4848
// [Mandatory] The instrument identifier: a ticker and exchange
4949
systemathics.apis.type.shared.v1.Identifier identifier = 1;
5050

51-
// [Optional] The time constraints used to define the look-back period.
51+
// [Optional] The date interval used to define the look-back period.
5252
// If empty, then all the available data is retrieved.
53-
systemathics.apis.type.shared.v1.Constraints constraints = 2;
53+
systemathics.apis.type.shared.v1.DateInterval date_interval = 2;
5454

5555
// [Mandatory] The relative strength index window length (period: points number)
5656
int32 length = 3;

src/systemathics/apis/services/daily_analytics/v1/daily_sma.proto

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ import "google/type/date.proto";
3131
import "google/protobuf/wrappers.proto";
3232

3333
import "systemathics/apis/type/shared/v1/identifier.proto";
34-
import "systemathics/apis/type/shared/v1/constraints.proto";
34+
import "systemathics/apis/type/shared/v1/date_interval.proto";
3535

3636
package systemathics.apis.services.daily_analytics.v1;
3737

@@ -48,9 +48,9 @@ message DailySmaRequest
4848
// [Mandatory] The instrument identifier: a ticker and exchange
4949
systemathics.apis.type.shared.v1.Identifier identifier = 1;
5050

51-
// [Optional] The time constraints used to define the look-back period.
51+
// [Optional] The date interval used to define the look-back period.
5252
// If empty, then all the available data is retrieved.
53-
systemathics.apis.type.shared.v1.Constraints constraints = 2;
53+
systemathics.apis.type.shared.v1.DateInterval date_interval = 2;
5454

5555
// [Mandatory] The simple moving average window length (period : points number)
5656
int32 length = 3;

src/systemathics/apis/services/daily_analytics/v1/daily_volatility.proto

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ syntax = "proto3";
2626

2727

2828
import "systemathics/apis/type/shared/v1/identifier.proto";
29-
import "systemathics/apis/type/shared/v1/constraints.proto";
29+
import "systemathics/apis/type/shared/v1/date_interval.proto";
3030

3131
package systemathics.apis.services.daily_analytics.v1;
3232

@@ -43,9 +43,9 @@ message DailyVolatilityRequest
4343
// [Mandatory] The instrument identifier: a ticker and exchange
4444
systemathics.apis.type.shared.v1.Identifier identifier = 1;
4545

46-
// [Optional] The time constraints used to define the look-back period.
46+
// [Optional] The date interval used to define the look-back period.
4747
// If empty, then all the available data is retrieved.
48-
systemathics.apis.type.shared.v1.Constraints constraints = 2;
48+
systemathics.apis.type.shared.v1.DateInterval date_interval = 2;
4949

5050
// [Optional] The corporate action adjustment (dividends).
5151
// By default the value is set to false : the split is applied in all cases

src/systemathics/apis/type/shared/v1/book_updates.proto

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@
1717
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1818
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1919
// SOFTWARE.
20+
21+
// Market book updates can be of two different types:
22+
// <br>- Snapshots only: a full snapshot of the book is provided each time there is an update.
23+
// <br>- Incrementals: the first response will be a snapshot of the book, then subsequent responses only provide an update.
2024
syntax = "proto3";
2125

2226
package systemathics.apis.type.shared.v1;

0 commit comments

Comments
 (0)