@memberjunction/server 0.9.240 → 0.9.241

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/build.log.json CHANGED
@@ -385,5 +385,8 @@
385
385
  },
386
386
  {
387
387
  "buildTime": "2024-03-21T11:38:29.9855364-05:00"
388
+ },
389
+ {
390
+ "buildTime": "2024-03-21T12:31:44.1382448-05:00"
388
391
  }
389
392
  ]
@@ -1,4 +1,5 @@
1
- import { AppContext, PubSubEngine, ResolverBase, RunDynamicViewInput, RunViewByIDInput, RunViewByNameInput } from '@memberjunction/server';
1
+ import { PubSubEngine, ResolverBase, RunViewByIDInput, RunViewByNameInput, RunDynamicViewInput } from '@memberjunction/server';
2
+ import { AppContext } from '@memberjunction/server';
2
3
  import { DataSource } from 'typeorm';
3
4
  import * as mj_core_schema_server_object_types from '@memberjunction/server';
4
5
  export declare class Company_ {
@@ -940,6 +941,7 @@ export declare class UserResolverBase extends ResolverBase {
940
941
  export declare class EntityRelationship_ {
941
942
  ID: number;
942
943
  EntityID: number;
944
+ Sequence: number;
943
945
  RelatedEntityID: number;
944
946
  BundleInAPI: boolean;
945
947
  IncludeInParentAllQuery: boolean;
@@ -968,6 +970,7 @@ export declare class EntityRelationship_ {
968
970
  }
969
971
  export declare class CreateEntityRelationshipInput {
970
972
  EntityID: number;
973
+ Sequence: number;
971
974
  RelatedEntityID: number;
972
975
  BundleInAPI: boolean;
973
976
  IncludeInParentAllQuery: boolean;
@@ -983,6 +986,7 @@ export declare class CreateEntityRelationshipInput {
983
986
  export declare class UpdateEntityRelationshipInput {
984
987
  ID: number;
985
988
  EntityID: number;
989
+ Sequence: number;
986
990
  RelatedEntityID: number;
987
991
  BundleInAPI: boolean;
988
992
  IncludeInParentAllQuery: boolean;