@memberjunction/server 0.9.186 → 0.9.187
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": "0.9.
|
|
3
|
+
"version": "0.9.187",
|
|
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,15 +22,15 @@
|
|
|
22
22
|
"@apollo/server": "^4.9.1",
|
|
23
23
|
"@graphql-tools/utils": "^10.0.1",
|
|
24
24
|
"@memberjunction/ai": "^0.9.136",
|
|
25
|
-
"@memberjunction/aiengine": "^0.9.
|
|
25
|
+
"@memberjunction/aiengine": "^0.9.30",
|
|
26
26
|
"@memberjunction/core": "^0.9.148",
|
|
27
|
-
"@memberjunction/core-entities": "^0.9.
|
|
28
|
-
"@memberjunction/data-context": "^0.9.
|
|
29
|
-
"@memberjunction/data-context-server": "^0.9.
|
|
27
|
+
"@memberjunction/core-entities": "^0.9.132",
|
|
28
|
+
"@memberjunction/data-context": "^0.9.20",
|
|
29
|
+
"@memberjunction/data-context-server": "^0.9.16",
|
|
30
30
|
"@memberjunction/global": "^0.9.135",
|
|
31
|
-
"@memberjunction/queue": "^0.9.
|
|
32
|
-
"@memberjunction/sqlserver-dataprovider": "^0.9.
|
|
33
|
-
"@memberjunction/skip-types": "^0.9.
|
|
31
|
+
"@memberjunction/queue": "^0.9.150",
|
|
32
|
+
"@memberjunction/sqlserver-dataprovider": "^0.9.160",
|
|
33
|
+
"@memberjunction/skip-types": "^0.9.36",
|
|
34
34
|
"@types/cors": "^2.8.13",
|
|
35
35
|
"@types/jsonwebtoken": "^8.5.9",
|
|
36
36
|
"@types/node": "^18.11.14",
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* ALL ENTITIES - TypeGraphQL Type Class Definition - AUTO GENERATED FILE
|
|
3
3
|
* Generated Entities and Resolvers for Server
|
|
4
4
|
*
|
|
5
|
-
* GENERATED: 2/
|
|
5
|
+
* GENERATED: 2/23/2024, 4:06:00 PM
|
|
6
6
|
*
|
|
7
7
|
* >>> DO NOT MODIFY THIS FILE!!!!!!!!!!!!
|
|
8
8
|
* >>> YOUR CHANGES WILL BE OVERWRITTEN
|
|
@@ -12658,6 +12658,9 @@ export class Conversation_ {
|
|
|
12658
12658
|
@MaxLength(100)
|
|
12659
12659
|
Type: string;
|
|
12660
12660
|
|
|
12661
|
+
@Field(() => Boolean)
|
|
12662
|
+
IsArchived: boolean;
|
|
12663
|
+
|
|
12661
12664
|
@Field(() => Int, {nullable: true})
|
|
12662
12665
|
LinkedEntityID?: number;
|
|
12663
12666
|
|
|
@@ -12711,6 +12714,9 @@ export class CreateConversationInput {
|
|
|
12711
12714
|
@Field()
|
|
12712
12715
|
Type: string;
|
|
12713
12716
|
|
|
12717
|
+
@Field(() => Boolean, )
|
|
12718
|
+
IsArchived: boolean;
|
|
12719
|
+
|
|
12714
12720
|
@Field(() => Int, { nullable: true })
|
|
12715
12721
|
LinkedEntityID: number;
|
|
12716
12722
|
|
|
@@ -12745,6 +12751,9 @@ export class UpdateConversationInput {
|
|
|
12745
12751
|
@Field()
|
|
12746
12752
|
Type: string;
|
|
12747
12753
|
|
|
12754
|
+
@Field(() => Boolean, )
|
|
12755
|
+
IsArchived: boolean;
|
|
12756
|
+
|
|
12748
12757
|
@Field(() => Int, { nullable: true })
|
|
12749
12758
|
LinkedEntityID: number;
|
|
12750
12759
|
|