@the-inkwell/shared 0.2.236 → 0.2.238
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/schema/admin/campaigns/index.d.ts +84 -84
- package/dist/schema/admin/embeddings/index.d.ts +1 -3
- package/dist/schema/admin/embeddings/index.js +1 -3
- package/dist/schema/admin/embeddings/index.js.map +1 -1
- package/dist/schema/admin/matches/previews.d.ts +112 -76
- package/dist/schema/admin/matches/previews.js +3 -36
- package/dist/schema/admin/matches/previews.js.map +1 -1
- package/dist/schema/core.d.ts +52 -50
- package/dist/schema/core.js.map +1 -1
- package/package.json +1 -1
package/dist/schema/core.d.ts
CHANGED
|
@@ -1004,53 +1004,6 @@ export declare const client: import("drizzle-orm/pg-core").PgTableWithColumns<{
|
|
|
1004
1004
|
};
|
|
1005
1005
|
dialect: "pg";
|
|
1006
1006
|
}>;
|
|
1007
|
-
type CampaignMatchFilterTarget = 'person' | 'referredPersonOrPosition';
|
|
1008
|
-
type CampaignMatchFilters = {
|
|
1009
|
-
industries?: {
|
|
1010
|
-
[K in CampaignMatchFilterTarget]?: string[];
|
|
1011
|
-
};
|
|
1012
|
-
jobFunctions?: {
|
|
1013
|
-
[K in CampaignMatchFilterTarget]: string[];
|
|
1014
|
-
};
|
|
1015
|
-
skills?: {
|
|
1016
|
-
[K in CampaignMatchFilterTarget]: string[];
|
|
1017
|
-
};
|
|
1018
|
-
tags?: {
|
|
1019
|
-
[K in CampaignMatchFilterTarget]: string[];
|
|
1020
|
-
};
|
|
1021
|
-
networks?: {
|
|
1022
|
-
[K in CampaignMatchFilterTarget]: string[];
|
|
1023
|
-
};
|
|
1024
|
-
professionalEvents?: {
|
|
1025
|
-
[K in CampaignMatchFilterTarget]: string[];
|
|
1026
|
-
};
|
|
1027
|
-
titles?: {
|
|
1028
|
-
[K in CampaignMatchFilterTarget]: {
|
|
1029
|
-
name: string;
|
|
1030
|
-
embedding: number[];
|
|
1031
|
-
}[];
|
|
1032
|
-
};
|
|
1033
|
-
companies?: {
|
|
1034
|
-
[K in CampaignMatchFilterTarget]: {
|
|
1035
|
-
name: string;
|
|
1036
|
-
embedding: number[];
|
|
1037
|
-
}[];
|
|
1038
|
-
};
|
|
1039
|
-
schools?: {
|
|
1040
|
-
[K in CampaignMatchFilterTarget]: {
|
|
1041
|
-
name: string;
|
|
1042
|
-
embedding: number[];
|
|
1043
|
-
}[];
|
|
1044
|
-
};
|
|
1045
|
-
locations?: {
|
|
1046
|
-
[K in CampaignMatchFilterTarget]: {
|
|
1047
|
-
name: string;
|
|
1048
|
-
lat: number;
|
|
1049
|
-
lon: number;
|
|
1050
|
-
radiusInMiles: number;
|
|
1051
|
-
};
|
|
1052
|
-
};
|
|
1053
|
-
};
|
|
1054
1007
|
export declare const campaign: import("drizzle-orm/pg-core").PgTableWithColumns<{
|
|
1055
1008
|
name: "campaigns";
|
|
1056
1009
|
schema: undefined;
|
|
@@ -1128,7 +1081,32 @@ export declare const campaign: import("drizzle-orm/pg-core").PgTableWithColumns<
|
|
|
1128
1081
|
tableName: "campaigns";
|
|
1129
1082
|
dataType: "json";
|
|
1130
1083
|
columnType: "PgJsonb";
|
|
1131
|
-
data:
|
|
1084
|
+
data: {
|
|
1085
|
+
industries?: string[];
|
|
1086
|
+
jobFunctions?: string[];
|
|
1087
|
+
skills?: string[];
|
|
1088
|
+
tags?: string[];
|
|
1089
|
+
networks?: string[];
|
|
1090
|
+
professionalEvents?: string[];
|
|
1091
|
+
titles?: {
|
|
1092
|
+
name: string;
|
|
1093
|
+
embedding: number[];
|
|
1094
|
+
}[];
|
|
1095
|
+
companies?: {
|
|
1096
|
+
name: string;
|
|
1097
|
+
embedding: number[];
|
|
1098
|
+
}[];
|
|
1099
|
+
schools?: {
|
|
1100
|
+
name: string;
|
|
1101
|
+
embedding: number[];
|
|
1102
|
+
}[];
|
|
1103
|
+
locations?: {
|
|
1104
|
+
name: string;
|
|
1105
|
+
lat: number;
|
|
1106
|
+
lon: number;
|
|
1107
|
+
radiusInMiles: number;
|
|
1108
|
+
}[];
|
|
1109
|
+
};
|
|
1132
1110
|
driverParam: unknown;
|
|
1133
1111
|
notNull: false;
|
|
1134
1112
|
hasDefault: false;
|
|
@@ -1140,7 +1118,32 @@ export declare const campaign: import("drizzle-orm/pg-core").PgTableWithColumns<
|
|
|
1140
1118
|
identity: undefined;
|
|
1141
1119
|
generated: undefined;
|
|
1142
1120
|
}, {}, {
|
|
1143
|
-
$type:
|
|
1121
|
+
$type: {
|
|
1122
|
+
industries?: string[];
|
|
1123
|
+
jobFunctions?: string[];
|
|
1124
|
+
skills?: string[];
|
|
1125
|
+
tags?: string[];
|
|
1126
|
+
networks?: string[];
|
|
1127
|
+
professionalEvents?: string[];
|
|
1128
|
+
titles?: {
|
|
1129
|
+
name: string;
|
|
1130
|
+
embedding: number[];
|
|
1131
|
+
}[];
|
|
1132
|
+
companies?: {
|
|
1133
|
+
name: string;
|
|
1134
|
+
embedding: number[];
|
|
1135
|
+
}[];
|
|
1136
|
+
schools?: {
|
|
1137
|
+
name: string;
|
|
1138
|
+
embedding: number[];
|
|
1139
|
+
}[];
|
|
1140
|
+
locations?: {
|
|
1141
|
+
name: string;
|
|
1142
|
+
lat: number;
|
|
1143
|
+
lon: number;
|
|
1144
|
+
radiusInMiles: number;
|
|
1145
|
+
}[];
|
|
1146
|
+
};
|
|
1144
1147
|
}>;
|
|
1145
1148
|
hasSms: import("drizzle-orm/pg-core").PgColumn<{
|
|
1146
1149
|
name: "hasSms";
|
|
@@ -7401,4 +7404,3 @@ export declare const tagRelations: import("drizzle-orm").Relations<"tags", {
|
|
|
7401
7404
|
persons: import("drizzle-orm").Many<"persons_to_tags">;
|
|
7402
7405
|
positions: import("drizzle-orm").Many<"positions_to_tags">;
|
|
7403
7406
|
}>;
|
|
7404
|
-
export {};
|