Skip to content

Commit 2aa83ff

Browse files
authored
[WORKFLOW] Updating protos from viamrobotics/api, commit: d05254cd44fb6ff50932c49d1fb63a89c35875e7 (#369)
Co-authored-by: viambot <[email protected]>
1 parent 498cebd commit 2aa83ff

File tree

6 files changed

+377
-8
lines changed

6 files changed

+377
-8
lines changed

lib/src/gen/app/v1/app.pb.dart

+88
Original file line numberDiff line numberDiff line change
@@ -11149,6 +11149,7 @@ class ModuleMetadata extends $pb.GeneratedMessage {
1114911149
$core.Iterable<ModuleVersion>? versions,
1115011150
$core.String? entrypoint,
1115111151
$core.String? firstRun,
11152+
$core.String? markdownDescription,
1115211153
}) {
1115311154
final $result = create();
1115411155
if (models != null) {
@@ -11163,6 +11164,9 @@ class ModuleMetadata extends $pb.GeneratedMessage {
1116311164
if (firstRun != null) {
1116411165
$result.firstRun = firstRun;
1116511166
}
11167+
if (markdownDescription != null) {
11168+
$result.markdownDescription = markdownDescription;
11169+
}
1116611170
return $result;
1116711171
}
1116811172
ModuleMetadata._() : super();
@@ -11174,6 +11178,7 @@ class ModuleMetadata extends $pb.GeneratedMessage {
1117411178
..pc<ModuleVersion>(2, _omitFieldNames ? '' : 'versions', $pb.PbFieldType.PM, subBuilder: ModuleVersion.create)
1117511179
..aOS(3, _omitFieldNames ? '' : 'entrypoint')
1117611180
..aOS(4, _omitFieldNames ? '' : 'firstRun')
11181+
..aOS(5, _omitFieldNames ? '' : 'markdownDescription')
1117711182
..hasRequiredFields = false
1117811183
;
1117911184

@@ -11226,6 +11231,16 @@ class ModuleMetadata extends $pb.GeneratedMessage {
1122611231
$core.bool hasFirstRun() => $_has(3);
1122711232
@$pb.TagNumber(4)
1122811233
void clearFirstRun() => clearField(4);
11234+
11235+
/// markdown content for the entire module
11236+
@$pb.TagNumber(5)
11237+
$core.String get markdownDescription => $_getSZ(4);
11238+
@$pb.TagNumber(5)
11239+
set markdownDescription($core.String v) { $_setString(4, v); }
11240+
@$pb.TagNumber(5)
11241+
$core.bool hasMarkdownDescription() => $_has(4);
11242+
@$pb.TagNumber(5)
11243+
void clearMarkdownDescription() => clearField(5);
1122911244
}
1123011245

1123111246
class MLModelMetadata extends $pb.GeneratedMessage {
@@ -12018,6 +12033,7 @@ class UpdateRegistryItemRequest extends $pb.GeneratedMessage {
1201812033
UpdateModuleMetadata? updateModuleMetadata,
1201912034
UpdateMLModelMetadata? updateMlModelMetadata,
1202012035
UpdateMLTrainingMetadata? updateMlTrainingMetadata,
12036+
$core.String? markdownDescription,
1202112037
}) {
1202212038
final $result = create();
1202312039
if (itemId != null) {
@@ -12044,6 +12060,9 @@ class UpdateRegistryItemRequest extends $pb.GeneratedMessage {
1204412060
if (updateMlTrainingMetadata != null) {
1204512061
$result.updateMlTrainingMetadata = updateMlTrainingMetadata;
1204612062
}
12063+
if (markdownDescription != null) {
12064+
$result.markdownDescription = markdownDescription;
12065+
}
1204712066
return $result;
1204812067
}
1204912068
UpdateRegistryItemRequest._() : super();
@@ -12066,6 +12085,7 @@ class UpdateRegistryItemRequest extends $pb.GeneratedMessage {
1206612085
..aOM<UpdateModuleMetadata>(6, _omitFieldNames ? '' : 'updateModuleMetadata', subBuilder: UpdateModuleMetadata.create)
1206712086
..aOM<UpdateMLModelMetadata>(7, _omitFieldNames ? '' : 'updateMlModelMetadata', subBuilder: UpdateMLModelMetadata.create)
1206812087
..aOM<UpdateMLTrainingMetadata>(8, _omitFieldNames ? '' : 'updateMlTrainingMetadata', subBuilder: UpdateMLTrainingMetadata.create)
12088+
..aOS(9, _omitFieldNames ? '' : 'markdownDescription')
1206912089
..hasRequiredFields = false
1207012090
;
1207112091

@@ -12170,6 +12190,15 @@ class UpdateRegistryItemRequest extends $pb.GeneratedMessage {
1217012190
void clearUpdateMlTrainingMetadata() => clearField(8);
1217112191
@$pb.TagNumber(8)
1217212192
UpdateMLTrainingMetadata ensureUpdateMlTrainingMetadata() => $_ensure(7);
12193+
12194+
@$pb.TagNumber(9)
12195+
$core.String get markdownDescription => $_getSZ(8);
12196+
@$pb.TagNumber(9)
12197+
set markdownDescription($core.String v) { $_setString(8, v); }
12198+
@$pb.TagNumber(9)
12199+
$core.bool hasMarkdownDescription() => $_has(8);
12200+
@$pb.TagNumber(9)
12201+
void clearMarkdownDescription() => clearField(9);
1217312202
}
1217412203

1217512204
class UpdateRegistryItemResponse extends $pb.GeneratedMessage {
@@ -12704,6 +12733,7 @@ class UpdateModuleRequest extends $pb.GeneratedMessage {
1270412733
$core.String? entrypoint,
1270512734
$core.String? firstRun,
1270612735
$core.Iterable<App>? apps,
12736+
$core.String? markdownDescription,
1270712737
}) {
1270812738
final $result = create();
1270912739
if (moduleId != null) {
@@ -12730,6 +12760,9 @@ class UpdateModuleRequest extends $pb.GeneratedMessage {
1273012760
if (apps != null) {
1273112761
$result.apps.addAll(apps);
1273212762
}
12763+
if (markdownDescription != null) {
12764+
$result.markdownDescription = markdownDescription;
12765+
}
1273312766
return $result;
1273412767
}
1273512768
UpdateModuleRequest._() : super();
@@ -12745,6 +12778,7 @@ class UpdateModuleRequest extends $pb.GeneratedMessage {
1274512778
..aOS(6, _omitFieldNames ? '' : 'entrypoint')
1274612779
..aOS(7, _omitFieldNames ? '' : 'firstRun')
1274712780
..pc<App>(8, _omitFieldNames ? '' : 'apps', $pb.PbFieldType.PM, subBuilder: App.create)
12781+
..aOS(9, _omitFieldNames ? '' : 'markdownDescription')
1274812782
..hasRequiredFields = false
1274912783
;
1275012784

@@ -12836,6 +12870,16 @@ class UpdateModuleRequest extends $pb.GeneratedMessage {
1283612870
/// A list of applications associated with the module
1283712871
@$pb.TagNumber(8)
1283812872
$core.List<App> get apps => $_getList(7);
12873+
12874+
/// longer documentation provided in markdown format
12875+
@$pb.TagNumber(9)
12876+
$core.String get markdownDescription => $_getSZ(8);
12877+
@$pb.TagNumber(9)
12878+
set markdownDescription($core.String v) { $_setString(8, v); }
12879+
@$pb.TagNumber(9)
12880+
$core.bool hasMarkdownDescription() => $_has(8);
12881+
@$pb.TagNumber(9)
12882+
void clearMarkdownDescription() => clearField(9);
1283912883
}
1284012884

1284112885
class App extends $pb.GeneratedMessage {
@@ -13636,6 +13680,7 @@ class Module extends $pb.GeneratedMessage {
1363613680
$core.String? entrypoint,
1363713681
$core.String? publicNamespace,
1363813682
$core.String? firstRun,
13683+
$core.String? markdownDescription,
1363913684
}) {
1364013685
final $result = create();
1364113686
if (moduleId != null) {
@@ -13677,6 +13722,9 @@ class Module extends $pb.GeneratedMessage {
1367713722
if (firstRun != null) {
1367813723
$result.firstRun = firstRun;
1367913724
}
13725+
if (markdownDescription != null) {
13726+
$result.markdownDescription = markdownDescription;
13727+
}
1368013728
return $result;
1368113729
}
1368213730
Module._() : super();
@@ -13697,6 +13745,7 @@ class Module extends $pb.GeneratedMessage {
1369713745
..aOS(11, _omitFieldNames ? '' : 'entrypoint')
1369813746
..aOS(12, _omitFieldNames ? '' : 'publicNamespace')
1369913747
..aOS(13, _omitFieldNames ? '' : 'firstRun')
13748+
..aOS(14, _omitFieldNames ? '' : 'markdownDescription')
1370013749
..hasRequiredFields = false
1370113750
;
1370213751

@@ -13840,6 +13889,16 @@ class Module extends $pb.GeneratedMessage {
1384013889
$core.bool hasFirstRun() => $_has(12);
1384113890
@$pb.TagNumber(13)
1384213891
void clearFirstRun() => clearField(13);
13892+
13893+
/// Longer documentation provided in markdown format
13894+
@$pb.TagNumber(14)
13895+
$core.String get markdownDescription => $_getSZ(13);
13896+
@$pb.TagNumber(14)
13897+
set markdownDescription($core.String v) { $_setString(13, v); }
13898+
@$pb.TagNumber(14)
13899+
$core.bool hasMarkdownDescription() => $_has(13);
13900+
@$pb.TagNumber(14)
13901+
void clearMarkdownDescription() => clearField(14);
1384313902
}
1384413903

1384513904
class VersionHistory extends $pb.GeneratedMessage {
@@ -13849,6 +13908,7 @@ class VersionHistory extends $pb.GeneratedMessage {
1384913908
$core.Iterable<Model>? models,
1385013909
$core.String? entrypoint,
1385113910
$core.String? firstRun,
13911+
$core.String? markdownDescription,
1385213912
}) {
1385313913
final $result = create();
1385413914
if (version != null) {
@@ -13866,6 +13926,9 @@ class VersionHistory extends $pb.GeneratedMessage {
1386613926
if (firstRun != null) {
1386713927
$result.firstRun = firstRun;
1386813928
}
13929+
if (markdownDescription != null) {
13930+
$result.markdownDescription = markdownDescription;
13931+
}
1386913932
return $result;
1387013933
}
1387113934
VersionHistory._() : super();
@@ -13878,6 +13941,7 @@ class VersionHistory extends $pb.GeneratedMessage {
1387813941
..pc<Model>(3, _omitFieldNames ? '' : 'models', $pb.PbFieldType.PM, subBuilder: Model.create)
1387913942
..aOS(4, _omitFieldNames ? '' : 'entrypoint')
1388013943
..aOS(5, _omitFieldNames ? '' : 'firstRun')
13944+
..aOS(6, _omitFieldNames ? '' : 'markdownDescription')
1388113945
..hasRequiredFields = false
1388213946
;
1388313947

@@ -13939,6 +14003,16 @@ class VersionHistory extends $pb.GeneratedMessage {
1393914003
$core.bool hasFirstRun() => $_has(4);
1394014004
@$pb.TagNumber(5)
1394114005
void clearFirstRun() => clearField(5);
14006+
14007+
/// The markdown documentation for this version of the module
14008+
@$pb.TagNumber(6)
14009+
$core.String get markdownDescription => $_getSZ(5);
14010+
@$pb.TagNumber(6)
14011+
set markdownDescription($core.String v) { $_setString(5, v); }
14012+
@$pb.TagNumber(6)
14013+
$core.bool hasMarkdownDescription() => $_has(5);
14014+
@$pb.TagNumber(6)
14015+
void clearMarkdownDescription() => clearField(6);
1394214016
}
1394314017

1394414018
class Uploads extends $pb.GeneratedMessage {
@@ -14275,6 +14349,7 @@ class OrgDetails extends $pb.GeneratedMessage {
1427514349
$core.String? orgName,
1427614350
$core.String? orgCid,
1427714351
$core.String? publicNamespace,
14352+
$core.String? billingTier,
1427814353
}) {
1427914354
final $result = create();
1428014355
if (orgId != null) {
@@ -14289,6 +14364,9 @@ class OrgDetails extends $pb.GeneratedMessage {
1428914364
if (publicNamespace != null) {
1429014365
$result.publicNamespace = publicNamespace;
1429114366
}
14367+
if (billingTier != null) {
14368+
$result.billingTier = billingTier;
14369+
}
1429214370
return $result;
1429314371
}
1429414372
OrgDetails._() : super();
@@ -14300,6 +14378,7 @@ class OrgDetails extends $pb.GeneratedMessage {
1430014378
..aOS(2, _omitFieldNames ? '' : 'orgName')
1430114379
..aOS(3, _omitFieldNames ? '' : 'orgCid')
1430214380
..aOS(4, _omitFieldNames ? '' : 'publicNamespace')
14381+
..aOS(5, _omitFieldNames ? '' : 'billingTier')
1430314382
..hasRequiredFields = false
1430414383
;
1430514384

@@ -14359,6 +14438,15 @@ class OrgDetails extends $pb.GeneratedMessage {
1435914438
$core.bool hasPublicNamespace() => $_has(3);
1436014439
@$pb.TagNumber(4)
1436114440
void clearPublicNamespace() => clearField(4);
14441+
14442+
@$pb.TagNumber(5)
14443+
$core.String get billingTier => $_getSZ(4);
14444+
@$pb.TagNumber(5)
14445+
set billingTier($core.String v) { $_setString(4, v); }
14446+
@$pb.TagNumber(5)
14447+
$core.bool hasBillingTier() => $_has(4);
14448+
@$pb.TagNumber(5)
14449+
void clearBillingTier() => clearField(5);
1436214450
}
1436314451

1436414452
class ListOrganizationsByUserResponse extends $pb.GeneratedMessage {

lib/src/gen/app/v1/app.pbjson.dart

+30-7
Original file line numberDiff line numberDiff line change
@@ -2804,9 +2804,11 @@ const ModuleMetadata$json = {
28042804
{'1': 'versions', '3': 2, '4': 3, '5': 11, '6': '.viam.app.v1.ModuleVersion', '10': 'versions'},
28052805
{'1': 'entrypoint', '3': 3, '4': 1, '5': 9, '10': 'entrypoint'},
28062806
{'1': 'first_run', '3': 4, '4': 1, '5': 9, '9': 0, '10': 'firstRun', '17': true},
2807+
{'1': 'markdown_description', '3': 5, '4': 1, '5': 9, '9': 1, '10': 'markdownDescription', '17': true},
28072808
],
28082809
'8': [
28092810
{'1': '_first_run'},
2811+
{'1': '_markdown_description'},
28102812
],
28112813
};
28122814

@@ -2815,7 +2817,9 @@ final $typed_data.Uint8List moduleMetadataDescriptor = $convert.base64Decode(
28152817
'Cg5Nb2R1bGVNZXRhZGF0YRIqCgZtb2RlbHMYASADKAsyEi52aWFtLmFwcC52MS5Nb2RlbFIGbW'
28162818
'9kZWxzEjYKCHZlcnNpb25zGAIgAygLMhoudmlhbS5hcHAudjEuTW9kdWxlVmVyc2lvblIIdmVy'
28172819
'c2lvbnMSHgoKZW50cnlwb2ludBgDIAEoCVIKZW50cnlwb2ludBIgCglmaXJzdF9ydW4YBCABKA'
2818-
'lIAFIIZmlyc3RSdW6IAQFCDAoKX2ZpcnN0X3J1bg==');
2820+
'lIAFIIZmlyc3RSdW6IAQESNgoUbWFya2Rvd25fZGVzY3JpcHRpb24YBSABKAlIAVITbWFya2Rv'
2821+
'd25EZXNjcmlwdGlvbogBAUIMCgpfZmlyc3RfcnVuQhcKFV9tYXJrZG93bl9kZXNjcmlwdGlvbg'
2822+
'==');
28192823

28202824
@$core.Deprecated('Use mLModelMetadataDescriptor instead')
28212825
const MLModelMetadata$json = {
@@ -2985,10 +2989,12 @@ const UpdateRegistryItemRequest$json = {
29852989
{'1': 'update_module_metadata', '3': 6, '4': 1, '5': 11, '6': '.viam.app.v1.UpdateModuleMetadata', '9': 0, '10': 'updateModuleMetadata'},
29862990
{'1': 'update_ml_model_metadata', '3': 7, '4': 1, '5': 11, '6': '.viam.app.v1.UpdateMLModelMetadata', '9': 0, '10': 'updateMlModelMetadata'},
29872991
{'1': 'update_ml_training_metadata', '3': 8, '4': 1, '5': 11, '6': '.viam.app.v1.UpdateMLTrainingMetadata', '9': 0, '10': 'updateMlTrainingMetadata'},
2992+
{'1': 'markdown_description', '3': 9, '4': 1, '5': 9, '9': 2, '10': 'markdownDescription', '17': true},
29882993
],
29892994
'8': [
29902995
{'1': 'metadata'},
29912996
{'1': '_url'},
2997+
{'1': '_markdown_description'},
29922998
],
29932999
};
29943000

@@ -3003,7 +3009,9 @@ final $typed_data.Uint8List updateRegistryItemRequestDescriptor = $convert.base6
30033009
'ZXRhZGF0YRgHIAEoCzIiLnZpYW0uYXBwLnYxLlVwZGF0ZU1MTW9kZWxNZXRhZGF0YUgAUhV1cG'
30043010
'RhdGVNbE1vZGVsTWV0YWRhdGESZgobdXBkYXRlX21sX3RyYWluaW5nX21ldGFkYXRhGAggASgL'
30053011
'MiUudmlhbS5hcHAudjEuVXBkYXRlTUxUcmFpbmluZ01ldGFkYXRhSABSGHVwZGF0ZU1sVHJhaW'
3006-
'5pbmdNZXRhZGF0YUIKCghtZXRhZGF0YUIGCgRfdXJs');
3012+
'5pbmdNZXRhZGF0YRI2ChRtYXJrZG93bl9kZXNjcmlwdGlvbhgJIAEoCUgCUhNtYXJrZG93bkRl'
3013+
'c2NyaXB0aW9uiAEBQgoKCG1ldGFkYXRhQgYKBF91cmxCFwoVX21hcmtkb3duX2Rlc2NyaXB0aW'
3014+
'9u');
30073015

30083016
@$core.Deprecated('Use updateRegistryItemResponseDescriptor instead')
30093017
const UpdateRegistryItemResponse$json = {
@@ -3147,9 +3155,11 @@ const UpdateModuleRequest$json = {
31473155
{'1': 'entrypoint', '3': 6, '4': 1, '5': 9, '10': 'entrypoint'},
31483156
{'1': 'first_run', '3': 7, '4': 1, '5': 9, '9': 0, '10': 'firstRun', '17': true},
31493157
{'1': 'apps', '3': 8, '4': 3, '5': 11, '6': '.viam.app.v1.App', '10': 'apps'},
3158+
{'1': 'markdown_description', '3': 9, '4': 1, '5': 9, '9': 1, '10': 'markdownDescription', '17': true},
31503159
],
31513160
'8': [
31523161
{'1': '_first_run'},
3162+
{'1': '_markdown_description'},
31533163
],
31543164
};
31553165

@@ -3160,7 +3170,9 @@ final $typed_data.Uint8List updateModuleRequestDescriptor = $convert.base64Decod
31603170
'dXJsGAMgASgJUgN1cmwSIAoLZGVzY3JpcHRpb24YBCABKAlSC2Rlc2NyaXB0aW9uEioKBm1vZG'
31613171
'VscxgFIAMoCzISLnZpYW0uYXBwLnYxLk1vZGVsUgZtb2RlbHMSHgoKZW50cnlwb2ludBgGIAEo'
31623172
'CVIKZW50cnlwb2ludBIgCglmaXJzdF9ydW4YByABKAlIAFIIZmlyc3RSdW6IAQESJAoEYXBwcx'
3163-
'gIIAMoCzIQLnZpYW0uYXBwLnYxLkFwcFIEYXBwc0IMCgpfZmlyc3RfcnVu');
3173+
'gIIAMoCzIQLnZpYW0uYXBwLnYxLkFwcFIEYXBwcxI2ChRtYXJrZG93bl9kZXNjcmlwdGlvbhgJ'
3174+
'IAEoCUgBUhNtYXJrZG93bkRlc2NyaXB0aW9uiAEBQgwKCl9maXJzdF9ydW5CFwoVX21hcmtkb3'
3175+
'duX2Rlc2NyaXB0aW9u');
31643176

31653177
@$core.Deprecated('Use appDescriptor instead')
31663178
const App$json = {
@@ -3355,9 +3367,11 @@ const Module$json = {
33553367
{'1': 'entrypoint', '3': 11, '4': 1, '5': 9, '10': 'entrypoint'},
33563368
{'1': 'public_namespace', '3': 12, '4': 1, '5': 9, '10': 'publicNamespace'},
33573369
{'1': 'first_run', '3': 13, '4': 1, '5': 9, '9': 0, '10': 'firstRun', '17': true},
3370+
{'1': 'markdown_description', '3': 14, '4': 1, '5': 9, '9': 1, '10': 'markdownDescription', '17': true},
33583371
],
33593372
'8': [
33603373
{'1': '_first_run'},
3374+
{'1': '_markdown_description'},
33613375
],
33623376
};
33633377

@@ -3372,7 +3386,9 @@ final $typed_data.Uint8List moduleDescriptor = $convert.base64Decode(
33723386
'X3VzYWdlGAkgASgDUhZ0b3RhbE9yZ2FuaXphdGlvblVzYWdlEicKD29yZ2FuaXphdGlvbl9pZB'
33733387
'gKIAEoCVIOb3JnYW5pemF0aW9uSWQSHgoKZW50cnlwb2ludBgLIAEoCVIKZW50cnlwb2ludBIp'
33743388
'ChBwdWJsaWNfbmFtZXNwYWNlGAwgASgJUg9wdWJsaWNOYW1lc3BhY2USIAoJZmlyc3RfcnVuGA'
3375-
'0gASgJSABSCGZpcnN0UnVuiAEBQgwKCl9maXJzdF9ydW4=');
3389+
'0gASgJSABSCGZpcnN0UnVuiAEBEjYKFG1hcmtkb3duX2Rlc2NyaXB0aW9uGA4gASgJSAFSE21h'
3390+
'cmtkb3duRGVzY3JpcHRpb26IAQFCDAoKX2ZpcnN0X3J1bkIXChVfbWFya2Rvd25fZGVzY3JpcH'
3391+
'Rpb24=');
33763392

33773393
@$core.Deprecated('Use versionHistoryDescriptor instead')
33783394
const VersionHistory$json = {
@@ -3383,9 +3399,11 @@ const VersionHistory$json = {
33833399
{'1': 'models', '3': 3, '4': 3, '5': 11, '6': '.viam.app.v1.Model', '10': 'models'},
33843400
{'1': 'entrypoint', '3': 4, '4': 1, '5': 9, '10': 'entrypoint'},
33853401
{'1': 'first_run', '3': 5, '4': 1, '5': 9, '9': 0, '10': 'firstRun', '17': true},
3402+
{'1': 'markdown_description', '3': 6, '4': 1, '5': 9, '9': 1, '10': 'markdownDescription', '17': true},
33863403
],
33873404
'8': [
33883405
{'1': '_first_run'},
3406+
{'1': '_markdown_description'},
33893407
],
33903408
};
33913409

@@ -3394,7 +3412,9 @@ final $typed_data.Uint8List versionHistoryDescriptor = $convert.base64Decode(
33943412
'Cg5WZXJzaW9uSGlzdG9yeRIYCgd2ZXJzaW9uGAEgASgJUgd2ZXJzaW9uEioKBWZpbGVzGAIgAy'
33953413
'gLMhQudmlhbS5hcHAudjEuVXBsb2Fkc1IFZmlsZXMSKgoGbW9kZWxzGAMgAygLMhIudmlhbS5h'
33963414
'cHAudjEuTW9kZWxSBm1vZGVscxIeCgplbnRyeXBvaW50GAQgASgJUgplbnRyeXBvaW50EiAKCW'
3397-
'ZpcnN0X3J1bhgFIAEoCUgAUghmaXJzdFJ1bogBAUIMCgpfZmlyc3RfcnVu');
3415+
'ZpcnN0X3J1bhgFIAEoCUgAUghmaXJzdFJ1bogBARI2ChRtYXJrZG93bl9kZXNjcmlwdGlvbhgG'
3416+
'IAEoCUgBUhNtYXJrZG93bkRlc2NyaXB0aW9uiAEBQgwKCl9maXJzdF9ydW5CFwoVX21hcmtkb3'
3417+
'duX2Rlc2NyaXB0aW9u');
33983418

33993419
@$core.Deprecated('Use uploadsDescriptor instead')
34003420
const Uploads$json = {
@@ -3488,19 +3508,22 @@ const OrgDetails$json = {
34883508
{'1': 'org_name', '3': 2, '4': 1, '5': 9, '10': 'orgName'},
34893509
{'1': 'org_cid', '3': 3, '4': 1, '5': 9, '9': 0, '10': 'orgCid', '17': true},
34903510
{'1': 'public_namespace', '3': 4, '4': 1, '5': 9, '9': 1, '10': 'publicNamespace', '17': true},
3511+
{'1': 'billing_tier', '3': 5, '4': 1, '5': 9, '9': 2, '10': 'billingTier', '17': true},
34913512
],
34923513
'8': [
34933514
{'1': '_org_cid'},
34943515
{'1': '_public_namespace'},
3516+
{'1': '_billing_tier'},
34953517
],
34963518
};
34973519

34983520
/// Descriptor for `OrgDetails`. Decode as a `google.protobuf.DescriptorProto`.
34993521
final $typed_data.Uint8List orgDetailsDescriptor = $convert.base64Decode(
35003522
'CgpPcmdEZXRhaWxzEhUKBm9yZ19pZBgBIAEoCVIFb3JnSWQSGQoIb3JnX25hbWUYAiABKAlSB2'
35013523
'9yZ05hbWUSHAoHb3JnX2NpZBgDIAEoCUgAUgZvcmdDaWSIAQESLgoQcHVibGljX25hbWVzcGFj'
3502-
'ZRgEIAEoCUgBUg9wdWJsaWNOYW1lc3BhY2WIAQFCCgoIX29yZ19jaWRCEwoRX3B1YmxpY19uYW'
3503-
'1lc3BhY2U=');
3524+
'ZRgEIAEoCUgBUg9wdWJsaWNOYW1lc3BhY2WIAQESJgoMYmlsbGluZ190aWVyGAUgASgJSAJSC2'
3525+
'JpbGxpbmdUaWVyiAEBQgoKCF9vcmdfY2lkQhMKEV9wdWJsaWNfbmFtZXNwYWNlQg8KDV9iaWxs'
3526+
'aW5nX3RpZXI=');
35043527

35053528
@$core.Deprecated('Use listOrganizationsByUserResponseDescriptor instead')
35063529
const ListOrganizationsByUserResponse$json = {

0 commit comments

Comments
 (0)