@memberjunction/server 2.9.0 → 2.10.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.9.0",
3
+ "version": "2.10.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.9.0",
26
- "@memberjunction/ai": "2.9.0",
27
- "@memberjunction/ai-mistral": "2.9.0",
28
- "@memberjunction/ai-openai": "2.9.0",
29
- "@memberjunction/ai-vectors-pinecone": "2.9.0",
30
- "@memberjunction/aiengine": "2.9.0",
31
- "@memberjunction/core": "2.9.0",
32
- "@memberjunction/core-actions": "2.9.0",
33
- "@memberjunction/core-entities": "2.9.0",
34
- "@memberjunction/data-context": "2.9.0",
35
- "@memberjunction/data-context-server": "2.9.0",
36
- "@memberjunction/doc-utils": "2.9.0",
37
- "@memberjunction/entity-communications-server": "2.9.0",
38
- "@memberjunction/external-change-detection": "2.9.0",
39
- "@memberjunction/global": "2.9.0",
40
- "@memberjunction/queue": "2.9.0",
41
- "@memberjunction/skip-types": "2.9.0",
42
- "@memberjunction/sqlserver-dataprovider": "2.9.0",
43
- "@memberjunction/graphql-dataprovider": "2.9.0",
44
- "@memberjunction/storage": "2.9.0",
45
- "@memberjunction/templates": "2.9.0",
25
+ "@memberjunction/actions": "2.10.0",
26
+ "@memberjunction/ai": "2.10.0",
27
+ "@memberjunction/ai-mistral": "2.10.0",
28
+ "@memberjunction/ai-openai": "2.10.0",
29
+ "@memberjunction/ai-vectors-pinecone": "2.10.0",
30
+ "@memberjunction/aiengine": "2.10.0",
31
+ "@memberjunction/core": "2.10.0",
32
+ "@memberjunction/core-actions": "2.10.0",
33
+ "@memberjunction/core-entities": "2.10.0",
34
+ "@memberjunction/data-context": "2.10.0",
35
+ "@memberjunction/data-context-server": "2.10.0",
36
+ "@memberjunction/doc-utils": "2.10.0",
37
+ "@memberjunction/entity-communications-server": "2.10.0",
38
+ "@memberjunction/external-change-detection": "2.10.0",
39
+ "@memberjunction/global": "2.10.0",
40
+ "@memberjunction/queue": "2.10.0",
41
+ "@memberjunction/skip-types": "2.10.0",
42
+ "@memberjunction/sqlserver-dataprovider": "2.10.0",
43
+ "@memberjunction/graphql-dataprovider": "2.10.0",
44
+ "@memberjunction/storage": "2.10.0",
45
+ "@memberjunction/templates": "2.10.0",
46
46
  "@types/cors": "^2.8.13",
47
47
  "@types/jsonwebtoken": "9.0.6",
48
48
  "@types/node": "20.14.2",
@@ -2,8 +2,6 @@
2
2
  * ALL ENTITIES - TypeGraphQL Type Class Definition - AUTO GENERATED FILE
3
3
  * Generated Entities and Resolvers for Server
4
4
  *
5
- * GENERATED: 10/16/2024, 4:51:13 PM
6
- *
7
5
  * >>> DO NOT MODIFY THIS FILE!!!!!!!!!!!!
8
6
  * >>> YOUR CHANGES WILL BE OVERWRITTEN
9
7
  * >>> THE NEXT TIME THIS FILE IS GENERATED
@@ -6395,6 +6393,16 @@ export class CompanyIntegrationRun_ {
6395
6393
  @MaxLength(10)
6396
6394
  _mj__UpdatedAt: Date;
6397
6395
 
6396
+ @Field({description: 'Status of the integration run. Possible values: Pending, In Progress, Success, Failed.'})
6397
+ @MaxLength(40)
6398
+ Status: string;
6399
+
6400
+ @Field({nullable: true, description: 'Optional error log information for the integration run.'})
6401
+ ErrorLog?: string;
6402
+
6403
+ @Field({nullable: true, description: 'Optional configuration data in JSON format for the request that started the integration run for audit purposes.'})
6404
+ ConfigData?: string;
6405
+
6398
6406
  @Field()
6399
6407
  @MaxLength(200)
6400
6408
  Integration: string;
@@ -6440,6 +6448,15 @@ export class CreateCompanyIntegrationRunInput {
6440
6448
 
6441
6449
  @Field({ nullable: true })
6442
6450
  Comments?: string;
6451
+
6452
+ @Field()
6453
+ Status: string;
6454
+
6455
+ @Field({ nullable: true })
6456
+ ErrorLog?: string;
6457
+
6458
+ @Field({ nullable: true })
6459
+ ConfigData?: string;
6443
6460
  }
6444
6461
 
6445
6462
 
@@ -6469,6 +6486,15 @@ export class UpdateCompanyIntegrationRunInput {
6469
6486
  @Field({ nullable: true })
6470
6487
  Comments?: string;
6471
6488
 
6489
+ @Field()
6490
+ Status: string;
6491
+
6492
+ @Field({ nullable: true })
6493
+ ErrorLog?: string;
6494
+
6495
+ @Field({ nullable: true })
6496
+ ConfigData?: string;
6497
+
6472
6498
  @Field(() => [KeyValuePairInput], { nullable: true })
6473
6499
  OldValues___?: KeyValuePairInput[];
6474
6500
  }