@memberjunction/server 2.122.2 → 2.123.1

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.
@@ -9925,11 +9925,11 @@ let MJEnvironment_ = class MJEnvironment_ {
9925
9925
  Settings;
9926
9926
  _mj__CreatedAt;
9927
9927
  _mj__UpdatedAt;
9928
- MJ_Collections_EnvironmentIDArray;
9929
9928
  MJ_Projects_EnvironmentIDArray;
9929
+ MJ_Collections_EnvironmentIDArray;
9930
9930
  MJ_Artifacts_EnvironmentIDArray;
9931
- Dashboards_EnvironmentIDArray;
9932
9931
  MJ_Tasks_EnvironmentIDArray;
9932
+ Dashboards_EnvironmentIDArray;
9933
9933
  Reports_EnvironmentIDArray;
9934
9934
  Conversations_EnvironmentIDArray;
9935
9935
  };
@@ -9965,26 +9965,26 @@ __decorate([
9965
9965
  MaxLength(10),
9966
9966
  __metadata("design:type", Date)
9967
9967
  ], MJEnvironment_.prototype, "_mj__UpdatedAt", void 0);
9968
- __decorate([
9969
- Field(() => [MJCollection_]),
9970
- __metadata("design:type", Array)
9971
- ], MJEnvironment_.prototype, "MJ_Collections_EnvironmentIDArray", void 0);
9972
9968
  __decorate([
9973
9969
  Field(() => [MJProject_]),
9974
9970
  __metadata("design:type", Array)
9975
9971
  ], MJEnvironment_.prototype, "MJ_Projects_EnvironmentIDArray", void 0);
9976
9972
  __decorate([
9977
- Field(() => [MJArtifact_]),
9973
+ Field(() => [MJCollection_]),
9978
9974
  __metadata("design:type", Array)
9979
- ], MJEnvironment_.prototype, "MJ_Artifacts_EnvironmentIDArray", void 0);
9975
+ ], MJEnvironment_.prototype, "MJ_Collections_EnvironmentIDArray", void 0);
9980
9976
  __decorate([
9981
- Field(() => [MJDashboard_]),
9977
+ Field(() => [MJArtifact_]),
9982
9978
  __metadata("design:type", Array)
9983
- ], MJEnvironment_.prototype, "Dashboards_EnvironmentIDArray", void 0);
9979
+ ], MJEnvironment_.prototype, "MJ_Artifacts_EnvironmentIDArray", void 0);
9984
9980
  __decorate([
9985
9981
  Field(() => [MJTask_]),
9986
9982
  __metadata("design:type", Array)
9987
9983
  ], MJEnvironment_.prototype, "MJ_Tasks_EnvironmentIDArray", void 0);
9984
+ __decorate([
9985
+ Field(() => [MJDashboard_]),
9986
+ __metadata("design:type", Array)
9987
+ ], MJEnvironment_.prototype, "Dashboards_EnvironmentIDArray", void 0);
9988
9988
  __decorate([
9989
9989
  Field(() => [MJReport_]),
9990
9990
  __metadata("design:type", Array)
@@ -10128,22 +10128,22 @@ let MJEnvironmentResolver = class MJEnvironmentResolver extends ResolverBase {
10128
10128
  const result = this.MapFieldNamesToCodeNames('MJ: Environments', rows && rows.length > 0 ? rows[0] : {});
10129
10129
  return result;
10130
10130
  }
10131
- async MJ_Collections_EnvironmentIDArray(mjenvironment_, { dataSources, userPayload, providers }, pubSub) {
10132
- this.CheckUserReadPermissions('MJ: Collections', userPayload);
10131
+ async MJ_Projects_EnvironmentIDArray(mjenvironment_, { dataSources, userPayload, providers }, pubSub) {
10132
+ this.CheckUserReadPermissions('MJ: Projects', userPayload);
10133
10133
  const provider = GetReadOnlyProvider(providers, { allowFallbackToReadWrite: true });
10134
10134
  const connPool = GetReadOnlyDataSource(dataSources, { allowFallbackToReadWrite: true });
10135
- const sSQL = `SELECT * FROM [${Metadata.Provider.ConfigData.MJCoreSchemaName}].[vwCollections] WHERE [EnvironmentID]='${mjenvironment_.ID}' ` + this.getRowLevelSecurityWhereClause(provider, 'MJ: Collections', userPayload, EntityPermissionType.Read, 'AND');
10135
+ const sSQL = `SELECT * FROM [${Metadata.Provider.ConfigData.MJCoreSchemaName}].[vwProjects] WHERE [EnvironmentID]='${mjenvironment_.ID}' ` + this.getRowLevelSecurityWhereClause(provider, 'MJ: Projects', userPayload, EntityPermissionType.Read, 'AND');
10136
10136
  const rows = await SQLServerDataProvider.ExecuteSQLWithPool(connPool, sSQL, undefined, this.GetUserFromPayload(userPayload));
10137
- const result = this.ArrayMapFieldNamesToCodeNames('MJ: Collections', rows);
10137
+ const result = this.ArrayMapFieldNamesToCodeNames('MJ: Projects', rows);
10138
10138
  return result;
10139
10139
  }
10140
- async MJ_Projects_EnvironmentIDArray(mjenvironment_, { dataSources, userPayload, providers }, pubSub) {
10141
- this.CheckUserReadPermissions('MJ: Projects', userPayload);
10140
+ async MJ_Collections_EnvironmentIDArray(mjenvironment_, { dataSources, userPayload, providers }, pubSub) {
10141
+ this.CheckUserReadPermissions('MJ: Collections', userPayload);
10142
10142
  const provider = GetReadOnlyProvider(providers, { allowFallbackToReadWrite: true });
10143
10143
  const connPool = GetReadOnlyDataSource(dataSources, { allowFallbackToReadWrite: true });
10144
- const sSQL = `SELECT * FROM [${Metadata.Provider.ConfigData.MJCoreSchemaName}].[vwProjects] WHERE [EnvironmentID]='${mjenvironment_.ID}' ` + this.getRowLevelSecurityWhereClause(provider, 'MJ: Projects', userPayload, EntityPermissionType.Read, 'AND');
10144
+ const sSQL = `SELECT * FROM [${Metadata.Provider.ConfigData.MJCoreSchemaName}].[vwCollections] WHERE [EnvironmentID]='${mjenvironment_.ID}' ` + this.getRowLevelSecurityWhereClause(provider, 'MJ: Collections', userPayload, EntityPermissionType.Read, 'AND');
10145
10145
  const rows = await SQLServerDataProvider.ExecuteSQLWithPool(connPool, sSQL, undefined, this.GetUserFromPayload(userPayload));
10146
- const result = this.ArrayMapFieldNamesToCodeNames('MJ: Projects', rows);
10146
+ const result = this.ArrayMapFieldNamesToCodeNames('MJ: Collections', rows);
10147
10147
  return result;
10148
10148
  }
10149
10149
  async MJ_Artifacts_EnvironmentIDArray(mjenvironment_, { dataSources, userPayload, providers }, pubSub) {
@@ -10155,22 +10155,22 @@ let MJEnvironmentResolver = class MJEnvironmentResolver extends ResolverBase {
10155
10155
  const result = this.ArrayMapFieldNamesToCodeNames('MJ: Artifacts', rows);
10156
10156
  return result;
10157
10157
  }
10158
- async Dashboards_EnvironmentIDArray(mjenvironment_, { dataSources, userPayload, providers }, pubSub) {
10159
- this.CheckUserReadPermissions('Dashboards', userPayload);
10158
+ async MJ_Tasks_EnvironmentIDArray(mjenvironment_, { dataSources, userPayload, providers }, pubSub) {
10159
+ this.CheckUserReadPermissions('MJ: Tasks', userPayload);
10160
10160
  const provider = GetReadOnlyProvider(providers, { allowFallbackToReadWrite: true });
10161
10161
  const connPool = GetReadOnlyDataSource(dataSources, { allowFallbackToReadWrite: true });
10162
- const sSQL = `SELECT * FROM [${Metadata.Provider.ConfigData.MJCoreSchemaName}].[vwDashboards] WHERE [EnvironmentID]='${mjenvironment_.ID}' ` + this.getRowLevelSecurityWhereClause(provider, 'Dashboards', userPayload, EntityPermissionType.Read, 'AND');
10162
+ const sSQL = `SELECT * FROM [${Metadata.Provider.ConfigData.MJCoreSchemaName}].[vwTasks] WHERE [EnvironmentID]='${mjenvironment_.ID}' ` + this.getRowLevelSecurityWhereClause(provider, 'MJ: Tasks', userPayload, EntityPermissionType.Read, 'AND');
10163
10163
  const rows = await SQLServerDataProvider.ExecuteSQLWithPool(connPool, sSQL, undefined, this.GetUserFromPayload(userPayload));
10164
- const result = this.ArrayMapFieldNamesToCodeNames('Dashboards', rows);
10164
+ const result = this.ArrayMapFieldNamesToCodeNames('MJ: Tasks', rows);
10165
10165
  return result;
10166
10166
  }
10167
- async MJ_Tasks_EnvironmentIDArray(mjenvironment_, { dataSources, userPayload, providers }, pubSub) {
10168
- this.CheckUserReadPermissions('MJ: Tasks', userPayload);
10167
+ async Dashboards_EnvironmentIDArray(mjenvironment_, { dataSources, userPayload, providers }, pubSub) {
10168
+ this.CheckUserReadPermissions('Dashboards', userPayload);
10169
10169
  const provider = GetReadOnlyProvider(providers, { allowFallbackToReadWrite: true });
10170
10170
  const connPool = GetReadOnlyDataSource(dataSources, { allowFallbackToReadWrite: true });
10171
- const sSQL = `SELECT * FROM [${Metadata.Provider.ConfigData.MJCoreSchemaName}].[vwTasks] WHERE [EnvironmentID]='${mjenvironment_.ID}' ` + this.getRowLevelSecurityWhereClause(provider, 'MJ: Tasks', userPayload, EntityPermissionType.Read, 'AND');
10171
+ const sSQL = `SELECT * FROM [${Metadata.Provider.ConfigData.MJCoreSchemaName}].[vwDashboards] WHERE [EnvironmentID]='${mjenvironment_.ID}' ` + this.getRowLevelSecurityWhereClause(provider, 'Dashboards', userPayload, EntityPermissionType.Read, 'AND');
10172
10172
  const rows = await SQLServerDataProvider.ExecuteSQLWithPool(connPool, sSQL, undefined, this.GetUserFromPayload(userPayload));
10173
- const result = this.ArrayMapFieldNamesToCodeNames('MJ: Tasks', rows);
10173
+ const result = this.ArrayMapFieldNamesToCodeNames('Dashboards', rows);
10174
10174
  return result;
10175
10175
  }
10176
10176
  async Reports_EnvironmentIDArray(mjenvironment_, { dataSources, userPayload, providers }, pubSub) {
@@ -10242,23 +10242,23 @@ __decorate([
10242
10242
  __metadata("design:returntype", Promise)
10243
10243
  ], MJEnvironmentResolver.prototype, "MJEnvironment", null);
10244
10244
  __decorate([
10245
- FieldResolver(() => [MJCollection_]),
10245
+ FieldResolver(() => [MJProject_]),
10246
10246
  __param(0, Root()),
10247
10247
  __param(1, Ctx()),
10248
10248
  __param(2, PubSub()),
10249
10249
  __metadata("design:type", Function),
10250
10250
  __metadata("design:paramtypes", [MJEnvironment_, Object, PubSubEngine]),
10251
10251
  __metadata("design:returntype", Promise)
10252
- ], MJEnvironmentResolver.prototype, "MJ_Collections_EnvironmentIDArray", null);
10252
+ ], MJEnvironmentResolver.prototype, "MJ_Projects_EnvironmentIDArray", null);
10253
10253
  __decorate([
10254
- FieldResolver(() => [MJProject_]),
10254
+ FieldResolver(() => [MJCollection_]),
10255
10255
  __param(0, Root()),
10256
10256
  __param(1, Ctx()),
10257
10257
  __param(2, PubSub()),
10258
10258
  __metadata("design:type", Function),
10259
10259
  __metadata("design:paramtypes", [MJEnvironment_, Object, PubSubEngine]),
10260
10260
  __metadata("design:returntype", Promise)
10261
- ], MJEnvironmentResolver.prototype, "MJ_Projects_EnvironmentIDArray", null);
10261
+ ], MJEnvironmentResolver.prototype, "MJ_Collections_EnvironmentIDArray", null);
10262
10262
  __decorate([
10263
10263
  FieldResolver(() => [MJArtifact_]),
10264
10264
  __param(0, Root()),
@@ -10269,23 +10269,23 @@ __decorate([
10269
10269
  __metadata("design:returntype", Promise)
10270
10270
  ], MJEnvironmentResolver.prototype, "MJ_Artifacts_EnvironmentIDArray", null);
10271
10271
  __decorate([
10272
- FieldResolver(() => [MJDashboard_]),
10272
+ FieldResolver(() => [MJTask_]),
10273
10273
  __param(0, Root()),
10274
10274
  __param(1, Ctx()),
10275
10275
  __param(2, PubSub()),
10276
10276
  __metadata("design:type", Function),
10277
10277
  __metadata("design:paramtypes", [MJEnvironment_, Object, PubSubEngine]),
10278
10278
  __metadata("design:returntype", Promise)
10279
- ], MJEnvironmentResolver.prototype, "Dashboards_EnvironmentIDArray", null);
10279
+ ], MJEnvironmentResolver.prototype, "MJ_Tasks_EnvironmentIDArray", null);
10280
10280
  __decorate([
10281
- FieldResolver(() => [MJTask_]),
10281
+ FieldResolver(() => [MJDashboard_]),
10282
10282
  __param(0, Root()),
10283
10283
  __param(1, Ctx()),
10284
10284
  __param(2, PubSub()),
10285
10285
  __metadata("design:type", Function),
10286
10286
  __metadata("design:paramtypes", [MJEnvironment_, Object, PubSubEngine]),
10287
10287
  __metadata("design:returntype", Promise)
10288
- ], MJEnvironmentResolver.prototype, "MJ_Tasks_EnvironmentIDArray", null);
10288
+ ], MJEnvironmentResolver.prototype, "Dashboards_EnvironmentIDArray", null);
10289
10289
  __decorate([
10290
10290
  FieldResolver(() => [MJReport_]),
10291
10291
  __param(0, Root()),
@@ -19961,8 +19961,8 @@ let MJEntity_ = class MJEntity_ {
19961
19961
  RecommendationItems_DestinationEntityIDArray;
19962
19962
  EntityCommunicationMessageTypes_EntityIDArray;
19963
19963
  QueryEntities_EntityIDArray;
19964
- MJ_AccessControlRules_EntityIDArray;
19965
19964
  MJ_RecordLinks_SourceEntityIDArray;
19965
+ MJ_AccessControlRules_EntityIDArray;
19966
19966
  GeneratedCodes_LinkedEntityIDArray;
19967
19967
  MJ_RecordLinks_TargetEntityIDArray;
19968
19968
  };
@@ -20393,14 +20393,14 @@ __decorate([
20393
20393
  Field(() => [MJQueryEntity_]),
20394
20394
  __metadata("design:type", Array)
20395
20395
  ], MJEntity_.prototype, "QueryEntities_EntityIDArray", void 0);
20396
- __decorate([
20397
- Field(() => [MJAccessControlRule_]),
20398
- __metadata("design:type", Array)
20399
- ], MJEntity_.prototype, "MJ_AccessControlRules_EntityIDArray", void 0);
20400
20396
  __decorate([
20401
20397
  Field(() => [MJRecordLink_]),
20402
20398
  __metadata("design:type", Array)
20403
20399
  ], MJEntity_.prototype, "MJ_RecordLinks_SourceEntityIDArray", void 0);
20400
+ __decorate([
20401
+ Field(() => [MJAccessControlRule_]),
20402
+ __metadata("design:type", Array)
20403
+ ], MJEntity_.prototype, "MJ_AccessControlRules_EntityIDArray", void 0);
20404
20404
  __decorate([
20405
20405
  Field(() => [MJGeneratedCode_]),
20406
20406
  __metadata("design:type", Array)
@@ -21357,22 +21357,22 @@ let MJEntityResolverBase = class MJEntityResolverBase extends ResolverBase {
21357
21357
  const result = this.ArrayMapFieldNamesToCodeNames('Query Entities', rows);
21358
21358
  return result;
21359
21359
  }
21360
- async MJ_AccessControlRules_EntityIDArray(mjentity_, { dataSources, userPayload, providers }, pubSub) {
21361
- this.CheckUserReadPermissions('MJ: Access Control Rules', userPayload);
21360
+ async MJ_RecordLinks_SourceEntityIDArray(mjentity_, { dataSources, userPayload, providers }, pubSub) {
21361
+ this.CheckUserReadPermissions('MJ: Record Links', userPayload);
21362
21362
  const provider = GetReadOnlyProvider(providers, { allowFallbackToReadWrite: true });
21363
21363
  const connPool = GetReadOnlyDataSource(dataSources, { allowFallbackToReadWrite: true });
21364
- const sSQL = `SELECT * FROM [${Metadata.Provider.ConfigData.MJCoreSchemaName}].[vwAccessControlRules] WHERE [EntityID]='${mjentity_.ID}' ` + this.getRowLevelSecurityWhereClause(provider, 'MJ: Access Control Rules', userPayload, EntityPermissionType.Read, 'AND');
21364
+ const sSQL = `SELECT * FROM [${Metadata.Provider.ConfigData.MJCoreSchemaName}].[vwRecordLinks] WHERE [SourceEntityID]='${mjentity_.ID}' ` + this.getRowLevelSecurityWhereClause(provider, 'MJ: Record Links', userPayload, EntityPermissionType.Read, 'AND');
21365
21365
  const rows = await SQLServerDataProvider.ExecuteSQLWithPool(connPool, sSQL, undefined, this.GetUserFromPayload(userPayload));
21366
- const result = this.ArrayMapFieldNamesToCodeNames('MJ: Access Control Rules', rows);
21366
+ const result = this.ArrayMapFieldNamesToCodeNames('MJ: Record Links', rows);
21367
21367
  return result;
21368
21368
  }
21369
- async MJ_RecordLinks_SourceEntityIDArray(mjentity_, { dataSources, userPayload, providers }, pubSub) {
21370
- this.CheckUserReadPermissions('MJ: Record Links', userPayload);
21369
+ async MJ_AccessControlRules_EntityIDArray(mjentity_, { dataSources, userPayload, providers }, pubSub) {
21370
+ this.CheckUserReadPermissions('MJ: Access Control Rules', userPayload);
21371
21371
  const provider = GetReadOnlyProvider(providers, { allowFallbackToReadWrite: true });
21372
21372
  const connPool = GetReadOnlyDataSource(dataSources, { allowFallbackToReadWrite: true });
21373
- const sSQL = `SELECT * FROM [${Metadata.Provider.ConfigData.MJCoreSchemaName}].[vwRecordLinks] WHERE [SourceEntityID]='${mjentity_.ID}' ` + this.getRowLevelSecurityWhereClause(provider, 'MJ: Record Links', userPayload, EntityPermissionType.Read, 'AND');
21373
+ const sSQL = `SELECT * FROM [${Metadata.Provider.ConfigData.MJCoreSchemaName}].[vwAccessControlRules] WHERE [EntityID]='${mjentity_.ID}' ` + this.getRowLevelSecurityWhereClause(provider, 'MJ: Access Control Rules', userPayload, EntityPermissionType.Read, 'AND');
21374
21374
  const rows = await SQLServerDataProvider.ExecuteSQLWithPool(connPool, sSQL, undefined, this.GetUserFromPayload(userPayload));
21375
- const result = this.ArrayMapFieldNamesToCodeNames('MJ: Record Links', rows);
21375
+ const result = this.ArrayMapFieldNamesToCodeNames('MJ: Access Control Rules', rows);
21376
21376
  return result;
21377
21377
  }
21378
21378
  async GeneratedCodes_LinkedEntityIDArray(mjentity_, { dataSources, userPayload, providers }, pubSub) {
@@ -21776,23 +21776,23 @@ __decorate([
21776
21776
  __metadata("design:returntype", Promise)
21777
21777
  ], MJEntityResolverBase.prototype, "QueryEntities_EntityIDArray", null);
21778
21778
  __decorate([
21779
- FieldResolver(() => [MJAccessControlRule_]),
21779
+ FieldResolver(() => [MJRecordLink_]),
21780
21780
  __param(0, Root()),
21781
21781
  __param(1, Ctx()),
21782
21782
  __param(2, PubSub()),
21783
21783
  __metadata("design:type", Function),
21784
21784
  __metadata("design:paramtypes", [MJEntity_, Object, PubSubEngine]),
21785
21785
  __metadata("design:returntype", Promise)
21786
- ], MJEntityResolverBase.prototype, "MJ_AccessControlRules_EntityIDArray", null);
21786
+ ], MJEntityResolverBase.prototype, "MJ_RecordLinks_SourceEntityIDArray", null);
21787
21787
  __decorate([
21788
- FieldResolver(() => [MJRecordLink_]),
21788
+ FieldResolver(() => [MJAccessControlRule_]),
21789
21789
  __param(0, Root()),
21790
21790
  __param(1, Ctx()),
21791
21791
  __param(2, PubSub()),
21792
21792
  __metadata("design:type", Function),
21793
21793
  __metadata("design:paramtypes", [MJEntity_, Object, PubSubEngine]),
21794
21794
  __metadata("design:returntype", Promise)
21795
- ], MJEntityResolverBase.prototype, "MJ_RecordLinks_SourceEntityIDArray", null);
21795
+ ], MJEntityResolverBase.prototype, "MJ_AccessControlRules_EntityIDArray", null);
21796
21796
  __decorate([
21797
21797
  FieldResolver(() => [MJGeneratedCode_]),
21798
21798
  __param(0, Root()),
@@ -24727,6 +24727,7 @@ let MJUserView_ = class MJUserView_ {
24727
24727
  _mj__UpdatedAt;
24728
24728
  Thumbnail;
24729
24729
  CardState;
24730
+ DisplayState;
24730
24731
  UserName;
24731
24732
  UserFirstLast;
24732
24733
  UserEmail;
@@ -24832,6 +24833,10 @@ __decorate([
24832
24833
  Field({ nullable: true, description: `JSON configuration for card display mode in Data Explorer. Stores card layout settings including title field, subtitle, display fields, thumbnails, and layout density. When null, defaults are derived from entity metadata. See CardState interface in packages/Angular/Generic/entity-viewer/src/lib/types.ts for the current schema definition.` }),
24833
24834
  __metadata("design:type", String)
24834
24835
  ], MJUserView_.prototype, "CardState", void 0);
24836
+ __decorate([
24837
+ Field({ nullable: true, description: `JSON configuration for display mode settings. Stores default display mode (grid/cards/timeline/chart), available modes for sharing, and mode-specific configurations like timeline date field and segmentation. See ViewDisplayState interface in packages/Angular/Generic/entity-viewer/src/lib/types.ts for schema.` }),
24838
+ __metadata("design:type", String)
24839
+ ], MJUserView_.prototype, "DisplayState", void 0);
24835
24840
  __decorate([
24836
24841
  Field(),
24837
24842
  MaxLength(200),
@@ -24899,6 +24904,7 @@ let CreateMJUserViewInput = class CreateMJUserViewInput {
24899
24904
  SortState;
24900
24905
  Thumbnail;
24901
24906
  CardState;
24907
+ DisplayState;
24902
24908
  };
24903
24909
  __decorate([
24904
24910
  Field({ nullable: true }),
@@ -24980,6 +24986,10 @@ __decorate([
24980
24986
  Field({ nullable: true }),
24981
24987
  __metadata("design:type", String)
24982
24988
  ], CreateMJUserViewInput.prototype, "CardState", void 0);
24989
+ __decorate([
24990
+ Field({ nullable: true }),
24991
+ __metadata("design:type", String)
24992
+ ], CreateMJUserViewInput.prototype, "DisplayState", void 0);
24983
24993
  CreateMJUserViewInput = __decorate([
24984
24994
  InputType()
24985
24995
  ], CreateMJUserViewInput);
@@ -25005,6 +25015,7 @@ let UpdateMJUserViewInput = class UpdateMJUserViewInput {
25005
25015
  SortState;
25006
25016
  Thumbnail;
25007
25017
  CardState;
25018
+ DisplayState;
25008
25019
  OldValues___;
25009
25020
  };
25010
25021
  __decorate([
@@ -25087,6 +25098,10 @@ __decorate([
25087
25098
  Field({ nullable: true }),
25088
25099
  __metadata("design:type", String)
25089
25100
  ], UpdateMJUserViewInput.prototype, "CardState", void 0);
25101
+ __decorate([
25102
+ Field({ nullable: true }),
25103
+ __metadata("design:type", String)
25104
+ ], UpdateMJUserViewInput.prototype, "DisplayState", void 0);
25090
25105
  __decorate([
25091
25106
  Field(() => [KeyValuePairInput], { nullable: true }),
25092
25107
  __metadata("design:type", Array)
@@ -67882,7 +67897,7 @@ __decorate([
67882
67897
  __metadata("design:type", String)
67883
67898
  ], MJComponent_.prototype, "Title", void 0);
67884
67899
  __decorate([
67885
- Field({ nullable: true, description: `Detailed description of the component functionality` }),
67900
+ Field({ nullable: true, description: `[READ-ONLY] Detailed description of the component functionality. This field is automatically synchronized from the Specification.description field and should not be edited directly. To update this value, edit the component spec file.` }),
67886
67901
  __metadata("design:type", String)
67887
67902
  ], MJComponent_.prototype, "Description", void 0);
67888
67903
  __decorate([
@@ -67940,11 +67955,11 @@ __decorate([
67940
67955
  __metadata("design:type", String)
67941
67956
  ], MJComponent_.prototype, "Specification", void 0);
67942
67957
  __decorate([
67943
- Field({ nullable: true, description: `Functional requirements describing what the component should accomplish` }),
67958
+ Field({ nullable: true, description: `[READ-ONLY] Functional requirements describing what the component should accomplish. This field is automatically synchronized from the Specification.functionalRequirements field and should not be edited directly. To update this value, edit the component spec file.` }),
67944
67959
  __metadata("design:type", String)
67945
67960
  ], MJComponent_.prototype, "FunctionalRequirements", void 0);
67946
67961
  __decorate([
67947
- Field({ nullable: true, description: `Technical design describing how the component is implemented` }),
67962
+ Field({ nullable: true, description: `[READ-ONLY] Technical design describing how the component is implemented. This field is automatically synchronized from the Specification.technicalDesign field and should not be edited directly. To update this value, edit the component spec file.` }),
67948
67963
  __metadata("design:type", String)
67949
67964
  ], MJComponent_.prototype, "TechnicalDesign", void 0);
67950
67965
  __decorate([