@memberjunction/server 4.1.0 → 4.3.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.
@@ -86576,6 +86576,16 @@ __decorate([
86576
86576
  Field({ nullable: true }),
86577
86577
  __metadata("design:type", String)
86578
86578
  ], MJSchemaInfo_.prototype, "Description", void 0);
86579
+ __decorate([
86580
+ Field({ nullable: true, description: `Optional prefix to prepend to entity names generated for this schema. For example, setting this to "Committees: " would result in entity names like "Committees: Individuals". Can be overridden by mj.config.cjs NameRulesBySchema settings.` }),
86581
+ MaxLength(50),
86582
+ __metadata("design:type", String)
86583
+ ], MJSchemaInfo_.prototype, "EntityNamePrefix", void 0);
86584
+ __decorate([
86585
+ Field({ nullable: true, description: `Optional suffix to append to entity names generated for this schema. Can be overridden by mj.config.cjs NameRulesBySchema settings.` }),
86586
+ MaxLength(50),
86587
+ __metadata("design:type", String)
86588
+ ], MJSchemaInfo_.prototype, "EntityNameSuffix", void 0);
86579
86589
  MJSchemaInfo_ = __decorate([
86580
86590
  ObjectType({ description: `Tracks the schemas in the system and the ID ranges that are valid for entities within each schema.` })
86581
86591
  ], MJSchemaInfo_);
@@ -86609,6 +86619,14 @@ __decorate([
86609
86619
  Field({ nullable: true }),
86610
86620
  __metadata("design:type", String)
86611
86621
  ], CreateMJSchemaInfoInput.prototype, "Description", void 0);
86622
+ __decorate([
86623
+ Field({ nullable: true }),
86624
+ __metadata("design:type", String)
86625
+ ], CreateMJSchemaInfoInput.prototype, "EntityNamePrefix", void 0);
86626
+ __decorate([
86627
+ Field({ nullable: true }),
86628
+ __metadata("design:type", String)
86629
+ ], CreateMJSchemaInfoInput.prototype, "EntityNameSuffix", void 0);
86612
86630
  CreateMJSchemaInfoInput = __decorate([
86613
86631
  InputType()
86614
86632
  ], CreateMJSchemaInfoInput);
@@ -86642,6 +86660,14 @@ __decorate([
86642
86660
  Field({ nullable: true }),
86643
86661
  __metadata("design:type", String)
86644
86662
  ], UpdateMJSchemaInfoInput.prototype, "Description", void 0);
86663
+ __decorate([
86664
+ Field({ nullable: true }),
86665
+ __metadata("design:type", String)
86666
+ ], UpdateMJSchemaInfoInput.prototype, "EntityNamePrefix", void 0);
86667
+ __decorate([
86668
+ Field({ nullable: true }),
86669
+ __metadata("design:type", String)
86670
+ ], UpdateMJSchemaInfoInput.prototype, "EntityNameSuffix", void 0);
86645
86671
  __decorate([
86646
86672
  Field(() => [KeyValuePairInput], { nullable: true }),
86647
86673
  __metadata("design:type", Array)