@dxos/protocols 0.5.3-main.d7fe7b5 → 0.5.3-main.e76d664

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.
Files changed (27) hide show
  1. package/dist/cjs/src/proto/gen/dxos/agent/functions.d.ts +2 -11
  2. package/dist/cjs/src/proto/gen/dxos/agent/functions.d.ts.map +1 -1
  3. package/dist/cjs/src/proto/gen/dxos/client/services.d.ts +175 -175
  4. package/dist/cjs/src/proto/gen/dxos/client/services.d.ts.map +1 -1
  5. package/dist/cjs/src/proto/gen/dxos/client/services.js +25 -25
  6. package/dist/cjs/src/proto/gen/dxos/client/services.js.map +1 -1
  7. package/dist/cjs/src/proto/gen/index.d.ts +0 -1
  8. package/dist/cjs/src/proto/gen/index.d.ts.map +1 -1
  9. package/dist/cjs/src/proto/gen/index.js +1 -1
  10. package/dist/cjs/src/proto/gen/index.js.map +1 -1
  11. package/dist/cjs/tsconfig.tsbuildinfo +1 -1
  12. package/dist/esm/src/proto/gen/dxos/agent/functions.d.ts +2 -11
  13. package/dist/esm/src/proto/gen/dxos/agent/functions.d.ts.map +1 -1
  14. package/dist/esm/src/proto/gen/dxos/client/services.d.ts +175 -175
  15. package/dist/esm/src/proto/gen/dxos/client/services.d.ts.map +1 -1
  16. package/dist/esm/src/proto/gen/dxos/client/services.js +24 -24
  17. package/dist/esm/src/proto/gen/dxos/client/services.js.map +1 -1
  18. package/dist/esm/src/proto/gen/index.d.ts +0 -1
  19. package/dist/esm/src/proto/gen/index.d.ts.map +1 -1
  20. package/dist/esm/src/proto/gen/index.js +1 -1
  21. package/dist/esm/src/proto/gen/index.js.map +1 -1
  22. package/package.json +5 -5
  23. package/src/proto/dxos/agent/functions.proto +3 -8
  24. package/src/proto/dxos/halo/credentials.proto +2 -2
  25. package/src/proto/gen/dxos/agent/functions.ts +2 -11
  26. package/src/proto/gen/dxos/client/services.ts +175 -175
  27. package/src/proto/gen/index.ts +1 -2
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/proto/gen/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAC;AA+DhE,OAAO,aAAa,MAAM,kBAAkB,CAAC;AA2iB7C,MAAM,CAAC,MAAM,UAAU,GAAG,gBAAgB,CAAC,IAAI,CAAC,KAAK,CAAC,4o0GAA4o0G,CAAC,CAAC,CAAC;AACrs0G,MAAM,CAAC,MAAM,MAAM,GAAG,MAAM,CAAC,QAAQ,CAAkB,UAAU,EAAE,aAAa,CAAC,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/proto/gen/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAC;AA+DhE,OAAO,aAAa,MAAM,kBAAkB,CAAC;AA0iB7C,MAAM,CAAC,MAAM,UAAU,GAAG,gBAAgB,CAAC,IAAI,CAAC,KAAK,CAAC,y/zGAAy/zG,CAAC,CAAC,CAAC;AAClj0G,MAAM,CAAC,MAAM,MAAM,GAAG,MAAM,CAAC,QAAQ,CAAkB,UAAU,EAAE,aAAa,CAAC,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dxos/protocols",
3
- "version": "0.5.3-main.d7fe7b5",
3
+ "version": "0.5.3-main.e76d664",
4
4
  "description": "Protobuf definitions for DXOS protocols.",
5
5
  "homepage": "https://dxos.org",
6
6
  "bugs": "https://github.com/dxos/dxos/issues",
@@ -33,10 +33,10 @@
33
33
  "src"
34
34
  ],
35
35
  "dependencies": {
36
- "@dxos/invariant": "0.5.3-main.d7fe7b5",
37
- "@dxos/keys": "0.5.3-main.d7fe7b5",
38
- "@dxos/codec-protobuf": "0.5.3-main.d7fe7b5",
39
- "@dxos/timeframe": "0.5.3-main.d7fe7b5"
36
+ "@dxos/codec-protobuf": "0.5.3-main.e76d664",
37
+ "@dxos/invariant": "0.5.3-main.e76d664",
38
+ "@dxos/keys": "0.5.3-main.e76d664",
39
+ "@dxos/timeframe": "0.5.3-main.e76d664"
40
40
  },
41
41
  "devDependencies": {
42
42
  "glob": "~7.1.6"
@@ -14,13 +14,14 @@ message FunctionsConfig {
14
14
  optional string manifest = 2;
15
15
  }
16
16
 
17
+ // TODO(burdon): Reconcile with typedefs.
17
18
  message Function {
18
- string id = 1;
19
- string route = 2;
19
+ string name = 1;
20
20
  }
21
21
 
22
22
  message RegisterRequest {
23
23
  string endpoint = 1;
24
+ repeated Function functions = 2;
24
25
  }
25
26
 
26
27
  message RegisterResponse {
@@ -28,17 +29,11 @@ message RegisterResponse {
28
29
  string endpoint = 2;
29
30
  }
30
31
 
31
- message UpdateRegistrationRequest {
32
- string registration_id = 1;
33
- repeated Function functions = 2;
34
- }
35
-
36
32
  message UnregisterRequest {
37
33
  string registration_id = 1;
38
34
  }
39
35
 
40
36
  service FunctionRegistryService {
41
37
  rpc Register(RegisterRequest) returns (RegisterResponse) {}
42
- rpc UpdateRegistration(UpdateRegistrationRequest) returns (google.protobuf.Empty) {}
43
38
  rpc Unregister(UnregisterRequest) returns (google.protobuf.Empty) {}
44
39
  }
@@ -170,13 +170,13 @@ message DeviceProfileDocument {
170
170
 
171
171
  optional string platform = 2;
172
172
  optional string platform_version = 3;
173
- optional string architecture = 4;
173
+ optional string architecture = 4;
174
174
  optional string os = 5;
175
175
  optional string os_version = 6;
176
176
  optional DeviceType type = 7;
177
177
  }
178
178
 
179
- /// [ASSERTION]: Sets device profile information.
179
+ /// [ASSERTION]: Sets device profile information.
180
180
  message DeviceProfile {
181
181
  DeviceProfileDocument profile = 1;
182
182
  }
@@ -82,8 +82,7 @@ export interface FunctionsConfig {
82
82
  * {@link file://./../../../dxos/agent/functions.proto}
83
83
  */
84
84
  export interface Function {
85
- id: string;
86
- route: string;
85
+ name: string;
87
86
  }
88
87
  /**
89
88
  * Defined in:
@@ -91,6 +90,7 @@ export interface Function {
91
90
  */
92
91
  export interface RegisterRequest {
93
92
  endpoint: string;
93
+ functions?: Function[];
94
94
  }
95
95
  /**
96
96
  * Defined in:
@@ -100,14 +100,6 @@ export interface RegisterResponse {
100
100
  registrationId: string;
101
101
  endpoint: string;
102
102
  }
103
- /**
104
- * Defined in:
105
- * {@link file://./../../../dxos/agent/functions.proto}
106
- */
107
- export interface UpdateRegistrationRequest {
108
- registrationId: string;
109
- functions?: Function[];
110
- }
111
103
  /**
112
104
  * Defined in:
113
105
  * {@link file://./../../../dxos/agent/functions.proto}
@@ -121,6 +113,5 @@ export interface UnregisterRequest {
121
113
  */
122
114
  export interface FunctionRegistryService {
123
115
  register: (request: RegisterRequest, options?: RequestOptions) => Promise<RegisterResponse>;
124
- updateRegistration: (request: UpdateRegistrationRequest, options?: RequestOptions) => Promise<void>;
125
116
  unregister: (request: UnregisterRequest, options?: RequestOptions) => Promise<void>;
126
117
  }
@@ -61,6 +61,181 @@ import * as dxos_value from "../value";
61
61
  import * as example_testing_data from "../../example/testing/data";
62
62
  import * as example_testing_rpc from "../../example/testing/rpc";
63
63
  import * as google_protobuf from "../../google/protobuf";
64
+ /**
65
+ * Defined in:
66
+ * {@link file://./../../../dxos/client/logging.proto}
67
+ */
68
+ export interface Metrics {
69
+ timestamp: ReturnType<(typeof substitutions)["google.protobuf.Timestamp"]["decode"]>;
70
+ values?: Metrics.KeyPair[];
71
+ }
72
+ export namespace Metrics {
73
+ /**
74
+ * Defined in:
75
+ * {@link file://./../../../dxos/client/logging.proto}
76
+ */
77
+ export interface KeyPair {
78
+ /**
79
+ * Options:
80
+ * - proto3_optional = true
81
+ */
82
+ key?: string;
83
+ /**
84
+ * Options:
85
+ * - proto3_optional = true
86
+ */
87
+ value?: dxos_value.Value;
88
+ /**
89
+ * Options:
90
+ * - proto3_optional = true
91
+ */
92
+ stats?: dxos_value.Stats;
93
+ }
94
+ }
95
+ /**
96
+ * Defined in:
97
+ * {@link file://./../../../dxos/client/logging.proto}
98
+ */
99
+ export interface ControlMetricsRequest {
100
+ /**
101
+ * Options:
102
+ * - proto3_optional = true
103
+ */
104
+ reset?: boolean;
105
+ /**
106
+ * Options:
107
+ * - proto3_optional = true
108
+ */
109
+ record?: boolean;
110
+ }
111
+ /**
112
+ * Defined in:
113
+ * {@link file://./../../../dxos/client/logging.proto}
114
+ */
115
+ export interface ControlMetricsResponse {
116
+ /**
117
+ * Options:
118
+ * - proto3_optional = true
119
+ */
120
+ recording?: boolean;
121
+ }
122
+ /**
123
+ * Defined in:
124
+ * {@link file://./../../../dxos/client/logging.proto}
125
+ */
126
+ export interface QueryMetricsRequest {
127
+ /**
128
+ * Options:
129
+ * - proto3_optional = true
130
+ */
131
+ interval?: number;
132
+ }
133
+ /**
134
+ * Defined in:
135
+ * {@link file://./../../../dxos/client/logging.proto}
136
+ */
137
+ export interface QueryMetricsResponse {
138
+ timestamp: ReturnType<(typeof substitutions)["google.protobuf.Timestamp"]["decode"]>;
139
+ metrics: Metrics;
140
+ }
141
+ /**
142
+ * Defined in:
143
+ * {@link file://./../../../dxos/client/logging.proto}
144
+ */
145
+ export enum LogLevel {
146
+ TRACE = 5,
147
+ DEBUG = 10,
148
+ INFO = 11,
149
+ WARN = 12,
150
+ ERROR = 13
151
+ }
152
+ /**
153
+ * Defined in:
154
+ * {@link file://./../../../dxos/client/logging.proto}
155
+ */
156
+ export interface QueryLogsRequest {
157
+ filters?: QueryLogsRequest.Filter[];
158
+ /**
159
+ * Options:
160
+ * - proto3_optional = true
161
+ */
162
+ options?: QueryLogsRequest.MatchingOptions;
163
+ }
164
+ export namespace QueryLogsRequest {
165
+ /**
166
+ * Defined in:
167
+ * {@link file://./../../../dxos/client/logging.proto}
168
+ */
169
+ export enum MatchingOptions {
170
+ INCLUSIVE = 1,
171
+ EXPLICIT = 2
172
+ }
173
+ /**
174
+ * Defined in:
175
+ * {@link file://./../../../dxos/client/logging.proto}
176
+ */
177
+ export interface Filter {
178
+ level: LogLevel;
179
+ /**
180
+ * Options:
181
+ * - proto3_optional = true
182
+ */
183
+ pattern?: string;
184
+ }
185
+ }
186
+ /**
187
+ * Defined in:
188
+ * {@link file://./../../../dxos/client/logging.proto}
189
+ */
190
+ export interface LogEntry {
191
+ level: LogLevel;
192
+ message: string;
193
+ /**
194
+ * Options:
195
+ * - proto3_optional = true
196
+ */
197
+ context?: ReturnType<(typeof substitutions)["google.protobuf.Struct"]["decode"]>;
198
+ /**
199
+ * Options:
200
+ * - proto3_optional = true
201
+ */
202
+ meta?: LogEntry.Meta;
203
+ /**
204
+ * Options:
205
+ * - proto3_optional = true
206
+ */
207
+ error?: dxos_error.Error;
208
+ timestamp: ReturnType<(typeof substitutions)["google.protobuf.Timestamp"]["decode"]>;
209
+ }
210
+ export namespace LogEntry {
211
+ /**
212
+ * Defined in:
213
+ * {@link file://./../../../dxos/client/logging.proto}
214
+ */
215
+ export interface Meta {
216
+ file: string;
217
+ line: number;
218
+ /**
219
+ * Options:
220
+ * - proto3_optional = true
221
+ */
222
+ scope?: ReturnType<(typeof substitutions)["google.protobuf.Struct"]["decode"]>;
223
+ /**
224
+ * Options:
225
+ * - proto3_optional = true
226
+ */
227
+ resourceId?: number;
228
+ }
229
+ }
230
+ /**
231
+ * Defined in:
232
+ * {@link file://./../../../dxos/client/logging.proto}
233
+ */
234
+ export interface LoggingService {
235
+ controlMetrics: (request: ControlMetricsRequest, options?: RequestOptions) => Promise<ControlMetricsResponse>;
236
+ queryMetrics: (request: QueryMetricsRequest, options?: RequestOptions) => Stream<QueryMetricsResponse>;
237
+ queryLogs: (request: QueryLogsRequest, options?: RequestOptions) => Stream<LogEntry>;
238
+ }
64
239
  /**
65
240
  * Defined in:
66
241
  * {@link file://./../../../dxos/client/services.proto}
@@ -967,178 +1142,3 @@ export interface NetworkService {
967
1142
  updateConfig: (request: UpdateConfigRequest, options?: RequestOptions) => Promise<void>;
968
1143
  queryStatus: (request: void, options?: RequestOptions) => Stream<NetworkStatus>;
969
1144
  }
970
- /**
971
- * Defined in:
972
- * {@link file://./../../../dxos/client/logging.proto}
973
- */
974
- export interface Metrics {
975
- timestamp: ReturnType<(typeof substitutions)["google.protobuf.Timestamp"]["decode"]>;
976
- values?: Metrics.KeyPair[];
977
- }
978
- export namespace Metrics {
979
- /**
980
- * Defined in:
981
- * {@link file://./../../../dxos/client/logging.proto}
982
- */
983
- export interface KeyPair {
984
- /**
985
- * Options:
986
- * - proto3_optional = true
987
- */
988
- key?: string;
989
- /**
990
- * Options:
991
- * - proto3_optional = true
992
- */
993
- value?: dxos_value.Value;
994
- /**
995
- * Options:
996
- * - proto3_optional = true
997
- */
998
- stats?: dxos_value.Stats;
999
- }
1000
- }
1001
- /**
1002
- * Defined in:
1003
- * {@link file://./../../../dxos/client/logging.proto}
1004
- */
1005
- export interface ControlMetricsRequest {
1006
- /**
1007
- * Options:
1008
- * - proto3_optional = true
1009
- */
1010
- reset?: boolean;
1011
- /**
1012
- * Options:
1013
- * - proto3_optional = true
1014
- */
1015
- record?: boolean;
1016
- }
1017
- /**
1018
- * Defined in:
1019
- * {@link file://./../../../dxos/client/logging.proto}
1020
- */
1021
- export interface ControlMetricsResponse {
1022
- /**
1023
- * Options:
1024
- * - proto3_optional = true
1025
- */
1026
- recording?: boolean;
1027
- }
1028
- /**
1029
- * Defined in:
1030
- * {@link file://./../../../dxos/client/logging.proto}
1031
- */
1032
- export interface QueryMetricsRequest {
1033
- /**
1034
- * Options:
1035
- * - proto3_optional = true
1036
- */
1037
- interval?: number;
1038
- }
1039
- /**
1040
- * Defined in:
1041
- * {@link file://./../../../dxos/client/logging.proto}
1042
- */
1043
- export interface QueryMetricsResponse {
1044
- timestamp: ReturnType<(typeof substitutions)["google.protobuf.Timestamp"]["decode"]>;
1045
- metrics: Metrics;
1046
- }
1047
- /**
1048
- * Defined in:
1049
- * {@link file://./../../../dxos/client/logging.proto}
1050
- */
1051
- export enum LogLevel {
1052
- TRACE = 5,
1053
- DEBUG = 10,
1054
- INFO = 11,
1055
- WARN = 12,
1056
- ERROR = 13
1057
- }
1058
- /**
1059
- * Defined in:
1060
- * {@link file://./../../../dxos/client/logging.proto}
1061
- */
1062
- export interface QueryLogsRequest {
1063
- filters?: QueryLogsRequest.Filter[];
1064
- /**
1065
- * Options:
1066
- * - proto3_optional = true
1067
- */
1068
- options?: QueryLogsRequest.MatchingOptions;
1069
- }
1070
- export namespace QueryLogsRequest {
1071
- /**
1072
- * Defined in:
1073
- * {@link file://./../../../dxos/client/logging.proto}
1074
- */
1075
- export enum MatchingOptions {
1076
- INCLUSIVE = 1,
1077
- EXPLICIT = 2
1078
- }
1079
- /**
1080
- * Defined in:
1081
- * {@link file://./../../../dxos/client/logging.proto}
1082
- */
1083
- export interface Filter {
1084
- level: LogLevel;
1085
- /**
1086
- * Options:
1087
- * - proto3_optional = true
1088
- */
1089
- pattern?: string;
1090
- }
1091
- }
1092
- /**
1093
- * Defined in:
1094
- * {@link file://./../../../dxos/client/logging.proto}
1095
- */
1096
- export interface LogEntry {
1097
- level: LogLevel;
1098
- message: string;
1099
- /**
1100
- * Options:
1101
- * - proto3_optional = true
1102
- */
1103
- context?: ReturnType<(typeof substitutions)["google.protobuf.Struct"]["decode"]>;
1104
- /**
1105
- * Options:
1106
- * - proto3_optional = true
1107
- */
1108
- meta?: LogEntry.Meta;
1109
- /**
1110
- * Options:
1111
- * - proto3_optional = true
1112
- */
1113
- error?: dxos_error.Error;
1114
- timestamp: ReturnType<(typeof substitutions)["google.protobuf.Timestamp"]["decode"]>;
1115
- }
1116
- export namespace LogEntry {
1117
- /**
1118
- * Defined in:
1119
- * {@link file://./../../../dxos/client/logging.proto}
1120
- */
1121
- export interface Meta {
1122
- file: string;
1123
- line: number;
1124
- /**
1125
- * Options:
1126
- * - proto3_optional = true
1127
- */
1128
- scope?: ReturnType<(typeof substitutions)["google.protobuf.Struct"]["decode"]>;
1129
- /**
1130
- * Options:
1131
- * - proto3_optional = true
1132
- */
1133
- resourceId?: number;
1134
- }
1135
- }
1136
- /**
1137
- * Defined in:
1138
- * {@link file://./../../../dxos/client/logging.proto}
1139
- */
1140
- export interface LoggingService {
1141
- controlMetrics: (request: ControlMetricsRequest, options?: RequestOptions) => Promise<ControlMetricsResponse>;
1142
- queryMetrics: (request: QueryMetricsRequest, options?: RequestOptions) => Stream<QueryMetricsResponse>;
1143
- queryLogs: (request: QueryLogsRequest, options?: RequestOptions) => Stream<LogEntry>;
1144
- }