@memberjunction/core 2.72.0 → 2.74.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/dist/generic/applicationInfo.d.ts +92 -1
- package/dist/generic/applicationInfo.d.ts.map +1 -1
- package/dist/generic/applicationInfo.js +92 -1
- package/dist/generic/applicationInfo.js.map +1 -1
- package/dist/generic/baseInfo.d.ts +15 -0
- package/dist/generic/baseInfo.d.ts.map +1 -1
- package/dist/generic/baseInfo.js +15 -0
- package/dist/generic/baseInfo.js.map +1 -1
- package/dist/generic/entityInfo.d.ts +184 -3
- package/dist/generic/entityInfo.d.ts.map +1 -1
- package/dist/generic/entityInfo.js +184 -3
- package/dist/generic/entityInfo.js.map +1 -1
- package/dist/generic/interfaces.d.ts +119 -4
- package/dist/generic/interfaces.d.ts.map +1 -1
- package/dist/generic/interfaces.js +44 -3
- package/dist/generic/interfaces.js.map +1 -1
- package/dist/generic/providerBase.d.ts +248 -8
- package/dist/generic/providerBase.d.ts.map +1 -1
- package/dist/generic/providerBase.js +185 -2
- package/dist/generic/providerBase.js.map +1 -1
- package/dist/generic/queryInfo.d.ts +312 -1
- package/dist/generic/queryInfo.d.ts.map +1 -1
- package/dist/generic/queryInfo.js +371 -2
- package/dist/generic/queryInfo.js.map +1 -1
- package/dist/generic/querySQLFilters.d.ts +54 -0
- package/dist/generic/querySQLFilters.d.ts.map +1 -0
- package/dist/generic/querySQLFilters.js +84 -0
- package/dist/generic/querySQLFilters.js.map +1 -0
- package/dist/generic/runQuery.d.ts +42 -0
- package/dist/generic/runQuery.d.ts.map +1 -1
- package/dist/generic/runQuery.js +26 -0
- package/dist/generic/runQuery.js.map +1 -1
- package/dist/generic/runQuerySQLFilterImplementations.d.ts +51 -0
- package/dist/generic/runQuerySQLFilterImplementations.d.ts.map +1 -0
- package/dist/generic/runQuerySQLFilterImplementations.js +238 -0
- package/dist/generic/runQuerySQLFilterImplementations.js.map +1 -0
- package/dist/generic/securityInfo.d.ts +212 -13
- package/dist/generic/securityInfo.d.ts.map +1 -1
- package/dist/generic/securityInfo.js +200 -14
- package/dist/generic/securityInfo.js.map +1 -1
- package/dist/index.d.ts +4 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +4 -0
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/readme.md +550 -1
|
@@ -3,9 +3,14 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.AuditLogTypeInfo = exports.AuthorizationRoleInfo = exports.AuthorizationRoleType = exports.AuthorizationInfo = exports.RowLevelSecurityFilterInfo = exports.RoleInfo = exports.UserRoleInfo = exports.UserInfo = void 0;
|
|
4
4
|
const baseInfo_1 = require("./baseInfo");
|
|
5
5
|
/**
|
|
6
|
-
*
|
|
6
|
+
* A list of all users who have or had access to the system.
|
|
7
|
+
* Contains user profile information, authentication details, and role assignments.
|
|
7
8
|
*/
|
|
8
9
|
class UserInfo extends baseInfo_1.BaseInfo {
|
|
10
|
+
/**
|
|
11
|
+
* Gets the roles assigned to this user.
|
|
12
|
+
* @returns {UserRoleInfo[]} Array of user role assignments
|
|
13
|
+
*/
|
|
9
14
|
get UserRoles() {
|
|
10
15
|
return this._UserRoles;
|
|
11
16
|
}
|
|
@@ -18,27 +23,86 @@ class UserInfo extends baseInfo_1.BaseInfo {
|
|
|
18
23
|
*/
|
|
19
24
|
constructor(md = null, initData = null) {
|
|
20
25
|
super();
|
|
26
|
+
/**
|
|
27
|
+
* Unique identifier for the user
|
|
28
|
+
*/
|
|
21
29
|
this.ID = null;
|
|
22
|
-
|
|
30
|
+
/**
|
|
31
|
+
* Name of the user that is used in various places in UIs/etc, can be anything including FirstLast, Email, a Handle, etc
|
|
32
|
+
*/
|
|
23
33
|
this.Name = null;
|
|
34
|
+
/**
|
|
35
|
+
* User's first name or given name
|
|
36
|
+
*/
|
|
24
37
|
this.FirstName = null;
|
|
38
|
+
/**
|
|
39
|
+
* User's last name or surname
|
|
40
|
+
*/
|
|
25
41
|
this.LastName = null;
|
|
42
|
+
/**
|
|
43
|
+
* User's professional title or salutation
|
|
44
|
+
*/
|
|
26
45
|
this.Title = null;
|
|
46
|
+
/**
|
|
47
|
+
* Unique email address for the user. This field must be unique across all users in the system
|
|
48
|
+
*/
|
|
27
49
|
this.Email = null;
|
|
50
|
+
/**
|
|
51
|
+
* User account type (User, Owner)
|
|
52
|
+
*/
|
|
28
53
|
this.Type = null;
|
|
54
|
+
/**
|
|
55
|
+
* Whether this user account is currently active and can log in
|
|
56
|
+
*/
|
|
29
57
|
this.IsActive = null;
|
|
58
|
+
/**
|
|
59
|
+
* Type of record this user is linked to (None, Employee, Contact, etc.)
|
|
60
|
+
*/
|
|
30
61
|
this.LinkedRecordType = null;
|
|
62
|
+
/**
|
|
63
|
+
* Foreign key reference to the Employee entity
|
|
64
|
+
*/
|
|
31
65
|
this.EmployeeID = null;
|
|
66
|
+
/**
|
|
67
|
+
* Foreign key reference to the Entities table
|
|
68
|
+
*/
|
|
32
69
|
this.LinkedEntityID = null;
|
|
70
|
+
/**
|
|
71
|
+
* ID of the specific record this user is linked to
|
|
72
|
+
*/
|
|
33
73
|
this.LinkedEntityRecordID = null;
|
|
74
|
+
/**
|
|
75
|
+
* Timestamp when the user record was created
|
|
76
|
+
*/
|
|
34
77
|
this.__mj_CreatedAt = null;
|
|
78
|
+
/**
|
|
79
|
+
* Timestamp when the user record was last updated
|
|
80
|
+
*/
|
|
35
81
|
this.__mj_UpdatedAt = null;
|
|
36
82
|
// virtual fields - returned by the database VIEW
|
|
83
|
+
/**
|
|
84
|
+
* Concatenated first and last name
|
|
85
|
+
*/
|
|
37
86
|
this.FirstLast = null;
|
|
87
|
+
/**
|
|
88
|
+
* Employee's concatenated first and last name
|
|
89
|
+
*/
|
|
38
90
|
this.EmployeeFirstLast = null;
|
|
91
|
+
/**
|
|
92
|
+
* Employee's email address
|
|
93
|
+
*/
|
|
39
94
|
this.EmployeeEmail = null;
|
|
95
|
+
/**
|
|
96
|
+
* Employee's job title
|
|
97
|
+
*/
|
|
40
98
|
this.EmployeeTitle = null;
|
|
99
|
+
/**
|
|
100
|
+
* Name of the employee's supervisor
|
|
101
|
+
*/
|
|
41
102
|
this.EmployeeSupervisor = null;
|
|
103
|
+
/**
|
|
104
|
+
* Email address of the employee's supervisor
|
|
105
|
+
*/
|
|
42
106
|
this.EmployeeSupervisorEmail = null;
|
|
43
107
|
this._UserRoles = [];
|
|
44
108
|
this.copyInitData(initData);
|
|
@@ -49,50 +113,117 @@ class UserInfo extends baseInfo_1.BaseInfo {
|
|
|
49
113
|
}
|
|
50
114
|
exports.UserInfo = UserInfo;
|
|
51
115
|
/**
|
|
52
|
-
*
|
|
116
|
+
* Associates users with roles in the system, managing role-based access control and permission inheritance.
|
|
53
117
|
*/
|
|
54
118
|
class UserRoleInfo extends baseInfo_1.BaseInfo {
|
|
55
119
|
constructor(initData) {
|
|
56
120
|
super();
|
|
121
|
+
/**
|
|
122
|
+
* Foreign key reference to the Users table
|
|
123
|
+
*/
|
|
57
124
|
this.UserID = null;
|
|
125
|
+
/**
|
|
126
|
+
* Foreign key reference to the Roles table
|
|
127
|
+
*/
|
|
58
128
|
this.RoleID = null;
|
|
129
|
+
/**
|
|
130
|
+
* Timestamp when the user-role association was created
|
|
131
|
+
*/
|
|
59
132
|
this.__mj_CreatedAt = null;
|
|
133
|
+
/**
|
|
134
|
+
* Timestamp when the user-role association was last updated
|
|
135
|
+
*/
|
|
60
136
|
this.__mj_UpdatedAt = null;
|
|
61
137
|
// virtual fields - returned by the database VIEW
|
|
138
|
+
/**
|
|
139
|
+
* Name of the user
|
|
140
|
+
*/
|
|
62
141
|
this.User = null;
|
|
142
|
+
/**
|
|
143
|
+
* Name of the role
|
|
144
|
+
*/
|
|
63
145
|
this.Role = null;
|
|
64
146
|
this.copyInitData(initData);
|
|
65
147
|
}
|
|
66
148
|
}
|
|
67
149
|
exports.UserRoleInfo = UserRoleInfo;
|
|
68
150
|
/**
|
|
69
|
-
*
|
|
151
|
+
* Roles are used for security administration and can have zero to many Users as members.
|
|
152
|
+
* Defines groups of permissions that can be assigned to multiple users.
|
|
70
153
|
*/
|
|
71
154
|
class RoleInfo extends baseInfo_1.BaseInfo {
|
|
72
155
|
constructor(initData) {
|
|
73
156
|
super();
|
|
157
|
+
/**
|
|
158
|
+
* Unique identifier for the role
|
|
159
|
+
*/
|
|
74
160
|
this.ID = null;
|
|
161
|
+
/**
|
|
162
|
+
* Name of the role
|
|
163
|
+
*/
|
|
75
164
|
this.Name = null;
|
|
165
|
+
/**
|
|
166
|
+
* Description of the role
|
|
167
|
+
*/
|
|
76
168
|
this.Description = null;
|
|
169
|
+
/**
|
|
170
|
+
* The unique ID of the role in the directory being used for authentication, for example an ID in Azure
|
|
171
|
+
*/
|
|
77
172
|
this.DirectoryID = null;
|
|
173
|
+
/**
|
|
174
|
+
* The name of the role in the database, this is used for auto-generating permission statements by CodeGen
|
|
175
|
+
*/
|
|
78
176
|
this.SQLName = null;
|
|
177
|
+
/**
|
|
178
|
+
* Timestamp when the role was created
|
|
179
|
+
*/
|
|
79
180
|
this.__mj_CreatedAt = null;
|
|
181
|
+
/**
|
|
182
|
+
* Timestamp when the role was last updated
|
|
183
|
+
*/
|
|
80
184
|
this.__mj_UpdatedAt = null;
|
|
81
185
|
this.copyInitData(initData);
|
|
82
186
|
}
|
|
83
187
|
}
|
|
84
188
|
exports.RoleInfo = RoleInfo;
|
|
189
|
+
/**
|
|
190
|
+
* Defines data access rules that filter records based on user context, implementing fine-grained security at the row level.
|
|
191
|
+
*/
|
|
85
192
|
class RowLevelSecurityFilterInfo extends baseInfo_1.BaseInfo {
|
|
86
193
|
constructor(initData) {
|
|
87
194
|
super();
|
|
195
|
+
/**
|
|
196
|
+
* Unique identifier for the row level security filter
|
|
197
|
+
*/
|
|
88
198
|
this.ID = null;
|
|
199
|
+
/**
|
|
200
|
+
* Name of the row level security filter
|
|
201
|
+
*/
|
|
89
202
|
this.Name = null;
|
|
203
|
+
/**
|
|
204
|
+
* Description of the row level security filter
|
|
205
|
+
*/
|
|
90
206
|
this.Description = null;
|
|
207
|
+
/**
|
|
208
|
+
* SQL WHERE clause template that filters records based on user context variables
|
|
209
|
+
*/
|
|
91
210
|
this.FilterText = null;
|
|
211
|
+
/**
|
|
212
|
+
* Timestamp when the filter was created
|
|
213
|
+
*/
|
|
92
214
|
this.__mj_CreatedAt = null;
|
|
215
|
+
/**
|
|
216
|
+
* Timestamp when the filter was last updated
|
|
217
|
+
*/
|
|
93
218
|
this.__mj_UpdatedAt = null;
|
|
94
219
|
this.copyInitData(initData);
|
|
95
220
|
}
|
|
221
|
+
/**
|
|
222
|
+
* Replaces user-specific tokens in the filter text with actual user values.
|
|
223
|
+
* Tokens are in the format {{UserFieldName}} where FieldName is any property of the UserInfo object.
|
|
224
|
+
* @param {UserInfo} user - The user whose properties will be substituted into the filter text
|
|
225
|
+
* @returns {string} The filter text with all user tokens replaced with actual values
|
|
226
|
+
*/
|
|
96
227
|
MarkupFilterText(user) {
|
|
97
228
|
let ret = this.FilterText;
|
|
98
229
|
if (user) {
|
|
@@ -110,35 +241,45 @@ class RowLevelSecurityFilterInfo extends baseInfo_1.BaseInfo {
|
|
|
110
241
|
}
|
|
111
242
|
exports.RowLevelSecurityFilterInfo = RowLevelSecurityFilterInfo;
|
|
112
243
|
/**
|
|
113
|
-
*
|
|
114
|
-
|
|
115
|
-
*
|
|
116
|
-
**/
|
|
244
|
+
* Stores the fundamental permissions and access rights that can be granted to users and roles throughout the system.
|
|
245
|
+
*/
|
|
117
246
|
class AuthorizationInfo extends baseInfo_1.BaseInfo {
|
|
118
247
|
get Roles() {
|
|
119
248
|
return this._AuthorizationRoles;
|
|
120
249
|
}
|
|
121
250
|
constructor(md, initData = null) {
|
|
122
251
|
super();
|
|
252
|
+
/**
|
|
253
|
+
* Unique identifier for the authorization
|
|
254
|
+
*/
|
|
123
255
|
this.ID = null;
|
|
124
256
|
/**
|
|
125
|
-
* The unique identifier for the parent authorization, if applicable
|
|
126
|
-
* @type {string|null}
|
|
257
|
+
* The unique identifier for the parent authorization, if applicable
|
|
127
258
|
*/
|
|
128
259
|
this.ParentID = null;
|
|
260
|
+
/**
|
|
261
|
+
* Name of the authorization
|
|
262
|
+
*/
|
|
129
263
|
this.Name = null;
|
|
130
264
|
/**
|
|
131
|
-
* Indicates whether
|
|
132
|
-
* @type {boolean|null}
|
|
265
|
+
* Indicates whether this authorization is currently active and can be granted to users or roles
|
|
133
266
|
*/
|
|
134
267
|
this.IsActive = null;
|
|
135
268
|
/**
|
|
136
|
-
*
|
|
137
|
-
* @type {boolean|null}
|
|
269
|
+
* When set to 1, Audit Log records are created whenever this authorization is invoked for a user
|
|
138
270
|
*/
|
|
139
271
|
this.UseAuditLog = null;
|
|
272
|
+
/**
|
|
273
|
+
* Description of the authorization
|
|
274
|
+
*/
|
|
140
275
|
this.Description = null;
|
|
276
|
+
/**
|
|
277
|
+
* Timestamp when the authorization was created
|
|
278
|
+
*/
|
|
141
279
|
this.__mj_CreatedAt = null;
|
|
280
|
+
/**
|
|
281
|
+
* Timestamp when the authorization was last updated
|
|
282
|
+
*/
|
|
142
283
|
this.__mj_UpdatedAt = null;
|
|
143
284
|
this._AuthorizationRoles = [];
|
|
144
285
|
this.copyInitData(initData);
|
|
@@ -199,6 +340,9 @@ exports.AuthorizationRoleType = {
|
|
|
199
340
|
Allow: 'Allow',
|
|
200
341
|
Deny: 'Deny',
|
|
201
342
|
};
|
|
343
|
+
/**
|
|
344
|
+
* Links authorizations to roles, defining which permissions are granted to users assigned to specific roles in the system.
|
|
345
|
+
*/
|
|
202
346
|
class AuthorizationRoleInfo extends baseInfo_1.BaseInfo {
|
|
203
347
|
get RoleInfo() {
|
|
204
348
|
return this._RoleInfo;
|
|
@@ -211,26 +355,68 @@ class AuthorizationRoleInfo extends baseInfo_1.BaseInfo {
|
|
|
211
355
|
}
|
|
212
356
|
constructor(initData) {
|
|
213
357
|
super();
|
|
358
|
+
/**
|
|
359
|
+
* Unique identifier for the authorization-role mapping
|
|
360
|
+
*/
|
|
214
361
|
this.ID = null;
|
|
362
|
+
/**
|
|
363
|
+
* Foreign key reference to the Authorizations table
|
|
364
|
+
*/
|
|
215
365
|
this.AuthorizationID = null;
|
|
366
|
+
/**
|
|
367
|
+
* Foreign key reference to the Roles table
|
|
368
|
+
*/
|
|
216
369
|
this.RoleID = null;
|
|
370
|
+
/**
|
|
371
|
+
* Specifies whether this authorization is granted to ('Allow') or explicitly denied ('Deny') for the role. Deny overrides Allow from all other roles a user may be part of
|
|
372
|
+
*/
|
|
217
373
|
this.Type = null;
|
|
374
|
+
/**
|
|
375
|
+
* Timestamp when the authorization-role mapping was created
|
|
376
|
+
*/
|
|
218
377
|
this.__mj_CreatedAt = null;
|
|
378
|
+
/**
|
|
379
|
+
* Timestamp when the authorization-role mapping was last updated
|
|
380
|
+
*/
|
|
219
381
|
this.__mj_UpdatedAt = null;
|
|
220
382
|
this._RoleInfo = null;
|
|
221
383
|
this.copyInitData(initData);
|
|
222
384
|
}
|
|
223
385
|
}
|
|
224
386
|
exports.AuthorizationRoleInfo = AuthorizationRoleInfo;
|
|
387
|
+
/**
|
|
388
|
+
* Defines the types of events that can be recorded in the audit log, enabling categorization and filtering of system activities.
|
|
389
|
+
*/
|
|
225
390
|
class AuditLogTypeInfo extends baseInfo_1.BaseInfo {
|
|
226
391
|
constructor(initData) {
|
|
227
392
|
super();
|
|
393
|
+
/**
|
|
394
|
+
* Unique identifier for the audit log type
|
|
395
|
+
*/
|
|
228
396
|
this.ID = null;
|
|
397
|
+
/**
|
|
398
|
+
* Foreign key reference to the parent Audit Log Type
|
|
399
|
+
*/
|
|
229
400
|
this.ParentID = null;
|
|
401
|
+
/**
|
|
402
|
+
* Name of the audit log type
|
|
403
|
+
*/
|
|
230
404
|
this.Name = null;
|
|
405
|
+
/**
|
|
406
|
+
* Description of the audit log type
|
|
407
|
+
*/
|
|
231
408
|
this.Description = null;
|
|
409
|
+
/**
|
|
410
|
+
* Name of the associated authorization
|
|
411
|
+
*/
|
|
232
412
|
this.AuthorizationName = null;
|
|
413
|
+
/**
|
|
414
|
+
* Timestamp when the audit log type was created
|
|
415
|
+
*/
|
|
233
416
|
this.__mj_CreatedAt = null;
|
|
417
|
+
/**
|
|
418
|
+
* Timestamp when the audit log type was last updated
|
|
419
|
+
*/
|
|
234
420
|
this.__mj_UpdatedAt = null;
|
|
235
421
|
this.copyInitData(initData);
|
|
236
422
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"securityInfo.js","sourceRoot":"","sources":["../../src/generic/securityInfo.ts"],"names":[],"mappings":";;;AAAA,yCAAsC;AAGtC
|
|
1
|
+
{"version":3,"file":"securityInfo.js","sourceRoot":"","sources":["../../src/generic/securityInfo.ts"],"names":[],"mappings":";;;AAAA,yCAAsC;AAGtC;;;GAGG;AACH,MAAa,QAAS,SAAQ,mBAAQ;IAuGlC;;;OAGG;IACH,IAAW,SAAS;QAChB,OAAO,IAAI,CAAC,UAAU,CAAC;IAC3B,CAAC;IAED;;;;;;OAMG;IACH,YAAa,KAAwB,IAAI,EAAE,WAAgB,IAAI;QAC3D,KAAK,EAAE,CAAC;QAtHZ;;WAEG;QACH,OAAE,GAAW,IAAI,CAAC;QAElB;;WAEG;QACH,SAAI,GAAW,IAAI,CAAA;QAEnB;;WAEG;QACH,cAAS,GAAW,IAAI,CAAA;QAExB;;WAEG;QACH,aAAQ,GAAW,IAAI,CAAA;QAEvB;;WAEG;QACH,UAAK,GAAW,IAAI,CAAA;QAEpB;;WAEG;QACH,UAAK,GAAW,IAAI,CAAA;QAEpB;;WAEG;QACH,SAAI,GAAW,IAAI,CAAA;QAEnB;;WAEG;QACH,aAAQ,GAAY,IAAI,CAAA;QAExB;;WAEG;QACH,qBAAgB,GAAkC,IAAI,CAAA;QAEtD;;WAEG;QACH,eAAU,GAAW,IAAI,CAAA;QAEzB;;WAEG;QACH,mBAAc,GAAW,IAAI,CAAA;QAE7B;;WAEG;QACH,yBAAoB,GAAW,IAAI,CAAA;QAEnC;;WAEG;QACH,mBAAc,GAAS,IAAI,CAAA;QAE3B;;WAEG;QACH,mBAAc,GAAS,IAAI,CAAA;QAE3B,iDAAiD;QACjD;;WAEG;QACH,cAAS,GAAW,IAAI,CAAA;QAExB;;WAEG;QACH,sBAAiB,GAAW,IAAI,CAAA;QAEhC;;WAEG;QACH,kBAAa,GAAW,IAAI,CAAA;QAE5B;;WAEG;QACH,kBAAa,GAAW,IAAI,CAAA;QAE5B;;WAEG;QACH,uBAAkB,GAAW,IAAI,CAAA;QAEjC;;WAEG;QACH,4BAAuB,GAAW,IAAI,CAAA;QAE9B,eAAU,GAAmB,EAAE,CAAA;QAkBnC,IAAI,CAAC,YAAY,CAAC,QAAQ,CAAC,CAAC;QAC5B,IAAI,QAAQ,EAAC,CAAC;YACV,IAAI,CAAC,UAAU,GAAG,QAAQ,CAAC,SAAS,IAAI,QAAQ,CAAC,UAAU,CAAC;QAChE,CAAC;IACL,CAAC;CACJ;AA7HD,4BA6HC;AAED;;GAEG;AACH,MAAa,YAAa,SAAQ,mBAAQ;IAgCtC,YAAa,QAAa;QACtB,KAAK,EAAE,CAAC;QAhCZ;;WAEG;QACH,WAAM,GAAW,IAAI,CAAA;QAErB;;WAEG;QACH,WAAM,GAAW,IAAI,CAAA;QAErB;;WAEG;QACH,mBAAc,GAAS,IAAI,CAAA;QAE3B;;WAEG;QACH,mBAAc,GAAS,IAAI,CAAA;QAE3B,iDAAiD;QACjD;;WAEG;QACH,SAAI,GAAW,IAAI,CAAA;QAEnB;;WAEG;QACH,SAAI,GAAW,IAAI,CAAA;QAIf,IAAI,CAAC,YAAY,CAAC,QAAQ,CAAC,CAAC;IAChC,CAAC;CACJ;AApCD,oCAoCC;AAED;;;GAGG;AACH,MAAa,QAAS,SAAQ,mBAAQ;IAoClC,YAAa,QAAa;QACtB,KAAK,EAAE,CAAC;QApCZ;;WAEG;QACH,OAAE,GAAW,IAAI,CAAA;QAEjB;;WAEG;QACH,SAAI,GAAW,IAAI,CAAA;QAEnB;;WAEG;QACH,gBAAW,GAAW,IAAI,CAAA;QAE1B;;WAEG;QACH,gBAAW,GAAW,IAAI,CAAA;QAE1B;;WAEG;QACH,YAAO,GAAW,IAAI,CAAA;QAEtB;;WAEG;QACH,mBAAc,GAAS,IAAI,CAAA;QAE3B;;WAEG;QACH,mBAAc,GAAS,IAAI,CAAA;QAIvB,IAAI,CAAC,YAAY,CAAC,QAAQ,CAAC,CAAC;IAChC,CAAC;CACJ;AAxCD,4BAwCC;AAED;;GAEG;AACH,MAAa,0BAA2B,SAAQ,mBAAQ;IA+BpD,YAAa,QAAa;QACtB,KAAK,EAAE,CAAC;QA/BZ;;WAEG;QACH,OAAE,GAAW,IAAI,CAAA;QAEjB;;WAEG;QACH,SAAI,GAAW,IAAI,CAAA;QAEnB;;WAEG;QACH,gBAAW,GAAW,IAAI,CAAA;QAE1B;;WAEG;QACH,eAAU,GAAW,IAAI,CAAA;QAEzB;;WAEG;QACH,mBAAc,GAAS,IAAI,CAAA;QAE3B;;WAEG;QACH,mBAAc,GAAS,IAAI,CAAA;QAIvB,IAAI,CAAC,YAAY,CAAC,QAAQ,CAAC,CAAC;IAChC,CAAC;IAED;;;;;OAKG;IACI,gBAAgB,CAAC,IAAc;QAClC,IAAI,GAAG,GAAG,IAAI,CAAC,UAAU,CAAA;QACzB,IAAI,IAAI,EAAE,CAAC;YACP,MAAM,IAAI,GAAG,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,CAAA;YAC9B,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE,CAAC;gBACnC,MAAM,GAAG,GAAG,IAAI,CAAC,CAAC,CAAC,CAAC;gBACpB,MAAM,GAAG,GAAG,IAAI,CAAC,GAAG,CAAC,CAAA;gBACrB,IAAI,GAAG,IAAI,OAAO,GAAG,IAAI,QAAQ,EAAE,CAAC;oBAChC,GAAG,GAAG,GAAG,CAAC,OAAO,CAAC,IAAI,MAAM,CAAC,SAAS,GAAG,IAAI,EAAE,GAAG,CAAC,EAAE,GAAG,CAAC,CAAA;gBAC7D,CAAC;YACL,CAAC;QACL,CAAC;QACD,OAAO,GAAG,CAAC;IACf,CAAC;CACJ;AAxDD,gEAwDC;AAED;;GAEG;AACH,MAAa,iBAAkB,SAAQ,mBAAQ;IAgD3C,IAAI,KAAK;QACL,OAAO,IAAI,CAAC,mBAAmB,CAAA;IACnC,CAAC;IAED,YAAa,EAAqB,EAAE,WAAgB,IAAI;QACpD,KAAK,EAAE,CAAA;QApDX;;WAEG;QACH,OAAE,GAAW,IAAI,CAAA;QAEjB;;WAEG;QACH,aAAQ,GAAW,IAAI,CAAA;QAEvB;;WAEG;QACH,SAAI,GAAW,IAAI,CAAA;QAEnB;;WAEG;QACH,aAAQ,GAAY,IAAI,CAAA;QAExB;;WAEG;QACH,gBAAW,GAAY,IAAI,CAAA;QAE3B;;WAEG;QACH,gBAAW,GAAW,IAAI,CAAA;QAE1B;;WAEG;QACH,mBAAc,GAAS,IAAI,CAAA;QAE3B;;WAEG;QACH,mBAAc,GAAS,IAAI,CAAA;QAQnB,wBAAmB,GAA4B,EAAE,CAAA;QAOrD,IAAI,CAAC,YAAY,CAAC,QAAQ,CAAC,CAAA;QAC3B,IAAI,QAAQ;YACR,IAAI,CAAC,uBAAuB,CAAC,EAAE,EAAE,QAAQ,CAAC,kBAAkB,IAAI,QAAQ,CAAC,mBAAmB,CAAC,CAAA;IACrG,CAAC;IAED;;;;;OAKG;IACI,uBAAuB,CAAC,EAAqB,EAAE,kBAA2C;QAC7F,IAAI,kBAAkB,EAAE,CAAC;YACrB,MAAM,OAAO,GAAG,EAAE,CAAC,KAAK,CAAC;YACzB,IAAI,CAAC,mBAAmB,GAAG,EAAE,CAAC;YAC9B,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,kBAAkB,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE,CAAC;gBACjD,GAAG;gBACH,MAAM,GAAG,GAAG,IAAI,qBAAqB,CAAC,kBAAkB,CAAC,CAAC,CAAC,CAAC,CAAA;gBAC5D,IAAI,CAAC,mBAAmB,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;gBAElC,MAAM,KAAK,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,KAAK,GAAG,CAAC,MAAM,CAAC,CAAA;gBACpD,IAAI,KAAK;oBACL,GAAG,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAA;YAC3B,CAAC;QACL,CAAC;IACL,CAAC;IAED;;;;;OAKG;IACI,cAAc,CAAC,IAAc;QAChC,IAAI,IAAI,CAAC,QAAQ,IAAI,IAAI,IAAI,IAAI,CAAC,SAAS,EAAE,CAAC;YAC1C,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,SAAS,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE,CAAC;gBAC7C,MAAM,YAAY,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,KAAK,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAAA;gBAC5E,IAAI,YAAY;oBACZ,OAAO,IAAI,CAAC,CAAC,oFAAoF;YACzG,CAAC;QACL,CAAC;QACD,OAAO,KAAK,CAAA;IAChB,CAAC;IAED;;;;;OAKG;IACI,cAAc,CAAC,IAAc;QAChC,IAAI,IAAI,CAAC,QAAQ,EAAE,CAAC;YAChB,OAAO,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,KAAK,IAAI,CAAC,EAAE,CAAC,IAAI,IAAI,CAAA;QACzD,CAAC;QACD,OAAO,KAAK,CAAA;IAChB,CAAC;CACJ;AA9GD,8CA8GC;AAEY,QAAA,qBAAqB,GAAG;IACjC,KAAK,EAAE,OAAO;IACd,IAAI,EAAE,MAAM;CACN,CAAC;AAKX;;GAEG;AACH,MAAa,qBAAsB,SAAQ,mBAAQ;IA2C/C,IAAW,QAAQ;QACf,OAAO,IAAI,CAAC,SAAS,CAAA;IACzB,CAAC;IAEM,iBAAiB;QACpB,OAAO,IAAI,CAAC,IAAI,CAAC,IAAI,EAAE,CAAC,WAAW,EAAE,KAAK,OAAO,CAAC,CAAC,CAAC,6BAAqB,CAAC,KAAK,CAAC,CAAC,CAAC,6BAAqB,CAAC,IAAI,CAAA;IAChH,CAAC;IAED,QAAQ,CAAC,IAAc;QACnB,IAAI,CAAC,SAAS,GAAG,IAAI,CAAA;IACzB,CAAC;IAED,YAAa,QAAa;QACtB,KAAK,EAAE,CAAC;QAvDZ;;WAEG;QACH,OAAE,GAAW,IAAI,CAAA;QAEjB;;WAEG;QACH,oBAAe,GAAW,IAAI,CAAA;QAE9B;;WAEG;QACH,WAAM,GAAW,IAAI,CAAA;QAErB;;WAEG;QACH,SAAI,GAAW,IAAI,CAAA;QAEnB;;WAEG;QACH,mBAAc,GAAS,IAAI,CAAA;QAE3B;;WAEG;QACH,mBAAc,GAAS,IAAI,CAAA;QAanB,cAAS,GAAa,IAAI,CAAA;QAe9B,IAAI,CAAC,YAAY,CAAC,QAAQ,CAAC,CAAC;IAChC,CAAC;CACJ;AA3DD,sDA2DC;AAGD;;GAEG;AACH,MAAa,gBAAiB,SAAQ,mBAAQ;IA0C1C,YAAa,QAAa;QACtB,KAAK,EAAE,CAAC;QA1CZ;;WAEG;QACH,OAAE,GAAW,IAAI,CAAA;QAEjB;;WAEG;QACH,aAAQ,GAAW,IAAI,CAAA;QAEvB;;WAEG;QACH,SAAI,GAAW,IAAI,CAAA;QAEnB;;WAEG;QACH,gBAAW,GAAW,IAAI,CAAA;QAE1B;;WAEG;QACH,sBAAiB,GAAW,IAAI,CAAA;QAEhC;;WAEG;QACH,mBAAc,GAAS,IAAI,CAAA;QAE3B;;WAEG;QACH,mBAAc,GAAS,IAAI,CAAA;QAUvB,IAAI,CAAC,YAAY,CAAC,QAAQ,CAAC,CAAC;IAChC,CAAC;CACJ;AA9CD,4CA8CC"}
|
package/dist/index.d.ts
CHANGED
|
@@ -14,6 +14,10 @@ export * from "./generic/transactionGroup";
|
|
|
14
14
|
export * from "./generic/util";
|
|
15
15
|
export * from "./generic/logging";
|
|
16
16
|
export * from "./generic/queryInfo";
|
|
17
|
+
export * from "./generic/querySQLFilters";
|
|
18
|
+
export * from "./generic/runQuerySQLFilterImplementations";
|
|
19
|
+
export * from "./generic/libraryInfo";
|
|
20
|
+
export * from "./generic/explorerNavigationItem";
|
|
17
21
|
export * from "./generic/compositeKey";
|
|
18
22
|
export * from "./generic/authEvaluator";
|
|
19
23
|
export * from "./generic/metadataUtil";
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAMA,cAAc,oBAAoB,CAAC;AACnC,cAAc,oBAAoB,CAAC;AACnC,cAAc,sBAAsB,CAAC;AACrC,cAAc,iBAAiB,CAAC;AAChC,cAAc,qBAAqB,CAAC;AACpC,cAAc,oBAAoB,CAAC;AACnC,cAAc,sBAAsB,CAAC;AACrC,cAAc,sBAAsB,CAAC;AACrC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,wBAAwB,CAAC;AACvC,cAAc,sBAAsB,CAAC;AACrC,cAAc,wBAAwB,CAAC;AACvC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,gBAAgB,CAAC;AAC/B,cAAc,mBAAmB,CAAC;AAClC,cAAc,qBAAqB,CAAC;AACpC,cAAc,wBAAwB,CAAC;AACvC,cAAc,yBAAyB,CAAC;AACxC,cAAc,wBAAwB,CAAC;AAEvC,cAAc,gCAAgC,CAAC;AAE/C,wBAAgB,WAAW,CAAC,QAAQ,KAAA,QAMnC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAMA,cAAc,oBAAoB,CAAC;AACnC,cAAc,oBAAoB,CAAC;AACnC,cAAc,sBAAsB,CAAC;AACrC,cAAc,iBAAiB,CAAC;AAChC,cAAc,qBAAqB,CAAC;AACpC,cAAc,oBAAoB,CAAC;AACnC,cAAc,sBAAsB,CAAC;AACrC,cAAc,sBAAsB,CAAC;AACrC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,wBAAwB,CAAC;AACvC,cAAc,sBAAsB,CAAC;AACrC,cAAc,wBAAwB,CAAC;AACvC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,gBAAgB,CAAC;AAC/B,cAAc,mBAAmB,CAAC;AAClC,cAAc,qBAAqB,CAAC;AACpC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,4CAA4C,CAAC;AAC3D,cAAc,uBAAuB,CAAC;AACtC,cAAc,kCAAkC,CAAC;AACjD,cAAc,wBAAwB,CAAC;AACvC,cAAc,yBAAyB,CAAC;AACxC,cAAc,wBAAwB,CAAC;AAEvC,cAAc,gCAAgC,CAAC;AAE/C,wBAAgB,WAAW,CAAC,QAAQ,KAAA,QAMnC"}
|
package/dist/index.js
CHANGED
|
@@ -36,6 +36,10 @@ __exportStar(require("./generic/transactionGroup"), exports);
|
|
|
36
36
|
__exportStar(require("./generic/util"), exports);
|
|
37
37
|
__exportStar(require("./generic/logging"), exports);
|
|
38
38
|
__exportStar(require("./generic/queryInfo"), exports);
|
|
39
|
+
__exportStar(require("./generic/querySQLFilters"), exports);
|
|
40
|
+
__exportStar(require("./generic/runQuerySQLFilterImplementations"), exports);
|
|
41
|
+
__exportStar(require("./generic/libraryInfo"), exports);
|
|
42
|
+
__exportStar(require("./generic/explorerNavigationItem"), exports);
|
|
39
43
|
__exportStar(require("./generic/compositeKey"), exports);
|
|
40
44
|
__exportStar(require("./generic/authEvaluator"), exports);
|
|
41
45
|
__exportStar(require("./generic/metadataUtil"), exports);
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AAAA,qDAAkD;AAClD,iDAA8C;AAC9C,iDAA8C;AAC9C,mDAAgD;AAChD,6CAA0C;AAE1C,qDAAmC;AACnC,qDAAmC;AACnC,uDAAqC;AACrC,kDAAgC;AAChC,sDAAoC;AACpC,qDAAmC;AACnC,uDAAqC;AACrC,uDAAqC;AACrC,4DAA0C;AAC1C,yDAAuC;AACvC,uDAAqC;AACrC,yDAAuC;AACvC,6DAA2C;AAC3C,iDAA+B;AAC/B,oDAAkC;AAClC,sDAAoC;AACpC,yDAAuC;AACvC,0DAAwC;AACxC,yDAAuC;AAEvC,iEAA+C;AAE/C,SAAgB,WAAW,CAAC,QAAQ;IAChC,mBAAQ,CAAC,QAAQ,GAAG,QAAQ,CAAC;IAC7B,uBAAU,CAAC,QAAQ,GAAG,QAAQ,CAAC;IAC/B,iBAAO,CAAC,QAAQ,GAAG,QAAQ,CAAC;IAC5B,qBAAS,CAAC,QAAQ,GAAG,QAAQ,CAAC;IAC9B,mBAAQ,CAAC,QAAQ,GAAG,QAAQ,CAAC;AACjC,CAAC;AAND,kCAMC"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AAAA,qDAAkD;AAClD,iDAA8C;AAC9C,iDAA8C;AAC9C,mDAAgD;AAChD,6CAA0C;AAE1C,qDAAmC;AACnC,qDAAmC;AACnC,uDAAqC;AACrC,kDAAgC;AAChC,sDAAoC;AACpC,qDAAmC;AACnC,uDAAqC;AACrC,uDAAqC;AACrC,4DAA0C;AAC1C,yDAAuC;AACvC,uDAAqC;AACrC,yDAAuC;AACvC,6DAA2C;AAC3C,iDAA+B;AAC/B,oDAAkC;AAClC,sDAAoC;AACpC,4DAA0C;AAC1C,6EAA2D;AAC3D,wDAAsC;AACtC,mEAAiD;AACjD,yDAAuC;AACvC,0DAAwC;AACxC,yDAAuC;AAEvC,iEAA+C;AAE/C,SAAgB,WAAW,CAAC,QAAQ;IAChC,mBAAQ,CAAC,QAAQ,GAAG,QAAQ,CAAC;IAC7B,uBAAU,CAAC,QAAQ,GAAG,QAAQ,CAAC;IAC/B,iBAAO,CAAC,QAAQ,GAAG,QAAQ,CAAC;IAC5B,qBAAS,CAAC,QAAQ,GAAG,QAAQ,CAAC;IAC9B,mBAAQ,CAAC,QAAQ,GAAG,QAAQ,CAAC;AACjC,CAAC;AAND,kCAMC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@memberjunction/core",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.74.0",
|
|
4
4
|
"description": "MemberJunction: Core Library including Metadata, Application, Entity Retrieval and Manipulation, and Utilities",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"@types/debug": "^4.1.12"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@memberjunction/global": "2.
|
|
23
|
+
"@memberjunction/global": "2.74.0",
|
|
24
24
|
"rxjs": "^7.8.1",
|
|
25
25
|
"zod": "^3.23.8",
|
|
26
26
|
"debug": "^4.4.0"
|