@furo/open-models 1.13.0 → 1.15.0
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/custom-elements.json +941 -608
- package/dist/Registry.d.ts +7 -0
- package/dist/Registry.js +9 -0
- package/dist/Registry.js.map +1 -1
- package/dist/decorators/EntityServiceTypes.d.ts +133 -0
- package/dist/decorators/EntityServiceTypes.js +2 -0
- package/dist/decorators/EntityServiceTypes.js.map +1 -0
- package/dist/decorators/FieldBindings.d.ts +104 -0
- package/dist/decorators/FieldBindings.js +229 -0
- package/dist/decorators/FieldBindings.js.map +1 -0
- package/dist/decorators/ModelDecorators.d.ts +100 -0
- package/dist/decorators/ModelDecorators.js +227 -0
- package/dist/decorators/ModelDecorators.js.map +1 -0
- package/dist/decorators/SchemaBuilder.d.ts +15 -0
- package/dist/decorators/SchemaBuilder.js +89 -0
- package/dist/decorators/SchemaBuilder.js.map +1 -0
- package/dist/decorators/ServiceDecorators.d.ts +79 -0
- package/dist/decorators/ServiceDecorators.js +203 -0
- package/dist/decorators/ServiceDecorators.js.map +1 -0
- package/dist/decorators/defaultServiceEventHandlers.d.ts +89 -0
- package/dist/decorators/defaultServiceEventHandlers.js +100 -0
- package/dist/decorators/defaultServiceEventHandlers.js.map +1 -0
- package/dist/index.d.ts +9 -0
- package/dist/index.js +6 -0
- package/dist/index.js.map +1 -1
- package/package.json +3 -1
package/custom-elements.json
CHANGED
|
@@ -1039,6 +1039,26 @@
|
|
|
1039
1039
|
}
|
|
1040
1040
|
]
|
|
1041
1041
|
},
|
|
1042
|
+
{
|
|
1043
|
+
"kind": "method",
|
|
1044
|
+
"name": "isRegistered",
|
|
1045
|
+
"static": true,
|
|
1046
|
+
"parameters": [
|
|
1047
|
+
{
|
|
1048
|
+
"name": "type",
|
|
1049
|
+
"description": "The name of the type to check for registration.",
|
|
1050
|
+
"type": {
|
|
1051
|
+
"text": "string"
|
|
1052
|
+
}
|
|
1053
|
+
}
|
|
1054
|
+
],
|
|
1055
|
+
"description": "Checks whether a given type is registered.",
|
|
1056
|
+
"return": {
|
|
1057
|
+
"type": {
|
|
1058
|
+
"text": "boolean"
|
|
1059
|
+
}
|
|
1060
|
+
}
|
|
1061
|
+
},
|
|
1042
1062
|
{
|
|
1043
1063
|
"kind": "method",
|
|
1044
1064
|
"name": "createInstanceByTypeName",
|
|
@@ -1189,6 +1209,271 @@
|
|
|
1189
1209
|
"declarations": [],
|
|
1190
1210
|
"exports": []
|
|
1191
1211
|
},
|
|
1212
|
+
{
|
|
1213
|
+
"kind": "javascript-module",
|
|
1214
|
+
"path": "dist/decorators/EntityServiceTypes.js",
|
|
1215
|
+
"declarations": [],
|
|
1216
|
+
"exports": []
|
|
1217
|
+
},
|
|
1218
|
+
{
|
|
1219
|
+
"kind": "javascript-module",
|
|
1220
|
+
"path": "dist/decorators/EntityServiceTypes.js.map",
|
|
1221
|
+
"declarations": [],
|
|
1222
|
+
"exports": []
|
|
1223
|
+
},
|
|
1224
|
+
{
|
|
1225
|
+
"kind": "javascript-module",
|
|
1226
|
+
"path": "dist/decorators/FieldBindings.js",
|
|
1227
|
+
"declarations": [
|
|
1228
|
+
{
|
|
1229
|
+
"kind": "variable",
|
|
1230
|
+
"name": "fieldBindings",
|
|
1231
|
+
"type": {
|
|
1232
|
+
"text": "object"
|
|
1233
|
+
},
|
|
1234
|
+
"default": "{ /** * Decorator for the `model` property. * * Handles: * - Binding/unbinding when model changes * - Resolving reader/writer functions based on model type * - Calling reader on model value changes * - Providing `writeToModel()` method */ model() { return function modelDecorator(target, propertyKey) { const ctor = target.constructor; // Patch lifecycle patchLifecycle(ctor); // Add writeToModel helper method if (!Object.prototype.hasOwnProperty.call(target, \"writeToModel\")) { Object.defineProperty(target, \"writeToModel\", { value: function writeToModel() { const writeFn = this[MODEL_WRITE_FN]; if (writeFn) { try { writeFn(); } catch (e) { // eslint-disable-next-line no-console console.error(\"Failed to write to model:\", e); } } }, writable: false, enumerable: false, configurable: true, }); } // Create getter/setter for the model property Object.defineProperty(target, propertyKey, { get() { return this[CURRENT_MODEL]; }, set(value) { const oldModel = this[CURRENT_MODEL]; if (value === oldModel) return; // Unbind from old model if (oldModel) { unbindFromModel(this, oldModel); } // Store new model this[CURRENT_MODEL] = value; // Resolve reader/writer functions based on type if (value) { const typeName = value.__meta?.typeName ?? \"primitives.STRING\"; // Resolve reader const reader = this.modelReaders?.get(typeName); if (reader) { this[MODEL_READ_FN] = reader.bind(this); } else { // eslint-disable-next-line no-console console.warn(`No modelReader for type \"${typeName}\". Available: ${[...(this.modelReaders?.keys() ?? [])].join(\", \")}`); this[MODEL_READ_FN] = undefined; } // Resolve writer const writer = this.modelWriters?.get(typeName); if (writer) { this[MODEL_WRITE_FN] = writer.bind(this); } else { // eslint-disable-next-line no-console console.warn(`No modelWriter for type \"${typeName}\". Available: ${[...(this.modelWriters?.keys() ?? [])].join(\", \")}`); this[MODEL_WRITE_FN] = undefined; } } else { this[MODEL_READ_FN] = undefined; this[MODEL_WRITE_FN] = undefined; } // Bind to new model (if connected) if (value && this.isConnected) { bindToModel(this, value); } // Trigger Lit update this.requestUpdate(); }, enumerable: true, configurable: true, }); }; }, /** * Binds a method to an event on the model. * When the event fires, the method is called with the event detail. * * @param eventType - The event type to listen for */ onEvent(eventType) { return function onEventDecorator(target, propertyKey, descriptor) { const originalMethod = descriptor.value; const ctor = target.constructor; let events = ctor[FIELD_EVENTS]; if (!events) { events = []; ctor[FIELD_EVENTS] = events; } events.push({ propertyKey, eventType, method: originalMethod }); patchLifecycle(ctor); }; }, }",
|
|
1235
|
+
"description": "### fieldBindings\n\nDecorators for creating reusable components that bind to FieldNode models.\n\nThe component provides `modelReaders` and `modelWriters` maps keyed by\n`__meta.typeName`. The decorator handles:\n- Binding/unbinding on model change\n- Calling the correct reader when model value changes\n- Providing `writeToModel()` method that calls the correct writer"
|
|
1236
|
+
}
|
|
1237
|
+
],
|
|
1238
|
+
"exports": [
|
|
1239
|
+
{
|
|
1240
|
+
"kind": "js",
|
|
1241
|
+
"name": "fieldBindings",
|
|
1242
|
+
"declaration": {
|
|
1243
|
+
"name": "fieldBindings",
|
|
1244
|
+
"module": "dist/decorators/FieldBindings.js"
|
|
1245
|
+
}
|
|
1246
|
+
}
|
|
1247
|
+
]
|
|
1248
|
+
},
|
|
1249
|
+
{
|
|
1250
|
+
"kind": "javascript-module",
|
|
1251
|
+
"path": "dist/decorators/FieldBindings.js.map",
|
|
1252
|
+
"declarations": [],
|
|
1253
|
+
"exports": []
|
|
1254
|
+
},
|
|
1255
|
+
{
|
|
1256
|
+
"kind": "javascript-module",
|
|
1257
|
+
"path": "dist/decorators/ModelDecorators.js",
|
|
1258
|
+
"declarations": [
|
|
1259
|
+
{
|
|
1260
|
+
"kind": "function",
|
|
1261
|
+
"name": "modelBindings",
|
|
1262
|
+
"parameters": [
|
|
1263
|
+
{
|
|
1264
|
+
"name": "model",
|
|
1265
|
+
"description": "The FieldNode model to bind to"
|
|
1266
|
+
}
|
|
1267
|
+
],
|
|
1268
|
+
"description": "### modelBindings Factory\n\nCreates type-safe decorators bound to a specific FieldNode model.\nUse this to bind component properties and methods to model events.\n\nUsage:\n```typescript\nimport { modelBindings } from \"@x/furo/open-models/ModelDecorators\";\nimport { CubeEntityModel } from \"./CubeEntityModel\";\n\nconst cubeModel = modelBindings(CubeEntityModel.model);\n\nclass MyComponent extends LitElement {\n // Bind to a nested field value - updates when cube.length changes",
|
|
1269
|
+
"return": {
|
|
1270
|
+
"type": {
|
|
1271
|
+
"text": ""
|
|
1272
|
+
}
|
|
1273
|
+
}
|
|
1274
|
+
}
|
|
1275
|
+
],
|
|
1276
|
+
"exports": [
|
|
1277
|
+
{
|
|
1278
|
+
"kind": "js",
|
|
1279
|
+
"name": "modelBindings",
|
|
1280
|
+
"declaration": {
|
|
1281
|
+
"name": "modelBindings",
|
|
1282
|
+
"module": "dist/decorators/ModelDecorators.js"
|
|
1283
|
+
}
|
|
1284
|
+
}
|
|
1285
|
+
]
|
|
1286
|
+
},
|
|
1287
|
+
{
|
|
1288
|
+
"kind": "javascript-module",
|
|
1289
|
+
"path": "dist/decorators/ModelDecorators.js.map",
|
|
1290
|
+
"declarations": [],
|
|
1291
|
+
"exports": []
|
|
1292
|
+
},
|
|
1293
|
+
{
|
|
1294
|
+
"kind": "javascript-module",
|
|
1295
|
+
"path": "dist/decorators/SchemaBuilder.js",
|
|
1296
|
+
"declarations": [
|
|
1297
|
+
{
|
|
1298
|
+
"kind": "class",
|
|
1299
|
+
"description": "",
|
|
1300
|
+
"name": "SchemaBuilder",
|
|
1301
|
+
"members": [
|
|
1302
|
+
{
|
|
1303
|
+
"kind": "method",
|
|
1304
|
+
"name": "generate",
|
|
1305
|
+
"static": true,
|
|
1306
|
+
"parameters": [
|
|
1307
|
+
{
|
|
1308
|
+
"name": "model"
|
|
1309
|
+
}
|
|
1310
|
+
]
|
|
1311
|
+
},
|
|
1312
|
+
{
|
|
1313
|
+
"kind": "method",
|
|
1314
|
+
"name": "getProps",
|
|
1315
|
+
"static": true,
|
|
1316
|
+
"parameters": [
|
|
1317
|
+
{
|
|
1318
|
+
"name": "model"
|
|
1319
|
+
}
|
|
1320
|
+
]
|
|
1321
|
+
},
|
|
1322
|
+
{
|
|
1323
|
+
"kind": "method",
|
|
1324
|
+
"name": "getRequiredFields",
|
|
1325
|
+
"static": true,
|
|
1326
|
+
"parameters": [
|
|
1327
|
+
{
|
|
1328
|
+
"name": "descriptors"
|
|
1329
|
+
}
|
|
1330
|
+
]
|
|
1331
|
+
},
|
|
1332
|
+
{
|
|
1333
|
+
"kind": "method",
|
|
1334
|
+
"name": "getConstraints",
|
|
1335
|
+
"static": true,
|
|
1336
|
+
"parameters": [
|
|
1337
|
+
{
|
|
1338
|
+
"name": "constraints"
|
|
1339
|
+
}
|
|
1340
|
+
]
|
|
1341
|
+
},
|
|
1342
|
+
{
|
|
1343
|
+
"kind": "method",
|
|
1344
|
+
"name": "createFieldNodeFromSchema",
|
|
1345
|
+
"static": true,
|
|
1346
|
+
"parameters": [
|
|
1347
|
+
{
|
|
1348
|
+
"name": "schema"
|
|
1349
|
+
}
|
|
1350
|
+
]
|
|
1351
|
+
}
|
|
1352
|
+
]
|
|
1353
|
+
}
|
|
1354
|
+
],
|
|
1355
|
+
"exports": [
|
|
1356
|
+
{
|
|
1357
|
+
"kind": "js",
|
|
1358
|
+
"name": "SchemaBuilder",
|
|
1359
|
+
"declaration": {
|
|
1360
|
+
"name": "SchemaBuilder",
|
|
1361
|
+
"module": "dist/decorators/SchemaBuilder.js"
|
|
1362
|
+
}
|
|
1363
|
+
}
|
|
1364
|
+
]
|
|
1365
|
+
},
|
|
1366
|
+
{
|
|
1367
|
+
"kind": "javascript-module",
|
|
1368
|
+
"path": "dist/decorators/SchemaBuilder.js.map",
|
|
1369
|
+
"declarations": [],
|
|
1370
|
+
"exports": []
|
|
1371
|
+
},
|
|
1372
|
+
{
|
|
1373
|
+
"kind": "javascript-module",
|
|
1374
|
+
"path": "dist/decorators/ServiceDecorators.js",
|
|
1375
|
+
"declarations": [
|
|
1376
|
+
{
|
|
1377
|
+
"kind": "function",
|
|
1378
|
+
"name": "serviceBindings",
|
|
1379
|
+
"parameters": [
|
|
1380
|
+
{
|
|
1381
|
+
"name": "service",
|
|
1382
|
+
"description": "The EventTarget service to bind to"
|
|
1383
|
+
}
|
|
1384
|
+
],
|
|
1385
|
+
"description": "### serviceBindings Factory\n\nCreates type-safe decorators bound to a specific service instance.\nUse this to bind component properties and methods to service events.\n\nThe factory is generic and works with any `EventTarget`.\nEvent types and their detail payloads are type-checked at compile time\nvia the `TEventMap` type parameter.\n\nUsage:\n```typescript\nimport { cubeEntityService } from \"./CubeEntityService\";\nimport { serviceBindings } from \"./ServiceDecorators.js\";\n\nconst cube = serviceBindings(cubeEntityService);\n\nclass MyComponent extends LitElement {\n // Property binding - type-safe event name, auto-extracts from detail",
|
|
1386
|
+
"return": {
|
|
1387
|
+
"type": {
|
|
1388
|
+
"text": ""
|
|
1389
|
+
}
|
|
1390
|
+
}
|
|
1391
|
+
}
|
|
1392
|
+
],
|
|
1393
|
+
"exports": [
|
|
1394
|
+
{
|
|
1395
|
+
"kind": "js",
|
|
1396
|
+
"name": "serviceBindings",
|
|
1397
|
+
"declaration": {
|
|
1398
|
+
"name": "serviceBindings",
|
|
1399
|
+
"module": "dist/decorators/ServiceDecorators.js"
|
|
1400
|
+
}
|
|
1401
|
+
}
|
|
1402
|
+
]
|
|
1403
|
+
},
|
|
1404
|
+
{
|
|
1405
|
+
"kind": "javascript-module",
|
|
1406
|
+
"path": "dist/decorators/ServiceDecorators.js.map",
|
|
1407
|
+
"declarations": [],
|
|
1408
|
+
"exports": []
|
|
1409
|
+
},
|
|
1410
|
+
{
|
|
1411
|
+
"kind": "javascript-module",
|
|
1412
|
+
"path": "dist/decorators/defaultServiceEventHandlers.js",
|
|
1413
|
+
"declarations": [
|
|
1414
|
+
{
|
|
1415
|
+
"kind": "function",
|
|
1416
|
+
"name": "defaultServiceEventHandlers",
|
|
1417
|
+
"parameters": [
|
|
1418
|
+
{
|
|
1419
|
+
"name": "dispatch",
|
|
1420
|
+
"description": "Function to dispatch events (typically bound to the service's dispatchEvent)"
|
|
1421
|
+
},
|
|
1422
|
+
{
|
|
1423
|
+
"name": "options",
|
|
1424
|
+
"default": "{}",
|
|
1425
|
+
"description": "Optional configuration"
|
|
1426
|
+
}
|
|
1427
|
+
],
|
|
1428
|
+
"description": "### defaultServiceEventHandlers\n\nCreates default service handlers that dispatch standard events.\nUse this to reduce boilerplate when setting up service handlers.\n\nThe `onResponse` handler is intentionally NOT included - you must provide your own\nimplementation since response handling is typically service-specific.\n\nUsage:\n```typescript\nclass MyEntityService extends EventTarget {\n private dispatch = createDispatch(this);\n\n setupHandlers() {\n this.service.Get.setHandlers({\n ...defaultServiceEventHandlers(this.dispatch),\n onResponse: (response, serverResponse) => {\n // Your custom response handling\n this.entity.fromLiteral(response.entity);\n this.dispatch(\"response-received\", { response, serverResponse });\n },\n });\n }\n}\n```\n\nWith loading check:\n```typescript\nthis.service.Get.setHandlers({\n ...defaultServiceEventHandlers(this.dispatch, {\n isLoading: () => this.service.Get.isLoading || this.service.Update.isLoading,\n }),\n onResponse: (response, serverResponse) => { ... },\n});\n```",
|
|
1429
|
+
"return": {
|
|
1430
|
+
"type": {
|
|
1431
|
+
"text": ""
|
|
1432
|
+
}
|
|
1433
|
+
}
|
|
1434
|
+
},
|
|
1435
|
+
{
|
|
1436
|
+
"kind": "function",
|
|
1437
|
+
"name": "createDispatch",
|
|
1438
|
+
"parameters": [
|
|
1439
|
+
{
|
|
1440
|
+
"name": "target",
|
|
1441
|
+
"description": "The EventTarget to dispatch events on"
|
|
1442
|
+
}
|
|
1443
|
+
],
|
|
1444
|
+
"description": "### createDispatch\n\nHelper to create a typed dispatch function for an EventTarget.\n\nUsage:\n```typescript\nclass MyService extends EventTarget {\n private dispatch = createDispatch(this);\n\n doSomething() {\n this.dispatch(\"busy-changed\", { busy: true });\n }\n}\n```",
|
|
1445
|
+
"return": {
|
|
1446
|
+
"type": {
|
|
1447
|
+
"text": ""
|
|
1448
|
+
}
|
|
1449
|
+
}
|
|
1450
|
+
}
|
|
1451
|
+
],
|
|
1452
|
+
"exports": [
|
|
1453
|
+
{
|
|
1454
|
+
"kind": "js",
|
|
1455
|
+
"name": "defaultServiceEventHandlers",
|
|
1456
|
+
"declaration": {
|
|
1457
|
+
"name": "defaultServiceEventHandlers",
|
|
1458
|
+
"module": "dist/decorators/defaultServiceEventHandlers.js"
|
|
1459
|
+
}
|
|
1460
|
+
},
|
|
1461
|
+
{
|
|
1462
|
+
"kind": "js",
|
|
1463
|
+
"name": "createDispatch",
|
|
1464
|
+
"declaration": {
|
|
1465
|
+
"name": "createDispatch",
|
|
1466
|
+
"module": "dist/decorators/defaultServiceEventHandlers.js"
|
|
1467
|
+
}
|
|
1468
|
+
}
|
|
1469
|
+
]
|
|
1470
|
+
},
|
|
1471
|
+
{
|
|
1472
|
+
"kind": "javascript-module",
|
|
1473
|
+
"path": "dist/decorators/defaultServiceEventHandlers.js.map",
|
|
1474
|
+
"declarations": [],
|
|
1475
|
+
"exports": []
|
|
1476
|
+
},
|
|
1192
1477
|
{
|
|
1193
1478
|
"kind": "javascript-module",
|
|
1194
1479
|
"path": "dist/index.js",
|
|
@@ -1481,6 +1766,54 @@
|
|
|
1481
1766
|
"name": "RECURSION",
|
|
1482
1767
|
"module": "./proxies/RECURSION.js"
|
|
1483
1768
|
}
|
|
1769
|
+
},
|
|
1770
|
+
{
|
|
1771
|
+
"kind": "js",
|
|
1772
|
+
"name": "serviceBindings",
|
|
1773
|
+
"declaration": {
|
|
1774
|
+
"name": "serviceBindings",
|
|
1775
|
+
"module": "./decorators/ServiceDecorators.js"
|
|
1776
|
+
}
|
|
1777
|
+
},
|
|
1778
|
+
{
|
|
1779
|
+
"kind": "js",
|
|
1780
|
+
"name": "modelBindings",
|
|
1781
|
+
"declaration": {
|
|
1782
|
+
"name": "modelBindings",
|
|
1783
|
+
"module": "./decorators/ModelDecorators.js"
|
|
1784
|
+
}
|
|
1785
|
+
},
|
|
1786
|
+
{
|
|
1787
|
+
"kind": "js",
|
|
1788
|
+
"name": "fieldBindings",
|
|
1789
|
+
"declaration": {
|
|
1790
|
+
"name": "fieldBindings",
|
|
1791
|
+
"module": "./decorators/FieldBindings.js"
|
|
1792
|
+
}
|
|
1793
|
+
},
|
|
1794
|
+
{
|
|
1795
|
+
"kind": "js",
|
|
1796
|
+
"name": "SchemaBuilder",
|
|
1797
|
+
"declaration": {
|
|
1798
|
+
"name": "SchemaBuilder",
|
|
1799
|
+
"module": "./decorators/SchemaBuilder.js"
|
|
1800
|
+
}
|
|
1801
|
+
},
|
|
1802
|
+
{
|
|
1803
|
+
"kind": "js",
|
|
1804
|
+
"name": "defaultServiceEventHandlers",
|
|
1805
|
+
"declaration": {
|
|
1806
|
+
"name": "defaultServiceEventHandlers",
|
|
1807
|
+
"module": "./decorators/defaultServiceEventHandlers.js"
|
|
1808
|
+
}
|
|
1809
|
+
},
|
|
1810
|
+
{
|
|
1811
|
+
"kind": "js",
|
|
1812
|
+
"name": "createDispatch",
|
|
1813
|
+
"declaration": {
|
|
1814
|
+
"name": "createDispatch",
|
|
1815
|
+
"module": "./decorators/defaultServiceEventHandlers.js"
|
|
1816
|
+
}
|
|
1484
1817
|
}
|
|
1485
1818
|
]
|
|
1486
1819
|
},
|
|
@@ -12019,7 +12352,7 @@
|
|
|
12019
12352
|
"type": {
|
|
12020
12353
|
"text": "array"
|
|
12021
12354
|
},
|
|
12022
|
-
"default": "[ { fieldName: 'schemaOrReference', protoName: 'schema_or_reference', FieldConstructor: OpenapiV3SchemaOrReference, constraints: {}, description: '' }, { fieldName: 'boolean', protoName: 'boolean', FieldConstructor: BOOLEAN, constraints: {}, description: '' } ]"
|
|
12355
|
+
"default": "[ { fieldName: 'schemaOrReference', protoName: 'schema_or_reference', FieldConstructor: OpenapiV3SchemaOrReference, constraints: {}, description: '', }, { fieldName: 'boolean', protoName: 'boolean', FieldConstructor: BOOLEAN, constraints: {}, description: '', }, ]"
|
|
12023
12356
|
},
|
|
12024
12357
|
{
|
|
12025
12358
|
"kind": "field",
|
|
@@ -12941,7 +13274,7 @@
|
|
|
12941
13274
|
"type": {
|
|
12942
13275
|
"text": "array"
|
|
12943
13276
|
},
|
|
12944
|
-
"default": "[ { fieldName: 'value', protoName: 'value', FieldConstructor: ANY, constraints: {}, description: '' }, { fieldName: 'yaml', protoName: 'yaml', FieldConstructor: STRING, constraints: {}, description: '' } ]"
|
|
13277
|
+
"default": "[ { fieldName: 'value', protoName: 'value', FieldConstructor: ANY, constraints: {}, description: '', }, { fieldName: 'yaml', protoName: 'yaml', FieldConstructor: STRING, constraints: {}, description: '', }, ]"
|
|
12945
13278
|
},
|
|
12946
13279
|
{
|
|
12947
13280
|
"kind": "field",
|
|
@@ -13863,7 +14196,7 @@
|
|
|
13863
14196
|
"type": {
|
|
13864
14197
|
"text": "array"
|
|
13865
14198
|
},
|
|
13866
|
-
"default": "[ { fieldName: 'any', protoName: 'any', FieldConstructor: OpenapiV3Any, constraints: {}, description: '' }, { fieldName: 'expression', protoName: 'expression', FieldConstructor: OpenapiV3Expression, constraints: {}, description: '' } ]"
|
|
14199
|
+
"default": "[ { fieldName: 'any', protoName: 'any', FieldConstructor: OpenapiV3Any, constraints: {}, description: '', }, { fieldName: 'expression', protoName: 'expression', FieldConstructor: OpenapiV3Expression, constraints: {}, description: '', }, ]"
|
|
13867
14200
|
},
|
|
13868
14201
|
{
|
|
13869
14202
|
"kind": "field",
|
|
@@ -14785,7 +15118,7 @@
|
|
|
14785
15118
|
"type": {
|
|
14786
15119
|
"text": "array"
|
|
14787
15120
|
},
|
|
14788
|
-
"default": "[ { fieldName: 'path', protoName: 'path', FieldConstructor: OpenapiV3NamedPathItem, constraints: {}, description: '' }, { fieldName: 'specificationExtension', protoName: 'specification_extension', FieldConstructor: OpenapiV3NamedAny, constraints: {}, description: '' } ]"
|
|
15121
|
+
"default": "[ { fieldName: 'path', protoName: 'path', FieldConstructor: OpenapiV3NamedPathItem, constraints: {}, description: '', }, { fieldName: 'specificationExtension', protoName: 'specification_extension', FieldConstructor: OpenapiV3NamedAny, constraints: {}, description: '', }, ]"
|
|
14789
15122
|
},
|
|
14790
15123
|
{
|
|
14791
15124
|
"kind": "field",
|
|
@@ -15707,7 +16040,7 @@
|
|
|
15707
16040
|
"type": {
|
|
15708
16041
|
"text": "array"
|
|
15709
16042
|
},
|
|
15710
|
-
"default": "[ { fieldName: 'callback', protoName: 'callback', FieldConstructor: OpenapiV3Callback, constraints: {}, description: '' }, { fieldName: 'reference', protoName: 'reference', FieldConstructor: OpenapiV3Reference, constraints: {}, description: '' } ]"
|
|
16043
|
+
"default": "[ { fieldName: 'callback', protoName: 'callback', FieldConstructor: OpenapiV3Callback, constraints: {}, description: '', }, { fieldName: 'reference', protoName: 'reference', FieldConstructor: OpenapiV3Reference, constraints: {}, description: '', }, ]"
|
|
15711
16044
|
},
|
|
15712
16045
|
{
|
|
15713
16046
|
"kind": "field",
|
|
@@ -16625,7 +16958,7 @@
|
|
|
16625
16958
|
"type": {
|
|
16626
16959
|
"text": "array"
|
|
16627
16960
|
},
|
|
16628
|
-
"default": "[ { fieldName: 'additionalProperties', protoName: 'additional_properties', FieldConstructor: OpenapiV3NamedCallbackOrReference, constraints: {}, description: '' } ]"
|
|
16961
|
+
"default": "[ { fieldName: 'additionalProperties', protoName: 'additional_properties', FieldConstructor: OpenapiV3NamedCallbackOrReference, constraints: {}, description: '', }, ]"
|
|
16629
16962
|
},
|
|
16630
16963
|
{
|
|
16631
16964
|
"kind": "field",
|
|
@@ -17574,7 +17907,7 @@
|
|
|
17574
17907
|
"type": {
|
|
17575
17908
|
"text": "array"
|
|
17576
17909
|
},
|
|
17577
|
-
"default": "[ { fieldName: 'schemas', protoName: 'schemas', FieldConstructor: OpenapiV3SchemasOrReferences, constraints: {}, description: '' }, { fieldName: 'responses', protoName: 'responses', FieldConstructor: OpenapiV3ResponsesOrReferences, constraints: {}, description: '' }, { fieldName: 'parameters', protoName: 'parameters', FieldConstructor: OpenapiV3ParametersOrReferences, constraints: {}, description: '' }, { fieldName: 'examples', protoName: 'examples', FieldConstructor: OpenapiV3ExamplesOrReferences, constraints: {}, description: '' }, { fieldName: 'requestBodies', protoName: 'request_bodies', FieldConstructor: OpenapiV3RequestBodiesOrReferences, constraints: {}, description: '' }, { fieldName: 'headers', protoName: 'headers', FieldConstructor: OpenapiV3HeadersOrReferences, constraints: {}, description: '' }, { fieldName: 'securitySchemes', protoName: 'security_schemes', FieldConstructor: OpenapiV3SecuritySchemesOrReferences, constraints: {}, description: '' }, { fieldName: 'links', protoName: 'links', FieldConstructor: OpenapiV3LinksOrReferences, constraints: {}, description: '' }, { fieldName: 'callbacks', protoName: 'callbacks', FieldConstructor: OpenapiV3CallbacksOrReferences, constraints: {}, description: '' }, { fieldName: 'specificationExtension', protoName: 'specification_extension', FieldConstructor: OpenapiV3NamedAny, constraints: {}, description: '' } ]"
|
|
17910
|
+
"default": "[ { fieldName: 'schemas', protoName: 'schemas', FieldConstructor: OpenapiV3SchemasOrReferences, constraints: {}, description: '', }, { fieldName: 'responses', protoName: 'responses', FieldConstructor: OpenapiV3ResponsesOrReferences, constraints: {}, description: '', }, { fieldName: 'parameters', protoName: 'parameters', FieldConstructor: OpenapiV3ParametersOrReferences, constraints: {}, description: '', }, { fieldName: 'examples', protoName: 'examples', FieldConstructor: OpenapiV3ExamplesOrReferences, constraints: {}, description: '', }, { fieldName: 'requestBodies', protoName: 'request_bodies', FieldConstructor: OpenapiV3RequestBodiesOrReferences, constraints: {}, description: '', }, { fieldName: 'headers', protoName: 'headers', FieldConstructor: OpenapiV3HeadersOrReferences, constraints: {}, description: '', }, { fieldName: 'securitySchemes', protoName: 'security_schemes', FieldConstructor: OpenapiV3SecuritySchemesOrReferences, constraints: {}, description: '', }, { fieldName: 'links', protoName: 'links', FieldConstructor: OpenapiV3LinksOrReferences, constraints: {}, description: '', }, { fieldName: 'callbacks', protoName: 'callbacks', FieldConstructor: OpenapiV3CallbacksOrReferences, constraints: {}, description: '', }, { fieldName: 'specificationExtension', protoName: 'specification_extension', FieldConstructor: OpenapiV3NamedAny, constraints: {}, description: '', }, ]"
|
|
17578
17911
|
},
|
|
17579
17912
|
{
|
|
17580
17913
|
"kind": "field",
|
|
@@ -18544,7 +18877,7 @@
|
|
|
18544
18877
|
"type": {
|
|
18545
18878
|
"text": "array"
|
|
18546
18879
|
},
|
|
18547
|
-
"default": "[ { fieldName: 'name', protoName: 'name', FieldConstructor: STRING, constraints: {}, description: '' }, { fieldName: 'url', protoName: 'url', FieldConstructor: STRING, constraints: {}, description: '' }, { fieldName: 'email', protoName: 'email', FieldConstructor: STRING, constraints: {}, description: '' }, { fieldName: 'specificationExtension', protoName: 'specification_extension', FieldConstructor: OpenapiV3NamedAny, constraints: {}, description: '' } ]"
|
|
18880
|
+
"default": "[ { fieldName: 'name', protoName: 'name', FieldConstructor: STRING, constraints: {}, description: '', }, { fieldName: 'url', protoName: 'url', FieldConstructor: STRING, constraints: {}, description: '', }, { fieldName: 'email', protoName: 'email', FieldConstructor: STRING, constraints: {}, description: '', }, { fieldName: 'specificationExtension', protoName: 'specification_extension', FieldConstructor: OpenapiV3NamedAny, constraints: {}, description: '', }, ]"
|
|
18548
18881
|
},
|
|
18549
18882
|
{
|
|
18550
18883
|
"kind": "field",
|
|
@@ -19480,7 +19813,7 @@
|
|
|
19480
19813
|
"type": {
|
|
19481
19814
|
"text": "array"
|
|
19482
19815
|
},
|
|
19483
|
-
"default": "[ { fieldName: 'number', protoName: 'number', FieldConstructor: DOUBLE, constraints: {}, description: '' }, { fieldName: 'boolean', protoName: 'boolean', FieldConstructor: BOOLEAN, constraints: {}, description: '' }, { fieldName: 'string', protoName: 'string', FieldConstructor: STRING, constraints: {}, description: '' } ]"
|
|
19816
|
+
"default": "[ { fieldName: 'number', protoName: 'number', FieldConstructor: DOUBLE, constraints: {}, description: '', }, { fieldName: 'boolean', protoName: 'boolean', FieldConstructor: BOOLEAN, constraints: {}, description: '', }, { fieldName: 'string', protoName: 'string', FieldConstructor: STRING, constraints: {}, description: '', }, ]"
|
|
19484
19817
|
},
|
|
19485
19818
|
{
|
|
19486
19819
|
"kind": "field",
|
|
@@ -20411,7 +20744,7 @@
|
|
|
20411
20744
|
"type": {
|
|
20412
20745
|
"text": "array"
|
|
20413
20746
|
},
|
|
20414
|
-
"default": "[ { fieldName: 'propertyName', protoName: 'property_name', FieldConstructor: STRING, constraints: {}, description: '' }, { fieldName: 'mapping', protoName: 'mapping', FieldConstructor: OpenapiV3Strings, constraints: {}, description: '' }, { fieldName: 'specificationExtension', protoName: 'specification_extension', FieldConstructor: OpenapiV3NamedAny, constraints: {}, description: '' } ]"
|
|
20747
|
+
"default": "[ { fieldName: 'propertyName', protoName: 'property_name', FieldConstructor: STRING, constraints: {}, description: '', }, { fieldName: 'mapping', protoName: 'mapping', FieldConstructor: OpenapiV3Strings, constraints: {}, description: '', }, { fieldName: 'specificationExtension', protoName: 'specification_extension', FieldConstructor: OpenapiV3NamedAny, constraints: {}, description: '', }, ]"
|
|
20415
20748
|
},
|
|
20416
20749
|
{
|
|
20417
20750
|
"kind": "field",
|
|
@@ -21366,7 +21699,7 @@
|
|
|
21366
21699
|
"type": {
|
|
21367
21700
|
"text": "array"
|
|
21368
21701
|
},
|
|
21369
|
-
"default": "[ { fieldName: 'openapi', protoName: 'openapi', FieldConstructor: STRING, constraints: {}, description: '' }, { fieldName: 'info', protoName: 'info', FieldConstructor: OpenapiV3Info, constraints: {}, description: '' }, { fieldName: 'servers', protoName: 'servers', FieldConstructor: OpenapiV3Server, constraints: {}, description: '' }, { fieldName: 'paths', protoName: 'paths', FieldConstructor: OpenapiV3Paths, constraints: {}, description: '' }, { fieldName: 'components', protoName: 'components', FieldConstructor: OpenapiV3Components, constraints: {}, description: '' }, { fieldName: 'security', protoName: 'security', FieldConstructor: OpenapiV3SecurityRequirement, constraints: {}, description: '' }, { fieldName: 'tags', protoName: 'tags', FieldConstructor: OpenapiV3Tag, constraints: {}, description: '' }, { fieldName: 'externalDocs', protoName: 'external_docs', FieldConstructor: OpenapiV3ExternalDocs, constraints: {}, description: '' }, { fieldName: 'specificationExtension', protoName: 'specification_extension', FieldConstructor: OpenapiV3NamedAny, constraints: {}, description: '' } ]"
|
|
21702
|
+
"default": "[ { fieldName: 'openapi', protoName: 'openapi', FieldConstructor: STRING, constraints: {}, description: '', }, { fieldName: 'info', protoName: 'info', FieldConstructor: OpenapiV3Info, constraints: {}, description: '', }, { fieldName: 'servers', protoName: 'servers', FieldConstructor: OpenapiV3Server, constraints: {}, description: '', }, { fieldName: 'paths', protoName: 'paths', FieldConstructor: OpenapiV3Paths, constraints: {}, description: '', }, { fieldName: 'components', protoName: 'components', FieldConstructor: OpenapiV3Components, constraints: {}, description: '', }, { fieldName: 'security', protoName: 'security', FieldConstructor: OpenapiV3SecurityRequirement, constraints: {}, description: '', }, { fieldName: 'tags', protoName: 'tags', FieldConstructor: OpenapiV3Tag, constraints: {}, description: '', }, { fieldName: 'externalDocs', protoName: 'external_docs', FieldConstructor: OpenapiV3ExternalDocs, constraints: {}, description: '', }, { fieldName: 'specificationExtension', protoName: 'specification_extension', FieldConstructor: OpenapiV3NamedAny, constraints: {}, description: '', }, ]"
|
|
21370
21703
|
},
|
|
21371
21704
|
{
|
|
21372
21705
|
"kind": "field",
|
|
@@ -22339,7 +22672,7 @@
|
|
|
22339
22672
|
"type": {
|
|
22340
22673
|
"text": "array"
|
|
22341
22674
|
},
|
|
22342
|
-
"default": "[ { fieldName: 'contentType', protoName: 'content_type', FieldConstructor: STRING, constraints: {}, description: '' }, { fieldName: 'headers', protoName: 'headers', FieldConstructor: OpenapiV3HeadersOrReferences, constraints: {}, description: '' }, { fieldName: 'style', protoName: 'style', FieldConstructor: STRING, constraints: {}, description: '' }, { fieldName: 'explode', protoName: 'explode', FieldConstructor: BOOLEAN, constraints: {}, description: '' }, { fieldName: 'allowReserved', protoName: 'allow_reserved', FieldConstructor: BOOLEAN, constraints: {}, description: '' }, { fieldName: 'specificationExtension', protoName: 'specification_extension', FieldConstructor: OpenapiV3NamedAny, constraints: {}, description: '' } ]"
|
|
22675
|
+
"default": "[ { fieldName: 'contentType', protoName: 'content_type', FieldConstructor: STRING, constraints: {}, description: '', }, { fieldName: 'headers', protoName: 'headers', FieldConstructor: OpenapiV3HeadersOrReferences, constraints: {}, description: '', }, { fieldName: 'style', protoName: 'style', FieldConstructor: STRING, constraints: {}, description: '', }, { fieldName: 'explode', protoName: 'explode', FieldConstructor: BOOLEAN, constraints: {}, description: '', }, { fieldName: 'allowReserved', protoName: 'allow_reserved', FieldConstructor: BOOLEAN, constraints: {}, description: '', }, { fieldName: 'specificationExtension', protoName: 'specification_extension', FieldConstructor: OpenapiV3NamedAny, constraints: {}, description: '', }, ]"
|
|
22343
22676
|
},
|
|
22344
22677
|
{
|
|
22345
22678
|
"kind": "field",
|
|
@@ -23277,7 +23610,7 @@
|
|
|
23277
23610
|
"type": {
|
|
23278
23611
|
"text": "array"
|
|
23279
23612
|
},
|
|
23280
|
-
"default": "[ { fieldName: 'additionalProperties', protoName: 'additional_properties', FieldConstructor: OpenapiV3NamedEncoding, constraints: {}, description: '' } ]"
|
|
23613
|
+
"default": "[ { fieldName: 'additionalProperties', protoName: 'additional_properties', FieldConstructor: OpenapiV3NamedEncoding, constraints: {}, description: '', }, ]"
|
|
23281
23614
|
},
|
|
23282
23615
|
{
|
|
23283
23616
|
"kind": "field",
|
|
@@ -24202,7 +24535,7 @@
|
|
|
24202
24535
|
"type": {
|
|
24203
24536
|
"text": "array"
|
|
24204
24537
|
},
|
|
24205
|
-
"default": "[ { fieldName: 'summary', protoName: 'summary', FieldConstructor: STRING, constraints: {}, description: '' }, { fieldName: 'description', protoName: 'description', FieldConstructor: STRING, constraints: {}, description: '' }, { fieldName: 'value', protoName: 'value', FieldConstructor: OpenapiV3Any, constraints: {}, description: '' }, { fieldName: 'externalValue', protoName: 'external_value', FieldConstructor: STRING, constraints: {}, description: '' }, { fieldName: 'specificationExtension', protoName: 'specification_extension', FieldConstructor: OpenapiV3NamedAny, constraints: {}, description: '' } ]"
|
|
24538
|
+
"default": "[ { fieldName: 'summary', protoName: 'summary', FieldConstructor: STRING, constraints: {}, description: '', }, { fieldName: 'description', protoName: 'description', FieldConstructor: STRING, constraints: {}, description: '', }, { fieldName: 'value', protoName: 'value', FieldConstructor: OpenapiV3Any, constraints: {}, description: '', }, { fieldName: 'externalValue', protoName: 'external_value', FieldConstructor: STRING, constraints: {}, description: '', }, { fieldName: 'specificationExtension', protoName: 'specification_extension', FieldConstructor: OpenapiV3NamedAny, constraints: {}, description: '', }, ]"
|
|
24206
24539
|
},
|
|
24207
24540
|
{
|
|
24208
24541
|
"kind": "field",
|
|
@@ -25139,7 +25472,7 @@
|
|
|
25139
25472
|
"type": {
|
|
25140
25473
|
"text": "array"
|
|
25141
25474
|
},
|
|
25142
|
-
"default": "[ { fieldName: 'example', protoName: 'example', FieldConstructor: OpenapiV3Example, constraints: {}, description: '' }, { fieldName: 'reference', protoName: 'reference', FieldConstructor: OpenapiV3Reference, constraints: {}, description: '' } ]"
|
|
25475
|
+
"default": "[ { fieldName: 'example', protoName: 'example', FieldConstructor: OpenapiV3Example, constraints: {}, description: '', }, { fieldName: 'reference', protoName: 'reference', FieldConstructor: OpenapiV3Reference, constraints: {}, description: '', }, ]"
|
|
25143
25476
|
},
|
|
25144
25477
|
{
|
|
25145
25478
|
"kind": "field",
|
|
@@ -26057,7 +26390,7 @@
|
|
|
26057
26390
|
"type": {
|
|
26058
26391
|
"text": "array"
|
|
26059
26392
|
},
|
|
26060
|
-
"default": "[ { fieldName: 'additionalProperties', protoName: 'additional_properties', FieldConstructor: OpenapiV3NamedExampleOrReference, constraints: {}, description: '' } ]"
|
|
26393
|
+
"default": "[ { fieldName: 'additionalProperties', protoName: 'additional_properties', FieldConstructor: OpenapiV3NamedExampleOrReference, constraints: {}, description: '', }, ]"
|
|
26061
26394
|
},
|
|
26062
26395
|
{
|
|
26063
26396
|
"kind": "field",
|
|
@@ -26970,7 +27303,7 @@
|
|
|
26970
27303
|
"type": {
|
|
26971
27304
|
"text": "array"
|
|
26972
27305
|
},
|
|
26973
|
-
"default": "[ { fieldName: 'additionalProperties', protoName: 'additional_properties', FieldConstructor: OpenapiV3NamedAny, constraints: {}, description: '' } ]"
|
|
27306
|
+
"default": "[ { fieldName: 'additionalProperties', protoName: 'additional_properties', FieldConstructor: OpenapiV3NamedAny, constraints: {}, description: '', }, ]"
|
|
26974
27307
|
},
|
|
26975
27308
|
{
|
|
26976
27309
|
"kind": "field",
|
|
@@ -27887,7 +28220,7 @@
|
|
|
27887
28220
|
"type": {
|
|
27888
28221
|
"text": "array"
|
|
27889
28222
|
},
|
|
27890
|
-
"default": "[ { fieldName: 'description', protoName: 'description', FieldConstructor: STRING, constraints: {}, description: '' }, { fieldName: 'url', protoName: 'url', FieldConstructor: STRING, constraints: {}, description: '' }, { fieldName: 'specificationExtension', protoName: 'specification_extension', FieldConstructor: OpenapiV3NamedAny, constraints: {}, description: '' } ]"
|
|
28223
|
+
"default": "[ { fieldName: 'description', protoName: 'description', FieldConstructor: STRING, constraints: {}, description: '', }, { fieldName: 'url', protoName: 'url', FieldConstructor: STRING, constraints: {}, description: '', }, { fieldName: 'specificationExtension', protoName: 'specification_extension', FieldConstructor: OpenapiV3NamedAny, constraints: {}, description: '', }, ]"
|
|
27891
28224
|
},
|
|
27892
28225
|
{
|
|
27893
28226
|
"kind": "field",
|
|
@@ -28850,7 +29183,7 @@
|
|
|
28850
29183
|
"type": {
|
|
28851
29184
|
"text": "array"
|
|
28852
29185
|
},
|
|
28853
|
-
"default": "[ { fieldName: 'description', protoName: 'description', FieldConstructor: STRING, constraints: {}, description: '' }, { fieldName: 'required', protoName: 'required', FieldConstructor: BOOLEAN, constraints: {}, description: '' }, { fieldName: 'deprecated', protoName: 'deprecated', FieldConstructor: BOOLEAN, constraints: {}, description: '' }, { fieldName: 'allowEmptyValue', protoName: 'allow_empty_value', FieldConstructor: BOOLEAN, constraints: {}, description: '' }, { fieldName: 'style', protoName: 'style', FieldConstructor: STRING, constraints: {}, description: '' }, { fieldName: 'explode', protoName: 'explode', FieldConstructor: BOOLEAN, constraints: {}, description: '' }, { fieldName: 'allowReserved', protoName: 'allow_reserved', FieldConstructor: BOOLEAN, constraints: {}, description: '' }, { fieldName: 'schema', protoName: 'schema', FieldConstructor: OpenapiV3SchemaOrReference, constraints: {}, description: '' }, { fieldName: 'example', protoName: 'example', FieldConstructor: OpenapiV3Any, constraints: {}, description: '' }, { fieldName: 'examples', protoName: 'examples', FieldConstructor: OpenapiV3ExamplesOrReferences, constraints: {}, description: '' }, { fieldName: 'content', protoName: 'content', FieldConstructor: OpenapiV3MediaTypes, constraints: {}, description: '' }, { fieldName: 'specificationExtension', protoName: 'specification_extension', FieldConstructor: OpenapiV3NamedAny, constraints: {}, description: '' } ]"
|
|
29186
|
+
"default": "[ { fieldName: 'description', protoName: 'description', FieldConstructor: STRING, constraints: {}, description: '', }, { fieldName: 'required', protoName: 'required', FieldConstructor: BOOLEAN, constraints: {}, description: '', }, { fieldName: 'deprecated', protoName: 'deprecated', FieldConstructor: BOOLEAN, constraints: {}, description: '', }, { fieldName: 'allowEmptyValue', protoName: 'allow_empty_value', FieldConstructor: BOOLEAN, constraints: {}, description: '', }, { fieldName: 'style', protoName: 'style', FieldConstructor: STRING, constraints: {}, description: '', }, { fieldName: 'explode', protoName: 'explode', FieldConstructor: BOOLEAN, constraints: {}, description: '', }, { fieldName: 'allowReserved', protoName: 'allow_reserved', FieldConstructor: BOOLEAN, constraints: {}, description: '', }, { fieldName: 'schema', protoName: 'schema', FieldConstructor: OpenapiV3SchemaOrReference, constraints: {}, description: '', }, { fieldName: 'example', protoName: 'example', FieldConstructor: OpenapiV3Any, constraints: {}, description: '', }, { fieldName: 'examples', protoName: 'examples', FieldConstructor: OpenapiV3ExamplesOrReferences, constraints: {}, description: '', }, { fieldName: 'content', protoName: 'content', FieldConstructor: OpenapiV3MediaTypes, constraints: {}, description: '', }, { fieldName: 'specificationExtension', protoName: 'specification_extension', FieldConstructor: OpenapiV3NamedAny, constraints: {}, description: '', }, ]"
|
|
28854
29187
|
},
|
|
28855
29188
|
{
|
|
28856
29189
|
"kind": "field",
|
|
@@ -29822,7 +30155,7 @@
|
|
|
29822
30155
|
"type": {
|
|
29823
30156
|
"text": "array"
|
|
29824
30157
|
},
|
|
29825
|
-
"default": "[ { fieldName: 'header', protoName: 'header', FieldConstructor: OpenapiV3Header, constraints: {}, description: '' }, { fieldName: 'reference', protoName: 'reference', FieldConstructor: OpenapiV3Reference, constraints: {}, description: '' } ]"
|
|
30158
|
+
"default": "[ { fieldName: 'header', protoName: 'header', FieldConstructor: OpenapiV3Header, constraints: {}, description: '', }, { fieldName: 'reference', protoName: 'reference', FieldConstructor: OpenapiV3Reference, constraints: {}, description: '', }, ]"
|
|
29826
30159
|
},
|
|
29827
30160
|
{
|
|
29828
30161
|
"kind": "field",
|
|
@@ -30740,7 +31073,7 @@
|
|
|
30740
31073
|
"type": {
|
|
30741
31074
|
"text": "array"
|
|
30742
31075
|
},
|
|
30743
|
-
"default": "[ { fieldName: 'additionalProperties', protoName: 'additional_properties', FieldConstructor: OpenapiV3NamedHeaderOrReference, constraints: {}, description: '' } ]"
|
|
31076
|
+
"default": "[ { fieldName: 'additionalProperties', protoName: 'additional_properties', FieldConstructor: OpenapiV3NamedHeaderOrReference, constraints: {}, description: '', }, ]"
|
|
30744
31077
|
},
|
|
30745
31078
|
{
|
|
30746
31079
|
"kind": "field",
|
|
@@ -31677,7 +32010,7 @@
|
|
|
31677
32010
|
"type": {
|
|
31678
32011
|
"text": "array"
|
|
31679
32012
|
},
|
|
31680
|
-
"default": "[ { fieldName: 'title', protoName: 'title', FieldConstructor: STRING, constraints: {}, description: '' }, { fieldName: 'description', protoName: 'description', FieldConstructor: STRING, constraints: {}, description: '' }, { fieldName: 'termsOfService', protoName: 'terms_of_service', FieldConstructor: STRING, constraints: {}, description: '' }, { fieldName: 'contact', protoName: 'contact', FieldConstructor: OpenapiV3Contact, constraints: {}, description: '' }, { fieldName: 'license', protoName: 'license', FieldConstructor: OpenapiV3License, constraints: {}, description: '' }, { fieldName: 'version', protoName: 'version', FieldConstructor: STRING, constraints: {}, description: '' }, { fieldName: 'specificationExtension', protoName: 'specification_extension', FieldConstructor: OpenapiV3NamedAny, constraints: {}, description: '' }, { fieldName: 'summary', protoName: 'summary', FieldConstructor: STRING, constraints: {}, description: '' } ]"
|
|
32013
|
+
"default": "[ { fieldName: 'title', protoName: 'title', FieldConstructor: STRING, constraints: {}, description: '', }, { fieldName: 'description', protoName: 'description', FieldConstructor: STRING, constraints: {}, description: '', }, { fieldName: 'termsOfService', protoName: 'terms_of_service', FieldConstructor: STRING, constraints: {}, description: '', }, { fieldName: 'contact', protoName: 'contact', FieldConstructor: OpenapiV3Contact, constraints: {}, description: '', }, { fieldName: 'license', protoName: 'license', FieldConstructor: OpenapiV3License, constraints: {}, description: '', }, { fieldName: 'version', protoName: 'version', FieldConstructor: STRING, constraints: {}, description: '', }, { fieldName: 'specificationExtension', protoName: 'specification_extension', FieldConstructor: OpenapiV3NamedAny, constraints: {}, description: '', }, { fieldName: 'summary', protoName: 'summary', FieldConstructor: STRING, constraints: {}, description: '', }, ]"
|
|
31681
32014
|
},
|
|
31682
32015
|
{
|
|
31683
32016
|
"kind": "field",
|
|
@@ -32625,7 +32958,7 @@
|
|
|
32625
32958
|
"type": {
|
|
32626
32959
|
"text": "array"
|
|
32627
32960
|
},
|
|
32628
|
-
"default": "[ { fieldName: 'schemaOrReference', protoName: 'schema_or_reference', FieldConstructor: OpenapiV3SchemaOrReference, constraints: {}, description: '' } ]"
|
|
32961
|
+
"default": "[ { fieldName: 'schemaOrReference', protoName: 'schema_or_reference', FieldConstructor: OpenapiV3SchemaOrReference, constraints: {}, description: '', }, ]"
|
|
32629
32962
|
},
|
|
32630
32963
|
{
|
|
32631
32964
|
"kind": "field",
|
|
@@ -33546,7 +33879,7 @@
|
|
|
33546
33879
|
"type": {
|
|
33547
33880
|
"text": "array"
|
|
33548
33881
|
},
|
|
33549
|
-
"default": "[ { fieldName: 'name', protoName: 'name', FieldConstructor: STRING, constraints: {}, description: '' }, { fieldName: 'url', protoName: 'url', FieldConstructor: STRING, constraints: {}, description: '' }, { fieldName: 'specificationExtension', protoName: 'specification_extension', FieldConstructor: OpenapiV3NamedAny, constraints: {}, description: '' } ]"
|
|
33882
|
+
"default": "[ { fieldName: 'name', protoName: 'name', FieldConstructor: STRING, constraints: {}, description: '', }, { fieldName: 'url', protoName: 'url', FieldConstructor: STRING, constraints: {}, description: '', }, { fieldName: 'specificationExtension', protoName: 'specification_extension', FieldConstructor: OpenapiV3NamedAny, constraints: {}, description: '', }, ]"
|
|
33550
33883
|
},
|
|
33551
33884
|
{
|
|
33552
33885
|
"kind": "field",
|
|
@@ -34452,7 +34785,7 @@
|
|
|
34452
34785
|
"type": {
|
|
34453
34786
|
"text": "string"
|
|
34454
34787
|
},
|
|
34455
|
-
"default": "
|
|
34788
|
+
"default": "\"Link The `Link object` represents a possible design-time link for a response. The presence of a link does not guarantee the caller's ability to successfully invoke it, rather it provides a known relationship and traversal mechanism between responses and other operations. Unlike _dynamic_ links (i.e. links provided **in** the response payload), the OAS linking mechanism does not require link information in the runtime response. For computing links, and providing instructions to execute them, a runtime expression is used for accessing values in an operation and using them as parameters while invoking the linked operation.\""
|
|
34456
34789
|
},
|
|
34457
34790
|
{
|
|
34458
34791
|
"kind": "field",
|
|
@@ -34489,7 +34822,7 @@
|
|
|
34489
34822
|
"type": {
|
|
34490
34823
|
"text": "array"
|
|
34491
34824
|
},
|
|
34492
|
-
"default": "[ { fieldName: 'operationRef', protoName: 'operation_ref', FieldConstructor: STRING, constraints: {}, description: '' }, { fieldName: 'operationId', protoName: 'operation_id', FieldConstructor: STRING, constraints: {}, description: '' }, { fieldName: 'parameters', protoName: 'parameters', FieldConstructor: OpenapiV3AnyOrExpression, constraints: {}, description: '' }, { fieldName: 'requestBody', protoName: 'request_body', FieldConstructor: OpenapiV3AnyOrExpression, constraints: {}, description: '' }, { fieldName: 'description', protoName: 'description', FieldConstructor: STRING, constraints: {}, description: '' }, { fieldName: 'server', protoName: 'server', FieldConstructor: OpenapiV3Server, constraints: {}, description: '' }, { fieldName: 'specificationExtension', protoName: 'specification_extension', FieldConstructor: OpenapiV3NamedAny, constraints: {}, description: '' } ]"
|
|
34825
|
+
"default": "[ { fieldName: 'operationRef', protoName: 'operation_ref', FieldConstructor: STRING, constraints: {}, description: '', }, { fieldName: 'operationId', protoName: 'operation_id', FieldConstructor: STRING, constraints: {}, description: '', }, { fieldName: 'parameters', protoName: 'parameters', FieldConstructor: OpenapiV3AnyOrExpression, constraints: {}, description: '', }, { fieldName: 'requestBody', protoName: 'request_body', FieldConstructor: OpenapiV3AnyOrExpression, constraints: {}, description: '', }, { fieldName: 'description', protoName: 'description', FieldConstructor: STRING, constraints: {}, description: '', }, { fieldName: 'server', protoName: 'server', FieldConstructor: OpenapiV3Server, constraints: {}, description: '', }, { fieldName: 'specificationExtension', protoName: 'specification_extension', FieldConstructor: OpenapiV3NamedAny, constraints: {}, description: '', }, ]"
|
|
34493
34826
|
},
|
|
34494
34827
|
{
|
|
34495
34828
|
"kind": "field",
|
|
@@ -35436,7 +35769,7 @@
|
|
|
35436
35769
|
"type": {
|
|
35437
35770
|
"text": "array"
|
|
35438
35771
|
},
|
|
35439
|
-
"default": "[ { fieldName: 'link', protoName: 'link', FieldConstructor: OpenapiV3Link, constraints: {}, description: '' }, { fieldName: 'reference', protoName: 'reference', FieldConstructor: OpenapiV3Reference, constraints: {}, description: '' } ]"
|
|
35772
|
+
"default": "[ { fieldName: 'link', protoName: 'link', FieldConstructor: OpenapiV3Link, constraints: {}, description: '', }, { fieldName: 'reference', protoName: 'reference', FieldConstructor: OpenapiV3Reference, constraints: {}, description: '', }, ]"
|
|
35440
35773
|
},
|
|
35441
35774
|
{
|
|
35442
35775
|
"kind": "field",
|
|
@@ -36354,7 +36687,7 @@
|
|
|
36354
36687
|
"type": {
|
|
36355
36688
|
"text": "array"
|
|
36356
36689
|
},
|
|
36357
|
-
"default": "[ { fieldName: 'additionalProperties', protoName: 'additional_properties', FieldConstructor: OpenapiV3NamedLinkOrReference, constraints: {}, description: '' } ]"
|
|
36690
|
+
"default": "[ { fieldName: 'additionalProperties', protoName: 'additional_properties', FieldConstructor: OpenapiV3NamedLinkOrReference, constraints: {}, description: '', }, ]"
|
|
36358
36691
|
},
|
|
36359
36692
|
{
|
|
36360
36693
|
"kind": "field",
|
|
@@ -37283,7 +37616,7 @@
|
|
|
37283
37616
|
"type": {
|
|
37284
37617
|
"text": "array"
|
|
37285
37618
|
},
|
|
37286
|
-
"default": "[ { fieldName: 'schema', protoName: 'schema', FieldConstructor: OpenapiV3SchemaOrReference, constraints: {}, description: '' }, { fieldName: 'example', protoName: 'example', FieldConstructor: OpenapiV3Any, constraints: {}, description: '' }, { fieldName: 'examples', protoName: 'examples', FieldConstructor: OpenapiV3ExamplesOrReferences, constraints: {}, description: '' }, { fieldName: 'encoding', protoName: 'encoding', FieldConstructor: OpenapiV3Encodings, constraints: {}, description: '' }, { fieldName: 'specificationExtension', protoName: 'specification_extension', FieldConstructor: OpenapiV3NamedAny, constraints: {}, description: '' } ]"
|
|
37619
|
+
"default": "[ { fieldName: 'schema', protoName: 'schema', FieldConstructor: OpenapiV3SchemaOrReference, constraints: {}, description: '', }, { fieldName: 'example', protoName: 'example', FieldConstructor: OpenapiV3Any, constraints: {}, description: '', }, { fieldName: 'examples', protoName: 'examples', FieldConstructor: OpenapiV3ExamplesOrReferences, constraints: {}, description: '', }, { fieldName: 'encoding', protoName: 'encoding', FieldConstructor: OpenapiV3Encodings, constraints: {}, description: '', }, { fieldName: 'specificationExtension', protoName: 'specification_extension', FieldConstructor: OpenapiV3NamedAny, constraints: {}, description: '', }, ]"
|
|
37287
37620
|
},
|
|
37288
37621
|
{
|
|
37289
37622
|
"kind": "field",
|
|
@@ -38216,7 +38549,7 @@
|
|
|
38216
38549
|
"type": {
|
|
38217
38550
|
"text": "array"
|
|
38218
38551
|
},
|
|
38219
|
-
"default": "[ { fieldName: 'additionalProperties', protoName: 'additional_properties', FieldConstructor: OpenapiV3NamedMediaType, constraints: {}, description: '' } ]"
|
|
38552
|
+
"default": "[ { fieldName: 'additionalProperties', protoName: 'additional_properties', FieldConstructor: OpenapiV3NamedMediaType, constraints: {}, description: '', }, ]"
|
|
38220
38553
|
},
|
|
38221
38554
|
{
|
|
38222
38555
|
"kind": "field",
|
|
@@ -39133,7 +39466,7 @@
|
|
|
39133
39466
|
"type": {
|
|
39134
39467
|
"text": "array"
|
|
39135
39468
|
},
|
|
39136
|
-
"default": "[ { fieldName: 'name', protoName: 'name', FieldConstructor: STRING, constraints: {}, description: 'Map key' }, { fieldName: 'value', protoName: 'value', FieldConstructor: OpenapiV3Any, constraints: {}, description: 'Mapped value' } ]"
|
|
39469
|
+
"default": "[ { fieldName: 'name', protoName: 'name', FieldConstructor: STRING, constraints: {}, description: 'Map key', }, { fieldName: 'value', protoName: 'value', FieldConstructor: OpenapiV3Any, constraints: {}, description: 'Mapped value', }, ]"
|
|
39137
39470
|
},
|
|
39138
39471
|
{
|
|
39139
39472
|
"kind": "field",
|
|
@@ -40055,7 +40388,7 @@
|
|
|
40055
40388
|
"type": {
|
|
40056
40389
|
"text": "array"
|
|
40057
40390
|
},
|
|
40058
|
-
"default": "[ { fieldName: 'name', protoName: 'name', FieldConstructor: STRING, constraints: {}, description: 'Map key' }, { fieldName: 'value', protoName: 'value', FieldConstructor: OpenapiV3CallbackOrReference, constraints: {}, description: 'Mapped value' } ]"
|
|
40391
|
+
"default": "[ { fieldName: 'name', protoName: 'name', FieldConstructor: STRING, constraints: {}, description: 'Map key', }, { fieldName: 'value', protoName: 'value', FieldConstructor: OpenapiV3CallbackOrReference, constraints: {}, description: 'Mapped value', }, ]"
|
|
40059
40392
|
},
|
|
40060
40393
|
{
|
|
40061
40394
|
"kind": "field",
|
|
@@ -40977,7 +41310,7 @@
|
|
|
40977
41310
|
"type": {
|
|
40978
41311
|
"text": "array"
|
|
40979
41312
|
},
|
|
40980
|
-
"default": "[ { fieldName: 'name', protoName: 'name', FieldConstructor: STRING, constraints: {}, description: 'Map key' }, { fieldName: 'value', protoName: 'value', FieldConstructor: OpenapiV3Encoding, constraints: {}, description: 'Mapped value' } ]"
|
|
41313
|
+
"default": "[ { fieldName: 'name', protoName: 'name', FieldConstructor: STRING, constraints: {}, description: 'Map key', }, { fieldName: 'value', protoName: 'value', FieldConstructor: OpenapiV3Encoding, constraints: {}, description: 'Mapped value', }, ]"
|
|
40981
41314
|
},
|
|
40982
41315
|
{
|
|
40983
41316
|
"kind": "field",
|
|
@@ -41899,7 +42232,7 @@
|
|
|
41899
42232
|
"type": {
|
|
41900
42233
|
"text": "array"
|
|
41901
42234
|
},
|
|
41902
|
-
"default": "[ { fieldName: 'name', protoName: 'name', FieldConstructor: STRING, constraints: {}, description: 'Map key' }, { fieldName: 'value', protoName: 'value', FieldConstructor: OpenapiV3ExampleOrReference, constraints: {}, description: 'Mapped value' } ]"
|
|
42235
|
+
"default": "[ { fieldName: 'name', protoName: 'name', FieldConstructor: STRING, constraints: {}, description: 'Map key', }, { fieldName: 'value', protoName: 'value', FieldConstructor: OpenapiV3ExampleOrReference, constraints: {}, description: 'Mapped value', }, ]"
|
|
41903
42236
|
},
|
|
41904
42237
|
{
|
|
41905
42238
|
"kind": "field",
|
|
@@ -42821,7 +43154,7 @@
|
|
|
42821
43154
|
"type": {
|
|
42822
43155
|
"text": "array"
|
|
42823
43156
|
},
|
|
42824
|
-
"default": "[ { fieldName: 'name', protoName: 'name', FieldConstructor: STRING, constraints: {}, description: 'Map key' }, { fieldName: 'value', protoName: 'value', FieldConstructor: OpenapiV3HeaderOrReference, constraints: {}, description: 'Mapped value' } ]"
|
|
43157
|
+
"default": "[ { fieldName: 'name', protoName: 'name', FieldConstructor: STRING, constraints: {}, description: 'Map key', }, { fieldName: 'value', protoName: 'value', FieldConstructor: OpenapiV3HeaderOrReference, constraints: {}, description: 'Mapped value', }, ]"
|
|
42825
43158
|
},
|
|
42826
43159
|
{
|
|
42827
43160
|
"kind": "field",
|
|
@@ -43743,7 +44076,7 @@
|
|
|
43743
44076
|
"type": {
|
|
43744
44077
|
"text": "array"
|
|
43745
44078
|
},
|
|
43746
|
-
"default": "[ { fieldName: 'name', protoName: 'name', FieldConstructor: STRING, constraints: {}, description: 'Map key' }, { fieldName: 'value', protoName: 'value', FieldConstructor: OpenapiV3LinkOrReference, constraints: {}, description: 'Mapped value' } ]"
|
|
44079
|
+
"default": "[ { fieldName: 'name', protoName: 'name', FieldConstructor: STRING, constraints: {}, description: 'Map key', }, { fieldName: 'value', protoName: 'value', FieldConstructor: OpenapiV3LinkOrReference, constraints: {}, description: 'Mapped value', }, ]"
|
|
43747
44080
|
},
|
|
43748
44081
|
{
|
|
43749
44082
|
"kind": "field",
|
|
@@ -44665,7 +44998,7 @@
|
|
|
44665
44998
|
"type": {
|
|
44666
44999
|
"text": "array"
|
|
44667
45000
|
},
|
|
44668
|
-
"default": "[ { fieldName: 'name', protoName: 'name', FieldConstructor: STRING, constraints: {}, description: 'Map key' }, { fieldName: 'value', protoName: 'value', FieldConstructor: OpenapiV3MediaType, constraints: {}, description: 'Mapped value' } ]"
|
|
45001
|
+
"default": "[ { fieldName: 'name', protoName: 'name', FieldConstructor: STRING, constraints: {}, description: 'Map key', }, { fieldName: 'value', protoName: 'value', FieldConstructor: OpenapiV3MediaType, constraints: {}, description: 'Mapped value', }, ]"
|
|
44669
45002
|
},
|
|
44670
45003
|
{
|
|
44671
45004
|
"kind": "field",
|
|
@@ -45587,7 +45920,7 @@
|
|
|
45587
45920
|
"type": {
|
|
45588
45921
|
"text": "array"
|
|
45589
45922
|
},
|
|
45590
|
-
"default": "[ { fieldName: 'name', protoName: 'name', FieldConstructor: STRING, constraints: {}, description: 'Map key' }, { fieldName: 'value', protoName: 'value', FieldConstructor: OpenapiV3ParameterOrReference, constraints: {}, description: 'Mapped value' } ]"
|
|
45923
|
+
"default": "[ { fieldName: 'name', protoName: 'name', FieldConstructor: STRING, constraints: {}, description: 'Map key', }, { fieldName: 'value', protoName: 'value', FieldConstructor: OpenapiV3ParameterOrReference, constraints: {}, description: 'Mapped value', }, ]"
|
|
45591
45924
|
},
|
|
45592
45925
|
{
|
|
45593
45926
|
"kind": "field",
|
|
@@ -46509,7 +46842,7 @@
|
|
|
46509
46842
|
"type": {
|
|
46510
46843
|
"text": "array"
|
|
46511
46844
|
},
|
|
46512
|
-
"default": "[ { fieldName: 'name', protoName: 'name', FieldConstructor: STRING, constraints: {}, description: 'Map key' }, { fieldName: 'value', protoName: 'value', FieldConstructor: OpenapiV3PathItem, constraints: {}, description: 'Mapped value' } ]"
|
|
46845
|
+
"default": "[ { fieldName: 'name', protoName: 'name', FieldConstructor: STRING, constraints: {}, description: 'Map key', }, { fieldName: 'value', protoName: 'value', FieldConstructor: OpenapiV3PathItem, constraints: {}, description: 'Mapped value', }, ]"
|
|
46513
46846
|
},
|
|
46514
46847
|
{
|
|
46515
46848
|
"kind": "field",
|
|
@@ -47431,7 +47764,7 @@
|
|
|
47431
47764
|
"type": {
|
|
47432
47765
|
"text": "array"
|
|
47433
47766
|
},
|
|
47434
|
-
"default": "[ { fieldName: 'name', protoName: 'name', FieldConstructor: STRING, constraints: {}, description: 'Map key' }, { fieldName: 'value', protoName: 'value', FieldConstructor: OpenapiV3RequestBodyOrReference, constraints: {}, description: 'Mapped value' } ]"
|
|
47767
|
+
"default": "[ { fieldName: 'name', protoName: 'name', FieldConstructor: STRING, constraints: {}, description: 'Map key', }, { fieldName: 'value', protoName: 'value', FieldConstructor: OpenapiV3RequestBodyOrReference, constraints: {}, description: 'Mapped value', }, ]"
|
|
47435
47768
|
},
|
|
47436
47769
|
{
|
|
47437
47770
|
"kind": "field",
|
|
@@ -48353,7 +48686,7 @@
|
|
|
48353
48686
|
"type": {
|
|
48354
48687
|
"text": "array"
|
|
48355
48688
|
},
|
|
48356
|
-
"default": "[ { fieldName: 'name', protoName: 'name', FieldConstructor: STRING, constraints: {}, description: 'Map key' }, { fieldName: 'value', protoName: 'value', FieldConstructor: OpenapiV3ResponseOrReference, constraints: {}, description: 'Mapped value' } ]"
|
|
48689
|
+
"default": "[ { fieldName: 'name', protoName: 'name', FieldConstructor: STRING, constraints: {}, description: 'Map key', }, { fieldName: 'value', protoName: 'value', FieldConstructor: OpenapiV3ResponseOrReference, constraints: {}, description: 'Mapped value', }, ]"
|
|
48357
48690
|
},
|
|
48358
48691
|
{
|
|
48359
48692
|
"kind": "field",
|
|
@@ -49275,7 +49608,7 @@
|
|
|
49275
49608
|
"type": {
|
|
49276
49609
|
"text": "array"
|
|
49277
49610
|
},
|
|
49278
|
-
"default": "[ { fieldName: 'name', protoName: 'name', FieldConstructor: STRING, constraints: {}, description: 'Map key' }, { fieldName: 'value', protoName: 'value', FieldConstructor: OpenapiV3SchemaOrReference, constraints: {}, description: 'Mapped value' } ]"
|
|
49611
|
+
"default": "[ { fieldName: 'name', protoName: 'name', FieldConstructor: STRING, constraints: {}, description: 'Map key', }, { fieldName: 'value', protoName: 'value', FieldConstructor: OpenapiV3SchemaOrReference, constraints: {}, description: 'Mapped value', }, ]"
|
|
49279
49612
|
},
|
|
49280
49613
|
{
|
|
49281
49614
|
"kind": "field",
|
|
@@ -50197,7 +50530,7 @@
|
|
|
50197
50530
|
"type": {
|
|
50198
50531
|
"text": "array"
|
|
50199
50532
|
},
|
|
50200
|
-
"default": "[ { fieldName: 'name', protoName: 'name', FieldConstructor: STRING, constraints: {}, description: 'Map key' }, { fieldName: 'value', protoName: 'value', FieldConstructor: OpenapiV3SecuritySchemeOrReference, constraints: {}, description: 'Mapped value' } ]"
|
|
50533
|
+
"default": "[ { fieldName: 'name', protoName: 'name', FieldConstructor: STRING, constraints: {}, description: 'Map key', }, { fieldName: 'value', protoName: 'value', FieldConstructor: OpenapiV3SecuritySchemeOrReference, constraints: {}, description: 'Mapped value', }, ]"
|
|
50201
50534
|
},
|
|
50202
50535
|
{
|
|
50203
50536
|
"kind": "field",
|
|
@@ -51119,7 +51452,7 @@
|
|
|
51119
51452
|
"type": {
|
|
51120
51453
|
"text": "array"
|
|
51121
51454
|
},
|
|
51122
|
-
"default": "[ { fieldName: 'name', protoName: 'name', FieldConstructor: STRING, constraints: {}, description: 'Map key' }, { fieldName: 'value', protoName: 'value', FieldConstructor: OpenapiV3ServerVariable, constraints: {}, description: 'Mapped value' } ]"
|
|
51455
|
+
"default": "[ { fieldName: 'name', protoName: 'name', FieldConstructor: STRING, constraints: {}, description: 'Map key', }, { fieldName: 'value', protoName: 'value', FieldConstructor: OpenapiV3ServerVariable, constraints: {}, description: 'Mapped value', }, ]"
|
|
51123
51456
|
},
|
|
51124
51457
|
{
|
|
51125
51458
|
"kind": "field",
|
|
@@ -52041,7 +52374,7 @@
|
|
|
52041
52374
|
"type": {
|
|
52042
52375
|
"text": "array"
|
|
52043
52376
|
},
|
|
52044
|
-
"default": "[ { fieldName: 'name', protoName: 'name', FieldConstructor: STRING, constraints: {}, description: 'Map key' }, { fieldName: 'value', protoName: 'value', FieldConstructor: STRING, constraints: {}, description: 'Mapped value' } ]"
|
|
52377
|
+
"default": "[ { fieldName: 'name', protoName: 'name', FieldConstructor: STRING, constraints: {}, description: 'Map key', }, { fieldName: 'value', protoName: 'value', FieldConstructor: STRING, constraints: {}, description: 'Mapped value', }, ]"
|
|
52045
52378
|
},
|
|
52046
52379
|
{
|
|
52047
52380
|
"kind": "field",
|
|
@@ -52963,7 +53296,7 @@
|
|
|
52963
53296
|
"type": {
|
|
52964
53297
|
"text": "array"
|
|
52965
53298
|
},
|
|
52966
|
-
"default": "[ { fieldName: 'name', protoName: 'name', FieldConstructor: STRING, constraints: {}, description: 'Map key' }, { fieldName: 'value', protoName: 'value', FieldConstructor: OpenapiV3StringArray, constraints: {}, description: 'Mapped value' } ]"
|
|
53299
|
+
"default": "[ { fieldName: 'name', protoName: 'name', FieldConstructor: STRING, constraints: {}, description: 'Map key', }, { fieldName: 'value', protoName: 'value', FieldConstructor: OpenapiV3StringArray, constraints: {}, description: 'Mapped value', }, ]"
|
|
52967
53300
|
},
|
|
52968
53301
|
{
|
|
52969
53302
|
"kind": "field",
|
|
@@ -53897,7 +54230,7 @@
|
|
|
53897
54230
|
"type": {
|
|
53898
54231
|
"text": "array"
|
|
53899
54232
|
},
|
|
53900
|
-
"default": "[ { fieldName: 'authorizationUrl', protoName: 'authorization_url', FieldConstructor: STRING, constraints: {}, description: '' }, { fieldName: 'tokenUrl', protoName: 'token_url', FieldConstructor: STRING, constraints: {}, description: '' }, { fieldName: 'refreshUrl', protoName: 'refresh_url', FieldConstructor: STRING, constraints: {}, description: '' }, { fieldName: 'scopes', protoName: 'scopes', FieldConstructor: OpenapiV3Strings, constraints: {}, description: '' }, { fieldName: 'specificationExtension', protoName: 'specification_extension', FieldConstructor: OpenapiV3NamedAny, constraints: {}, description: '' } ]"
|
|
54233
|
+
"default": "[ { fieldName: 'authorizationUrl', protoName: 'authorization_url', FieldConstructor: STRING, constraints: {}, description: '', }, { fieldName: 'tokenUrl', protoName: 'token_url', FieldConstructor: STRING, constraints: {}, description: '', }, { fieldName: 'refreshUrl', protoName: 'refresh_url', FieldConstructor: STRING, constraints: {}, description: '', }, { fieldName: 'scopes', protoName: 'scopes', FieldConstructor: OpenapiV3Strings, constraints: {}, description: '', }, { fieldName: 'specificationExtension', protoName: 'specification_extension', FieldConstructor: OpenapiV3NamedAny, constraints: {}, description: '', }, ]"
|
|
53901
54234
|
},
|
|
53902
54235
|
{
|
|
53903
54236
|
"kind": "field",
|
|
@@ -54846,7 +55179,7 @@
|
|
|
54846
55179
|
"type": {
|
|
54847
55180
|
"text": "array"
|
|
54848
55181
|
},
|
|
54849
|
-
"default": "[ { fieldName: 'implicit', protoName: 'implicit', FieldConstructor: OpenapiV3OauthFlow, constraints: {}, description: '' }, { fieldName: 'password', protoName: 'password', FieldConstructor: OpenapiV3OauthFlow, constraints: {}, description: '' }, { fieldName: 'clientCredentials', protoName: 'client_credentials', FieldConstructor: OpenapiV3OauthFlow, constraints: {}, description: '' }, { fieldName: 'authorizationCode', protoName: 'authorization_code', FieldConstructor: OpenapiV3OauthFlow, constraints: {}, description: '' }, { fieldName: 'specificationExtension', protoName: 'specification_extension', FieldConstructor: OpenapiV3NamedAny, constraints: {}, description: '' } ]"
|
|
55182
|
+
"default": "[ { fieldName: 'implicit', protoName: 'implicit', FieldConstructor: OpenapiV3OauthFlow, constraints: {}, description: '', }, { fieldName: 'password', protoName: 'password', FieldConstructor: OpenapiV3OauthFlow, constraints: {}, description: '', }, { fieldName: 'clientCredentials', protoName: 'client_credentials', FieldConstructor: OpenapiV3OauthFlow, constraints: {}, description: '', }, { fieldName: 'authorizationCode', protoName: 'authorization_code', FieldConstructor: OpenapiV3OauthFlow, constraints: {}, description: '', }, { fieldName: 'specificationExtension', protoName: 'specification_extension', FieldConstructor: OpenapiV3NamedAny, constraints: {}, description: '', }, ]"
|
|
54850
55183
|
},
|
|
54851
55184
|
{
|
|
54852
55185
|
"kind": "field",
|
|
@@ -55779,7 +56112,7 @@
|
|
|
55779
56112
|
"type": {
|
|
55780
56113
|
"text": "array"
|
|
55781
56114
|
},
|
|
55782
|
-
"default": "[ { fieldName: 'additionalProperties', protoName: 'additional_properties', FieldConstructor: OpenapiV3NamedAny, constraints: {}, description: '' } ]"
|
|
56115
|
+
"default": "[ { fieldName: 'additionalProperties', protoName: 'additional_properties', FieldConstructor: OpenapiV3NamedAny, constraints: {}, description: '', }, ]"
|
|
55783
56116
|
},
|
|
55784
56117
|
{
|
|
55785
56118
|
"kind": "field",
|
|
@@ -56736,7 +57069,7 @@
|
|
|
56736
57069
|
"type": {
|
|
56737
57070
|
"text": "array"
|
|
56738
57071
|
},
|
|
56739
|
-
"default": "[ { fieldName: 'tags', protoName: 'tags', FieldConstructor: STRING, constraints: {}, description: '' }, { fieldName: 'summary', protoName: 'summary', FieldConstructor: STRING, constraints: {}, description: '' }, { fieldName: 'description', protoName: 'description', FieldConstructor: STRING, constraints: {}, description: '' }, { fieldName: 'externalDocs', protoName: 'external_docs', FieldConstructor: OpenapiV3ExternalDocs, constraints: {}, description: '' }, { fieldName: 'operationId', protoName: 'operation_id', FieldConstructor: STRING, constraints: {}, description: '' }, { fieldName: 'parameters', protoName: 'parameters', FieldConstructor: OpenapiV3ParameterOrReference, constraints: {}, description: '' }, { fieldName: 'requestBody', protoName: 'request_body', FieldConstructor: OpenapiV3RequestBodyOrReference, constraints: {}, description: '' }, { fieldName: 'responses', protoName: 'responses', FieldConstructor: OpenapiV3Responses, constraints: {}, description: '' }, { fieldName: 'callbacks', protoName: 'callbacks', FieldConstructor: OpenapiV3CallbacksOrReferences, constraints: {}, description: '' }, { fieldName: 'deprecated', protoName: 'deprecated', FieldConstructor: BOOLEAN, constraints: {}, description: '' }, { fieldName: 'security', protoName: 'security', FieldConstructor: OpenapiV3SecurityRequirement, constraints: {}, description: '' }, { fieldName: 'servers', protoName: 'servers', FieldConstructor: OpenapiV3Server, constraints: {}, description: '' }, { fieldName: 'specificationExtension', protoName: 'specification_extension', FieldConstructor: OpenapiV3NamedAny, constraints: {}, description: '' } ]"
|
|
57072
|
+
"default": "[ { fieldName: 'tags', protoName: 'tags', FieldConstructor: STRING, constraints: {}, description: '', }, { fieldName: 'summary', protoName: 'summary', FieldConstructor: STRING, constraints: {}, description: '', }, { fieldName: 'description', protoName: 'description', FieldConstructor: STRING, constraints: {}, description: '', }, { fieldName: 'externalDocs', protoName: 'external_docs', FieldConstructor: OpenapiV3ExternalDocs, constraints: {}, description: '', }, { fieldName: 'operationId', protoName: 'operation_id', FieldConstructor: STRING, constraints: {}, description: '', }, { fieldName: 'parameters', protoName: 'parameters', FieldConstructor: OpenapiV3ParameterOrReference, constraints: {}, description: '', }, { fieldName: 'requestBody', protoName: 'request_body', FieldConstructor: OpenapiV3RequestBodyOrReference, constraints: {}, description: '', }, { fieldName: 'responses', protoName: 'responses', FieldConstructor: OpenapiV3Responses, constraints: {}, description: '', }, { fieldName: 'callbacks', protoName: 'callbacks', FieldConstructor: OpenapiV3CallbacksOrReferences, constraints: {}, description: '', }, { fieldName: 'deprecated', protoName: 'deprecated', FieldConstructor: BOOLEAN, constraints: {}, description: '', }, { fieldName: 'security', protoName: 'security', FieldConstructor: OpenapiV3SecurityRequirement, constraints: {}, description: '', }, { fieldName: 'servers', protoName: 'servers', FieldConstructor: OpenapiV3Server, constraints: {}, description: '', }, { fieldName: 'specificationExtension', protoName: 'specification_extension', FieldConstructor: OpenapiV3NamedAny, constraints: {}, description: '', }, ]"
|
|
56740
57073
|
},
|
|
56741
57074
|
{
|
|
56742
57075
|
"kind": "field",
|
|
@@ -57757,7 +58090,7 @@
|
|
|
57757
58090
|
"type": {
|
|
57758
58091
|
"text": "array"
|
|
57759
58092
|
},
|
|
57760
|
-
"default": "[ { fieldName: 'name', protoName: 'name', FieldConstructor: STRING, constraints: {}, description: '' }, { fieldName: 'in', protoName: 'in', FieldConstructor: STRING, constraints: {}, description: '' }, { fieldName: 'description', protoName: 'description', FieldConstructor: STRING, constraints: {}, description: '' }, { fieldName: 'required', protoName: 'required', FieldConstructor: BOOLEAN, constraints: {}, description: '' }, { fieldName: 'deprecated', protoName: 'deprecated', FieldConstructor: BOOLEAN, constraints: {}, description: '' }, { fieldName: 'allowEmptyValue', protoName: 'allow_empty_value', FieldConstructor: BOOLEAN, constraints: {}, description: '' }, { fieldName: 'style', protoName: 'style', FieldConstructor: STRING, constraints: {}, description: '' }, { fieldName: 'explode', protoName: 'explode', FieldConstructor: BOOLEAN, constraints: {}, description: '' }, { fieldName: 'allowReserved', protoName: 'allow_reserved', FieldConstructor: BOOLEAN, constraints: {}, description: '' }, { fieldName: 'schema', protoName: 'schema', FieldConstructor: OpenapiV3SchemaOrReference, constraints: {}, description: '' }, { fieldName: 'example', protoName: 'example', FieldConstructor: OpenapiV3Any, constraints: {}, description: '' }, { fieldName: 'examples', protoName: 'examples', FieldConstructor: OpenapiV3ExamplesOrReferences, constraints: {}, description: '' }, { fieldName: 'content', protoName: 'content', FieldConstructor: OpenapiV3MediaTypes, constraints: {}, description: '' }, { fieldName: 'specificationExtension', protoName: 'specification_extension', FieldConstructor: OpenapiV3NamedAny, constraints: {}, description: '' } ]"
|
|
58093
|
+
"default": "[ { fieldName: 'name', protoName: 'name', FieldConstructor: STRING, constraints: {}, description: '', }, { fieldName: 'in', protoName: 'in', FieldConstructor: STRING, constraints: {}, description: '', }, { fieldName: 'description', protoName: 'description', FieldConstructor: STRING, constraints: {}, description: '', }, { fieldName: 'required', protoName: 'required', FieldConstructor: BOOLEAN, constraints: {}, description: '', }, { fieldName: 'deprecated', protoName: 'deprecated', FieldConstructor: BOOLEAN, constraints: {}, description: '', }, { fieldName: 'allowEmptyValue', protoName: 'allow_empty_value', FieldConstructor: BOOLEAN, constraints: {}, description: '', }, { fieldName: 'style', protoName: 'style', FieldConstructor: STRING, constraints: {}, description: '', }, { fieldName: 'explode', protoName: 'explode', FieldConstructor: BOOLEAN, constraints: {}, description: '', }, { fieldName: 'allowReserved', protoName: 'allow_reserved', FieldConstructor: BOOLEAN, constraints: {}, description: '', }, { fieldName: 'schema', protoName: 'schema', FieldConstructor: OpenapiV3SchemaOrReference, constraints: {}, description: '', }, { fieldName: 'example', protoName: 'example', FieldConstructor: OpenapiV3Any, constraints: {}, description: '', }, { fieldName: 'examples', protoName: 'examples', FieldConstructor: OpenapiV3ExamplesOrReferences, constraints: {}, description: '', }, { fieldName: 'content', protoName: 'content', FieldConstructor: OpenapiV3MediaTypes, constraints: {}, description: '', }, { fieldName: 'specificationExtension', protoName: 'specification_extension', FieldConstructor: OpenapiV3NamedAny, constraints: {}, description: '', }, ]"
|
|
57761
58094
|
},
|
|
57762
58095
|
{
|
|
57763
58096
|
"kind": "field",
|
|
@@ -58739,7 +59072,7 @@
|
|
|
58739
59072
|
"type": {
|
|
58740
59073
|
"text": "array"
|
|
58741
59074
|
},
|
|
58742
|
-
"default": "[ { fieldName: 'parameter', protoName: 'parameter', FieldConstructor: OpenapiV3Parameter, constraints: {}, description: '' }, { fieldName: 'reference', protoName: 'reference', FieldConstructor: OpenapiV3Reference, constraints: {}, description: '' } ]"
|
|
59075
|
+
"default": "[ { fieldName: 'parameter', protoName: 'parameter', FieldConstructor: OpenapiV3Parameter, constraints: {}, description: '', }, { fieldName: 'reference', protoName: 'reference', FieldConstructor: OpenapiV3Reference, constraints: {}, description: '', }, ]"
|
|
58743
59076
|
},
|
|
58744
59077
|
{
|
|
58745
59078
|
"kind": "field",
|
|
@@ -59657,7 +59990,7 @@
|
|
|
59657
59990
|
"type": {
|
|
59658
59991
|
"text": "array"
|
|
59659
59992
|
},
|
|
59660
|
-
"default": "[ { fieldName: 'additionalProperties', protoName: 'additional_properties', FieldConstructor: OpenapiV3NamedParameterOrReference, constraints: {}, description: '' } ]"
|
|
59993
|
+
"default": "[ { fieldName: 'additionalProperties', protoName: 'additional_properties', FieldConstructor: OpenapiV3NamedParameterOrReference, constraints: {}, description: '', }, ]"
|
|
59661
59994
|
},
|
|
59662
59995
|
{
|
|
59663
59996
|
"kind": "field",
|
|
@@ -60618,7 +60951,7 @@
|
|
|
60618
60951
|
"type": {
|
|
60619
60952
|
"text": "array"
|
|
60620
60953
|
},
|
|
60621
|
-
"default": "[ { fieldName: 'Ref', protoName: '_ref', FieldConstructor: STRING, constraints: {}, description: '' }, { fieldName: 'summary', protoName: 'summary', FieldConstructor: STRING, constraints: {}, description: '' }, { fieldName: 'description', protoName: 'description', FieldConstructor: STRING, constraints: {}, description: '' }, { fieldName: 'get', protoName: 'get', FieldConstructor: OpenapiV3Operation, constraints: {}, description: '' }, { fieldName: 'put', protoName: 'put', FieldConstructor: OpenapiV3Operation, constraints: {}, description: '' }, { fieldName: 'post', protoName: 'post', FieldConstructor: OpenapiV3Operation, constraints: {}, description: '' }, { fieldName: 'delete', protoName: 'delete', FieldConstructor: OpenapiV3Operation, constraints: {}, description: '' }, { fieldName: 'options', protoName: 'options', FieldConstructor: OpenapiV3Operation, constraints: {}, description: '' }, { fieldName: 'head', protoName: 'head', FieldConstructor: OpenapiV3Operation, constraints: {}, description: '' }, { fieldName: 'patch', protoName: 'patch', FieldConstructor: OpenapiV3Operation, constraints: {}, description: '' }, { fieldName: 'trace', protoName: 'trace', FieldConstructor: OpenapiV3Operation, constraints: {}, description: '' }, { fieldName: 'servers', protoName: 'servers', FieldConstructor: OpenapiV3Server, constraints: {}, description: '' }, { fieldName: 'parameters', protoName: 'parameters', FieldConstructor: OpenapiV3ParameterOrReference, constraints: {}, description: '' }, { fieldName: 'specificationExtension', protoName: 'specification_extension', FieldConstructor: OpenapiV3NamedAny, constraints: {}, description: '' } ]"
|
|
60954
|
+
"default": "[ { fieldName: 'Ref', protoName: '_ref', FieldConstructor: STRING, constraints: {}, description: '', }, { fieldName: 'summary', protoName: 'summary', FieldConstructor: STRING, constraints: {}, description: '', }, { fieldName: 'description', protoName: 'description', FieldConstructor: STRING, constraints: {}, description: '', }, { fieldName: 'get', protoName: 'get', FieldConstructor: OpenapiV3Operation, constraints: {}, description: '', }, { fieldName: 'put', protoName: 'put', FieldConstructor: OpenapiV3Operation, constraints: {}, description: '', }, { fieldName: 'post', protoName: 'post', FieldConstructor: OpenapiV3Operation, constraints: {}, description: '', }, { fieldName: 'delete', protoName: 'delete', FieldConstructor: OpenapiV3Operation, constraints: {}, description: '', }, { fieldName: 'options', protoName: 'options', FieldConstructor: OpenapiV3Operation, constraints: {}, description: '', }, { fieldName: 'head', protoName: 'head', FieldConstructor: OpenapiV3Operation, constraints: {}, description: '', }, { fieldName: 'patch', protoName: 'patch', FieldConstructor: OpenapiV3Operation, constraints: {}, description: '', }, { fieldName: 'trace', protoName: 'trace', FieldConstructor: OpenapiV3Operation, constraints: {}, description: '', }, { fieldName: 'servers', protoName: 'servers', FieldConstructor: OpenapiV3Server, constraints: {}, description: '', }, { fieldName: 'parameters', protoName: 'parameters', FieldConstructor: OpenapiV3ParameterOrReference, constraints: {}, description: '', }, { fieldName: 'specificationExtension', protoName: 'specification_extension', FieldConstructor: OpenapiV3NamedAny, constraints: {}, description: '', }, ]"
|
|
60622
60955
|
},
|
|
60623
60956
|
{
|
|
60624
60957
|
"kind": "field",
|
|
@@ -61600,7 +61933,7 @@
|
|
|
61600
61933
|
"type": {
|
|
61601
61934
|
"text": "array"
|
|
61602
61935
|
},
|
|
61603
|
-
"default": "[ { fieldName: 'path', protoName: 'path', FieldConstructor: OpenapiV3NamedPathItem, constraints: {}, description: '' }, { fieldName: 'specificationExtension', protoName: 'specification_extension', FieldConstructor: OpenapiV3NamedAny, constraints: {}, description: '' } ]"
|
|
61936
|
+
"default": "[ { fieldName: 'path', protoName: 'path', FieldConstructor: OpenapiV3NamedPathItem, constraints: {}, description: '', }, { fieldName: 'specificationExtension', protoName: 'specification_extension', FieldConstructor: OpenapiV3NamedAny, constraints: {}, description: '', }, ]"
|
|
61604
61937
|
},
|
|
61605
61938
|
{
|
|
61606
61939
|
"kind": "field",
|
|
@@ -62518,7 +62851,7 @@
|
|
|
62518
62851
|
"type": {
|
|
62519
62852
|
"text": "array"
|
|
62520
62853
|
},
|
|
62521
|
-
"default": "[ { fieldName: 'additionalProperties', protoName: 'additional_properties', FieldConstructor: OpenapiV3NamedSchemaOrReference, constraints: {}, description: '' } ]"
|
|
62854
|
+
"default": "[ { fieldName: 'additionalProperties', protoName: 'additional_properties', FieldConstructor: OpenapiV3NamedSchemaOrReference, constraints: {}, description: '', }, ]"
|
|
62522
62855
|
},
|
|
62523
62856
|
{
|
|
62524
62857
|
"kind": "field",
|
|
@@ -63435,7 +63768,7 @@
|
|
|
63435
63768
|
"type": {
|
|
63436
63769
|
"text": "array"
|
|
63437
63770
|
},
|
|
63438
|
-
"default": "[ { fieldName: 'Ref', protoName: '_ref', FieldConstructor: STRING, constraints: {}, description: '' }, { fieldName: 'summary', protoName: 'summary', FieldConstructor: STRING, constraints: {}, description: '' }, { fieldName: 'description', protoName: 'description', FieldConstructor: STRING, constraints: {}, description: '' } ]"
|
|
63771
|
+
"default": "[ { fieldName: 'Ref', protoName: '_ref', FieldConstructor: STRING, constraints: {}, description: '', }, { fieldName: 'summary', protoName: 'summary', FieldConstructor: STRING, constraints: {}, description: '', }, { fieldName: 'description', protoName: 'description', FieldConstructor: STRING, constraints: {}, description: '', }, ]"
|
|
63439
63772
|
},
|
|
63440
63773
|
{
|
|
63441
63774
|
"kind": "field",
|
|
@@ -64358,7 +64691,7 @@
|
|
|
64358
64691
|
"type": {
|
|
64359
64692
|
"text": "array"
|
|
64360
64693
|
},
|
|
64361
|
-
"default": "[ { fieldName: 'additionalProperties', protoName: 'additional_properties', FieldConstructor: OpenapiV3NamedRequestBodyOrReference, constraints: {}, description: '' } ]"
|
|
64694
|
+
"default": "[ { fieldName: 'additionalProperties', protoName: 'additional_properties', FieldConstructor: OpenapiV3NamedRequestBodyOrReference, constraints: {}, description: '', }, ]"
|
|
64362
64695
|
},
|
|
64363
64696
|
{
|
|
64364
64697
|
"kind": "field",
|
|
@@ -65279,7 +65612,7 @@
|
|
|
65279
65612
|
"type": {
|
|
65280
65613
|
"text": "array"
|
|
65281
65614
|
},
|
|
65282
|
-
"default": "[ { fieldName: 'description', protoName: 'description', FieldConstructor: STRING, constraints: {}, description: '' }, { fieldName: 'content', protoName: 'content', FieldConstructor: OpenapiV3MediaTypes, constraints: {}, description: '' }, { fieldName: 'required', protoName: 'required', FieldConstructor: BOOLEAN, constraints: {}, description: '' }, { fieldName: 'specificationExtension', protoName: 'specification_extension', FieldConstructor: OpenapiV3NamedAny, constraints: {}, description: '' } ]"
|
|
65615
|
+
"default": "[ { fieldName: 'description', protoName: 'description', FieldConstructor: STRING, constraints: {}, description: '', }, { fieldName: 'content', protoName: 'content', FieldConstructor: OpenapiV3MediaTypes, constraints: {}, description: '', }, { fieldName: 'required', protoName: 'required', FieldConstructor: BOOLEAN, constraints: {}, description: '', }, { fieldName: 'specificationExtension', protoName: 'specification_extension', FieldConstructor: OpenapiV3NamedAny, constraints: {}, description: '', }, ]"
|
|
65283
65616
|
},
|
|
65284
65617
|
{
|
|
65285
65618
|
"kind": "field",
|
|
@@ -66211,7 +66544,7 @@
|
|
|
66211
66544
|
"type": {
|
|
66212
66545
|
"text": "array"
|
|
66213
66546
|
},
|
|
66214
|
-
"default": "[ { fieldName: 'requestBody', protoName: 'request_body', FieldConstructor: OpenapiV3RequestBody, constraints: {}, description: '' }, { fieldName: 'reference', protoName: 'reference', FieldConstructor: OpenapiV3Reference, constraints: {}, description: '' } ]"
|
|
66547
|
+
"default": "[ { fieldName: 'requestBody', protoName: 'request_body', FieldConstructor: OpenapiV3RequestBody, constraints: {}, description: '', }, { fieldName: 'reference', protoName: 'reference', FieldConstructor: OpenapiV3Reference, constraints: {}, description: '', }, ]"
|
|
66215
66548
|
},
|
|
66216
66549
|
{
|
|
66217
66550
|
"kind": "field",
|
|
@@ -67141,7 +67474,7 @@
|
|
|
67141
67474
|
"type": {
|
|
67142
67475
|
"text": "array"
|
|
67143
67476
|
},
|
|
67144
|
-
"default": "[ { fieldName: 'description', protoName: 'description', FieldConstructor: STRING, constraints: {}, description: '' }, { fieldName: 'headers', protoName: 'headers', FieldConstructor: OpenapiV3HeadersOrReferences, constraints: {}, description: '' }, { fieldName: 'content', protoName: 'content', FieldConstructor: OpenapiV3MediaTypes, constraints: {}, description: '' }, { fieldName: 'links', protoName: 'links', FieldConstructor: OpenapiV3LinksOrReferences, constraints: {}, description: '' }, { fieldName: 'specificationExtension', protoName: 'specification_extension', FieldConstructor: OpenapiV3NamedAny, constraints: {}, description: '' } ]"
|
|
67477
|
+
"default": "[ { fieldName: 'description', protoName: 'description', FieldConstructor: STRING, constraints: {}, description: '', }, { fieldName: 'headers', protoName: 'headers', FieldConstructor: OpenapiV3HeadersOrReferences, constraints: {}, description: '', }, { fieldName: 'content', protoName: 'content', FieldConstructor: OpenapiV3MediaTypes, constraints: {}, description: '', }, { fieldName: 'links', protoName: 'links', FieldConstructor: OpenapiV3LinksOrReferences, constraints: {}, description: '', }, { fieldName: 'specificationExtension', protoName: 'specification_extension', FieldConstructor: OpenapiV3NamedAny, constraints: {}, description: '', }, ]"
|
|
67145
67478
|
},
|
|
67146
67479
|
{
|
|
67147
67480
|
"kind": "field",
|
|
@@ -68078,7 +68411,7 @@
|
|
|
68078
68411
|
"type": {
|
|
68079
68412
|
"text": "array"
|
|
68080
68413
|
},
|
|
68081
|
-
"default": "[ { fieldName: 'response', protoName: 'response', FieldConstructor: OpenapiV3Response, constraints: {}, description: '' }, { fieldName: 'reference', protoName: 'reference', FieldConstructor: OpenapiV3Reference, constraints: {}, description: '' } ]"
|
|
68414
|
+
"default": "[ { fieldName: 'response', protoName: 'response', FieldConstructor: OpenapiV3Response, constraints: {}, description: '', }, { fieldName: 'reference', protoName: 'reference', FieldConstructor: OpenapiV3Reference, constraints: {}, description: '', }, ]"
|
|
68082
68415
|
},
|
|
68083
68416
|
{
|
|
68084
68417
|
"kind": "field",
|
|
@@ -69004,7 +69337,7 @@
|
|
|
69004
69337
|
"type": {
|
|
69005
69338
|
"text": "array"
|
|
69006
69339
|
},
|
|
69007
|
-
"default": "[ { fieldName: 'default', protoName: 'default', FieldConstructor: OpenapiV3ResponseOrReference, constraints: {}, description: '' }, { fieldName: 'responseOrReference', protoName: 'response_or_reference', FieldConstructor: OpenapiV3NamedResponseOrReference, constraints: {}, description: '' }, { fieldName: 'specificationExtension', protoName: 'specification_extension', FieldConstructor: OpenapiV3NamedAny, constraints: {}, description: '' } ]"
|
|
69340
|
+
"default": "[ { fieldName: 'default', protoName: 'default', FieldConstructor: OpenapiV3ResponseOrReference, constraints: {}, description: '', }, { fieldName: 'responseOrReference', protoName: 'response_or_reference', FieldConstructor: OpenapiV3NamedResponseOrReference, constraints: {}, description: '', }, { fieldName: 'specificationExtension', protoName: 'specification_extension', FieldConstructor: OpenapiV3NamedAny, constraints: {}, description: '', }, ]"
|
|
69008
69341
|
},
|
|
69009
69342
|
{
|
|
69010
69343
|
"kind": "field",
|
|
@@ -69927,7 +70260,7 @@
|
|
|
69927
70260
|
"type": {
|
|
69928
70261
|
"text": "array"
|
|
69929
70262
|
},
|
|
69930
|
-
"default": "[ { fieldName: 'additionalProperties', protoName: 'additional_properties', FieldConstructor: OpenapiV3NamedResponseOrReference, constraints: {}, description: '' } ]"
|
|
70263
|
+
"default": "[ { fieldName: 'additionalProperties', protoName: 'additional_properties', FieldConstructor: OpenapiV3NamedResponseOrReference, constraints: {}, description: '', }, ]"
|
|
69931
70264
|
},
|
|
69932
70265
|
{
|
|
69933
70266
|
"kind": "field",
|
|
@@ -70972,7 +71305,7 @@
|
|
|
70972
71305
|
"type": {
|
|
70973
71306
|
"text": "array"
|
|
70974
71307
|
},
|
|
70975
|
-
"default": "[ { fieldName: 'nullable', protoName: 'nullable', FieldConstructor: BOOLEAN, constraints: {}, description: '' }, { fieldName: 'discriminator', protoName: 'discriminator', FieldConstructor: OpenapiV3Discriminator, constraints: {}, description: '' }, { fieldName: 'readOnly', protoName: 'read_only', FieldConstructor: BOOLEAN, constraints: {}, description: '' }, { fieldName: 'writeOnly', protoName: 'write_only', FieldConstructor: BOOLEAN, constraints: {}, description: '' }, { fieldName: 'xml', protoName: 'xml', FieldConstructor: OpenapiV3Xml, constraints: {}, description: '' }, { fieldName: 'externalDocs', protoName: 'external_docs', FieldConstructor: OpenapiV3ExternalDocs, constraints: {}, description: '' }, { fieldName: 'example', protoName: 'example', FieldConstructor: OpenapiV3Any, constraints: {}, description: '' }, { fieldName: 'deprecated', protoName: 'deprecated', FieldConstructor: BOOLEAN, constraints: {}, description: '' }, { fieldName: 'title', protoName: 'title', FieldConstructor: STRING, constraints: {}, description: '' }, { fieldName: 'multipleOf', protoName: 'multiple_of', FieldConstructor: DOUBLE, constraints: {}, description: '' }, { fieldName: 'maximum', protoName: 'maximum', FieldConstructor: DOUBLE, constraints: {}, description: '' }, { fieldName: 'exclusiveMaximum', protoName: 'exclusive_maximum', FieldConstructor: BOOLEAN, constraints: {}, description: '' }, { fieldName: 'minimum', protoName: 'minimum', FieldConstructor: DOUBLE, constraints: {}, description: '' }, { fieldName: 'exclusiveMinimum', protoName: 'exclusive_minimum', FieldConstructor: BOOLEAN, constraints: {}, description: '' }, { fieldName: 'maxLength', protoName: 'max_length', FieldConstructor: INT64, constraints: {}, description: '' }, { fieldName: 'minLength', protoName: 'min_length', FieldConstructor: INT64, constraints: {}, description: '' }, { fieldName: 'pattern', protoName: 'pattern', FieldConstructor: STRING, constraints: {}, description: '' }, { fieldName: 'maxItems', protoName: 'max_items', FieldConstructor: INT64, constraints: {}, description: '' }, { fieldName: 'minItems', protoName: 'min_items', FieldConstructor: INT64, constraints: {}, description: '' }, { fieldName: 'uniqueItems', protoName: 'unique_items', FieldConstructor: BOOLEAN, constraints: {}, description: '' }, { fieldName: 'maxProperties', protoName: 'max_properties', FieldConstructor: INT64, constraints: {}, description: '' }, { fieldName: 'minProperties', protoName: 'min_properties', FieldConstructor: INT64, constraints: {}, description: '' }, { fieldName: 'required', protoName: 'required', FieldConstructor: STRING, constraints: {}, description: '' }, { fieldName: 'enum', protoName: 'enum', FieldConstructor: OpenapiV3Any, constraints: {}, description: '' }, { fieldName: 'type', protoName: 'type', FieldConstructor: STRING, constraints: {}, description: '' }, { fieldName: 'allOf', protoName: 'all_of', FieldConstructor: OpenapiV3SchemaOrReference, constraints: {}, description: '' }, { fieldName: 'oneOf', protoName: 'one_of', FieldConstructor: OpenapiV3SchemaOrReference, constraints: {}, description: '' }, { fieldName: 'anyOf', protoName: 'any_of', FieldConstructor: OpenapiV3SchemaOrReference, constraints: {}, description: '' }, { fieldName: 'not', protoName: 'not', FieldConstructor: Schema, constraints: {}, description: '' }, { fieldName: 'items', protoName: 'items', FieldConstructor: OpenapiV3ItemsItem, constraints: {}, description: '' }, { fieldName: 'properties', protoName: 'properties', FieldConstructor: OpenapiV3Properties, constraints: {}, description: '' }, { fieldName: 'additionalProperties', protoName: 'additional_properties', FieldConstructor: OpenapiV3AdditionalPropertiesItem, constraints: {}, description: '' }, { fieldName: 'default', protoName: 'default', FieldConstructor: OpenapiV3DefaultType, constraints: {}, description: '' }, { fieldName: 'description', protoName: 'description', FieldConstructor: STRING, constraints: {}, description: '' }, { fieldName: 'format', protoName: 'format', FieldConstructor: STRING, constraints: {}, description: '' }, { fieldName: 'specificationExtension', protoName: 'specification_extension', FieldConstructor: OpenapiV3NamedAny, constraints: {}, description: '' } ]"
|
|
71308
|
+
"default": "[ { fieldName: 'nullable', protoName: 'nullable', FieldConstructor: BOOLEAN, constraints: {}, description: '', }, { fieldName: 'discriminator', protoName: 'discriminator', FieldConstructor: OpenapiV3Discriminator, constraints: {}, description: '', }, { fieldName: 'readOnly', protoName: 'read_only', FieldConstructor: BOOLEAN, constraints: {}, description: '', }, { fieldName: 'writeOnly', protoName: 'write_only', FieldConstructor: BOOLEAN, constraints: {}, description: '', }, { fieldName: 'xml', protoName: 'xml', FieldConstructor: OpenapiV3Xml, constraints: {}, description: '', }, { fieldName: 'externalDocs', protoName: 'external_docs', FieldConstructor: OpenapiV3ExternalDocs, constraints: {}, description: '', }, { fieldName: 'example', protoName: 'example', FieldConstructor: OpenapiV3Any, constraints: {}, description: '', }, { fieldName: 'deprecated', protoName: 'deprecated', FieldConstructor: BOOLEAN, constraints: {}, description: '', }, { fieldName: 'title', protoName: 'title', FieldConstructor: STRING, constraints: {}, description: '', }, { fieldName: 'multipleOf', protoName: 'multiple_of', FieldConstructor: DOUBLE, constraints: {}, description: '', }, { fieldName: 'maximum', protoName: 'maximum', FieldConstructor: DOUBLE, constraints: {}, description: '', }, { fieldName: 'exclusiveMaximum', protoName: 'exclusive_maximum', FieldConstructor: BOOLEAN, constraints: {}, description: '', }, { fieldName: 'minimum', protoName: 'minimum', FieldConstructor: DOUBLE, constraints: {}, description: '', }, { fieldName: 'exclusiveMinimum', protoName: 'exclusive_minimum', FieldConstructor: BOOLEAN, constraints: {}, description: '', }, { fieldName: 'maxLength', protoName: 'max_length', FieldConstructor: INT64, constraints: {}, description: '', }, { fieldName: 'minLength', protoName: 'min_length', FieldConstructor: INT64, constraints: {}, description: '', }, { fieldName: 'pattern', protoName: 'pattern', FieldConstructor: STRING, constraints: {}, description: '', }, { fieldName: 'maxItems', protoName: 'max_items', FieldConstructor: INT64, constraints: {}, description: '', }, { fieldName: 'minItems', protoName: 'min_items', FieldConstructor: INT64, constraints: {}, description: '', }, { fieldName: 'uniqueItems', protoName: 'unique_items', FieldConstructor: BOOLEAN, constraints: {}, description: '', }, { fieldName: 'maxProperties', protoName: 'max_properties', FieldConstructor: INT64, constraints: {}, description: '', }, { fieldName: 'minProperties', protoName: 'min_properties', FieldConstructor: INT64, constraints: {}, description: '', }, { fieldName: 'required', protoName: 'required', FieldConstructor: STRING, constraints: {}, description: '', }, { fieldName: 'enum', protoName: 'enum', FieldConstructor: OpenapiV3Any, constraints: {}, description: '', }, { fieldName: 'type', protoName: 'type', FieldConstructor: STRING, constraints: {}, description: '', }, { fieldName: 'allOf', protoName: 'all_of', FieldConstructor: OpenapiV3SchemaOrReference, constraints: {}, description: '', }, { fieldName: 'oneOf', protoName: 'one_of', FieldConstructor: OpenapiV3SchemaOrReference, constraints: {}, description: '', }, { fieldName: 'anyOf', protoName: 'any_of', FieldConstructor: OpenapiV3SchemaOrReference, constraints: {}, description: '', }, { fieldName: 'not', protoName: 'not', FieldConstructor: Schema, constraints: {}, description: '', }, { fieldName: 'items', protoName: 'items', FieldConstructor: OpenapiV3ItemsItem, constraints: {}, description: '', }, { fieldName: 'properties', protoName: 'properties', FieldConstructor: OpenapiV3Properties, constraints: {}, description: '', }, { fieldName: 'additionalProperties', protoName: 'additional_properties', FieldConstructor: OpenapiV3AdditionalPropertiesItem, constraints: {}, description: '', }, { fieldName: 'default', protoName: 'default', FieldConstructor: OpenapiV3DefaultType, constraints: {}, description: '', }, { fieldName: 'description', protoName: 'description', FieldConstructor: STRING, constraints: {}, description: '', }, { fieldName: 'format', protoName: 'format', FieldConstructor: STRING, constraints: {}, description: '', }, { fieldName: 'specificationExtension', protoName: 'specification_extension', FieldConstructor: OpenapiV3NamedAny, constraints: {}, description: '', }, ]"
|
|
70976
71309
|
},
|
|
70977
71310
|
{
|
|
70978
71311
|
"kind": "field",
|
|
@@ -72064,7 +72397,7 @@
|
|
|
72064
72397
|
"type": {
|
|
72065
72398
|
"text": "array"
|
|
72066
72399
|
},
|
|
72067
|
-
"default": "[ { fieldName: 'schema', protoName: 'schema', FieldConstructor: OpenapiV3Schema, constraints: {}, description: '' }, { fieldName: 'reference', protoName: 'reference', FieldConstructor: OpenapiV3Reference, constraints: {}, description: '' } ]"
|
|
72400
|
+
"default": "[ { fieldName: 'schema', protoName: 'schema', FieldConstructor: OpenapiV3Schema, constraints: {}, description: '', }, { fieldName: 'reference', protoName: 'reference', FieldConstructor: OpenapiV3Reference, constraints: {}, description: '', }, ]"
|
|
72068
72401
|
},
|
|
72069
72402
|
{
|
|
72070
72403
|
"kind": "field",
|
|
@@ -72982,7 +73315,7 @@
|
|
|
72982
73315
|
"type": {
|
|
72983
73316
|
"text": "array"
|
|
72984
73317
|
},
|
|
72985
|
-
"default": "[ { fieldName: 'additionalProperties', protoName: 'additional_properties', FieldConstructor: OpenapiV3NamedSchemaOrReference, constraints: {}, description: '' } ]"
|
|
73318
|
+
"default": "[ { fieldName: 'additionalProperties', protoName: 'additional_properties', FieldConstructor: OpenapiV3NamedSchemaOrReference, constraints: {}, description: '', }, ]"
|
|
72986
73319
|
},
|
|
72987
73320
|
{
|
|
72988
73321
|
"kind": "field",
|
|
@@ -73895,7 +74228,7 @@
|
|
|
73895
74228
|
"type": {
|
|
73896
74229
|
"text": "array"
|
|
73897
74230
|
},
|
|
73898
|
-
"default": "[ { fieldName: 'additionalProperties', protoName: 'additional_properties', FieldConstructor: OpenapiV3NamedStringArray, constraints: {}, description: '' } ]"
|
|
74231
|
+
"default": "[ { fieldName: 'additionalProperties', protoName: 'additional_properties', FieldConstructor: OpenapiV3NamedStringArray, constraints: {}, description: '', }, ]"
|
|
73899
74232
|
},
|
|
73900
74233
|
{
|
|
73901
74234
|
"kind": "field",
|
|
@@ -74779,7 +75112,7 @@
|
|
|
74779
75112
|
"type": {
|
|
74780
75113
|
"text": "string"
|
|
74781
75114
|
},
|
|
74782
|
-
"default": "
|
|
75115
|
+
"default": "\"SecurityScheme Defines a security scheme that can be used by the operations. Supported schemes are HTTP authentication, an API key (either as a header, a cookie parameter or as a query parameter), mutual TLS (use of a client certificate), OAuth2's common flows (implicit, password, application and access code) as defined in RFC6749, and OpenID Connect. Please note that currently (2019) the implicit flow is about to be deprecated OAuth 2.0 Security Best Current Practice. Recommended for most use case is Authorization Code Grant flow with PKCE.\""
|
|
74783
75116
|
},
|
|
74784
75117
|
{
|
|
74785
75118
|
"kind": "field",
|
|
@@ -74836,7 +75169,7 @@
|
|
|
74836
75169
|
"type": {
|
|
74837
75170
|
"text": "array"
|
|
74838
75171
|
},
|
|
74839
|
-
"default": "[ { fieldName: 'type', protoName: 'type', FieldConstructor: STRING, constraints: {}, description: '' }, { fieldName: 'description', protoName: 'description', FieldConstructor: STRING, constraints: {}, description: '' }, { fieldName: 'name', protoName: 'name', FieldConstructor: STRING, constraints: {}, description: '' }, { fieldName: 'in', protoName: 'in', FieldConstructor: STRING, constraints: {}, description: '' }, { fieldName: 'scheme', protoName: 'scheme', FieldConstructor: STRING, constraints: {}, description: '' }, { fieldName: 'bearerFormat', protoName: 'bearer_format', FieldConstructor: STRING, constraints: {}, description: '' }, { fieldName: 'flows', protoName: 'flows', FieldConstructor: OpenapiV3OauthFlows, constraints: {}, description: '' }, { fieldName: 'openIdConnectUrl', protoName: 'open_id_connect_url', FieldConstructor: STRING, constraints: {}, description: '' }, { fieldName: 'specificationExtension', protoName: 'specification_extension', FieldConstructor: OpenapiV3NamedAny, constraints: {}, description: '' } ]"
|
|
75172
|
+
"default": "[ { fieldName: 'type', protoName: 'type', FieldConstructor: STRING, constraints: {}, description: '', }, { fieldName: 'description', protoName: 'description', FieldConstructor: STRING, constraints: {}, description: '', }, { fieldName: 'name', protoName: 'name', FieldConstructor: STRING, constraints: {}, description: '', }, { fieldName: 'in', protoName: 'in', FieldConstructor: STRING, constraints: {}, description: '', }, { fieldName: 'scheme', protoName: 'scheme', FieldConstructor: STRING, constraints: {}, description: '', }, { fieldName: 'bearerFormat', protoName: 'bearer_format', FieldConstructor: STRING, constraints: {}, description: '', }, { fieldName: 'flows', protoName: 'flows', FieldConstructor: OpenapiV3OauthFlows, constraints: {}, description: '', }, { fieldName: 'openIdConnectUrl', protoName: 'open_id_connect_url', FieldConstructor: STRING, constraints: {}, description: '', }, { fieldName: 'specificationExtension', protoName: 'specification_extension', FieldConstructor: OpenapiV3NamedAny, constraints: {}, description: '', }, ]"
|
|
74840
75173
|
},
|
|
74841
75174
|
{
|
|
74842
75175
|
"kind": "field",
|
|
@@ -75793,7 +76126,7 @@
|
|
|
75793
76126
|
"type": {
|
|
75794
76127
|
"text": "array"
|
|
75795
76128
|
},
|
|
75796
|
-
"default": "[ { fieldName: 'securityScheme', protoName: 'security_scheme', FieldConstructor: OpenapiV3SecurityScheme, constraints: {}, description: '' }, { fieldName: 'reference', protoName: 'reference', FieldConstructor: OpenapiV3Reference, constraints: {}, description: '' } ]"
|
|
76129
|
+
"default": "[ { fieldName: 'securityScheme', protoName: 'security_scheme', FieldConstructor: OpenapiV3SecurityScheme, constraints: {}, description: '', }, { fieldName: 'reference', protoName: 'reference', FieldConstructor: OpenapiV3Reference, constraints: {}, description: '', }, ]"
|
|
75797
76130
|
},
|
|
75798
76131
|
{
|
|
75799
76132
|
"kind": "field",
|
|
@@ -76711,7 +77044,7 @@
|
|
|
76711
77044
|
"type": {
|
|
76712
77045
|
"text": "array"
|
|
76713
77046
|
},
|
|
76714
|
-
"default": "[ { fieldName: 'additionalProperties', protoName: 'additional_properties', FieldConstructor: OpenapiV3NamedSecuritySchemeOrReference, constraints: {}, description: '' } ]"
|
|
77047
|
+
"default": "[ { fieldName: 'additionalProperties', protoName: 'additional_properties', FieldConstructor: OpenapiV3NamedSecuritySchemeOrReference, constraints: {}, description: '', }, ]"
|
|
76715
77048
|
},
|
|
76716
77049
|
{
|
|
76717
77050
|
"kind": "field",
|
|
@@ -77632,7 +77965,7 @@
|
|
|
77632
77965
|
"type": {
|
|
77633
77966
|
"text": "array"
|
|
77634
77967
|
},
|
|
77635
|
-
"default": "[ { fieldName: 'url', protoName: 'url', FieldConstructor: STRING, constraints: {}, description: '' }, { fieldName: 'description', protoName: 'description', FieldConstructor: STRING, constraints: {}, description: '' }, { fieldName: 'variables', protoName: 'variables', FieldConstructor: OpenapiV3ServerVariables, constraints: {}, description: '' }, { fieldName: 'specificationExtension', protoName: 'specification_extension', FieldConstructor: OpenapiV3NamedAny, constraints: {}, description: '' } ]"
|
|
77968
|
+
"default": "[ { fieldName: 'url', protoName: 'url', FieldConstructor: STRING, constraints: {}, description: '', }, { fieldName: 'description', protoName: 'description', FieldConstructor: STRING, constraints: {}, description: '', }, { fieldName: 'variables', protoName: 'variables', FieldConstructor: OpenapiV3ServerVariables, constraints: {}, description: '', }, { fieldName: 'specificationExtension', protoName: 'specification_extension', FieldConstructor: OpenapiV3NamedAny, constraints: {}, description: '', }, ]"
|
|
77636
77969
|
},
|
|
77637
77970
|
{
|
|
77638
77971
|
"kind": "field",
|
|
@@ -78568,7 +78901,7 @@
|
|
|
78568
78901
|
"type": {
|
|
78569
78902
|
"text": "array"
|
|
78570
78903
|
},
|
|
78571
|
-
"default": "[ { fieldName: 'enum', protoName: 'enum', FieldConstructor: STRING, constraints: {}, description: '' }, { fieldName: 'default', protoName: 'default', FieldConstructor: STRING, constraints: {}, description: '' }, { fieldName: 'description', protoName: 'description', FieldConstructor: STRING, constraints: {}, description: '' }, { fieldName: 'specificationExtension', protoName: 'specification_extension', FieldConstructor: OpenapiV3NamedAny, constraints: {}, description: '' } ]"
|
|
78904
|
+
"default": "[ { fieldName: 'enum', protoName: 'enum', FieldConstructor: STRING, constraints: {}, description: '', }, { fieldName: 'default', protoName: 'default', FieldConstructor: STRING, constraints: {}, description: '', }, { fieldName: 'description', protoName: 'description', FieldConstructor: STRING, constraints: {}, description: '', }, { fieldName: 'specificationExtension', protoName: 'specification_extension', FieldConstructor: OpenapiV3NamedAny, constraints: {}, description: '', }, ]"
|
|
78572
78905
|
},
|
|
78573
78906
|
{
|
|
78574
78907
|
"kind": "field",
|
|
@@ -79496,7 +79829,7 @@
|
|
|
79496
79829
|
"type": {
|
|
79497
79830
|
"text": "array"
|
|
79498
79831
|
},
|
|
79499
|
-
"default": "[ { fieldName: 'additionalProperties', protoName: 'additional_properties', FieldConstructor: OpenapiV3NamedServerVariable, constraints: {}, description: '' } ]"
|
|
79832
|
+
"default": "[ { fieldName: 'additionalProperties', protoName: 'additional_properties', FieldConstructor: OpenapiV3NamedServerVariable, constraints: {}, description: '', }, ]"
|
|
79500
79833
|
},
|
|
79501
79834
|
{
|
|
79502
79835
|
"kind": "field",
|
|
@@ -80417,7 +80750,7 @@
|
|
|
80417
80750
|
"type": {
|
|
80418
80751
|
"text": "array"
|
|
80419
80752
|
},
|
|
80420
|
-
"default": "[ { fieldName: 'number', protoName: 'number', FieldConstructor: DOUBLE, constraints: {}, description: '' }, { fieldName: 'boolean', protoName: 'boolean', FieldConstructor: BOOLEAN, constraints: {}, description: '' }, { fieldName: 'string', protoName: 'string', FieldConstructor: STRING, constraints: {}, description: '' } ]"
|
|
80753
|
+
"default": "[ { fieldName: 'number', protoName: 'number', FieldConstructor: DOUBLE, constraints: {}, description: '', }, { fieldName: 'boolean', protoName: 'boolean', FieldConstructor: BOOLEAN, constraints: {}, description: '', }, { fieldName: 'string', protoName: 'string', FieldConstructor: STRING, constraints: {}, description: '', }, ]"
|
|
80421
80754
|
},
|
|
80422
80755
|
{
|
|
80423
80756
|
"kind": "field",
|
|
@@ -81340,7 +81673,7 @@
|
|
|
81340
81673
|
"type": {
|
|
81341
81674
|
"text": "array"
|
|
81342
81675
|
},
|
|
81343
|
-
"default": "[ { fieldName: 'value', protoName: 'value', FieldConstructor: STRING, constraints: {}, description: '' } ]"
|
|
81676
|
+
"default": "[ { fieldName: 'value', protoName: 'value', FieldConstructor: STRING, constraints: {}, description: '', }, ]"
|
|
81344
81677
|
},
|
|
81345
81678
|
{
|
|
81346
81679
|
"kind": "field",
|
|
@@ -82253,7 +82586,7 @@
|
|
|
82253
82586
|
"type": {
|
|
82254
82587
|
"text": "array"
|
|
82255
82588
|
},
|
|
82256
|
-
"default": "[ { fieldName: 'additionalProperties', protoName: 'additional_properties', FieldConstructor: OpenapiV3NamedString, constraints: {}, description: '' } ]"
|
|
82589
|
+
"default": "[ { fieldName: 'additionalProperties', protoName: 'additional_properties', FieldConstructor: OpenapiV3NamedString, constraints: {}, description: '', }, ]"
|
|
82257
82590
|
},
|
|
82258
82591
|
{
|
|
82259
82592
|
"kind": "field",
|
|
@@ -83174,7 +83507,7 @@
|
|
|
83174
83507
|
"type": {
|
|
83175
83508
|
"text": "array"
|
|
83176
83509
|
},
|
|
83177
|
-
"default": "[ { fieldName: 'name', protoName: 'name', FieldConstructor: STRING, constraints: {}, description: '' }, { fieldName: 'description', protoName: 'description', FieldConstructor: STRING, constraints: {}, description: '' }, { fieldName: 'externalDocs', protoName: 'external_docs', FieldConstructor: OpenapiV3ExternalDocs, constraints: {}, description: '' }, { fieldName: 'specificationExtension', protoName: 'specification_extension', FieldConstructor: OpenapiV3NamedAny, constraints: {}, description: '' } ]"
|
|
83510
|
+
"default": "[ { fieldName: 'name', protoName: 'name', FieldConstructor: STRING, constraints: {}, description: '', }, { fieldName: 'description', protoName: 'description', FieldConstructor: STRING, constraints: {}, description: '', }, { fieldName: 'externalDocs', protoName: 'external_docs', FieldConstructor: OpenapiV3ExternalDocs, constraints: {}, description: '', }, { fieldName: 'specificationExtension', protoName: 'specification_extension', FieldConstructor: OpenapiV3NamedAny, constraints: {}, description: '', }, ]"
|
|
83178
83511
|
},
|
|
83179
83512
|
{
|
|
83180
83513
|
"kind": "field",
|
|
@@ -84122,7 +84455,7 @@
|
|
|
84122
84455
|
"type": {
|
|
84123
84456
|
"text": "array"
|
|
84124
84457
|
},
|
|
84125
|
-
"default": "[ { fieldName: 'name', protoName: 'name', FieldConstructor: STRING, constraints: {}, description: '' }, { fieldName: 'namespace', protoName: 'namespace', FieldConstructor: STRING, constraints: {}, description: '' }, { fieldName: 'prefix', protoName: 'prefix', FieldConstructor: STRING, constraints: {}, description: '' }, { fieldName: 'attribute', protoName: 'attribute', FieldConstructor: BOOLEAN, constraints: {}, description: '' }, { fieldName: 'wrapped', protoName: 'wrapped', FieldConstructor: BOOLEAN, constraints: {}, description: '' }, { fieldName: 'specificationExtension', protoName: 'specification_extension', FieldConstructor: OpenapiV3NamedAny, constraints: {}, description: '' } ]"
|
|
84458
|
+
"default": "[ { fieldName: 'name', protoName: 'name', FieldConstructor: STRING, constraints: {}, description: '', }, { fieldName: 'namespace', protoName: 'namespace', FieldConstructor: STRING, constraints: {}, description: '', }, { fieldName: 'prefix', protoName: 'prefix', FieldConstructor: STRING, constraints: {}, description: '', }, { fieldName: 'attribute', protoName: 'attribute', FieldConstructor: BOOLEAN, constraints: {}, description: '', }, { fieldName: 'wrapped', protoName: 'wrapped', FieldConstructor: BOOLEAN, constraints: {}, description: '', }, { fieldName: 'specificationExtension', protoName: 'specification_extension', FieldConstructor: OpenapiV3NamedAny, constraints: {}, description: '', }, ]"
|
|
84126
84459
|
},
|
|
84127
84460
|
{
|
|
84128
84461
|
"kind": "field",
|
|
@@ -85014,28 +85347,20 @@
|
|
|
85014
85347
|
},
|
|
85015
85348
|
{
|
|
85016
85349
|
"kind": "javascript-module",
|
|
85017
|
-
"path": "dist/protoc-gen-open-models/
|
|
85350
|
+
"path": "dist/protoc-gen-open-models/google/api/CustomHttpPattern.js",
|
|
85018
85351
|
"declarations": [
|
|
85019
85352
|
{
|
|
85020
85353
|
"kind": "class",
|
|
85021
|
-
"description": "
|
|
85022
|
-
"name": "
|
|
85354
|
+
"description": "CustomHttpPattern\n A custom pattern is used for defining custom HTTP verb.",
|
|
85355
|
+
"name": "CustomHttpPattern",
|
|
85023
85356
|
"members": [
|
|
85024
85357
|
{
|
|
85025
85358
|
"kind": "field",
|
|
85026
|
-
"name": "
|
|
85027
|
-
},
|
|
85028
|
-
{
|
|
85029
|
-
"kind": "field",
|
|
85030
|
-
"name": "green"
|
|
85031
|
-
},
|
|
85032
|
-
{
|
|
85033
|
-
"kind": "field",
|
|
85034
|
-
"name": "blue"
|
|
85359
|
+
"name": "kind"
|
|
85035
85360
|
},
|
|
85036
85361
|
{
|
|
85037
85362
|
"kind": "field",
|
|
85038
|
-
"name": "
|
|
85363
|
+
"name": "path"
|
|
85039
85364
|
},
|
|
85040
85365
|
{
|
|
85041
85366
|
"kind": "method",
|
|
@@ -85056,7 +85381,7 @@
|
|
|
85056
85381
|
"type": {
|
|
85057
85382
|
"text": "string"
|
|
85058
85383
|
},
|
|
85059
|
-
"default": "'
|
|
85384
|
+
"default": "'google.api.CustomHttpPattern'"
|
|
85060
85385
|
},
|
|
85061
85386
|
{
|
|
85062
85387
|
"kind": "field",
|
|
@@ -85064,7 +85389,7 @@
|
|
|
85064
85389
|
"type": {
|
|
85065
85390
|
"text": "string"
|
|
85066
85391
|
},
|
|
85067
|
-
"default": "'
|
|
85392
|
+
"default": "'CustomHttpPattern A custom pattern is used for defining custom HTTP verb.'"
|
|
85068
85393
|
},
|
|
85069
85394
|
{
|
|
85070
85395
|
"kind": "field",
|
|
@@ -85072,27 +85397,17 @@
|
|
|
85072
85397
|
"type": {
|
|
85073
85398
|
"text": "array"
|
|
85074
85399
|
},
|
|
85075
|
-
"default": "[ { fieldName: '
|
|
85076
|
-
},
|
|
85077
|
-
{
|
|
85078
|
-
"kind": "field",
|
|
85079
|
-
"name": "_red",
|
|
85080
|
-
"default": "new INT32(undefined, this, 'red')"
|
|
85400
|
+
"default": "[ { fieldName: 'kind', protoName: 'kind', FieldConstructor: STRING, constraints: {}, description: 'The name of this custom HTTP verb.', }, { fieldName: 'path', protoName: 'path', FieldConstructor: STRING, constraints: {}, description: 'The path matched by this custom verb.', }, ]"
|
|
85081
85401
|
},
|
|
85082
85402
|
{
|
|
85083
85403
|
"kind": "field",
|
|
85084
|
-
"name": "
|
|
85085
|
-
"default": "new
|
|
85086
|
-
},
|
|
85087
|
-
{
|
|
85088
|
-
"kind": "field",
|
|
85089
|
-
"name": "_blue",
|
|
85090
|
-
"default": "new INT32(undefined, this, 'blue')"
|
|
85404
|
+
"name": "_kind",
|
|
85405
|
+
"default": "new STRING(undefined, this, 'kind')"
|
|
85091
85406
|
},
|
|
85092
85407
|
{
|
|
85093
85408
|
"kind": "field",
|
|
85094
|
-
"name": "
|
|
85095
|
-
"default": "new
|
|
85409
|
+
"name": "_path",
|
|
85410
|
+
"default": "new STRING(undefined, this, 'path')"
|
|
85096
85411
|
},
|
|
85097
85412
|
{
|
|
85098
85413
|
"kind": "field",
|
|
@@ -85100,7 +85415,7 @@
|
|
|
85100
85415
|
"type": {
|
|
85101
85416
|
"text": "object"
|
|
85102
85417
|
},
|
|
85103
|
-
"default": "{
|
|
85418
|
+
"default": "{}"
|
|
85104
85419
|
},
|
|
85105
85420
|
{
|
|
85106
85421
|
"kind": "field",
|
|
@@ -85938,48 +86253,36 @@
|
|
|
85938
86253
|
"exports": [
|
|
85939
86254
|
{
|
|
85940
86255
|
"kind": "js",
|
|
85941
|
-
"name": "
|
|
86256
|
+
"name": "CustomHttpPattern",
|
|
85942
86257
|
"declaration": {
|
|
85943
|
-
"name": "
|
|
85944
|
-
"module": "dist/protoc-gen-open-models/
|
|
86258
|
+
"name": "CustomHttpPattern",
|
|
86259
|
+
"module": "dist/protoc-gen-open-models/google/api/CustomHttpPattern.js"
|
|
85945
86260
|
}
|
|
85946
86261
|
}
|
|
85947
86262
|
]
|
|
85948
86263
|
},
|
|
85949
86264
|
{
|
|
85950
86265
|
"kind": "javascript-module",
|
|
85951
|
-
"path": "dist/protoc-gen-open-models/
|
|
86266
|
+
"path": "dist/protoc-gen-open-models/google/api/CustomHttpPattern.js.map",
|
|
85952
86267
|
"declarations": [],
|
|
85953
86268
|
"exports": []
|
|
85954
86269
|
},
|
|
85955
86270
|
{
|
|
85956
86271
|
"kind": "javascript-module",
|
|
85957
|
-
"path": "dist/protoc-gen-open-models/
|
|
86272
|
+
"path": "dist/protoc-gen-open-models/google/api/Http.js",
|
|
85958
86273
|
"declarations": [
|
|
85959
86274
|
{
|
|
85960
86275
|
"kind": "class",
|
|
85961
|
-
"description": "
|
|
85962
|
-
"name": "
|
|
86276
|
+
"description": "Http\n Defines the HTTP configuration for an API service. It contains a list of\n [HttpRule][google.api.HttpRule], each specifying the mapping of an RPC method\n to one or more HTTP REST API methods.",
|
|
86277
|
+
"name": "Http",
|
|
85963
86278
|
"members": [
|
|
85964
86279
|
{
|
|
85965
86280
|
"kind": "field",
|
|
85966
|
-
"name": "
|
|
85967
|
-
},
|
|
85968
|
-
{
|
|
85969
|
-
"kind": "field",
|
|
85970
|
-
"name": "breadth"
|
|
85971
|
-
},
|
|
85972
|
-
{
|
|
85973
|
-
"kind": "field",
|
|
85974
|
-
"name": "height"
|
|
85975
|
-
},
|
|
85976
|
-
{
|
|
85977
|
-
"kind": "field",
|
|
85978
|
-
"name": "colour"
|
|
86281
|
+
"name": "rules"
|
|
85979
86282
|
},
|
|
85980
86283
|
{
|
|
85981
86284
|
"kind": "field",
|
|
85982
|
-
"name": "
|
|
86285
|
+
"name": "fullyDecodeReservedExpansion"
|
|
85983
86286
|
},
|
|
85984
86287
|
{
|
|
85985
86288
|
"kind": "method",
|
|
@@ -86000,7 +86303,7 @@
|
|
|
86000
86303
|
"type": {
|
|
86001
86304
|
"text": "string"
|
|
86002
86305
|
},
|
|
86003
|
-
"default": "'
|
|
86306
|
+
"default": "'google.api.Http'"
|
|
86004
86307
|
},
|
|
86005
86308
|
{
|
|
86006
86309
|
"kind": "field",
|
|
@@ -86008,7 +86311,7 @@
|
|
|
86008
86311
|
"type": {
|
|
86009
86312
|
"text": "string"
|
|
86010
86313
|
},
|
|
86011
|
-
"default": "'
|
|
86314
|
+
"default": "'Http Defines the HTTP configuration for an API service. It contains a list of\\n [HttpRule][google.api.HttpRule], each specifying the mapping of an RPC method\\n to one or more HTTP REST API methods.'"
|
|
86012
86315
|
},
|
|
86013
86316
|
{
|
|
86014
86317
|
"kind": "field",
|
|
@@ -86016,32 +86319,17 @@
|
|
|
86016
86319
|
"type": {
|
|
86017
86320
|
"text": "array"
|
|
86018
86321
|
},
|
|
86019
|
-
"default": "[ { fieldName: '
|
|
86020
|
-
},
|
|
86021
|
-
{
|
|
86022
|
-
"kind": "field",
|
|
86023
|
-
"name": "_length",
|
|
86024
|
-
"default": "new DOUBLE(undefined, this, 'length')"
|
|
86322
|
+
"default": "[ { fieldName: 'rules', protoName: 'rules', FieldConstructor: GoogleApiHttpRule, constraints: {}, description: 'A list of HTTP configuration rules that apply to individual API methods.\\n\\n **NOTE:** All service configuration rules follow \"last one wins\" order.', }, { fieldName: 'fullyDecodeReservedExpansion', protoName: 'fully_decode_reserved_expansion', FieldConstructor: BOOLEAN, constraints: {}, description: 'When set to true, URL path parameters will be fully URI-decoded except in\\n cases of single segment matches in reserved expansion, where \"%2F\" will be\\n left encoded.\\n\\n The default behavior is to not decode RFC 6570 reserved characters in multi\\n segment matches.', }, ]"
|
|
86025
86323
|
},
|
|
86026
86324
|
{
|
|
86027
86325
|
"kind": "field",
|
|
86028
|
-
"name": "
|
|
86029
|
-
"default": "new
|
|
86030
|
-
},
|
|
86031
|
-
{
|
|
86032
|
-
"kind": "field",
|
|
86033
|
-
"name": "_height",
|
|
86034
|
-
"default": "new DOUBLE(undefined, this, 'height')"
|
|
86035
|
-
},
|
|
86036
|
-
{
|
|
86037
|
-
"kind": "field",
|
|
86038
|
-
"name": "_colour",
|
|
86039
|
-
"default": "new FuroCubeColour(undefined, this, 'colour')"
|
|
86326
|
+
"name": "_rules",
|
|
86327
|
+
"default": "new ARRAY(undefined, this, 'rules')"
|
|
86040
86328
|
},
|
|
86041
86329
|
{
|
|
86042
86330
|
"kind": "field",
|
|
86043
|
-
"name": "
|
|
86044
|
-
"default": "new
|
|
86331
|
+
"name": "_fullyDecodeReservedExpansion",
|
|
86332
|
+
"default": "new BOOLEAN(undefined, this, 'fullyDecodeReservedExpansion')"
|
|
86045
86333
|
},
|
|
86046
86334
|
{
|
|
86047
86335
|
"kind": "field",
|
|
@@ -86049,7 +86337,7 @@
|
|
|
86049
86337
|
"type": {
|
|
86050
86338
|
"text": "object"
|
|
86051
86339
|
},
|
|
86052
|
-
"default": "{
|
|
86340
|
+
"default": "{}"
|
|
86053
86341
|
},
|
|
86054
86342
|
{
|
|
86055
86343
|
"kind": "field",
|
|
@@ -86887,44 +87175,68 @@
|
|
|
86887
87175
|
"exports": [
|
|
86888
87176
|
{
|
|
86889
87177
|
"kind": "js",
|
|
86890
|
-
"name": "
|
|
87178
|
+
"name": "Http",
|
|
86891
87179
|
"declaration": {
|
|
86892
|
-
"name": "
|
|
86893
|
-
"module": "dist/protoc-gen-open-models/
|
|
87180
|
+
"name": "Http",
|
|
87181
|
+
"module": "dist/protoc-gen-open-models/google/api/Http.js"
|
|
86894
87182
|
}
|
|
86895
87183
|
}
|
|
86896
87184
|
]
|
|
86897
87185
|
},
|
|
86898
87186
|
{
|
|
86899
87187
|
"kind": "javascript-module",
|
|
86900
|
-
"path": "dist/protoc-gen-open-models/
|
|
87188
|
+
"path": "dist/protoc-gen-open-models/google/api/Http.js.map",
|
|
86901
87189
|
"declarations": [],
|
|
86902
87190
|
"exports": []
|
|
86903
87191
|
},
|
|
86904
87192
|
{
|
|
86905
87193
|
"kind": "javascript-module",
|
|
86906
|
-
"path": "dist/protoc-gen-open-models/
|
|
87194
|
+
"path": "dist/protoc-gen-open-models/google/api/HttpRule.js",
|
|
86907
87195
|
"declarations": [
|
|
86908
87196
|
{
|
|
86909
87197
|
"kind": "class",
|
|
86910
|
-
"description": "CubeEntity\n CubeEntity",
|
|
86911
|
-
"name": "
|
|
87198
|
+
"description": "HttpRule\n # gRPC Transcoding\n\n gRPC Transcoding is a feature for mapping between a gRPC method and one or\n more HTTP REST endpoints. It allows developers to build a single API service\n that supports both gRPC APIs and REST APIs. Many systems, including [Google\n APIs](https://github.com/googleapis/googleapis),\n [Cloud Endpoints](https://cloud.google.com/endpoints), [gRPC\n Gateway](https://github.com/grpc-ecosystem/grpc-gateway),\n and [Envoy](https://github.com/envoyproxy/envoy) proxy support this feature\n and use it for large scale production services.\n\n `HttpRule` defines the schema of the gRPC/REST mapping. The mapping specifies\n how different portions of the gRPC request message are mapped to the URL\n path, URL query parameters, and HTTP request body. It also controls how the\n gRPC response message is mapped to the HTTP response body. `HttpRule` is\n typically specified as an `google.api.http` annotation on the gRPC method.\n\n Each mapping specifies a URL path template and an HTTP method. The path\n template may refer to one or more fields in the gRPC request message, as long\n as each field is a non-repeated field with a primitive (non-message) type.\n The path template controls how fields of the request message are mapped to\n the URL path.\n\n Example:\n\n service Messaging {\n rpc GetMessage(GetMessageRequest) returns (Message) {\n option (google.api.http) = {\n get: \"/v1/{name=messages/*}\"\n };\n }\n }\n message GetMessageRequest {\n string name = 1; // Mapped to URL path.\n }\n message Message {\n string text = 1; // The resource content.\n }\n\n This enables an HTTP REST to gRPC mapping as below:\n\n HTTP | gRPC\n -----|-----\n `GET /v1/messages/123456` | `GetMessage(name: \"messages/123456\")`\n\n Any fields in the request message which are not bound by the path template\n automatically become HTTP query parameters if there is no HTTP request body.\n For example:\n\n service Messaging {\n rpc GetMessage(GetMessageRequest) returns (Message) {\n option (google.api.http) = {\n get:\"/v1/messages/{message_id}\"\n };\n }\n }\n message GetMessageRequest {\n message SubMessage {\n string subfield = 1;\n }\n string message_id = 1; // Mapped to URL path.\n int64 revision = 2; // Mapped to URL query parameter `revision`.\n SubMessage sub = 3; // Mapped to URL query parameter `sub.subfield`.\n }\n\n This enables a HTTP JSON to RPC mapping as below:\n\n HTTP | gRPC\n -----|-----\n `GET /v1/messages/123456?revision=2&sub.subfield=foo` |\n `GetMessage(message_id: \"123456\" revision: 2 sub: SubMessage(subfield:\n \"foo\"))`\n\n Note that fields which are mapped to URL query parameters must have a\n primitive type or a repeated primitive type or a non-repeated message type.\n In the case of a repeated type, the parameter can be repeated in the URL\n as `...?param=A¶m=B`. In the case of a message type, each field of the\n message is mapped to a separate parameter, such as\n `...?foo.a=A&foo.b=B&foo.c=C`.\n\n For HTTP methods that allow a request body, the `body` field\n specifies the mapping. Consider a REST update method on the\n message resource collection:\n\n service Messaging {\n rpc UpdateMessage(UpdateMessageRequest) returns (Message) {\n option (google.api.http) = {\n patch: \"/v1/messages/{message_id}\"\n body: \"message\"\n };\n }\n }\n message UpdateMessageRequest {\n string message_id = 1; // mapped to the URL\n Message message = 2; // mapped to the body\n }\n\n The following HTTP JSON to RPC mapping is enabled, where the\n representation of the JSON in the request body is determined by\n protos JSON encoding:\n\n HTTP | gRPC\n -----|-----\n `PATCH /v1/messages/123456 { \"text\": \"Hi!\" }` | `UpdateMessage(message_id:\n \"123456\" message { text: \"Hi!\" })`\n\n The special name `*` can be used in the body mapping to define that\n every field not bound by the path template should be mapped to the\n request body. This enables the following alternative definition of\n the update method:\n\n service Messaging {\n rpc UpdateMessage(Message) returns (Message) {\n option (google.api.http) = {\n patch: \"/v1/messages/{message_id}\"\n body: \"*\"\n };\n }\n }\n message Message {\n string message_id = 1;\n string text = 2;\n }\n\n\n The following HTTP JSON to RPC mapping is enabled:\n\n HTTP | gRPC\n -----|-----\n `PATCH /v1/messages/123456 { \"text\": \"Hi!\" }` | `UpdateMessage(message_id:\n \"123456\" text: \"Hi!\")`\n\n Note that when using `*` in the body mapping, it is not possible to\n have HTTP parameters, as all fields not bound by the path end in\n the body. This makes this option more rarely used in practice when\n defining REST APIs. The common usage of `*` is in custom methods\n which don't use the URL at all for transferring data.\n\n It is possible to define multiple HTTP methods for one RPC by using\n the `additional_bindings` option. Example:\n\n service Messaging {\n rpc GetMessage(GetMessageRequest) returns (Message) {\n option (google.api.http) = {\n get: \"/v1/messages/{message_id}\"\n additional_bindings {\n get: \"/v1/users/{user_id}/messages/{message_id}\"\n }\n };\n }\n }\n message GetMessageRequest {\n string message_id = 1;\n string user_id = 2;\n }\n\n This enables the following two alternative HTTP JSON to RPC mappings:\n\n HTTP | gRPC\n -----|-----\n `GET /v1/messages/123456` | `GetMessage(message_id: \"123456\")`\n `GET /v1/users/me/messages/123456` | `GetMessage(user_id: \"me\" message_id:\n \"123456\")`\n\n ## Rules for HTTP mapping\n\n 1. Leaf request fields (recursive expansion nested messages in the request\n message) are classified into three categories:\n - Fields referred by the path template. They are passed via the URL path.\n - Fields referred by the [HttpRule.body][google.api.HttpRule.body]. They\n are passed via the HTTP\n request body.\n - All other fields are passed via the URL query parameters, and the\n parameter name is the field path in the request message. A repeated\n field can be represented as multiple query parameters under the same\n name.\n 2. If [HttpRule.body][google.api.HttpRule.body] is \"*\", there is no URL\n query parameter, all fields\n are passed via URL path and HTTP request body.\n 3. If [HttpRule.body][google.api.HttpRule.body] is omitted, there is no HTTP\n request body, all\n fields are passed via URL path and URL query parameters.\n\n ### Path template syntax\n\n Template = \"/\" Segments [ Verb ] ;\n Segments = Segment { \"/\" Segment } ;\n Segment = \"*\" | \"**\" | LITERAL | Variable ;\n Variable = \"{\" FieldPath [ \"=\" Segments ] \"}\" ;\n FieldPath = IDENT { \".\" IDENT } ;\n Verb = \":\" LITERAL ;\n\n The syntax `*` matches a single URL path segment. The syntax `**` matches\n zero or more URL path segments, which must be the last part of the URL path\n except the `Verb`.\n\n The syntax `Variable` matches part of the URL path as specified by its\n template. A variable template must not contain other variables. If a variable\n matches a single path segment, its template may be omitted, e.g. `{var}`\n is equivalent to `{var=*}`.\n\n The syntax `LITERAL` matches literal text in the URL path. If the `LITERAL`\n contains any reserved character, such characters should be percent-encoded\n before the matching.\n\n If a variable contains exactly one path segment, such as `\"{var}\"` or\n `\"{var=*}\"`, when such a variable is expanded into a URL path on the client\n side, all characters except `[-_.~0-9a-zA-Z]` are percent-encoded. The\n server side does the reverse decoding. Such variables show up in the\n [Discovery\n Document](https://developers.google.com/discovery/v1/reference/apis) as\n `{var}`.\n\n If a variable contains multiple path segments, such as `\"{var=foo/*}\"`\n or `\"{var=**}\"`, when such a variable is expanded into a URL path on the\n client side, all characters except `[-_.~/0-9a-zA-Z]` are percent-encoded.\n The server side does the reverse decoding, except \"%2F\" and \"%2f\" are left\n unchanged. Such variables show up in the\n [Discovery\n Document](https://developers.google.com/discovery/v1/reference/apis) as\n `{+var}`.\n\n ## Using gRPC API Service Configuration\n\n gRPC API Service Configuration (service config) is a configuration language\n for configuring a gRPC service to become a user-facing product. The\n service config is simply the YAML representation of the `google.api.Service`\n proto message.\n\n As an alternative to annotating your proto file, you can configure gRPC\n transcoding in your service config YAML files. You do this by specifying a\n `HttpRule` that maps the gRPC method to a REST endpoint, achieving the same\n effect as the proto annotation. This can be particularly useful if you\n have a proto that is reused in multiple services. Note that any transcoding\n specified in the service config will override any matching transcoding\n configuration in the proto.\n\n Example:\n\n http:\n rules:\n # Selects a gRPC method and applies HttpRule to it.\n - selector: example.v1.Messaging.GetMessage\n get: /v1/messages/{message_id}/{sub.subfield}\n\n ## Special notes\n\n When gRPC Transcoding is used to map a gRPC to JSON REST endpoints, the\n proto to JSON conversion must follow the [proto3\n specification](https://developers.google.com/protocol-buffers/docs/proto3#json).\n\n While the single segment variable follows the semantics of\n [RFC 6570](https://tools.ietf.org/html/rfc6570) Section 3.2.2 Simple String\n Expansion, the multi segment variable **does not** follow RFC 6570 Section\n 3.2.3 Reserved Expansion. The reason is that the Reserved Expansion\n does not expand special characters like `?` and `#`, which would lead\n to invalid URLs. As the result, gRPC Transcoding uses a custom encoding\n for multi segment variables.\n\n The path variables **must not** refer to any repeated or mapped field,\n because client libraries are not capable of handling such variable expansion.\n\n The path variables **must not** capture the leading \"/\" character. The reason\n is that the most common use case \"{var}\" does not capture the leading \"/\"\n character. For consistency, all path variables must share the same behavior.\n\n Repeated message fields must not be mapped to URL query parameters, because\n no client library can support such complicated mapping.\n\n If an API needs to use a JSON array for request or response body, it can map\n the request or response body to a repeated field. However, some gRPC\n Transcoding implementations may not support this feature.",
|
|
87199
|
+
"name": "HttpRule",
|
|
86912
87200
|
"members": [
|
|
86913
87201
|
{
|
|
86914
87202
|
"kind": "field",
|
|
86915
|
-
"name": "
|
|
87203
|
+
"name": "selector"
|
|
86916
87204
|
},
|
|
86917
87205
|
{
|
|
86918
87206
|
"kind": "field",
|
|
86919
|
-
"name": "
|
|
86920
|
-
"type": {
|
|
86921
|
-
"text": "string"
|
|
86922
|
-
},
|
|
86923
|
-
"default": "'CubeEntity CubeEntity'"
|
|
87207
|
+
"name": "get"
|
|
86924
87208
|
},
|
|
86925
87209
|
{
|
|
86926
87210
|
"kind": "field",
|
|
86927
|
-
"name": "
|
|
87211
|
+
"name": "put"
|
|
87212
|
+
},
|
|
87213
|
+
{
|
|
87214
|
+
"kind": "field",
|
|
87215
|
+
"name": "post"
|
|
87216
|
+
},
|
|
87217
|
+
{
|
|
87218
|
+
"kind": "field",
|
|
87219
|
+
"name": "delete"
|
|
87220
|
+
},
|
|
87221
|
+
{
|
|
87222
|
+
"kind": "field",
|
|
87223
|
+
"name": "patch"
|
|
87224
|
+
},
|
|
87225
|
+
{
|
|
87226
|
+
"kind": "field",
|
|
87227
|
+
"name": "custom"
|
|
87228
|
+
},
|
|
87229
|
+
{
|
|
87230
|
+
"kind": "field",
|
|
87231
|
+
"name": "body"
|
|
87232
|
+
},
|
|
87233
|
+
{
|
|
87234
|
+
"kind": "field",
|
|
87235
|
+
"name": "responseBody"
|
|
87236
|
+
},
|
|
87237
|
+
{
|
|
87238
|
+
"kind": "field",
|
|
87239
|
+
"name": "additionalBindings"
|
|
86928
87240
|
},
|
|
86929
87241
|
{
|
|
86930
87242
|
"kind": "method",
|
|
@@ -86945,7 +87257,15 @@
|
|
|
86945
87257
|
"type": {
|
|
86946
87258
|
"text": "string"
|
|
86947
87259
|
},
|
|
86948
|
-
"default": "'
|
|
87260
|
+
"default": "'google.api.HttpRule'"
|
|
87261
|
+
},
|
|
87262
|
+
{
|
|
87263
|
+
"kind": "field",
|
|
87264
|
+
"name": "description",
|
|
87265
|
+
"type": {
|
|
87266
|
+
"text": "string"
|
|
87267
|
+
},
|
|
87268
|
+
"default": "'HttpRule # gRPC Transcoding\\n\\n gRPC Transcoding is a feature for mapping between a gRPC method and one or\\n more HTTP REST endpoints. It allows developers to build a single API service\\n that supports both gRPC APIs and REST APIs. Many systems, including [Google\\n APIs](https://github.com/googleapis/googleapis),\\n [Cloud Endpoints](https://cloud.google.com/endpoints), [gRPC\\n Gateway](https://github.com/grpc-ecosystem/grpc-gateway),\\n and [Envoy](https://github.com/envoyproxy/envoy) proxy support this feature\\n and use it for large scale production services.\\n\\n `HttpRule` defines the schema of the gRPC/REST mapping. The mapping specifies\\n how different portions of the gRPC request message are mapped to the URL\\n path, URL query parameters, and HTTP request body. It also controls how the\\n gRPC response message is mapped to the HTTP response body. `HttpRule` is\\n typically specified as an `google.api.http` annotation on the gRPC method.\\n\\n Each mapping specifies a URL path template and an HTTP method. The path\\n template may refer to one or more fields in the gRPC request message, as long\\n as each field is a non-repeated field with a primitive (non-message) type.\\n The path template controls how fields of the request message are mapped to\\n the URL path.\\n\\n Example:\\n\\n service Messaging {\\n rpc GetMessage(GetMessageRequest) returns (Message) {\\n option (google.api.http) = {\\n get: \"/v1/{name=messages/*}\"\\n };\\n }\\n }\\n message GetMessageRequest {\\n string name = 1; // Mapped to URL path.\\n }\\n message Message {\\n string text = 1; // The resource content.\\n }\\n\\n This enables an HTTP REST to gRPC mapping as below:\\n\\n HTTP | gRPC\\n -----|-----\\n `GET /v1/messages/123456` | `GetMessage(name: \"messages/123456\")`\\n\\n Any fields in the request message which are not bound by the path template\\n automatically become HTTP query parameters if there is no HTTP request body.\\n For example:\\n\\n service Messaging {\\n rpc GetMessage(GetMessageRequest) returns (Message) {\\n option (google.api.http) = {\\n get:\"/v1/messages/{message_id}\"\\n };\\n }\\n }\\n message GetMessageRequest {\\n message SubMessage {\\n string subfield = 1;\\n }\\n string message_id = 1; // Mapped to URL path.\\n int64 revision = 2; // Mapped to URL query parameter `revision`.\\n SubMessage sub = 3; // Mapped to URL query parameter `sub.subfield`.\\n }\\n\\n This enables a HTTP JSON to RPC mapping as below:\\n\\n HTTP | gRPC\\n -----|-----\\n `GET /v1/messages/123456?revision=2&sub.subfield=foo` |\\n `GetMessage(message_id: \"123456\" revision: 2 sub: SubMessage(subfield:\\n \"foo\"))`\\n\\n Note that fields which are mapped to URL query parameters must have a\\n primitive type or a repeated primitive type or a non-repeated message type.\\n In the case of a repeated type, the parameter can be repeated in the URL\\n as `...?param=A¶m=B`. In the case of a message type, each field of the\\n message is mapped to a separate parameter, such as\\n `...?foo.a=A&foo.b=B&foo.c=C`.\\n\\n For HTTP methods that allow a request body, the `body` field\\n specifies the mapping. Consider a REST update method on the\\n message resource collection:\\n\\n service Messaging {\\n rpc UpdateMessage(UpdateMessageRequest) returns (Message) {\\n option (google.api.http) = {\\n patch: \"/v1/messages/{message_id}\"\\n body: \"message\"\\n };\\n }\\n }\\n message UpdateMessageRequest {\\n string message_id = 1; // mapped to the URL\\n Message message = 2; // mapped to the body\\n }\\n\\n The following HTTP JSON to RPC mapping is enabled, where the\\n representation of the JSON in the request body is determined by\\n protos JSON encoding:\\n\\n HTTP | gRPC\\n -----|-----\\n `PATCH /v1/messages/123456 { \"text\": \"Hi!\" }` | `UpdateMessage(message_id:\\n \"123456\" message { text: \"Hi!\" })`\\n\\n The special name `*` can be used in the body mapping to define that\\n every field not bound by the path template should be mapped to the\\n request body. This enables the following alternative definition of\\n the update method:\\n\\n service Messaging {\\n rpc UpdateMessage(Message) returns (Message) {\\n option (google.api.http) = {\\n patch: \"/v1/messages/{message_id}\"\\n body: \"*\"\\n };\\n }\\n }\\n message Message {\\n string message_id = 1;\\n string text = 2;\\n }\\n\\n\\n The following HTTP JSON to RPC mapping is enabled:\\n\\n HTTP | gRPC\\n -----|-----\\n `PATCH /v1/messages/123456 { \"text\": \"Hi!\" }` | `UpdateMessage(message_id:\\n \"123456\" text: \"Hi!\")`\\n\\n Note that when using `*` in the body mapping, it is not possible to\\n have HTTP parameters, as all fields not bound by the path end in\\n the body. This makes this option more rarely used in practice when\\n defining REST APIs. The common usage of `*` is in custom methods\\n which don\\'t use the URL at all for transferring data.\\n\\n It is possible to define multiple HTTP methods for one RPC by using\\n the `additional_bindings` option. Example:\\n\\n service Messaging {\\n rpc GetMessage(GetMessageRequest) returns (Message) {\\n option (google.api.http) = {\\n get: \"/v1/messages/{message_id}\"\\n additional_bindings {\\n get: \"/v1/users/{user_id}/messages/{message_id}\"\\n }\\n };\\n }\\n }\\n message GetMessageRequest {\\n string message_id = 1;\\n string user_id = 2;\\n }\\n\\n This enables the following two alternative HTTP JSON to RPC mappings:\\n\\n HTTP | gRPC\\n -----|-----\\n `GET /v1/messages/123456` | `GetMessage(message_id: \"123456\")`\\n `GET /v1/users/me/messages/123456` | `GetMessage(user_id: \"me\" message_id:\\n \"123456\")`\\n\\n ## Rules for HTTP mapping\\n\\n 1. Leaf request fields (recursive expansion nested messages in the request\\n message) are classified into three categories:\\n - Fields referred by the path template. They are passed via the URL path.\\n - Fields referred by the [HttpRule.body][google.api.HttpRule.body]. They\\n are passed via the HTTP\\n request body.\\n - All other fields are passed via the URL query parameters, and the\\n parameter name is the field path in the request message. A repeated\\n field can be represented as multiple query parameters under the same\\n name.\\n 2. If [HttpRule.body][google.api.HttpRule.body] is \"*\", there is no URL\\n query parameter, all fields\\n are passed via URL path and HTTP request body.\\n 3. If [HttpRule.body][google.api.HttpRule.body] is omitted, there is no HTTP\\n request body, all\\n fields are passed via URL path and URL query parameters.\\n\\n ### Path template syntax\\n\\n Template = \"/\" Segments [ Verb ] ;\\n Segments = Segment { \"/\" Segment } ;\\n Segment = \"*\" | \"**\" | LITERAL | Variable ;\\n Variable = \"{\" FieldPath [ \"=\" Segments ] \"}\" ;\\n FieldPath = IDENT { \".\" IDENT } ;\\n Verb = \":\" LITERAL ;\\n\\n The syntax `*` matches a single URL path segment. The syntax `**` matches\\n zero or more URL path segments, which must be the last part of the URL path\\n except the `Verb`.\\n\\n The syntax `Variable` matches part of the URL path as specified by its\\n template. A variable template must not contain other variables. If a variable\\n matches a single path segment, its template may be omitted, e.g. `{var}`\\n is equivalent to `{var=*}`.\\n\\n The syntax `LITERAL` matches literal text in the URL path. If the `LITERAL`\\n contains any reserved character, such characters should be percent-encoded\\n before the matching.\\n\\n If a variable contains exactly one path segment, such as `\"{var}\"` or\\n `\"{var=*}\"`, when such a variable is expanded into a URL path on the client\\n side, all characters except `[-_.~0-9a-zA-Z]` are percent-encoded. The\\n server side does the reverse decoding. Such variables show up in the\\n [Discovery\\n Document](https://developers.google.com/discovery/v1/reference/apis) as\\n `{var}`.\\n\\n If a variable contains multiple path segments, such as `\"{var=foo/*}\"`\\n or `\"{var=**}\"`, when such a variable is expanded into a URL path on the\\n client side, all characters except `[-_.~/0-9a-zA-Z]` are percent-encoded.\\n The server side does the reverse decoding, except \"%2F\" and \"%2f\" are left\\n unchanged. Such variables show up in the\\n [Discovery\\n Document](https://developers.google.com/discovery/v1/reference/apis) as\\n `{+var}`.\\n\\n ## Using gRPC API Service Configuration\\n\\n gRPC API Service Configuration (service config) is a configuration language\\n for configuring a gRPC service to become a user-facing product. The\\n service config is simply the YAML representation of the `google.api.Service`\\n proto message.\\n\\n As an alternative to annotating your proto file, you can configure gRPC\\n transcoding in your service config YAML files. You do this by specifying a\\n `HttpRule` that maps the gRPC method to a REST endpoint, achieving the same\\n effect as the proto annotation. This can be particularly useful if you\\n have a proto that is reused in multiple services. Note that any transcoding\\n specified in the service config will override any matching transcoding\\n configuration in the proto.\\n\\n Example:\\n\\n http:\\n rules:\\n # Selects a gRPC method and applies HttpRule to it.\\n - selector: example.v1.Messaging.GetMessage\\n get: /v1/messages/{message_id}/{sub.subfield}\\n\\n ## Special notes\\n\\n When gRPC Transcoding is used to map a gRPC to JSON REST endpoints, the\\n proto to JSON conversion must follow the [proto3\\n specification](https://developers.google.com/protocol-buffers/docs/proto3#json).\\n\\n While the single segment variable follows the semantics of\\n [RFC 6570](https://tools.ietf.org/html/rfc6570) Section 3.2.2 Simple String\\n Expansion, the multi segment variable **does not** follow RFC 6570 Section\\n 3.2.3 Reserved Expansion. The reason is that the Reserved Expansion\\n does not expand special characters like `?` and `#`, which would lead\\n to invalid URLs. As the result, gRPC Transcoding uses a custom encoding\\n for multi segment variables.\\n\\n The path variables **must not** refer to any repeated or mapped field,\\n because client libraries are not capable of handling such variable expansion.\\n\\n The path variables **must not** capture the leading \"/\" character. The reason\\n is that the most common use case \"{var}\" does not capture the leading \"/\"\\n character. For consistency, all path variables must share the same behavior.\\n\\n Repeated message fields must not be mapped to URL query parameters, because\\n no client library can support such complicated mapping.\\n\\n If an API needs to use a JSON array for request or response body, it can map\\n the request or response body to a repeated field. However, some gRPC\\n Transcoding implementations may not support this feature.'"
|
|
86949
87269
|
},
|
|
86950
87270
|
{
|
|
86951
87271
|
"kind": "field",
|
|
@@ -86953,22 +87273,57 @@
|
|
|
86953
87273
|
"type": {
|
|
86954
87274
|
"text": "array"
|
|
86955
87275
|
},
|
|
86956
|
-
"default": "[ { fieldName: '
|
|
87276
|
+
"default": "[ { fieldName: 'selector', protoName: 'selector', FieldConstructor: STRING, constraints: {}, description: 'Selects a method to which this rule applies.\\n\\n Refer to [selector][google.api.DocumentationRule.selector] for syntax\\n details.', }, { fieldName: 'get', protoName: 'get', FieldConstructor: STRING, constraints: {}, description: 'Maps to HTTP GET. Used for listing and getting information about\\n resources.', }, { fieldName: 'put', protoName: 'put', FieldConstructor: STRING, constraints: {}, description: 'Maps to HTTP PUT. Used for replacing a resource.', }, { fieldName: 'post', protoName: 'post', FieldConstructor: STRING, constraints: {}, description: 'Maps to HTTP POST. Used for creating a resource or performing an action.', }, { fieldName: 'delete', protoName: 'delete', FieldConstructor: STRING, constraints: {}, description: 'Maps to HTTP DELETE. Used for deleting a resource.', }, { fieldName: 'patch', protoName: 'patch', FieldConstructor: STRING, constraints: {}, description: 'Maps to HTTP PATCH. Used for updating a resource.', }, { fieldName: 'custom', protoName: 'custom', FieldConstructor: GoogleApiCustomHttpPattern, constraints: {}, description: 'The custom pattern is used for specifying an HTTP method that is not\\n included in the `pattern` field, such as HEAD, or \"*\" to leave the\\n HTTP method unspecified for this rule. The wild-card rule is useful\\n for services that provide content to Web (HTML) clients.', }, { fieldName: 'body', protoName: 'body', FieldConstructor: STRING, constraints: {}, description: 'The name of the request field whose value is mapped to the HTTP request\\n body, or `*` for mapping all request fields not captured by the path\\n pattern to the HTTP body, or omitted for not having any HTTP request body.\\n\\n NOTE: the referred field must be present at the top-level of the request\\n message type.', }, { fieldName: 'responseBody', protoName: 'response_body', FieldConstructor: STRING, constraints: {}, description: 'Optional. The name of the response field whose value is mapped to the HTTP\\n response body. When omitted, the entire response message will be used\\n as the HTTP response body.\\n\\n NOTE: The referred field must be present at the top-level of the response\\n message type.', }, { fieldName: 'additionalBindings', protoName: 'additional_bindings', FieldConstructor: HttpRule, constraints: {}, description: 'Additional HTTP bindings for the selector. Nested bindings must\\n not contain an `additional_bindings` field themselves (that is,\\n the nesting may only be one level deep).', }, ]"
|
|
86957
87277
|
},
|
|
86958
87278
|
{
|
|
86959
87279
|
"kind": "field",
|
|
86960
|
-
"name": "
|
|
86961
|
-
"default": "new STRING(undefined, this, '
|
|
87280
|
+
"name": "_selector",
|
|
87281
|
+
"default": "new STRING(undefined, this, 'selector')"
|
|
86962
87282
|
},
|
|
86963
87283
|
{
|
|
86964
87284
|
"kind": "field",
|
|
86965
|
-
"name": "
|
|
86966
|
-
"default": "new STRING(undefined, this, '
|
|
87285
|
+
"name": "_get",
|
|
87286
|
+
"default": "new STRING(undefined, this, 'get')"
|
|
86967
87287
|
},
|
|
86968
87288
|
{
|
|
86969
87289
|
"kind": "field",
|
|
86970
|
-
"name": "
|
|
86971
|
-
"default": "new
|
|
87290
|
+
"name": "_put",
|
|
87291
|
+
"default": "new STRING(undefined, this, 'put')"
|
|
87292
|
+
},
|
|
87293
|
+
{
|
|
87294
|
+
"kind": "field",
|
|
87295
|
+
"name": "_post",
|
|
87296
|
+
"default": "new STRING(undefined, this, 'post')"
|
|
87297
|
+
},
|
|
87298
|
+
{
|
|
87299
|
+
"kind": "field",
|
|
87300
|
+
"name": "_delete",
|
|
87301
|
+
"default": "new STRING(undefined, this, 'delete')"
|
|
87302
|
+
},
|
|
87303
|
+
{
|
|
87304
|
+
"kind": "field",
|
|
87305
|
+
"name": "_patch",
|
|
87306
|
+
"default": "new STRING(undefined, this, 'patch')"
|
|
87307
|
+
},
|
|
87308
|
+
{
|
|
87309
|
+
"kind": "field",
|
|
87310
|
+
"name": "_custom",
|
|
87311
|
+
"default": "new GoogleApiCustomHttpPattern(undefined, this, 'custom')"
|
|
87312
|
+
},
|
|
87313
|
+
{
|
|
87314
|
+
"kind": "field",
|
|
87315
|
+
"name": "_body",
|
|
87316
|
+
"default": "new STRING(undefined, this, 'body')"
|
|
87317
|
+
},
|
|
87318
|
+
{
|
|
87319
|
+
"kind": "field",
|
|
87320
|
+
"name": "_responseBody",
|
|
87321
|
+
"default": "new STRING(undefined, this, 'responseBody')"
|
|
87322
|
+
},
|
|
87323
|
+
{
|
|
87324
|
+
"kind": "field",
|
|
87325
|
+
"name": "_additionalBindings",
|
|
87326
|
+
"default": "new ARRAY(undefined, this, 'additionalBindings')"
|
|
86972
87327
|
},
|
|
86973
87328
|
{
|
|
86974
87329
|
"kind": "field",
|
|
@@ -86976,7 +87331,7 @@
|
|
|
86976
87331
|
"type": {
|
|
86977
87332
|
"text": "object"
|
|
86978
87333
|
},
|
|
86979
|
-
"default": "{
|
|
87334
|
+
"default": "{}"
|
|
86980
87335
|
},
|
|
86981
87336
|
{
|
|
86982
87337
|
"kind": "field",
|
|
@@ -87814,76 +88169,44 @@
|
|
|
87814
88169
|
"exports": [
|
|
87815
88170
|
{
|
|
87816
88171
|
"kind": "js",
|
|
87817
|
-
"name": "
|
|
88172
|
+
"name": "HttpRule",
|
|
87818
88173
|
"declaration": {
|
|
87819
|
-
"name": "
|
|
87820
|
-
"module": "dist/protoc-gen-open-models/
|
|
88174
|
+
"name": "HttpRule",
|
|
88175
|
+
"module": "dist/protoc-gen-open-models/google/api/HttpRule.js"
|
|
87821
88176
|
}
|
|
87822
88177
|
}
|
|
87823
88178
|
]
|
|
87824
88179
|
},
|
|
87825
88180
|
{
|
|
87826
88181
|
"kind": "javascript-module",
|
|
87827
|
-
"path": "dist/protoc-gen-open-models/
|
|
88182
|
+
"path": "dist/protoc-gen-open-models/google/api/HttpRule.js.map",
|
|
87828
88183
|
"declarations": [],
|
|
87829
88184
|
"exports": []
|
|
87830
88185
|
},
|
|
87831
88186
|
{
|
|
87832
88187
|
"kind": "javascript-module",
|
|
87833
|
-
"path": "dist/protoc-gen-open-models/furo/cube/
|
|
88188
|
+
"path": "dist/protoc-gen-open-models/furo/cube/Colour.js",
|
|
87834
88189
|
"declarations": [
|
|
87835
88190
|
{
|
|
87836
88191
|
"kind": "class",
|
|
87837
|
-
"description": "",
|
|
87838
|
-
"name": "
|
|
88192
|
+
"description": "Colour\n Colour is a rgba color",
|
|
88193
|
+
"name": "Colour",
|
|
87839
88194
|
"members": [
|
|
87840
88195
|
{
|
|
87841
88196
|
"kind": "field",
|
|
87842
|
-
"name": "
|
|
87843
|
-
"default": "new Fetcher(API_OPTIONS, 'GET', '/v1/cubes')"
|
|
88197
|
+
"name": "red"
|
|
87844
88198
|
},
|
|
87845
88199
|
{
|
|
87846
88200
|
"kind": "field",
|
|
87847
|
-
"name": "
|
|
87848
|
-
"default": "new Fetcher(API_OPTIONS, 'GET', '/v1/cubes/{cube_id}')"
|
|
88201
|
+
"name": "green"
|
|
87849
88202
|
},
|
|
87850
88203
|
{
|
|
87851
88204
|
"kind": "field",
|
|
87852
|
-
"name": "
|
|
87853
|
-
|
|
87854
|
-
}
|
|
87855
|
-
]
|
|
87856
|
-
}
|
|
87857
|
-
],
|
|
87858
|
-
"exports": [
|
|
87859
|
-
{
|
|
87860
|
-
"kind": "js",
|
|
87861
|
-
"name": "CubeService",
|
|
87862
|
-
"declaration": {
|
|
87863
|
-
"name": "CubeService",
|
|
87864
|
-
"module": "dist/protoc-gen-open-models/furo/cube/CubeService.js"
|
|
87865
|
-
}
|
|
87866
|
-
}
|
|
87867
|
-
]
|
|
87868
|
-
},
|
|
87869
|
-
{
|
|
87870
|
-
"kind": "javascript-module",
|
|
87871
|
-
"path": "dist/protoc-gen-open-models/furo/cube/CubeService.js.map",
|
|
87872
|
-
"declarations": [],
|
|
87873
|
-
"exports": []
|
|
87874
|
-
},
|
|
87875
|
-
{
|
|
87876
|
-
"kind": "javascript-module",
|
|
87877
|
-
"path": "dist/protoc-gen-open-models/furo/cube/CubeServiceGetListRequest.js",
|
|
87878
|
-
"declarations": [
|
|
87879
|
-
{
|
|
87880
|
-
"kind": "class",
|
|
87881
|
-
"description": "CubeServiceGetListRequest",
|
|
87882
|
-
"name": "CubeServiceGetListRequest",
|
|
87883
|
-
"members": [
|
|
88205
|
+
"name": "blue"
|
|
88206
|
+
},
|
|
87884
88207
|
{
|
|
87885
88208
|
"kind": "field",
|
|
87886
|
-
"name": "
|
|
88209
|
+
"name": "alpha"
|
|
87887
88210
|
},
|
|
87888
88211
|
{
|
|
87889
88212
|
"kind": "method",
|
|
@@ -87904,7 +88227,7 @@
|
|
|
87904
88227
|
"type": {
|
|
87905
88228
|
"text": "string"
|
|
87906
88229
|
},
|
|
87907
|
-
"default": "'furo.cube.
|
|
88230
|
+
"default": "'furo.cube.Colour'"
|
|
87908
88231
|
},
|
|
87909
88232
|
{
|
|
87910
88233
|
"kind": "field",
|
|
@@ -87912,7 +88235,7 @@
|
|
|
87912
88235
|
"type": {
|
|
87913
88236
|
"text": "string"
|
|
87914
88237
|
},
|
|
87915
|
-
"default": "'
|
|
88238
|
+
"default": "'Colour Colour is a rgba color'"
|
|
87916
88239
|
},
|
|
87917
88240
|
{
|
|
87918
88241
|
"kind": "field",
|
|
@@ -87920,12 +88243,27 @@
|
|
|
87920
88243
|
"type": {
|
|
87921
88244
|
"text": "array"
|
|
87922
88245
|
},
|
|
87923
|
-
"default": "[ { fieldName: '
|
|
88246
|
+
"default": "[ { fieldName: 'red', protoName: 'red', FieldConstructor: INT32, constraints: { maximum: 255 }, description: 'the red part of the color', }, { fieldName: 'green', protoName: 'green', FieldConstructor: INT32, constraints: { maximum: 255 }, description: 'the green part of the color', }, { fieldName: 'blue', protoName: 'blue', FieldConstructor: INT32, constraints: { maximum: 255 }, description: 'the blue part of the color', }, { fieldName: 'alpha', protoName: 'alpha', FieldConstructor: FLOAT, constraints: { maximum: 1 }, description: '', }, ]"
|
|
87924
88247
|
},
|
|
87925
88248
|
{
|
|
87926
88249
|
"kind": "field",
|
|
87927
|
-
"name": "
|
|
87928
|
-
"default": "new
|
|
88250
|
+
"name": "_red",
|
|
88251
|
+
"default": "new INT32(undefined, this, 'red')"
|
|
88252
|
+
},
|
|
88253
|
+
{
|
|
88254
|
+
"kind": "field",
|
|
88255
|
+
"name": "_green",
|
|
88256
|
+
"default": "new INT32(undefined, this, 'green')"
|
|
88257
|
+
},
|
|
88258
|
+
{
|
|
88259
|
+
"kind": "field",
|
|
88260
|
+
"name": "_blue",
|
|
88261
|
+
"default": "new INT32(undefined, this, 'blue')"
|
|
88262
|
+
},
|
|
88263
|
+
{
|
|
88264
|
+
"kind": "field",
|
|
88265
|
+
"name": "_alpha",
|
|
88266
|
+
"default": "new FLOAT(undefined, this, 'alpha')"
|
|
87929
88267
|
},
|
|
87930
88268
|
{
|
|
87931
88269
|
"kind": "field",
|
|
@@ -87933,7 +88271,7 @@
|
|
|
87933
88271
|
"type": {
|
|
87934
88272
|
"text": "object"
|
|
87935
88273
|
},
|
|
87936
|
-
"default": "{}"
|
|
88274
|
+
"default": "{ alpha: 1.0, blue: 88.0, green: 34.0, red: 22.0, }"
|
|
87937
88275
|
},
|
|
87938
88276
|
{
|
|
87939
88277
|
"kind": "field",
|
|
@@ -88771,32 +89109,48 @@
|
|
|
88771
89109
|
"exports": [
|
|
88772
89110
|
{
|
|
88773
89111
|
"kind": "js",
|
|
88774
|
-
"name": "
|
|
89112
|
+
"name": "Colour",
|
|
88775
89113
|
"declaration": {
|
|
88776
|
-
"name": "
|
|
88777
|
-
"module": "dist/protoc-gen-open-models/furo/cube/
|
|
89114
|
+
"name": "Colour",
|
|
89115
|
+
"module": "dist/protoc-gen-open-models/furo/cube/Colour.js"
|
|
88778
89116
|
}
|
|
88779
89117
|
}
|
|
88780
89118
|
]
|
|
88781
89119
|
},
|
|
88782
89120
|
{
|
|
88783
89121
|
"kind": "javascript-module",
|
|
88784
|
-
"path": "dist/protoc-gen-open-models/furo/cube/
|
|
89122
|
+
"path": "dist/protoc-gen-open-models/furo/cube/Colour.js.map",
|
|
88785
89123
|
"declarations": [],
|
|
88786
89124
|
"exports": []
|
|
88787
89125
|
},
|
|
88788
89126
|
{
|
|
88789
89127
|
"kind": "javascript-module",
|
|
88790
|
-
"path": "dist/protoc-gen-open-models/furo/cube/
|
|
89128
|
+
"path": "dist/protoc-gen-open-models/furo/cube/CubeDefinition.js",
|
|
88791
89129
|
"declarations": [
|
|
88792
89130
|
{
|
|
88793
89131
|
"kind": "class",
|
|
88794
|
-
"description": "
|
|
88795
|
-
"name": "
|
|
89132
|
+
"description": "CubeDefinition\n CubeDefinition is a definition of a cube.",
|
|
89133
|
+
"name": "CubeDefinition",
|
|
88796
89134
|
"members": [
|
|
88797
89135
|
{
|
|
88798
89136
|
"kind": "field",
|
|
88799
|
-
"name": "
|
|
89137
|
+
"name": "length"
|
|
89138
|
+
},
|
|
89139
|
+
{
|
|
89140
|
+
"kind": "field",
|
|
89141
|
+
"name": "breadth"
|
|
89142
|
+
},
|
|
89143
|
+
{
|
|
89144
|
+
"kind": "field",
|
|
89145
|
+
"name": "height"
|
|
89146
|
+
},
|
|
89147
|
+
{
|
|
89148
|
+
"kind": "field",
|
|
89149
|
+
"name": "colour"
|
|
89150
|
+
},
|
|
89151
|
+
{
|
|
89152
|
+
"kind": "field",
|
|
89153
|
+
"name": "material"
|
|
88800
89154
|
},
|
|
88801
89155
|
{
|
|
88802
89156
|
"kind": "method",
|
|
@@ -88817,7 +89171,7 @@
|
|
|
88817
89171
|
"type": {
|
|
88818
89172
|
"text": "string"
|
|
88819
89173
|
},
|
|
88820
|
-
"default": "'furo.cube.
|
|
89174
|
+
"default": "'furo.cube.CubeDefinition'"
|
|
88821
89175
|
},
|
|
88822
89176
|
{
|
|
88823
89177
|
"kind": "field",
|
|
@@ -88825,7 +89179,7 @@
|
|
|
88825
89179
|
"type": {
|
|
88826
89180
|
"text": "string"
|
|
88827
89181
|
},
|
|
88828
|
-
"default": "'
|
|
89182
|
+
"default": "'CubeDefinition CubeDefinition is a definition of a cube.'"
|
|
88829
89183
|
},
|
|
88830
89184
|
{
|
|
88831
89185
|
"kind": "field",
|
|
@@ -88833,12 +89187,32 @@
|
|
|
88833
89187
|
"type": {
|
|
88834
89188
|
"text": "array"
|
|
88835
89189
|
},
|
|
88836
|
-
"default": "[ { fieldName: '
|
|
89190
|
+
"default": "[ { fieldName: 'length', protoName: 'length', FieldConstructor: DOUBLE, constraints: { maximum: 1000, minimum: 100, required: true }, description: 'the length of the cube in cm', }, { fieldName: 'breadth', protoName: 'breadth', FieldConstructor: DOUBLE, constraints: { maximum: 1000, minimum: 100, required: true }, description: 'the breadth / width of the cube in cm', }, { fieldName: 'height', protoName: 'height', FieldConstructor: DOUBLE, constraints: { maximum: 1000, minimum: 100, required: true }, description: 'the height of the cube in cm', }, { fieldName: 'colour', protoName: 'colour', FieldConstructor: FuroCubeColour, constraints: {}, description: 'the color of the cube', }, { fieldName: 'material', protoName: 'material', FieldConstructor: (ENUM), constraints: {}, description: 'The material the cube is made of', }, ]"
|
|
88837
89191
|
},
|
|
88838
89192
|
{
|
|
88839
89193
|
"kind": "field",
|
|
88840
|
-
"name": "
|
|
88841
|
-
"default": "new
|
|
89194
|
+
"name": "_length",
|
|
89195
|
+
"default": "new DOUBLE(undefined, this, 'length')"
|
|
89196
|
+
},
|
|
89197
|
+
{
|
|
89198
|
+
"kind": "field",
|
|
89199
|
+
"name": "_breadth",
|
|
89200
|
+
"default": "new DOUBLE(undefined, this, 'breadth')"
|
|
89201
|
+
},
|
|
89202
|
+
{
|
|
89203
|
+
"kind": "field",
|
|
89204
|
+
"name": "_height",
|
|
89205
|
+
"default": "new DOUBLE(undefined, this, 'height')"
|
|
89206
|
+
},
|
|
89207
|
+
{
|
|
89208
|
+
"kind": "field",
|
|
89209
|
+
"name": "_colour",
|
|
89210
|
+
"default": "new FuroCubeColour(undefined, this, 'colour')"
|
|
89211
|
+
},
|
|
89212
|
+
{
|
|
89213
|
+
"kind": "field",
|
|
89214
|
+
"name": "_material",
|
|
89215
|
+
"default": "new ENUM(undefined, FuroCubeMaterials, FuroCubeMaterials.MATERIALS_UNSPECIFIED, this, 'material')"
|
|
88842
89216
|
},
|
|
88843
89217
|
{
|
|
88844
89218
|
"kind": "field",
|
|
@@ -88846,7 +89220,7 @@
|
|
|
88846
89220
|
"type": {
|
|
88847
89221
|
"text": "object"
|
|
88848
89222
|
},
|
|
88849
|
-
"default": "{}"
|
|
89223
|
+
"default": "{ breadth: 100.0, height: 100.0, length: 100.0, }"
|
|
88850
89224
|
},
|
|
88851
89225
|
{
|
|
88852
89226
|
"kind": "field",
|
|
@@ -89684,36 +90058,44 @@
|
|
|
89684
90058
|
"exports": [
|
|
89685
90059
|
{
|
|
89686
90060
|
"kind": "js",
|
|
89687
|
-
"name": "
|
|
90061
|
+
"name": "CubeDefinition",
|
|
89688
90062
|
"declaration": {
|
|
89689
|
-
"name": "
|
|
89690
|
-
"module": "dist/protoc-gen-open-models/furo/cube/
|
|
90063
|
+
"name": "CubeDefinition",
|
|
90064
|
+
"module": "dist/protoc-gen-open-models/furo/cube/CubeDefinition.js"
|
|
89691
90065
|
}
|
|
89692
90066
|
}
|
|
89693
90067
|
]
|
|
89694
90068
|
},
|
|
89695
90069
|
{
|
|
89696
90070
|
"kind": "javascript-module",
|
|
89697
|
-
"path": "dist/protoc-gen-open-models/furo/cube/
|
|
90071
|
+
"path": "dist/protoc-gen-open-models/furo/cube/CubeDefinition.js.map",
|
|
89698
90072
|
"declarations": [],
|
|
89699
90073
|
"exports": []
|
|
89700
90074
|
},
|
|
89701
90075
|
{
|
|
89702
90076
|
"kind": "javascript-module",
|
|
89703
|
-
"path": "dist/protoc-gen-open-models/furo/cube/
|
|
90077
|
+
"path": "dist/protoc-gen-open-models/furo/cube/CubeEntity.js",
|
|
89704
90078
|
"declarations": [
|
|
89705
90079
|
{
|
|
89706
90080
|
"kind": "class",
|
|
89707
|
-
"description": "
|
|
89708
|
-
"name": "
|
|
90081
|
+
"description": "CubeEntity\n CubeEntity",
|
|
90082
|
+
"name": "CubeEntity",
|
|
89709
90083
|
"members": [
|
|
89710
90084
|
{
|
|
89711
90085
|
"kind": "field",
|
|
89712
|
-
"name": "
|
|
90086
|
+
"name": "displayName"
|
|
89713
90087
|
},
|
|
89714
90088
|
{
|
|
89715
90089
|
"kind": "field",
|
|
89716
|
-
"name": "
|
|
90090
|
+
"name": "description",
|
|
90091
|
+
"type": {
|
|
90092
|
+
"text": "string"
|
|
90093
|
+
},
|
|
90094
|
+
"default": "'CubeEntity CubeEntity'"
|
|
90095
|
+
},
|
|
90096
|
+
{
|
|
90097
|
+
"kind": "field",
|
|
90098
|
+
"name": "cube"
|
|
89717
90099
|
},
|
|
89718
90100
|
{
|
|
89719
90101
|
"kind": "method",
|
|
@@ -89734,33 +90116,30 @@
|
|
|
89734
90116
|
"type": {
|
|
89735
90117
|
"text": "string"
|
|
89736
90118
|
},
|
|
89737
|
-
"default": "'furo.cube.
|
|
90119
|
+
"default": "'furo.cube.CubeEntity'"
|
|
89738
90120
|
},
|
|
89739
90121
|
{
|
|
89740
90122
|
"kind": "field",
|
|
89741
|
-
"name": "
|
|
90123
|
+
"name": "nodeFields",
|
|
89742
90124
|
"type": {
|
|
89743
|
-
"text": "
|
|
90125
|
+
"text": "array"
|
|
89744
90126
|
},
|
|
89745
|
-
"default": "'
|
|
90127
|
+
"default": "[ { fieldName: 'displayName', protoName: 'display_name', FieldConstructor: STRING, constraints: { read_only: true }, description: 'human-readable name for the cube entity', }, { fieldName: 'description', protoName: 'description', FieldConstructor: STRING, constraints: {}, description: 'short and nice description of the cube', }, { fieldName: 'cube', protoName: 'cube', FieldConstructor: FuroCubeCubeDefinition, constraints: {}, description: 'Definition of the cube', }, ]"
|
|
89746
90128
|
},
|
|
89747
90129
|
{
|
|
89748
90130
|
"kind": "field",
|
|
89749
|
-
"name": "
|
|
89750
|
-
"
|
|
89751
|
-
"text": "array"
|
|
89752
|
-
},
|
|
89753
|
-
"default": "[ { fieldName: 'cubeId', protoName: 'cube_id', FieldConstructor: STRING, constraints: {}, description: 'ID of the cube' }, { fieldName: 'fields', protoName: 'fields', FieldConstructor: STRING, constraints: {}, description: 'Partial Response, https://cloud.google.com/apis/design/design_patterns#partial_response\\n use wildcard * to get all fields' } ]"
|
|
90131
|
+
"name": "_displayName",
|
|
90132
|
+
"default": "new STRING(undefined, this, 'displayName')"
|
|
89754
90133
|
},
|
|
89755
90134
|
{
|
|
89756
90135
|
"kind": "field",
|
|
89757
|
-
"name": "
|
|
89758
|
-
"default": "new STRING(undefined, this, '
|
|
90136
|
+
"name": "_description",
|
|
90137
|
+
"default": "new STRING(undefined, this, 'description')"
|
|
89759
90138
|
},
|
|
89760
90139
|
{
|
|
89761
90140
|
"kind": "field",
|
|
89762
|
-
"name": "
|
|
89763
|
-
"default": "new
|
|
90141
|
+
"name": "_cube",
|
|
90142
|
+
"default": "new FuroCubeCubeDefinition(undefined, this, 'cube')"
|
|
89764
90143
|
},
|
|
89765
90144
|
{
|
|
89766
90145
|
"kind": "field",
|
|
@@ -89768,7 +90147,7 @@
|
|
|
89768
90147
|
"type": {
|
|
89769
90148
|
"text": "object"
|
|
89770
90149
|
},
|
|
89771
|
-
"default": "{
|
|
90150
|
+
"default": "{ cube: { length: 222 }, }"
|
|
89772
90151
|
},
|
|
89773
90152
|
{
|
|
89774
90153
|
"kind": "field",
|
|
@@ -90606,32 +90985,76 @@
|
|
|
90606
90985
|
"exports": [
|
|
90607
90986
|
{
|
|
90608
90987
|
"kind": "js",
|
|
90609
|
-
"name": "
|
|
90988
|
+
"name": "CubeEntity",
|
|
90610
90989
|
"declaration": {
|
|
90611
|
-
"name": "
|
|
90612
|
-
"module": "dist/protoc-gen-open-models/furo/cube/
|
|
90990
|
+
"name": "CubeEntity",
|
|
90991
|
+
"module": "dist/protoc-gen-open-models/furo/cube/CubeEntity.js"
|
|
90613
90992
|
}
|
|
90614
90993
|
}
|
|
90615
90994
|
]
|
|
90616
90995
|
},
|
|
90617
90996
|
{
|
|
90618
90997
|
"kind": "javascript-module",
|
|
90619
|
-
"path": "dist/protoc-gen-open-models/furo/cube/
|
|
90998
|
+
"path": "dist/protoc-gen-open-models/furo/cube/CubeEntity.js.map",
|
|
90620
90999
|
"declarations": [],
|
|
90621
91000
|
"exports": []
|
|
90622
91001
|
},
|
|
90623
91002
|
{
|
|
90624
91003
|
"kind": "javascript-module",
|
|
90625
|
-
"path": "dist/protoc-gen-open-models/furo/cube/
|
|
91004
|
+
"path": "dist/protoc-gen-open-models/furo/cube/CubeService.js",
|
|
90626
91005
|
"declarations": [
|
|
90627
91006
|
{
|
|
90628
91007
|
"kind": "class",
|
|
90629
|
-
"description": "
|
|
90630
|
-
"name": "
|
|
91008
|
+
"description": "",
|
|
91009
|
+
"name": "CubeService",
|
|
90631
91010
|
"members": [
|
|
90632
91011
|
{
|
|
90633
91012
|
"kind": "field",
|
|
90634
|
-
"name": "
|
|
91013
|
+
"name": "GetList",
|
|
91014
|
+
"default": "new Fetcher(API_OPTIONS, 'GET', '/v1/cubes')"
|
|
91015
|
+
},
|
|
91016
|
+
{
|
|
91017
|
+
"kind": "field",
|
|
91018
|
+
"name": "Get",
|
|
91019
|
+
"default": "new Fetcher(API_OPTIONS, 'GET', '/v1/cubes/{cube_id}')"
|
|
91020
|
+
},
|
|
91021
|
+
{
|
|
91022
|
+
"kind": "field",
|
|
91023
|
+
"name": "Update",
|
|
91024
|
+
"default": "new Fetcher(API_OPTIONS, 'PUT', '/v1/cubes/{cube_id}', 'entity')"
|
|
91025
|
+
}
|
|
91026
|
+
]
|
|
91027
|
+
}
|
|
91028
|
+
],
|
|
91029
|
+
"exports": [
|
|
91030
|
+
{
|
|
91031
|
+
"kind": "js",
|
|
91032
|
+
"name": "CubeService",
|
|
91033
|
+
"declaration": {
|
|
91034
|
+
"name": "CubeService",
|
|
91035
|
+
"module": "dist/protoc-gen-open-models/furo/cube/CubeService.js"
|
|
91036
|
+
}
|
|
91037
|
+
}
|
|
91038
|
+
]
|
|
91039
|
+
},
|
|
91040
|
+
{
|
|
91041
|
+
"kind": "javascript-module",
|
|
91042
|
+
"path": "dist/protoc-gen-open-models/furo/cube/CubeService.js.map",
|
|
91043
|
+
"declarations": [],
|
|
91044
|
+
"exports": []
|
|
91045
|
+
},
|
|
91046
|
+
{
|
|
91047
|
+
"kind": "javascript-module",
|
|
91048
|
+
"path": "dist/protoc-gen-open-models/furo/cube/CubeServiceGetListRequest.js",
|
|
91049
|
+
"declarations": [
|
|
91050
|
+
{
|
|
91051
|
+
"kind": "class",
|
|
91052
|
+
"description": "CubeServiceGetListRequest",
|
|
91053
|
+
"name": "CubeServiceGetListRequest",
|
|
91054
|
+
"members": [
|
|
91055
|
+
{
|
|
91056
|
+
"kind": "field",
|
|
91057
|
+
"name": "query"
|
|
90635
91058
|
},
|
|
90636
91059
|
{
|
|
90637
91060
|
"kind": "method",
|
|
@@ -90652,7 +91075,7 @@
|
|
|
90652
91075
|
"type": {
|
|
90653
91076
|
"text": "string"
|
|
90654
91077
|
},
|
|
90655
|
-
"default": "'furo.cube.
|
|
91078
|
+
"default": "'furo.cube.CubeServiceGetListRequest'"
|
|
90656
91079
|
},
|
|
90657
91080
|
{
|
|
90658
91081
|
"kind": "field",
|
|
@@ -90660,7 +91083,7 @@
|
|
|
90660
91083
|
"type": {
|
|
90661
91084
|
"text": "string"
|
|
90662
91085
|
},
|
|
90663
|
-
"default": "'
|
|
91086
|
+
"default": "'CubeServiceGetListRequest'"
|
|
90664
91087
|
},
|
|
90665
91088
|
{
|
|
90666
91089
|
"kind": "field",
|
|
@@ -90668,12 +91091,12 @@
|
|
|
90668
91091
|
"type": {
|
|
90669
91092
|
"text": "array"
|
|
90670
91093
|
},
|
|
90671
|
-
"default": "[ { fieldName: '
|
|
91094
|
+
"default": "[ { fieldName: 'query', protoName: 'query', FieldConstructor: STRING, constraints: {}, description: 'searches for display_name or client_number', }, ]"
|
|
90672
91095
|
},
|
|
90673
91096
|
{
|
|
90674
91097
|
"kind": "field",
|
|
90675
|
-
"name": "
|
|
90676
|
-
"default": "new
|
|
91098
|
+
"name": "_query",
|
|
91099
|
+
"default": "new STRING(undefined, this, 'query')"
|
|
90677
91100
|
},
|
|
90678
91101
|
{
|
|
90679
91102
|
"kind": "field",
|
|
@@ -91519,36 +91942,32 @@
|
|
|
91519
91942
|
"exports": [
|
|
91520
91943
|
{
|
|
91521
91944
|
"kind": "js",
|
|
91522
|
-
"name": "
|
|
91945
|
+
"name": "CubeServiceGetListRequest",
|
|
91523
91946
|
"declaration": {
|
|
91524
|
-
"name": "
|
|
91525
|
-
"module": "dist/protoc-gen-open-models/furo/cube/
|
|
91947
|
+
"name": "CubeServiceGetListRequest",
|
|
91948
|
+
"module": "dist/protoc-gen-open-models/furo/cube/CubeServiceGetListRequest.js"
|
|
91526
91949
|
}
|
|
91527
91950
|
}
|
|
91528
91951
|
]
|
|
91529
91952
|
},
|
|
91530
91953
|
{
|
|
91531
91954
|
"kind": "javascript-module",
|
|
91532
|
-
"path": "dist/protoc-gen-open-models/furo/cube/
|
|
91955
|
+
"path": "dist/protoc-gen-open-models/furo/cube/CubeServiceGetListRequest.js.map",
|
|
91533
91956
|
"declarations": [],
|
|
91534
91957
|
"exports": []
|
|
91535
91958
|
},
|
|
91536
91959
|
{
|
|
91537
91960
|
"kind": "javascript-module",
|
|
91538
|
-
"path": "dist/protoc-gen-open-models/furo/cube/
|
|
91961
|
+
"path": "dist/protoc-gen-open-models/furo/cube/CubeServiceGetListResponse.js",
|
|
91539
91962
|
"declarations": [
|
|
91540
91963
|
{
|
|
91541
91964
|
"kind": "class",
|
|
91542
|
-
"description": "
|
|
91543
|
-
"name": "
|
|
91965
|
+
"description": "CubeServiceGetListResponse",
|
|
91966
|
+
"name": "CubeServiceGetListResponse",
|
|
91544
91967
|
"members": [
|
|
91545
91968
|
{
|
|
91546
91969
|
"kind": "field",
|
|
91547
|
-
"name": "
|
|
91548
|
-
},
|
|
91549
|
-
{
|
|
91550
|
-
"kind": "field",
|
|
91551
|
-
"name": "entity"
|
|
91970
|
+
"name": "entities"
|
|
91552
91971
|
},
|
|
91553
91972
|
{
|
|
91554
91973
|
"kind": "method",
|
|
@@ -91569,7 +91988,7 @@
|
|
|
91569
91988
|
"type": {
|
|
91570
91989
|
"text": "string"
|
|
91571
91990
|
},
|
|
91572
|
-
"default": "'furo.cube.
|
|
91991
|
+
"default": "'furo.cube.CubeServiceGetListResponse'"
|
|
91573
91992
|
},
|
|
91574
91993
|
{
|
|
91575
91994
|
"kind": "field",
|
|
@@ -91577,7 +91996,7 @@
|
|
|
91577
91996
|
"type": {
|
|
91578
91997
|
"text": "string"
|
|
91579
91998
|
},
|
|
91580
|
-
"default": "'
|
|
91999
|
+
"default": "'CubeServiceGetListResponse'"
|
|
91581
92000
|
},
|
|
91582
92001
|
{
|
|
91583
92002
|
"kind": "field",
|
|
@@ -91585,17 +92004,12 @@
|
|
|
91585
92004
|
"type": {
|
|
91586
92005
|
"text": "array"
|
|
91587
92006
|
},
|
|
91588
|
-
"default": "[ { fieldName: '
|
|
91589
|
-
},
|
|
91590
|
-
{
|
|
91591
|
-
"kind": "field",
|
|
91592
|
-
"name": "_cubeId",
|
|
91593
|
-
"default": "new STRING(undefined, this, 'cubeId')"
|
|
92007
|
+
"default": "[ { fieldName: 'entities', protoName: 'entities', FieldConstructor: FuroCubeCubeEntity, constraints: {}, description: '', }, ]"
|
|
91594
92008
|
},
|
|
91595
92009
|
{
|
|
91596
92010
|
"kind": "field",
|
|
91597
|
-
"name": "
|
|
91598
|
-
"default": "new
|
|
92011
|
+
"name": "_entities",
|
|
92012
|
+
"default": "new ARRAY(undefined, this, 'entities')"
|
|
91599
92013
|
},
|
|
91600
92014
|
{
|
|
91601
92015
|
"kind": "field",
|
|
@@ -92441,32 +92855,36 @@
|
|
|
92441
92855
|
"exports": [
|
|
92442
92856
|
{
|
|
92443
92857
|
"kind": "js",
|
|
92444
|
-
"name": "
|
|
92858
|
+
"name": "CubeServiceGetListResponse",
|
|
92445
92859
|
"declaration": {
|
|
92446
|
-
"name": "
|
|
92447
|
-
"module": "dist/protoc-gen-open-models/furo/cube/
|
|
92860
|
+
"name": "CubeServiceGetListResponse",
|
|
92861
|
+
"module": "dist/protoc-gen-open-models/furo/cube/CubeServiceGetListResponse.js"
|
|
92448
92862
|
}
|
|
92449
92863
|
}
|
|
92450
92864
|
]
|
|
92451
92865
|
},
|
|
92452
92866
|
{
|
|
92453
92867
|
"kind": "javascript-module",
|
|
92454
|
-
"path": "dist/protoc-gen-open-models/furo/cube/
|
|
92868
|
+
"path": "dist/protoc-gen-open-models/furo/cube/CubeServiceGetListResponse.js.map",
|
|
92455
92869
|
"declarations": [],
|
|
92456
92870
|
"exports": []
|
|
92457
92871
|
},
|
|
92458
92872
|
{
|
|
92459
92873
|
"kind": "javascript-module",
|
|
92460
|
-
"path": "dist/protoc-gen-open-models/furo/cube/
|
|
92874
|
+
"path": "dist/protoc-gen-open-models/furo/cube/CubeServiceGetRequest.js",
|
|
92461
92875
|
"declarations": [
|
|
92462
92876
|
{
|
|
92463
92877
|
"kind": "class",
|
|
92464
|
-
"description": "
|
|
92465
|
-
"name": "
|
|
92878
|
+
"description": "CubeServiceGetRequest",
|
|
92879
|
+
"name": "CubeServiceGetRequest",
|
|
92466
92880
|
"members": [
|
|
92467
92881
|
{
|
|
92468
92882
|
"kind": "field",
|
|
92469
|
-
"name": "
|
|
92883
|
+
"name": "cubeId"
|
|
92884
|
+
},
|
|
92885
|
+
{
|
|
92886
|
+
"kind": "field",
|
|
92887
|
+
"name": "fields"
|
|
92470
92888
|
},
|
|
92471
92889
|
{
|
|
92472
92890
|
"kind": "method",
|
|
@@ -92487,7 +92905,7 @@
|
|
|
92487
92905
|
"type": {
|
|
92488
92906
|
"text": "string"
|
|
92489
92907
|
},
|
|
92490
|
-
"default": "'furo.cube.
|
|
92908
|
+
"default": "'furo.cube.CubeServiceGetRequest'"
|
|
92491
92909
|
},
|
|
92492
92910
|
{
|
|
92493
92911
|
"kind": "field",
|
|
@@ -92495,7 +92913,7 @@
|
|
|
92495
92913
|
"type": {
|
|
92496
92914
|
"text": "string"
|
|
92497
92915
|
},
|
|
92498
|
-
"default": "'
|
|
92916
|
+
"default": "'CubeServiceGetRequest'"
|
|
92499
92917
|
},
|
|
92500
92918
|
{
|
|
92501
92919
|
"kind": "field",
|
|
@@ -92503,12 +92921,17 @@
|
|
|
92503
92921
|
"type": {
|
|
92504
92922
|
"text": "array"
|
|
92505
92923
|
},
|
|
92506
|
-
"default": "[ { fieldName: '
|
|
92924
|
+
"default": "[ { fieldName: 'cubeId', protoName: 'cube_id', FieldConstructor: STRING, constraints: {}, description: 'ID of the cube', }, { fieldName: 'fields', protoName: 'fields', FieldConstructor: STRING, constraints: {}, description: 'Partial Response, https://cloud.google.com/apis/design/design_patterns#partial_response\\n use wildcard * to get all fields', }, ]"
|
|
92507
92925
|
},
|
|
92508
92926
|
{
|
|
92509
92927
|
"kind": "field",
|
|
92510
|
-
"name": "
|
|
92511
|
-
"default": "new
|
|
92928
|
+
"name": "_cubeId",
|
|
92929
|
+
"default": "new STRING(undefined, this, 'cubeId')"
|
|
92930
|
+
},
|
|
92931
|
+
{
|
|
92932
|
+
"kind": "field",
|
|
92933
|
+
"name": "_fields",
|
|
92934
|
+
"default": "new STRING(undefined, this, 'fields')"
|
|
92512
92935
|
},
|
|
92513
92936
|
{
|
|
92514
92937
|
"kind": "field",
|
|
@@ -92516,7 +92939,7 @@
|
|
|
92516
92939
|
"type": {
|
|
92517
92940
|
"text": "object"
|
|
92518
92941
|
},
|
|
92519
|
-
"default": "{}"
|
|
92942
|
+
"default": "{ fields: '*', }"
|
|
92520
92943
|
},
|
|
92521
92944
|
{
|
|
92522
92945
|
"kind": "field",
|
|
@@ -93354,90 +93777,32 @@
|
|
|
93354
93777
|
"exports": [
|
|
93355
93778
|
{
|
|
93356
93779
|
"kind": "js",
|
|
93357
|
-
"name": "
|
|
93358
|
-
"declaration": {
|
|
93359
|
-
"name": "CubeServiceUpdateResponse",
|
|
93360
|
-
"module": "dist/protoc-gen-open-models/furo/cube/CubeServiceUpdateResponse.js"
|
|
93361
|
-
}
|
|
93362
|
-
}
|
|
93363
|
-
]
|
|
93364
|
-
},
|
|
93365
|
-
{
|
|
93366
|
-
"kind": "javascript-module",
|
|
93367
|
-
"path": "dist/protoc-gen-open-models/furo/cube/CubeServiceUpdateResponse.js.map",
|
|
93368
|
-
"declarations": [],
|
|
93369
|
-
"exports": []
|
|
93370
|
-
},
|
|
93371
|
-
{
|
|
93372
|
-
"kind": "javascript-module",
|
|
93373
|
-
"path": "dist/protoc-gen-open-models/furo/cube/Materials.js",
|
|
93374
|
-
"declarations": [
|
|
93375
|
-
{
|
|
93376
|
-
"kind": "variable",
|
|
93377
|
-
"name": "Materials"
|
|
93378
|
-
}
|
|
93379
|
-
],
|
|
93380
|
-
"exports": [
|
|
93381
|
-
{
|
|
93382
|
-
"kind": "js",
|
|
93383
|
-
"name": "Materials",
|
|
93780
|
+
"name": "CubeServiceGetRequest",
|
|
93384
93781
|
"declaration": {
|
|
93385
|
-
"name": "
|
|
93386
|
-
"module": "dist/protoc-gen-open-models/furo/cube/
|
|
93782
|
+
"name": "CubeServiceGetRequest",
|
|
93783
|
+
"module": "dist/protoc-gen-open-models/furo/cube/CubeServiceGetRequest.js"
|
|
93387
93784
|
}
|
|
93388
93785
|
}
|
|
93389
93786
|
]
|
|
93390
93787
|
},
|
|
93391
93788
|
{
|
|
93392
93789
|
"kind": "javascript-module",
|
|
93393
|
-
"path": "dist/protoc-gen-open-models/furo/cube/
|
|
93790
|
+
"path": "dist/protoc-gen-open-models/furo/cube/CubeServiceGetRequest.js.map",
|
|
93394
93791
|
"declarations": [],
|
|
93395
93792
|
"exports": []
|
|
93396
93793
|
},
|
|
93397
93794
|
{
|
|
93398
93795
|
"kind": "javascript-module",
|
|
93399
|
-
"path": "dist/protoc-gen-open-models/furo/cube/
|
|
93796
|
+
"path": "dist/protoc-gen-open-models/furo/cube/CubeServiceGetResponse.js",
|
|
93400
93797
|
"declarations": [
|
|
93401
93798
|
{
|
|
93402
93799
|
"kind": "class",
|
|
93403
|
-
"description": "
|
|
93404
|
-
"name": "
|
|
93800
|
+
"description": "CubeServiceGetResponse",
|
|
93801
|
+
"name": "CubeServiceGetResponse",
|
|
93405
93802
|
"members": [
|
|
93406
93803
|
{
|
|
93407
93804
|
"kind": "field",
|
|
93408
|
-
"name": "
|
|
93409
|
-
},
|
|
93410
|
-
{
|
|
93411
|
-
"kind": "field",
|
|
93412
|
-
"name": "int32Value"
|
|
93413
|
-
},
|
|
93414
|
-
{
|
|
93415
|
-
"kind": "field",
|
|
93416
|
-
"name": "int64Value"
|
|
93417
|
-
},
|
|
93418
|
-
{
|
|
93419
|
-
"kind": "field",
|
|
93420
|
-
"name": "floatValue"
|
|
93421
|
-
},
|
|
93422
|
-
{
|
|
93423
|
-
"kind": "field",
|
|
93424
|
-
"name": "doubleValue"
|
|
93425
|
-
},
|
|
93426
|
-
{
|
|
93427
|
-
"kind": "field",
|
|
93428
|
-
"name": "boolValue"
|
|
93429
|
-
},
|
|
93430
|
-
{
|
|
93431
|
-
"kind": "field",
|
|
93432
|
-
"name": "uint32Value"
|
|
93433
|
-
},
|
|
93434
|
-
{
|
|
93435
|
-
"kind": "field",
|
|
93436
|
-
"name": "uint64Value"
|
|
93437
|
-
},
|
|
93438
|
-
{
|
|
93439
|
-
"kind": "field",
|
|
93440
|
-
"name": "bytesValue"
|
|
93805
|
+
"name": "entity"
|
|
93441
93806
|
},
|
|
93442
93807
|
{
|
|
93443
93808
|
"kind": "method",
|
|
@@ -93458,7 +93823,7 @@
|
|
|
93458
93823
|
"type": {
|
|
93459
93824
|
"text": "string"
|
|
93460
93825
|
},
|
|
93461
|
-
"default": "'furo.cube.
|
|
93826
|
+
"default": "'furo.cube.CubeServiceGetResponse'"
|
|
93462
93827
|
},
|
|
93463
93828
|
{
|
|
93464
93829
|
"kind": "field",
|
|
@@ -93466,7 +93831,7 @@
|
|
|
93466
93831
|
"type": {
|
|
93467
93832
|
"text": "string"
|
|
93468
93833
|
},
|
|
93469
|
-
"default": "'
|
|
93834
|
+
"default": "'CubeServiceGetResponse'"
|
|
93470
93835
|
},
|
|
93471
93836
|
{
|
|
93472
93837
|
"kind": "field",
|
|
@@ -93474,52 +93839,12 @@
|
|
|
93474
93839
|
"type": {
|
|
93475
93840
|
"text": "array"
|
|
93476
93841
|
},
|
|
93477
|
-
"default": "[ { fieldName: '
|
|
93478
|
-
},
|
|
93479
|
-
{
|
|
93480
|
-
"kind": "field",
|
|
93481
|
-
"name": "_stringValue",
|
|
93482
|
-
"default": "new StringValue(undefined, this, 'stringValue')"
|
|
93483
|
-
},
|
|
93484
|
-
{
|
|
93485
|
-
"kind": "field",
|
|
93486
|
-
"name": "_int32Value",
|
|
93487
|
-
"default": "new Int32Value(undefined, this, 'int32Value')"
|
|
93488
|
-
},
|
|
93489
|
-
{
|
|
93490
|
-
"kind": "field",
|
|
93491
|
-
"name": "_int64Value",
|
|
93492
|
-
"default": "new Int64Value(undefined, this, 'int64Value')"
|
|
93493
|
-
},
|
|
93494
|
-
{
|
|
93495
|
-
"kind": "field",
|
|
93496
|
-
"name": "_floatValue",
|
|
93497
|
-
"default": "new FloatValue(undefined, this, 'floatValue')"
|
|
93498
|
-
},
|
|
93499
|
-
{
|
|
93500
|
-
"kind": "field",
|
|
93501
|
-
"name": "_doubleValue",
|
|
93502
|
-
"default": "new DoubleValue(undefined, this, 'doubleValue')"
|
|
93503
|
-
},
|
|
93504
|
-
{
|
|
93505
|
-
"kind": "field",
|
|
93506
|
-
"name": "_boolValue",
|
|
93507
|
-
"default": "new BoolValue(undefined, this, 'boolValue')"
|
|
93508
|
-
},
|
|
93509
|
-
{
|
|
93510
|
-
"kind": "field",
|
|
93511
|
-
"name": "_uint32Value",
|
|
93512
|
-
"default": "new UInt32Value(undefined, this, 'uint32Value')"
|
|
93842
|
+
"default": "[ { fieldName: 'entity', protoName: 'entity', FieldConstructor: FuroCubeCubeEntity, constraints: {}, description: '', }, ]"
|
|
93513
93843
|
},
|
|
93514
93844
|
{
|
|
93515
93845
|
"kind": "field",
|
|
93516
|
-
"name": "
|
|
93517
|
-
"default": "new
|
|
93518
|
-
},
|
|
93519
|
-
{
|
|
93520
|
-
"kind": "field",
|
|
93521
|
-
"name": "_bytesValue",
|
|
93522
|
-
"default": "new BytesValue(undefined, this, 'bytesValue')"
|
|
93846
|
+
"name": "_entity",
|
|
93847
|
+
"default": "new FuroCubeCubeEntity(undefined, this, 'entity')"
|
|
93523
93848
|
},
|
|
93524
93849
|
{
|
|
93525
93850
|
"kind": "field",
|
|
@@ -94365,36 +94690,36 @@
|
|
|
94365
94690
|
"exports": [
|
|
94366
94691
|
{
|
|
94367
94692
|
"kind": "js",
|
|
94368
|
-
"name": "
|
|
94693
|
+
"name": "CubeServiceGetResponse",
|
|
94369
94694
|
"declaration": {
|
|
94370
|
-
"name": "
|
|
94371
|
-
"module": "dist/protoc-gen-open-models/furo/cube/
|
|
94695
|
+
"name": "CubeServiceGetResponse",
|
|
94696
|
+
"module": "dist/protoc-gen-open-models/furo/cube/CubeServiceGetResponse.js"
|
|
94372
94697
|
}
|
|
94373
94698
|
}
|
|
94374
94699
|
]
|
|
94375
94700
|
},
|
|
94376
94701
|
{
|
|
94377
94702
|
"kind": "javascript-module",
|
|
94378
|
-
"path": "dist/protoc-gen-open-models/furo/cube/
|
|
94703
|
+
"path": "dist/protoc-gen-open-models/furo/cube/CubeServiceGetResponse.js.map",
|
|
94379
94704
|
"declarations": [],
|
|
94380
94705
|
"exports": []
|
|
94381
94706
|
},
|
|
94382
94707
|
{
|
|
94383
94708
|
"kind": "javascript-module",
|
|
94384
|
-
"path": "dist/protoc-gen-open-models/
|
|
94709
|
+
"path": "dist/protoc-gen-open-models/furo/cube/CubeServiceUpdateRequest.js",
|
|
94385
94710
|
"declarations": [
|
|
94386
94711
|
{
|
|
94387
94712
|
"kind": "class",
|
|
94388
|
-
"description": "
|
|
94389
|
-
"name": "
|
|
94713
|
+
"description": "CubeServiceUpdateRequest",
|
|
94714
|
+
"name": "CubeServiceUpdateRequest",
|
|
94390
94715
|
"members": [
|
|
94391
94716
|
{
|
|
94392
94717
|
"kind": "field",
|
|
94393
|
-
"name": "
|
|
94718
|
+
"name": "cubeId"
|
|
94394
94719
|
},
|
|
94395
94720
|
{
|
|
94396
94721
|
"kind": "field",
|
|
94397
|
-
"name": "
|
|
94722
|
+
"name": "entity"
|
|
94398
94723
|
},
|
|
94399
94724
|
{
|
|
94400
94725
|
"kind": "method",
|
|
@@ -94415,7 +94740,7 @@
|
|
|
94415
94740
|
"type": {
|
|
94416
94741
|
"text": "string"
|
|
94417
94742
|
},
|
|
94418
|
-
"default": "'
|
|
94743
|
+
"default": "'furo.cube.CubeServiceUpdateRequest'"
|
|
94419
94744
|
},
|
|
94420
94745
|
{
|
|
94421
94746
|
"kind": "field",
|
|
@@ -94423,7 +94748,7 @@
|
|
|
94423
94748
|
"type": {
|
|
94424
94749
|
"text": "string"
|
|
94425
94750
|
},
|
|
94426
|
-
"default": "'
|
|
94751
|
+
"default": "'CubeServiceUpdateRequest'"
|
|
94427
94752
|
},
|
|
94428
94753
|
{
|
|
94429
94754
|
"kind": "field",
|
|
@@ -94431,17 +94756,17 @@
|
|
|
94431
94756
|
"type": {
|
|
94432
94757
|
"text": "array"
|
|
94433
94758
|
},
|
|
94434
|
-
"default": "[ { fieldName: '
|
|
94759
|
+
"default": "[ { fieldName: 'cubeId', protoName: 'cube_id', FieldConstructor: STRING, constraints: {}, description: 'ID of the cube', }, { fieldName: 'entity', protoName: 'entity', FieldConstructor: FuroCubeCubeEntity, constraints: {}, description: '', }, ]"
|
|
94435
94760
|
},
|
|
94436
94761
|
{
|
|
94437
94762
|
"kind": "field",
|
|
94438
|
-
"name": "
|
|
94439
|
-
"default": "new STRING(undefined, this, '
|
|
94763
|
+
"name": "_cubeId",
|
|
94764
|
+
"default": "new STRING(undefined, this, 'cubeId')"
|
|
94440
94765
|
},
|
|
94441
94766
|
{
|
|
94442
94767
|
"kind": "field",
|
|
94443
|
-
"name": "
|
|
94444
|
-
"default": "new
|
|
94768
|
+
"name": "_entity",
|
|
94769
|
+
"default": "new FuroCubeCubeEntity(undefined, this, 'entity')"
|
|
94445
94770
|
},
|
|
94446
94771
|
{
|
|
94447
94772
|
"kind": "field",
|
|
@@ -95287,36 +95612,32 @@
|
|
|
95287
95612
|
"exports": [
|
|
95288
95613
|
{
|
|
95289
95614
|
"kind": "js",
|
|
95290
|
-
"name": "
|
|
95615
|
+
"name": "CubeServiceUpdateRequest",
|
|
95291
95616
|
"declaration": {
|
|
95292
|
-
"name": "
|
|
95293
|
-
"module": "dist/protoc-gen-open-models/
|
|
95617
|
+
"name": "CubeServiceUpdateRequest",
|
|
95618
|
+
"module": "dist/protoc-gen-open-models/furo/cube/CubeServiceUpdateRequest.js"
|
|
95294
95619
|
}
|
|
95295
95620
|
}
|
|
95296
95621
|
]
|
|
95297
95622
|
},
|
|
95298
95623
|
{
|
|
95299
95624
|
"kind": "javascript-module",
|
|
95300
|
-
"path": "dist/protoc-gen-open-models/
|
|
95625
|
+
"path": "dist/protoc-gen-open-models/furo/cube/CubeServiceUpdateRequest.js.map",
|
|
95301
95626
|
"declarations": [],
|
|
95302
95627
|
"exports": []
|
|
95303
95628
|
},
|
|
95304
95629
|
{
|
|
95305
95630
|
"kind": "javascript-module",
|
|
95306
|
-
"path": "dist/protoc-gen-open-models/
|
|
95631
|
+
"path": "dist/protoc-gen-open-models/furo/cube/CubeServiceUpdateResponse.js",
|
|
95307
95632
|
"declarations": [
|
|
95308
95633
|
{
|
|
95309
95634
|
"kind": "class",
|
|
95310
|
-
"description": "
|
|
95311
|
-
"name": "
|
|
95635
|
+
"description": "CubeServiceUpdateResponse",
|
|
95636
|
+
"name": "CubeServiceUpdateResponse",
|
|
95312
95637
|
"members": [
|
|
95313
95638
|
{
|
|
95314
95639
|
"kind": "field",
|
|
95315
|
-
"name": "
|
|
95316
|
-
},
|
|
95317
|
-
{
|
|
95318
|
-
"kind": "field",
|
|
95319
|
-
"name": "fullyDecodeReservedExpansion"
|
|
95640
|
+
"name": "entity"
|
|
95320
95641
|
},
|
|
95321
95642
|
{
|
|
95322
95643
|
"kind": "method",
|
|
@@ -95337,7 +95658,7 @@
|
|
|
95337
95658
|
"type": {
|
|
95338
95659
|
"text": "string"
|
|
95339
95660
|
},
|
|
95340
|
-
"default": "'
|
|
95661
|
+
"default": "'furo.cube.CubeServiceUpdateResponse'"
|
|
95341
95662
|
},
|
|
95342
95663
|
{
|
|
95343
95664
|
"kind": "field",
|
|
@@ -95345,7 +95666,7 @@
|
|
|
95345
95666
|
"type": {
|
|
95346
95667
|
"text": "string"
|
|
95347
95668
|
},
|
|
95348
|
-
"default": "'
|
|
95669
|
+
"default": "'CubeServiceUpdateResponse'"
|
|
95349
95670
|
},
|
|
95350
95671
|
{
|
|
95351
95672
|
"kind": "field",
|
|
@@ -95353,17 +95674,12 @@
|
|
|
95353
95674
|
"type": {
|
|
95354
95675
|
"text": "array"
|
|
95355
95676
|
},
|
|
95356
|
-
"default": "[ { fieldName: '
|
|
95677
|
+
"default": "[ { fieldName: 'entity', protoName: 'entity', FieldConstructor: FuroCubeCubeEntity, constraints: {}, description: '', }, ]"
|
|
95357
95678
|
},
|
|
95358
95679
|
{
|
|
95359
95680
|
"kind": "field",
|
|
95360
|
-
"name": "
|
|
95361
|
-
"default": "new
|
|
95362
|
-
},
|
|
95363
|
-
{
|
|
95364
|
-
"kind": "field",
|
|
95365
|
-
"name": "_fullyDecodeReservedExpansion",
|
|
95366
|
-
"default": "new BOOLEAN(undefined, this, 'fullyDecodeReservedExpansion')"
|
|
95681
|
+
"name": "_entity",
|
|
95682
|
+
"default": "new FuroCubeCubeEntity(undefined, this, 'entity')"
|
|
95367
95683
|
},
|
|
95368
95684
|
{
|
|
95369
95685
|
"kind": "field",
|
|
@@ -96209,68 +96525,90 @@
|
|
|
96209
96525
|
"exports": [
|
|
96210
96526
|
{
|
|
96211
96527
|
"kind": "js",
|
|
96212
|
-
"name": "
|
|
96528
|
+
"name": "CubeServiceUpdateResponse",
|
|
96213
96529
|
"declaration": {
|
|
96214
|
-
"name": "
|
|
96215
|
-
"module": "dist/protoc-gen-open-models/
|
|
96530
|
+
"name": "CubeServiceUpdateResponse",
|
|
96531
|
+
"module": "dist/protoc-gen-open-models/furo/cube/CubeServiceUpdateResponse.js"
|
|
96216
96532
|
}
|
|
96217
96533
|
}
|
|
96218
96534
|
]
|
|
96219
96535
|
},
|
|
96220
96536
|
{
|
|
96221
96537
|
"kind": "javascript-module",
|
|
96222
|
-
"path": "dist/protoc-gen-open-models/
|
|
96538
|
+
"path": "dist/protoc-gen-open-models/furo/cube/CubeServiceUpdateResponse.js.map",
|
|
96223
96539
|
"declarations": [],
|
|
96224
96540
|
"exports": []
|
|
96225
96541
|
},
|
|
96226
96542
|
{
|
|
96227
96543
|
"kind": "javascript-module",
|
|
96228
|
-
"path": "dist/protoc-gen-open-models/
|
|
96544
|
+
"path": "dist/protoc-gen-open-models/furo/cube/Materials.js",
|
|
96545
|
+
"declarations": [
|
|
96546
|
+
{
|
|
96547
|
+
"kind": "variable",
|
|
96548
|
+
"name": "Materials"
|
|
96549
|
+
}
|
|
96550
|
+
],
|
|
96551
|
+
"exports": [
|
|
96552
|
+
{
|
|
96553
|
+
"kind": "js",
|
|
96554
|
+
"name": "Materials",
|
|
96555
|
+
"declaration": {
|
|
96556
|
+
"name": "Materials",
|
|
96557
|
+
"module": "dist/protoc-gen-open-models/furo/cube/Materials.js"
|
|
96558
|
+
}
|
|
96559
|
+
}
|
|
96560
|
+
]
|
|
96561
|
+
},
|
|
96562
|
+
{
|
|
96563
|
+
"kind": "javascript-module",
|
|
96564
|
+
"path": "dist/protoc-gen-open-models/furo/cube/Materials.js.map",
|
|
96565
|
+
"declarations": [],
|
|
96566
|
+
"exports": []
|
|
96567
|
+
},
|
|
96568
|
+
{
|
|
96569
|
+
"kind": "javascript-module",
|
|
96570
|
+
"path": "dist/protoc-gen-open-models/furo/cube/Wrappers.js",
|
|
96229
96571
|
"declarations": [
|
|
96230
96572
|
{
|
|
96231
96573
|
"kind": "class",
|
|
96232
|
-
"description": "HttpRule\n # gRPC Transcoding\n\n gRPC Transcoding is a feature for mapping between a gRPC method and one or\n more HTTP REST endpoints. It allows developers to build a single API service\n that supports both gRPC APIs and REST APIs. Many systems, including [Google\n APIs](https://github.com/googleapis/googleapis),\n [Cloud Endpoints](https://cloud.google.com/endpoints), [gRPC\n Gateway](https://github.com/grpc-ecosystem/grpc-gateway),\n and [Envoy](https://github.com/envoyproxy/envoy) proxy support this feature\n and use it for large scale production services.\n\n `HttpRule` defines the schema of the gRPC/REST mapping. The mapping specifies\n how different portions of the gRPC request message are mapped to the URL\n path, URL query parameters, and HTTP request body. It also controls how the\n gRPC response message is mapped to the HTTP response body. `HttpRule` is\n typically specified as an `google.api.http` annotation on the gRPC method.\n\n Each mapping specifies a URL path template and an HTTP method. The path\n template may refer to one or more fields in the gRPC request message, as long\n as each field is a non-repeated field with a primitive (non-message) type.\n The path template controls how fields of the request message are mapped to\n the URL path.\n\n Example:\n\n service Messaging {\n rpc GetMessage(GetMessageRequest) returns (Message) {\n option (google.api.http) = {\n get: \"/v1/{name=messages/*}\"\n };\n }\n }\n message GetMessageRequest {\n string name = 1; // Mapped to URL path.\n }\n message Message {\n string text = 1; // The resource content.\n }\n\n This enables an HTTP REST to gRPC mapping as below:\n\n HTTP | gRPC\n -----|-----\n `GET /v1/messages/123456` | `GetMessage(name: \"messages/123456\")`\n\n Any fields in the request message which are not bound by the path template\n automatically become HTTP query parameters if there is no HTTP request body.\n For example:\n\n service Messaging {\n rpc GetMessage(GetMessageRequest) returns (Message) {\n option (google.api.http) = {\n get:\"/v1/messages/{message_id}\"\n };\n }\n }\n message GetMessageRequest {\n message SubMessage {\n string subfield = 1;\n }\n string message_id = 1; // Mapped to URL path.\n int64 revision = 2; // Mapped to URL query parameter `revision`.\n SubMessage sub = 3; // Mapped to URL query parameter `sub.subfield`.\n }\n\n This enables a HTTP JSON to RPC mapping as below:\n\n HTTP | gRPC\n -----|-----\n `GET /v1/messages/123456?revision=2&sub.subfield=foo` |\n `GetMessage(message_id: \"123456\" revision: 2 sub: SubMessage(subfield:\n \"foo\"))`\n\n Note that fields which are mapped to URL query parameters must have a\n primitive type or a repeated primitive type or a non-repeated message type.\n In the case of a repeated type, the parameter can be repeated in the URL\n as `...?param=A¶m=B`. In the case of a message type, each field of the\n message is mapped to a separate parameter, such as\n `...?foo.a=A&foo.b=B&foo.c=C`.\n\n For HTTP methods that allow a request body, the `body` field\n specifies the mapping. Consider a REST update method on the\n message resource collection:\n\n service Messaging {\n rpc UpdateMessage(UpdateMessageRequest) returns (Message) {\n option (google.api.http) = {\n patch: \"/v1/messages/{message_id}\"\n body: \"message\"\n };\n }\n }\n message UpdateMessageRequest {\n string message_id = 1; // mapped to the URL\n Message message = 2; // mapped to the body\n }\n\n The following HTTP JSON to RPC mapping is enabled, where the\n representation of the JSON in the request body is determined by\n protos JSON encoding:\n\n HTTP | gRPC\n -----|-----\n `PATCH /v1/messages/123456 { \"text\": \"Hi!\" }` | `UpdateMessage(message_id:\n \"123456\" message { text: \"Hi!\" })`\n\n The special name `*` can be used in the body mapping to define that\n every field not bound by the path template should be mapped to the\n request body. This enables the following alternative definition of\n the update method:\n\n service Messaging {\n rpc UpdateMessage(Message) returns (Message) {\n option (google.api.http) = {\n patch: \"/v1/messages/{message_id}\"\n body: \"*\"\n };\n }\n }\n message Message {\n string message_id = 1;\n string text = 2;\n }\n\n\n The following HTTP JSON to RPC mapping is enabled:\n\n HTTP | gRPC\n -----|-----\n `PATCH /v1/messages/123456 { \"text\": \"Hi!\" }` | `UpdateMessage(message_id:\n \"123456\" text: \"Hi!\")`\n\n Note that when using `*` in the body mapping, it is not possible to\n have HTTP parameters, as all fields not bound by the path end in\n the body. This makes this option more rarely used in practice when\n defining REST APIs. The common usage of `*` is in custom methods\n which don't use the URL at all for transferring data.\n\n It is possible to define multiple HTTP methods for one RPC by using\n the `additional_bindings` option. Example:\n\n service Messaging {\n rpc GetMessage(GetMessageRequest) returns (Message) {\n option (google.api.http) = {\n get: \"/v1/messages/{message_id}\"\n additional_bindings {\n get: \"/v1/users/{user_id}/messages/{message_id}\"\n }\n };\n }\n }\n message GetMessageRequest {\n string message_id = 1;\n string user_id = 2;\n }\n\n This enables the following two alternative HTTP JSON to RPC mappings:\n\n HTTP | gRPC\n -----|-----\n `GET /v1/messages/123456` | `GetMessage(message_id: \"123456\")`\n `GET /v1/users/me/messages/123456` | `GetMessage(user_id: \"me\" message_id:\n \"123456\")`\n\n ## Rules for HTTP mapping\n\n 1. Leaf request fields (recursive expansion nested messages in the request\n message) are classified into three categories:\n - Fields referred by the path template. They are passed via the URL path.\n - Fields referred by the [HttpRule.body][google.api.HttpRule.body]. They\n are passed via the HTTP\n request body.\n - All other fields are passed via the URL query parameters, and the\n parameter name is the field path in the request message. A repeated\n field can be represented as multiple query parameters under the same\n name.\n 2. If [HttpRule.body][google.api.HttpRule.body] is \"*\", there is no URL\n query parameter, all fields\n are passed via URL path and HTTP request body.\n 3. If [HttpRule.body][google.api.HttpRule.body] is omitted, there is no HTTP\n request body, all\n fields are passed via URL path and URL query parameters.\n\n ### Path template syntax\n\n Template = \"/\" Segments [ Verb ] ;\n Segments = Segment { \"/\" Segment } ;\n Segment = \"*\" | \"**\" | LITERAL | Variable ;\n Variable = \"{\" FieldPath [ \"=\" Segments ] \"}\" ;\n FieldPath = IDENT { \".\" IDENT } ;\n Verb = \":\" LITERAL ;\n\n The syntax `*` matches a single URL path segment. The syntax `**` matches\n zero or more URL path segments, which must be the last part of the URL path\n except the `Verb`.\n\n The syntax `Variable` matches part of the URL path as specified by its\n template. A variable template must not contain other variables. If a variable\n matches a single path segment, its template may be omitted, e.g. `{var}`\n is equivalent to `{var=*}`.\n\n The syntax `LITERAL` matches literal text in the URL path. If the `LITERAL`\n contains any reserved character, such characters should be percent-encoded\n before the matching.\n\n If a variable contains exactly one path segment, such as `\"{var}\"` or\n `\"{var=*}\"`, when such a variable is expanded into a URL path on the client\n side, all characters except `[-_.~0-9a-zA-Z]` are percent-encoded. The\n server side does the reverse decoding. Such variables show up in the\n [Discovery\n Document](https://developers.google.com/discovery/v1/reference/apis) as\n `{var}`.\n\n If a variable contains multiple path segments, such as `\"{var=foo/*}\"`\n or `\"{var=**}\"`, when such a variable is expanded into a URL path on the\n client side, all characters except `[-_.~/0-9a-zA-Z]` are percent-encoded.\n The server side does the reverse decoding, except \"%2F\" and \"%2f\" are left\n unchanged. Such variables show up in the\n [Discovery\n Document](https://developers.google.com/discovery/v1/reference/apis) as\n `{+var}`.\n\n ## Using gRPC API Service Configuration\n\n gRPC API Service Configuration (service config) is a configuration language\n for configuring a gRPC service to become a user-facing product. The\n service config is simply the YAML representation of the `google.api.Service`\n proto message.\n\n As an alternative to annotating your proto file, you can configure gRPC\n transcoding in your service config YAML files. You do this by specifying a\n `HttpRule` that maps the gRPC method to a REST endpoint, achieving the same\n effect as the proto annotation. This can be particularly useful if you\n have a proto that is reused in multiple services. Note that any transcoding\n specified in the service config will override any matching transcoding\n configuration in the proto.\n\n Example:\n\n http:\n rules:\n # Selects a gRPC method and applies HttpRule to it.\n - selector: example.v1.Messaging.GetMessage\n get: /v1/messages/{message_id}/{sub.subfield}\n\n ## Special notes\n\n When gRPC Transcoding is used to map a gRPC to JSON REST endpoints, the\n proto to JSON conversion must follow the [proto3\n specification](https://developers.google.com/protocol-buffers/docs/proto3#json).\n\n While the single segment variable follows the semantics of\n [RFC 6570](https://tools.ietf.org/html/rfc6570) Section 3.2.2 Simple String\n Expansion, the multi segment variable **does not** follow RFC 6570 Section\n 3.2.3 Reserved Expansion. The reason is that the Reserved Expansion\n does not expand special characters like `?` and `#`, which would lead\n to invalid URLs. As the result, gRPC Transcoding uses a custom encoding\n for multi segment variables.\n\n The path variables **must not** refer to any repeated or mapped field,\n because client libraries are not capable of handling such variable expansion.\n\n The path variables **must not** capture the leading \"/\" character. The reason\n is that the most common use case \"{var}\" does not capture the leading \"/\"\n character. For consistency, all path variables must share the same behavior.\n\n Repeated message fields must not be mapped to URL query parameters, because\n no client library can support such complicated mapping.\n\n If an API needs to use a JSON array for request or response body, it can map\n the request or response body to a repeated field. However, some gRPC\n Transcoding implementations may not support this feature.",
|
|
96233
|
-
"name": "
|
|
96574
|
+
"description": "Wrappers",
|
|
96575
|
+
"name": "Wrappers",
|
|
96234
96576
|
"members": [
|
|
96235
96577
|
{
|
|
96236
96578
|
"kind": "field",
|
|
96237
|
-
"name": "
|
|
96238
|
-
},
|
|
96239
|
-
{
|
|
96240
|
-
"kind": "field",
|
|
96241
|
-
"name": "get"
|
|
96579
|
+
"name": "stringValue"
|
|
96242
96580
|
},
|
|
96243
96581
|
{
|
|
96244
96582
|
"kind": "field",
|
|
96245
|
-
"name": "
|
|
96583
|
+
"name": "int32Value"
|
|
96246
96584
|
},
|
|
96247
96585
|
{
|
|
96248
96586
|
"kind": "field",
|
|
96249
|
-
"name": "
|
|
96587
|
+
"name": "int64Value"
|
|
96250
96588
|
},
|
|
96251
96589
|
{
|
|
96252
96590
|
"kind": "field",
|
|
96253
|
-
"name": "
|
|
96591
|
+
"name": "floatValue"
|
|
96254
96592
|
},
|
|
96255
96593
|
{
|
|
96256
96594
|
"kind": "field",
|
|
96257
|
-
"name": "
|
|
96595
|
+
"name": "doubleValue"
|
|
96258
96596
|
},
|
|
96259
96597
|
{
|
|
96260
96598
|
"kind": "field",
|
|
96261
|
-
"name": "
|
|
96599
|
+
"name": "boolValue"
|
|
96262
96600
|
},
|
|
96263
96601
|
{
|
|
96264
96602
|
"kind": "field",
|
|
96265
|
-
"name": "
|
|
96603
|
+
"name": "uint32Value"
|
|
96266
96604
|
},
|
|
96267
96605
|
{
|
|
96268
96606
|
"kind": "field",
|
|
96269
|
-
"name": "
|
|
96607
|
+
"name": "uint64Value"
|
|
96270
96608
|
},
|
|
96271
96609
|
{
|
|
96272
96610
|
"kind": "field",
|
|
96273
|
-
"name": "
|
|
96611
|
+
"name": "bytesValue"
|
|
96274
96612
|
},
|
|
96275
96613
|
{
|
|
96276
96614
|
"kind": "method",
|
|
@@ -96291,7 +96629,7 @@
|
|
|
96291
96629
|
"type": {
|
|
96292
96630
|
"text": "string"
|
|
96293
96631
|
},
|
|
96294
|
-
"default": "'
|
|
96632
|
+
"default": "'furo.cube.Wrappers'"
|
|
96295
96633
|
},
|
|
96296
96634
|
{
|
|
96297
96635
|
"kind": "field",
|
|
@@ -96299,7 +96637,7 @@
|
|
|
96299
96637
|
"type": {
|
|
96300
96638
|
"text": "string"
|
|
96301
96639
|
},
|
|
96302
|
-
"default": "'HttpRule # gRPC Transcoding\\n\\n gRPC Transcoding is a feature for mapping between a gRPC method and one or\\n more HTTP REST endpoints. It allows developers to build a single API service\\n that supports both gRPC APIs and REST APIs. Many systems, including [Google\\n APIs](https://github.com/googleapis/googleapis),\\n [Cloud Endpoints](https://cloud.google.com/endpoints), [gRPC\\n Gateway](https://github.com/grpc-ecosystem/grpc-gateway),\\n and [Envoy](https://github.com/envoyproxy/envoy) proxy support this feature\\n and use it for large scale production services.\\n\\n `HttpRule` defines the schema of the gRPC/REST mapping. The mapping specifies\\n how different portions of the gRPC request message are mapped to the URL\\n path, URL query parameters, and HTTP request body. It also controls how the\\n gRPC response message is mapped to the HTTP response body. `HttpRule` is\\n typically specified as an `google.api.http` annotation on the gRPC method.\\n\\n Each mapping specifies a URL path template and an HTTP method. The path\\n template may refer to one or more fields in the gRPC request message, as long\\n as each field is a non-repeated field with a primitive (non-message) type.\\n The path template controls how fields of the request message are mapped to\\n the URL path.\\n\\n Example:\\n\\n service Messaging {\\n rpc GetMessage(GetMessageRequest) returns (Message) {\\n option (google.api.http) = {\\n get: \"/v1/{name=messages/*}\"\\n };\\n }\\n }\\n message GetMessageRequest {\\n string name = 1; // Mapped to URL path.\\n }\\n message Message {\\n string text = 1; // The resource content.\\n }\\n\\n This enables an HTTP REST to gRPC mapping as below:\\n\\n HTTP | gRPC\\n -----|-----\\n `GET /v1/messages/123456` | `GetMessage(name: \"messages/123456\")`\\n\\n Any fields in the request message which are not bound by the path template\\n automatically become HTTP query parameters if there is no HTTP request body.\\n For example:\\n\\n service Messaging {\\n rpc GetMessage(GetMessageRequest) returns (Message) {\\n option (google.api.http) = {\\n get:\"/v1/messages/{message_id}\"\\n };\\n }\\n }\\n message GetMessageRequest {\\n message SubMessage {\\n string subfield = 1;\\n }\\n string message_id = 1; // Mapped to URL path.\\n int64 revision = 2; // Mapped to URL query parameter `revision`.\\n SubMessage sub = 3; // Mapped to URL query parameter `sub.subfield`.\\n }\\n\\n This enables a HTTP JSON to RPC mapping as below:\\n\\n HTTP | gRPC\\n -----|-----\\n `GET /v1/messages/123456?revision=2&sub.subfield=foo` |\\n `GetMessage(message_id: \"123456\" revision: 2 sub: SubMessage(subfield:\\n \"foo\"))`\\n\\n Note that fields which are mapped to URL query parameters must have a\\n primitive type or a repeated primitive type or a non-repeated message type.\\n In the case of a repeated type, the parameter can be repeated in the URL\\n as `...?param=A¶m=B`. In the case of a message type, each field of the\\n message is mapped to a separate parameter, such as\\n `...?foo.a=A&foo.b=B&foo.c=C`.\\n\\n For HTTP methods that allow a request body, the `body` field\\n specifies the mapping. Consider a REST update method on the\\n message resource collection:\\n\\n service Messaging {\\n rpc UpdateMessage(UpdateMessageRequest) returns (Message) {\\n option (google.api.http) = {\\n patch: \"/v1/messages/{message_id}\"\\n body: \"message\"\\n };\\n }\\n }\\n message UpdateMessageRequest {\\n string message_id = 1; // mapped to the URL\\n Message message = 2; // mapped to the body\\n }\\n\\n The following HTTP JSON to RPC mapping is enabled, where the\\n representation of the JSON in the request body is determined by\\n protos JSON encoding:\\n\\n HTTP | gRPC\\n -----|-----\\n `PATCH /v1/messages/123456 { \"text\": \"Hi!\" }` | `UpdateMessage(message_id:\\n \"123456\" message { text: \"Hi!\" })`\\n\\n The special name `*` can be used in the body mapping to define that\\n every field not bound by the path template should be mapped to the\\n request body. This enables the following alternative definition of\\n the update method:\\n\\n service Messaging {\\n rpc UpdateMessage(Message) returns (Message) {\\n option (google.api.http) = {\\n patch: \"/v1/messages/{message_id}\"\\n body: \"*\"\\n };\\n }\\n }\\n message Message {\\n string message_id = 1;\\n string text = 2;\\n }\\n\\n\\n The following HTTP JSON to RPC mapping is enabled:\\n\\n HTTP | gRPC\\n -----|-----\\n `PATCH /v1/messages/123456 { \"text\": \"Hi!\" }` | `UpdateMessage(message_id:\\n \"123456\" text: \"Hi!\")`\\n\\n Note that when using `*` in the body mapping, it is not possible to\\n have HTTP parameters, as all fields not bound by the path end in\\n the body. This makes this option more rarely used in practice when\\n defining REST APIs. The common usage of `*` is in custom methods\\n which don\\'t use the URL at all for transferring data.\\n\\n It is possible to define multiple HTTP methods for one RPC by using\\n the `additional_bindings` option. Example:\\n\\n service Messaging {\\n rpc GetMessage(GetMessageRequest) returns (Message) {\\n option (google.api.http) = {\\n get: \"/v1/messages/{message_id}\"\\n additional_bindings {\\n get: \"/v1/users/{user_id}/messages/{message_id}\"\\n }\\n };\\n }\\n }\\n message GetMessageRequest {\\n string message_id = 1;\\n string user_id = 2;\\n }\\n\\n This enables the following two alternative HTTP JSON to RPC mappings:\\n\\n HTTP | gRPC\\n -----|-----\\n `GET /v1/messages/123456` | `GetMessage(message_id: \"123456\")`\\n `GET /v1/users/me/messages/123456` | `GetMessage(user_id: \"me\" message_id:\\n \"123456\")`\\n\\n ## Rules for HTTP mapping\\n\\n 1. Leaf request fields (recursive expansion nested messages in the request\\n message) are classified into three categories:\\n - Fields referred by the path template. They are passed via the URL path.\\n - Fields referred by the [HttpRule.body][google.api.HttpRule.body]. They\\n are passed via the HTTP\\n request body.\\n - All other fields are passed via the URL query parameters, and the\\n parameter name is the field path in the request message. A repeated\\n field can be represented as multiple query parameters under the same\\n name.\\n 2. If [HttpRule.body][google.api.HttpRule.body] is \"*\", there is no URL\\n query parameter, all fields\\n are passed via URL path and HTTP request body.\\n 3. If [HttpRule.body][google.api.HttpRule.body] is omitted, there is no HTTP\\n request body, all\\n fields are passed via URL path and URL query parameters.\\n\\n ### Path template syntax\\n\\n Template = \"/\" Segments [ Verb ] ;\\n Segments = Segment { \"/\" Segment } ;\\n Segment = \"*\" | \"**\" | LITERAL | Variable ;\\n Variable = \"{\" FieldPath [ \"=\" Segments ] \"}\" ;\\n FieldPath = IDENT { \".\" IDENT } ;\\n Verb = \":\" LITERAL ;\\n\\n The syntax `*` matches a single URL path segment. The syntax `**` matches\\n zero or more URL path segments, which must be the last part of the URL path\\n except the `Verb`.\\n\\n The syntax `Variable` matches part of the URL path as specified by its\\n template. A variable template must not contain other variables. If a variable\\n matches a single path segment, its template may be omitted, e.g. `{var}`\\n is equivalent to `{var=*}`.\\n\\n The syntax `LITERAL` matches literal text in the URL path. If the `LITERAL`\\n contains any reserved character, such characters should be percent-encoded\\n before the matching.\\n\\n If a variable contains exactly one path segment, such as `\"{var}\"` or\\n `\"{var=*}\"`, when such a variable is expanded into a URL path on the client\\n side, all characters except `[-_.~0-9a-zA-Z]` are percent-encoded. The\\n server side does the reverse decoding. Such variables show up in the\\n [Discovery\\n Document](https://developers.google.com/discovery/v1/reference/apis) as\\n `{var}`.\\n\\n If a variable contains multiple path segments, such as `\"{var=foo/*}\"`\\n or `\"{var=**}\"`, when such a variable is expanded into a URL path on the\\n client side, all characters except `[-_.~/0-9a-zA-Z]` are percent-encoded.\\n The server side does the reverse decoding, except \"%2F\" and \"%2f\" are left\\n unchanged. Such variables show up in the\\n [Discovery\\n Document](https://developers.google.com/discovery/v1/reference/apis) as\\n `{+var}`.\\n\\n ## Using gRPC API Service Configuration\\n\\n gRPC API Service Configuration (service config) is a configuration language\\n for configuring a gRPC service to become a user-facing product. The\\n service config is simply the YAML representation of the `google.api.Service`\\n proto message.\\n\\n As an alternative to annotating your proto file, you can configure gRPC\\n transcoding in your service config YAML files. You do this by specifying a\\n `HttpRule` that maps the gRPC method to a REST endpoint, achieving the same\\n effect as the proto annotation. This can be particularly useful if you\\n have a proto that is reused in multiple services. Note that any transcoding\\n specified in the service config will override any matching transcoding\\n configuration in the proto.\\n\\n Example:\\n\\n http:\\n rules:\\n # Selects a gRPC method and applies HttpRule to it.\\n - selector: example.v1.Messaging.GetMessage\\n get: /v1/messages/{message_id}/{sub.subfield}\\n\\n ## Special notes\\n\\n When gRPC Transcoding is used to map a gRPC to JSON REST endpoints, the\\n proto to JSON conversion must follow the [proto3\\n specification](https://developers.google.com/protocol-buffers/docs/proto3#json).\\n\\n While the single segment variable follows the semantics of\\n [RFC 6570](https://tools.ietf.org/html/rfc6570) Section 3.2.2 Simple String\\n Expansion, the multi segment variable **does not** follow RFC 6570 Section\\n 3.2.3 Reserved Expansion. The reason is that the Reserved Expansion\\n does not expand special characters like `?` and `#`, which would lead\\n to invalid URLs. As the result, gRPC Transcoding uses a custom encoding\\n for multi segment variables.\\n\\n The path variables **must not** refer to any repeated or mapped field,\\n because client libraries are not capable of handling such variable expansion.\\n\\n The path variables **must not** capture the leading \"/\" character. The reason\\n is that the most common use case \"{var}\" does not capture the leading \"/\"\\n character. For consistency, all path variables must share the same behavior.\\n\\n Repeated message fields must not be mapped to URL query parameters, because\\n no client library can support such complicated mapping.\\n\\n If an API needs to use a JSON array for request or response body, it can map\\n the request or response body to a repeated field. However, some gRPC\\n Transcoding implementations may not support this feature.'"
|
|
96640
|
+
"default": "'Wrappers'"
|
|
96303
96641
|
},
|
|
96304
96642
|
{
|
|
96305
96643
|
"kind": "field",
|
|
@@ -96307,57 +96645,52 @@
|
|
|
96307
96645
|
"type": {
|
|
96308
96646
|
"text": "array"
|
|
96309
96647
|
},
|
|
96310
|
-
"default": "[ { fieldName: '
|
|
96648
|
+
"default": "[ { fieldName: 'stringValue', protoName: 'string_value', FieldConstructor: StringValue, constraints: {}, description: '', }, { fieldName: 'int32Value', protoName: 'int32_value', FieldConstructor: Int32Value, constraints: {}, description: '', }, { fieldName: 'int64Value', protoName: 'int64_value', FieldConstructor: Int64Value, constraints: {}, description: '', }, { fieldName: 'floatValue', protoName: 'float_value', FieldConstructor: FloatValue, constraints: {}, description: '', }, { fieldName: 'doubleValue', protoName: 'double_value', FieldConstructor: DoubleValue, constraints: {}, description: '', }, { fieldName: 'boolValue', protoName: 'bool_value', FieldConstructor: BoolValue, constraints: {}, description: '', }, { fieldName: 'uint32Value', protoName: 'uint32_value', FieldConstructor: UInt32Value, constraints: {}, description: '', }, { fieldName: 'uint64Value', protoName: 'uint64_value', FieldConstructor: UInt64Value, constraints: {}, description: '', }, { fieldName: 'bytesValue', protoName: 'bytes_value', FieldConstructor: BytesValue, constraints: {}, description: '', }, ]"
|
|
96311
96649
|
},
|
|
96312
96650
|
{
|
|
96313
96651
|
"kind": "field",
|
|
96314
|
-
"name": "
|
|
96315
|
-
"default": "new
|
|
96316
|
-
},
|
|
96317
|
-
{
|
|
96318
|
-
"kind": "field",
|
|
96319
|
-
"name": "_get",
|
|
96320
|
-
"default": "new STRING(undefined, this, 'get')"
|
|
96652
|
+
"name": "_stringValue",
|
|
96653
|
+
"default": "new StringValue(undefined, this, 'stringValue')"
|
|
96321
96654
|
},
|
|
96322
96655
|
{
|
|
96323
96656
|
"kind": "field",
|
|
96324
|
-
"name": "
|
|
96325
|
-
"default": "new
|
|
96657
|
+
"name": "_int32Value",
|
|
96658
|
+
"default": "new Int32Value(undefined, this, 'int32Value')"
|
|
96326
96659
|
},
|
|
96327
96660
|
{
|
|
96328
96661
|
"kind": "field",
|
|
96329
|
-
"name": "
|
|
96330
|
-
"default": "new
|
|
96662
|
+
"name": "_int64Value",
|
|
96663
|
+
"default": "new Int64Value(undefined, this, 'int64Value')"
|
|
96331
96664
|
},
|
|
96332
96665
|
{
|
|
96333
96666
|
"kind": "field",
|
|
96334
|
-
"name": "
|
|
96335
|
-
"default": "new
|
|
96667
|
+
"name": "_floatValue",
|
|
96668
|
+
"default": "new FloatValue(undefined, this, 'floatValue')"
|
|
96336
96669
|
},
|
|
96337
96670
|
{
|
|
96338
96671
|
"kind": "field",
|
|
96339
|
-
"name": "
|
|
96340
|
-
"default": "new
|
|
96672
|
+
"name": "_doubleValue",
|
|
96673
|
+
"default": "new DoubleValue(undefined, this, 'doubleValue')"
|
|
96341
96674
|
},
|
|
96342
96675
|
{
|
|
96343
96676
|
"kind": "field",
|
|
96344
|
-
"name": "
|
|
96345
|
-
"default": "new
|
|
96677
|
+
"name": "_boolValue",
|
|
96678
|
+
"default": "new BoolValue(undefined, this, 'boolValue')"
|
|
96346
96679
|
},
|
|
96347
96680
|
{
|
|
96348
96681
|
"kind": "field",
|
|
96349
|
-
"name": "
|
|
96350
|
-
"default": "new
|
|
96682
|
+
"name": "_uint32Value",
|
|
96683
|
+
"default": "new UInt32Value(undefined, this, 'uint32Value')"
|
|
96351
96684
|
},
|
|
96352
96685
|
{
|
|
96353
96686
|
"kind": "field",
|
|
96354
|
-
"name": "
|
|
96355
|
-
"default": "new
|
|
96687
|
+
"name": "_uint64Value",
|
|
96688
|
+
"default": "new UInt64Value(undefined, this, 'uint64Value')"
|
|
96356
96689
|
},
|
|
96357
96690
|
{
|
|
96358
96691
|
"kind": "field",
|
|
96359
|
-
"name": "
|
|
96360
|
-
"default": "new
|
|
96692
|
+
"name": "_bytesValue",
|
|
96693
|
+
"default": "new BytesValue(undefined, this, 'bytesValue')"
|
|
96361
96694
|
},
|
|
96362
96695
|
{
|
|
96363
96696
|
"kind": "field",
|
|
@@ -97203,17 +97536,17 @@
|
|
|
97203
97536
|
"exports": [
|
|
97204
97537
|
{
|
|
97205
97538
|
"kind": "js",
|
|
97206
|
-
"name": "
|
|
97539
|
+
"name": "Wrappers",
|
|
97207
97540
|
"declaration": {
|
|
97208
|
-
"name": "
|
|
97209
|
-
"module": "dist/protoc-gen-open-models/
|
|
97541
|
+
"name": "Wrappers",
|
|
97542
|
+
"module": "dist/protoc-gen-open-models/furo/cube/Wrappers.js"
|
|
97210
97543
|
}
|
|
97211
97544
|
}
|
|
97212
97545
|
]
|
|
97213
97546
|
},
|
|
97214
97547
|
{
|
|
97215
97548
|
"kind": "javascript-module",
|
|
97216
|
-
"path": "dist/protoc-gen-open-models/
|
|
97549
|
+
"path": "dist/protoc-gen-open-models/furo/cube/Wrappers.js.map",
|
|
97217
97550
|
"declarations": [],
|
|
97218
97551
|
"exports": []
|
|
97219
97552
|
},
|
|
@@ -97331,7 +97664,7 @@
|
|
|
97331
97664
|
"type": {
|
|
97332
97665
|
"text": "array"
|
|
97333
97666
|
},
|
|
97334
|
-
"default": "[ { fieldName: 'stringValue', protoName: 'string_value', FieldConstructor: StringValue, constraints: {
|
|
97667
|
+
"default": "[ { fieldName: 'stringValue', protoName: 'string_value', FieldConstructor: StringValue, constraints: { max_length: 10, min_length: 3, pattern: '^-*$', required: true, }, description: '', }, { fieldName: 'int32Value', protoName: 'int32_value', FieldConstructor: Int32Value, constraints: { maximum: 10, minimum: 3, multiple_of: 3, required: true, }, description: '', }, { fieldName: 'int64Value', protoName: 'int64_value', FieldConstructor: Int64Value, constraints: { maximum: 10, minimum: 3, multiple_of: 3, required: true, }, description: '', }, { fieldName: 'floatValue', protoName: 'float_value', FieldConstructor: FloatValue, constraints: {}, description: '', }, { fieldName: 'doubleValue', protoName: 'double_value', FieldConstructor: DoubleValue, constraints: {}, description: '', }, { fieldName: 'boolValue', protoName: 'bool_value', FieldConstructor: BoolValue, constraints: {}, description: '', }, { fieldName: 'uint32Value', protoName: 'uint32_value', FieldConstructor: UInt32Value, constraints: {}, description: '', }, { fieldName: 'uint64Value', protoName: 'uint64_value', FieldConstructor: UInt64Value, constraints: {}, description: '', }, { fieldName: 'bytesValue', protoName: 'bytes_value', FieldConstructor: BytesValue, constraints: {}, description: '', }, { fieldName: 'exclInt32Value', protoName: 'excl_int32_value', FieldConstructor: Int32Value, constraints: { maximum: 10, minimum: 3, exclusive_maximum: true, exclusive_minimum: true, multiple_of: 3, }, description: '', }, { fieldName: 'exclInt64Value', protoName: 'excl_int64_value', FieldConstructor: Int64Value, constraints: { maximum: 10, minimum: 3, exclusive_maximum: true, exclusive_minimum: true, multiple_of: 3, }, description: '', }, ]"
|
|
97335
97668
|
},
|
|
97336
97669
|
{
|
|
97337
97670
|
"kind": "field",
|
|
@@ -97394,7 +97727,7 @@
|
|
|
97394
97727
|
"type": {
|
|
97395
97728
|
"text": "object"
|
|
97396
97729
|
},
|
|
97397
|
-
"default": "{ exclInt32Value: 3.
|
|
97730
|
+
"default": "{ exclInt32Value: 3.0, exclInt64Value: '3', int32Value: 3.0, int64Value: '3', stringValue: 'default', }"
|
|
97398
97731
|
},
|
|
97399
97732
|
{
|
|
97400
97733
|
"kind": "field",
|
|
@@ -98294,7 +98627,7 @@
|
|
|
98294
98627
|
"type": {
|
|
98295
98628
|
"text": "array"
|
|
98296
98629
|
},
|
|
98297
|
-
"default": "[ { fieldName: 'value', protoName: 'value', FieldConstructor: STRING, constraints: {}, description: 'Value is set as a quoted number, use your numeric parser of choice' } ]"
|
|
98630
|
+
"default": "[ { fieldName: 'value', protoName: 'value', FieldConstructor: STRING, constraints: {}, description: 'Value is set as a quoted number, use your numeric parser of choice', }, ]"
|
|
98298
98631
|
},
|
|
98299
98632
|
{
|
|
98300
98633
|
"kind": "field",
|
|
@@ -99207,7 +99540,7 @@
|
|
|
99207
99540
|
"type": {
|
|
99208
99541
|
"text": "array"
|
|
99209
99542
|
},
|
|
99210
|
-
"default": "[ { fieldName: 'value', protoName: 'value', FieldConstructor: STRING, constraints: {}, description: 'Value is set as a quoted number, use your numeric parser of choice' } ]"
|
|
99543
|
+
"default": "[ { fieldName: 'value', protoName: 'value', FieldConstructor: STRING, constraints: {}, description: 'Value is set as a quoted number, use your numeric parser of choice', }, ]"
|
|
99211
99544
|
},
|
|
99212
99545
|
{
|
|
99213
99546
|
"kind": "field",
|
|
@@ -100124,7 +100457,7 @@
|
|
|
100124
100457
|
"type": {
|
|
100125
100458
|
"text": "array"
|
|
100126
100459
|
},
|
|
100127
|
-
"default": "[ { fieldName: 'start', protoName: 'start', FieldConstructor: FuroTypeDecimal, constraints: {}, description: 'Optional. Inclusive start of the decimal range.' }, { fieldName: 'end', protoName: 'end', FieldConstructor: FuroTypeDecimal, constraints: {}, description: 'Optional. Exclusive end of the decimal range.' } ]"
|
|
100460
|
+
"default": "[ { fieldName: 'start', protoName: 'start', FieldConstructor: FuroTypeDecimal, constraints: {}, description: 'Optional. Inclusive start of the decimal range.', }, { fieldName: 'end', protoName: 'end', FieldConstructor: FuroTypeDecimal, constraints: {}, description: 'Optional. Exclusive end of the decimal range.', }, ]"
|
|
100128
100461
|
},
|
|
100129
100462
|
{
|
|
100130
100463
|
"kind": "field",
|
|
@@ -101046,7 +101379,7 @@
|
|
|
101046
101379
|
"type": {
|
|
101047
101380
|
"text": "array"
|
|
101048
101381
|
},
|
|
101049
|
-
"default": "[ { fieldName: 'displayName', protoName: 'display_name', FieldConstructor: STRING, constraints: {}, description: '' }, { fieldName: 'field', protoName: 'field', FieldConstructor: FuroTypeOther, constraints: {}, description: '' } ]"
|
|
101382
|
+
"default": "[ { fieldName: 'displayName', protoName: 'display_name', FieldConstructor: STRING, constraints: {}, description: '', }, { fieldName: 'field', protoName: 'field', FieldConstructor: FuroTypeOther, constraints: {}, description: '', }, ]"
|
|
101050
101383
|
},
|
|
101051
101384
|
{
|
|
101052
101385
|
"kind": "field",
|
|
@@ -101968,7 +102301,7 @@
|
|
|
101968
102301
|
"type": {
|
|
101969
102302
|
"text": "array"
|
|
101970
102303
|
},
|
|
101971
|
-
"default": "[ { fieldName: 'key', protoName: 'key', FieldConstructor: STRING, constraints: {}, description: '' }, { fieldName: 'value', protoName: 'value', FieldConstructor: STRING, constraints: {}, description: '' } ]"
|
|
102304
|
+
"default": "[ { fieldName: 'key', protoName: 'key', FieldConstructor: STRING, constraints: {}, description: '', }, { fieldName: 'value', protoName: 'value', FieldConstructor: STRING, constraints: {}, description: '', }, ]"
|
|
101972
102305
|
},
|
|
101973
102306
|
{
|
|
101974
102307
|
"kind": "field",
|
|
@@ -102926,7 +103259,7 @@
|
|
|
102926
103259
|
"type": {
|
|
102927
103260
|
"text": "array"
|
|
102928
103261
|
},
|
|
102929
|
-
"default": "[ { fieldName: 'refSystem', protoName: 'ref_system', FieldConstructor: (ENUM), constraints: {}, description: 'related to the master of the object - who gives the id' }, { fieldName: 'refType', protoName: 'ref_type', FieldConstructor: (ENUM), constraints: {}, description: 'Type from the master objects system' }, { fieldName: 'bookingCenter', protoName: 'booking_center', FieldConstructor: (ENUM), constraints: {}, description: 'booking center' }, { fieldName: 'attributes', protoName: 'attributes', FieldConstructor: (MAP), ValueConstructor: STRING, constraints: {}, description: 'Attributes for a value, something like confidential-msg: you are not allowed to see this value' }, { fieldName: 'id', protoName: 'id', FieldConstructor: STRING, constraints: {
|
|
103262
|
+
"default": "[ { fieldName: 'refSystem', protoName: 'ref_system', FieldConstructor: (ENUM), constraints: {}, description: 'related to the master of the object - who gives the id', }, { fieldName: 'refType', protoName: 'ref_type', FieldConstructor: (ENUM), constraints: {}, description: 'Type from the master objects system', }, { fieldName: 'bookingCenter', protoName: 'booking_center', FieldConstructor: (ENUM), constraints: {}, description: 'booking center', }, { fieldName: 'attributes', protoName: 'attributes', FieldConstructor: (MAP), ValueConstructor: STRING, constraints: {}, description: 'Attributes for a value, something like confidential-msg: you are not allowed to see this value', }, { fieldName: 'id', protoName: 'id', FieldConstructor: STRING, constraints: { max_length: 10, min_length: 3, pattern: '^-*$', required: true, }, description: '', }, { fieldName: 'stringArray', protoName: 'string_array', FieldConstructor: STRING, constraints: { read_only: true, max_items: 4, required: true }, description: '', }, { fieldName: 'repeatedDecimal', protoName: 'repeated_decimal', FieldConstructor: FuroTypeDecimal, constraints: { minimum: 3.1, required: true }, description: '', }, { fieldName: 'decRange', protoName: 'dec_range', FieldConstructor: FuroTypeDecimalRange, constraints: { read_only: true }, description: '', }, { fieldName: 'any', protoName: 'any', FieldConstructor: ANY, constraints: {}, description: '', }, { fieldName: 'fatString', protoName: 'fat_string', FieldConstructor: FuroFatString, constraints: {}, description: '', }, { fieldName: 'trueFalse', protoName: 'true_false', FieldConstructor: BOOLEAN, constraints: {}, description: '', }, ]"
|
|
102930
103263
|
},
|
|
102931
103264
|
{
|
|
102932
103265
|
"kind": "field",
|
|
@@ -102989,7 +103322,7 @@
|
|
|
102989
103322
|
"type": {
|
|
102990
103323
|
"text": "object"
|
|
102991
103324
|
},
|
|
102992
|
-
"default": "{ attributes: {
|
|
103325
|
+
"default": "{ attributes: { we: 'have' }, bookingCenter: 'BBC_CH', decRange: { start: { value: '123' } }, id: 'default', stringArray: ['A', 'B', 'C'], }"
|
|
102993
103326
|
},
|
|
102994
103327
|
{
|
|
102995
103328
|
"kind": "field",
|
|
@@ -103893,7 +104226,7 @@
|
|
|
103893
104226
|
"type": {
|
|
103894
104227
|
"text": "array"
|
|
103895
104228
|
},
|
|
103896
|
-
"default": "[ { fieldName: 'key', protoName: 'key', FieldConstructor: STRING, constraints: {}, description: '' }, { fieldName: 'value', protoName: 'value', FieldConstructor: STRING, constraints: {}, description: '' } ]"
|
|
104229
|
+
"default": "[ { fieldName: 'key', protoName: 'key', FieldConstructor: STRING, constraints: {}, description: '', }, { fieldName: 'value', protoName: 'value', FieldConstructor: STRING, constraints: {}, description: '', }, ]"
|
|
103897
104230
|
},
|
|
103898
104231
|
{
|
|
103899
104232
|
"kind": "field",
|
|
@@ -104851,7 +105184,7 @@
|
|
|
104851
105184
|
"type": {
|
|
104852
105185
|
"text": "array"
|
|
104853
105186
|
},
|
|
104854
|
-
"default": "[ { fieldName: 'refSystem', protoName: 'ref_system', FieldConstructor: (ENUM), constraints: {}, description: 'related to the master of the object - who gives the id' }, { fieldName: 'refType', protoName: 'ref_type', FieldConstructor: (ENUM), constraints: {}, description: 'Type from the master objects system' }, { fieldName: 'bookingCenter', protoName: 'booking_center', FieldConstructor: (ENUM), constraints: {}, description: 'booking center' }, { fieldName: 'attributes', protoName: 'attributes', FieldConstructor: (MAP), ValueConstructor: STRING, constraints: {}, description: 'Attributes for a value, something like confidential-msg: you are not allowed to see this value' }, { fieldName: 'id', protoName: 'id', FieldConstructor: STRING, constraints: {}, description: 'for example obj_id or your own uuid - the unique id for the source system (together with type)' }, { fieldName: 'stringArray', protoName: 'string_array', FieldConstructor: STRING, constraints: {
|
|
105187
|
+
"default": "[ { fieldName: 'refSystem', protoName: 'ref_system', FieldConstructor: (ENUM), constraints: {}, description: 'related to the master of the object - who gives the id', }, { fieldName: 'refType', protoName: 'ref_type', FieldConstructor: (ENUM), constraints: {}, description: 'Type from the master objects system', }, { fieldName: 'bookingCenter', protoName: 'booking_center', FieldConstructor: (ENUM), constraints: {}, description: 'booking center', }, { fieldName: 'attributes', protoName: 'attributes', FieldConstructor: (MAP), ValueConstructor: STRING, constraints: {}, description: 'Attributes for a value, something like confidential-msg: you are not allowed to see this value', }, { fieldName: 'id', protoName: 'id', FieldConstructor: STRING, constraints: {}, description: 'for example obj_id or your own uuid - the unique id for the source system (together with type)', }, { fieldName: 'stringArray', protoName: 'string_array', FieldConstructor: STRING, constraints: { read_only: true, max_items: 4, required: true }, description: '', }, { fieldName: 'repeatedDecimal', protoName: 'repeated_decimal', FieldConstructor: FuroTypeDecimal, constraints: {}, description: '', }, { fieldName: 'decRange', protoName: 'dec_range', FieldConstructor: FuroTypeDecimalRange, constraints: {}, description: '', }, { fieldName: 'any', protoName: 'any', FieldConstructor: ANY, constraints: {}, description: '', }, { fieldName: 'fatString', protoName: 'fat_string', FieldConstructor: FuroFatString, constraints: {}, description: '', }, { fieldName: 'trueFalse', protoName: 'true_false', FieldConstructor: BOOLEAN, constraints: {}, description: '', }, ]"
|
|
104855
105188
|
},
|
|
104856
105189
|
{
|
|
104857
105190
|
"kind": "field",
|
|
@@ -104914,7 +105247,7 @@
|
|
|
104914
105247
|
"type": {
|
|
104915
105248
|
"text": "object"
|
|
104916
105249
|
},
|
|
104917
|
-
"default": "{ stringArray: [
|
|
105250
|
+
"default": "{ stringArray: ['A', 'B', 'C'], }"
|
|
104918
105251
|
},
|
|
104919
105252
|
{
|
|
104920
105253
|
"kind": "field",
|
|
@@ -105818,7 +106151,7 @@
|
|
|
105818
106151
|
"type": {
|
|
105819
106152
|
"text": "array"
|
|
105820
106153
|
},
|
|
105821
|
-
"default": "[ { fieldName: 'primitiveInt32', protoName: 'primitive_int32', FieldConstructor: INT32, constraints: {
|
|
106154
|
+
"default": "[ { fieldName: 'primitiveInt32', protoName: 'primitive_int32', FieldConstructor: INT32, constraints: { maximum: 1000, minimum: 5, exclusive_maximum: true, exclusive_minimum: true, multiple_of: 5, }, description: 'Value is set as a quoted number, use your numeric parser of choice', }, { fieldName: 'repeatedPrimitiveInt32', protoName: 'repeated_primitive_int32', FieldConstructor: INT32, constraints: {}, description: '', }, ]"
|
|
105822
106155
|
},
|
|
105823
106156
|
{
|
|
105824
106157
|
"kind": "field",
|
|
@@ -106744,7 +107077,7 @@
|
|
|
106744
107077
|
"type": {
|
|
106745
107078
|
"text": "array"
|
|
106746
107079
|
},
|
|
106747
|
-
"default": "[ { fieldName: 'primitiveInt64', protoName: 'primitive_int64', FieldConstructor: INT64, constraints: {
|
|
107080
|
+
"default": "[ { fieldName: 'primitiveInt64', protoName: 'primitive_int64', FieldConstructor: INT64, constraints: { maximum: 1000, minimum: 5, exclusive_maximum: true, exclusive_minimum: true, multiple_of: 5, }, description: 'Value is set as a quoted number, use your numeric parser of choice', }, { fieldName: 'repeatedPrimitiveInt64', protoName: 'repeated_primitive_int64', FieldConstructor: INT64, constraints: {}, description: '', }, { fieldName: 'primitiveInt64Excl', protoName: 'primitive_int64_excl', FieldConstructor: INT64, constraints: { maximum: 1000, minimum: 5, multiple_of: 5 }, description: '', }, ]"
|
|
106748
107081
|
},
|
|
106749
107082
|
{
|
|
106750
107083
|
"kind": "field",
|
|
@@ -107667,7 +108000,7 @@
|
|
|
107667
108000
|
"type": {
|
|
107668
108001
|
"text": "array"
|
|
107669
108002
|
},
|
|
107670
|
-
"default": "[ { fieldName: 'recursion', protoName: 'recursion', FieldConstructor: FuroTypeDeepRecursion, constraints: {}, description: '' } ]"
|
|
108003
|
+
"default": "[ { fieldName: 'recursion', protoName: 'recursion', FieldConstructor: FuroTypeDeepRecursion, constraints: {}, description: '', }, ]"
|
|
107671
108004
|
},
|
|
107672
108005
|
{
|
|
107673
108006
|
"kind": "field",
|
|
@@ -108640,7 +108973,7 @@
|
|
|
108640
108973
|
"type": {
|
|
108641
108974
|
"text": "array"
|
|
108642
108975
|
},
|
|
108643
|
-
"default": "[ { fieldName: 'displayName', protoName: 'display_name', FieldConstructor: STRING, constraints: {}, description: '' }, { fieldName: 'nodes', protoName: 'nodes', FieldConstructor: Tree, constraints: {}, description: 'Array recursion' }, { fieldName: 'recursion', protoName: 'recursion', FieldConstructor: Tree, constraints: {}, description: 'direct recursion' } ]"
|
|
108976
|
+
"default": "[ { fieldName: 'displayName', protoName: 'display_name', FieldConstructor: STRING, constraints: {}, description: '', }, { fieldName: 'nodes', protoName: 'nodes', FieldConstructor: Tree, constraints: {}, description: 'Array recursion', }, { fieldName: 'recursion', protoName: 'recursion', FieldConstructor: Tree, constraints: {}, description: 'direct recursion', }, ]"
|
|
108644
108977
|
},
|
|
108645
108978
|
{
|
|
108646
108979
|
"kind": "field",
|
|
@@ -109575,7 +109908,7 @@
|
|
|
109575
109908
|
"type": {
|
|
109576
109909
|
"text": "array"
|
|
109577
109910
|
},
|
|
109578
|
-
"default": "[ { fieldName: 'uint64', protoName: 'uint64', FieldConstructor: UINT64, constraints: {
|
|
109911
|
+
"default": "[ { fieldName: 'uint64', protoName: 'uint64', FieldConstructor: UINT64, constraints: { maximum: 1000, minimum: 5, multiple_of: 5 }, description: '', }, { fieldName: 'uint32', protoName: 'uint32', FieldConstructor: UINT32, constraints: { maximum: 1000, minimum: 5, multiple_of: 5 }, description: '', }, { fieldName: 'uint64Excl', protoName: 'uint64Excl', FieldConstructor: UINT64, constraints: { maximum: 1000, minimum: 5, exclusive_maximum: true, exclusive_minimum: true, multiple_of: 5, }, description: '', }, { fieldName: 'uint32Excl', protoName: 'uint32Excl', FieldConstructor: UINT32, constraints: { maximum: 1000, minimum: 5, exclusive_maximum: true, exclusive_minimum: true, multiple_of: 5, }, description: '', }, ]"
|
|
109579
109912
|
},
|
|
109580
109913
|
{
|
|
109581
109914
|
"kind": "field",
|
|
@@ -110535,7 +110868,7 @@
|
|
|
110535
110868
|
"type": {
|
|
110536
110869
|
"text": "array"
|
|
110537
110870
|
},
|
|
110538
|
-
"default": "[ { fieldName: 'stringValue', protoName: 'string_value', FieldConstructor: StringValue, constraints: {}, description: '' }, { fieldName: 'int32Value', protoName: 'int32_value', FieldConstructor: Int32Value, constraints: {}, description: '' }, { fieldName: 'int64Value', protoName: 'int64_value', FieldConstructor: Int64Value, constraints: {}, description: '' }, { fieldName: 'floatValue', protoName: 'float_value', FieldConstructor: FloatValue, constraints: {}, description: '' }, { fieldName: 'doubleValue', protoName: 'double_value', FieldConstructor: DoubleValue, constraints: {}, description: '' }, { fieldName: 'boolValue', protoName: 'bool_value', FieldConstructor: BoolValue, constraints: {}, description: '' }, { fieldName: 'uint32Value', protoName: 'uint32_value', FieldConstructor: UInt32Value, constraints: {}, description: '' }, { fieldName: 'uint64Value', protoName: 'uint64_value', FieldConstructor: UInt64Value, constraints: {}, description: '' }, { fieldName: 'bytesValue', protoName: 'bytes_value', FieldConstructor: BytesValue, constraints: {}, description: '' } ]"
|
|
110871
|
+
"default": "[ { fieldName: 'stringValue', protoName: 'string_value', FieldConstructor: StringValue, constraints: {}, description: '', }, { fieldName: 'int32Value', protoName: 'int32_value', FieldConstructor: Int32Value, constraints: {}, description: '', }, { fieldName: 'int64Value', protoName: 'int64_value', FieldConstructor: Int64Value, constraints: {}, description: '', }, { fieldName: 'floatValue', protoName: 'float_value', FieldConstructor: FloatValue, constraints: {}, description: '', }, { fieldName: 'doubleValue', protoName: 'double_value', FieldConstructor: DoubleValue, constraints: {}, description: '', }, { fieldName: 'boolValue', protoName: 'bool_value', FieldConstructor: BoolValue, constraints: {}, description: '', }, { fieldName: 'uint32Value', protoName: 'uint32_value', FieldConstructor: UInt32Value, constraints: {}, description: '', }, { fieldName: 'uint64Value', protoName: 'uint64_value', FieldConstructor: UInt64Value, constraints: {}, description: '', }, { fieldName: 'bytesValue', protoName: 'bytes_value', FieldConstructor: BytesValue, constraints: {}, description: '', }, ]"
|
|
110539
110872
|
},
|
|
110540
110873
|
{
|
|
110541
110874
|
"kind": "field",
|
|
@@ -111492,7 +111825,7 @@
|
|
|
111492
111825
|
"type": {
|
|
111493
111826
|
"text": "array"
|
|
111494
111827
|
},
|
|
111495
|
-
"default": "[ { fieldName: 'key', protoName: 'key', FieldConstructor: STRING, constraints: {}, description: 'Furo annotated type wrapper message for `any`.\\n // Any contains an arbitrary serialized protocol buffer message along with a\\n // URL that describes the type of the serialized message. https://github.com/protocolbuffers/protobuf/blob/master/src/google/protobuf/any.proto' }, { fieldName: 'value', protoName: 'value', FieldConstructor: STRING, constraints: {}, description: 'Furo annotated type wrapper message for `any`.\\n // Any contains an arbitrary serialized protocol buffer message along with a\\n // URL that describes the type of the serialized message. https://github.com/protocolbuffers/protobuf/blob/master/src/google/protobuf/any.proto' } ]"
|
|
111828
|
+
"default": "[ { fieldName: 'key', protoName: 'key', FieldConstructor: STRING, constraints: {}, description: 'Furo annotated type wrapper message for `any`.\\n // Any contains an arbitrary serialized protocol buffer message along with a\\n // URL that describes the type of the serialized message. https://github.com/protocolbuffers/protobuf/blob/master/src/google/protobuf/any.proto', }, { fieldName: 'value', protoName: 'value', FieldConstructor: STRING, constraints: {}, description: 'Furo annotated type wrapper message for `any`.\\n // Any contains an arbitrary serialized protocol buffer message along with a\\n // URL that describes the type of the serialized message. https://github.com/protocolbuffers/protobuf/blob/master/src/google/protobuf/any.proto', }, ]"
|
|
111496
111829
|
},
|
|
111497
111830
|
{
|
|
111498
111831
|
"kind": "field",
|
|
@@ -112414,7 +112747,7 @@
|
|
|
112414
112747
|
"type": {
|
|
112415
112748
|
"text": "array"
|
|
112416
112749
|
},
|
|
112417
|
-
"default": "[ { fieldName: 'key', protoName: 'key', FieldConstructor: STRING, constraints: {}, description: 'Furo annotated type wrapper message for `any`.\\n // Any contains an arbitrary serialized protocol buffer message along with a\\n // URL that describes the type of the serialized message. https://github.com/protocolbuffers/protobuf/blob/master/src/google/protobuf/any.proto' }, { fieldName: 'value', protoName: 'value', FieldConstructor: BOOLEAN, constraints: {}, description: 'Furo annotated type wrapper message for `any`.\\n // Any contains an arbitrary serialized protocol buffer message along with a\\n // URL that describes the type of the serialized message. https://github.com/protocolbuffers/protobuf/blob/master/src/google/protobuf/any.proto' } ]"
|
|
112750
|
+
"default": "[ { fieldName: 'key', protoName: 'key', FieldConstructor: STRING, constraints: {}, description: 'Furo annotated type wrapper message for `any`.\\n // Any contains an arbitrary serialized protocol buffer message along with a\\n // URL that describes the type of the serialized message. https://github.com/protocolbuffers/protobuf/blob/master/src/google/protobuf/any.proto', }, { fieldName: 'value', protoName: 'value', FieldConstructor: BOOLEAN, constraints: {}, description: 'Furo annotated type wrapper message for `any`.\\n // Any contains an arbitrary serialized protocol buffer message along with a\\n // URL that describes the type of the serialized message. https://github.com/protocolbuffers/protobuf/blob/master/src/google/protobuf/any.proto', }, ]"
|
|
112418
112751
|
},
|
|
112419
112752
|
{
|
|
112420
112753
|
"kind": "field",
|
|
@@ -113340,7 +113673,7 @@
|
|
|
113340
113673
|
"type": {
|
|
113341
113674
|
"text": "array"
|
|
113342
113675
|
},
|
|
113343
|
-
"default": "[ { fieldName: 'value', protoName: 'value', FieldConstructor: BYTES, constraints: {}, description: 'The JSON representation for `AnyValue` is a JSON string? The client uses type `ArrayBuffer` for the value field.' }, { fieldName: 'labels', protoName: 'labels', FieldConstructor: (MAP), ValueConstructor: BOOLEAN, constraints: {}, description: 'Labels / flags for the value, something like unspecified, empty, confidential, absent,... Can be used for AI, UI, Business Logic,...' }, { fieldName: 'attributes', protoName: 'attributes', FieldConstructor: (MAP), ValueConstructor: STRING, constraints: {}, description: 'Attributes for a value, something like confidential-msg: you are not allowed to see this value' } ]"
|
|
113676
|
+
"default": "[ { fieldName: 'value', protoName: 'value', FieldConstructor: BYTES, constraints: {}, description: 'The JSON representation for `AnyValue` is a JSON string? The client uses type `ArrayBuffer` for the value field.', }, { fieldName: 'labels', protoName: 'labels', FieldConstructor: (MAP), ValueConstructor: BOOLEAN, constraints: {}, description: 'Labels / flags for the value, something like unspecified, empty, confidential, absent,... Can be used for AI, UI, Business Logic,...', }, { fieldName: 'attributes', protoName: 'attributes', FieldConstructor: (MAP), ValueConstructor: STRING, constraints: {}, description: 'Attributes for a value, something like confidential-msg: you are not allowed to see this value', }, ]"
|
|
113344
113677
|
},
|
|
113345
113678
|
{
|
|
113346
113679
|
"kind": "field",
|
|
@@ -114267,7 +114600,7 @@
|
|
|
114267
114600
|
"type": {
|
|
114268
114601
|
"text": "array"
|
|
114269
114602
|
},
|
|
114270
|
-
"default": "[ { fieldName: 'key', protoName: 'key', FieldConstructor: STRING, constraints: {}, description: 'Furo annotated type wrapper message for `bool`.' }, { fieldName: 'value', protoName: 'value', FieldConstructor: STRING, constraints: {}, description: 'Furo annotated type wrapper message for `bool`.' } ]"
|
|
114603
|
+
"default": "[ { fieldName: 'key', protoName: 'key', FieldConstructor: STRING, constraints: {}, description: 'Furo annotated type wrapper message for `bool`.', }, { fieldName: 'value', protoName: 'value', FieldConstructor: STRING, constraints: {}, description: 'Furo annotated type wrapper message for `bool`.', }, ]"
|
|
114271
114604
|
},
|
|
114272
114605
|
{
|
|
114273
114606
|
"kind": "field",
|
|
@@ -115189,7 +115522,7 @@
|
|
|
115189
115522
|
"type": {
|
|
115190
115523
|
"text": "array"
|
|
115191
115524
|
},
|
|
115192
|
-
"default": "[ { fieldName: 'key', protoName: 'key', FieldConstructor: STRING, constraints: {}, description: 'Furo annotated type wrapper message for `bool`.' }, { fieldName: 'value', protoName: 'value', FieldConstructor: BOOLEAN, constraints: {}, description: 'Furo annotated type wrapper message for `bool`.' } ]"
|
|
115525
|
+
"default": "[ { fieldName: 'key', protoName: 'key', FieldConstructor: STRING, constraints: {}, description: 'Furo annotated type wrapper message for `bool`.', }, { fieldName: 'value', protoName: 'value', FieldConstructor: BOOLEAN, constraints: {}, description: 'Furo annotated type wrapper message for `bool`.', }, ]"
|
|
115193
115526
|
},
|
|
115194
115527
|
{
|
|
115195
115528
|
"kind": "field",
|
|
@@ -116115,7 +116448,7 @@
|
|
|
116115
116448
|
"type": {
|
|
116116
116449
|
"text": "array"
|
|
116117
116450
|
},
|
|
116118
|
-
"default": "[ { fieldName: 'value', protoName: 'value', FieldConstructor: BOOLEAN, constraints: {}, description: 'The JSON representation for `BoolValue` is a JSON boolean' }, { fieldName: 'labels', protoName: 'labels', FieldConstructor: (MAP), ValueConstructor: BOOLEAN, constraints: {}, description: 'Labels / flags for the value, something like unspecified, empty, confidential, absent,... Can be used for AI, UI, Business Logic,...' }, { fieldName: 'attributes', protoName: 'attributes', FieldConstructor: (MAP), ValueConstructor: STRING, constraints: {}, description: 'Attributes for a value, something like confidential-msg: you are not allowed to see this value' } ]"
|
|
116451
|
+
"default": "[ { fieldName: 'value', protoName: 'value', FieldConstructor: BOOLEAN, constraints: {}, description: 'The JSON representation for `BoolValue` is a JSON boolean', }, { fieldName: 'labels', protoName: 'labels', FieldConstructor: (MAP), ValueConstructor: BOOLEAN, constraints: {}, description: 'Labels / flags for the value, something like unspecified, empty, confidential, absent,... Can be used for AI, UI, Business Logic,...', }, { fieldName: 'attributes', protoName: 'attributes', FieldConstructor: (MAP), ValueConstructor: STRING, constraints: {}, description: 'Attributes for a value, something like confidential-msg: you are not allowed to see this value', }, ]"
|
|
116119
116452
|
},
|
|
116120
116453
|
{
|
|
116121
116454
|
"kind": "field",
|
|
@@ -117042,7 +117375,7 @@
|
|
|
117042
117375
|
"type": {
|
|
117043
117376
|
"text": "array"
|
|
117044
117377
|
},
|
|
117045
|
-
"default": "[ { fieldName: 'key', protoName: 'key', FieldConstructor: STRING, constraints: {}, description: 'Furo annotated type wrapper message for `bytes`.' }, { fieldName: 'value', protoName: 'value', FieldConstructor: STRING, constraints: {}, description: 'Furo annotated type wrapper message for `bytes`.' } ]"
|
|
117378
|
+
"default": "[ { fieldName: 'key', protoName: 'key', FieldConstructor: STRING, constraints: {}, description: 'Furo annotated type wrapper message for `bytes`.', }, { fieldName: 'value', protoName: 'value', FieldConstructor: STRING, constraints: {}, description: 'Furo annotated type wrapper message for `bytes`.', }, ]"
|
|
117046
117379
|
},
|
|
117047
117380
|
{
|
|
117048
117381
|
"kind": "field",
|
|
@@ -117964,7 +118297,7 @@
|
|
|
117964
118297
|
"type": {
|
|
117965
118298
|
"text": "array"
|
|
117966
118299
|
},
|
|
117967
|
-
"default": "[ { fieldName: 'key', protoName: 'key', FieldConstructor: STRING, constraints: {}, description: 'Furo annotated type wrapper message for `bytes`.' }, { fieldName: 'value', protoName: 'value', FieldConstructor: BOOLEAN, constraints: {}, description: 'Furo annotated type wrapper message for `bytes`.' } ]"
|
|
118300
|
+
"default": "[ { fieldName: 'key', protoName: 'key', FieldConstructor: STRING, constraints: {}, description: 'Furo annotated type wrapper message for `bytes`.', }, { fieldName: 'value', protoName: 'value', FieldConstructor: BOOLEAN, constraints: {}, description: 'Furo annotated type wrapper message for `bytes`.', }, ]"
|
|
117968
118301
|
},
|
|
117969
118302
|
{
|
|
117970
118303
|
"kind": "field",
|
|
@@ -118890,7 +119223,7 @@
|
|
|
118890
119223
|
"type": {
|
|
118891
119224
|
"text": "array"
|
|
118892
119225
|
},
|
|
118893
|
-
"default": "[ { fieldName: 'value', protoName: 'value', FieldConstructor: BYTES, constraints: {}, description: 'The JSON representation for `BytesValue` is a JSON string' }, { fieldName: 'labels', protoName: 'labels', FieldConstructor: (MAP), ValueConstructor: BOOLEAN, constraints: {}, description: 'Labels / flags for the value, something like unspecified, empty, confidential, absent,... Can be used for AI, UI, Business Logic,...' }, { fieldName: 'attributes', protoName: 'attributes', FieldConstructor: (MAP), ValueConstructor: STRING, constraints: {}, description: 'Attributes for a value, something like confidential-msg: you are not allowed to see this value' } ]"
|
|
119226
|
+
"default": "[ { fieldName: 'value', protoName: 'value', FieldConstructor: BYTES, constraints: {}, description: 'The JSON representation for `BytesValue` is a JSON string', }, { fieldName: 'labels', protoName: 'labels', FieldConstructor: (MAP), ValueConstructor: BOOLEAN, constraints: {}, description: 'Labels / flags for the value, something like unspecified, empty, confidential, absent,... Can be used for AI, UI, Business Logic,...', }, { fieldName: 'attributes', protoName: 'attributes', FieldConstructor: (MAP), ValueConstructor: STRING, constraints: {}, description: 'Attributes for a value, something like confidential-msg: you are not allowed to see this value', }, ]"
|
|
118894
119227
|
},
|
|
118895
119228
|
{
|
|
118896
119229
|
"kind": "field",
|
|
@@ -119817,7 +120150,7 @@
|
|
|
119817
120150
|
"type": {
|
|
119818
120151
|
"text": "array"
|
|
119819
120152
|
},
|
|
119820
|
-
"default": "[ { fieldName: 'start', protoName: 'start', FieldConstructor: FuroTypeDecimal, constraints: {}, description: 'Optional. Inclusive start of the decimal range.' }, { fieldName: 'end', protoName: 'end', FieldConstructor: FuroTypeDecimal, constraints: {}, description: 'Optional. Exclusive end of the decimal range.' } ]"
|
|
120153
|
+
"default": "[ { fieldName: 'start', protoName: 'start', FieldConstructor: FuroTypeDecimal, constraints: {}, description: 'Optional. Inclusive start of the decimal range.', }, { fieldName: 'end', protoName: 'end', FieldConstructor: FuroTypeDecimal, constraints: {}, description: 'Optional. Exclusive end of the decimal range.', }, ]"
|
|
119821
120154
|
},
|
|
119822
120155
|
{
|
|
119823
120156
|
"kind": "field",
|
|
@@ -120739,7 +121072,7 @@
|
|
|
120739
121072
|
"type": {
|
|
120740
121073
|
"text": "array"
|
|
120741
121074
|
},
|
|
120742
|
-
"default": "[ { fieldName: 'key', protoName: 'key', FieldConstructor: STRING, constraints: {}, description: 'Furo annotated type wrapper message for `double`. The range constraints are set to Number.MIN_SAFE_INTEGER - Number.MAX_SAFE_INTEGER because of browser limitations' }, { fieldName: 'value', protoName: 'value', FieldConstructor: STRING, constraints: {}, description: 'Furo annotated type wrapper message for `double`. The range constraints are set to Number.MIN_SAFE_INTEGER - Number.MAX_SAFE_INTEGER because of browser limitations' } ]"
|
|
121075
|
+
"default": "[ { fieldName: 'key', protoName: 'key', FieldConstructor: STRING, constraints: {}, description: 'Furo annotated type wrapper message for `double`. The range constraints are set to Number.MIN_SAFE_INTEGER - Number.MAX_SAFE_INTEGER because of browser limitations', }, { fieldName: 'value', protoName: 'value', FieldConstructor: STRING, constraints: {}, description: 'Furo annotated type wrapper message for `double`. The range constraints are set to Number.MIN_SAFE_INTEGER - Number.MAX_SAFE_INTEGER because of browser limitations', }, ]"
|
|
120743
121076
|
},
|
|
120744
121077
|
{
|
|
120745
121078
|
"kind": "field",
|
|
@@ -121661,7 +121994,7 @@
|
|
|
121661
121994
|
"type": {
|
|
121662
121995
|
"text": "array"
|
|
121663
121996
|
},
|
|
121664
|
-
"default": "[ { fieldName: 'key', protoName: 'key', FieldConstructor: STRING, constraints: {}, description: 'Furo annotated type wrapper message for `double`. The range constraints are set to Number.MIN_SAFE_INTEGER - Number.MAX_SAFE_INTEGER because of browser limitations' }, { fieldName: 'value', protoName: 'value', FieldConstructor: BOOLEAN, constraints: {}, description: 'Furo annotated type wrapper message for `double`. The range constraints are set to Number.MIN_SAFE_INTEGER - Number.MAX_SAFE_INTEGER because of browser limitations' } ]"
|
|
121997
|
+
"default": "[ { fieldName: 'key', protoName: 'key', FieldConstructor: STRING, constraints: {}, description: 'Furo annotated type wrapper message for `double`. The range constraints are set to Number.MIN_SAFE_INTEGER - Number.MAX_SAFE_INTEGER because of browser limitations', }, { fieldName: 'value', protoName: 'value', FieldConstructor: BOOLEAN, constraints: {}, description: 'Furo annotated type wrapper message for `double`. The range constraints are set to Number.MIN_SAFE_INTEGER - Number.MAX_SAFE_INTEGER because of browser limitations', }, ]"
|
|
121665
121998
|
},
|
|
121666
121999
|
{
|
|
121667
122000
|
"kind": "field",
|
|
@@ -122587,7 +122920,7 @@
|
|
|
122587
122920
|
"type": {
|
|
122588
122921
|
"text": "array"
|
|
122589
122922
|
},
|
|
122590
|
-
"default": "[ { fieldName: 'value', protoName: 'value', FieldConstructor: DOUBLE, constraints: {}, description: 'The JSON representation for `DoubleValue` is JSON number, range is set to Number.MIN_SAFE_INTEGER - Number.MAX_SAFE_INTEGER' }, { fieldName: 'labels', protoName: 'labels', FieldConstructor: (MAP), ValueConstructor: BOOLEAN, constraints: {}, description: 'Labels / flags for the value, something like unspecified, empty, confidential, absent,... Can be used for AI, UI, Business Logic,...' }, { fieldName: 'attributes', protoName: 'attributes', FieldConstructor: (MAP), ValueConstructor: STRING, constraints: {}, description: 'Attributes for a value, something like confidential-msg: you are not allowed to see this value' } ]"
|
|
122923
|
+
"default": "[ { fieldName: 'value', protoName: 'value', FieldConstructor: DOUBLE, constraints: {}, description: 'The JSON representation for `DoubleValue` is JSON number, range is set to Number.MIN_SAFE_INTEGER - Number.MAX_SAFE_INTEGER', }, { fieldName: 'labels', protoName: 'labels', FieldConstructor: (MAP), ValueConstructor: BOOLEAN, constraints: {}, description: 'Labels / flags for the value, something like unspecified, empty, confidential, absent,... Can be used for AI, UI, Business Logic,...', }, { fieldName: 'attributes', protoName: 'attributes', FieldConstructor: (MAP), ValueConstructor: STRING, constraints: {}, description: 'Attributes for a value, something like confidential-msg: you are not allowed to see this value', }, ]"
|
|
122591
122924
|
},
|
|
122592
122925
|
{
|
|
122593
122926
|
"kind": "field",
|
|
@@ -123514,7 +123847,7 @@
|
|
|
123514
123847
|
"type": {
|
|
123515
123848
|
"text": "array"
|
|
123516
123849
|
},
|
|
123517
|
-
"default": "[ { fieldName: 'key', protoName: 'key', FieldConstructor: STRING, constraints: {}, description: 'Furo annotated type wrapper message for `empty`. Empty has no values and only contains the labels and attributes' }, { fieldName: 'value', protoName: 'value', FieldConstructor: STRING, constraints: {}, description: 'Furo annotated type wrapper message for `empty`. Empty has no values and only contains the labels and attributes' } ]"
|
|
123850
|
+
"default": "[ { fieldName: 'key', protoName: 'key', FieldConstructor: STRING, constraints: {}, description: 'Furo annotated type wrapper message for `empty`. Empty has no values and only contains the labels and attributes', }, { fieldName: 'value', protoName: 'value', FieldConstructor: STRING, constraints: {}, description: 'Furo annotated type wrapper message for `empty`. Empty has no values and only contains the labels and attributes', }, ]"
|
|
123518
123851
|
},
|
|
123519
123852
|
{
|
|
123520
123853
|
"kind": "field",
|
|
@@ -124436,7 +124769,7 @@
|
|
|
124436
124769
|
"type": {
|
|
124437
124770
|
"text": "array"
|
|
124438
124771
|
},
|
|
124439
|
-
"default": "[ { fieldName: 'key', protoName: 'key', FieldConstructor: STRING, constraints: {}, description: 'Furo annotated type wrapper message for `empty`. Empty has no values and only contains the labels and attributes' }, { fieldName: 'value', protoName: 'value', FieldConstructor: BOOLEAN, constraints: {}, description: 'Furo annotated type wrapper message for `empty`. Empty has no values and only contains the labels and attributes' } ]"
|
|
124772
|
+
"default": "[ { fieldName: 'key', protoName: 'key', FieldConstructor: STRING, constraints: {}, description: 'Furo annotated type wrapper message for `empty`. Empty has no values and only contains the labels and attributes', }, { fieldName: 'value', protoName: 'value', FieldConstructor: BOOLEAN, constraints: {}, description: 'Furo annotated type wrapper message for `empty`. Empty has no values and only contains the labels and attributes', }, ]"
|
|
124440
124773
|
},
|
|
124441
124774
|
{
|
|
124442
124775
|
"kind": "field",
|
|
@@ -125358,7 +125691,7 @@
|
|
|
125358
125691
|
"type": {
|
|
125359
125692
|
"text": "array"
|
|
125360
125693
|
},
|
|
125361
|
-
"default": "[ { fieldName: 'labels', protoName: 'labels', FieldConstructor: (MAP), ValueConstructor: BOOLEAN, constraints: {}, description: 'Labels / flags for the value, something like unspecified, empty, confidential, absent,... Can be used for AI, UI, Business Logic,...' }, { fieldName: 'attributes', protoName: 'attributes', FieldConstructor: (MAP), ValueConstructor: STRING, constraints: {}, description: 'Attributes for a value, something like confidential-msg: you are not allowed to see this value' } ]"
|
|
125694
|
+
"default": "[ { fieldName: 'labels', protoName: 'labels', FieldConstructor: (MAP), ValueConstructor: BOOLEAN, constraints: {}, description: 'Labels / flags for the value, something like unspecified, empty, confidential, absent,... Can be used for AI, UI, Business Logic,...', }, { fieldName: 'attributes', protoName: 'attributes', FieldConstructor: (MAP), ValueConstructor: STRING, constraints: {}, description: 'Attributes for a value, something like confidential-msg: you are not allowed to see this value', }, ]"
|
|
125362
125695
|
},
|
|
125363
125696
|
{
|
|
125364
125697
|
"kind": "field",
|
|
@@ -126280,7 +126613,7 @@
|
|
|
126280
126613
|
"type": {
|
|
126281
126614
|
"text": "array"
|
|
126282
126615
|
},
|
|
126283
|
-
"default": "[ { fieldName: 'key', protoName: 'key', FieldConstructor: STRING, constraints: {}, description: 'Furo annotated type wrapper message for `float`. The range constraints are set to Number.MIN_SAFE_INTEGER - Number.MAX_SAFE_INTEGER because of browser limitations' }, { fieldName: 'value', protoName: 'value', FieldConstructor: STRING, constraints: {}, description: 'Furo annotated type wrapper message for `float`. The range constraints are set to Number.MIN_SAFE_INTEGER - Number.MAX_SAFE_INTEGER because of browser limitations' } ]"
|
|
126616
|
+
"default": "[ { fieldName: 'key', protoName: 'key', FieldConstructor: STRING, constraints: {}, description: 'Furo annotated type wrapper message for `float`. The range constraints are set to Number.MIN_SAFE_INTEGER - Number.MAX_SAFE_INTEGER because of browser limitations', }, { fieldName: 'value', protoName: 'value', FieldConstructor: STRING, constraints: {}, description: 'Furo annotated type wrapper message for `float`. The range constraints are set to Number.MIN_SAFE_INTEGER - Number.MAX_SAFE_INTEGER because of browser limitations', }, ]"
|
|
126284
126617
|
},
|
|
126285
126618
|
{
|
|
126286
126619
|
"kind": "field",
|
|
@@ -127202,7 +127535,7 @@
|
|
|
127202
127535
|
"type": {
|
|
127203
127536
|
"text": "array"
|
|
127204
127537
|
},
|
|
127205
|
-
"default": "[ { fieldName: 'key', protoName: 'key', FieldConstructor: STRING, constraints: {}, description: 'Furo annotated type wrapper message for `float`. The range constraints are set to Number.MIN_SAFE_INTEGER - Number.MAX_SAFE_INTEGER because of browser limitations' }, { fieldName: 'value', protoName: 'value', FieldConstructor: BOOLEAN, constraints: {}, description: 'Furo annotated type wrapper message for `float`. The range constraints are set to Number.MIN_SAFE_INTEGER - Number.MAX_SAFE_INTEGER because of browser limitations' } ]"
|
|
127538
|
+
"default": "[ { fieldName: 'key', protoName: 'key', FieldConstructor: STRING, constraints: {}, description: 'Furo annotated type wrapper message for `float`. The range constraints are set to Number.MIN_SAFE_INTEGER - Number.MAX_SAFE_INTEGER because of browser limitations', }, { fieldName: 'value', protoName: 'value', FieldConstructor: BOOLEAN, constraints: {}, description: 'Furo annotated type wrapper message for `float`. The range constraints are set to Number.MIN_SAFE_INTEGER - Number.MAX_SAFE_INTEGER because of browser limitations', }, ]"
|
|
127206
127539
|
},
|
|
127207
127540
|
{
|
|
127208
127541
|
"kind": "field",
|
|
@@ -128128,7 +128461,7 @@
|
|
|
128128
128461
|
"type": {
|
|
128129
128462
|
"text": "array"
|
|
128130
128463
|
},
|
|
128131
|
-
"default": "[ { fieldName: 'value', protoName: 'value', FieldConstructor: FLOAT, constraints: {}, description: 'The JSON representation for `FloatValue` is JSON number' }, { fieldName: 'labels', protoName: 'labels', FieldConstructor: (MAP), ValueConstructor: BOOLEAN, constraints: {}, description: 'Labels / flags for the value, something like unspecified, empty, confidential, absent,... Can be used for AI, UI, Business Logic,...' }, { fieldName: 'attributes', protoName: 'attributes', FieldConstructor: (MAP), ValueConstructor: STRING, constraints: {}, description: 'Attributes for a value, something like confidential-msg: you are not allowed to see this value' } ]"
|
|
128464
|
+
"default": "[ { fieldName: 'value', protoName: 'value', FieldConstructor: FLOAT, constraints: {}, description: 'The JSON representation for `FloatValue` is JSON number', }, { fieldName: 'labels', protoName: 'labels', FieldConstructor: (MAP), ValueConstructor: BOOLEAN, constraints: {}, description: 'Labels / flags for the value, something like unspecified, empty, confidential, absent,... Can be used for AI, UI, Business Logic,...', }, { fieldName: 'attributes', protoName: 'attributes', FieldConstructor: (MAP), ValueConstructor: STRING, constraints: {}, description: 'Attributes for a value, something like confidential-msg: you are not allowed to see this value', }, ]"
|
|
128132
128465
|
},
|
|
128133
128466
|
{
|
|
128134
128467
|
"kind": "field",
|
|
@@ -129055,7 +129388,7 @@
|
|
|
129055
129388
|
"type": {
|
|
129056
129389
|
"text": "array"
|
|
129057
129390
|
},
|
|
129058
|
-
"default": "[ { fieldName: 'key', protoName: 'key', FieldConstructor: STRING, constraints: {}, description: 'Furo annotated type wrapper message for `int32`.' }, { fieldName: 'value', protoName: 'value', FieldConstructor: STRING, constraints: {}, description: 'Furo annotated type wrapper message for `int32`.' } ]"
|
|
129391
|
+
"default": "[ { fieldName: 'key', protoName: 'key', FieldConstructor: STRING, constraints: {}, description: 'Furo annotated type wrapper message for `int32`.', }, { fieldName: 'value', protoName: 'value', FieldConstructor: STRING, constraints: {}, description: 'Furo annotated type wrapper message for `int32`.', }, ]"
|
|
129059
129392
|
},
|
|
129060
129393
|
{
|
|
129061
129394
|
"kind": "field",
|
|
@@ -129977,7 +130310,7 @@
|
|
|
129977
130310
|
"type": {
|
|
129978
130311
|
"text": "array"
|
|
129979
130312
|
},
|
|
129980
|
-
"default": "[ { fieldName: 'key', protoName: 'key', FieldConstructor: STRING, constraints: {}, description: 'Furo annotated type wrapper message for `int32`.' }, { fieldName: 'value', protoName: 'value', FieldConstructor: BOOLEAN, constraints: {}, description: 'Furo annotated type wrapper message for `int32`.' } ]"
|
|
130313
|
+
"default": "[ { fieldName: 'key', protoName: 'key', FieldConstructor: STRING, constraints: {}, description: 'Furo annotated type wrapper message for `int32`.', }, { fieldName: 'value', protoName: 'value', FieldConstructor: BOOLEAN, constraints: {}, description: 'Furo annotated type wrapper message for `int32`.', }, ]"
|
|
129981
130314
|
},
|
|
129982
130315
|
{
|
|
129983
130316
|
"kind": "field",
|
|
@@ -130903,7 +131236,7 @@
|
|
|
130903
131236
|
"type": {
|
|
130904
131237
|
"text": "array"
|
|
130905
131238
|
},
|
|
130906
|
-
"default": "[ { fieldName: 'value', protoName: 'value', FieldConstructor: INT32, constraints: {}, description: 'The JSON representation for `Int32Value` is JSON number' }, { fieldName: 'labels', protoName: 'labels', FieldConstructor: (MAP), ValueConstructor: BOOLEAN, constraints: {}, description: 'Labels / flags for the value, something like unspecified, empty, confidential, absent,... Can be used for AI, UI, Business Logic,...' }, { fieldName: 'attributes', protoName: 'attributes', FieldConstructor: (MAP), ValueConstructor: STRING, constraints: {}, description: 'Attributes for a value, something like confidential-msg: you are not allowed to see this value' } ]"
|
|
131239
|
+
"default": "[ { fieldName: 'value', protoName: 'value', FieldConstructor: INT32, constraints: {}, description: 'The JSON representation for `Int32Value` is JSON number', }, { fieldName: 'labels', protoName: 'labels', FieldConstructor: (MAP), ValueConstructor: BOOLEAN, constraints: {}, description: 'Labels / flags for the value, something like unspecified, empty, confidential, absent,... Can be used for AI, UI, Business Logic,...', }, { fieldName: 'attributes', protoName: 'attributes', FieldConstructor: (MAP), ValueConstructor: STRING, constraints: {}, description: 'Attributes for a value, something like confidential-msg: you are not allowed to see this value', }, ]"
|
|
130907
131240
|
},
|
|
130908
131241
|
{
|
|
130909
131242
|
"kind": "field",
|
|
@@ -131830,7 +132163,7 @@
|
|
|
131830
132163
|
"type": {
|
|
131831
132164
|
"text": "array"
|
|
131832
132165
|
},
|
|
131833
|
-
"default": "[ { fieldName: 'key', protoName: 'key', FieldConstructor: STRING, constraints: {}, description: 'Furo annotated type wrapper message for `int64`. The range constraints are set to Number.MIN_SAFE_INTEGER - Number.MAX_SAFE_INTEGER because of browser limitations' }, { fieldName: 'value', protoName: 'value', FieldConstructor: STRING, constraints: {}, description: 'Furo annotated type wrapper message for `int64`. The range constraints are set to Number.MIN_SAFE_INTEGER - Number.MAX_SAFE_INTEGER because of browser limitations' } ]"
|
|
132166
|
+
"default": "[ { fieldName: 'key', protoName: 'key', FieldConstructor: STRING, constraints: {}, description: 'Furo annotated type wrapper message for `int64`. The range constraints are set to Number.MIN_SAFE_INTEGER - Number.MAX_SAFE_INTEGER because of browser limitations', }, { fieldName: 'value', protoName: 'value', FieldConstructor: STRING, constraints: {}, description: 'Furo annotated type wrapper message for `int64`. The range constraints are set to Number.MIN_SAFE_INTEGER - Number.MAX_SAFE_INTEGER because of browser limitations', }, ]"
|
|
131834
132167
|
},
|
|
131835
132168
|
{
|
|
131836
132169
|
"kind": "field",
|
|
@@ -132752,7 +133085,7 @@
|
|
|
132752
133085
|
"type": {
|
|
132753
133086
|
"text": "array"
|
|
132754
133087
|
},
|
|
132755
|
-
"default": "[ { fieldName: 'key', protoName: 'key', FieldConstructor: STRING, constraints: {}, description: 'Furo annotated type wrapper message for `int64`. The range constraints are set to Number.MIN_SAFE_INTEGER - Number.MAX_SAFE_INTEGER because of browser limitations' }, { fieldName: 'value', protoName: 'value', FieldConstructor: BOOLEAN, constraints: {}, description: 'Furo annotated type wrapper message for `int64`. The range constraints are set to Number.MIN_SAFE_INTEGER - Number.MAX_SAFE_INTEGER because of browser limitations' } ]"
|
|
133088
|
+
"default": "[ { fieldName: 'key', protoName: 'key', FieldConstructor: STRING, constraints: {}, description: 'Furo annotated type wrapper message for `int64`. The range constraints are set to Number.MIN_SAFE_INTEGER - Number.MAX_SAFE_INTEGER because of browser limitations', }, { fieldName: 'value', protoName: 'value', FieldConstructor: BOOLEAN, constraints: {}, description: 'Furo annotated type wrapper message for `int64`. The range constraints are set to Number.MIN_SAFE_INTEGER - Number.MAX_SAFE_INTEGER because of browser limitations', }, ]"
|
|
132756
133089
|
},
|
|
132757
133090
|
{
|
|
132758
133091
|
"kind": "field",
|
|
@@ -133678,7 +134011,7 @@
|
|
|
133678
134011
|
"type": {
|
|
133679
134012
|
"text": "array"
|
|
133680
134013
|
},
|
|
133681
|
-
"default": "[ { fieldName: 'value', protoName: 'value', FieldConstructor: INT64, constraints: {}, description: 'The JSON representation for `Int64Value` is JSON number, range is set to Number.MIN_SAFE_INTEGER - Number.MAX_SAFE_INTEGER' }, { fieldName: 'labels', protoName: 'labels', FieldConstructor: (MAP), ValueConstructor: BOOLEAN, constraints: {}, description: 'Labels / flags for the value, something like unspecified, empty, confidential, absent,... Can be used for AI, UI, Business Logic,...' }, { fieldName: 'attributes', protoName: 'attributes', FieldConstructor: (MAP), ValueConstructor: STRING, constraints: {}, description: 'Attributes for a value, something like confidential-msg: you are not allowed to see this value' } ]"
|
|
134014
|
+
"default": "[ { fieldName: 'value', protoName: 'value', FieldConstructor: INT64, constraints: {}, description: 'The JSON representation for `Int64Value` is JSON number, range is set to Number.MIN_SAFE_INTEGER - Number.MAX_SAFE_INTEGER', }, { fieldName: 'labels', protoName: 'labels', FieldConstructor: (MAP), ValueConstructor: BOOLEAN, constraints: {}, description: 'Labels / flags for the value, something like unspecified, empty, confidential, absent,... Can be used for AI, UI, Business Logic,...', }, { fieldName: 'attributes', protoName: 'attributes', FieldConstructor: (MAP), ValueConstructor: STRING, constraints: {}, description: 'Attributes for a value, something like confidential-msg: you are not allowed to see this value', }, ]"
|
|
133682
134015
|
},
|
|
133683
134016
|
{
|
|
133684
134017
|
"kind": "field",
|
|
@@ -134605,7 +134938,7 @@
|
|
|
134605
134938
|
"type": {
|
|
134606
134939
|
"text": "array"
|
|
134607
134940
|
},
|
|
134608
|
-
"default": "[ { fieldName: 'key', protoName: 'key', FieldConstructor: STRING, constraints: {}, description: 'Furo annotated type wrapper message for `string`.' }, { fieldName: 'value', protoName: 'value', FieldConstructor: STRING, constraints: {}, description: 'Furo annotated type wrapper message for `string`.' } ]"
|
|
134941
|
+
"default": "[ { fieldName: 'key', protoName: 'key', FieldConstructor: STRING, constraints: {}, description: 'Furo annotated type wrapper message for `string`.', }, { fieldName: 'value', protoName: 'value', FieldConstructor: STRING, constraints: {}, description: 'Furo annotated type wrapper message for `string`.', }, ]"
|
|
134609
134942
|
},
|
|
134610
134943
|
{
|
|
134611
134944
|
"kind": "field",
|
|
@@ -135527,7 +135860,7 @@
|
|
|
135527
135860
|
"type": {
|
|
135528
135861
|
"text": "array"
|
|
135529
135862
|
},
|
|
135530
|
-
"default": "[ { fieldName: 'key', protoName: 'key', FieldConstructor: STRING, constraints: {}, description: 'Furo annotated type wrapper message for `string`.' }, { fieldName: 'value', protoName: 'value', FieldConstructor: BOOLEAN, constraints: {}, description: 'Furo annotated type wrapper message for `string`.' } ]"
|
|
135863
|
+
"default": "[ { fieldName: 'key', protoName: 'key', FieldConstructor: STRING, constraints: {}, description: 'Furo annotated type wrapper message for `string`.', }, { fieldName: 'value', protoName: 'value', FieldConstructor: BOOLEAN, constraints: {}, description: 'Furo annotated type wrapper message for `string`.', }, ]"
|
|
135531
135864
|
},
|
|
135532
135865
|
{
|
|
135533
135866
|
"kind": "field",
|
|
@@ -136453,7 +136786,7 @@
|
|
|
136453
136786
|
"type": {
|
|
136454
136787
|
"text": "array"
|
|
136455
136788
|
},
|
|
136456
|
-
"default": "[ { fieldName: 'value', protoName: 'value', FieldConstructor: STRING, constraints: {}, description: 'The JSON representation for `StringValue` is a JSON string' }, { fieldName: 'labels', protoName: 'labels', FieldConstructor: (MAP), ValueConstructor: BOOLEAN, constraints: {}, description: 'Labels / flags for the value, something like unspecified, empty, confidential, absent,... Can be used for AI, UI, Business Logic,...' }, { fieldName: 'attributes', protoName: 'attributes', FieldConstructor: (MAP), ValueConstructor: STRING, constraints: {}, description: 'Attributes for a value, something like confidential-msg: you are not allowed to see this value' } ]"
|
|
136789
|
+
"default": "[ { fieldName: 'value', protoName: 'value', FieldConstructor: STRING, constraints: {}, description: 'The JSON representation for `StringValue` is a JSON string', }, { fieldName: 'labels', protoName: 'labels', FieldConstructor: (MAP), ValueConstructor: BOOLEAN, constraints: {}, description: 'Labels / flags for the value, something like unspecified, empty, confidential, absent,... Can be used for AI, UI, Business Logic,...', }, { fieldName: 'attributes', protoName: 'attributes', FieldConstructor: (MAP), ValueConstructor: STRING, constraints: {}, description: 'Attributes for a value, something like confidential-msg: you are not allowed to see this value', }, ]"
|
|
136457
136790
|
},
|
|
136458
136791
|
{
|
|
136459
136792
|
"kind": "field",
|
|
@@ -137380,7 +137713,7 @@
|
|
|
137380
137713
|
"type": {
|
|
137381
137714
|
"text": "array"
|
|
137382
137715
|
},
|
|
137383
|
-
"default": "[ { fieldName: 'key', protoName: 'key', FieldConstructor: STRING, constraints: {}, description: 'Furo annotated type wrapper message for `uint32`. https://github.com/protocolbuffers/protobuf/blob/master/src/google/protobuf/wrappers.proto' }, { fieldName: 'value', protoName: 'value', FieldConstructor: STRING, constraints: {}, description: 'Furo annotated type wrapper message for `uint32`. https://github.com/protocolbuffers/protobuf/blob/master/src/google/protobuf/wrappers.proto' } ]"
|
|
137716
|
+
"default": "[ { fieldName: 'key', protoName: 'key', FieldConstructor: STRING, constraints: {}, description: 'Furo annotated type wrapper message for `uint32`. https://github.com/protocolbuffers/protobuf/blob/master/src/google/protobuf/wrappers.proto', }, { fieldName: 'value', protoName: 'value', FieldConstructor: STRING, constraints: {}, description: 'Furo annotated type wrapper message for `uint32`. https://github.com/protocolbuffers/protobuf/blob/master/src/google/protobuf/wrappers.proto', }, ]"
|
|
137384
137717
|
},
|
|
137385
137718
|
{
|
|
137386
137719
|
"kind": "field",
|
|
@@ -138302,7 +138635,7 @@
|
|
|
138302
138635
|
"type": {
|
|
138303
138636
|
"text": "array"
|
|
138304
138637
|
},
|
|
138305
|
-
"default": "[ { fieldName: 'key', protoName: 'key', FieldConstructor: STRING, constraints: {}, description: 'Furo annotated type wrapper message for `uint32`. https://github.com/protocolbuffers/protobuf/blob/master/src/google/protobuf/wrappers.proto' }, { fieldName: 'value', protoName: 'value', FieldConstructor: BOOLEAN, constraints: {}, description: 'Furo annotated type wrapper message for `uint32`. https://github.com/protocolbuffers/protobuf/blob/master/src/google/protobuf/wrappers.proto' } ]"
|
|
138638
|
+
"default": "[ { fieldName: 'key', protoName: 'key', FieldConstructor: STRING, constraints: {}, description: 'Furo annotated type wrapper message for `uint32`. https://github.com/protocolbuffers/protobuf/blob/master/src/google/protobuf/wrappers.proto', }, { fieldName: 'value', protoName: 'value', FieldConstructor: BOOLEAN, constraints: {}, description: 'Furo annotated type wrapper message for `uint32`. https://github.com/protocolbuffers/protobuf/blob/master/src/google/protobuf/wrappers.proto', }, ]"
|
|
138306
138639
|
},
|
|
138307
138640
|
{
|
|
138308
138641
|
"kind": "field",
|
|
@@ -139228,7 +139561,7 @@
|
|
|
139228
139561
|
"type": {
|
|
139229
139562
|
"text": "array"
|
|
139230
139563
|
},
|
|
139231
|
-
"default": "[ { fieldName: 'value', protoName: 'value', FieldConstructor: UINT32, constraints: {}, description: 'The JSON representation for `Uint32Value` is JSON number' }, { fieldName: 'labels', protoName: 'labels', FieldConstructor: (MAP), ValueConstructor: BOOLEAN, constraints: {}, description: 'Labels / flags for the value, something like unspecified, empty, confidential, absent,... Can be used for AI, UI, Business Logic,...' }, { fieldName: 'attributes', protoName: 'attributes', FieldConstructor: (MAP), ValueConstructor: STRING, constraints: {}, description: 'Attributes for a value, something like confidential-msg: you are not allowed to see this value' } ]"
|
|
139564
|
+
"default": "[ { fieldName: 'value', protoName: 'value', FieldConstructor: UINT32, constraints: {}, description: 'The JSON representation for `Uint32Value` is JSON number', }, { fieldName: 'labels', protoName: 'labels', FieldConstructor: (MAP), ValueConstructor: BOOLEAN, constraints: {}, description: 'Labels / flags for the value, something like unspecified, empty, confidential, absent,... Can be used for AI, UI, Business Logic,...', }, { fieldName: 'attributes', protoName: 'attributes', FieldConstructor: (MAP), ValueConstructor: STRING, constraints: {}, description: 'Attributes for a value, something like confidential-msg: you are not allowed to see this value', }, ]"
|
|
139232
139565
|
},
|
|
139233
139566
|
{
|
|
139234
139567
|
"kind": "field",
|
|
@@ -140155,7 +140488,7 @@
|
|
|
140155
140488
|
"type": {
|
|
140156
140489
|
"text": "array"
|
|
140157
140490
|
},
|
|
140158
|
-
"default": "[ { fieldName: 'key', protoName: 'key', FieldConstructor: STRING, constraints: {}, description: 'Furo annotated type wrapper message for `uint64`. The range constraints are set to Number.MAX_SAFE_INTEGER because of browser limitations' }, { fieldName: 'value', protoName: 'value', FieldConstructor: STRING, constraints: {}, description: 'Furo annotated type wrapper message for `uint64`. The range constraints are set to Number.MAX_SAFE_INTEGER because of browser limitations' } ]"
|
|
140491
|
+
"default": "[ { fieldName: 'key', protoName: 'key', FieldConstructor: STRING, constraints: {}, description: 'Furo annotated type wrapper message for `uint64`. The range constraints are set to Number.MAX_SAFE_INTEGER because of browser limitations', }, { fieldName: 'value', protoName: 'value', FieldConstructor: STRING, constraints: {}, description: 'Furo annotated type wrapper message for `uint64`. The range constraints are set to Number.MAX_SAFE_INTEGER because of browser limitations', }, ]"
|
|
140159
140492
|
},
|
|
140160
140493
|
{
|
|
140161
140494
|
"kind": "field",
|
|
@@ -141077,7 +141410,7 @@
|
|
|
141077
141410
|
"type": {
|
|
141078
141411
|
"text": "array"
|
|
141079
141412
|
},
|
|
141080
|
-
"default": "[ { fieldName: 'key', protoName: 'key', FieldConstructor: STRING, constraints: {}, description: 'Furo annotated type wrapper message for `uint64`. The range constraints are set to Number.MAX_SAFE_INTEGER because of browser limitations' }, { fieldName: 'value', protoName: 'value', FieldConstructor: BOOLEAN, constraints: {}, description: 'Furo annotated type wrapper message for `uint64`. The range constraints are set to Number.MAX_SAFE_INTEGER because of browser limitations' } ]"
|
|
141413
|
+
"default": "[ { fieldName: 'key', protoName: 'key', FieldConstructor: STRING, constraints: {}, description: 'Furo annotated type wrapper message for `uint64`. The range constraints are set to Number.MAX_SAFE_INTEGER because of browser limitations', }, { fieldName: 'value', protoName: 'value', FieldConstructor: BOOLEAN, constraints: {}, description: 'Furo annotated type wrapper message for `uint64`. The range constraints are set to Number.MAX_SAFE_INTEGER because of browser limitations', }, ]"
|
|
141081
141414
|
},
|
|
141082
141415
|
{
|
|
141083
141416
|
"kind": "field",
|
|
@@ -142003,7 +142336,7 @@
|
|
|
142003
142336
|
"type": {
|
|
142004
142337
|
"text": "array"
|
|
142005
142338
|
},
|
|
142006
|
-
"default": "[ { fieldName: 'value', protoName: 'value', FieldConstructor: UINT64, constraints: {}, description: 'The JSON representation for `Uint64Value` is JSON number, range is set to 0 - Number.MAX_SAFE_INTEGER' }, { fieldName: 'labels', protoName: 'labels', FieldConstructor: (MAP), ValueConstructor: BOOLEAN, constraints: {}, description: 'Labels / flags for the value, something like unspecified, empty, confidential, absent,... Can be used for AI, UI, Business Logic,...' }, { fieldName: 'attributes', protoName: 'attributes', FieldConstructor: (MAP), ValueConstructor: STRING, constraints: {}, description: 'Attributes for a value, something like confidential-msg: you are not allowed to see this value' } ]"
|
|
142339
|
+
"default": "[ { fieldName: 'value', protoName: 'value', FieldConstructor: UINT64, constraints: {}, description: 'The JSON representation for `Uint64Value` is JSON number, range is set to 0 - Number.MAX_SAFE_INTEGER', }, { fieldName: 'labels', protoName: 'labels', FieldConstructor: (MAP), ValueConstructor: BOOLEAN, constraints: {}, description: 'Labels / flags for the value, something like unspecified, empty, confidential, absent,... Can be used for AI, UI, Business Logic,...', }, { fieldName: 'attributes', protoName: 'attributes', FieldConstructor: (MAP), ValueConstructor: STRING, constraints: {}, description: 'Attributes for a value, something like confidential-msg: you are not allowed to see this value', }, ]"
|
|
142007
142340
|
},
|
|
142008
142341
|
{
|
|
142009
142342
|
"kind": "field",
|
|
@@ -142930,7 +143263,7 @@
|
|
|
142930
143263
|
"type": {
|
|
142931
143264
|
"text": "array"
|
|
142932
143265
|
},
|
|
142933
|
-
"default": "[ { fieldName: 'typeUrl', protoName: 'type_url', FieldConstructor: STRING, constraints: {}, description: 'A URL/resource name that uniquely identifies the type of the serialized\\n protocol buffer message. This string must contain at least\\n one \"/\" character. The last segment of the URL\\'s path must represent\\n the fully qualified name of the type (as in\\n `path/google.protobuf.Duration`). The name should be in a canonical form\\n (e.g., leading \".\" is not accepted).\\n\\n In practice, teams usually precompile into the binary all types that they\\n expect it to use in the context of Any. However, for URLs which use the\\n scheme `http`, `https`, or no scheme, one can optionally set up a type\\n server that maps type URLs to message definitions as follows:\\n\\n * If no scheme is provided, `https` is assumed.\\n * An HTTP GET on the URL must yield a [google.protobuf.Type][]\\n value in binary format, or produce an error.\\n * Applications are allowed to cache lookup results based on the\\n URL, or have them precompiled into a binary to avoid any\\n lookup. Therefore, binary compatibility needs to be preserved\\n on changes to types. (Use versioned type names to manage\\n breaking changes.)\\n\\n Note: this functionality is not currently available in the official\\n protobuf release, and it is not used for type URLs beginning with\\n type.googleapis.com. As of May 2023, there are no widely used type server\\n implementations and no plans to implement one.\\n\\n Schemes other than `http`, `https` (or the empty scheme) might be\\n used with implementation specific semantics.\\n' }, { fieldName: 'value', protoName: 'value', FieldConstructor: BYTES, constraints: {}, description: 'Must be a valid serialized protocol buffer of the above specified type.' } ]"
|
|
143266
|
+
"default": "[ { fieldName: 'typeUrl', protoName: 'type_url', FieldConstructor: STRING, constraints: {}, description: 'A URL/resource name that uniquely identifies the type of the serialized\\n protocol buffer message. This string must contain at least\\n one \"/\" character. The last segment of the URL\\'s path must represent\\n the fully qualified name of the type (as in\\n `path/google.protobuf.Duration`). The name should be in a canonical form\\n (e.g., leading \".\" is not accepted).\\n\\n In practice, teams usually precompile into the binary all types that they\\n expect it to use in the context of Any. However, for URLs which use the\\n scheme `http`, `https`, or no scheme, one can optionally set up a type\\n server that maps type URLs to message definitions as follows:\\n\\n * If no scheme is provided, `https` is assumed.\\n * An HTTP GET on the URL must yield a [google.protobuf.Type][]\\n value in binary format, or produce an error.\\n * Applications are allowed to cache lookup results based on the\\n URL, or have them precompiled into a binary to avoid any\\n lookup. Therefore, binary compatibility needs to be preserved\\n on changes to types. (Use versioned type names to manage\\n breaking changes.)\\n\\n Note: this functionality is not currently available in the official\\n protobuf release, and it is not used for type URLs beginning with\\n type.googleapis.com. As of May 2023, there are no widely used type server\\n implementations and no plans to implement one.\\n\\n Schemes other than `http`, `https` (or the empty scheme) might be\\n used with implementation specific semantics.\\n', }, { fieldName: 'value', protoName: 'value', FieldConstructor: BYTES, constraints: {}, description: 'Must be a valid serialized protocol buffer of the above specified type.', }, ]"
|
|
142934
143267
|
},
|
|
142935
143268
|
{
|
|
142936
143269
|
"kind": "field",
|
|
@@ -143848,7 +144181,7 @@
|
|
|
143848
144181
|
"type": {
|
|
143849
144182
|
"text": "array"
|
|
143850
144183
|
},
|
|
143851
|
-
"default": "[ { fieldName: 'value', protoName: 'value', FieldConstructor: BOOLEAN, constraints: {}, description: 'The bool value.' } ]"
|
|
144184
|
+
"default": "[ { fieldName: 'value', protoName: 'value', FieldConstructor: BOOLEAN, constraints: {}, description: 'The bool value.', }, ]"
|
|
143852
144185
|
},
|
|
143853
144186
|
{
|
|
143854
144187
|
"kind": "field",
|
|
@@ -144761,7 +145094,7 @@
|
|
|
144761
145094
|
"type": {
|
|
144762
145095
|
"text": "array"
|
|
144763
145096
|
},
|
|
144764
|
-
"default": "[ { fieldName: 'value', protoName: 'value', FieldConstructor: BYTES, constraints: {}, description: 'The bytes value.' } ]"
|
|
145097
|
+
"default": "[ { fieldName: 'value', protoName: 'value', FieldConstructor: BYTES, constraints: {}, description: 'The bytes value.', }, ]"
|
|
144765
145098
|
},
|
|
144766
145099
|
{
|
|
144767
145100
|
"kind": "field",
|
|
@@ -145682,7 +146015,7 @@
|
|
|
145682
146015
|
"type": {
|
|
145683
146016
|
"text": "array"
|
|
145684
146017
|
},
|
|
145685
|
-
"default": "[ { fieldName: 'start', protoName: 'start', FieldConstructor: INT32, constraints: {}, description: '' }, { fieldName: 'end', protoName: 'end', FieldConstructor: INT32, constraints: {}, description: '' }, { fieldName: 'options', protoName: 'options', FieldConstructor: GoogleProtobufExtensionRangeOptions, constraints: {}, description: '' } ]"
|
|
146018
|
+
"default": "[ { fieldName: 'start', protoName: 'start', FieldConstructor: INT32, constraints: {}, description: '', }, { fieldName: 'end', protoName: 'end', FieldConstructor: INT32, constraints: {}, description: '', }, { fieldName: 'options', protoName: 'options', FieldConstructor: GoogleProtobufExtensionRangeOptions, constraints: {}, description: '', }, ]"
|
|
145686
146019
|
},
|
|
145687
146020
|
{
|
|
145688
146021
|
"kind": "field",
|
|
@@ -146609,7 +146942,7 @@
|
|
|
146609
146942
|
"type": {
|
|
146610
146943
|
"text": "array"
|
|
146611
146944
|
},
|
|
146612
|
-
"default": "[ { fieldName: 'start', protoName: 'start', FieldConstructor: INT32, constraints: {}, description: '' }, { fieldName: 'end', protoName: 'end', FieldConstructor: INT32, constraints: {}, description: '' } ]"
|
|
146945
|
+
"default": "[ { fieldName: 'start', protoName: 'start', FieldConstructor: INT32, constraints: {}, description: '', }, { fieldName: 'end', protoName: 'end', FieldConstructor: INT32, constraints: {}, description: '', }, ]"
|
|
146613
146946
|
},
|
|
146614
146947
|
{
|
|
146615
146948
|
"kind": "field",
|
|
@@ -147563,7 +147896,7 @@
|
|
|
147563
147896
|
"type": {
|
|
147564
147897
|
"text": "array"
|
|
147565
147898
|
},
|
|
147566
|
-
"default": "[ { fieldName: 'name', protoName: 'name', FieldConstructor: STRING, constraints: {}, description: '' }, { fieldName: 'field', protoName: 'field', FieldConstructor: GoogleProtobufFieldDescriptorProto, constraints: {}, description: '' }, { fieldName: 'extension', protoName: 'extension', FieldConstructor: GoogleProtobufFieldDescriptorProto, constraints: {}, description: '' }, { fieldName: 'nestedType', protoName: 'nested_type', FieldConstructor: DescriptorProto, constraints: {}, description: '' }, { fieldName: 'enumType', protoName: 'enum_type', FieldConstructor: GoogleProtobufEnumDescriptorProto, constraints: {}, description: '' }, { fieldName: 'extensionRange', protoName: 'extension_range', FieldConstructor: GoogleProtobufDescriptorProtoExtensionRange, constraints: {}, description: '' }, { fieldName: 'oneofDecl', protoName: 'oneof_decl', FieldConstructor: GoogleProtobufOneofDescriptorProto, constraints: {}, description: '' }, { fieldName: 'options', protoName: 'options', FieldConstructor: GoogleProtobufMessageOptions, constraints: {}, description: '' }, { fieldName: 'reservedRange', protoName: 'reserved_range', FieldConstructor: GoogleProtobufDescriptorProtoReservedRange, constraints: {}, description: '' }, { fieldName: 'reservedName', protoName: 'reserved_name', FieldConstructor: STRING, constraints: {}, description: 'Reserved field names, which may not be used by fields in the same message.\\n A given name may only be reserved once.' } ]"
|
|
147899
|
+
"default": "[ { fieldName: 'name', protoName: 'name', FieldConstructor: STRING, constraints: {}, description: '', }, { fieldName: 'field', protoName: 'field', FieldConstructor: GoogleProtobufFieldDescriptorProto, constraints: {}, description: '', }, { fieldName: 'extension', protoName: 'extension', FieldConstructor: GoogleProtobufFieldDescriptorProto, constraints: {}, description: '', }, { fieldName: 'nestedType', protoName: 'nested_type', FieldConstructor: DescriptorProto, constraints: {}, description: '', }, { fieldName: 'enumType', protoName: 'enum_type', FieldConstructor: GoogleProtobufEnumDescriptorProto, constraints: {}, description: '', }, { fieldName: 'extensionRange', protoName: 'extension_range', FieldConstructor: GoogleProtobufDescriptorProtoExtensionRange, constraints: {}, description: '', }, { fieldName: 'oneofDecl', protoName: 'oneof_decl', FieldConstructor: GoogleProtobufOneofDescriptorProto, constraints: {}, description: '', }, { fieldName: 'options', protoName: 'options', FieldConstructor: GoogleProtobufMessageOptions, constraints: {}, description: '', }, { fieldName: 'reservedRange', protoName: 'reserved_range', FieldConstructor: GoogleProtobufDescriptorProtoReservedRange, constraints: {}, description: '', }, { fieldName: 'reservedName', protoName: 'reserved_name', FieldConstructor: STRING, constraints: {}, description: 'Reserved field names, which may not be used by fields in the same message.\\n A given name may only be reserved once.', }, ]"
|
|
147567
147900
|
},
|
|
147568
147901
|
{
|
|
147569
147902
|
"kind": "field",
|
|
@@ -148521,7 +148854,7 @@
|
|
|
148521
148854
|
"type": {
|
|
148522
148855
|
"text": "array"
|
|
148523
148856
|
},
|
|
148524
|
-
"default": "[ { fieldName: 'value', protoName: 'value', FieldConstructor: DOUBLE, constraints: {}, description: 'The double value.' } ]"
|
|
148857
|
+
"default": "[ { fieldName: 'value', protoName: 'value', FieldConstructor: DOUBLE, constraints: {}, description: 'The double value.', }, ]"
|
|
148525
148858
|
},
|
|
148526
148859
|
{
|
|
148527
148860
|
"kind": "field",
|
|
@@ -149464,7 +149797,7 @@
|
|
|
149464
149797
|
"type": {
|
|
149465
149798
|
"text": "array"
|
|
149466
149799
|
},
|
|
149467
|
-
"default": "[ { fieldName: 'start', protoName: 'start', FieldConstructor: INT32, constraints: {}, description: '' }, { fieldName: 'end', protoName: 'end', FieldConstructor: INT32, constraints: {}, description: '' } ]"
|
|
149800
|
+
"default": "[ { fieldName: 'start', protoName: 'start', FieldConstructor: INT32, constraints: {}, description: '', }, { fieldName: 'end', protoName: 'end', FieldConstructor: INT32, constraints: {}, description: '', }, ]"
|
|
149468
149801
|
},
|
|
149469
149802
|
{
|
|
149470
149803
|
"kind": "field",
|
|
@@ -150398,7 +150731,7 @@
|
|
|
150398
150731
|
"type": {
|
|
150399
150732
|
"text": "array"
|
|
150400
150733
|
},
|
|
150401
|
-
"default": "[ { fieldName: 'name', protoName: 'name', FieldConstructor: STRING, constraints: {}, description: '' }, { fieldName: 'value', protoName: 'value', FieldConstructor: GoogleProtobufEnumValueDescriptorProto, constraints: {}, description: '' }, { fieldName: 'options', protoName: 'options', FieldConstructor: GoogleProtobufEnumOptions, constraints: {}, description: '' }, { fieldName: 'reservedRange', protoName: 'reserved_range', FieldConstructor: GoogleProtobufEnumDescriptorProtoEnumReservedRange, constraints: {}, description: 'Range of reserved numeric values. Reserved numeric values may not be used\\n by enum values in the same enum declaration. Reserved ranges may not\\n overlap.' }, { fieldName: 'reservedName', protoName: 'reserved_name', FieldConstructor: STRING, constraints: {}, description: 'Reserved enum value names, which may not be reused. A given name may only\\n be reserved once.' } ]"
|
|
150734
|
+
"default": "[ { fieldName: 'name', protoName: 'name', FieldConstructor: STRING, constraints: {}, description: '', }, { fieldName: 'value', protoName: 'value', FieldConstructor: GoogleProtobufEnumValueDescriptorProto, constraints: {}, description: '', }, { fieldName: 'options', protoName: 'options', FieldConstructor: GoogleProtobufEnumOptions, constraints: {}, description: '', }, { fieldName: 'reservedRange', protoName: 'reserved_range', FieldConstructor: GoogleProtobufEnumDescriptorProtoEnumReservedRange, constraints: {}, description: 'Range of reserved numeric values. Reserved numeric values may not be used\\n by enum values in the same enum declaration. Reserved ranges may not\\n overlap.', }, { fieldName: 'reservedName', protoName: 'reserved_name', FieldConstructor: STRING, constraints: {}, description: 'Reserved enum value names, which may not be reused. A given name may only\\n be reserved once.', }, ]"
|
|
150402
150735
|
},
|
|
150403
150736
|
{
|
|
150404
150737
|
"kind": "field",
|
|
@@ -151347,7 +151680,7 @@
|
|
|
151347
151680
|
"type": {
|
|
151348
151681
|
"text": "array"
|
|
151349
151682
|
},
|
|
151350
|
-
"default": "[ { fieldName: 'allowAlias', protoName: 'allow_alias', FieldConstructor: BOOLEAN, constraints: {}, description: 'Set this option to true to allow mapping different tag names to the same\\n value.' }, { fieldName: 'deprecated', protoName: 'deprecated', FieldConstructor: BOOLEAN, constraints: {}, description: 'Is this enum deprecated?\\n Depending on the target platform, this can emit Deprecated annotations\\n for the enum, or it will be completely ignored; in the very least, this\\n is a formalization for deprecating enums.' }, { fieldName: 'deprecatedLegacyJsonFieldConflicts', protoName: 'deprecated_legacy_json_field_conflicts', FieldConstructor: BOOLEAN, constraints: {}, description: 'Enable the legacy handling of JSON field name conflicts. This lowercases\\n and strips underscored from the fields before comparison in proto3 only.\\n The new behavior takes `json_name` into account and applies to proto2 as\\n well.\\n TODO Remove this legacy behavior once downstream teams have\\n had time to migrate.' }, { fieldName: 'features', protoName: 'features', FieldConstructor: GoogleProtobufFeatureSet, constraints: {}, description: 'Any features defined in the specific edition.' }, { fieldName: 'uninterpretedOption', protoName: 'uninterpreted_option', FieldConstructor: GoogleProtobufUninterpretedOption, constraints: {}, description:
|
|
151683
|
+
"default": "[ { fieldName: 'allowAlias', protoName: 'allow_alias', FieldConstructor: BOOLEAN, constraints: {}, description: 'Set this option to true to allow mapping different tag names to the same\\n value.', }, { fieldName: 'deprecated', protoName: 'deprecated', FieldConstructor: BOOLEAN, constraints: {}, description: 'Is this enum deprecated?\\n Depending on the target platform, this can emit Deprecated annotations\\n for the enum, or it will be completely ignored; in the very least, this\\n is a formalization for deprecating enums.', }, { fieldName: 'deprecatedLegacyJsonFieldConflicts', protoName: 'deprecated_legacy_json_field_conflicts', FieldConstructor: BOOLEAN, constraints: {}, description: 'Enable the legacy handling of JSON field name conflicts. This lowercases\\n and strips underscored from the fields before comparison in proto3 only.\\n The new behavior takes `json_name` into account and applies to proto2 as\\n well.\\n TODO Remove this legacy behavior once downstream teams have\\n had time to migrate.', }, { fieldName: 'features', protoName: 'features', FieldConstructor: GoogleProtobufFeatureSet, constraints: {}, description: 'Any features defined in the specific edition.', }, { fieldName: 'uninterpretedOption', protoName: 'uninterpreted_option', FieldConstructor: GoogleProtobufUninterpretedOption, constraints: {}, description: \"The parser stores options it doesn't recognize here. See above.\", }, ]"
|
|
151351
151684
|
},
|
|
151352
151685
|
{
|
|
151353
151686
|
"kind": "field",
|
|
@@ -152288,7 +152621,7 @@
|
|
|
152288
152621
|
"type": {
|
|
152289
152622
|
"text": "array"
|
|
152290
152623
|
},
|
|
152291
|
-
"default": "[ { fieldName: 'name', protoName: 'name', FieldConstructor: STRING, constraints: {}, description: '' }, { fieldName: 'number', protoName: 'number', FieldConstructor: INT32, constraints: {}, description: '' }, { fieldName: 'options', protoName: 'options', FieldConstructor: GoogleProtobufEnumValueOptions, constraints: {}, description: '' } ]"
|
|
152624
|
+
"default": "[ { fieldName: 'name', protoName: 'name', FieldConstructor: STRING, constraints: {}, description: '', }, { fieldName: 'number', protoName: 'number', FieldConstructor: INT32, constraints: {}, description: '', }, { fieldName: 'options', protoName: 'options', FieldConstructor: GoogleProtobufEnumValueOptions, constraints: {}, description: '', }, ]"
|
|
152292
152625
|
},
|
|
152293
152626
|
{
|
|
152294
152627
|
"kind": "field",
|
|
@@ -153223,7 +153556,7 @@
|
|
|
153223
153556
|
"type": {
|
|
153224
153557
|
"text": "array"
|
|
153225
153558
|
},
|
|
153226
|
-
"default": "[ { fieldName: 'deprecated', protoName: 'deprecated', FieldConstructor: BOOLEAN, constraints: {}, description: 'Is this enum value deprecated?\\n Depending on the target platform, this can emit Deprecated annotations\\n for the enum value, or it will be completely ignored; in the very least,\\n this is a formalization for deprecating enum values.' }, { fieldName: 'features', protoName: 'features', FieldConstructor: GoogleProtobufFeatureSet, constraints: {}, description: 'Any features defined in the specific edition.' }, { fieldName: 'debugRedact', protoName: 'debug_redact', FieldConstructor: BOOLEAN, constraints: {}, description: 'Indicate that fields annotated with this enum value should not be printed\\n out when using debug formats, e.g. when the field contains sensitive\\n credentials.' }, { fieldName: 'uninterpretedOption', protoName: 'uninterpreted_option', FieldConstructor: GoogleProtobufUninterpretedOption, constraints: {}, description:
|
|
153559
|
+
"default": "[ { fieldName: 'deprecated', protoName: 'deprecated', FieldConstructor: BOOLEAN, constraints: {}, description: 'Is this enum value deprecated?\\n Depending on the target platform, this can emit Deprecated annotations\\n for the enum value, or it will be completely ignored; in the very least,\\n this is a formalization for deprecating enum values.', }, { fieldName: 'features', protoName: 'features', FieldConstructor: GoogleProtobufFeatureSet, constraints: {}, description: 'Any features defined in the specific edition.', }, { fieldName: 'debugRedact', protoName: 'debug_redact', FieldConstructor: BOOLEAN, constraints: {}, description: 'Indicate that fields annotated with this enum value should not be printed\\n out when using debug formats, e.g. when the field contains sensitive\\n credentials.', }, { fieldName: 'uninterpretedOption', protoName: 'uninterpreted_option', FieldConstructor: GoogleProtobufUninterpretedOption, constraints: {}, description: \"The parser stores options it doesn't recognize here. See above.\", }, ]"
|
|
153227
153560
|
},
|
|
153228
153561
|
{
|
|
153229
153562
|
"kind": "field",
|
|
@@ -154167,7 +154500,7 @@
|
|
|
154167
154500
|
"type": {
|
|
154168
154501
|
"text": "array"
|
|
154169
154502
|
},
|
|
154170
|
-
"default": "[ { fieldName: 'number', protoName: 'number', FieldConstructor: INT32, constraints: {}, description: '' }, { fieldName: 'fullName', protoName: 'full_name', FieldConstructor: STRING, constraints: {}, description: 'The fully-qualified name of the extension field. There must be a leading\\n dot in front of the full name.' }, { fieldName: 'type', protoName: 'type', FieldConstructor: STRING, constraints: {}, description: 'The fully-qualified type name of the extension field. Unlike\\n Metadata.type, Declaration.type must have a leading dot for messages\\n and enums.' }, { fieldName: 'reserved', protoName: 'reserved', FieldConstructor: BOOLEAN, constraints: {}, description: 'If true, indicates that the number is reserved in the extension range,\\n and any extension field with the number will fail to compile. Set this\\n when a declared extension field is deleted.' }, { fieldName: 'repeated', protoName: 'repeated', FieldConstructor: BOOLEAN, constraints: {}, description: 'If true, indicates that the extension must be defined as repeated.\\n Otherwise the extension must be defined as optional.' } ]"
|
|
154503
|
+
"default": "[ { fieldName: 'number', protoName: 'number', FieldConstructor: INT32, constraints: {}, description: '', }, { fieldName: 'fullName', protoName: 'full_name', FieldConstructor: STRING, constraints: {}, description: 'The fully-qualified name of the extension field. There must be a leading\\n dot in front of the full name.', }, { fieldName: 'type', protoName: 'type', FieldConstructor: STRING, constraints: {}, description: 'The fully-qualified type name of the extension field. Unlike\\n Metadata.type, Declaration.type must have a leading dot for messages\\n and enums.', }, { fieldName: 'reserved', protoName: 'reserved', FieldConstructor: BOOLEAN, constraints: {}, description: 'If true, indicates that the number is reserved in the extension range,\\n and any extension field with the number will fail to compile. Set this\\n when a declared extension field is deleted.', }, { fieldName: 'repeated', protoName: 'repeated', FieldConstructor: BOOLEAN, constraints: {}, description: 'If true, indicates that the extension must be defined as repeated.\\n Otherwise the extension must be defined as optional.', }, ]"
|
|
154171
154504
|
},
|
|
154172
154505
|
{
|
|
154173
154506
|
"kind": "field",
|
|
@@ -155138,7 +155471,7 @@
|
|
|
155138
155471
|
"type": {
|
|
155139
155472
|
"text": "array"
|
|
155140
155473
|
},
|
|
155141
|
-
"default": "[ { fieldName: 'uninterpretedOption', protoName: 'uninterpreted_option', FieldConstructor: GoogleProtobufUninterpretedOption, constraints: {}, description:
|
|
155474
|
+
"default": "[ { fieldName: 'uninterpretedOption', protoName: 'uninterpreted_option', FieldConstructor: GoogleProtobufUninterpretedOption, constraints: {}, description: \"The parser stores options it doesn't recognize here. See above.\", }, { fieldName: 'declaration', protoName: 'declaration', FieldConstructor: GoogleProtobufExtensionRangeOptionsDeclaration, constraints: {}, description: 'For external users: DO NOT USE. We are in the process of open sourcing\\n extension declaration and executing internal cleanups before it can be\\n used externally.', }, { fieldName: 'features', protoName: 'features', FieldConstructor: GoogleProtobufFeatureSet, constraints: {}, description: 'Any features defined in the specific edition.', }, { fieldName: 'verification', protoName: 'verification', FieldConstructor: (ENUM), constraints: {}, description: 'The verification state of the range.\\n TODO: flip the default to DECLARATION once all empty ranges\\n are marked as UNVERIFIED.', }, ]"
|
|
155142
155475
|
},
|
|
155143
155476
|
{
|
|
155144
155477
|
"kind": "field",
|
|
@@ -156234,7 +156567,7 @@
|
|
|
156234
156567
|
"type": {
|
|
156235
156568
|
"text": "string"
|
|
156236
156569
|
},
|
|
156237
|
-
"default": "
|
|
156570
|
+
"default": "\"FeatureSet TODO Enums in C++ gencode (and potentially other languages) are\\n not well scoped. This means that each of the feature enums below can clash\\n with each other. The short names we've chosen maximize call-site\\n readability, but leave us very open to this scenario. A future feature will\\n be designed and implemented to handle this, hopefully before we ever hit a\\n conflict here.\""
|
|
156238
156571
|
},
|
|
156239
156572
|
{
|
|
156240
156573
|
"kind": "field",
|
|
@@ -156242,7 +156575,7 @@
|
|
|
156242
156575
|
"type": {
|
|
156243
156576
|
"text": "array"
|
|
156244
156577
|
},
|
|
156245
|
-
"default": "[ { fieldName: 'fieldPresence', protoName: 'field_presence', FieldConstructor: (ENUM), constraints: {}, description: '' }, { fieldName: 'enumType', protoName: 'enum_type', FieldConstructor: (ENUM), constraints: {}, description: '' }, { fieldName: 'repeatedFieldEncoding', protoName: 'repeated_field_encoding', FieldConstructor: (ENUM), constraints: {}, description: '' }, { fieldName: 'utf8Validation', protoName: 'utf8_validation', FieldConstructor: (ENUM), constraints: {}, description: '' }, { fieldName: 'messageEncoding', protoName: 'message_encoding', FieldConstructor: (ENUM), constraints: {}, description: '' }, { fieldName: 'jsonFormat', protoName: 'json_format', FieldConstructor: (ENUM), constraints: {}, description: '' } ]"
|
|
156578
|
+
"default": "[ { fieldName: 'fieldPresence', protoName: 'field_presence', FieldConstructor: (ENUM), constraints: {}, description: '', }, { fieldName: 'enumType', protoName: 'enum_type', FieldConstructor: (ENUM), constraints: {}, description: '', }, { fieldName: 'repeatedFieldEncoding', protoName: 'repeated_field_encoding', FieldConstructor: (ENUM), constraints: {}, description: '', }, { fieldName: 'utf8Validation', protoName: 'utf8_validation', FieldConstructor: (ENUM), constraints: {}, description: '', }, { fieldName: 'messageEncoding', protoName: 'message_encoding', FieldConstructor: (ENUM), constraints: {}, description: '', }, { fieldName: 'jsonFormat', protoName: 'json_format', FieldConstructor: (ENUM), constraints: {}, description: '', }, ]"
|
|
156246
156579
|
},
|
|
156247
156580
|
{
|
|
156248
156581
|
"kind": "field",
|
|
@@ -157184,7 +157517,7 @@
|
|
|
157184
157517
|
"type": {
|
|
157185
157518
|
"text": "array"
|
|
157186
157519
|
},
|
|
157187
|
-
"default": "[ { fieldName: 'edition', protoName: 'edition', FieldConstructor: (ENUM), constraints: {}, description: '' }, { fieldName: 'features', protoName: 'features', FieldConstructor: GoogleProtobufFeatureSet, constraints: {}, description: '' } ]"
|
|
157520
|
+
"default": "[ { fieldName: 'edition', protoName: 'edition', FieldConstructor: (ENUM), constraints: {}, description: '', }, { fieldName: 'features', protoName: 'features', FieldConstructor: GoogleProtobufFeatureSet, constraints: {}, description: '', }, ]"
|
|
157188
157521
|
},
|
|
157189
157522
|
{
|
|
157190
157523
|
"kind": "field",
|
|
@@ -158110,7 +158443,7 @@
|
|
|
158110
158443
|
"type": {
|
|
158111
158444
|
"text": "array"
|
|
158112
158445
|
},
|
|
158113
|
-
"default": "[ { fieldName: 'defaults', protoName: 'defaults', FieldConstructor: GoogleProtobufFeatureSetDefaultsFeatureSetEditionDefault, constraints: {}, description: '' }, { fieldName: 'minimumEdition', protoName: 'minimum_edition', FieldConstructor: (ENUM), constraints: {}, description: 'The minimum supported edition (inclusive) when this was constructed.\\n Editions before this will not have defaults.' }, { fieldName: 'maximumEdition', protoName: 'maximum_edition', FieldConstructor: (ENUM), constraints: {}, description: 'The maximum known edition (inclusive) when this was constructed. Editions\\n after this will not have reliable defaults.' } ]"
|
|
158446
|
+
"default": "[ { fieldName: 'defaults', protoName: 'defaults', FieldConstructor: GoogleProtobufFeatureSetDefaultsFeatureSetEditionDefault, constraints: {}, description: '', }, { fieldName: 'minimumEdition', protoName: 'minimum_edition', FieldConstructor: (ENUM), constraints: {}, description: 'The minimum supported edition (inclusive) when this was constructed.\\n Editions before this will not have defaults.', }, { fieldName: 'maximumEdition', protoName: 'maximum_edition', FieldConstructor: (ENUM), constraints: {}, description: 'The maximum known edition (inclusive) when this was constructed. Editions\\n after this will not have reliable defaults.', }, ]"
|
|
158114
158447
|
},
|
|
158115
158448
|
{
|
|
158116
158449
|
"kind": "field",
|
|
@@ -159121,7 +159454,7 @@
|
|
|
159121
159454
|
"type": {
|
|
159122
159455
|
"text": "array"
|
|
159123
159456
|
},
|
|
159124
|
-
"default": "[ { fieldName: 'name', protoName: 'name', FieldConstructor: STRING, constraints: {}, description: '' }, { fieldName: 'number', protoName: 'number', FieldConstructor: INT32, constraints: {}, description: '' }, { fieldName: 'label', protoName: 'label', FieldConstructor: (ENUM), constraints: {}, description: '' }, { fieldName: 'type', protoName: 'type', FieldConstructor: (ENUM), constraints: {}, description: 'If type_name is set, this need not be set. If both this and type_name\\n are set, this must be one of TYPE_ENUM, TYPE_MESSAGE or TYPE_GROUP.' }, { fieldName: 'typeName', protoName: 'type_name', FieldConstructor: STRING, constraints: {}, description:
|
|
159457
|
+
"default": "[ { fieldName: 'name', protoName: 'name', FieldConstructor: STRING, constraints: {}, description: '', }, { fieldName: 'number', protoName: 'number', FieldConstructor: INT32, constraints: {}, description: '', }, { fieldName: 'label', protoName: 'label', FieldConstructor: (ENUM), constraints: {}, description: '', }, { fieldName: 'type', protoName: 'type', FieldConstructor: (ENUM), constraints: {}, description: 'If type_name is set, this need not be set. If both this and type_name\\n are set, this must be one of TYPE_ENUM, TYPE_MESSAGE or TYPE_GROUP.', }, { fieldName: 'typeName', protoName: 'type_name', FieldConstructor: STRING, constraints: {}, description: \"For message and enum types, this is the name of the type. If the name\\n starts with a '.', it is fully-qualified. Otherwise, C++-like scoping\\n rules are used to find the type (i.e. first the nested types within this\\n message are searched, then within the parent, on up to the root\\n namespace).\", }, { fieldName: 'extendee', protoName: 'extendee', FieldConstructor: STRING, constraints: {}, description: 'For extensions, this is the name of the type being extended. It is\\n resolved in the same manner as type_name.', }, { fieldName: 'defaultValue', protoName: 'default_value', FieldConstructor: STRING, constraints: {}, description: 'For numeric types, contains the original text representation of the value.\\n For booleans, \"true\" or \"false\".\\n For strings, contains the default text contents (not escaped in any way).\\n For bytes, contains the C escaped value. All bytes >= 128 are escaped.', }, { fieldName: 'oneofIndex', protoName: 'oneof_index', FieldConstructor: INT32, constraints: {}, description: \"If set, gives the index of a oneof in the containing type's oneof_decl\\n list. This field is a member of that oneof.\", }, { fieldName: 'jsonName', protoName: 'json_name', FieldConstructor: STRING, constraints: {}, description: \"JSON name of this field. The value is set by protocol compiler. If the\\n user has set a \\\"json_name\\\" option on this field, that option's value\\n will be used. Otherwise, it's deduced from the field's name by converting\\n it to camelCase.\", }, { fieldName: 'options', protoName: 'options', FieldConstructor: GoogleProtobufFieldOptions, constraints: {}, description: '', }, { fieldName: 'proto3Optional', protoName: 'proto3_optional', FieldConstructor: BOOLEAN, constraints: {}, description: 'If true, this is a proto3 \"optional\". When a proto3 field is optional, it\\n tracks presence regardless of field type.\\n\\n When proto3_optional is true, this field must be belong to a oneof to\\n signal to old proto3 clients that presence is tracked for this field. This\\n oneof is known as a \"synthetic\" oneof, and this field must be its sole\\n member (each proto3 optional field gets its own synthetic oneof). Synthetic\\n oneofs exist in the descriptor only, and do not generate any API. Synthetic\\n oneofs must be ordered after all \"real\" oneofs.\\n\\n For message fields, proto3_optional doesn\\'t create any semantic change,\\n since non-repeated message fields always track presence. However it still\\n indicates the semantic detail of whether the user wrote \"optional\" or not.\\n This can be useful for round-tripping the .proto file. For consistency we\\n give message fields a synthetic oneof also, even though it is not required\\n to track presence. This is especially important because the parser can\\'t\\n tell if a field is a message or an enum, so it must always create a\\n synthetic oneof.\\n\\n Proto2 optional fields do not set this flag, because they already indicate\\n optional with `LABEL_OPTIONAL`.', }, ]"
|
|
159125
159458
|
},
|
|
159126
159459
|
{
|
|
159127
159460
|
"kind": "field",
|
|
@@ -160114,7 +160447,7 @@
|
|
|
160114
160447
|
"type": {
|
|
160115
160448
|
"text": "array"
|
|
160116
160449
|
},
|
|
160117
|
-
"default": "[ { fieldName: 'edition', protoName: 'edition', FieldConstructor: (ENUM), constraints: {}, description: '' }, { fieldName: 'value', protoName: 'value', FieldConstructor: STRING, constraints: {}, description: '' } ]"
|
|
160450
|
+
"default": "[ { fieldName: 'edition', protoName: 'edition', FieldConstructor: (ENUM), constraints: {}, description: '', }, { fieldName: 'value', protoName: 'value', FieldConstructor: STRING, constraints: {}, description: '', }, ]"
|
|
160118
160451
|
},
|
|
160119
160452
|
{
|
|
160120
160453
|
"kind": "field",
|
|
@@ -161158,7 +161491,7 @@
|
|
|
161158
161491
|
"type": {
|
|
161159
161492
|
"text": "array"
|
|
161160
161493
|
},
|
|
161161
|
-
"default": "[ { fieldName: 'ctype', protoName: 'ctype', FieldConstructor: (ENUM), constraints: {}, description: 'The ctype option instructs the C++ code generator to use a different\\n representation of the field than it normally would. See the specific\\n options below. This option is only implemented to support use of\\n [ctype=CORD] and [ctype=STRING] (the default) on non-repeated fields of\\n type \"bytes\" in the open source release -- sorry, we\\'ll try to include\\n other types in a future version!' }, { fieldName: 'packed', protoName: 'packed', FieldConstructor: BOOLEAN, constraints: {}, description: 'The packed option can be enabled for repeated primitive fields to enable\\n a more efficient representation on the wire. Rather than repeatedly\\n writing the tag and type for each element, the entire array is encoded as\\n a single length-delimited blob. In proto3, only explicit setting it to\\n false will avoid using packed encoding. This option is prohibited in\\n Editions, but the `repeated_field_encoding` feature can be used to control\\n the behavior.' }, { fieldName: 'jstype', protoName: 'jstype', FieldConstructor: (ENUM), constraints: {}, description: 'The jstype option determines the JavaScript type used for values of the\\n field. The option is permitted only for 64 bit integral and fixed types\\n (int64, uint64, sint64, fixed64, sfixed64). A field with jstype JS_STRING\\n is represented as JavaScript string, which avoids loss of precision that\\n can happen when a large value is converted to a floating point JavaScript.\\n Specifying JS_NUMBER for the jstype causes the generated JavaScript code to\\n use the JavaScript \"number\" type. The behavior of the default option\\n JS_NORMAL is implementation dependent.\\n\\n This option is an enum to permit additional types to be added, e.g.\\n goog.math.Integer.' }, { fieldName: 'lazy', protoName: 'lazy', FieldConstructor: BOOLEAN, constraints: {}, description:
|
|
161494
|
+
"default": "[ { fieldName: 'ctype', protoName: 'ctype', FieldConstructor: (ENUM), constraints: {}, description: 'The ctype option instructs the C++ code generator to use a different\\n representation of the field than it normally would. See the specific\\n options below. This option is only implemented to support use of\\n [ctype=CORD] and [ctype=STRING] (the default) on non-repeated fields of\\n type \"bytes\" in the open source release -- sorry, we\\'ll try to include\\n other types in a future version!', }, { fieldName: 'packed', protoName: 'packed', FieldConstructor: BOOLEAN, constraints: {}, description: 'The packed option can be enabled for repeated primitive fields to enable\\n a more efficient representation on the wire. Rather than repeatedly\\n writing the tag and type for each element, the entire array is encoded as\\n a single length-delimited blob. In proto3, only explicit setting it to\\n false will avoid using packed encoding. This option is prohibited in\\n Editions, but the `repeated_field_encoding` feature can be used to control\\n the behavior.', }, { fieldName: 'jstype', protoName: 'jstype', FieldConstructor: (ENUM), constraints: {}, description: 'The jstype option determines the JavaScript type used for values of the\\n field. The option is permitted only for 64 bit integral and fixed types\\n (int64, uint64, sint64, fixed64, sfixed64). A field with jstype JS_STRING\\n is represented as JavaScript string, which avoids loss of precision that\\n can happen when a large value is converted to a floating point JavaScript.\\n Specifying JS_NUMBER for the jstype causes the generated JavaScript code to\\n use the JavaScript \"number\" type. The behavior of the default option\\n JS_NORMAL is implementation dependent.\\n\\n This option is an enum to permit additional types to be added, e.g.\\n goog.math.Integer.', }, { fieldName: 'lazy', protoName: 'lazy', FieldConstructor: BOOLEAN, constraints: {}, description: \"Should this field be parsed lazily? Lazy applies only to message-type\\n fields. It means that when the outer message is initially parsed, the\\n inner message's contents will not be parsed but instead stored in encoded\\n form. The inner message will actually be parsed when it is first accessed.\\n\\n This is only a hint. Implementations are free to choose whether to use\\n eager or lazy parsing regardless of the value of this option. However,\\n setting this option true suggests that the protocol author believes that\\n using lazy parsing on this field is worth the additional bookkeeping\\n overhead typically needed to implement it.\\n\\n This option does not affect the public interface of any generated code;\\n all method signatures remain the same. Furthermore, thread-safety of the\\n interface is not affected by this option; const methods remain safe to\\n call from multiple threads concurrently, while non-const methods continue\\n to require exclusive access.\\n\\n Note that implementations may choose not to check required fields within\\n a lazy sub-message. That is, calling IsInitialized() on the outer message\\n may return true even if the inner message has missing required fields.\\n This is necessary because otherwise the inner message would have to be\\n parsed in order to perform the check, defeating the purpose of lazy\\n parsing. An implementation which chooses not to check required fields\\n must be consistent about it. That is, for any particular sub-message, the\\n implementation must either *always* check its required fields, or *never*\\n check its required fields, regardless of whether or not the message has\\n been parsed.\\n\\n As of May 2022, lazy verifies the contents of the byte stream during\\n parsing. An invalid byte stream will cause the overall parsing to fail.\", }, { fieldName: 'unverifiedLazy', protoName: 'unverified_lazy', FieldConstructor: BOOLEAN, constraints: {}, description: 'unverified_lazy does no correctness checks on the byte stream. This should\\n only be used where lazy with verification is prohibitive for performance\\n reasons.', }, { fieldName: 'deprecated', protoName: 'deprecated', FieldConstructor: BOOLEAN, constraints: {}, description: 'Is this field deprecated?\\n Depending on the target platform, this can emit Deprecated annotations\\n for accessors, or it will be completely ignored; in the very least, this\\n is a formalization for deprecating fields.', }, { fieldName: 'weak', protoName: 'weak', FieldConstructor: BOOLEAN, constraints: {}, description: 'For Google-internal migration only. Do not use.', }, { fieldName: 'debugRedact', protoName: 'debug_redact', FieldConstructor: BOOLEAN, constraints: {}, description: 'Indicate that the field value should not be printed out when using debug\\n formats, e.g. when the field contains sensitive credentials.', }, { fieldName: 'retention', protoName: 'retention', FieldConstructor: (ENUM), constraints: {}, description: '', }, { fieldName: 'targets', protoName: 'targets', FieldConstructor: (ENUM), constraints: {}, description: '', }, { fieldName: 'editionDefaults', protoName: 'edition_defaults', FieldConstructor: GoogleProtobufFieldOptionsEditionDefault, constraints: {}, description: '', }, { fieldName: 'features', protoName: 'features', FieldConstructor: GoogleProtobufFeatureSet, constraints: {}, description: 'Any features defined in the specific edition.', }, { fieldName: 'uninterpretedOption', protoName: 'uninterpreted_option', FieldConstructor: GoogleProtobufUninterpretedOption, constraints: {}, description: \"The parser stores options it doesn't recognize here. See above.\", }, ]"
|
|
161162
161495
|
},
|
|
161163
161496
|
{
|
|
161164
161497
|
"kind": "field",
|
|
@@ -162179,7 +162512,7 @@
|
|
|
162179
162512
|
"type": {
|
|
162180
162513
|
"text": "array"
|
|
162181
162514
|
},
|
|
162182
|
-
"default": "[ { fieldName: 'name', protoName: 'name', FieldConstructor: STRING, constraints: {}, description: '' }, { fieldName: 'package', protoName: 'package', FieldConstructor: STRING, constraints: {}, description: '' }, { fieldName: 'dependency', protoName: 'dependency', FieldConstructor: STRING, constraints: {}, description: 'Names of files imported by this file.' }, { fieldName: 'publicDependency', protoName: 'public_dependency', FieldConstructor: INT32, constraints: {}, description: 'Indexes of the public imported files in the dependency list above.' }, { fieldName: 'weakDependency', protoName: 'weak_dependency', FieldConstructor: INT32, constraints: {}, description: 'Indexes of the weak imported files in the dependency list.\\n For Google-internal migration only. Do not use.' }, { fieldName: 'messageType', protoName: 'message_type', FieldConstructor: GoogleProtobufDescriptorProto, constraints: {}, description: 'All top-level definitions in this file.' }, { fieldName: 'enumType', protoName: 'enum_type', FieldConstructor: GoogleProtobufEnumDescriptorProto, constraints: {}, description: '' }, { fieldName: 'service', protoName: 'service', FieldConstructor: GoogleProtobufServiceDescriptorProto, constraints: {}, description: '' }, { fieldName: 'extension', protoName: 'extension', FieldConstructor: GoogleProtobufFieldDescriptorProto, constraints: {}, description: '' }, { fieldName: 'options', protoName: 'options', FieldConstructor: GoogleProtobufFileOptions, constraints: {}, description: '' }, { fieldName: 'sourceCodeInfo', protoName: 'source_code_info', FieldConstructor: GoogleProtobufSourceCodeInfo, constraints: {}, description: 'This field contains optional information about the original source code.\\n You may safely remove this entire field without harming runtime\\n functionality of the descriptors -- the information is needed only by\\n development tools.' }, { fieldName: 'syntax', protoName: 'syntax', FieldConstructor: STRING, constraints: {}, description: 'The syntax of the proto file.\\n The supported values are \"proto2\", \"proto3\", and \"editions\".\\n\\n If `edition` is present, this value must be \"editions\".' }, { fieldName: 'edition', protoName: 'edition', FieldConstructor: (ENUM), constraints: {}, description: 'The edition of the proto file.' } ]"
|
|
162515
|
+
"default": "[ { fieldName: 'name', protoName: 'name', FieldConstructor: STRING, constraints: {}, description: '', }, { fieldName: 'package', protoName: 'package', FieldConstructor: STRING, constraints: {}, description: '', }, { fieldName: 'dependency', protoName: 'dependency', FieldConstructor: STRING, constraints: {}, description: 'Names of files imported by this file.', }, { fieldName: 'publicDependency', protoName: 'public_dependency', FieldConstructor: INT32, constraints: {}, description: 'Indexes of the public imported files in the dependency list above.', }, { fieldName: 'weakDependency', protoName: 'weak_dependency', FieldConstructor: INT32, constraints: {}, description: 'Indexes of the weak imported files in the dependency list.\\n For Google-internal migration only. Do not use.', }, { fieldName: 'messageType', protoName: 'message_type', FieldConstructor: GoogleProtobufDescriptorProto, constraints: {}, description: 'All top-level definitions in this file.', }, { fieldName: 'enumType', protoName: 'enum_type', FieldConstructor: GoogleProtobufEnumDescriptorProto, constraints: {}, description: '', }, { fieldName: 'service', protoName: 'service', FieldConstructor: GoogleProtobufServiceDescriptorProto, constraints: {}, description: '', }, { fieldName: 'extension', protoName: 'extension', FieldConstructor: GoogleProtobufFieldDescriptorProto, constraints: {}, description: '', }, { fieldName: 'options', protoName: 'options', FieldConstructor: GoogleProtobufFileOptions, constraints: {}, description: '', }, { fieldName: 'sourceCodeInfo', protoName: 'source_code_info', FieldConstructor: GoogleProtobufSourceCodeInfo, constraints: {}, description: 'This field contains optional information about the original source code.\\n You may safely remove this entire field without harming runtime\\n functionality of the descriptors -- the information is needed only by\\n development tools.', }, { fieldName: 'syntax', protoName: 'syntax', FieldConstructor: STRING, constraints: {}, description: 'The syntax of the proto file.\\n The supported values are \"proto2\", \"proto3\", and \"editions\".\\n\\n If `edition` is present, this value must be \"editions\".', }, { fieldName: 'edition', protoName: 'edition', FieldConstructor: (ENUM), constraints: {}, description: 'The edition of the proto file.', }, ]"
|
|
162183
162516
|
},
|
|
162184
162517
|
{
|
|
162185
162518
|
"kind": "field",
|
|
@@ -163152,7 +163485,7 @@
|
|
|
163152
163485
|
"type": {
|
|
163153
163486
|
"text": "array"
|
|
163154
163487
|
},
|
|
163155
|
-
"default": "[ { fieldName: 'file', protoName: 'file', FieldConstructor: GoogleProtobufFileDescriptorProto, constraints: {}, description: '' } ]"
|
|
163488
|
+
"default": "[ { fieldName: 'file', protoName: 'file', FieldConstructor: GoogleProtobufFileDescriptorProto, constraints: {}, description: '', }, ]"
|
|
163156
163489
|
},
|
|
163157
163490
|
{
|
|
163158
163491
|
"kind": "field",
|
|
@@ -164175,7 +164508,7 @@
|
|
|
164175
164508
|
"type": {
|
|
164176
164509
|
"text": "array"
|
|
164177
164510
|
},
|
|
164178
|
-
"default": "[ { fieldName: 'javaPackage', protoName: 'java_package', FieldConstructor: STRING, constraints: {}, description: 'Sets the Java package where classes generated from this .proto will be\\n placed. By default, the proto package is used, but this is often\\n inappropriate because proto packages do not normally start with backwards\\n domain names.' }, { fieldName: 'javaOuterClassname', protoName: 'java_outer_classname', FieldConstructor: STRING, constraints: {}, description:
|
|
164511
|
+
"default": "[ { fieldName: 'javaPackage', protoName: 'java_package', FieldConstructor: STRING, constraints: {}, description: 'Sets the Java package where classes generated from this .proto will be\\n placed. By default, the proto package is used, but this is often\\n inappropriate because proto packages do not normally start with backwards\\n domain names.', }, { fieldName: 'javaOuterClassname', protoName: 'java_outer_classname', FieldConstructor: STRING, constraints: {}, description: \"Controls the name of the wrapper Java class generated for the .proto file.\\n That class will always contain the .proto file's getDescriptor() method as\\n well as any top-level extensions defined in the .proto file.\\n If java_multiple_files is disabled, then all the other classes from the\\n .proto file will be nested inside the single wrapper outer class.\", }, { fieldName: 'javaMultipleFiles', protoName: 'java_multiple_files', FieldConstructor: BOOLEAN, constraints: {}, description: \"If enabled, then the Java code generator will generate a separate .java\\n file for each top-level message, enum, and service defined in the .proto\\n file. Thus, these types will *not* be nested inside the wrapper class\\n named by java_outer_classname. However, the wrapper class will still be\\n generated to contain the file's getDescriptor() method as well as any\\n top-level extensions defined in the file.\", }, { fieldName: 'javaGenerateEqualsAndHash', protoName: 'java_generate_equals_and_hash', FieldConstructor: BOOLEAN, constraints: {}, description: 'This option does nothing.', }, { fieldName: 'javaStringCheckUtf8', protoName: 'java_string_check_utf8', FieldConstructor: BOOLEAN, constraints: {}, description: 'If set true, then the Java2 code generator will generate code that\\n throws an exception whenever an attempt is made to assign a non-UTF-8\\n byte sequence to a string field.\\n Message reflection will do the same.\\n However, an extension field still accepts non-UTF-8 byte sequences.\\n This option has no effect on when used with the lite runtime.', }, { fieldName: 'optimizeFor', protoName: 'optimize_for', FieldConstructor: (ENUM), constraints: {}, description: '', }, { fieldName: 'goPackage', protoName: 'go_package', FieldConstructor: STRING, constraints: {}, description: 'Sets the Go package where structs generated from this .proto will be\\n placed. If omitted, the Go package will be derived from the following:\\n - The basename of the package import path, if provided.\\n - Otherwise, the package statement in the .proto file, if present.\\n - Otherwise, the basename of the .proto file, without extension.', }, { fieldName: 'ccGenericServices', protoName: 'cc_generic_services', FieldConstructor: BOOLEAN, constraints: {}, description: 'Should generic services be generated in each language? \"Generic\" services\\n are not specific to any particular RPC system. They are generated by the\\n main code generators in each language (without additional plugins).\\n Generic services were the only kind of service generation supported by\\n early versions of google.protobuf.\\n\\n Generic services are now considered deprecated in favor of using plugins\\n that generate code specific to your particular RPC system. Therefore,\\n these default to false. Old code which depends on generic services should\\n explicitly set them to true.', }, { fieldName: 'javaGenericServices', protoName: 'java_generic_services', FieldConstructor: BOOLEAN, constraints: {}, description: '', }, { fieldName: 'pyGenericServices', protoName: 'py_generic_services', FieldConstructor: BOOLEAN, constraints: {}, description: '', }, { fieldName: 'phpGenericServices', protoName: 'php_generic_services', FieldConstructor: BOOLEAN, constraints: {}, description: '', }, { fieldName: 'deprecated', protoName: 'deprecated', FieldConstructor: BOOLEAN, constraints: {}, description: 'Is this file deprecated?\\n Depending on the target platform, this can emit Deprecated annotations\\n for everything in the file, or it will be completely ignored; in the very\\n least, this is a formalization for deprecating files.', }, { fieldName: 'ccEnableArenas', protoName: 'cc_enable_arenas', FieldConstructor: BOOLEAN, constraints: {}, description: 'Enables the use of arenas for the proto messages in this file. This applies\\n only to generated classes for C++.', }, { fieldName: 'objcClassPrefix', protoName: 'objc_class_prefix', FieldConstructor: STRING, constraints: {}, description: 'Sets the objective c class prefix which is prepended to all objective c\\n generated classes from this .proto. There is no default.', }, { fieldName: 'csharpNamespace', protoName: 'csharp_namespace', FieldConstructor: STRING, constraints: {}, description: 'Namespace for generated classes; defaults to the package.', }, { fieldName: 'swiftPrefix', protoName: 'swift_prefix', FieldConstructor: STRING, constraints: {}, description: \"By default Swift generators will take the proto package and CamelCase it\\n replacing '.' with underscore and use that to prefix the types/symbols\\n defined. When this options is provided, they will use this value instead\\n to prefix the types/symbols defined.\", }, { fieldName: 'phpClassPrefix', protoName: 'php_class_prefix', FieldConstructor: STRING, constraints: {}, description: 'Sets the php class prefix which is prepended to all php generated classes\\n from this .proto. Default is empty.', }, { fieldName: 'phpNamespace', protoName: 'php_namespace', FieldConstructor: STRING, constraints: {}, description: 'Use this option to change the namespace of php generated classes. Default\\n is empty. When this option is empty, the package name will be used for\\n determining the namespace.', }, { fieldName: 'phpMetadataNamespace', protoName: 'php_metadata_namespace', FieldConstructor: STRING, constraints: {}, description: 'Use this option to change the namespace of php generated metadata classes.\\n Default is empty. When this option is empty, the proto file name will be\\n used for determining the namespace.', }, { fieldName: 'rubyPackage', protoName: 'ruby_package', FieldConstructor: STRING, constraints: {}, description: 'Use this option to change the package of ruby generated classes. Default\\n is empty. When this option is not set, the package name will be used for\\n determining the ruby package.', }, { fieldName: 'features', protoName: 'features', FieldConstructor: GoogleProtobufFeatureSet, constraints: {}, description: 'Any features defined in the specific edition.', }, { fieldName: 'uninterpretedOption', protoName: 'uninterpreted_option', FieldConstructor: GoogleProtobufUninterpretedOption, constraints: {}, description: 'The parser stores options it doesn\\'t recognize here.\\n See the documentation for the \"Options\" section above.', }, ]"
|
|
164179
164512
|
},
|
|
164180
164513
|
{
|
|
164181
164514
|
"kind": "field",
|
|
@@ -165193,7 +165526,7 @@
|
|
|
165193
165526
|
"type": {
|
|
165194
165527
|
"text": "array"
|
|
165195
165528
|
},
|
|
165196
|
-
"default": "[ { fieldName: 'value', protoName: 'value', FieldConstructor: FLOAT, constraints: {}, description: 'The float value.' } ]"
|
|
165529
|
+
"default": "[ { fieldName: 'value', protoName: 'value', FieldConstructor: FLOAT, constraints: {}, description: 'The float value.', }, ]"
|
|
165197
165530
|
},
|
|
165198
165531
|
{
|
|
165199
165532
|
"kind": "field",
|
|
@@ -166148,7 +166481,7 @@
|
|
|
166148
166481
|
"type": {
|
|
166149
166482
|
"text": "array"
|
|
166150
166483
|
},
|
|
166151
|
-
"default": "[ { fieldName: 'path', protoName: 'path', FieldConstructor: INT32, constraints: {}, description:
|
|
166484
|
+
"default": "[ { fieldName: 'path', protoName: 'path', FieldConstructor: INT32, constraints: {}, description: \"Represents the identified object's effect on the element in the original\\n .proto file.\", }, { fieldName: 'sourceFile', protoName: 'source_file', FieldConstructor: STRING, constraints: {}, description: 'Identifies the filesystem path to the original source .proto.', }, { fieldName: 'begin', protoName: 'begin', FieldConstructor: INT32, constraints: {}, description: 'Identifies the starting offset in bytes in the generated code\\n that relates to the identified object.', }, { fieldName: 'end', protoName: 'end', FieldConstructor: INT32, constraints: {}, description: 'Identifies the ending offset in bytes in the generated code that\\n relates to the identified object. The end offset should be one past\\n the last relevant byte (so the length of the text = end - begin).', }, { fieldName: 'semantic', protoName: 'semantic', FieldConstructor: (ENUM), constraints: {}, description: '', }, ]"
|
|
166152
166485
|
},
|
|
166153
166486
|
{
|
|
166154
166487
|
"kind": "field",
|
|
@@ -167081,7 +167414,7 @@
|
|
|
167081
167414
|
"type": {
|
|
167082
167415
|
"text": "array"
|
|
167083
167416
|
},
|
|
167084
|
-
"default": "[ { fieldName: 'annotation', protoName: 'annotation', FieldConstructor: GoogleProtobufGeneratedCodeInfoAnnotation, constraints: {}, description: 'An Annotation connects some span of text in generated code to an element\\n of its generating .proto file.' } ]"
|
|
167417
|
+
"default": "[ { fieldName: 'annotation', protoName: 'annotation', FieldConstructor: GoogleProtobufGeneratedCodeInfoAnnotation, constraints: {}, description: 'An Annotation connects some span of text in generated code to an element\\n of its generating .proto file.', }, ]"
|
|
167085
167418
|
},
|
|
167086
167419
|
{
|
|
167087
167420
|
"kind": "field",
|
|
@@ -167994,7 +168327,7 @@
|
|
|
167994
168327
|
"type": {
|
|
167995
168328
|
"text": "array"
|
|
167996
168329
|
},
|
|
167997
|
-
"default": "[ { fieldName: 'value', protoName: 'value', FieldConstructor: INT32, constraints: {}, description: 'The int32 value.' } ]"
|
|
168330
|
+
"default": "[ { fieldName: 'value', protoName: 'value', FieldConstructor: INT32, constraints: {}, description: 'The int32 value.', }, ]"
|
|
167998
168331
|
},
|
|
167999
168332
|
{
|
|
168000
168333
|
"kind": "field",
|
|
@@ -168907,7 +169240,7 @@
|
|
|
168907
169240
|
"type": {
|
|
168908
169241
|
"text": "array"
|
|
168909
169242
|
},
|
|
168910
|
-
"default": "[ { fieldName: 'value', protoName: 'value', FieldConstructor: INT64, constraints: {}, description: 'The int64 value.' } ]"
|
|
169243
|
+
"default": "[ { fieldName: 'value', protoName: 'value', FieldConstructor: INT64, constraints: {}, description: 'The int64 value.', }, ]"
|
|
168911
169244
|
},
|
|
168912
169245
|
{
|
|
168913
169246
|
"kind": "field",
|
|
@@ -169844,7 +170177,7 @@
|
|
|
169844
170177
|
"type": {
|
|
169845
170178
|
"text": "array"
|
|
169846
170179
|
},
|
|
169847
|
-
"default": "[ { fieldName: 'messageSetWireFormat', protoName: 'message_set_wire_format', FieldConstructor: BOOLEAN, constraints: {}, description:
|
|
170180
|
+
"default": "[ { fieldName: 'messageSetWireFormat', protoName: 'message_set_wire_format', FieldConstructor: BOOLEAN, constraints: {}, description: \"Set true to use the old proto1 MessageSet wire format for extensions.\\n This is provided for backwards-compatibility with the MessageSet wire\\n format. You should not use this for any other reason: It's less\\n efficient, has fewer features, and is more complicated.\\n\\n The message must be defined exactly as follows:\\n message Foo {\\n option message_set_wire_format = true;\\n extensions 4 to max;\\n }\\n Note that the message cannot have any defined fields; MessageSets only\\n have extensions.\\n\\n All extensions of your type must be singular messages; e.g. they cannot\\n be int32s, enums, or repeated messages.\\n\\n Because this is an option, the above two restrictions are not enforced by\\n the protocol compiler.\", }, { fieldName: 'noStandardDescriptorAccessor', protoName: 'no_standard_descriptor_accessor', FieldConstructor: BOOLEAN, constraints: {}, description: 'Disables the generation of the standard \"descriptor()\" accessor, which can\\n conflict with a field of the same name. This is meant to make migration\\n from proto1 easier; new code should avoid fields named \"descriptor\".', }, { fieldName: 'deprecated', protoName: 'deprecated', FieldConstructor: BOOLEAN, constraints: {}, description: 'Is this message deprecated?\\n Depending on the target platform, this can emit Deprecated annotations\\n for the message, or it will be completely ignored; in the very least,\\n this is a formalization for deprecating messages.', }, { fieldName: 'mapEntry', protoName: 'map_entry', FieldConstructor: BOOLEAN, constraints: {}, description: 'NOTE: Do not set the option in .proto files. Always use the maps syntax\\n instead. The option should only be implicitly set by the proto compiler\\n parser.\\n\\n Whether the message is an automatically generated map entry type for the\\n maps field.\\n\\n For maps fields:\\n map<KeyType, ValueType> map_field = 1;\\n The parsed descriptor looks like:\\n message MapFieldEntry {\\n option map_entry = true;\\n optional KeyType key = 1;\\n optional ValueType value = 2;\\n }\\n repeated MapFieldEntry map_field = 1;\\n\\n Implementations may choose not to generate the map_entry=true message, but\\n use a native map in the target language to hold the keys and values.\\n The reflection APIs in such implementations still need to work as\\n if the field is a repeated message field.', }, { fieldName: 'deprecatedLegacyJsonFieldConflicts', protoName: 'deprecated_legacy_json_field_conflicts', FieldConstructor: BOOLEAN, constraints: {}, description: 'Enable the legacy handling of JSON field name conflicts. This lowercases\\n and strips underscored from the fields before comparison in proto3 only.\\n The new behavior takes `json_name` into account and applies to proto2 as\\n well.\\n\\n This should only be used as a temporary measure against broken builds due\\n to the change in behavior for JSON field name conflicts.\\n\\n TODO This is legacy behavior we plan to remove once downstream\\n teams have had time to migrate.', }, { fieldName: 'features', protoName: 'features', FieldConstructor: GoogleProtobufFeatureSet, constraints: {}, description: 'Any features defined in the specific edition.', }, { fieldName: 'uninterpretedOption', protoName: 'uninterpreted_option', FieldConstructor: GoogleProtobufUninterpretedOption, constraints: {}, description: \"The parser stores options it doesn't recognize here. See above.\", }, ]"
|
|
169848
170181
|
},
|
|
169849
170182
|
{
|
|
169850
170183
|
"kind": "field",
|
|
@@ -170807,7 +171140,7 @@
|
|
|
170807
171140
|
"type": {
|
|
170808
171141
|
"text": "array"
|
|
170809
171142
|
},
|
|
170810
|
-
"default": "[ { fieldName: 'name', protoName: 'name', FieldConstructor: STRING, constraints: {}, description: '' }, { fieldName: 'inputType', protoName: 'input_type', FieldConstructor: STRING, constraints: {}, description: 'Input and output type names. These are resolved in the same way as\\n FieldDescriptorProto.type_name, but must refer to a message type.' }, { fieldName: 'outputType', protoName: 'output_type', FieldConstructor: STRING, constraints: {}, description: '' }, { fieldName: 'options', protoName: 'options', FieldConstructor: GoogleProtobufMethodOptions, constraints: {}, description: '' }, { fieldName: 'clientStreaming', protoName: 'client_streaming', FieldConstructor: BOOLEAN, constraints: {}, description: 'Identifies if client streams multiple client messages' }, { fieldName: 'serverStreaming', protoName: 'server_streaming', FieldConstructor: BOOLEAN, constraints: {}, description: 'Identifies if server streams multiple server messages' } ]"
|
|
171143
|
+
"default": "[ { fieldName: 'name', protoName: 'name', FieldConstructor: STRING, constraints: {}, description: '', }, { fieldName: 'inputType', protoName: 'input_type', FieldConstructor: STRING, constraints: {}, description: 'Input and output type names. These are resolved in the same way as\\n FieldDescriptorProto.type_name, but must refer to a message type.', }, { fieldName: 'outputType', protoName: 'output_type', FieldConstructor: STRING, constraints: {}, description: '', }, { fieldName: 'options', protoName: 'options', FieldConstructor: GoogleProtobufMethodOptions, constraints: {}, description: '', }, { fieldName: 'clientStreaming', protoName: 'client_streaming', FieldConstructor: BOOLEAN, constraints: {}, description: 'Identifies if client streams multiple client messages', }, { fieldName: 'serverStreaming', protoName: 'server_streaming', FieldConstructor: BOOLEAN, constraints: {}, description: 'Identifies if server streams multiple server messages', }, ]"
|
|
170811
171144
|
},
|
|
170812
171145
|
{
|
|
170813
171146
|
"kind": "field",
|
|
@@ -171783,7 +172116,7 @@
|
|
|
171783
172116
|
"type": {
|
|
171784
172117
|
"text": "array"
|
|
171785
172118
|
},
|
|
171786
|
-
"default": "[ { fieldName: 'deprecated', protoName: 'deprecated', FieldConstructor: BOOLEAN, constraints: {}, description: 'Is this method deprecated?\\n Depending on the target platform, this can emit Deprecated annotations\\n for the method, or it will be completely ignored; in the very least,\\n this is a formalization for deprecating methods.' }, { fieldName: 'idempotencyLevel', protoName: 'idempotency_level', FieldConstructor: (ENUM), constraints: {}, description: '' }, { fieldName: 'features', protoName: 'features', FieldConstructor: GoogleProtobufFeatureSet, constraints: {}, description: 'Any features defined in the specific edition.' }, { fieldName: 'uninterpretedOption', protoName: 'uninterpreted_option', FieldConstructor: GoogleProtobufUninterpretedOption, constraints: {}, description:
|
|
172119
|
+
"default": "[ { fieldName: 'deprecated', protoName: 'deprecated', FieldConstructor: BOOLEAN, constraints: {}, description: 'Is this method deprecated?\\n Depending on the target platform, this can emit Deprecated annotations\\n for the method, or it will be completely ignored; in the very least,\\n this is a formalization for deprecating methods.', }, { fieldName: 'idempotencyLevel', protoName: 'idempotency_level', FieldConstructor: (ENUM), constraints: {}, description: '', }, { fieldName: 'features', protoName: 'features', FieldConstructor: GoogleProtobufFeatureSet, constraints: {}, description: 'Any features defined in the specific edition.', }, { fieldName: 'uninterpretedOption', protoName: 'uninterpreted_option', FieldConstructor: GoogleProtobufUninterpretedOption, constraints: {}, description: \"The parser stores options it doesn't recognize here. See above.\", }, ]"
|
|
171787
172120
|
},
|
|
171788
172121
|
{
|
|
171789
172122
|
"kind": "field",
|
|
@@ -172715,7 +173048,7 @@
|
|
|
172715
173048
|
"type": {
|
|
172716
173049
|
"text": "array"
|
|
172717
173050
|
},
|
|
172718
|
-
"default": "[ { fieldName: 'name', protoName: 'name', FieldConstructor: STRING, constraints: {}, description: '' }, { fieldName: 'options', protoName: 'options', FieldConstructor: GoogleProtobufOneofOptions, constraints: {}, description: '' } ]"
|
|
173051
|
+
"default": "[ { fieldName: 'name', protoName: 'name', FieldConstructor: STRING, constraints: {}, description: '', }, { fieldName: 'options', protoName: 'options', FieldConstructor: GoogleProtobufOneofOptions, constraints: {}, description: '', }, ]"
|
|
172719
173052
|
},
|
|
172720
173053
|
{
|
|
172721
173054
|
"kind": "field",
|
|
@@ -173637,7 +173970,7 @@
|
|
|
173637
173970
|
"type": {
|
|
173638
173971
|
"text": "array"
|
|
173639
173972
|
},
|
|
173640
|
-
"default": "[ { fieldName: 'features', protoName: 'features', FieldConstructor: GoogleProtobufFeatureSet, constraints: {}, description: 'Any features defined in the specific edition.' }, { fieldName: 'uninterpretedOption', protoName: 'uninterpreted_option', FieldConstructor: GoogleProtobufUninterpretedOption, constraints: {}, description:
|
|
173973
|
+
"default": "[ { fieldName: 'features', protoName: 'features', FieldConstructor: GoogleProtobufFeatureSet, constraints: {}, description: 'Any features defined in the specific edition.', }, { fieldName: 'uninterpretedOption', protoName: 'uninterpreted_option', FieldConstructor: GoogleProtobufUninterpretedOption, constraints: {}, description: \"The parser stores options it doesn't recognize here. See above.\", }, ]"
|
|
173641
173974
|
},
|
|
173642
173975
|
{
|
|
173643
173976
|
"kind": "field",
|
|
@@ -174563,7 +174896,7 @@
|
|
|
174563
174896
|
"type": {
|
|
174564
174897
|
"text": "array"
|
|
174565
174898
|
},
|
|
174566
|
-
"default": "[ { fieldName: 'name', protoName: 'name', FieldConstructor: STRING, constraints: {}, description: '' }, { fieldName: 'method', protoName: 'method', FieldConstructor: GoogleProtobufMethodDescriptorProto, constraints: {}, description: '' }, { fieldName: 'options', protoName: 'options', FieldConstructor: GoogleProtobufServiceOptions, constraints: {}, description: '' } ]"
|
|
174899
|
+
"default": "[ { fieldName: 'name', protoName: 'name', FieldConstructor: STRING, constraints: {}, description: '', }, { fieldName: 'method', protoName: 'method', FieldConstructor: GoogleProtobufMethodDescriptorProto, constraints: {}, description: '', }, { fieldName: 'options', protoName: 'options', FieldConstructor: GoogleProtobufServiceOptions, constraints: {}, description: '', }, ]"
|
|
174567
174900
|
},
|
|
174568
174901
|
{
|
|
174569
174902
|
"kind": "field",
|
|
@@ -175494,7 +175827,7 @@
|
|
|
175494
175827
|
"type": {
|
|
175495
175828
|
"text": "array"
|
|
175496
175829
|
},
|
|
175497
|
-
"default": "[ { fieldName: 'features', protoName: 'features', FieldConstructor: GoogleProtobufFeatureSet, constraints: {}, description: 'Any features defined in the specific edition.' }, { fieldName: 'deprecated', protoName: 'deprecated', FieldConstructor: BOOLEAN, constraints: {}, description: 'Is this service deprecated?\\n Depending on the target platform, this can emit Deprecated annotations\\n for the service, or it will be completely ignored; in the very least,\\n this is a formalization for deprecating services.' }, { fieldName: 'uninterpretedOption', protoName: 'uninterpreted_option', FieldConstructor: GoogleProtobufUninterpretedOption, constraints: {}, description:
|
|
175830
|
+
"default": "[ { fieldName: 'features', protoName: 'features', FieldConstructor: GoogleProtobufFeatureSet, constraints: {}, description: 'Any features defined in the specific edition.', }, { fieldName: 'deprecated', protoName: 'deprecated', FieldConstructor: BOOLEAN, constraints: {}, description: 'Is this service deprecated?\\n Depending on the target platform, this can emit Deprecated annotations\\n for the service, or it will be completely ignored; in the very least,\\n this is a formalization for deprecating services.', }, { fieldName: 'uninterpretedOption', protoName: 'uninterpreted_option', FieldConstructor: GoogleProtobufUninterpretedOption, constraints: {}, description: \"The parser stores options it doesn't recognize here. See above.\", }, ]"
|
|
175498
175831
|
},
|
|
175499
175832
|
{
|
|
175500
175833
|
"kind": "field",
|
|
@@ -176433,7 +176766,7 @@
|
|
|
176433
176766
|
"type": {
|
|
176434
176767
|
"text": "array"
|
|
176435
176768
|
},
|
|
176436
|
-
"default": "[ { fieldName: 'path', protoName: 'path', FieldConstructor: INT32, constraints: {}, description: 'Identifies which part of the FileDescriptorProto was defined at this\\n location.\\n\\n Each element is a field number or an index. They form a path from\\n the root FileDescriptorProto to the place where the definition occurs.\\n For example, this path:\\n [ 4, 3, 2, 7, 1 ]\\n refers to:\\n file.message_type(3) // 4, 3\\n .field(7) // 2, 7\\n .name() // 1\\n This is because FileDescriptorProto.message_type has field number 4:\\n repeated DescriptorProto message_type = 4;\\n and DescriptorProto.field has field number 2:\\n repeated FieldDescriptorProto field = 2;\\n and FieldDescriptorProto.name has field number 1:\\n optional string name = 1;\\n\\n Thus, the above path gives the location of a field name. If we removed\\n the last element:\\n [ 4, 3, 2, 7 ]\\n this path refers to the whole field declaration (from the beginning\\n of the label to the terminating semicolon).' }, { fieldName: 'span', protoName: 'span', FieldConstructor: INT32, constraints: {}, description: 'Always has exactly three or four elements: start line, start column,\\n end line (optional, otherwise assumed same as start line), end column.\\n These are packed into a single field for efficiency. Note that line\\n and column numbers are zero-based -- typically you will want to add\\n 1 to each before displaying to a user.' }, { fieldName: 'leadingComments', protoName: 'leading_comments', FieldConstructor: STRING, constraints: {}, description: 'If this SourceCodeInfo represents a complete declaration, these are any\\n comments appearing before and after the declaration which appear to be\\n attached to the declaration.\\n\\n A series of line comments appearing on consecutive lines, with no other\\n tokens appearing on those lines, will be treated as a single comment.\\n\\n leading_detached_comments will keep paragraphs of comments that appear\\n before (but not connected to) the current element. Each paragraph,\\n separated by empty lines, will be one comment element in the repeated\\n field.\\n\\n Only the comment content is provided; comment markers (e.g. //) are\\n stripped out. For block comments, leading whitespace and an asterisk\\n will be stripped from the beginning of each line other than the first.\\n Newlines are included in the output.\\n\\n Examples:\\n\\n optional int32 foo = 1; // Comment attached to foo.\\n // Comment attached to bar.\\n optional int32 bar = 2;\\n\\n optional string baz = 3;\\n // Comment attached to baz.\\n // Another line attached to baz.\\n\\n // Comment attached to moo.\\n //\\n // Another line attached to moo.\\n optional double moo = 4;\\n\\n // Detached comment for corge. This is not leading or trailing comments\\n // to moo or corge because there are blank lines separating it from\\n // both.\\n\\n // Detached comment for corge paragraph 2.\\n\\n optional string corge = 5;\\n /* Block comment attached\\n * to corge. Leading asterisks\\n * will be removed. *\\\\/\\n /* Block comment attached to\\n * grault. *\\\\/\\n optional int32 grault = 6;\\n\\n // ignored detached comments.' }, { fieldName: 'trailingComments', protoName: 'trailing_comments', FieldConstructor: STRING, constraints: {}, description: '' }, { fieldName: 'leadingDetachedComments', protoName: 'leading_detached_comments', FieldConstructor: STRING, constraints: {}, description: '' } ]"
|
|
176769
|
+
"default": "[ { fieldName: 'path', protoName: 'path', FieldConstructor: INT32, constraints: {}, description: 'Identifies which part of the FileDescriptorProto was defined at this\\n location.\\n\\n Each element is a field number or an index. They form a path from\\n the root FileDescriptorProto to the place where the definition occurs.\\n For example, this path:\\n [ 4, 3, 2, 7, 1 ]\\n refers to:\\n file.message_type(3) // 4, 3\\n .field(7) // 2, 7\\n .name() // 1\\n This is because FileDescriptorProto.message_type has field number 4:\\n repeated DescriptorProto message_type = 4;\\n and DescriptorProto.field has field number 2:\\n repeated FieldDescriptorProto field = 2;\\n and FieldDescriptorProto.name has field number 1:\\n optional string name = 1;\\n\\n Thus, the above path gives the location of a field name. If we removed\\n the last element:\\n [ 4, 3, 2, 7 ]\\n this path refers to the whole field declaration (from the beginning\\n of the label to the terminating semicolon).', }, { fieldName: 'span', protoName: 'span', FieldConstructor: INT32, constraints: {}, description: 'Always has exactly three or four elements: start line, start column,\\n end line (optional, otherwise assumed same as start line), end column.\\n These are packed into a single field for efficiency. Note that line\\n and column numbers are zero-based -- typically you will want to add\\n 1 to each before displaying to a user.', }, { fieldName: 'leadingComments', protoName: 'leading_comments', FieldConstructor: STRING, constraints: {}, description: 'If this SourceCodeInfo represents a complete declaration, these are any\\n comments appearing before and after the declaration which appear to be\\n attached to the declaration.\\n\\n A series of line comments appearing on consecutive lines, with no other\\n tokens appearing on those lines, will be treated as a single comment.\\n\\n leading_detached_comments will keep paragraphs of comments that appear\\n before (but not connected to) the current element. Each paragraph,\\n separated by empty lines, will be one comment element in the repeated\\n field.\\n\\n Only the comment content is provided; comment markers (e.g. //) are\\n stripped out. For block comments, leading whitespace and an asterisk\\n will be stripped from the beginning of each line other than the first.\\n Newlines are included in the output.\\n\\n Examples:\\n\\n optional int32 foo = 1; // Comment attached to foo.\\n // Comment attached to bar.\\n optional int32 bar = 2;\\n\\n optional string baz = 3;\\n // Comment attached to baz.\\n // Another line attached to baz.\\n\\n // Comment attached to moo.\\n //\\n // Another line attached to moo.\\n optional double moo = 4;\\n\\n // Detached comment for corge. This is not leading or trailing comments\\n // to moo or corge because there are blank lines separating it from\\n // both.\\n\\n // Detached comment for corge paragraph 2.\\n\\n optional string corge = 5;\\n /* Block comment attached\\n * to corge. Leading asterisks\\n * will be removed. *\\\\/\\n /* Block comment attached to\\n * grault. *\\\\/\\n optional int32 grault = 6;\\n\\n // ignored detached comments.', }, { fieldName: 'trailingComments', protoName: 'trailing_comments', FieldConstructor: STRING, constraints: {}, description: '', }, { fieldName: 'leadingDetachedComments', protoName: 'leading_detached_comments', FieldConstructor: STRING, constraints: {}, description: '', }, ]"
|
|
176437
176770
|
},
|
|
176438
176771
|
{
|
|
176439
176772
|
"kind": "field",
|
|
@@ -177366,7 +177699,7 @@
|
|
|
177366
177699
|
"type": {
|
|
177367
177700
|
"text": "array"
|
|
177368
177701
|
},
|
|
177369
|
-
"default": "[ { fieldName: 'location', protoName: 'location', FieldConstructor: GoogleProtobufSourceCodeInfoLocation, constraints: {}, description: 'A Location identifies a piece of source code in a .proto file which\\n corresponds to a particular definition. This information is intended\\n to be useful to IDEs, code indexers, documentation generators, and similar\\n tools.\\n\\n For example, say we have a file like:\\n message Foo {\\n optional string foo = 1;\\n }\\n Let\\'s look at just the field definition:\\n optional string foo = 1;\\n ^ ^^ ^^ ^ ^^^\\n a bc de f ghi\\n We have the following locations:\\n span path represents\\n [a,i) [ 4, 0, 2, 0 ] The whole field definition.\\n [a,b) [ 4, 0, 2, 0, 4 ] The label (optional).\\n [c,d) [ 4, 0, 2, 0, 5 ] The type (string).\\n [e,f) [ 4, 0, 2, 0, 1 ] The name (foo).\\n [g,h) [ 4, 0, 2, 0, 3 ] The number (1).\\n\\n Notes:\\n - A location may refer to a repeated field itself (i.e. not to any\\n particular index within it). This is used whenever a set of elements are\\n logically enclosed in a single code segment. For example, an entire\\n extend block (possibly containing multiple extension definitions) will\\n have an outer location whose path refers to the \"extensions\" repeated\\n field without an index.\\n - Multiple locations may have the same path. This happens when a single\\n logical declaration is spread out across multiple places. The most\\n obvious example is the \"extend\" block again -- there may be multiple\\n extend blocks in the same scope, each of which will have the same path.\\n - A location\\'s span is not always a subset of its parent\\'s span. For\\n example, the \"extendee\" of an extension declaration appears at the\\n beginning of the \"extend\" block and is shared by all extensions within\\n the block.\\n - Just because a location\\'s span is a subset of some other location\\'s span\\n does not mean that it is a descendant. For example, a \"group\" defines\\n both a type and a field in a single declaration. Thus, the locations\\n corresponding to the type and field and their components will overlap.\\n - Code which tries to interpret locations should probably be designed to\\n ignore those that it doesn\\'t understand, as more types of locations could\\n be recorded in the future.' } ]"
|
|
177702
|
+
"default": "[ { fieldName: 'location', protoName: 'location', FieldConstructor: GoogleProtobufSourceCodeInfoLocation, constraints: {}, description: 'A Location identifies a piece of source code in a .proto file which\\n corresponds to a particular definition. This information is intended\\n to be useful to IDEs, code indexers, documentation generators, and similar\\n tools.\\n\\n For example, say we have a file like:\\n message Foo {\\n optional string foo = 1;\\n }\\n Let\\'s look at just the field definition:\\n optional string foo = 1;\\n ^ ^^ ^^ ^ ^^^\\n a bc de f ghi\\n We have the following locations:\\n span path represents\\n [a,i) [ 4, 0, 2, 0 ] The whole field definition.\\n [a,b) [ 4, 0, 2, 0, 4 ] The label (optional).\\n [c,d) [ 4, 0, 2, 0, 5 ] The type (string).\\n [e,f) [ 4, 0, 2, 0, 1 ] The name (foo).\\n [g,h) [ 4, 0, 2, 0, 3 ] The number (1).\\n\\n Notes:\\n - A location may refer to a repeated field itself (i.e. not to any\\n particular index within it). This is used whenever a set of elements are\\n logically enclosed in a single code segment. For example, an entire\\n extend block (possibly containing multiple extension definitions) will\\n have an outer location whose path refers to the \"extensions\" repeated\\n field without an index.\\n - Multiple locations may have the same path. This happens when a single\\n logical declaration is spread out across multiple places. The most\\n obvious example is the \"extend\" block again -- there may be multiple\\n extend blocks in the same scope, each of which will have the same path.\\n - A location\\'s span is not always a subset of its parent\\'s span. For\\n example, the \"extendee\" of an extension declaration appears at the\\n beginning of the \"extend\" block and is shared by all extensions within\\n the block.\\n - Just because a location\\'s span is a subset of some other location\\'s span\\n does not mean that it is a descendant. For example, a \"group\" defines\\n both a type and a field in a single declaration. Thus, the locations\\n corresponding to the type and field and their components will overlap.\\n - Code which tries to interpret locations should probably be designed to\\n ignore those that it doesn\\'t understand, as more types of locations could\\n be recorded in the future.', }, ]"
|
|
177370
177703
|
},
|
|
177371
177704
|
{
|
|
177372
177705
|
"kind": "field",
|
|
@@ -178279,7 +178612,7 @@
|
|
|
178279
178612
|
"type": {
|
|
178280
178613
|
"text": "array"
|
|
178281
178614
|
},
|
|
178282
|
-
"default": "[ { fieldName: 'value', protoName: 'value', FieldConstructor: STRING, constraints: {}, description: 'The string value.' } ]"
|
|
178615
|
+
"default": "[ { fieldName: 'value', protoName: 'value', FieldConstructor: STRING, constraints: {}, description: 'The string value.', }, ]"
|
|
178283
178616
|
},
|
|
178284
178617
|
{
|
|
178285
178618
|
"kind": "field",
|
|
@@ -179192,7 +179525,7 @@
|
|
|
179192
179525
|
"type": {
|
|
179193
179526
|
"text": "array"
|
|
179194
179527
|
},
|
|
179195
|
-
"default": "[ { fieldName: 'value', protoName: 'value', FieldConstructor: UINT32, constraints: {}, description: 'The uint32 value.' } ]"
|
|
179528
|
+
"default": "[ { fieldName: 'value', protoName: 'value', FieldConstructor: UINT32, constraints: {}, description: 'The uint32 value.', }, ]"
|
|
179196
179529
|
},
|
|
179197
179530
|
{
|
|
179198
179531
|
"kind": "field",
|
|
@@ -180105,7 +180438,7 @@
|
|
|
180105
180438
|
"type": {
|
|
180106
180439
|
"text": "array"
|
|
180107
180440
|
},
|
|
180108
|
-
"default": "[ { fieldName: 'value', protoName: 'value', FieldConstructor: UINT64, constraints: {}, description: 'The uint64 value.' } ]"
|
|
180441
|
+
"default": "[ { fieldName: 'value', protoName: 'value', FieldConstructor: UINT64, constraints: {}, description: 'The uint64 value.', }, ]"
|
|
180109
180442
|
},
|
|
180110
180443
|
{
|
|
180111
180444
|
"kind": "field",
|
|
@@ -181022,7 +181355,7 @@
|
|
|
181022
181355
|
"type": {
|
|
181023
181356
|
"text": "array"
|
|
181024
181357
|
},
|
|
181025
|
-
"default": "[ { fieldName: 'namePart', protoName: 'name_part', FieldConstructor: STRING, constraints: {}, description: '' }, { fieldName: 'isExtension', protoName: 'is_extension', FieldConstructor: BOOLEAN, constraints: {}, description: '' } ]"
|
|
181358
|
+
"default": "[ { fieldName: 'namePart', protoName: 'name_part', FieldConstructor: STRING, constraints: {}, description: '', }, { fieldName: 'isExtension', protoName: 'is_extension', FieldConstructor: BOOLEAN, constraints: {}, description: '', }, ]"
|
|
181026
181359
|
},
|
|
181027
181360
|
{
|
|
181028
181361
|
"kind": "field",
|
|
@@ -181964,7 +182297,7 @@
|
|
|
181964
182297
|
"type": {
|
|
181965
182298
|
"text": "array"
|
|
181966
182299
|
},
|
|
181967
|
-
"default": "[ { fieldName: 'name', protoName: 'name', FieldConstructor: GoogleProtobufUninterpretedOptionNamePart, constraints: {}, description: '' }, { fieldName: 'identifierValue', protoName: 'identifier_value', FieldConstructor: STRING, constraints: {}, description: 'The value of the uninterpreted option, in whatever type the tokenizer\\n identified it as during parsing. Exactly one of these should be set.' }, { fieldName: 'positiveIntValue', protoName: 'positive_int_value', FieldConstructor: UINT64, constraints: {}, description: '' }, { fieldName: 'negativeIntValue', protoName: 'negative_int_value', FieldConstructor: INT64, constraints: {}, description: '' }, { fieldName: 'doubleValue', protoName: 'double_value', FieldConstructor: DOUBLE, constraints: {}, description: '' }, { fieldName: 'stringValue', protoName: 'string_value', FieldConstructor: BYTES, constraints: {}, description: '' }, { fieldName: 'aggregateValue', protoName: 'aggregate_value', FieldConstructor: STRING, constraints: {}, description: '' } ]"
|
|
182300
|
+
"default": "[ { fieldName: 'name', protoName: 'name', FieldConstructor: GoogleProtobufUninterpretedOptionNamePart, constraints: {}, description: '', }, { fieldName: 'identifierValue', protoName: 'identifier_value', FieldConstructor: STRING, constraints: {}, description: 'The value of the uninterpreted option, in whatever type the tokenizer\\n identified it as during parsing. Exactly one of these should be set.', }, { fieldName: 'positiveIntValue', protoName: 'positive_int_value', FieldConstructor: UINT64, constraints: {}, description: '', }, { fieldName: 'negativeIntValue', protoName: 'negative_int_value', FieldConstructor: INT64, constraints: {}, description: '', }, { fieldName: 'doubleValue', protoName: 'double_value', FieldConstructor: DOUBLE, constraints: {}, description: '', }, { fieldName: 'stringValue', protoName: 'string_value', FieldConstructor: BYTES, constraints: {}, description: '', }, { fieldName: 'aggregateValue', protoName: 'aggregate_value', FieldConstructor: STRING, constraints: {}, description: '', }, ]"
|
|
181968
182301
|
},
|
|
181969
182302
|
{
|
|
181970
182303
|
"kind": "field",
|