@memberjunction/server 2.42.1 → 2.43.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.
@@ -9153,6 +9153,7 @@ let EntityField_ = class EntityField_ {
9153
9153
  ScopeDefault;
9154
9154
  AutoUpdateRelatedEntityInfo;
9155
9155
  ValuesToPackWithSchema;
9156
+ Status;
9156
9157
  FieldCodeName;
9157
9158
  Entity;
9158
9159
  SchemaName;
@@ -9361,6 +9362,11 @@ __decorate([
9361
9362
  MaxLength(20),
9362
9363
  __metadata("design:type", String)
9363
9364
  ], EntityField_.prototype, "ValuesToPackWithSchema", void 0);
9365
+ __decorate([
9366
+ Field({ description: `Current status of the entity field - Active fields are available for use, Deprecated fields are discouraged but still functional, Disabled fields are not available for use` }),
9367
+ MaxLength(50),
9368
+ __metadata("design:type", String)
9369
+ ], EntityField_.prototype, "Status", void 0);
9364
9370
  __decorate([
9365
9371
  Field({ nullable: true }),
9366
9372
  __metadata("design:type", String)
@@ -9459,6 +9465,7 @@ let CreateEntityFieldInput = class CreateEntityFieldInput {
9459
9465
  ScopeDefault;
9460
9466
  AutoUpdateRelatedEntityInfo;
9461
9467
  ValuesToPackWithSchema;
9468
+ Status;
9462
9469
  };
9463
9470
  __decorate([
9464
9471
  Field({ nullable: true }),
@@ -9576,6 +9583,10 @@ __decorate([
9576
9583
  Field({ nullable: true }),
9577
9584
  __metadata("design:type", String)
9578
9585
  ], CreateEntityFieldInput.prototype, "ValuesToPackWithSchema", void 0);
9586
+ __decorate([
9587
+ Field({ nullable: true }),
9588
+ __metadata("design:type", String)
9589
+ ], CreateEntityFieldInput.prototype, "Status", void 0);
9579
9590
  CreateEntityFieldInput = __decorate([
9580
9591
  InputType()
9581
9592
  ], CreateEntityFieldInput);
@@ -9611,6 +9622,7 @@ let UpdateEntityFieldInput = class UpdateEntityFieldInput {
9611
9622
  ScopeDefault;
9612
9623
  AutoUpdateRelatedEntityInfo;
9613
9624
  ValuesToPackWithSchema;
9625
+ Status;
9614
9626
  OldValues___;
9615
9627
  };
9616
9628
  __decorate([
@@ -9733,6 +9745,10 @@ __decorate([
9733
9745
  Field({ nullable: true }),
9734
9746
  __metadata("design:type", String)
9735
9747
  ], UpdateEntityFieldInput.prototype, "ValuesToPackWithSchema", void 0);
9748
+ __decorate([
9749
+ Field({ nullable: true }),
9750
+ __metadata("design:type", String)
9751
+ ], UpdateEntityFieldInput.prototype, "Status", void 0);
9736
9752
  __decorate([
9737
9753
  Field(() => [KeyValuePairInput], { nullable: true }),
9738
9754
  __metadata("design:type", Array)