@memberjunction/core-entities 0.9.112 → 0.9.121

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.
@@ -6831,6 +6831,21 @@ export declare class ConversationEntity extends BaseEntity {
6831
6831
  get Type(): string;
6832
6832
  set Type(value: string);
6833
6833
  /**
6834
+ * * Field Name: LinkedEntityID
6835
+ * * Display Name: Linked Entity ID
6836
+ * * SQL Data Type: int
6837
+ * * Related Entity: Entities
6838
+ */
6839
+ get LinkedEntityID(): number;
6840
+ set LinkedEntityID(value: number);
6841
+ /**
6842
+ * * Field Name: LinkedRecordID
6843
+ * * Display Name: Linked Record ID
6844
+ * * SQL Data Type: int
6845
+ */
6846
+ get LinkedRecordID(): number;
6847
+ set LinkedRecordID(value: number);
6848
+ /**
6834
6849
  * * Field Name: CreatedAt
6835
6850
  * * Display Name: Created At
6836
6851
  * * SQL Data Type: datetime
@@ -6850,6 +6865,12 @@ export declare class ConversationEntity extends BaseEntity {
6850
6865
  * * SQL Data Type: nvarchar(100)
6851
6866
  */
6852
6867
  get User(): string;
6868
+ /**
6869
+ * * Field Name: LinkedEntity
6870
+ * * Display Name: Linked Entity
6871
+ * * SQL Data Type: nvarchar(255)
6872
+ */
6873
+ get LinkedEntity(): string;
6853
6874
  }
6854
6875
  /**
6855
6876
  * User Notifications - strongly typed entity sub-class
@@ -7871,3 +7892,540 @@ export declare class QueryPermissionEntity extends BaseEntity {
7871
7892
  */
7872
7893
  get UpdatedAt(): Date;
7873
7894
  }
7895
+ /**
7896
+ * Vector Indexes - strongly typed entity sub-class
7897
+ * * Schema: admin
7898
+ * * Base Table: VectorIndex
7899
+ * * Base View: vwVectorIndexes
7900
+ * * Primary Key: ID
7901
+ * @extends {BaseEntity}
7902
+ * @class
7903
+ * @public
7904
+ */
7905
+ export declare class VectorIndexEntity extends BaseEntity {
7906
+ /**
7907
+ * Loads the Vector Indexes record from the database
7908
+ * @param ID: Number - primary key value to load the Vector Indexes record.
7909
+ * @param EntityRelationshipsToLoad - (optional) the relationships to load
7910
+ * @returns {Promise<boolean>} - true if successful, false otherwise
7911
+ * @public
7912
+ * @async
7913
+ * @memberof VectorIndexEntity
7914
+ * @method
7915
+ * @override
7916
+ */
7917
+ Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
7918
+ /**
7919
+ * Vector Indexes - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
7920
+ * @public
7921
+ * @method
7922
+ * @override
7923
+ * @memberof VectorIndexEntity
7924
+ * @throws {Error} - Delete is not allowed for Vector Indexes, to enable it set AllowDeleteAPI to 1 in the database.
7925
+ */
7926
+ Delete(): Promise<boolean>;
7927
+ /**
7928
+ * * Field Name: ID
7929
+ * * Display Name: ID
7930
+ * * SQL Data Type: int
7931
+ */
7932
+ get ID(): number;
7933
+ /**
7934
+ * * Field Name: Name
7935
+ * * Display Name: Name
7936
+ * * SQL Data Type: nvarchar(255)
7937
+ */
7938
+ get Name(): string;
7939
+ set Name(value: string);
7940
+ /**
7941
+ * * Field Name: Description
7942
+ * * Display Name: Description
7943
+ * * SQL Data Type: nvarchar(MAX)
7944
+ */
7945
+ get Description(): string;
7946
+ set Description(value: string);
7947
+ /**
7948
+ * * Field Name: VectorDatabaseID
7949
+ * * Display Name: Vector Database ID
7950
+ * * SQL Data Type: int
7951
+ * * Related Entity: Vector Databases
7952
+ */
7953
+ get VectorDatabaseID(): number;
7954
+ set VectorDatabaseID(value: number);
7955
+ /**
7956
+ * * Field Name: EmbeddingModelID
7957
+ * * Display Name: Embedding Model ID
7958
+ * * SQL Data Type: int
7959
+ * * Related Entity: AI Models
7960
+ */
7961
+ get EmbeddingModelID(): number;
7962
+ set EmbeddingModelID(value: number);
7963
+ /**
7964
+ * * Field Name: CreatedAt
7965
+ * * Display Name: Created At
7966
+ * * SQL Data Type: datetime
7967
+ * * Default Value: getdate()
7968
+ */
7969
+ get CreatedAt(): Date;
7970
+ /**
7971
+ * * Field Name: UpdatedAt
7972
+ * * Display Name: Updated At
7973
+ * * SQL Data Type: datetime
7974
+ * * Default Value: getdate()
7975
+ */
7976
+ get UpdatedAt(): Date;
7977
+ /**
7978
+ * * Field Name: VectorDatabase
7979
+ * * Display Name: Vector Database
7980
+ * * SQL Data Type: nvarchar(100)
7981
+ */
7982
+ get VectorDatabase(): string;
7983
+ /**
7984
+ * * Field Name: EmbeddingModel
7985
+ * * Display Name: Embedding Model
7986
+ * * SQL Data Type: nvarchar(50)
7987
+ */
7988
+ get EmbeddingModel(): string;
7989
+ }
7990
+ /**
7991
+ * Entity Document Types - strongly typed entity sub-class
7992
+ * * Schema: admin
7993
+ * * Base Table: EntityDocumentType
7994
+ * * Base View: vwEntityDocumentTypes
7995
+ * * Primary Key: ID
7996
+ * @extends {BaseEntity}
7997
+ * @class
7998
+ * @public
7999
+ */
8000
+ export declare class EntityDocumentTypeEntity extends BaseEntity {
8001
+ /**
8002
+ * Loads the Entity Document Types record from the database
8003
+ * @param ID: Number - primary key value to load the Entity Document Types record.
8004
+ * @param EntityRelationshipsToLoad - (optional) the relationships to load
8005
+ * @returns {Promise<boolean>} - true if successful, false otherwise
8006
+ * @public
8007
+ * @async
8008
+ * @memberof EntityDocumentTypeEntity
8009
+ * @method
8010
+ * @override
8011
+ */
8012
+ Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
8013
+ /**
8014
+ * Entity Document Types - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
8015
+ * @public
8016
+ * @method
8017
+ * @override
8018
+ * @memberof EntityDocumentTypeEntity
8019
+ * @throws {Error} - Delete is not allowed for Entity Document Types, to enable it set AllowDeleteAPI to 1 in the database.
8020
+ */
8021
+ Delete(): Promise<boolean>;
8022
+ /**
8023
+ * * Field Name: ID
8024
+ * * Display Name: ID
8025
+ * * SQL Data Type: int
8026
+ */
8027
+ get ID(): number;
8028
+ /**
8029
+ * * Field Name: Name
8030
+ * * Display Name: Name
8031
+ * * SQL Data Type: nvarchar(100)
8032
+ */
8033
+ get Name(): string;
8034
+ set Name(value: string);
8035
+ /**
8036
+ * * Field Name: Description
8037
+ * * Display Name: Description
8038
+ * * SQL Data Type: nvarchar(MAX)
8039
+ */
8040
+ get Description(): string;
8041
+ set Description(value: string);
8042
+ /**
8043
+ * * Field Name: CreatedAt
8044
+ * * Display Name: Created At
8045
+ * * SQL Data Type: datetime
8046
+ * * Default Value: getdate()
8047
+ */
8048
+ get CreatedAt(): Date;
8049
+ /**
8050
+ * * Field Name: UpdatedAt
8051
+ * * Display Name: Updated At
8052
+ * * SQL Data Type: datetime
8053
+ * * Default Value: getdate()
8054
+ */
8055
+ get UpdatedAt(): Date;
8056
+ }
8057
+ /**
8058
+ * Entity Document Runs - strongly typed entity sub-class
8059
+ * * Schema: admin
8060
+ * * Base Table: EntityDocumentRun
8061
+ * * Base View: vwEntityDocumentRuns
8062
+ * * Primary Key: ID
8063
+ * @extends {BaseEntity}
8064
+ * @class
8065
+ * @public
8066
+ */
8067
+ export declare class EntityDocumentRunEntity extends BaseEntity {
8068
+ /**
8069
+ * Loads the Entity Document Runs record from the database
8070
+ * @param ID: Number - primary key value to load the Entity Document Runs record.
8071
+ * @param EntityRelationshipsToLoad - (optional) the relationships to load
8072
+ * @returns {Promise<boolean>} - true if successful, false otherwise
8073
+ * @public
8074
+ * @async
8075
+ * @memberof EntityDocumentRunEntity
8076
+ * @method
8077
+ * @override
8078
+ */
8079
+ Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
8080
+ /**
8081
+ * Entity Document Runs - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
8082
+ * @public
8083
+ * @method
8084
+ * @override
8085
+ * @memberof EntityDocumentRunEntity
8086
+ * @throws {Error} - Delete is not allowed for Entity Document Runs, to enable it set AllowDeleteAPI to 1 in the database.
8087
+ */
8088
+ Delete(): Promise<boolean>;
8089
+ /**
8090
+ * * Field Name: ID
8091
+ * * Display Name: ID
8092
+ * * SQL Data Type: int
8093
+ */
8094
+ get ID(): number;
8095
+ /**
8096
+ * * Field Name: EntityDocumentID
8097
+ * * Display Name: Entity Document ID
8098
+ * * SQL Data Type: int
8099
+ * * Related Entity: Entity Documents
8100
+ */
8101
+ get EntityDocumentID(): number;
8102
+ set EntityDocumentID(value: number);
8103
+ /**
8104
+ * * Field Name: StartedAt
8105
+ * * Display Name: Started At
8106
+ * * SQL Data Type: datetime
8107
+ */
8108
+ get StartedAt(): Date;
8109
+ set StartedAt(value: Date);
8110
+ /**
8111
+ * * Field Name: EndedAt
8112
+ * * Display Name: Ended At
8113
+ * * SQL Data Type: datetime
8114
+ */
8115
+ get EndedAt(): Date;
8116
+ set EndedAt(value: Date);
8117
+ /**
8118
+ * * Field Name: Status
8119
+ * * Display Name: Status
8120
+ * * SQL Data Type: nvarchar(15)
8121
+ * * Default Value: N'Pending'
8122
+ */
8123
+ get Status(): string;
8124
+ set Status(value: string);
8125
+ /**
8126
+ * * Field Name: CreatedAt
8127
+ * * Display Name: Created At
8128
+ * * SQL Data Type: datetime
8129
+ * * Default Value: getdate()
8130
+ */
8131
+ get CreatedAt(): Date;
8132
+ /**
8133
+ * * Field Name: UpdatedAt
8134
+ * * Display Name: Updated At
8135
+ * * SQL Data Type: datetime
8136
+ * * Default Value: getdate()
8137
+ */
8138
+ get UpdatedAt(): Date;
8139
+ /**
8140
+ * * Field Name: EntityDocument
8141
+ * * Display Name: Entity Document
8142
+ * * SQL Data Type: nvarchar(250)
8143
+ */
8144
+ get EntityDocument(): string;
8145
+ }
8146
+ /**
8147
+ * Vector Databases - strongly typed entity sub-class
8148
+ * * Schema: admin
8149
+ * * Base Table: VectorDatabase
8150
+ * * Base View: vwVectorDatabases
8151
+ * * Primary Key: ID
8152
+ * @extends {BaseEntity}
8153
+ * @class
8154
+ * @public
8155
+ */
8156
+ export declare class VectorDatabaseEntity extends BaseEntity {
8157
+ /**
8158
+ * Loads the Vector Databases record from the database
8159
+ * @param ID: Number - primary key value to load the Vector Databases record.
8160
+ * @param EntityRelationshipsToLoad - (optional) the relationships to load
8161
+ * @returns {Promise<boolean>} - true if successful, false otherwise
8162
+ * @public
8163
+ * @async
8164
+ * @memberof VectorDatabaseEntity
8165
+ * @method
8166
+ * @override
8167
+ */
8168
+ Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
8169
+ /**
8170
+ * Vector Databases - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
8171
+ * @public
8172
+ * @method
8173
+ * @override
8174
+ * @memberof VectorDatabaseEntity
8175
+ * @throws {Error} - Delete is not allowed for Vector Databases, to enable it set AllowDeleteAPI to 1 in the database.
8176
+ */
8177
+ Delete(): Promise<boolean>;
8178
+ /**
8179
+ * * Field Name: ID
8180
+ * * Display Name: ID
8181
+ * * SQL Data Type: int
8182
+ */
8183
+ get ID(): number;
8184
+ /**
8185
+ * * Field Name: Name
8186
+ * * Display Name: Name
8187
+ * * SQL Data Type: nvarchar(100)
8188
+ */
8189
+ get Name(): string;
8190
+ set Name(value: string);
8191
+ /**
8192
+ * * Field Name: Description
8193
+ * * Display Name: Description
8194
+ * * SQL Data Type: nvarchar(MAX)
8195
+ */
8196
+ get Description(): string;
8197
+ set Description(value: string);
8198
+ /**
8199
+ * * Field Name: DefaultURL
8200
+ * * Display Name: Default URL
8201
+ * * SQL Data Type: nvarchar(255)
8202
+ */
8203
+ get DefaultURL(): string;
8204
+ set DefaultURL(value: string);
8205
+ /**
8206
+ * * Field Name: ClassKey
8207
+ * * Display Name: Class Key
8208
+ * * SQL Data Type: nvarchar(100)
8209
+ */
8210
+ get ClassKey(): string;
8211
+ set ClassKey(value: string);
8212
+ /**
8213
+ * * Field Name: CreatedAt
8214
+ * * Display Name: Created At
8215
+ * * SQL Data Type: datetime
8216
+ * * Default Value: getdate()
8217
+ */
8218
+ get CreatedAt(): Date;
8219
+ /**
8220
+ * * Field Name: UpdatedAt
8221
+ * * Display Name: Updated At
8222
+ * * SQL Data Type: datetime
8223
+ * * Default Value: getdate()
8224
+ */
8225
+ get UpdatedAt(): Date;
8226
+ }
8227
+ /**
8228
+ * Entity Record Documents - strongly typed entity sub-class
8229
+ * * Schema: admin
8230
+ * * Base Table: EntityRecordDocument
8231
+ * * Base View: vwEntityRecordDocuments
8232
+ * * Primary Key: ID
8233
+ * @extends {BaseEntity}
8234
+ * @class
8235
+ * @public
8236
+ */
8237
+ export declare class EntityRecordDocumentEntity extends BaseEntity {
8238
+ /**
8239
+ * Loads the Entity Record Documents record from the database
8240
+ * @param ID: Number - primary key value to load the Entity Record Documents record.
8241
+ * @param EntityRelationshipsToLoad - (optional) the relationships to load
8242
+ * @returns {Promise<boolean>} - true if successful, false otherwise
8243
+ * @public
8244
+ * @async
8245
+ * @memberof EntityRecordDocumentEntity
8246
+ * @method
8247
+ * @override
8248
+ */
8249
+ Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
8250
+ /**
8251
+ * Entity Record Documents - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
8252
+ * @public
8253
+ * @method
8254
+ * @override
8255
+ * @memberof EntityRecordDocumentEntity
8256
+ * @throws {Error} - Delete is not allowed for Entity Record Documents, to enable it set AllowDeleteAPI to 1 in the database.
8257
+ */
8258
+ Delete(): Promise<boolean>;
8259
+ /**
8260
+ * * Field Name: ID
8261
+ * * Display Name: ID
8262
+ * * SQL Data Type: int
8263
+ */
8264
+ get ID(): number;
8265
+ /**
8266
+ * * Field Name: EntityID
8267
+ * * Display Name: Entity ID
8268
+ * * SQL Data Type: int
8269
+ */
8270
+ get EntityID(): number;
8271
+ set EntityID(value: number);
8272
+ /**
8273
+ * * Field Name: RecordID
8274
+ * * Display Name: Record ID
8275
+ * * SQL Data Type: nvarchar(255)
8276
+ */
8277
+ get RecordID(): string;
8278
+ set RecordID(value: string);
8279
+ /**
8280
+ * * Field Name: DocumentText
8281
+ * * Display Name: Document Text
8282
+ * * SQL Data Type: nvarchar(MAX)
8283
+ */
8284
+ get DocumentText(): string;
8285
+ set DocumentText(value: string);
8286
+ /**
8287
+ * * Field Name: VectorIndexID
8288
+ * * Display Name: Vector Index ID
8289
+ * * SQL Data Type: int
8290
+ */
8291
+ get VectorIndexID(): number;
8292
+ set VectorIndexID(value: number);
8293
+ /**
8294
+ * * Field Name: VectorID
8295
+ * * Display Name: Vector ID
8296
+ * * SQL Data Type: nvarchar(50)
8297
+ */
8298
+ get VectorID(): string;
8299
+ set VectorID(value: string);
8300
+ /**
8301
+ * * Field Name: VectorJSON
8302
+ * * Display Name: Vector JSON
8303
+ * * SQL Data Type: nvarchar(MAX)
8304
+ */
8305
+ get VectorJSON(): string;
8306
+ set VectorJSON(value: string);
8307
+ /**
8308
+ * * Field Name: EntityRecordUpdatedAt
8309
+ * * Display Name: Entity Record Updated At
8310
+ * * SQL Data Type: datetime
8311
+ */
8312
+ get EntityRecordUpdatedAt(): Date;
8313
+ set EntityRecordUpdatedAt(value: Date);
8314
+ /**
8315
+ * * Field Name: CreatedAt
8316
+ * * Display Name: Created At
8317
+ * * SQL Data Type: datetime
8318
+ * * Default Value: getdate()
8319
+ */
8320
+ get CreatedAt(): Date;
8321
+ /**
8322
+ * * Field Name: UpdatedAt
8323
+ * * Display Name: Updated At
8324
+ * * SQL Data Type: datetime
8325
+ * * Default Value: getdate()
8326
+ */
8327
+ get UpdatedAt(): Date;
8328
+ }
8329
+ /**
8330
+ * Entity Documents - strongly typed entity sub-class
8331
+ * * Schema: admin
8332
+ * * Base Table: EntityDocument
8333
+ * * Base View: vwEntityDocuments
8334
+ * * Primary Key: ID
8335
+ * @extends {BaseEntity}
8336
+ * @class
8337
+ * @public
8338
+ */
8339
+ export declare class EntityDocumentEntity extends BaseEntity {
8340
+ /**
8341
+ * Loads the Entity Documents record from the database
8342
+ * @param ID: Number - primary key value to load the Entity Documents record.
8343
+ * @param EntityRelationshipsToLoad - (optional) the relationships to load
8344
+ * @returns {Promise<boolean>} - true if successful, false otherwise
8345
+ * @public
8346
+ * @async
8347
+ * @memberof EntityDocumentEntity
8348
+ * @method
8349
+ * @override
8350
+ */
8351
+ Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
8352
+ /**
8353
+ * Entity Documents - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
8354
+ * @public
8355
+ * @method
8356
+ * @override
8357
+ * @memberof EntityDocumentEntity
8358
+ * @throws {Error} - Delete is not allowed for Entity Documents, to enable it set AllowDeleteAPI to 1 in the database.
8359
+ */
8360
+ Delete(): Promise<boolean>;
8361
+ /**
8362
+ * * Field Name: ID
8363
+ * * Display Name: ID
8364
+ * * SQL Data Type: int
8365
+ */
8366
+ get ID(): number;
8367
+ /**
8368
+ * * Field Name: Name
8369
+ * * Display Name: Name
8370
+ * * SQL Data Type: nvarchar(250)
8371
+ */
8372
+ get Name(): string;
8373
+ set Name(value: string);
8374
+ /**
8375
+ * * Field Name: EntityID
8376
+ * * Display Name: Entity ID
8377
+ * * SQL Data Type: int
8378
+ * * Related Entity: Entities
8379
+ */
8380
+ get EntityID(): number;
8381
+ set EntityID(value: number);
8382
+ /**
8383
+ * * Field Name: TypeID
8384
+ * * Display Name: Type ID
8385
+ * * SQL Data Type: int
8386
+ * * Related Entity: Entity Document Types
8387
+ */
8388
+ get TypeID(): number;
8389
+ set TypeID(value: number);
8390
+ /**
8391
+ * * Field Name: Status
8392
+ * * Display Name: Status
8393
+ * * SQL Data Type: nvarchar(15)
8394
+ * * Default Value: N'Pending'
8395
+ */
8396
+ get Status(): string;
8397
+ set Status(value: string);
8398
+ /**
8399
+ * * Field Name: Template
8400
+ * * Display Name: Template
8401
+ * * SQL Data Type: nvarchar(MAX)
8402
+ */
8403
+ get Template(): string;
8404
+ set Template(value: string);
8405
+ /**
8406
+ * * Field Name: CreatedAt
8407
+ * * Display Name: Created At
8408
+ * * SQL Data Type: datetime
8409
+ * * Default Value: getdate()
8410
+ */
8411
+ get CreatedAt(): Date;
8412
+ /**
8413
+ * * Field Name: UpdatedAt
8414
+ * * Display Name: Updated At
8415
+ * * SQL Data Type: datetime
8416
+ * * Default Value: getdate()
8417
+ */
8418
+ get UpdatedAt(): Date;
8419
+ /**
8420
+ * * Field Name: Entity
8421
+ * * Display Name: Entity
8422
+ * * SQL Data Type: nvarchar(255)
8423
+ */
8424
+ get Entity(): string;
8425
+ /**
8426
+ * * Field Name: Type
8427
+ * * Display Name: Type
8428
+ * * SQL Data Type: nvarchar(100)
8429
+ */
8430
+ get Type(): string;
8431
+ }