@memberjunction/server 4.2.0 → 4.3.1
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/dist/generated/generated.d.ts +6 -0
- package/dist/generated/generated.d.ts.map +1 -1
- package/dist/generated/generated.js +26 -0
- package/dist/generated/generated.js.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/resolvers/ISAEntityResolver.d.ts +32 -0
- package/dist/resolvers/ISAEntityResolver.d.ts.map +1 -0
- package/dist/resolvers/ISAEntityResolver.js +109 -0
- package/dist/resolvers/ISAEntityResolver.js.map +1 -0
- package/package.json +56 -59
- package/src/__tests__/setup.ts +8 -10
- package/src/auth/__tests__/backward-compatibility.test.ts +74 -85
- package/src/generated/generated.ts +20 -0
- package/src/index.ts +1 -0
- package/src/resolvers/ISAEntityResolver.ts +96 -0
|
@@ -15053,6 +15053,8 @@ export declare class MJSchemaInfo_ {
|
|
|
15053
15053
|
_mj__CreatedAt: Date;
|
|
15054
15054
|
_mj__UpdatedAt: Date;
|
|
15055
15055
|
Description?: string;
|
|
15056
|
+
EntityNamePrefix?: string;
|
|
15057
|
+
EntityNameSuffix?: string;
|
|
15056
15058
|
}
|
|
15057
15059
|
export declare class CreateMJSchemaInfoInput {
|
|
15058
15060
|
ID?: string;
|
|
@@ -15061,6 +15063,8 @@ export declare class CreateMJSchemaInfoInput {
|
|
|
15061
15063
|
EntityIDMax?: number;
|
|
15062
15064
|
Comments: string | null;
|
|
15063
15065
|
Description: string | null;
|
|
15066
|
+
EntityNamePrefix: string | null;
|
|
15067
|
+
EntityNameSuffix: string | null;
|
|
15064
15068
|
}
|
|
15065
15069
|
export declare class UpdateMJSchemaInfoInput {
|
|
15066
15070
|
ID: string;
|
|
@@ -15069,6 +15073,8 @@ export declare class UpdateMJSchemaInfoInput {
|
|
|
15069
15073
|
EntityIDMax?: number;
|
|
15070
15074
|
Comments?: string | null;
|
|
15071
15075
|
Description?: string | null;
|
|
15076
|
+
EntityNamePrefix?: string | null;
|
|
15077
|
+
EntityNameSuffix?: string | null;
|
|
15072
15078
|
OldValues___?: KeyValuePairInput[];
|
|
15073
15079
|
}
|
|
15074
15080
|
export declare class RunMJSchemaInfoViewResult {
|