@@ -11149,6 +11149,7 @@ class ModuleMetadata extends $pb.GeneratedMessage {
11149
11149
$core.Iterable<ModuleVersion>? versions,
11150
11150
$core.String? entrypoint,
11151
11151
$core.String? firstRun,
11152
+ $core.String? markdownDescription,
11152
11153
}) {
11153
11154
final $result = create();
11154
11155
if (models != null) {
@@ -11163,6 +11164,9 @@ class ModuleMetadata extends $pb.GeneratedMessage {
11163
11164
if (firstRun != null) {
11164
11165
$result.firstRun = firstRun;
11165
11166
}
11167
+ if (markdownDescription != null) {
11168
+ $result.markdownDescription = markdownDescription;
11169
+ }
11166
11170
return $result;
11167
11171
}
11168
11172
ModuleMetadata._() : super();
@@ -11174,6 +11178,7 @@ class ModuleMetadata extends $pb.GeneratedMessage {
11174
11178
..pc<ModuleVersion>(2, _omitFieldNames ? '' : 'versions', $pb.PbFieldType.PM, subBuilder: ModuleVersion.create)
11175
11179
..aOS(3, _omitFieldNames ? '' : 'entrypoint')
11176
11180
..aOS(4, _omitFieldNames ? '' : 'firstRun')
11181
+ ..aOS(5, _omitFieldNames ? '' : 'markdownDescription')
11177
11182
..hasRequiredFields = false
11178
11183
;
11179
11184
@@ -11226,6 +11231,16 @@ class ModuleMetadata extends $pb.GeneratedMessage {
11226
11231
$core.bool hasFirstRun() => $_has(3);
11227
11232
@$pb.TagNumber(4)
11228
11233
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);
11229
11244
}
11230
11245
11231
11246
class MLModelMetadata extends $pb.GeneratedMessage {
@@ -12018,6 +12033,7 @@ class UpdateRegistryItemRequest extends $pb.GeneratedMessage {
12018
12033
UpdateModuleMetadata? updateModuleMetadata,
12019
12034
UpdateMLModelMetadata? updateMlModelMetadata,
12020
12035
UpdateMLTrainingMetadata? updateMlTrainingMetadata,
12036
+ $core.String? markdownDescription,
12021
12037
}) {
12022
12038
final $result = create();
12023
12039
if (itemId != null) {
@@ -12044,6 +12060,9 @@ class UpdateRegistryItemRequest extends $pb.GeneratedMessage {
12044
12060
if (updateMlTrainingMetadata != null) {
12045
12061
$result.updateMlTrainingMetadata = updateMlTrainingMetadata;
12046
12062
}
12063
+ if (markdownDescription != null) {
12064
+ $result.markdownDescription = markdownDescription;
12065
+ }
12047
12066
return $result;
12048
12067
}
12049
12068
UpdateRegistryItemRequest._() : super();
@@ -12066,6 +12085,7 @@ class UpdateRegistryItemRequest extends $pb.GeneratedMessage {
12066
12085
..aOM<UpdateModuleMetadata>(6, _omitFieldNames ? '' : 'updateModuleMetadata', subBuilder: UpdateModuleMetadata.create)
12067
12086
..aOM<UpdateMLModelMetadata>(7, _omitFieldNames ? '' : 'updateMlModelMetadata', subBuilder: UpdateMLModelMetadata.create)
12068
12087
..aOM<UpdateMLTrainingMetadata>(8, _omitFieldNames ? '' : 'updateMlTrainingMetadata', subBuilder: UpdateMLTrainingMetadata.create)
12088
+ ..aOS(9, _omitFieldNames ? '' : 'markdownDescription')
12069
12089
..hasRequiredFields = false
12070
12090
;
12071
12091
@@ -12170,6 +12190,15 @@ class UpdateRegistryItemRequest extends $pb.GeneratedMessage {
12170
12190
void clearUpdateMlTrainingMetadata() => clearField(8);
12171
12191
@$pb.TagNumber(8)
12172
12192
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);
12173
12202
}
12174
12203
12175
12204
class UpdateRegistryItemResponse extends $pb.GeneratedMessage {
@@ -12704,6 +12733,7 @@ class UpdateModuleRequest extends $pb.GeneratedMessage {
12704
12733
$core.String? entrypoint,
12705
12734
$core.String? firstRun,
12706
12735
$core.Iterable<App>? apps,
12736
+ $core.String? markdownDescription,
12707
12737
}) {
12708
12738
final $result = create();
12709
12739
if (moduleId != null) {
@@ -12730,6 +12760,9 @@ class UpdateModuleRequest extends $pb.GeneratedMessage {
12730
12760
if (apps != null) {
12731
12761
$result.apps.addAll(apps);
12732
12762
}
12763
+ if (markdownDescription != null) {
12764
+ $result.markdownDescription = markdownDescription;
12765
+ }
12733
12766
return $result;
12734
12767
}
12735
12768
UpdateModuleRequest._() : super();
@@ -12745,6 +12778,7 @@ class UpdateModuleRequest extends $pb.GeneratedMessage {
12745
12778
..aOS(6, _omitFieldNames ? '' : 'entrypoint')
12746
12779
..aOS(7, _omitFieldNames ? '' : 'firstRun')
12747
12780
..pc<App>(8, _omitFieldNames ? '' : 'apps', $pb.PbFieldType.PM, subBuilder: App.create)
12781
+ ..aOS(9, _omitFieldNames ? '' : 'markdownDescription')
12748
12782
..hasRequiredFields = false
12749
12783
;
12750
12784
@@ -12836,6 +12870,16 @@ class UpdateModuleRequest extends $pb.GeneratedMessage {
12836
12870
/// A list of applications associated with the module
12837
12871
@$pb.TagNumber(8)
12838
12872
$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);
12839
12883
}
12840
12884
12841
12885
class App extends $pb.GeneratedMessage {
@@ -13636,6 +13680,7 @@ class Module extends $pb.GeneratedMessage {
13636
13680
$core.String? entrypoint,
13637
13681
$core.String? publicNamespace,
13638
13682
$core.String? firstRun,
13683
+ $core.String? markdownDescription,
13639
13684
}) {
13640
13685
final $result = create();
13641
13686
if (moduleId != null) {
@@ -13677,6 +13722,9 @@ class Module extends $pb.GeneratedMessage {
13677
13722
if (firstRun != null) {
13678
13723
$result.firstRun = firstRun;
13679
13724
}
13725
+ if (markdownDescription != null) {
13726
+ $result.markdownDescription = markdownDescription;
13727
+ }
13680
13728
return $result;
13681
13729
}
13682
13730
Module._() : super();
@@ -13697,6 +13745,7 @@ class Module extends $pb.GeneratedMessage {
13697
13745
..aOS(11, _omitFieldNames ? '' : 'entrypoint')
13698
13746
..aOS(12, _omitFieldNames ? '' : 'publicNamespace')
13699
13747
..aOS(13, _omitFieldNames ? '' : 'firstRun')
13748
+ ..aOS(14, _omitFieldNames ? '' : 'markdownDescription')
13700
13749
..hasRequiredFields = false
13701
13750
;
13702
13751
@@ -13840,6 +13889,16 @@ class Module extends $pb.GeneratedMessage {
13840
13889
$core.bool hasFirstRun() => $_has(12);
13841
13890
@$pb.TagNumber(13)
13842
13891
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);
13843
13902
}
13844
13903
13845
13904
class VersionHistory extends $pb.GeneratedMessage {
@@ -13849,6 +13908,7 @@ class VersionHistory extends $pb.GeneratedMessage {
13849
13908
$core.Iterable<Model>? models,
13850
13909
$core.String? entrypoint,
13851
13910
$core.String? firstRun,
13911
+ $core.String? markdownDescription,
13852
13912
}) {
13853
13913
final $result = create();
13854
13914
if (version != null) {
@@ -13866,6 +13926,9 @@ class VersionHistory extends $pb.GeneratedMessage {
13866
13926
if (firstRun != null) {
13867
13927
$result.firstRun = firstRun;
13868
13928
}
13929
+ if (markdownDescription != null) {
13930
+ $result.markdownDescription = markdownDescription;
13931
+ }
13869
13932
return $result;
13870
13933
}
13871
13934
VersionHistory._() : super();
@@ -13878,6 +13941,7 @@ class VersionHistory extends $pb.GeneratedMessage {
13878
13941
..pc<Model>(3, _omitFieldNames ? '' : 'models', $pb.PbFieldType.PM, subBuilder: Model.create)
13879
13942
..aOS(4, _omitFieldNames ? '' : 'entrypoint')
13880
13943
..aOS(5, _omitFieldNames ? '' : 'firstRun')
13944
+ ..aOS(6, _omitFieldNames ? '' : 'markdownDescription')
13881
13945
..hasRequiredFields = false
13882
13946
;
13883
13947
@@ -13939,6 +14003,16 @@ class VersionHistory extends $pb.GeneratedMessage {
13939
14003
$core.bool hasFirstRun() => $_has(4);
13940
14004
@$pb.TagNumber(5)
13941
14005
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);
13942
14016
}
13943
14017
13944
14018
class Uploads extends $pb.GeneratedMessage {
@@ -14275,6 +14349,7 @@ class OrgDetails extends $pb.GeneratedMessage {
14275
14349
$core.String? orgName,
14276
14350
$core.String? orgCid,
14277
14351
$core.String? publicNamespace,
14352
+ $core.String? billingTier,
14278
14353
}) {
14279
14354
final $result = create();
14280
14355
if (orgId != null) {
@@ -14289,6 +14364,9 @@ class OrgDetails extends $pb.GeneratedMessage {
14289
14364
if (publicNamespace != null) {
14290
14365
$result.publicNamespace = publicNamespace;
14291
14366
}
14367
+ if (billingTier != null) {
14368
+ $result.billingTier = billingTier;
14369
+ }
14292
14370
return $result;
14293
14371
}
14294
14372
OrgDetails._() : super();
@@ -14300,6 +14378,7 @@ class OrgDetails extends $pb.GeneratedMessage {
14300
14378
..aOS(2, _omitFieldNames ? '' : 'orgName')
14301
14379
..aOS(3, _omitFieldNames ? '' : 'orgCid')
14302
14380
..aOS(4, _omitFieldNames ? '' : 'publicNamespace')
14381
+ ..aOS(5, _omitFieldNames ? '' : 'billingTier')
14303
14382
..hasRequiredFields = false
14304
14383
;
14305
14384
@@ -14359,6 +14438,15 @@ class OrgDetails extends $pb.GeneratedMessage {
14359
14438
$core.bool hasPublicNamespace() => $_has(3);
14360
14439
@$pb.TagNumber(4)
14361
14440
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);
14362
14450
}
14363
14451
14364
14452
class ListOrganizationsByUserResponse extends $pb.GeneratedMessage {
0 commit comments