@memberjunction/server 2.42.0 → 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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@memberjunction/server",
3
- "version": "2.42.0",
3
+ "version": "2.43.0",
4
4
  "description": "MemberJunction: This project provides API access via GraphQL to the common data store.",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./src/index.ts",
@@ -22,27 +22,27 @@
22
22
  "dependencies": {
23
23
  "@apollo/server": "^4.9.1",
24
24
  "@graphql-tools/utils": "^10.0.1",
25
- "@memberjunction/actions": "2.42.0",
26
- "@memberjunction/ai": "2.42.0",
27
- "@memberjunction/ai-mistral": "2.42.0",
28
- "@memberjunction/ai-openai": "2.42.0",
29
- "@memberjunction/ai-vectors-pinecone": "2.42.0",
30
- "@memberjunction/aiengine": "2.42.0",
31
- "@memberjunction/core": "2.42.0",
32
- "@memberjunction/core-actions": "2.42.0",
33
- "@memberjunction/core-entities": "2.42.0",
34
- "@memberjunction/data-context": "2.42.0",
35
- "@memberjunction/data-context-server": "2.42.0",
36
- "@memberjunction/doc-utils": "2.42.0",
37
- "@memberjunction/entity-communications-server": "2.42.0",
38
- "@memberjunction/external-change-detection": "2.42.0",
39
- "@memberjunction/global": "2.42.0",
40
- "@memberjunction/graphql-dataprovider": "2.42.0",
41
- "@memberjunction/queue": "2.42.0",
42
- "@memberjunction/skip-types": "2.42.0",
43
- "@memberjunction/sqlserver-dataprovider": "2.42.0",
44
- "@memberjunction/storage": "2.42.0",
45
- "@memberjunction/templates": "2.42.0",
25
+ "@memberjunction/actions": "2.43.0",
26
+ "@memberjunction/ai": "2.43.0",
27
+ "@memberjunction/ai-mistral": "2.43.0",
28
+ "@memberjunction/ai-openai": "2.43.0",
29
+ "@memberjunction/ai-vectors-pinecone": "2.43.0",
30
+ "@memberjunction/aiengine": "2.43.0",
31
+ "@memberjunction/core": "2.43.0",
32
+ "@memberjunction/core-actions": "2.43.0",
33
+ "@memberjunction/core-entities": "2.43.0",
34
+ "@memberjunction/data-context": "2.43.0",
35
+ "@memberjunction/data-context-server": "2.43.0",
36
+ "@memberjunction/doc-utils": "2.43.0",
37
+ "@memberjunction/entity-communications-server": "2.43.0",
38
+ "@memberjunction/external-change-detection": "2.43.0",
39
+ "@memberjunction/global": "2.43.0",
40
+ "@memberjunction/graphql-dataprovider": "2.43.0",
41
+ "@memberjunction/queue": "2.43.0",
42
+ "@memberjunction/skip-types": "2.43.0",
43
+ "@memberjunction/sqlserver-dataprovider": "2.43.0",
44
+ "@memberjunction/storage": "2.43.0",
45
+ "@memberjunction/templates": "2.43.0",
46
46
  "@types/compression": "^1.7.5",
47
47
  "@types/cors": "^2.8.13",
48
48
  "@types/jsonwebtoken": "9.0.6",
@@ -5871,6 +5871,10 @@ export class EntityField_ {
5871
5871
  @MaxLength(20)
5872
5872
  ValuesToPackWithSchema: string;
5873
5873
 
5874
+ @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`})
5875
+ @MaxLength(50)
5876
+ Status: string;
5877
+
5874
5878
  @Field({nullable: true})
5875
5879
  FieldCodeName?: string;
5876
5880
 
@@ -6014,6 +6018,9 @@ export class CreateEntityFieldInput {
6014
6018
 
6015
6019
  @Field({ nullable: true })
6016
6020
  ValuesToPackWithSchema?: string;
6021
+
6022
+ @Field({ nullable: true })
6023
+ Status?: string;
6017
6024
  }
6018
6025
 
6019
6026
 
@@ -6112,6 +6119,9 @@ export class UpdateEntityFieldInput {
6112
6119
  @Field({ nullable: true })
6113
6120
  ValuesToPackWithSchema?: string;
6114
6121
 
6122
+ @Field({ nullable: true })
6123
+ Status?: string;
6124
+
6115
6125
  @Field(() => [KeyValuePairInput], { nullable: true })
6116
6126
  OldValues___?: KeyValuePairInput[];
6117
6127
  }