@memberjunction/server 2.26.0 → 2.27.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/generated/generated.d.ts +1821 -1815
- package/dist/generated/generated.d.ts.map +1 -1
- package/dist/generated/generated.js +1373 -1330
- package/dist/generated/generated.js.map +1 -1
- package/dist/generic/ResolverBase.d.ts +2 -1
- package/dist/generic/ResolverBase.d.ts.map +1 -1
- package/dist/generic/ResolverBase.js +16 -4
- package/dist/generic/ResolverBase.js.map +1 -1
- package/package.json +22 -22
- package/src/generated/generated.ts +3041 -3015
- package/src/generic/ResolverBase.ts +19 -3
|
@@ -21,35 +21,35 @@ export declare class ScheduledAction_ {
|
|
|
21
21
|
ScheduledActionParams_ScheduledActionIDArray: ScheduledActionParam_[];
|
|
22
22
|
}
|
|
23
23
|
export declare class CreateScheduledActionInput {
|
|
24
|
-
Name
|
|
25
|
-
Description
|
|
26
|
-
CreatedByUserID
|
|
27
|
-
ActionID
|
|
28
|
-
Type
|
|
29
|
-
CronExpression
|
|
30
|
-
Timezone
|
|
31
|
-
Status
|
|
32
|
-
IntervalDays
|
|
33
|
-
DayOfWeek
|
|
34
|
-
DayOfMonth
|
|
35
|
-
Month
|
|
36
|
-
CustomCronExpression
|
|
24
|
+
Name?: string;
|
|
25
|
+
Description: string | null;
|
|
26
|
+
CreatedByUserID?: string;
|
|
27
|
+
ActionID?: string;
|
|
28
|
+
Type?: string;
|
|
29
|
+
CronExpression: string | null;
|
|
30
|
+
Timezone?: string;
|
|
31
|
+
Status?: string;
|
|
32
|
+
IntervalDays: number | null;
|
|
33
|
+
DayOfWeek: string | null;
|
|
34
|
+
DayOfMonth: number | null;
|
|
35
|
+
Month: string | null;
|
|
36
|
+
CustomCronExpression: string | null;
|
|
37
37
|
}
|
|
38
38
|
export declare class UpdateScheduledActionInput {
|
|
39
39
|
ID: string;
|
|
40
|
-
Name
|
|
41
|
-
Description?: string;
|
|
42
|
-
CreatedByUserID
|
|
43
|
-
ActionID
|
|
44
|
-
Type
|
|
45
|
-
CronExpression?: string;
|
|
46
|
-
Timezone
|
|
47
|
-
Status
|
|
48
|
-
IntervalDays?: number;
|
|
49
|
-
DayOfWeek?: string;
|
|
50
|
-
DayOfMonth?: number;
|
|
51
|
-
Month?: string;
|
|
52
|
-
CustomCronExpression?: string;
|
|
40
|
+
Name?: string;
|
|
41
|
+
Description?: string | null;
|
|
42
|
+
CreatedByUserID?: string;
|
|
43
|
+
ActionID?: string;
|
|
44
|
+
Type?: string;
|
|
45
|
+
CronExpression?: string | null;
|
|
46
|
+
Timezone?: string;
|
|
47
|
+
Status?: string;
|
|
48
|
+
IntervalDays?: number | null;
|
|
49
|
+
DayOfWeek?: string | null;
|
|
50
|
+
DayOfMonth?: number | null;
|
|
51
|
+
Month?: string | null;
|
|
52
|
+
CustomCronExpression?: string | null;
|
|
53
53
|
OldValues___?: KeyValuePairInput[];
|
|
54
54
|
}
|
|
55
55
|
export declare class RunScheduledActionViewResult {
|
|
@@ -84,19 +84,19 @@ export declare class ScheduledActionParam_ {
|
|
|
84
84
|
ActionParam: string;
|
|
85
85
|
}
|
|
86
86
|
export declare class CreateScheduledActionParamInput {
|
|
87
|
-
ScheduledActionID
|
|
88
|
-
ActionParamID
|
|
89
|
-
ValueType
|
|
90
|
-
Value
|
|
91
|
-
Comments
|
|
87
|
+
ScheduledActionID?: string;
|
|
88
|
+
ActionParamID?: string;
|
|
89
|
+
ValueType?: string;
|
|
90
|
+
Value: string | null;
|
|
91
|
+
Comments: string | null;
|
|
92
92
|
}
|
|
93
93
|
export declare class UpdateScheduledActionParamInput {
|
|
94
94
|
ID: string;
|
|
95
|
-
ScheduledActionID
|
|
96
|
-
ActionParamID
|
|
97
|
-
ValueType
|
|
98
|
-
Value?: string;
|
|
99
|
-
Comments?: string;
|
|
95
|
+
ScheduledActionID?: string;
|
|
96
|
+
ActionParamID?: string;
|
|
97
|
+
ValueType?: string;
|
|
98
|
+
Value?: string | null;
|
|
99
|
+
Comments?: string | null;
|
|
100
100
|
OldValues___?: KeyValuePairInput[];
|
|
101
101
|
}
|
|
102
102
|
export declare class RunScheduledActionParamViewResult {
|
|
@@ -132,27 +132,27 @@ export declare class ExplorerNavigationItem_ {
|
|
|
132
132
|
_mj__UpdatedAt: Date;
|
|
133
133
|
}
|
|
134
134
|
export declare class CreateExplorerNavigationItemInput {
|
|
135
|
-
Sequence
|
|
136
|
-
Name
|
|
137
|
-
Route
|
|
138
|
-
IsActive
|
|
139
|
-
ShowInHomeScreen
|
|
140
|
-
ShowInNavigationDrawer
|
|
141
|
-
IconCSSClass
|
|
142
|
-
Description
|
|
143
|
-
Comments
|
|
135
|
+
Sequence?: number;
|
|
136
|
+
Name?: string;
|
|
137
|
+
Route?: string;
|
|
138
|
+
IsActive?: boolean;
|
|
139
|
+
ShowInHomeScreen?: boolean;
|
|
140
|
+
ShowInNavigationDrawer?: boolean;
|
|
141
|
+
IconCSSClass: string | null;
|
|
142
|
+
Description: string | null;
|
|
143
|
+
Comments: string | null;
|
|
144
144
|
}
|
|
145
145
|
export declare class UpdateExplorerNavigationItemInput {
|
|
146
146
|
ID: string;
|
|
147
|
-
Sequence
|
|
148
|
-
Name
|
|
149
|
-
Route
|
|
150
|
-
IsActive
|
|
151
|
-
ShowInHomeScreen
|
|
152
|
-
ShowInNavigationDrawer
|
|
153
|
-
IconCSSClass?: string;
|
|
154
|
-
Description?: string;
|
|
155
|
-
Comments?: string;
|
|
147
|
+
Sequence?: number;
|
|
148
|
+
Name?: string;
|
|
149
|
+
Route?: string;
|
|
150
|
+
IsActive?: boolean;
|
|
151
|
+
ShowInHomeScreen?: boolean;
|
|
152
|
+
ShowInNavigationDrawer?: boolean;
|
|
153
|
+
IconCSSClass?: string | null;
|
|
154
|
+
Description?: string | null;
|
|
155
|
+
Comments?: string | null;
|
|
156
156
|
OldValues___?: KeyValuePairInput[];
|
|
157
157
|
}
|
|
158
158
|
export declare class RunExplorerNavigationItemViewResult {
|
|
@@ -185,17 +185,17 @@ export declare class AIAgentModel_ {
|
|
|
185
185
|
Model?: string;
|
|
186
186
|
}
|
|
187
187
|
export declare class CreateAIAgentModelInput {
|
|
188
|
-
AgentID
|
|
189
|
-
ModelID
|
|
190
|
-
Active
|
|
191
|
-
Priority
|
|
188
|
+
AgentID: string | null;
|
|
189
|
+
ModelID: string | null;
|
|
190
|
+
Active: boolean | null;
|
|
191
|
+
Priority: number | null;
|
|
192
192
|
}
|
|
193
193
|
export declare class UpdateAIAgentModelInput {
|
|
194
194
|
ID: string;
|
|
195
|
-
AgentID?: string;
|
|
196
|
-
ModelID?: string;
|
|
197
|
-
Active?: boolean;
|
|
198
|
-
Priority?: number;
|
|
195
|
+
AgentID?: string | null;
|
|
196
|
+
ModelID?: string | null;
|
|
197
|
+
Active?: boolean | null;
|
|
198
|
+
Priority?: number | null;
|
|
199
199
|
OldValues___?: KeyValuePairInput[];
|
|
200
200
|
}
|
|
201
201
|
export declare class RunAIAgentModelViewResult {
|
|
@@ -225,13 +225,13 @@ export declare class AIAgentNoteType_ {
|
|
|
225
225
|
AIAgentNotes_AgentNoteTypeIDArray: AIAgentNote_[];
|
|
226
226
|
}
|
|
227
227
|
export declare class CreateAIAgentNoteTypeInput {
|
|
228
|
-
Name
|
|
229
|
-
Description
|
|
228
|
+
Name: string | null;
|
|
229
|
+
Description: string | null;
|
|
230
230
|
}
|
|
231
231
|
export declare class UpdateAIAgentNoteTypeInput {
|
|
232
232
|
ID: string;
|
|
233
|
-
Name?: string;
|
|
234
|
-
Description?: string;
|
|
233
|
+
Name?: string | null;
|
|
234
|
+
Description?: string | null;
|
|
235
235
|
OldValues___?: KeyValuePairInput[];
|
|
236
236
|
}
|
|
237
237
|
export declare class RunAIAgentNoteTypeViewResult {
|
|
@@ -253,6 +253,63 @@ export declare class AIAgentNoteTypeResolver extends ResolverBase {
|
|
|
253
253
|
UpdateAIAgentNoteType(input: UpdateAIAgentNoteTypeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
254
254
|
DeleteAIAgentNoteType(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
255
255
|
}
|
|
256
|
+
export declare class flyway_schema_history_ {
|
|
257
|
+
installed_rank: number;
|
|
258
|
+
version?: string;
|
|
259
|
+
description?: string;
|
|
260
|
+
type: string;
|
|
261
|
+
script: string;
|
|
262
|
+
checksum?: number;
|
|
263
|
+
installed_by: string;
|
|
264
|
+
installed_on: Date;
|
|
265
|
+
execution_time: number;
|
|
266
|
+
success: boolean;
|
|
267
|
+
_mj__CreatedAt: Date;
|
|
268
|
+
_mj__UpdatedAt: Date;
|
|
269
|
+
}
|
|
270
|
+
export declare class Createflyway_schema_historyInput {
|
|
271
|
+
installed_rank: number;
|
|
272
|
+
version: string | null;
|
|
273
|
+
description: string | null;
|
|
274
|
+
type?: string;
|
|
275
|
+
script?: string;
|
|
276
|
+
checksum: number | null;
|
|
277
|
+
installed_by?: string;
|
|
278
|
+
installed_on?: Date;
|
|
279
|
+
execution_time?: number;
|
|
280
|
+
success?: boolean;
|
|
281
|
+
}
|
|
282
|
+
export declare class Updateflyway_schema_historyInput {
|
|
283
|
+
installed_rank: number;
|
|
284
|
+
version?: string | null;
|
|
285
|
+
description?: string | null;
|
|
286
|
+
type?: string;
|
|
287
|
+
script?: string;
|
|
288
|
+
checksum?: number | null;
|
|
289
|
+
installed_by?: string;
|
|
290
|
+
installed_on?: Date;
|
|
291
|
+
execution_time?: number;
|
|
292
|
+
success?: boolean;
|
|
293
|
+
OldValues___?: KeyValuePairInput[];
|
|
294
|
+
}
|
|
295
|
+
export declare class Runflyway_schema_historyViewResult {
|
|
296
|
+
Results: flyway_schema_history_[];
|
|
297
|
+
UserViewRunID?: string;
|
|
298
|
+
RowCount: number;
|
|
299
|
+
TotalRowCount: number;
|
|
300
|
+
ExecutionTime: number;
|
|
301
|
+
ErrorMessage?: string;
|
|
302
|
+
Success: boolean;
|
|
303
|
+
}
|
|
304
|
+
export declare class flyway_schema_historyResolver extends ResolverBase {
|
|
305
|
+
Runflyway_schema_historyViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
306
|
+
Runflyway_schema_historyViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
307
|
+
Runflyway_schema_historyDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
308
|
+
flyway_schema_history(installed_rank: number, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<flyway_schema_history_ | null>;
|
|
309
|
+
Createflyway_schema_history(input: Createflyway_schema_historyInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
310
|
+
Updateflyway_schema_history(input: Updateflyway_schema_historyInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
311
|
+
Deleteflyway_schema_history(installed_rank: number, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
312
|
+
}
|
|
256
313
|
export declare class AIAgent_ {
|
|
257
314
|
ID: string;
|
|
258
315
|
Name?: string;
|
|
@@ -267,15 +324,15 @@ export declare class AIAgent_ {
|
|
|
267
324
|
AIAgentNotes_AgentIDArray: AIAgentNote_[];
|
|
268
325
|
}
|
|
269
326
|
export declare class CreateAIAgentInput {
|
|
270
|
-
Name
|
|
271
|
-
Description
|
|
272
|
-
LogoURL
|
|
327
|
+
Name: string | null;
|
|
328
|
+
Description: string | null;
|
|
329
|
+
LogoURL: string | null;
|
|
273
330
|
}
|
|
274
331
|
export declare class UpdateAIAgentInput {
|
|
275
332
|
ID: string;
|
|
276
|
-
Name?: string;
|
|
277
|
-
Description?: string;
|
|
278
|
-
LogoURL?: string;
|
|
333
|
+
Name?: string | null;
|
|
334
|
+
Description?: string | null;
|
|
335
|
+
LogoURL?: string | null;
|
|
279
336
|
OldValues___?: KeyValuePairInput[];
|
|
280
337
|
}
|
|
281
338
|
export declare class RunAIAgentViewResult {
|
|
@@ -315,19 +372,19 @@ export declare class AIAgentNote_ {
|
|
|
315
372
|
User?: string;
|
|
316
373
|
}
|
|
317
374
|
export declare class CreateAIAgentNoteInput {
|
|
318
|
-
AgentID
|
|
319
|
-
AgentNoteTypeID
|
|
320
|
-
Note
|
|
321
|
-
Type
|
|
322
|
-
UserID
|
|
375
|
+
AgentID: string | null;
|
|
376
|
+
AgentNoteTypeID: string | null;
|
|
377
|
+
Note: string | null;
|
|
378
|
+
Type?: string;
|
|
379
|
+
UserID: string | null;
|
|
323
380
|
}
|
|
324
381
|
export declare class UpdateAIAgentNoteInput {
|
|
325
382
|
ID: string;
|
|
326
|
-
AgentID?: string;
|
|
327
|
-
AgentNoteTypeID?: string;
|
|
328
|
-
Note?: string;
|
|
329
|
-
Type
|
|
330
|
-
UserID?: string;
|
|
383
|
+
AgentID?: string | null;
|
|
384
|
+
AgentNoteTypeID?: string | null;
|
|
385
|
+
Note?: string | null;
|
|
386
|
+
Type?: string;
|
|
387
|
+
UserID?: string | null;
|
|
331
388
|
OldValues___?: KeyValuePairInput[];
|
|
332
389
|
}
|
|
333
390
|
export declare class RunAIAgentNoteViewResult {
|
|
@@ -359,15 +416,15 @@ export declare class AIAgentAction_ {
|
|
|
359
416
|
Action?: string;
|
|
360
417
|
}
|
|
361
418
|
export declare class CreateAIAgentActionInput {
|
|
362
|
-
AgentID
|
|
363
|
-
ActionID
|
|
364
|
-
Status
|
|
419
|
+
AgentID: string | null;
|
|
420
|
+
ActionID: string | null;
|
|
421
|
+
Status?: string;
|
|
365
422
|
}
|
|
366
423
|
export declare class UpdateAIAgentActionInput {
|
|
367
424
|
ID: string;
|
|
368
|
-
AgentID?: string;
|
|
369
|
-
ActionID?: string;
|
|
370
|
-
Status
|
|
425
|
+
AgentID?: string | null;
|
|
426
|
+
ActionID?: string | null;
|
|
427
|
+
Status?: string;
|
|
371
428
|
OldValues___?: KeyValuePairInput[];
|
|
372
429
|
}
|
|
373
430
|
export declare class RunAIAgentActionViewResult {
|
|
@@ -408,29 +465,29 @@ export declare class AIPrompt_ {
|
|
|
408
465
|
AIResultCache_AIPromptIDArray: AIResultCache_[];
|
|
409
466
|
}
|
|
410
467
|
export declare class CreateAIPromptInput {
|
|
411
|
-
Name
|
|
412
|
-
Description
|
|
413
|
-
TemplateID
|
|
414
|
-
CategoryID
|
|
415
|
-
TypeID
|
|
416
|
-
Status
|
|
417
|
-
CacheResults
|
|
418
|
-
CacheExpiration
|
|
419
|
-
ResponseFormat
|
|
420
|
-
ModelSpecificResponseFormat
|
|
468
|
+
Name?: string;
|
|
469
|
+
Description: string | null;
|
|
470
|
+
TemplateID?: string;
|
|
471
|
+
CategoryID: string | null;
|
|
472
|
+
TypeID?: string;
|
|
473
|
+
Status?: string;
|
|
474
|
+
CacheResults?: boolean;
|
|
475
|
+
CacheExpiration?: number;
|
|
476
|
+
ResponseFormat?: string;
|
|
477
|
+
ModelSpecificResponseFormat: string | null;
|
|
421
478
|
}
|
|
422
479
|
export declare class UpdateAIPromptInput {
|
|
423
480
|
ID: string;
|
|
424
|
-
Name
|
|
425
|
-
Description?: string;
|
|
426
|
-
TemplateID
|
|
427
|
-
CategoryID?: string;
|
|
428
|
-
TypeID
|
|
429
|
-
Status
|
|
430
|
-
CacheResults
|
|
431
|
-
CacheExpiration
|
|
432
|
-
ResponseFormat
|
|
433
|
-
ModelSpecificResponseFormat?: string;
|
|
481
|
+
Name?: string;
|
|
482
|
+
Description?: string | null;
|
|
483
|
+
TemplateID?: string;
|
|
484
|
+
CategoryID?: string | null;
|
|
485
|
+
TypeID?: string;
|
|
486
|
+
Status?: string;
|
|
487
|
+
CacheResults?: boolean;
|
|
488
|
+
CacheExpiration?: number;
|
|
489
|
+
ResponseFormat?: string;
|
|
490
|
+
ModelSpecificResponseFormat?: string | null;
|
|
434
491
|
OldValues___?: KeyValuePairInput[];
|
|
435
492
|
}
|
|
436
493
|
export declare class RunAIPromptViewResult {
|
|
@@ -467,23 +524,23 @@ export declare class AIResultCache_ {
|
|
|
467
524
|
AIModel: string;
|
|
468
525
|
}
|
|
469
526
|
export declare class CreateAIResultCacheInput {
|
|
470
|
-
AIPromptID
|
|
471
|
-
AIModelID
|
|
472
|
-
RunAt
|
|
473
|
-
PromptText
|
|
474
|
-
ResultText
|
|
475
|
-
Status
|
|
476
|
-
ExpiredOn
|
|
527
|
+
AIPromptID?: string;
|
|
528
|
+
AIModelID?: string;
|
|
529
|
+
RunAt?: Date;
|
|
530
|
+
PromptText?: string;
|
|
531
|
+
ResultText: string | null;
|
|
532
|
+
Status?: string;
|
|
533
|
+
ExpiredOn: Date | null;
|
|
477
534
|
}
|
|
478
535
|
export declare class UpdateAIResultCacheInput {
|
|
479
536
|
ID: string;
|
|
480
|
-
AIPromptID
|
|
481
|
-
AIModelID
|
|
482
|
-
RunAt
|
|
483
|
-
PromptText
|
|
484
|
-
ResultText?: string;
|
|
485
|
-
Status
|
|
486
|
-
ExpiredOn?: Date;
|
|
537
|
+
AIPromptID?: string;
|
|
538
|
+
AIModelID?: string;
|
|
539
|
+
RunAt?: Date;
|
|
540
|
+
PromptText?: string;
|
|
541
|
+
ResultText?: string | null;
|
|
542
|
+
Status?: string;
|
|
543
|
+
ExpiredOn?: Date | null;
|
|
487
544
|
OldValues___?: KeyValuePairInput[];
|
|
488
545
|
}
|
|
489
546
|
export declare class RunAIResultCacheViewResult {
|
|
@@ -516,15 +573,15 @@ export declare class AIPromptCategory_ {
|
|
|
516
573
|
AIPromptCategories_ParentIDArray: AIPromptCategory_[];
|
|
517
574
|
}
|
|
518
575
|
export declare class CreateAIPromptCategoryInput {
|
|
519
|
-
Name
|
|
520
|
-
ParentID
|
|
521
|
-
Description
|
|
576
|
+
Name?: string;
|
|
577
|
+
ParentID: string | null;
|
|
578
|
+
Description: string | null;
|
|
522
579
|
}
|
|
523
580
|
export declare class UpdateAIPromptCategoryInput {
|
|
524
581
|
ID: string;
|
|
525
|
-
Name
|
|
526
|
-
ParentID?: string;
|
|
527
|
-
Description?: string;
|
|
582
|
+
Name?: string;
|
|
583
|
+
ParentID?: string | null;
|
|
584
|
+
Description?: string | null;
|
|
528
585
|
OldValues___?: KeyValuePairInput[];
|
|
529
586
|
}
|
|
530
587
|
export declare class RunAIPromptCategoryViewResult {
|
|
@@ -556,13 +613,13 @@ export declare class AIPromptType_ {
|
|
|
556
613
|
AIPrompts_TypeIDArray: AIPrompt_[];
|
|
557
614
|
}
|
|
558
615
|
export declare class CreateAIPromptTypeInput {
|
|
559
|
-
Name
|
|
560
|
-
Description
|
|
616
|
+
Name?: string;
|
|
617
|
+
Description: string | null;
|
|
561
618
|
}
|
|
562
619
|
export declare class UpdateAIPromptTypeInput {
|
|
563
620
|
ID: string;
|
|
564
|
-
Name
|
|
565
|
-
Description?: string;
|
|
621
|
+
Name?: string;
|
|
622
|
+
Description?: string | null;
|
|
566
623
|
OldValues___?: KeyValuePairInput[];
|
|
567
624
|
}
|
|
568
625
|
export declare class RunAIPromptTypeViewResult {
|
|
@@ -598,19 +655,19 @@ export declare class Company_ {
|
|
|
598
655
|
Employees_CompanyIDArray: Employee_[];
|
|
599
656
|
}
|
|
600
657
|
export declare class CreateCompanyInput {
|
|
601
|
-
Name
|
|
602
|
-
Description
|
|
603
|
-
Website
|
|
604
|
-
LogoURL
|
|
605
|
-
Domain
|
|
658
|
+
Name?: string;
|
|
659
|
+
Description?: string;
|
|
660
|
+
Website: string | null;
|
|
661
|
+
LogoURL: string | null;
|
|
662
|
+
Domain: string | null;
|
|
606
663
|
}
|
|
607
664
|
export declare class UpdateCompanyInput {
|
|
608
665
|
ID: string;
|
|
609
|
-
Name
|
|
610
|
-
Description
|
|
611
|
-
Website?: string;
|
|
612
|
-
LogoURL?: string;
|
|
613
|
-
Domain?: string;
|
|
666
|
+
Name?: string;
|
|
667
|
+
Description?: string;
|
|
668
|
+
Website?: string | null;
|
|
669
|
+
LogoURL?: string | null;
|
|
670
|
+
Domain?: string | null;
|
|
614
671
|
OldValues___?: KeyValuePairInput[];
|
|
615
672
|
}
|
|
616
673
|
export declare class RunCompanyViewResult {
|
|
@@ -660,25 +717,25 @@ export declare class Employee_ {
|
|
|
660
717
|
EmployeeRoles_EmployeeIDArray: EmployeeRole_[];
|
|
661
718
|
}
|
|
662
719
|
export declare class CreateEmployeeInput {
|
|
663
|
-
FirstName
|
|
664
|
-
LastName
|
|
665
|
-
CompanyID
|
|
666
|
-
SupervisorID
|
|
667
|
-
Title
|
|
668
|
-
Email
|
|
669
|
-
Phone
|
|
670
|
-
Active
|
|
720
|
+
FirstName?: string;
|
|
721
|
+
LastName?: string;
|
|
722
|
+
CompanyID?: string;
|
|
723
|
+
SupervisorID: string | null;
|
|
724
|
+
Title: string | null;
|
|
725
|
+
Email?: string;
|
|
726
|
+
Phone: string | null;
|
|
727
|
+
Active?: boolean;
|
|
671
728
|
}
|
|
672
729
|
export declare class UpdateEmployeeInput {
|
|
673
730
|
ID: string;
|
|
674
|
-
FirstName
|
|
675
|
-
LastName
|
|
676
|
-
CompanyID
|
|
677
|
-
SupervisorID?: string;
|
|
678
|
-
Title?: string;
|
|
679
|
-
Email
|
|
680
|
-
Phone?: string;
|
|
681
|
-
Active
|
|
731
|
+
FirstName?: string;
|
|
732
|
+
LastName?: string;
|
|
733
|
+
CompanyID?: string;
|
|
734
|
+
SupervisorID?: string | null;
|
|
735
|
+
Title?: string | null;
|
|
736
|
+
Email?: string;
|
|
737
|
+
Phone?: string | null;
|
|
738
|
+
Active?: boolean;
|
|
682
739
|
OldValues___?: KeyValuePairInput[];
|
|
683
740
|
}
|
|
684
741
|
export declare class RunEmployeeViewResult {
|
|
@@ -717,15 +774,15 @@ export declare class UserFavorite_ {
|
|
|
717
774
|
EntityBaseView: string;
|
|
718
775
|
}
|
|
719
776
|
export declare class CreateUserFavoriteInput {
|
|
720
|
-
UserID
|
|
721
|
-
EntityID
|
|
722
|
-
RecordID
|
|
777
|
+
UserID?: string;
|
|
778
|
+
EntityID?: string;
|
|
779
|
+
RecordID?: string;
|
|
723
780
|
}
|
|
724
781
|
export declare class UpdateUserFavoriteInput {
|
|
725
782
|
ID: string;
|
|
726
|
-
UserID
|
|
727
|
-
EntityID
|
|
728
|
-
RecordID
|
|
783
|
+
UserID?: string;
|
|
784
|
+
EntityID?: string;
|
|
785
|
+
RecordID?: string;
|
|
729
786
|
OldValues___?: KeyValuePairInput[];
|
|
730
787
|
}
|
|
731
788
|
export declare class RunUserFavoriteViewResult {
|
|
@@ -757,10 +814,10 @@ export declare class EmployeeCompanyIntegration_ {
|
|
|
757
814
|
}
|
|
758
815
|
export declare class UpdateEmployeeCompanyIntegrationInput {
|
|
759
816
|
ID: string;
|
|
760
|
-
EmployeeID
|
|
761
|
-
CompanyIntegrationID
|
|
762
|
-
ExternalSystemRecordID
|
|
763
|
-
IsActive
|
|
817
|
+
EmployeeID?: string;
|
|
818
|
+
CompanyIntegrationID?: string;
|
|
819
|
+
ExternalSystemRecordID?: string;
|
|
820
|
+
IsActive?: boolean;
|
|
764
821
|
OldValues___?: KeyValuePairInput[];
|
|
765
822
|
}
|
|
766
823
|
export declare class RunEmployeeCompanyIntegrationViewResult {
|
|
@@ -789,9 +846,9 @@ export declare class EmployeeRole_ {
|
|
|
789
846
|
}
|
|
790
847
|
export declare class UpdateEmployeeRoleInput {
|
|
791
848
|
ID: string;
|
|
792
|
-
EmployeeID
|
|
793
|
-
RoleID
|
|
794
|
-
OldValues___?: KeyValuePairInput[];
|
|
849
|
+
EmployeeID?: string;
|
|
850
|
+
RoleID?: string;
|
|
851
|
+
OldValues___?: KeyValuePairInput[];
|
|
795
852
|
}
|
|
796
853
|
export declare class RunEmployeeRoleViewResult {
|
|
797
854
|
Results: EmployeeRole_[];
|
|
@@ -820,8 +877,8 @@ export declare class EmployeeSkill_ {
|
|
|
820
877
|
}
|
|
821
878
|
export declare class UpdateEmployeeSkillInput {
|
|
822
879
|
ID: string;
|
|
823
|
-
EmployeeID
|
|
824
|
-
SkillID
|
|
880
|
+
EmployeeID?: string;
|
|
881
|
+
SkillID?: string;
|
|
825
882
|
OldValues___?: KeyValuePairInput[];
|
|
826
883
|
}
|
|
827
884
|
export declare class RunEmployeeSkillViewResult {
|
|
@@ -857,17 +914,17 @@ export declare class Role_ {
|
|
|
857
914
|
ResourcePermissions_RoleIDArray: ResourcePermission_[];
|
|
858
915
|
}
|
|
859
916
|
export declare class CreateRoleInput {
|
|
860
|
-
Name
|
|
861
|
-
Description
|
|
862
|
-
DirectoryID
|
|
863
|
-
SQLName
|
|
917
|
+
Name?: string;
|
|
918
|
+
Description: string | null;
|
|
919
|
+
DirectoryID: string | null;
|
|
920
|
+
SQLName: string | null;
|
|
864
921
|
}
|
|
865
922
|
export declare class UpdateRoleInput {
|
|
866
923
|
ID: string;
|
|
867
|
-
Name
|
|
868
|
-
Description?: string;
|
|
869
|
-
DirectoryID?: string;
|
|
870
|
-
SQLName?: string;
|
|
924
|
+
Name?: string;
|
|
925
|
+
Description?: string | null;
|
|
926
|
+
DirectoryID?: string | null;
|
|
927
|
+
SQLName?: string | null;
|
|
871
928
|
OldValues___?: KeyValuePairInput[];
|
|
872
929
|
}
|
|
873
930
|
export declare class RunRoleViewResult {
|
|
@@ -937,10 +994,10 @@ export declare class IntegrationURLFormat_ {
|
|
|
937
994
|
}
|
|
938
995
|
export declare class UpdateIntegrationURLFormatInput {
|
|
939
996
|
ID: string;
|
|
940
|
-
IntegrationID
|
|
941
|
-
EntityID
|
|
942
|
-
URLFormat
|
|
943
|
-
Comments?: string;
|
|
997
|
+
IntegrationID?: string;
|
|
998
|
+
EntityID?: string;
|
|
999
|
+
URLFormat?: string;
|
|
1000
|
+
Comments?: string | null;
|
|
944
1001
|
OldValues___?: KeyValuePairInput[];
|
|
945
1002
|
}
|
|
946
1003
|
export declare class RunIntegrationURLFormatViewResult {
|
|
@@ -977,13 +1034,13 @@ export declare class Integration_ {
|
|
|
977
1034
|
RecordChanges_IntegrationIDArray: RecordChange_[];
|
|
978
1035
|
}
|
|
979
1036
|
export declare class UpdateIntegrationInput {
|
|
980
|
-
Name
|
|
981
|
-
Description?: string;
|
|
982
|
-
NavigationBaseURL?: string;
|
|
983
|
-
ClassName?: string;
|
|
984
|
-
ImportPath?: string;
|
|
985
|
-
BatchMaxRequestCount
|
|
986
|
-
BatchRequestWaitTime
|
|
1037
|
+
Name?: string;
|
|
1038
|
+
Description?: string | null;
|
|
1039
|
+
NavigationBaseURL?: string | null;
|
|
1040
|
+
ClassName?: string | null;
|
|
1041
|
+
ImportPath?: string | null;
|
|
1042
|
+
BatchMaxRequestCount?: number;
|
|
1043
|
+
BatchRequestWaitTime?: number;
|
|
987
1044
|
ID: string;
|
|
988
1045
|
OldValues___?: KeyValuePairInput[];
|
|
989
1046
|
}
|
|
@@ -1038,18 +1095,18 @@ export declare class CompanyIntegration_ {
|
|
|
1038
1095
|
}
|
|
1039
1096
|
export declare class UpdateCompanyIntegrationInput {
|
|
1040
1097
|
ID: string;
|
|
1041
|
-
CompanyID
|
|
1042
|
-
IntegrationID
|
|
1043
|
-
IsActive?: boolean;
|
|
1044
|
-
AccessToken?: string;
|
|
1045
|
-
RefreshToken?: string;
|
|
1046
|
-
TokenExpirationDate?: Date;
|
|
1047
|
-
APIKey?: string;
|
|
1048
|
-
ExternalSystemID?: string;
|
|
1049
|
-
IsExternalSystemReadOnly
|
|
1050
|
-
ClientID?: string;
|
|
1051
|
-
ClientSecret?: string;
|
|
1052
|
-
CustomAttribute1?: string;
|
|
1098
|
+
CompanyID?: string;
|
|
1099
|
+
IntegrationID?: string;
|
|
1100
|
+
IsActive?: boolean | null;
|
|
1101
|
+
AccessToken?: string | null;
|
|
1102
|
+
RefreshToken?: string | null;
|
|
1103
|
+
TokenExpirationDate?: Date | null;
|
|
1104
|
+
APIKey?: string | null;
|
|
1105
|
+
ExternalSystemID?: string | null;
|
|
1106
|
+
IsExternalSystemReadOnly?: boolean;
|
|
1107
|
+
ClientID?: string | null;
|
|
1108
|
+
ClientSecret?: string | null;
|
|
1109
|
+
CustomAttribute1?: string | null;
|
|
1053
1110
|
OldValues___?: KeyValuePairInput[];
|
|
1054
1111
|
}
|
|
1055
1112
|
export declare class RunCompanyIntegrationViewResult {
|
|
@@ -1132,67 +1189,67 @@ export declare class EntityField_ {
|
|
|
1132
1189
|
EntityFieldValues_EntityFieldIDArray: EntityFieldValue_[];
|
|
1133
1190
|
}
|
|
1134
1191
|
export declare class CreateEntityFieldInput {
|
|
1135
|
-
DisplayName
|
|
1136
|
-
Description
|
|
1137
|
-
AutoUpdateDescription
|
|
1138
|
-
IsPrimaryKey
|
|
1139
|
-
IsUnique
|
|
1140
|
-
Category
|
|
1141
|
-
ValueListType
|
|
1142
|
-
ExtendedType
|
|
1143
|
-
CodeType
|
|
1144
|
-
DefaultInView
|
|
1145
|
-
ViewCellTemplate
|
|
1146
|
-
DefaultColumnWidth
|
|
1147
|
-
AllowUpdateAPI
|
|
1148
|
-
AllowUpdateInView
|
|
1149
|
-
IncludeInUserSearchAPI
|
|
1150
|
-
FullTextSearchEnabled
|
|
1151
|
-
UserSearchParamFormatAPI
|
|
1152
|
-
IncludeInGeneratedForm
|
|
1153
|
-
GeneratedFormSection
|
|
1154
|
-
IsNameField
|
|
1155
|
-
RelatedEntityID
|
|
1156
|
-
RelatedEntityFieldName
|
|
1157
|
-
IncludeRelatedEntityNameFieldInBaseView
|
|
1158
|
-
RelatedEntityNameFieldMap
|
|
1159
|
-
RelatedEntityDisplayType
|
|
1160
|
-
EntityIDFieldName
|
|
1161
|
-
ScopeDefault
|
|
1162
|
-
AutoUpdateRelatedEntityInfo
|
|
1163
|
-
ValuesToPackWithSchema
|
|
1192
|
+
DisplayName: string | null;
|
|
1193
|
+
Description: string | null;
|
|
1194
|
+
AutoUpdateDescription?: boolean;
|
|
1195
|
+
IsPrimaryKey?: boolean;
|
|
1196
|
+
IsUnique?: boolean;
|
|
1197
|
+
Category: string | null;
|
|
1198
|
+
ValueListType?: string;
|
|
1199
|
+
ExtendedType: string | null;
|
|
1200
|
+
CodeType: string | null;
|
|
1201
|
+
DefaultInView?: boolean;
|
|
1202
|
+
ViewCellTemplate: string | null;
|
|
1203
|
+
DefaultColumnWidth: number | null;
|
|
1204
|
+
AllowUpdateAPI?: boolean;
|
|
1205
|
+
AllowUpdateInView?: boolean;
|
|
1206
|
+
IncludeInUserSearchAPI?: boolean;
|
|
1207
|
+
FullTextSearchEnabled?: boolean;
|
|
1208
|
+
UserSearchParamFormatAPI: string | null;
|
|
1209
|
+
IncludeInGeneratedForm?: boolean;
|
|
1210
|
+
GeneratedFormSection?: string;
|
|
1211
|
+
IsNameField?: boolean;
|
|
1212
|
+
RelatedEntityID: string | null;
|
|
1213
|
+
RelatedEntityFieldName: string | null;
|
|
1214
|
+
IncludeRelatedEntityNameFieldInBaseView?: boolean;
|
|
1215
|
+
RelatedEntityNameFieldMap: string | null;
|
|
1216
|
+
RelatedEntityDisplayType?: string;
|
|
1217
|
+
EntityIDFieldName: string | null;
|
|
1218
|
+
ScopeDefault: string | null;
|
|
1219
|
+
AutoUpdateRelatedEntityInfo?: boolean;
|
|
1220
|
+
ValuesToPackWithSchema?: string;
|
|
1164
1221
|
}
|
|
1165
1222
|
export declare class UpdateEntityFieldInput {
|
|
1166
1223
|
ID: string;
|
|
1167
|
-
DisplayName?: string;
|
|
1168
|
-
Description?: string;
|
|
1169
|
-
AutoUpdateDescription
|
|
1170
|
-
IsPrimaryKey
|
|
1171
|
-
IsUnique
|
|
1172
|
-
Category?: string;
|
|
1173
|
-
ValueListType
|
|
1174
|
-
ExtendedType?: string;
|
|
1175
|
-
CodeType?: string;
|
|
1176
|
-
DefaultInView
|
|
1177
|
-
ViewCellTemplate?: string;
|
|
1178
|
-
DefaultColumnWidth?: number;
|
|
1179
|
-
AllowUpdateAPI
|
|
1180
|
-
AllowUpdateInView
|
|
1181
|
-
IncludeInUserSearchAPI
|
|
1182
|
-
FullTextSearchEnabled
|
|
1183
|
-
UserSearchParamFormatAPI?: string;
|
|
1184
|
-
IncludeInGeneratedForm
|
|
1185
|
-
GeneratedFormSection
|
|
1186
|
-
IsNameField
|
|
1187
|
-
RelatedEntityID?: string;
|
|
1188
|
-
RelatedEntityFieldName?: string;
|
|
1189
|
-
IncludeRelatedEntityNameFieldInBaseView
|
|
1190
|
-
RelatedEntityNameFieldMap?: string;
|
|
1191
|
-
RelatedEntityDisplayType
|
|
1192
|
-
EntityIDFieldName?: string;
|
|
1193
|
-
ScopeDefault?: string;
|
|
1194
|
-
AutoUpdateRelatedEntityInfo
|
|
1195
|
-
ValuesToPackWithSchema
|
|
1224
|
+
DisplayName?: string | null;
|
|
1225
|
+
Description?: string | null;
|
|
1226
|
+
AutoUpdateDescription?: boolean;
|
|
1227
|
+
IsPrimaryKey?: boolean;
|
|
1228
|
+
IsUnique?: boolean;
|
|
1229
|
+
Category?: string | null;
|
|
1230
|
+
ValueListType?: string;
|
|
1231
|
+
ExtendedType?: string | null;
|
|
1232
|
+
CodeType?: string | null;
|
|
1233
|
+
DefaultInView?: boolean;
|
|
1234
|
+
ViewCellTemplate?: string | null;
|
|
1235
|
+
DefaultColumnWidth?: number | null;
|
|
1236
|
+
AllowUpdateAPI?: boolean;
|
|
1237
|
+
AllowUpdateInView?: boolean;
|
|
1238
|
+
IncludeInUserSearchAPI?: boolean;
|
|
1239
|
+
FullTextSearchEnabled?: boolean;
|
|
1240
|
+
UserSearchParamFormatAPI?: string | null;
|
|
1241
|
+
IncludeInGeneratedForm?: boolean;
|
|
1242
|
+
GeneratedFormSection?: string;
|
|
1243
|
+
IsNameField?: boolean;
|
|
1244
|
+
RelatedEntityID?: string | null;
|
|
1245
|
+
RelatedEntityFieldName?: string | null;
|
|
1246
|
+
IncludeRelatedEntityNameFieldInBaseView?: boolean;
|
|
1247
|
+
RelatedEntityNameFieldMap?: string | null;
|
|
1248
|
+
RelatedEntityDisplayType?: string;
|
|
1249
|
+
EntityIDFieldName?: string | null;
|
|
1250
|
+
ScopeDefault?: string | null;
|
|
1251
|
+
AutoUpdateRelatedEntityInfo?: boolean;
|
|
1252
|
+
ValuesToPackWithSchema?: string;
|
|
1196
1253
|
OldValues___?: KeyValuePairInput[];
|
|
1197
1254
|
}
|
|
1198
1255
|
export declare class RunEntityFieldViewResult {
|
|
@@ -1312,103 +1369,103 @@ export declare class Entity_ {
|
|
|
1312
1369
|
QueryEntities_EntityIDArray: QueryEntity_[];
|
|
1313
1370
|
}
|
|
1314
1371
|
export declare class CreateEntityInput {
|
|
1315
|
-
ParentID
|
|
1316
|
-
Name
|
|
1317
|
-
NameSuffix
|
|
1318
|
-
Description
|
|
1319
|
-
AutoUpdateDescription
|
|
1320
|
-
BaseView
|
|
1321
|
-
BaseViewGenerated
|
|
1322
|
-
VirtualEntity
|
|
1323
|
-
TrackRecordChanges
|
|
1324
|
-
AuditRecordAccess
|
|
1325
|
-
AuditViewRuns
|
|
1326
|
-
IncludeInAPI
|
|
1327
|
-
AllowAllRowsAPI
|
|
1328
|
-
AllowUpdateAPI
|
|
1329
|
-
AllowCreateAPI
|
|
1330
|
-
AllowDeleteAPI
|
|
1331
|
-
CustomResolverAPI
|
|
1332
|
-
AllowUserSearchAPI
|
|
1333
|
-
FullTextSearchEnabled
|
|
1334
|
-
FullTextCatalog
|
|
1335
|
-
FullTextCatalogGenerated
|
|
1336
|
-
FullTextIndex
|
|
1337
|
-
FullTextIndexGenerated
|
|
1338
|
-
FullTextSearchFunction
|
|
1339
|
-
FullTextSearchFunctionGenerated
|
|
1340
|
-
UserViewMaxRows?: number;
|
|
1341
|
-
spCreate
|
|
1342
|
-
spUpdate
|
|
1343
|
-
spDelete
|
|
1344
|
-
spCreateGenerated
|
|
1345
|
-
spUpdateGenerated
|
|
1346
|
-
spDeleteGenerated
|
|
1347
|
-
CascadeDeletes
|
|
1348
|
-
DeleteType
|
|
1349
|
-
AllowRecordMerge
|
|
1350
|
-
spMatch
|
|
1351
|
-
RelationshipDefaultDisplayType
|
|
1352
|
-
UserFormGenerated
|
|
1353
|
-
EntityObjectSubclassName
|
|
1354
|
-
EntityObjectSubclassImport
|
|
1355
|
-
PreferredCommunicationField
|
|
1356
|
-
Icon
|
|
1357
|
-
ScopeDefault
|
|
1358
|
-
RowsToPackWithSchema
|
|
1359
|
-
RowsToPackSampleMethod
|
|
1360
|
-
RowsToPackSampleCount
|
|
1361
|
-
RowsToPackSampleOrder
|
|
1372
|
+
ParentID: string | null;
|
|
1373
|
+
Name?: string;
|
|
1374
|
+
NameSuffix: string | null;
|
|
1375
|
+
Description: string | null;
|
|
1376
|
+
AutoUpdateDescription?: boolean;
|
|
1377
|
+
BaseView?: string;
|
|
1378
|
+
BaseViewGenerated?: boolean;
|
|
1379
|
+
VirtualEntity?: boolean;
|
|
1380
|
+
TrackRecordChanges?: boolean;
|
|
1381
|
+
AuditRecordAccess?: boolean;
|
|
1382
|
+
AuditViewRuns?: boolean;
|
|
1383
|
+
IncludeInAPI?: boolean;
|
|
1384
|
+
AllowAllRowsAPI?: boolean;
|
|
1385
|
+
AllowUpdateAPI?: boolean;
|
|
1386
|
+
AllowCreateAPI?: boolean;
|
|
1387
|
+
AllowDeleteAPI?: boolean;
|
|
1388
|
+
CustomResolverAPI?: boolean;
|
|
1389
|
+
AllowUserSearchAPI?: boolean;
|
|
1390
|
+
FullTextSearchEnabled?: boolean;
|
|
1391
|
+
FullTextCatalog: string | null;
|
|
1392
|
+
FullTextCatalogGenerated?: boolean;
|
|
1393
|
+
FullTextIndex: string | null;
|
|
1394
|
+
FullTextIndexGenerated?: boolean;
|
|
1395
|
+
FullTextSearchFunction: string | null;
|
|
1396
|
+
FullTextSearchFunctionGenerated?: boolean;
|
|
1397
|
+
UserViewMaxRows?: number | null;
|
|
1398
|
+
spCreate: string | null;
|
|
1399
|
+
spUpdate: string | null;
|
|
1400
|
+
spDelete: string | null;
|
|
1401
|
+
spCreateGenerated?: boolean;
|
|
1402
|
+
spUpdateGenerated?: boolean;
|
|
1403
|
+
spDeleteGenerated?: boolean;
|
|
1404
|
+
CascadeDeletes?: boolean;
|
|
1405
|
+
DeleteType?: string;
|
|
1406
|
+
AllowRecordMerge?: boolean;
|
|
1407
|
+
spMatch: string | null;
|
|
1408
|
+
RelationshipDefaultDisplayType?: string;
|
|
1409
|
+
UserFormGenerated?: boolean;
|
|
1410
|
+
EntityObjectSubclassName: string | null;
|
|
1411
|
+
EntityObjectSubclassImport: string | null;
|
|
1412
|
+
PreferredCommunicationField: string | null;
|
|
1413
|
+
Icon: string | null;
|
|
1414
|
+
ScopeDefault: string | null;
|
|
1415
|
+
RowsToPackWithSchema?: string;
|
|
1416
|
+
RowsToPackSampleMethod?: string;
|
|
1417
|
+
RowsToPackSampleCount?: number;
|
|
1418
|
+
RowsToPackSampleOrder: string | null;
|
|
1362
1419
|
}
|
|
1363
1420
|
export declare class UpdateEntityInput {
|
|
1364
1421
|
ID: string;
|
|
1365
|
-
ParentID?: string;
|
|
1366
|
-
Name
|
|
1367
|
-
NameSuffix?: string;
|
|
1368
|
-
Description?: string;
|
|
1369
|
-
AutoUpdateDescription
|
|
1370
|
-
BaseView
|
|
1371
|
-
BaseViewGenerated
|
|
1372
|
-
VirtualEntity
|
|
1373
|
-
TrackRecordChanges
|
|
1374
|
-
AuditRecordAccess
|
|
1375
|
-
AuditViewRuns
|
|
1376
|
-
IncludeInAPI
|
|
1377
|
-
AllowAllRowsAPI
|
|
1378
|
-
AllowUpdateAPI
|
|
1379
|
-
AllowCreateAPI
|
|
1380
|
-
AllowDeleteAPI
|
|
1381
|
-
CustomResolverAPI
|
|
1382
|
-
AllowUserSearchAPI
|
|
1383
|
-
FullTextSearchEnabled
|
|
1384
|
-
FullTextCatalog?: string;
|
|
1385
|
-
FullTextCatalogGenerated
|
|
1386
|
-
FullTextIndex?: string;
|
|
1387
|
-
FullTextIndexGenerated
|
|
1388
|
-
FullTextSearchFunction?: string;
|
|
1389
|
-
FullTextSearchFunctionGenerated
|
|
1390
|
-
UserViewMaxRows?: number;
|
|
1391
|
-
spCreate?: string;
|
|
1392
|
-
spUpdate?: string;
|
|
1393
|
-
spDelete?: string;
|
|
1394
|
-
spCreateGenerated
|
|
1395
|
-
spUpdateGenerated
|
|
1396
|
-
spDeleteGenerated
|
|
1397
|
-
CascadeDeletes
|
|
1398
|
-
DeleteType
|
|
1399
|
-
AllowRecordMerge
|
|
1400
|
-
spMatch?: string;
|
|
1401
|
-
RelationshipDefaultDisplayType
|
|
1402
|
-
UserFormGenerated
|
|
1403
|
-
EntityObjectSubclassName?: string;
|
|
1404
|
-
EntityObjectSubclassImport?: string;
|
|
1405
|
-
PreferredCommunicationField?: string;
|
|
1406
|
-
Icon?: string;
|
|
1407
|
-
ScopeDefault?: string;
|
|
1408
|
-
RowsToPackWithSchema
|
|
1409
|
-
RowsToPackSampleMethod
|
|
1410
|
-
RowsToPackSampleCount
|
|
1411
|
-
RowsToPackSampleOrder?: string;
|
|
1422
|
+
ParentID?: string | null;
|
|
1423
|
+
Name?: string;
|
|
1424
|
+
NameSuffix?: string | null;
|
|
1425
|
+
Description?: string | null;
|
|
1426
|
+
AutoUpdateDescription?: boolean;
|
|
1427
|
+
BaseView?: string;
|
|
1428
|
+
BaseViewGenerated?: boolean;
|
|
1429
|
+
VirtualEntity?: boolean;
|
|
1430
|
+
TrackRecordChanges?: boolean;
|
|
1431
|
+
AuditRecordAccess?: boolean;
|
|
1432
|
+
AuditViewRuns?: boolean;
|
|
1433
|
+
IncludeInAPI?: boolean;
|
|
1434
|
+
AllowAllRowsAPI?: boolean;
|
|
1435
|
+
AllowUpdateAPI?: boolean;
|
|
1436
|
+
AllowCreateAPI?: boolean;
|
|
1437
|
+
AllowDeleteAPI?: boolean;
|
|
1438
|
+
CustomResolverAPI?: boolean;
|
|
1439
|
+
AllowUserSearchAPI?: boolean;
|
|
1440
|
+
FullTextSearchEnabled?: boolean;
|
|
1441
|
+
FullTextCatalog?: string | null;
|
|
1442
|
+
FullTextCatalogGenerated?: boolean;
|
|
1443
|
+
FullTextIndex?: string | null;
|
|
1444
|
+
FullTextIndexGenerated?: boolean;
|
|
1445
|
+
FullTextSearchFunction?: string | null;
|
|
1446
|
+
FullTextSearchFunctionGenerated?: boolean;
|
|
1447
|
+
UserViewMaxRows?: number | null;
|
|
1448
|
+
spCreate?: string | null;
|
|
1449
|
+
spUpdate?: string | null;
|
|
1450
|
+
spDelete?: string | null;
|
|
1451
|
+
spCreateGenerated?: boolean;
|
|
1452
|
+
spUpdateGenerated?: boolean;
|
|
1453
|
+
spDeleteGenerated?: boolean;
|
|
1454
|
+
CascadeDeletes?: boolean;
|
|
1455
|
+
DeleteType?: string;
|
|
1456
|
+
AllowRecordMerge?: boolean;
|
|
1457
|
+
spMatch?: string | null;
|
|
1458
|
+
RelationshipDefaultDisplayType?: string;
|
|
1459
|
+
UserFormGenerated?: boolean;
|
|
1460
|
+
EntityObjectSubclassName?: string | null;
|
|
1461
|
+
EntityObjectSubclassImport?: string | null;
|
|
1462
|
+
PreferredCommunicationField?: string | null;
|
|
1463
|
+
Icon?: string | null;
|
|
1464
|
+
ScopeDefault?: string | null;
|
|
1465
|
+
RowsToPackWithSchema?: string;
|
|
1466
|
+
RowsToPackSampleMethod?: string;
|
|
1467
|
+
RowsToPackSampleCount?: number;
|
|
1468
|
+
RowsToPackSampleOrder?: string | null;
|
|
1412
1469
|
OldValues___?: KeyValuePairInput[];
|
|
1413
1470
|
}
|
|
1414
1471
|
export declare class RunEntityViewResult {
|
|
@@ -1524,33 +1581,34 @@ export declare class User_ {
|
|
|
1524
1581
|
AIAgentNotes_UserIDArray: AIAgentNote_[];
|
|
1525
1582
|
ResourcePermissions_UserIDArray: ResourcePermission_[];
|
|
1526
1583
|
AIAgentRequests_RequestForUserIDArray: AIAgentRequest_[];
|
|
1584
|
+
ConversationDetails_UserIDArray: ConversationDetail_[];
|
|
1527
1585
|
}
|
|
1528
1586
|
export declare class CreateUserInput {
|
|
1529
|
-
Name
|
|
1530
|
-
FirstName
|
|
1531
|
-
LastName
|
|
1532
|
-
Title
|
|
1533
|
-
Email
|
|
1534
|
-
Type
|
|
1535
|
-
IsActive
|
|
1536
|
-
LinkedRecordType
|
|
1537
|
-
LinkedEntityID
|
|
1538
|
-
LinkedEntityRecordID
|
|
1539
|
-
EmployeeID
|
|
1587
|
+
Name?: string;
|
|
1588
|
+
FirstName: string | null;
|
|
1589
|
+
LastName: string | null;
|
|
1590
|
+
Title: string | null;
|
|
1591
|
+
Email?: string;
|
|
1592
|
+
Type?: string;
|
|
1593
|
+
IsActive?: boolean;
|
|
1594
|
+
LinkedRecordType?: string;
|
|
1595
|
+
LinkedEntityID: string | null;
|
|
1596
|
+
LinkedEntityRecordID: string | null;
|
|
1597
|
+
EmployeeID: string | null;
|
|
1540
1598
|
}
|
|
1541
1599
|
export declare class UpdateUserInput {
|
|
1542
1600
|
ID: string;
|
|
1543
|
-
Name
|
|
1544
|
-
FirstName?: string;
|
|
1545
|
-
LastName?: string;
|
|
1546
|
-
Title?: string;
|
|
1547
|
-
Email
|
|
1548
|
-
Type
|
|
1549
|
-
IsActive
|
|
1550
|
-
LinkedRecordType
|
|
1551
|
-
LinkedEntityID?: string;
|
|
1552
|
-
LinkedEntityRecordID?: string;
|
|
1553
|
-
EmployeeID?: string;
|
|
1601
|
+
Name?: string;
|
|
1602
|
+
FirstName?: string | null;
|
|
1603
|
+
LastName?: string | null;
|
|
1604
|
+
Title?: string | null;
|
|
1605
|
+
Email?: string;
|
|
1606
|
+
Type?: string;
|
|
1607
|
+
IsActive?: boolean;
|
|
1608
|
+
LinkedRecordType?: string;
|
|
1609
|
+
LinkedEntityID?: string | null;
|
|
1610
|
+
LinkedEntityRecordID?: string | null;
|
|
1611
|
+
EmployeeID?: string | null;
|
|
1554
1612
|
OldValues___?: KeyValuePairInput[];
|
|
1555
1613
|
}
|
|
1556
1614
|
export declare class RunUserViewResult {
|
|
@@ -1605,6 +1663,7 @@ export declare class UserResolverBase extends ResolverBase {
|
|
|
1605
1663
|
AIAgentNotes_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1606
1664
|
ResourcePermissions_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1607
1665
|
AIAgentRequests_RequestForUserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1666
|
+
ConversationDetails_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1608
1667
|
CreateUser(input: CreateUserInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1609
1668
|
UpdateUser(input: UpdateUserInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1610
1669
|
DeleteUser(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -1645,47 +1704,47 @@ export declare class EntityRelationship_ {
|
|
|
1645
1704
|
DisplayUserViewName?: string;
|
|
1646
1705
|
}
|
|
1647
1706
|
export declare class CreateEntityRelationshipInput {
|
|
1648
|
-
EntityID
|
|
1649
|
-
Sequence
|
|
1650
|
-
RelatedEntityID
|
|
1651
|
-
BundleInAPI
|
|
1652
|
-
IncludeInParentAllQuery
|
|
1653
|
-
Type
|
|
1654
|
-
EntityKeyField
|
|
1655
|
-
RelatedEntityJoinField
|
|
1656
|
-
JoinView
|
|
1657
|
-
JoinEntityJoinField
|
|
1658
|
-
JoinEntityInverseJoinField
|
|
1659
|
-
DisplayInForm
|
|
1660
|
-
DisplayLocation
|
|
1661
|
-
DisplayName
|
|
1662
|
-
DisplayIconType
|
|
1663
|
-
DisplayIcon
|
|
1664
|
-
DisplayComponentID
|
|
1665
|
-
DisplayComponentConfiguration
|
|
1666
|
-
AutoUpdateFromSchema
|
|
1707
|
+
EntityID?: string;
|
|
1708
|
+
Sequence?: number;
|
|
1709
|
+
RelatedEntityID?: string;
|
|
1710
|
+
BundleInAPI?: boolean;
|
|
1711
|
+
IncludeInParentAllQuery?: boolean;
|
|
1712
|
+
Type?: string;
|
|
1713
|
+
EntityKeyField: string | null;
|
|
1714
|
+
RelatedEntityJoinField?: string;
|
|
1715
|
+
JoinView: string | null;
|
|
1716
|
+
JoinEntityJoinField: string | null;
|
|
1717
|
+
JoinEntityInverseJoinField: string | null;
|
|
1718
|
+
DisplayInForm?: boolean;
|
|
1719
|
+
DisplayLocation?: string;
|
|
1720
|
+
DisplayName: string | null;
|
|
1721
|
+
DisplayIconType?: string;
|
|
1722
|
+
DisplayIcon: string | null;
|
|
1723
|
+
DisplayComponentID: string | null;
|
|
1724
|
+
DisplayComponentConfiguration: string | null;
|
|
1725
|
+
AutoUpdateFromSchema?: boolean;
|
|
1667
1726
|
}
|
|
1668
1727
|
export declare class UpdateEntityRelationshipInput {
|
|
1669
1728
|
ID: string;
|
|
1670
|
-
EntityID
|
|
1671
|
-
Sequence
|
|
1672
|
-
RelatedEntityID
|
|
1673
|
-
BundleInAPI
|
|
1674
|
-
IncludeInParentAllQuery
|
|
1675
|
-
Type
|
|
1676
|
-
EntityKeyField?: string;
|
|
1677
|
-
RelatedEntityJoinField
|
|
1678
|
-
JoinView?: string;
|
|
1679
|
-
JoinEntityJoinField?: string;
|
|
1680
|
-
JoinEntityInverseJoinField?: string;
|
|
1681
|
-
DisplayInForm
|
|
1682
|
-
DisplayLocation
|
|
1683
|
-
DisplayName?: string;
|
|
1684
|
-
DisplayIconType
|
|
1685
|
-
DisplayIcon?: string;
|
|
1686
|
-
DisplayComponentID?: string;
|
|
1687
|
-
DisplayComponentConfiguration?: string;
|
|
1688
|
-
AutoUpdateFromSchema
|
|
1729
|
+
EntityID?: string;
|
|
1730
|
+
Sequence?: number;
|
|
1731
|
+
RelatedEntityID?: string;
|
|
1732
|
+
BundleInAPI?: boolean;
|
|
1733
|
+
IncludeInParentAllQuery?: boolean;
|
|
1734
|
+
Type?: string;
|
|
1735
|
+
EntityKeyField?: string | null;
|
|
1736
|
+
RelatedEntityJoinField?: string;
|
|
1737
|
+
JoinView?: string | null;
|
|
1738
|
+
JoinEntityJoinField?: string | null;
|
|
1739
|
+
JoinEntityInverseJoinField?: string | null;
|
|
1740
|
+
DisplayInForm?: boolean;
|
|
1741
|
+
DisplayLocation?: string;
|
|
1742
|
+
DisplayName?: string | null;
|
|
1743
|
+
DisplayIconType?: string;
|
|
1744
|
+
DisplayIcon?: string | null;
|
|
1745
|
+
DisplayComponentID?: string | null;
|
|
1746
|
+
DisplayComponentConfiguration?: string | null;
|
|
1747
|
+
AutoUpdateFromSchema?: boolean;
|
|
1689
1748
|
OldValues___?: KeyValuePairInput[];
|
|
1690
1749
|
}
|
|
1691
1750
|
export declare class RunEntityRelationshipViewResult {
|
|
@@ -1726,12 +1785,12 @@ export declare class UserRecordLog_ {
|
|
|
1726
1785
|
}
|
|
1727
1786
|
export declare class UpdateUserRecordLogInput {
|
|
1728
1787
|
ID: string;
|
|
1729
|
-
UserID
|
|
1730
|
-
EntityID
|
|
1731
|
-
RecordID
|
|
1732
|
-
EarliestAt
|
|
1733
|
-
LatestAt
|
|
1734
|
-
TotalCount
|
|
1788
|
+
UserID?: string;
|
|
1789
|
+
EntityID?: string;
|
|
1790
|
+
RecordID?: string;
|
|
1791
|
+
EarliestAt?: Date;
|
|
1792
|
+
LatestAt?: Date;
|
|
1793
|
+
TotalCount?: number;
|
|
1735
1794
|
OldValues___?: KeyValuePairInput[];
|
|
1736
1795
|
}
|
|
1737
1796
|
export declare class RunUserRecordLogViewResult {
|
|
@@ -1782,43 +1841,43 @@ export declare class UserView_ {
|
|
|
1782
1841
|
EntityRelationships_DisplayUserViewGUIDArray: EntityRelationship_[];
|
|
1783
1842
|
}
|
|
1784
1843
|
export declare class CreateUserViewInput {
|
|
1785
|
-
UserID
|
|
1786
|
-
EntityID
|
|
1787
|
-
Name
|
|
1788
|
-
Description
|
|
1789
|
-
CategoryID
|
|
1790
|
-
IsShared
|
|
1791
|
-
IsDefault
|
|
1792
|
-
GridState
|
|
1793
|
-
FilterState
|
|
1794
|
-
CustomFilterState
|
|
1795
|
-
SmartFilterEnabled
|
|
1796
|
-
SmartFilterPrompt
|
|
1797
|
-
SmartFilterWhereClause
|
|
1798
|
-
SmartFilterExplanation
|
|
1799
|
-
WhereClause
|
|
1800
|
-
CustomWhereClause
|
|
1801
|
-
SortState
|
|
1844
|
+
UserID?: string;
|
|
1845
|
+
EntityID?: string;
|
|
1846
|
+
Name?: string;
|
|
1847
|
+
Description: string | null;
|
|
1848
|
+
CategoryID: string | null;
|
|
1849
|
+
IsShared?: boolean;
|
|
1850
|
+
IsDefault?: boolean;
|
|
1851
|
+
GridState: string | null;
|
|
1852
|
+
FilterState: string | null;
|
|
1853
|
+
CustomFilterState?: boolean;
|
|
1854
|
+
SmartFilterEnabled?: boolean;
|
|
1855
|
+
SmartFilterPrompt: string | null;
|
|
1856
|
+
SmartFilterWhereClause: string | null;
|
|
1857
|
+
SmartFilterExplanation: string | null;
|
|
1858
|
+
WhereClause: string | null;
|
|
1859
|
+
CustomWhereClause?: boolean;
|
|
1860
|
+
SortState: string | null;
|
|
1802
1861
|
}
|
|
1803
1862
|
export declare class UpdateUserViewInput {
|
|
1804
1863
|
ID: string;
|
|
1805
|
-
UserID
|
|
1806
|
-
EntityID
|
|
1807
|
-
Name
|
|
1808
|
-
Description?: string;
|
|
1809
|
-
CategoryID?: string;
|
|
1810
|
-
IsShared
|
|
1811
|
-
IsDefault
|
|
1812
|
-
GridState?: string;
|
|
1813
|
-
FilterState?: string;
|
|
1814
|
-
CustomFilterState
|
|
1815
|
-
SmartFilterEnabled
|
|
1816
|
-
SmartFilterPrompt?: string;
|
|
1817
|
-
SmartFilterWhereClause?: string;
|
|
1818
|
-
SmartFilterExplanation?: string;
|
|
1819
|
-
WhereClause?: string;
|
|
1820
|
-
CustomWhereClause
|
|
1821
|
-
SortState?: string;
|
|
1864
|
+
UserID?: string;
|
|
1865
|
+
EntityID?: string;
|
|
1866
|
+
Name?: string;
|
|
1867
|
+
Description?: string | null;
|
|
1868
|
+
CategoryID?: string | null;
|
|
1869
|
+
IsShared?: boolean;
|
|
1870
|
+
IsDefault?: boolean;
|
|
1871
|
+
GridState?: string | null;
|
|
1872
|
+
FilterState?: string | null;
|
|
1873
|
+
CustomFilterState?: boolean;
|
|
1874
|
+
SmartFilterEnabled?: boolean;
|
|
1875
|
+
SmartFilterPrompt?: string | null;
|
|
1876
|
+
SmartFilterWhereClause?: string | null;
|
|
1877
|
+
SmartFilterExplanation?: string | null;
|
|
1878
|
+
WhereClause?: string | null;
|
|
1879
|
+
CustomWhereClause?: boolean;
|
|
1880
|
+
SortState?: string | null;
|
|
1822
1881
|
OldValues___?: KeyValuePairInput[];
|
|
1823
1882
|
}
|
|
1824
1883
|
export declare class RunUserViewViewResult {
|
|
@@ -1864,27 +1923,27 @@ export declare class CompanyIntegrationRun_ {
|
|
|
1864
1923
|
CompanyIntegrationRunAPILogs_CompanyIntegrationRunIDArray: CompanyIntegrationRunAPILog_[];
|
|
1865
1924
|
}
|
|
1866
1925
|
export declare class CreateCompanyIntegrationRunInput {
|
|
1867
|
-
CompanyIntegrationID
|
|
1868
|
-
RunByUserID
|
|
1869
|
-
StartedAt
|
|
1870
|
-
EndedAt
|
|
1871
|
-
TotalRecords
|
|
1872
|
-
Comments
|
|
1873
|
-
Status
|
|
1874
|
-
ErrorLog
|
|
1875
|
-
ConfigData
|
|
1926
|
+
CompanyIntegrationID?: string;
|
|
1927
|
+
RunByUserID?: string;
|
|
1928
|
+
StartedAt: Date | null;
|
|
1929
|
+
EndedAt: Date | null;
|
|
1930
|
+
TotalRecords?: number;
|
|
1931
|
+
Comments: string | null;
|
|
1932
|
+
Status?: string;
|
|
1933
|
+
ErrorLog: string | null;
|
|
1934
|
+
ConfigData: string | null;
|
|
1876
1935
|
}
|
|
1877
1936
|
export declare class UpdateCompanyIntegrationRunInput {
|
|
1878
1937
|
ID: string;
|
|
1879
|
-
CompanyIntegrationID
|
|
1880
|
-
RunByUserID
|
|
1881
|
-
StartedAt?: Date;
|
|
1882
|
-
EndedAt?: Date;
|
|
1883
|
-
TotalRecords
|
|
1884
|
-
Comments?: string;
|
|
1885
|
-
Status
|
|
1886
|
-
ErrorLog?: string;
|
|
1887
|
-
ConfigData?: string;
|
|
1938
|
+
CompanyIntegrationID?: string;
|
|
1939
|
+
RunByUserID?: string;
|
|
1940
|
+
StartedAt?: Date | null;
|
|
1941
|
+
EndedAt?: Date | null;
|
|
1942
|
+
TotalRecords?: number;
|
|
1943
|
+
Comments?: string | null;
|
|
1944
|
+
Status?: string;
|
|
1945
|
+
ErrorLog?: string | null;
|
|
1946
|
+
ConfigData?: string | null;
|
|
1888
1947
|
OldValues___?: KeyValuePairInput[];
|
|
1889
1948
|
}
|
|
1890
1949
|
export declare class RunCompanyIntegrationRunViewResult {
|
|
@@ -1923,21 +1982,21 @@ export declare class CompanyIntegrationRunDetail_ {
|
|
|
1923
1982
|
ErrorLogs_CompanyIntegrationRunDetailIDArray: ErrorLog_[];
|
|
1924
1983
|
}
|
|
1925
1984
|
export declare class CreateCompanyIntegrationRunDetailInput {
|
|
1926
|
-
CompanyIntegrationRunID
|
|
1927
|
-
EntityID
|
|
1928
|
-
RecordID
|
|
1929
|
-
Action
|
|
1930
|
-
ExecutedAt
|
|
1931
|
-
IsSuccess
|
|
1985
|
+
CompanyIntegrationRunID?: string;
|
|
1986
|
+
EntityID?: string;
|
|
1987
|
+
RecordID?: string;
|
|
1988
|
+
Action?: string;
|
|
1989
|
+
ExecutedAt?: Date;
|
|
1990
|
+
IsSuccess?: boolean;
|
|
1932
1991
|
}
|
|
1933
1992
|
export declare class UpdateCompanyIntegrationRunDetailInput {
|
|
1934
1993
|
ID: string;
|
|
1935
|
-
CompanyIntegrationRunID
|
|
1936
|
-
EntityID
|
|
1937
|
-
RecordID
|
|
1938
|
-
Action
|
|
1939
|
-
ExecutedAt
|
|
1940
|
-
IsSuccess
|
|
1994
|
+
CompanyIntegrationRunID?: string;
|
|
1995
|
+
EntityID?: string;
|
|
1996
|
+
RecordID?: string;
|
|
1997
|
+
Action?: string;
|
|
1998
|
+
ExecutedAt?: Date;
|
|
1999
|
+
IsSuccess?: boolean;
|
|
1941
2000
|
OldValues___?: KeyValuePairInput[];
|
|
1942
2001
|
}
|
|
1943
2002
|
export declare class RunCompanyIntegrationRunDetailViewResult {
|
|
@@ -1972,25 +2031,25 @@ export declare class ErrorLog_ {
|
|
|
1972
2031
|
_mj__UpdatedAt: Date;
|
|
1973
2032
|
}
|
|
1974
2033
|
export declare class CreateErrorLogInput {
|
|
1975
|
-
CompanyIntegrationRunID
|
|
1976
|
-
CompanyIntegrationRunDetailID
|
|
1977
|
-
Code
|
|
1978
|
-
Message
|
|
1979
|
-
CreatedBy?: string;
|
|
1980
|
-
Status
|
|
1981
|
-
Category
|
|
1982
|
-
Details
|
|
2034
|
+
CompanyIntegrationRunID: string | null;
|
|
2035
|
+
CompanyIntegrationRunDetailID: string | null;
|
|
2036
|
+
Code: string | null;
|
|
2037
|
+
Message: string | null;
|
|
2038
|
+
CreatedBy?: string | null;
|
|
2039
|
+
Status: string | null;
|
|
2040
|
+
Category: string | null;
|
|
2041
|
+
Details: string | null;
|
|
1983
2042
|
}
|
|
1984
2043
|
export declare class UpdateErrorLogInput {
|
|
1985
2044
|
ID: string;
|
|
1986
|
-
CompanyIntegrationRunID?: string;
|
|
1987
|
-
CompanyIntegrationRunDetailID?: string;
|
|
1988
|
-
Code?: string;
|
|
1989
|
-
Message?: string;
|
|
1990
|
-
CreatedBy?: string;
|
|
1991
|
-
Status?: string;
|
|
1992
|
-
Category?: string;
|
|
1993
|
-
Details?: string;
|
|
2045
|
+
CompanyIntegrationRunID?: string | null;
|
|
2046
|
+
CompanyIntegrationRunDetailID?: string | null;
|
|
2047
|
+
Code?: string | null;
|
|
2048
|
+
Message?: string | null;
|
|
2049
|
+
CreatedBy?: string | null;
|
|
2050
|
+
Status?: string | null;
|
|
2051
|
+
Category?: string | null;
|
|
2052
|
+
Details?: string | null;
|
|
1994
2053
|
OldValues___?: KeyValuePairInput[];
|
|
1995
2054
|
}
|
|
1996
2055
|
export declare class RunErrorLogViewResult {
|
|
@@ -2023,17 +2082,17 @@ export declare class Application_ {
|
|
|
2023
2082
|
ApplicationEntities_ApplicationIDArray: ApplicationEntity_[];
|
|
2024
2083
|
}
|
|
2025
2084
|
export declare class CreateApplicationInput {
|
|
2026
|
-
Name
|
|
2027
|
-
Description
|
|
2028
|
-
Icon
|
|
2029
|
-
DefaultForNewUser
|
|
2085
|
+
Name?: string;
|
|
2086
|
+
Description: string | null;
|
|
2087
|
+
Icon: string | null;
|
|
2088
|
+
DefaultForNewUser?: boolean;
|
|
2030
2089
|
}
|
|
2031
2090
|
export declare class UpdateApplicationInput {
|
|
2032
2091
|
ID: string;
|
|
2033
|
-
Name
|
|
2034
|
-
Description?: string;
|
|
2035
|
-
Icon?: string;
|
|
2036
|
-
DefaultForNewUser
|
|
2092
|
+
Name?: string;
|
|
2093
|
+
Description?: string | null;
|
|
2094
|
+
Icon?: string | null;
|
|
2095
|
+
DefaultForNewUser?: boolean;
|
|
2037
2096
|
OldValues___?: KeyValuePairInput[];
|
|
2038
2097
|
}
|
|
2039
2098
|
export declare class RunApplicationViewResult {
|
|
@@ -2074,17 +2133,17 @@ export declare class ApplicationEntity_ {
|
|
|
2074
2133
|
EntityBaseTableCodeName?: string;
|
|
2075
2134
|
}
|
|
2076
2135
|
export declare class CreateApplicationEntityInput {
|
|
2077
|
-
ApplicationID
|
|
2078
|
-
EntityID
|
|
2079
|
-
Sequence
|
|
2080
|
-
DefaultForNewUser
|
|
2136
|
+
ApplicationID?: string;
|
|
2137
|
+
EntityID?: string;
|
|
2138
|
+
Sequence?: number;
|
|
2139
|
+
DefaultForNewUser?: boolean;
|
|
2081
2140
|
}
|
|
2082
2141
|
export declare class UpdateApplicationEntityInput {
|
|
2083
2142
|
ID: string;
|
|
2084
|
-
ApplicationID
|
|
2085
|
-
EntityID
|
|
2086
|
-
Sequence
|
|
2087
|
-
DefaultForNewUser
|
|
2143
|
+
ApplicationID?: string;
|
|
2144
|
+
EntityID?: string;
|
|
2145
|
+
Sequence?: number;
|
|
2146
|
+
DefaultForNewUser?: boolean;
|
|
2088
2147
|
OldValues___?: KeyValuePairInput[];
|
|
2089
2148
|
}
|
|
2090
2149
|
export declare class RunApplicationEntityViewResult {
|
|
@@ -2128,29 +2187,29 @@ export declare class EntityPermission_ {
|
|
|
2128
2187
|
DeleteRLSFilter?: string;
|
|
2129
2188
|
}
|
|
2130
2189
|
export declare class CreateEntityPermissionInput {
|
|
2131
|
-
EntityID
|
|
2132
|
-
RoleID
|
|
2133
|
-
CanCreate
|
|
2134
|
-
CanRead
|
|
2135
|
-
CanUpdate
|
|
2136
|
-
CanDelete
|
|
2137
|
-
ReadRLSFilterID
|
|
2138
|
-
CreateRLSFilterID
|
|
2139
|
-
UpdateRLSFilterID
|
|
2140
|
-
DeleteRLSFilterID
|
|
2190
|
+
EntityID?: string;
|
|
2191
|
+
RoleID?: string;
|
|
2192
|
+
CanCreate?: boolean;
|
|
2193
|
+
CanRead?: boolean;
|
|
2194
|
+
CanUpdate?: boolean;
|
|
2195
|
+
CanDelete?: boolean;
|
|
2196
|
+
ReadRLSFilterID: string | null;
|
|
2197
|
+
CreateRLSFilterID: string | null;
|
|
2198
|
+
UpdateRLSFilterID: string | null;
|
|
2199
|
+
DeleteRLSFilterID: string | null;
|
|
2141
2200
|
}
|
|
2142
2201
|
export declare class UpdateEntityPermissionInput {
|
|
2143
2202
|
ID: string;
|
|
2144
|
-
EntityID
|
|
2145
|
-
RoleID
|
|
2146
|
-
CanCreate
|
|
2147
|
-
CanRead
|
|
2148
|
-
CanUpdate
|
|
2149
|
-
CanDelete
|
|
2150
|
-
ReadRLSFilterID?: string;
|
|
2151
|
-
CreateRLSFilterID?: string;
|
|
2152
|
-
UpdateRLSFilterID?: string;
|
|
2153
|
-
DeleteRLSFilterID?: string;
|
|
2203
|
+
EntityID?: string;
|
|
2204
|
+
RoleID?: string;
|
|
2205
|
+
CanCreate?: boolean;
|
|
2206
|
+
CanRead?: boolean;
|
|
2207
|
+
CanUpdate?: boolean;
|
|
2208
|
+
CanDelete?: boolean;
|
|
2209
|
+
ReadRLSFilterID?: string | null;
|
|
2210
|
+
CreateRLSFilterID?: string | null;
|
|
2211
|
+
UpdateRLSFilterID?: string | null;
|
|
2212
|
+
DeleteRLSFilterID?: string | null;
|
|
2154
2213
|
OldValues___?: KeyValuePairInput[];
|
|
2155
2214
|
}
|
|
2156
2215
|
export declare class RunEntityPermissionViewResult {
|
|
@@ -2184,15 +2243,15 @@ export declare class UserApplicationEntity_ {
|
|
|
2184
2243
|
Entity: string;
|
|
2185
2244
|
}
|
|
2186
2245
|
export declare class CreateUserApplicationEntityInput {
|
|
2187
|
-
UserApplicationID
|
|
2188
|
-
EntityID
|
|
2189
|
-
Sequence
|
|
2246
|
+
UserApplicationID?: string;
|
|
2247
|
+
EntityID?: string;
|
|
2248
|
+
Sequence?: number;
|
|
2190
2249
|
}
|
|
2191
2250
|
export declare class UpdateUserApplicationEntityInput {
|
|
2192
2251
|
ID: string;
|
|
2193
|
-
UserApplicationID
|
|
2194
|
-
EntityID
|
|
2195
|
-
Sequence
|
|
2252
|
+
UserApplicationID?: string;
|
|
2253
|
+
EntityID?: string;
|
|
2254
|
+
Sequence?: number;
|
|
2196
2255
|
OldValues___?: KeyValuePairInput[];
|
|
2197
2256
|
}
|
|
2198
2257
|
export declare class RunUserApplicationEntityViewResult {
|
|
@@ -2226,17 +2285,17 @@ export declare class UserApplication_ {
|
|
|
2226
2285
|
UserApplicationEntities_UserApplicationIDArray: UserApplicationEntity_[];
|
|
2227
2286
|
}
|
|
2228
2287
|
export declare class CreateUserApplicationInput {
|
|
2229
|
-
UserID
|
|
2230
|
-
ApplicationID
|
|
2231
|
-
Sequence
|
|
2232
|
-
IsActive
|
|
2288
|
+
UserID?: string;
|
|
2289
|
+
ApplicationID?: string;
|
|
2290
|
+
Sequence?: number;
|
|
2291
|
+
IsActive?: boolean;
|
|
2233
2292
|
}
|
|
2234
2293
|
export declare class UpdateUserApplicationInput {
|
|
2235
2294
|
ID: string;
|
|
2236
|
-
UserID
|
|
2237
|
-
ApplicationID
|
|
2238
|
-
Sequence
|
|
2239
|
-
IsActive
|
|
2295
|
+
UserID?: string;
|
|
2296
|
+
ApplicationID?: string;
|
|
2297
|
+
Sequence?: number;
|
|
2298
|
+
IsActive?: boolean;
|
|
2240
2299
|
OldValues___?: KeyValuePairInput[];
|
|
2241
2300
|
}
|
|
2242
2301
|
export declare class RunUserApplicationViewResult {
|
|
@@ -2270,21 +2329,21 @@ export declare class CompanyIntegrationRunAPILog_ {
|
|
|
2270
2329
|
_mj__UpdatedAt: Date;
|
|
2271
2330
|
}
|
|
2272
2331
|
export declare class CreateCompanyIntegrationRunAPILogInput {
|
|
2273
|
-
CompanyIntegrationRunID
|
|
2274
|
-
ExecutedAt
|
|
2275
|
-
IsSuccess
|
|
2276
|
-
RequestMethod
|
|
2277
|
-
URL
|
|
2278
|
-
Parameters
|
|
2332
|
+
CompanyIntegrationRunID?: string;
|
|
2333
|
+
ExecutedAt?: Date;
|
|
2334
|
+
IsSuccess?: boolean;
|
|
2335
|
+
RequestMethod: string | null;
|
|
2336
|
+
URL: string | null;
|
|
2337
|
+
Parameters: string | null;
|
|
2279
2338
|
}
|
|
2280
2339
|
export declare class UpdateCompanyIntegrationRunAPILogInput {
|
|
2281
2340
|
ID: string;
|
|
2282
|
-
CompanyIntegrationRunID
|
|
2283
|
-
ExecutedAt
|
|
2284
|
-
IsSuccess
|
|
2285
|
-
RequestMethod?: string;
|
|
2286
|
-
URL?: string;
|
|
2287
|
-
Parameters?: string;
|
|
2341
|
+
CompanyIntegrationRunID?: string;
|
|
2342
|
+
ExecutedAt?: Date;
|
|
2343
|
+
IsSuccess?: boolean;
|
|
2344
|
+
RequestMethod?: string | null;
|
|
2345
|
+
URL?: string | null;
|
|
2346
|
+
Parameters?: string | null;
|
|
2288
2347
|
OldValues___?: KeyValuePairInput[];
|
|
2289
2348
|
}
|
|
2290
2349
|
export declare class RunCompanyIntegrationRunAPILogViewResult {
|
|
@@ -2322,23 +2381,23 @@ export declare class List_ {
|
|
|
2322
2381
|
DuplicateRuns_SourceListIDArray: DuplicateRun_[];
|
|
2323
2382
|
}
|
|
2324
2383
|
export declare class CreateListInput {
|
|
2325
|
-
Name
|
|
2326
|
-
Description
|
|
2327
|
-
EntityID
|
|
2328
|
-
UserID
|
|
2329
|
-
CategoryID
|
|
2330
|
-
ExternalSystemRecordID
|
|
2331
|
-
CompanyIntegrationID
|
|
2384
|
+
Name?: string;
|
|
2385
|
+
Description: string | null;
|
|
2386
|
+
EntityID?: string;
|
|
2387
|
+
UserID?: string;
|
|
2388
|
+
CategoryID: string | null;
|
|
2389
|
+
ExternalSystemRecordID: string | null;
|
|
2390
|
+
CompanyIntegrationID: string | null;
|
|
2332
2391
|
}
|
|
2333
2392
|
export declare class UpdateListInput {
|
|
2334
2393
|
ID: string;
|
|
2335
|
-
Name
|
|
2336
|
-
Description?: string;
|
|
2337
|
-
EntityID
|
|
2338
|
-
UserID
|
|
2339
|
-
CategoryID?: string;
|
|
2340
|
-
ExternalSystemRecordID?: string;
|
|
2341
|
-
CompanyIntegrationID?: string;
|
|
2394
|
+
Name?: string;
|
|
2395
|
+
Description?: string | null;
|
|
2396
|
+
EntityID?: string;
|
|
2397
|
+
UserID?: string;
|
|
2398
|
+
CategoryID?: string | null;
|
|
2399
|
+
ExternalSystemRecordID?: string | null;
|
|
2400
|
+
CompanyIntegrationID?: string | null;
|
|
2342
2401
|
OldValues___?: KeyValuePairInput[];
|
|
2343
2402
|
}
|
|
2344
2403
|
export declare class RunListViewResult {
|
|
@@ -2373,19 +2432,19 @@ export declare class ListDetail_ {
|
|
|
2373
2432
|
List: string;
|
|
2374
2433
|
}
|
|
2375
2434
|
export declare class CreateListDetailInput {
|
|
2376
|
-
ListID
|
|
2377
|
-
RecordID
|
|
2378
|
-
Sequence
|
|
2379
|
-
Status
|
|
2380
|
-
AdditionalData
|
|
2435
|
+
ListID?: string;
|
|
2436
|
+
RecordID?: string;
|
|
2437
|
+
Sequence?: number;
|
|
2438
|
+
Status?: string;
|
|
2439
|
+
AdditionalData: string | null;
|
|
2381
2440
|
}
|
|
2382
2441
|
export declare class UpdateListDetailInput {
|
|
2383
2442
|
ID: string;
|
|
2384
|
-
ListID
|
|
2385
|
-
RecordID
|
|
2386
|
-
Sequence
|
|
2387
|
-
Status
|
|
2388
|
-
AdditionalData?: string;
|
|
2443
|
+
ListID?: string;
|
|
2444
|
+
RecordID?: string;
|
|
2445
|
+
Sequence?: number;
|
|
2446
|
+
Status?: string;
|
|
2447
|
+
AdditionalData?: string | null;
|
|
2389
2448
|
OldValues___?: KeyValuePairInput[];
|
|
2390
2449
|
}
|
|
2391
2450
|
export declare class RunListDetailViewResult {
|
|
@@ -2418,15 +2477,15 @@ export declare class UserViewRun_ {
|
|
|
2418
2477
|
UserViewRunDetails_UserViewRunIDArray: UserViewRunDetail_[];
|
|
2419
2478
|
}
|
|
2420
2479
|
export declare class CreateUserViewRunInput {
|
|
2421
|
-
UserViewID
|
|
2422
|
-
RunAt
|
|
2423
|
-
RunByUserID
|
|
2480
|
+
UserViewID?: string;
|
|
2481
|
+
RunAt?: Date;
|
|
2482
|
+
RunByUserID?: string;
|
|
2424
2483
|
}
|
|
2425
2484
|
export declare class UpdateUserViewRunInput {
|
|
2426
2485
|
ID: string;
|
|
2427
|
-
UserViewID
|
|
2428
|
-
RunAt
|
|
2429
|
-
RunByUserID
|
|
2486
|
+
UserViewID?: string;
|
|
2487
|
+
RunAt?: Date;
|
|
2488
|
+
RunByUserID?: string;
|
|
2430
2489
|
OldValues___?: KeyValuePairInput[];
|
|
2431
2490
|
}
|
|
2432
2491
|
export declare class RunUserViewRunViewResult {
|
|
@@ -2457,13 +2516,13 @@ export declare class UserViewRunDetail_ {
|
|
|
2457
2516
|
EntityID: string;
|
|
2458
2517
|
}
|
|
2459
2518
|
export declare class CreateUserViewRunDetailInput {
|
|
2460
|
-
UserViewRunID
|
|
2461
|
-
RecordID
|
|
2519
|
+
UserViewRunID?: string;
|
|
2520
|
+
RecordID?: string;
|
|
2462
2521
|
}
|
|
2463
2522
|
export declare class UpdateUserViewRunDetailInput {
|
|
2464
2523
|
ID: string;
|
|
2465
|
-
UserViewRunID
|
|
2466
|
-
RecordID
|
|
2524
|
+
UserViewRunID?: string;
|
|
2525
|
+
RecordID?: string;
|
|
2467
2526
|
OldValues___?: KeyValuePairInput[];
|
|
2468
2527
|
}
|
|
2469
2528
|
export declare class RunUserViewRunDetailViewResult {
|
|
@@ -2498,12 +2557,12 @@ export declare class WorkflowRun_ {
|
|
|
2498
2557
|
}
|
|
2499
2558
|
export declare class UpdateWorkflowRunInput {
|
|
2500
2559
|
ID: string;
|
|
2501
|
-
WorkflowID
|
|
2502
|
-
ExternalSystemRecordID
|
|
2503
|
-
StartedAt
|
|
2504
|
-
EndedAt?: Date;
|
|
2505
|
-
Status
|
|
2506
|
-
Results?: string;
|
|
2560
|
+
WorkflowID?: string;
|
|
2561
|
+
ExternalSystemRecordID?: string;
|
|
2562
|
+
StartedAt?: Date;
|
|
2563
|
+
EndedAt?: Date | null;
|
|
2564
|
+
Status?: string;
|
|
2565
|
+
Results?: string | null;
|
|
2507
2566
|
OldValues___?: KeyValuePairInput[];
|
|
2508
2567
|
}
|
|
2509
2568
|
export declare class RunWorkflowRunViewResult {
|
|
@@ -2540,14 +2599,14 @@ export declare class Workflow_ {
|
|
|
2540
2599
|
}
|
|
2541
2600
|
export declare class UpdateWorkflowInput {
|
|
2542
2601
|
ID: string;
|
|
2543
|
-
Name
|
|
2544
|
-
Description?: string;
|
|
2545
|
-
WorkflowEngineID
|
|
2546
|
-
ExternalSystemRecordID
|
|
2547
|
-
AutoRunEnabled
|
|
2548
|
-
AutoRunIntervalUnits?: string;
|
|
2549
|
-
AutoRunInterval?: number;
|
|
2550
|
-
SubclassName?: string;
|
|
2602
|
+
Name?: string;
|
|
2603
|
+
Description?: string | null;
|
|
2604
|
+
WorkflowEngineID?: string;
|
|
2605
|
+
ExternalSystemRecordID?: string;
|
|
2606
|
+
AutoRunEnabled?: boolean;
|
|
2607
|
+
AutoRunIntervalUnits?: string | null;
|
|
2608
|
+
AutoRunInterval?: number | null;
|
|
2609
|
+
SubclassName?: string | null;
|
|
2551
2610
|
OldValues___?: KeyValuePairInput[];
|
|
2552
2611
|
}
|
|
2553
2612
|
export declare class RunWorkflowViewResult {
|
|
@@ -2580,10 +2639,10 @@ export declare class WorkflowEngine_ {
|
|
|
2580
2639
|
}
|
|
2581
2640
|
export declare class UpdateWorkflowEngineInput {
|
|
2582
2641
|
ID: string;
|
|
2583
|
-
Name
|
|
2584
|
-
Description?: string;
|
|
2585
|
-
DriverPath
|
|
2586
|
-
DriverClass
|
|
2642
|
+
Name?: string;
|
|
2643
|
+
Description?: string | null;
|
|
2644
|
+
DriverPath?: string;
|
|
2645
|
+
DriverClass?: string;
|
|
2587
2646
|
OldValues___?: KeyValuePairInput[];
|
|
2588
2647
|
}
|
|
2589
2648
|
export declare class RunWorkflowEngineViewResult {
|
|
@@ -2627,37 +2686,37 @@ export declare class RecordChange_ {
|
|
|
2627
2686
|
Integration?: string;
|
|
2628
2687
|
}
|
|
2629
2688
|
export declare class CreateRecordChangeInput {
|
|
2630
|
-
EntityID
|
|
2631
|
-
RecordID
|
|
2632
|
-
UserID
|
|
2633
|
-
Type
|
|
2634
|
-
Source
|
|
2635
|
-
ChangedAt
|
|
2636
|
-
ChangesJSON
|
|
2637
|
-
ChangesDescription
|
|
2638
|
-
FullRecordJSON
|
|
2639
|
-
Status
|
|
2640
|
-
ErrorLog
|
|
2641
|
-
ReplayRunID
|
|
2642
|
-
IntegrationID
|
|
2643
|
-
Comments
|
|
2689
|
+
EntityID?: string;
|
|
2690
|
+
RecordID?: string;
|
|
2691
|
+
UserID?: string;
|
|
2692
|
+
Type?: string;
|
|
2693
|
+
Source?: string;
|
|
2694
|
+
ChangedAt?: Date;
|
|
2695
|
+
ChangesJSON?: string;
|
|
2696
|
+
ChangesDescription?: string;
|
|
2697
|
+
FullRecordJSON?: string;
|
|
2698
|
+
Status?: string;
|
|
2699
|
+
ErrorLog: string | null;
|
|
2700
|
+
ReplayRunID: string | null;
|
|
2701
|
+
IntegrationID: string | null;
|
|
2702
|
+
Comments: string | null;
|
|
2644
2703
|
}
|
|
2645
2704
|
export declare class UpdateRecordChangeInput {
|
|
2646
2705
|
ID: string;
|
|
2647
|
-
EntityID
|
|
2648
|
-
RecordID
|
|
2649
|
-
UserID
|
|
2650
|
-
Type
|
|
2651
|
-
Source
|
|
2652
|
-
ChangedAt
|
|
2653
|
-
ChangesJSON
|
|
2654
|
-
ChangesDescription
|
|
2655
|
-
FullRecordJSON
|
|
2656
|
-
Status
|
|
2657
|
-
ErrorLog?: string;
|
|
2658
|
-
ReplayRunID?: string;
|
|
2659
|
-
IntegrationID?: string;
|
|
2660
|
-
Comments?: string;
|
|
2706
|
+
EntityID?: string;
|
|
2707
|
+
RecordID?: string;
|
|
2708
|
+
UserID?: string;
|
|
2709
|
+
Type?: string;
|
|
2710
|
+
Source?: string;
|
|
2711
|
+
ChangedAt?: Date;
|
|
2712
|
+
ChangesJSON?: string;
|
|
2713
|
+
ChangesDescription?: string;
|
|
2714
|
+
FullRecordJSON?: string;
|
|
2715
|
+
Status?: string;
|
|
2716
|
+
ErrorLog?: string | null;
|
|
2717
|
+
ReplayRunID?: string | null;
|
|
2718
|
+
IntegrationID?: string | null;
|
|
2719
|
+
Comments?: string | null;
|
|
2661
2720
|
OldValues___?: KeyValuePairInput[];
|
|
2662
2721
|
}
|
|
2663
2722
|
export declare class RunRecordChangeViewResult {
|
|
@@ -2687,8 +2746,8 @@ export declare class UserRole_ {
|
|
|
2687
2746
|
Role: string;
|
|
2688
2747
|
}
|
|
2689
2748
|
export declare class CreateUserRoleInput {
|
|
2690
|
-
UserID
|
|
2691
|
-
RoleID
|
|
2749
|
+
UserID?: string;
|
|
2750
|
+
RoleID?: string;
|
|
2692
2751
|
}
|
|
2693
2752
|
export declare class RunUserRoleViewResult {
|
|
2694
2753
|
Results: UserRole_[];
|
|
@@ -2752,25 +2811,25 @@ export declare class AuditLog_ {
|
|
|
2752
2811
|
Entity?: string;
|
|
2753
2812
|
}
|
|
2754
2813
|
export declare class CreateAuditLogInput {
|
|
2755
|
-
UserID
|
|
2756
|
-
AuditLogTypeID
|
|
2757
|
-
AuthorizationID
|
|
2758
|
-
Status
|
|
2759
|
-
Description
|
|
2760
|
-
Details
|
|
2761
|
-
EntityID
|
|
2762
|
-
RecordID
|
|
2814
|
+
UserID?: string;
|
|
2815
|
+
AuditLogTypeID?: string;
|
|
2816
|
+
AuthorizationID: string | null;
|
|
2817
|
+
Status?: string;
|
|
2818
|
+
Description: string | null;
|
|
2819
|
+
Details: string | null;
|
|
2820
|
+
EntityID: string | null;
|
|
2821
|
+
RecordID: string | null;
|
|
2763
2822
|
}
|
|
2764
2823
|
export declare class UpdateAuditLogInput {
|
|
2765
2824
|
ID: string;
|
|
2766
|
-
UserID
|
|
2767
|
-
AuditLogTypeID
|
|
2768
|
-
AuthorizationID?: string;
|
|
2769
|
-
Status
|
|
2770
|
-
Description?: string;
|
|
2771
|
-
Details?: string;
|
|
2772
|
-
EntityID?: string;
|
|
2773
|
-
RecordID?: string;
|
|
2825
|
+
UserID?: string;
|
|
2826
|
+
AuditLogTypeID?: string;
|
|
2827
|
+
AuthorizationID?: string | null;
|
|
2828
|
+
Status?: string;
|
|
2829
|
+
Description?: string | null;
|
|
2830
|
+
Details?: string | null;
|
|
2831
|
+
EntityID?: string | null;
|
|
2832
|
+
RecordID?: string | null;
|
|
2774
2833
|
OldValues___?: KeyValuePairInput[];
|
|
2775
2834
|
}
|
|
2776
2835
|
export declare class RunAuditLogViewResult {
|
|
@@ -2899,11 +2958,11 @@ export declare class EntityFieldValue_ {
|
|
|
2899
2958
|
}
|
|
2900
2959
|
export declare class UpdateEntityFieldValueInput {
|
|
2901
2960
|
ID: string;
|
|
2902
|
-
EntityFieldID
|
|
2903
|
-
Sequence
|
|
2904
|
-
Value
|
|
2905
|
-
Code?: string;
|
|
2906
|
-
Description?: string;
|
|
2961
|
+
EntityFieldID?: string;
|
|
2962
|
+
Sequence?: number;
|
|
2963
|
+
Value?: string;
|
|
2964
|
+
Code?: string | null;
|
|
2965
|
+
Description?: string | null;
|
|
2907
2966
|
OldValues___?: KeyValuePairInput[];
|
|
2908
2967
|
}
|
|
2909
2968
|
export declare class RunEntityFieldValueViewResult {
|
|
@@ -2952,37 +3011,37 @@ export declare class AIModel_ {
|
|
|
2952
3011
|
AIAgentModels_ModelIDArray: AIAgentModel_[];
|
|
2953
3012
|
}
|
|
2954
3013
|
export declare class CreateAIModelInput {
|
|
2955
|
-
Name
|
|
2956
|
-
Description
|
|
2957
|
-
Vendor
|
|
2958
|
-
AIModelTypeID
|
|
2959
|
-
PowerRank?: number;
|
|
2960
|
-
IsActive
|
|
2961
|
-
DriverClass
|
|
2962
|
-
DriverImportPath
|
|
2963
|
-
APIName
|
|
2964
|
-
SpeedRank?: number;
|
|
2965
|
-
CostRank?: number;
|
|
2966
|
-
ModelSelectionInsights
|
|
2967
|
-
InputTokenLimit
|
|
2968
|
-
SupportedResponseFormats
|
|
3014
|
+
Name?: string;
|
|
3015
|
+
Description: string | null;
|
|
3016
|
+
Vendor: string | null;
|
|
3017
|
+
AIModelTypeID?: string;
|
|
3018
|
+
PowerRank?: number | null;
|
|
3019
|
+
IsActive?: boolean;
|
|
3020
|
+
DriverClass: string | null;
|
|
3021
|
+
DriverImportPath: string | null;
|
|
3022
|
+
APIName: string | null;
|
|
3023
|
+
SpeedRank?: number | null;
|
|
3024
|
+
CostRank?: number | null;
|
|
3025
|
+
ModelSelectionInsights: string | null;
|
|
3026
|
+
InputTokenLimit: number | null;
|
|
3027
|
+
SupportedResponseFormats?: string;
|
|
2969
3028
|
}
|
|
2970
3029
|
export declare class UpdateAIModelInput {
|
|
2971
3030
|
ID: string;
|
|
2972
|
-
Name
|
|
2973
|
-
Description?: string;
|
|
2974
|
-
Vendor?: string;
|
|
2975
|
-
AIModelTypeID
|
|
2976
|
-
PowerRank?: number;
|
|
2977
|
-
IsActive
|
|
2978
|
-
DriverClass?: string;
|
|
2979
|
-
DriverImportPath?: string;
|
|
2980
|
-
APIName?: string;
|
|
2981
|
-
SpeedRank?: number;
|
|
2982
|
-
CostRank?: number;
|
|
2983
|
-
ModelSelectionInsights?: string;
|
|
2984
|
-
InputTokenLimit?: number;
|
|
2985
|
-
SupportedResponseFormats
|
|
3031
|
+
Name?: string;
|
|
3032
|
+
Description?: string | null;
|
|
3033
|
+
Vendor?: string | null;
|
|
3034
|
+
AIModelTypeID?: string;
|
|
3035
|
+
PowerRank?: number | null;
|
|
3036
|
+
IsActive?: boolean;
|
|
3037
|
+
DriverClass?: string | null;
|
|
3038
|
+
DriverImportPath?: string | null;
|
|
3039
|
+
APIName?: string | null;
|
|
3040
|
+
SpeedRank?: number | null;
|
|
3041
|
+
CostRank?: number | null;
|
|
3042
|
+
ModelSelectionInsights?: string | null;
|
|
3043
|
+
InputTokenLimit?: number | null;
|
|
3044
|
+
SupportedResponseFormats?: string;
|
|
2986
3045
|
OldValues___?: KeyValuePairInput[];
|
|
2987
3046
|
}
|
|
2988
3047
|
export declare class RunAIModelViewResult {
|
|
@@ -3026,19 +3085,19 @@ export declare class AIAction_ {
|
|
|
3026
3085
|
EntityAIActions_AIActionIDArray: EntityAIAction_[];
|
|
3027
3086
|
}
|
|
3028
3087
|
export declare class CreateAIActionInput {
|
|
3029
|
-
Name
|
|
3030
|
-
Description
|
|
3031
|
-
DefaultPrompt
|
|
3032
|
-
DefaultModelID
|
|
3033
|
-
IsActive
|
|
3088
|
+
Name?: string;
|
|
3089
|
+
Description: string | null;
|
|
3090
|
+
DefaultPrompt: string | null;
|
|
3091
|
+
DefaultModelID: string | null;
|
|
3092
|
+
IsActive?: boolean;
|
|
3034
3093
|
}
|
|
3035
3094
|
export declare class UpdateAIActionInput {
|
|
3036
3095
|
ID: string;
|
|
3037
|
-
Name
|
|
3038
|
-
Description?: string;
|
|
3039
|
-
DefaultPrompt?: string;
|
|
3040
|
-
DefaultModelID?: string;
|
|
3041
|
-
IsActive
|
|
3096
|
+
Name?: string;
|
|
3097
|
+
Description?: string | null;
|
|
3098
|
+
DefaultPrompt?: string | null;
|
|
3099
|
+
DefaultModelID?: string | null;
|
|
3100
|
+
IsActive?: boolean;
|
|
3042
3101
|
OldValues___?: KeyValuePairInput[];
|
|
3043
3102
|
}
|
|
3044
3103
|
export declare class RunAIActionViewResult {
|
|
@@ -3073,15 +3132,15 @@ export declare class AIModelAction_ {
|
|
|
3073
3132
|
AIAction: string;
|
|
3074
3133
|
}
|
|
3075
3134
|
export declare class CreateAIModelActionInput {
|
|
3076
|
-
AIModelID
|
|
3077
|
-
AIActionID
|
|
3078
|
-
IsActive
|
|
3135
|
+
AIModelID?: string;
|
|
3136
|
+
AIActionID?: string;
|
|
3137
|
+
IsActive?: boolean;
|
|
3079
3138
|
}
|
|
3080
3139
|
export declare class UpdateAIModelActionInput {
|
|
3081
3140
|
ID: string;
|
|
3082
|
-
AIModelID
|
|
3083
|
-
AIActionID
|
|
3084
|
-
IsActive
|
|
3141
|
+
AIModelID?: string;
|
|
3142
|
+
AIActionID?: string;
|
|
3143
|
+
IsActive?: boolean;
|
|
3085
3144
|
OldValues___?: KeyValuePairInput[];
|
|
3086
3145
|
}
|
|
3087
3146
|
export declare class RunAIModelActionViewResult {
|
|
@@ -3125,33 +3184,33 @@ export declare class EntityAIAction_ {
|
|
|
3125
3184
|
OutputEntity?: string;
|
|
3126
3185
|
}
|
|
3127
3186
|
export declare class CreateEntityAIActionInput {
|
|
3128
|
-
EntityID
|
|
3129
|
-
AIModelID
|
|
3130
|
-
AIActionID
|
|
3131
|
-
Name
|
|
3132
|
-
Prompt
|
|
3133
|
-
TriggerEvent
|
|
3134
|
-
UserMessage
|
|
3135
|
-
OutputType
|
|
3136
|
-
OutputField
|
|
3137
|
-
SkipIfOutputFieldNotEmpty
|
|
3138
|
-
OutputEntityID
|
|
3139
|
-
Comments
|
|
3187
|
+
EntityID?: string;
|
|
3188
|
+
AIModelID?: string;
|
|
3189
|
+
AIActionID?: string;
|
|
3190
|
+
Name?: string;
|
|
3191
|
+
Prompt: string | null;
|
|
3192
|
+
TriggerEvent?: string;
|
|
3193
|
+
UserMessage?: string;
|
|
3194
|
+
OutputType?: string;
|
|
3195
|
+
OutputField: string | null;
|
|
3196
|
+
SkipIfOutputFieldNotEmpty?: boolean;
|
|
3197
|
+
OutputEntityID: string | null;
|
|
3198
|
+
Comments: string | null;
|
|
3140
3199
|
}
|
|
3141
3200
|
export declare class UpdateEntityAIActionInput {
|
|
3142
3201
|
ID: string;
|
|
3143
|
-
EntityID
|
|
3144
|
-
AIModelID
|
|
3145
|
-
AIActionID
|
|
3146
|
-
Name
|
|
3147
|
-
Prompt?: string;
|
|
3148
|
-
TriggerEvent
|
|
3149
|
-
UserMessage
|
|
3150
|
-
OutputType
|
|
3151
|
-
OutputField?: string;
|
|
3152
|
-
SkipIfOutputFieldNotEmpty
|
|
3153
|
-
OutputEntityID?: string;
|
|
3154
|
-
Comments?: string;
|
|
3202
|
+
EntityID?: string;
|
|
3203
|
+
AIModelID?: string;
|
|
3204
|
+
AIActionID?: string;
|
|
3205
|
+
Name?: string;
|
|
3206
|
+
Prompt?: string | null;
|
|
3207
|
+
TriggerEvent?: string;
|
|
3208
|
+
UserMessage?: string;
|
|
3209
|
+
OutputType?: string;
|
|
3210
|
+
OutputField?: string | null;
|
|
3211
|
+
SkipIfOutputFieldNotEmpty?: boolean;
|
|
3212
|
+
OutputEntityID?: string | null;
|
|
3213
|
+
Comments?: string | null;
|
|
3155
3214
|
OldValues___?: KeyValuePairInput[];
|
|
3156
3215
|
}
|
|
3157
3216
|
export declare class RunEntityAIActionViewResult {
|
|
@@ -3182,13 +3241,13 @@ export declare class AIModelType_ {
|
|
|
3182
3241
|
AIModels_AIModelTypeIDArray: AIModel_[];
|
|
3183
3242
|
}
|
|
3184
3243
|
export declare class CreateAIModelTypeInput {
|
|
3185
|
-
Name
|
|
3186
|
-
Description
|
|
3244
|
+
Name?: string;
|
|
3245
|
+
Description: string | null;
|
|
3187
3246
|
}
|
|
3188
3247
|
export declare class UpdateAIModelTypeInput {
|
|
3189
3248
|
ID: string;
|
|
3190
|
-
Name
|
|
3191
|
-
Description?: string;
|
|
3249
|
+
Name?: string;
|
|
3250
|
+
Description?: string | null;
|
|
3192
3251
|
OldValues___?: KeyValuePairInput[];
|
|
3193
3252
|
}
|
|
3194
3253
|
export declare class RunAIModelTypeViewResult {
|
|
@@ -3262,41 +3321,41 @@ export declare class Queue_ {
|
|
|
3262
3321
|
QueueTasks_QueueIDArray: QueueTask_[];
|
|
3263
3322
|
}
|
|
3264
3323
|
export declare class CreateQueueInput {
|
|
3265
|
-
Name
|
|
3266
|
-
Description
|
|
3267
|
-
QueueTypeID
|
|
3268
|
-
IsActive
|
|
3269
|
-
ProcessPID
|
|
3270
|
-
ProcessPlatform
|
|
3271
|
-
ProcessVersion
|
|
3272
|
-
ProcessCwd
|
|
3273
|
-
ProcessIPAddress
|
|
3274
|
-
ProcessMacAddress
|
|
3275
|
-
ProcessOSName
|
|
3276
|
-
ProcessOSVersion
|
|
3277
|
-
ProcessHostName
|
|
3278
|
-
ProcessUserID
|
|
3279
|
-
ProcessUserName
|
|
3280
|
-
LastHeartbeat
|
|
3324
|
+
Name?: string;
|
|
3325
|
+
Description: string | null;
|
|
3326
|
+
QueueTypeID?: string;
|
|
3327
|
+
IsActive?: boolean;
|
|
3328
|
+
ProcessPID: number | null;
|
|
3329
|
+
ProcessPlatform: string | null;
|
|
3330
|
+
ProcessVersion: string | null;
|
|
3331
|
+
ProcessCwd: string | null;
|
|
3332
|
+
ProcessIPAddress: string | null;
|
|
3333
|
+
ProcessMacAddress: string | null;
|
|
3334
|
+
ProcessOSName: string | null;
|
|
3335
|
+
ProcessOSVersion: string | null;
|
|
3336
|
+
ProcessHostName: string | null;
|
|
3337
|
+
ProcessUserID: string | null;
|
|
3338
|
+
ProcessUserName: string | null;
|
|
3339
|
+
LastHeartbeat?: Date;
|
|
3281
3340
|
}
|
|
3282
3341
|
export declare class UpdateQueueInput {
|
|
3283
3342
|
ID: string;
|
|
3284
|
-
Name
|
|
3285
|
-
Description?: string;
|
|
3286
|
-
QueueTypeID
|
|
3287
|
-
IsActive
|
|
3288
|
-
ProcessPID?: number;
|
|
3289
|
-
ProcessPlatform?: string;
|
|
3290
|
-
ProcessVersion?: string;
|
|
3291
|
-
ProcessCwd?: string;
|
|
3292
|
-
ProcessIPAddress?: string;
|
|
3293
|
-
ProcessMacAddress?: string;
|
|
3294
|
-
ProcessOSName?: string;
|
|
3295
|
-
ProcessOSVersion?: string;
|
|
3296
|
-
ProcessHostName?: string;
|
|
3297
|
-
ProcessUserID?: string;
|
|
3298
|
-
ProcessUserName?: string;
|
|
3299
|
-
LastHeartbeat
|
|
3343
|
+
Name?: string;
|
|
3344
|
+
Description?: string | null;
|
|
3345
|
+
QueueTypeID?: string;
|
|
3346
|
+
IsActive?: boolean;
|
|
3347
|
+
ProcessPID?: number | null;
|
|
3348
|
+
ProcessPlatform?: string | null;
|
|
3349
|
+
ProcessVersion?: string | null;
|
|
3350
|
+
ProcessCwd?: string | null;
|
|
3351
|
+
ProcessIPAddress?: string | null;
|
|
3352
|
+
ProcessMacAddress?: string | null;
|
|
3353
|
+
ProcessOSName?: string | null;
|
|
3354
|
+
ProcessOSVersion?: string | null;
|
|
3355
|
+
ProcessHostName?: string | null;
|
|
3356
|
+
ProcessUserID?: string | null;
|
|
3357
|
+
ProcessUserName?: string | null;
|
|
3358
|
+
LastHeartbeat?: Date;
|
|
3300
3359
|
OldValues___?: KeyValuePairInput[];
|
|
3301
3360
|
}
|
|
3302
3361
|
export declare class RunQueueViewResult {
|
|
@@ -3333,27 +3392,27 @@ export declare class QueueTask_ {
|
|
|
3333
3392
|
Queue: string;
|
|
3334
3393
|
}
|
|
3335
3394
|
export declare class CreateQueueTaskInput {
|
|
3336
|
-
QueueID
|
|
3337
|
-
Status
|
|
3338
|
-
StartedAt
|
|
3339
|
-
EndedAt
|
|
3340
|
-
Data
|
|
3341
|
-
Options
|
|
3342
|
-
Output
|
|
3343
|
-
ErrorMessage
|
|
3344
|
-
Comments
|
|
3395
|
+
QueueID?: string;
|
|
3396
|
+
Status?: string;
|
|
3397
|
+
StartedAt: Date | null;
|
|
3398
|
+
EndedAt: Date | null;
|
|
3399
|
+
Data: string | null;
|
|
3400
|
+
Options: string | null;
|
|
3401
|
+
Output: string | null;
|
|
3402
|
+
ErrorMessage: string | null;
|
|
3403
|
+
Comments: string | null;
|
|
3345
3404
|
}
|
|
3346
3405
|
export declare class UpdateQueueTaskInput {
|
|
3347
3406
|
ID: string;
|
|
3348
|
-
QueueID
|
|
3349
|
-
Status
|
|
3350
|
-
StartedAt?: Date;
|
|
3351
|
-
EndedAt?: Date;
|
|
3352
|
-
Data?: string;
|
|
3353
|
-
Options?: string;
|
|
3354
|
-
Output?: string;
|
|
3355
|
-
ErrorMessage?: string;
|
|
3356
|
-
Comments?: string;
|
|
3407
|
+
QueueID?: string;
|
|
3408
|
+
Status?: string;
|
|
3409
|
+
StartedAt?: Date | null;
|
|
3410
|
+
EndedAt?: Date | null;
|
|
3411
|
+
Data?: string | null;
|
|
3412
|
+
Options?: string | null;
|
|
3413
|
+
Output?: string | null;
|
|
3414
|
+
ErrorMessage?: string | null;
|
|
3415
|
+
Comments?: string | null;
|
|
3357
3416
|
OldValues___?: KeyValuePairInput[];
|
|
3358
3417
|
}
|
|
3359
3418
|
export declare class RunQueueTaskViewResult {
|
|
@@ -3386,19 +3445,19 @@ export declare class Dashboard_ {
|
|
|
3386
3445
|
Category?: string;
|
|
3387
3446
|
}
|
|
3388
3447
|
export declare class CreateDashboardInput {
|
|
3389
|
-
Name
|
|
3390
|
-
Description
|
|
3391
|
-
UserID
|
|
3392
|
-
CategoryID
|
|
3393
|
-
UIConfigDetails
|
|
3448
|
+
Name?: string;
|
|
3449
|
+
Description: string | null;
|
|
3450
|
+
UserID?: string;
|
|
3451
|
+
CategoryID: string | null;
|
|
3452
|
+
UIConfigDetails?: string;
|
|
3394
3453
|
}
|
|
3395
3454
|
export declare class UpdateDashboardInput {
|
|
3396
3455
|
ID: string;
|
|
3397
|
-
Name
|
|
3398
|
-
Description?: string;
|
|
3399
|
-
UserID
|
|
3400
|
-
CategoryID?: string;
|
|
3401
|
-
UIConfigDetails
|
|
3456
|
+
Name?: string;
|
|
3457
|
+
Description?: string | null;
|
|
3458
|
+
UserID?: string;
|
|
3459
|
+
CategoryID?: string | null;
|
|
3460
|
+
UIConfigDetails?: string;
|
|
3402
3461
|
OldValues___?: KeyValuePairInput[];
|
|
3403
3462
|
}
|
|
3404
3463
|
export declare class RunDashboardViewResult {
|
|
@@ -3522,39 +3581,39 @@ export declare class Report_ {
|
|
|
3522
3581
|
ReportSnapshots_ReportIDArray: ReportSnapshot_[];
|
|
3523
3582
|
}
|
|
3524
3583
|
export declare class CreateReportInput {
|
|
3525
|
-
Name
|
|
3526
|
-
Description
|
|
3527
|
-
CategoryID
|
|
3528
|
-
UserID
|
|
3529
|
-
SharingScope
|
|
3530
|
-
ConversationID
|
|
3531
|
-
ConversationDetailID
|
|
3532
|
-
DataContextID
|
|
3533
|
-
Configuration
|
|
3534
|
-
OutputTriggerTypeID
|
|
3535
|
-
OutputFormatTypeID
|
|
3536
|
-
OutputDeliveryTypeID
|
|
3537
|
-
OutputFrequency
|
|
3538
|
-
OutputTargetEmail
|
|
3539
|
-
OutputWorkflowID
|
|
3584
|
+
Name?: string;
|
|
3585
|
+
Description: string | null;
|
|
3586
|
+
CategoryID: string | null;
|
|
3587
|
+
UserID?: string;
|
|
3588
|
+
SharingScope?: string;
|
|
3589
|
+
ConversationID: string | null;
|
|
3590
|
+
ConversationDetailID: string | null;
|
|
3591
|
+
DataContextID: string | null;
|
|
3592
|
+
Configuration: string | null;
|
|
3593
|
+
OutputTriggerTypeID: string | null;
|
|
3594
|
+
OutputFormatTypeID: string | null;
|
|
3595
|
+
OutputDeliveryTypeID: string | null;
|
|
3596
|
+
OutputFrequency: string | null;
|
|
3597
|
+
OutputTargetEmail: string | null;
|
|
3598
|
+
OutputWorkflowID: string | null;
|
|
3540
3599
|
}
|
|
3541
3600
|
export declare class UpdateReportInput {
|
|
3542
3601
|
ID: string;
|
|
3543
|
-
Name
|
|
3544
|
-
Description?: string;
|
|
3545
|
-
CategoryID?: string;
|
|
3546
|
-
UserID
|
|
3547
|
-
SharingScope
|
|
3548
|
-
ConversationID?: string;
|
|
3549
|
-
ConversationDetailID?: string;
|
|
3550
|
-
DataContextID?: string;
|
|
3551
|
-
Configuration?: string;
|
|
3552
|
-
OutputTriggerTypeID?: string;
|
|
3553
|
-
OutputFormatTypeID?: string;
|
|
3554
|
-
OutputDeliveryTypeID?: string;
|
|
3555
|
-
OutputFrequency?: string;
|
|
3556
|
-
OutputTargetEmail?: string;
|
|
3557
|
-
OutputWorkflowID?: string;
|
|
3602
|
+
Name?: string;
|
|
3603
|
+
Description?: string | null;
|
|
3604
|
+
CategoryID?: string | null;
|
|
3605
|
+
UserID?: string;
|
|
3606
|
+
SharingScope?: string;
|
|
3607
|
+
ConversationID?: string | null;
|
|
3608
|
+
ConversationDetailID?: string | null;
|
|
3609
|
+
DataContextID?: string | null;
|
|
3610
|
+
Configuration?: string | null;
|
|
3611
|
+
OutputTriggerTypeID?: string | null;
|
|
3612
|
+
OutputFormatTypeID?: string | null;
|
|
3613
|
+
OutputDeliveryTypeID?: string | null;
|
|
3614
|
+
OutputFrequency?: string | null;
|
|
3615
|
+
OutputTargetEmail?: string | null;
|
|
3616
|
+
OutputWorkflowID?: string | null;
|
|
3558
3617
|
OldValues___?: KeyValuePairInput[];
|
|
3559
3618
|
}
|
|
3560
3619
|
export declare class RunReportViewResult {
|
|
@@ -3587,15 +3646,15 @@ export declare class ReportSnapshot_ {
|
|
|
3587
3646
|
User: string;
|
|
3588
3647
|
}
|
|
3589
3648
|
export declare class CreateReportSnapshotInput {
|
|
3590
|
-
ReportID
|
|
3591
|
-
ResultSet
|
|
3592
|
-
UserID
|
|
3649
|
+
ReportID?: string;
|
|
3650
|
+
ResultSet?: string;
|
|
3651
|
+
UserID?: string;
|
|
3593
3652
|
}
|
|
3594
3653
|
export declare class UpdateReportSnapshotInput {
|
|
3595
3654
|
ID: string;
|
|
3596
|
-
ReportID
|
|
3597
|
-
ResultSet
|
|
3598
|
-
UserID
|
|
3655
|
+
ReportID?: string;
|
|
3656
|
+
ResultSet?: string;
|
|
3657
|
+
UserID?: string;
|
|
3599
3658
|
OldValues___?: KeyValuePairInput[];
|
|
3600
3659
|
}
|
|
3601
3660
|
export declare class RunReportSnapshotViewResult {
|
|
@@ -3717,15 +3776,15 @@ export declare class Workspace_ {
|
|
|
3717
3776
|
WorkspaceItems_WorkSpaceIDArray: WorkspaceItem_[];
|
|
3718
3777
|
}
|
|
3719
3778
|
export declare class CreateWorkspaceInput {
|
|
3720
|
-
Name
|
|
3721
|
-
Description
|
|
3722
|
-
UserID
|
|
3779
|
+
Name?: string;
|
|
3780
|
+
Description: string | null;
|
|
3781
|
+
UserID?: string;
|
|
3723
3782
|
}
|
|
3724
3783
|
export declare class UpdateWorkspaceInput {
|
|
3725
3784
|
ID: string;
|
|
3726
|
-
Name
|
|
3727
|
-
Description?: string;
|
|
3728
|
-
UserID
|
|
3785
|
+
Name?: string;
|
|
3786
|
+
Description?: string | null;
|
|
3787
|
+
UserID?: string;
|
|
3729
3788
|
OldValues___?: KeyValuePairInput[];
|
|
3730
3789
|
}
|
|
3731
3790
|
export declare class RunWorkspaceViewResult {
|
|
@@ -3762,23 +3821,23 @@ export declare class WorkspaceItem_ {
|
|
|
3762
3821
|
ResourceType: string;
|
|
3763
3822
|
}
|
|
3764
3823
|
export declare class CreateWorkspaceItemInput {
|
|
3765
|
-
Name
|
|
3766
|
-
Description
|
|
3767
|
-
WorkspaceID
|
|
3768
|
-
ResourceTypeID
|
|
3769
|
-
ResourceRecordID
|
|
3770
|
-
Sequence
|
|
3771
|
-
Configuration
|
|
3824
|
+
Name?: string;
|
|
3825
|
+
Description: string | null;
|
|
3826
|
+
WorkspaceID?: string;
|
|
3827
|
+
ResourceTypeID?: string;
|
|
3828
|
+
ResourceRecordID: string | null;
|
|
3829
|
+
Sequence?: number;
|
|
3830
|
+
Configuration: string | null;
|
|
3772
3831
|
}
|
|
3773
3832
|
export declare class UpdateWorkspaceItemInput {
|
|
3774
3833
|
ID: string;
|
|
3775
|
-
Name
|
|
3776
|
-
Description?: string;
|
|
3777
|
-
WorkspaceID
|
|
3778
|
-
ResourceTypeID
|
|
3779
|
-
ResourceRecordID?: string;
|
|
3780
|
-
Sequence
|
|
3781
|
-
Configuration?: string;
|
|
3834
|
+
Name?: string;
|
|
3835
|
+
Description?: string | null;
|
|
3836
|
+
WorkspaceID?: string;
|
|
3837
|
+
ResourceTypeID?: string;
|
|
3838
|
+
ResourceRecordID?: string | null;
|
|
3839
|
+
Sequence?: number;
|
|
3840
|
+
Configuration?: string | null;
|
|
3782
3841
|
OldValues___?: KeyValuePairInput[];
|
|
3783
3842
|
}
|
|
3784
3843
|
export declare class RunWorkspaceItemViewResult {
|
|
@@ -3867,33 +3926,37 @@ export declare class ConversationDetail_ {
|
|
|
3867
3926
|
UserFeedback?: string;
|
|
3868
3927
|
ReflectionInsights?: string;
|
|
3869
3928
|
SummaryOfEarlierConversation?: string;
|
|
3929
|
+
UserID?: string;
|
|
3870
3930
|
Conversation?: string;
|
|
3931
|
+
User?: string;
|
|
3871
3932
|
Reports_ConversationDetailIDArray: Report_[];
|
|
3872
3933
|
}
|
|
3873
3934
|
export declare class CreateConversationDetailInput {
|
|
3874
|
-
ConversationID
|
|
3875
|
-
ExternalID
|
|
3876
|
-
Role
|
|
3877
|
-
Message
|
|
3878
|
-
Error
|
|
3879
|
-
HiddenToUser
|
|
3880
|
-
UserRating
|
|
3881
|
-
UserFeedback
|
|
3882
|
-
ReflectionInsights
|
|
3883
|
-
SummaryOfEarlierConversation
|
|
3935
|
+
ConversationID?: string;
|
|
3936
|
+
ExternalID: string | null;
|
|
3937
|
+
Role?: string;
|
|
3938
|
+
Message?: string;
|
|
3939
|
+
Error: string | null;
|
|
3940
|
+
HiddenToUser?: boolean;
|
|
3941
|
+
UserRating: number | null;
|
|
3942
|
+
UserFeedback: string | null;
|
|
3943
|
+
ReflectionInsights: string | null;
|
|
3944
|
+
SummaryOfEarlierConversation: string | null;
|
|
3945
|
+
UserID: string | null;
|
|
3884
3946
|
}
|
|
3885
3947
|
export declare class UpdateConversationDetailInput {
|
|
3886
3948
|
ID: string;
|
|
3887
|
-
ConversationID
|
|
3888
|
-
ExternalID?: string;
|
|
3889
|
-
Role
|
|
3890
|
-
Message
|
|
3891
|
-
Error?: string;
|
|
3892
|
-
HiddenToUser
|
|
3893
|
-
UserRating?: number;
|
|
3894
|
-
UserFeedback?: string;
|
|
3895
|
-
ReflectionInsights?: string;
|
|
3896
|
-
SummaryOfEarlierConversation?: string;
|
|
3949
|
+
ConversationID?: string;
|
|
3950
|
+
ExternalID?: string | null;
|
|
3951
|
+
Role?: string;
|
|
3952
|
+
Message?: string;
|
|
3953
|
+
Error?: string | null;
|
|
3954
|
+
HiddenToUser?: boolean;
|
|
3955
|
+
UserRating?: number | null;
|
|
3956
|
+
UserFeedback?: string | null;
|
|
3957
|
+
ReflectionInsights?: string | null;
|
|
3958
|
+
SummaryOfEarlierConversation?: string | null;
|
|
3959
|
+
UserID?: string | null;
|
|
3897
3960
|
OldValues___?: KeyValuePairInput[];
|
|
3898
3961
|
}
|
|
3899
3962
|
export declare class RunConversationDetailViewResult {
|
|
@@ -3935,27 +3998,27 @@ export declare class Conversation_ {
|
|
|
3935
3998
|
Reports_ConversationIDArray: Report_[];
|
|
3936
3999
|
}
|
|
3937
4000
|
export declare class CreateConversationInput {
|
|
3938
|
-
UserID
|
|
3939
|
-
ExternalID
|
|
3940
|
-
Name
|
|
3941
|
-
Description
|
|
3942
|
-
Type
|
|
3943
|
-
IsArchived
|
|
3944
|
-
LinkedEntityID
|
|
3945
|
-
LinkedRecordID
|
|
3946
|
-
DataContextID
|
|
4001
|
+
UserID?: string;
|
|
4002
|
+
ExternalID: string | null;
|
|
4003
|
+
Name: string | null;
|
|
4004
|
+
Description: string | null;
|
|
4005
|
+
Type?: string;
|
|
4006
|
+
IsArchived?: boolean;
|
|
4007
|
+
LinkedEntityID: string | null;
|
|
4008
|
+
LinkedRecordID: string | null;
|
|
4009
|
+
DataContextID: string | null;
|
|
3947
4010
|
}
|
|
3948
4011
|
export declare class UpdateConversationInput {
|
|
3949
4012
|
ID: string;
|
|
3950
|
-
UserID
|
|
3951
|
-
ExternalID?: string;
|
|
3952
|
-
Name?: string;
|
|
3953
|
-
Description?: string;
|
|
3954
|
-
Type
|
|
3955
|
-
IsArchived
|
|
3956
|
-
LinkedEntityID?: string;
|
|
3957
|
-
LinkedRecordID?: string;
|
|
3958
|
-
DataContextID?: string;
|
|
4013
|
+
UserID?: string;
|
|
4014
|
+
ExternalID?: string | null;
|
|
4015
|
+
Name?: string | null;
|
|
4016
|
+
Description?: string | null;
|
|
4017
|
+
Type?: string;
|
|
4018
|
+
IsArchived?: boolean;
|
|
4019
|
+
LinkedEntityID?: string | null;
|
|
4020
|
+
LinkedRecordID?: string | null;
|
|
4021
|
+
DataContextID?: string | null;
|
|
3959
4022
|
OldValues___?: KeyValuePairInput[];
|
|
3960
4023
|
}
|
|
3961
4024
|
export declare class RunConversationViewResult {
|
|
@@ -3994,25 +4057,25 @@ export declare class UserNotification_ {
|
|
|
3994
4057
|
ResourceType?: string;
|
|
3995
4058
|
}
|
|
3996
4059
|
export declare class CreateUserNotificationInput {
|
|
3997
|
-
UserID
|
|
3998
|
-
Title
|
|
3999
|
-
Message
|
|
4000
|
-
ResourceTypeID
|
|
4001
|
-
ResourceConfiguration
|
|
4002
|
-
Unread
|
|
4003
|
-
ReadAt
|
|
4004
|
-
ResourceRecordID
|
|
4060
|
+
UserID?: string;
|
|
4061
|
+
Title: string | null;
|
|
4062
|
+
Message: string | null;
|
|
4063
|
+
ResourceTypeID: string | null;
|
|
4064
|
+
ResourceConfiguration: string | null;
|
|
4065
|
+
Unread?: boolean;
|
|
4066
|
+
ReadAt: Date | null;
|
|
4067
|
+
ResourceRecordID: string | null;
|
|
4005
4068
|
}
|
|
4006
4069
|
export declare class UpdateUserNotificationInput {
|
|
4007
4070
|
ID: string;
|
|
4008
|
-
UserID
|
|
4009
|
-
Title?: string;
|
|
4010
|
-
Message?: string;
|
|
4011
|
-
ResourceTypeID?: string;
|
|
4012
|
-
ResourceConfiguration?: string;
|
|
4013
|
-
Unread
|
|
4014
|
-
ReadAt?: Date;
|
|
4015
|
-
ResourceRecordID?: string;
|
|
4071
|
+
UserID?: string;
|
|
4072
|
+
Title?: string | null;
|
|
4073
|
+
Message?: string | null;
|
|
4074
|
+
ResourceTypeID?: string | null;
|
|
4075
|
+
ResourceConfiguration?: string | null;
|
|
4076
|
+
Unread?: boolean;
|
|
4077
|
+
ReadAt?: Date | null;
|
|
4078
|
+
ResourceRecordID?: string | null;
|
|
4016
4079
|
OldValues___?: KeyValuePairInput[];
|
|
4017
4080
|
}
|
|
4018
4081
|
export declare class RunUserNotificationViewResult {
|
|
@@ -4043,17 +4106,17 @@ export declare class SchemaInfo_ {
|
|
|
4043
4106
|
_mj__UpdatedAt: Date;
|
|
4044
4107
|
}
|
|
4045
4108
|
export declare class CreateSchemaInfoInput {
|
|
4046
|
-
SchemaName
|
|
4047
|
-
EntityIDMin
|
|
4048
|
-
EntityIDMax
|
|
4049
|
-
Comments
|
|
4109
|
+
SchemaName?: string;
|
|
4110
|
+
EntityIDMin?: number;
|
|
4111
|
+
EntityIDMax?: number;
|
|
4112
|
+
Comments: string | null;
|
|
4050
4113
|
}
|
|
4051
4114
|
export declare class UpdateSchemaInfoInput {
|
|
4052
4115
|
ID: string;
|
|
4053
|
-
SchemaName
|
|
4054
|
-
EntityIDMin
|
|
4055
|
-
EntityIDMax
|
|
4056
|
-
Comments?: string;
|
|
4116
|
+
SchemaName?: string;
|
|
4117
|
+
EntityIDMin?: number;
|
|
4118
|
+
EntityIDMax?: number;
|
|
4119
|
+
Comments?: string | null;
|
|
4057
4120
|
OldValues___?: KeyValuePairInput[];
|
|
4058
4121
|
}
|
|
4059
4122
|
export declare class RunSchemaInfoViewResult {
|
|
@@ -4084,17 +4147,17 @@ export declare class CompanyIntegrationRecordMap_ {
|
|
|
4084
4147
|
Entity: string;
|
|
4085
4148
|
}
|
|
4086
4149
|
export declare class CreateCompanyIntegrationRecordMapInput {
|
|
4087
|
-
CompanyIntegrationID
|
|
4088
|
-
ExternalSystemRecordID
|
|
4089
|
-
EntityID
|
|
4090
|
-
EntityRecordID
|
|
4150
|
+
CompanyIntegrationID?: string;
|
|
4151
|
+
ExternalSystemRecordID?: string;
|
|
4152
|
+
EntityID?: string;
|
|
4153
|
+
EntityRecordID?: string;
|
|
4091
4154
|
}
|
|
4092
4155
|
export declare class UpdateCompanyIntegrationRecordMapInput {
|
|
4093
4156
|
ID: string;
|
|
4094
|
-
CompanyIntegrationID
|
|
4095
|
-
ExternalSystemRecordID
|
|
4096
|
-
EntityID
|
|
4097
|
-
EntityRecordID
|
|
4157
|
+
CompanyIntegrationID?: string;
|
|
4158
|
+
ExternalSystemRecordID?: string;
|
|
4159
|
+
EntityID?: string;
|
|
4160
|
+
EntityRecordID?: string;
|
|
4098
4161
|
OldValues___?: KeyValuePairInput[];
|
|
4099
4162
|
}
|
|
4100
4163
|
export declare class RunCompanyIntegrationRecordMapViewResult {
|
|
@@ -4135,29 +4198,29 @@ export declare class RecordMergeLog_ {
|
|
|
4135
4198
|
DuplicateRunDetailMatches_RecordMergeLogIDArray: DuplicateRunDetailMatch_[];
|
|
4136
4199
|
}
|
|
4137
4200
|
export declare class CreateRecordMergeLogInput {
|
|
4138
|
-
EntityID
|
|
4139
|
-
SurvivingRecordID
|
|
4140
|
-
InitiatedByUserID
|
|
4141
|
-
ApprovalStatus
|
|
4142
|
-
ApprovedByUserID
|
|
4143
|
-
ProcessingStatus
|
|
4144
|
-
ProcessingStartedAt
|
|
4145
|
-
ProcessingEndedAt
|
|
4146
|
-
ProcessingLog
|
|
4147
|
-
Comments
|
|
4201
|
+
EntityID?: string;
|
|
4202
|
+
SurvivingRecordID?: string;
|
|
4203
|
+
InitiatedByUserID?: string;
|
|
4204
|
+
ApprovalStatus?: string;
|
|
4205
|
+
ApprovedByUserID: string | null;
|
|
4206
|
+
ProcessingStatus?: string;
|
|
4207
|
+
ProcessingStartedAt?: Date;
|
|
4208
|
+
ProcessingEndedAt: Date | null;
|
|
4209
|
+
ProcessingLog: string | null;
|
|
4210
|
+
Comments: string | null;
|
|
4148
4211
|
}
|
|
4149
4212
|
export declare class UpdateRecordMergeLogInput {
|
|
4150
4213
|
ID: string;
|
|
4151
|
-
EntityID
|
|
4152
|
-
SurvivingRecordID
|
|
4153
|
-
InitiatedByUserID
|
|
4154
|
-
ApprovalStatus
|
|
4155
|
-
ApprovedByUserID?: string;
|
|
4156
|
-
ProcessingStatus
|
|
4157
|
-
ProcessingStartedAt
|
|
4158
|
-
ProcessingEndedAt?: Date;
|
|
4159
|
-
ProcessingLog?: string;
|
|
4160
|
-
Comments?: string;
|
|
4214
|
+
EntityID?: string;
|
|
4215
|
+
SurvivingRecordID?: string;
|
|
4216
|
+
InitiatedByUserID?: string;
|
|
4217
|
+
ApprovalStatus?: string;
|
|
4218
|
+
ApprovedByUserID?: string | null;
|
|
4219
|
+
ProcessingStatus?: string;
|
|
4220
|
+
ProcessingStartedAt?: Date;
|
|
4221
|
+
ProcessingEndedAt?: Date | null;
|
|
4222
|
+
ProcessingLog?: string | null;
|
|
4223
|
+
Comments?: string | null;
|
|
4161
4224
|
OldValues___?: KeyValuePairInput[];
|
|
4162
4225
|
}
|
|
4163
4226
|
export declare class RunRecordMergeLogViewResult {
|
|
@@ -4189,17 +4252,17 @@ export declare class RecordMergeDeletionLog_ {
|
|
|
4189
4252
|
_mj__UpdatedAt: Date;
|
|
4190
4253
|
}
|
|
4191
4254
|
export declare class CreateRecordMergeDeletionLogInput {
|
|
4192
|
-
RecordMergeLogID
|
|
4193
|
-
DeletedRecordID
|
|
4194
|
-
Status
|
|
4195
|
-
ProcessingLog
|
|
4255
|
+
RecordMergeLogID?: string;
|
|
4256
|
+
DeletedRecordID?: string;
|
|
4257
|
+
Status?: string;
|
|
4258
|
+
ProcessingLog: string | null;
|
|
4196
4259
|
}
|
|
4197
4260
|
export declare class UpdateRecordMergeDeletionLogInput {
|
|
4198
4261
|
ID: string;
|
|
4199
|
-
RecordMergeLogID
|
|
4200
|
-
DeletedRecordID
|
|
4201
|
-
Status
|
|
4202
|
-
ProcessingLog?: string;
|
|
4262
|
+
RecordMergeLogID?: string;
|
|
4263
|
+
DeletedRecordID?: string;
|
|
4264
|
+
Status?: string;
|
|
4265
|
+
ProcessingLog?: string | null;
|
|
4203
4266
|
OldValues___?: KeyValuePairInput[];
|
|
4204
4267
|
}
|
|
4205
4268
|
export declare class RunRecordMergeDeletionLogViewResult {
|
|
@@ -4239,33 +4302,33 @@ export declare class QueryField_ {
|
|
|
4239
4302
|
SourceEntity?: string;
|
|
4240
4303
|
}
|
|
4241
4304
|
export declare class CreateQueryFieldInput {
|
|
4242
|
-
QueryID
|
|
4243
|
-
Name
|
|
4244
|
-
Description
|
|
4245
|
-
Sequence
|
|
4246
|
-
SQLBaseType
|
|
4247
|
-
SQLFullType
|
|
4248
|
-
SourceEntityID
|
|
4249
|
-
SourceFieldName
|
|
4250
|
-
IsComputed
|
|
4251
|
-
ComputationDescription
|
|
4252
|
-
IsSummary
|
|
4253
|
-
SummaryDescription
|
|
4305
|
+
QueryID?: string;
|
|
4306
|
+
Name?: string;
|
|
4307
|
+
Description: string | null;
|
|
4308
|
+
Sequence?: number;
|
|
4309
|
+
SQLBaseType?: string;
|
|
4310
|
+
SQLFullType?: string;
|
|
4311
|
+
SourceEntityID: string | null;
|
|
4312
|
+
SourceFieldName: string | null;
|
|
4313
|
+
IsComputed?: boolean;
|
|
4314
|
+
ComputationDescription: string | null;
|
|
4315
|
+
IsSummary?: boolean;
|
|
4316
|
+
SummaryDescription: string | null;
|
|
4254
4317
|
}
|
|
4255
4318
|
export declare class UpdateQueryFieldInput {
|
|
4256
4319
|
ID: string;
|
|
4257
|
-
QueryID
|
|
4258
|
-
Name
|
|
4259
|
-
Description?: string;
|
|
4260
|
-
Sequence
|
|
4261
|
-
SQLBaseType
|
|
4262
|
-
SQLFullType
|
|
4263
|
-
SourceEntityID?: string;
|
|
4264
|
-
SourceFieldName?: string;
|
|
4265
|
-
IsComputed
|
|
4266
|
-
ComputationDescription?: string;
|
|
4267
|
-
IsSummary
|
|
4268
|
-
SummaryDescription?: string;
|
|
4320
|
+
QueryID?: string;
|
|
4321
|
+
Name?: string;
|
|
4322
|
+
Description?: string | null;
|
|
4323
|
+
Sequence?: number;
|
|
4324
|
+
SQLBaseType?: string;
|
|
4325
|
+
SQLFullType?: string;
|
|
4326
|
+
SourceEntityID?: string | null;
|
|
4327
|
+
SourceFieldName?: string | null;
|
|
4328
|
+
IsComputed?: boolean;
|
|
4329
|
+
ComputationDescription?: string | null;
|
|
4330
|
+
IsSummary?: boolean;
|
|
4331
|
+
SummaryDescription?: string | null;
|
|
4269
4332
|
OldValues___?: KeyValuePairInput[];
|
|
4270
4333
|
}
|
|
4271
4334
|
export declare class RunQueryFieldViewResult {
|
|
@@ -4300,17 +4363,17 @@ export declare class QueryCategory_ {
|
|
|
4300
4363
|
Queries_CategoryIDArray: Query_[];
|
|
4301
4364
|
}
|
|
4302
4365
|
export declare class CreateQueryCategoryInput {
|
|
4303
|
-
Name
|
|
4304
|
-
ParentID
|
|
4305
|
-
Description
|
|
4306
|
-
UserID
|
|
4366
|
+
Name?: string;
|
|
4367
|
+
ParentID: string | null;
|
|
4368
|
+
Description: string | null;
|
|
4369
|
+
UserID?: string;
|
|
4307
4370
|
}
|
|
4308
4371
|
export declare class UpdateQueryCategoryInput {
|
|
4309
4372
|
ID: string;
|
|
4310
|
-
Name
|
|
4311
|
-
ParentID?: string;
|
|
4312
|
-
Description?: string;
|
|
4313
|
-
UserID
|
|
4373
|
+
Name?: string;
|
|
4374
|
+
ParentID?: string | null;
|
|
4375
|
+
Description?: string | null;
|
|
4376
|
+
UserID?: string;
|
|
4314
4377
|
OldValues___?: KeyValuePairInput[];
|
|
4315
4378
|
}
|
|
4316
4379
|
export declare class RunQueryCategoryViewResult {
|
|
@@ -4355,31 +4418,31 @@ export declare class Query_ {
|
|
|
4355
4418
|
QueryEntities_QueryIDArray: QueryEntity_[];
|
|
4356
4419
|
}
|
|
4357
4420
|
export declare class CreateQueryInput {
|
|
4358
|
-
Name
|
|
4359
|
-
CategoryID
|
|
4360
|
-
UserQuestion
|
|
4361
|
-
Description
|
|
4362
|
-
SQL
|
|
4363
|
-
TechnicalDescription
|
|
4364
|
-
OriginalSQL
|
|
4365
|
-
Feedback
|
|
4366
|
-
Status
|
|
4367
|
-
QualityRank?: number;
|
|
4368
|
-
ExecutionCostRank
|
|
4421
|
+
Name?: string;
|
|
4422
|
+
CategoryID: string | null;
|
|
4423
|
+
UserQuestion: string | null;
|
|
4424
|
+
Description: string | null;
|
|
4425
|
+
SQL: string | null;
|
|
4426
|
+
TechnicalDescription: string | null;
|
|
4427
|
+
OriginalSQL: string | null;
|
|
4428
|
+
Feedback: string | null;
|
|
4429
|
+
Status?: string;
|
|
4430
|
+
QualityRank?: number | null;
|
|
4431
|
+
ExecutionCostRank: number | null;
|
|
4369
4432
|
}
|
|
4370
4433
|
export declare class UpdateQueryInput {
|
|
4371
4434
|
ID: string;
|
|
4372
|
-
Name
|
|
4373
|
-
CategoryID?: string;
|
|
4374
|
-
UserQuestion?: string;
|
|
4375
|
-
Description?: string;
|
|
4376
|
-
SQL?: string;
|
|
4377
|
-
TechnicalDescription?: string;
|
|
4378
|
-
OriginalSQL?: string;
|
|
4379
|
-
Feedback?: string;
|
|
4380
|
-
Status
|
|
4381
|
-
QualityRank?: number;
|
|
4382
|
-
ExecutionCostRank?: number;
|
|
4435
|
+
Name?: string;
|
|
4436
|
+
CategoryID?: string | null;
|
|
4437
|
+
UserQuestion?: string | null;
|
|
4438
|
+
Description?: string | null;
|
|
4439
|
+
SQL?: string | null;
|
|
4440
|
+
TechnicalDescription?: string | null;
|
|
4441
|
+
OriginalSQL?: string | null;
|
|
4442
|
+
Feedback?: string | null;
|
|
4443
|
+
Status?: string;
|
|
4444
|
+
QualityRank?: number | null;
|
|
4445
|
+
ExecutionCostRank?: number | null;
|
|
4383
4446
|
OldValues___?: KeyValuePairInput[];
|
|
4384
4447
|
}
|
|
4385
4448
|
export declare class RunQueryViewResult {
|
|
@@ -4414,13 +4477,13 @@ export declare class QueryPermission_ {
|
|
|
4414
4477
|
Role: string;
|
|
4415
4478
|
}
|
|
4416
4479
|
export declare class CreateQueryPermissionInput {
|
|
4417
|
-
QueryID
|
|
4418
|
-
RoleID
|
|
4480
|
+
QueryID?: string;
|
|
4481
|
+
RoleID?: string;
|
|
4419
4482
|
}
|
|
4420
4483
|
export declare class UpdateQueryPermissionInput {
|
|
4421
4484
|
ID: string;
|
|
4422
|
-
QueryID
|
|
4423
|
-
RoleID
|
|
4485
|
+
QueryID?: string;
|
|
4486
|
+
RoleID?: string;
|
|
4424
4487
|
OldValues___?: KeyValuePairInput[];
|
|
4425
4488
|
}
|
|
4426
4489
|
export declare class RunQueryPermissionViewResult {
|
|
@@ -4454,17 +4517,17 @@ export declare class VectorIndex_ {
|
|
|
4454
4517
|
EntityRecordDocuments_VectorIndexIDArray: EntityRecordDocument_[];
|
|
4455
4518
|
}
|
|
4456
4519
|
export declare class CreateVectorIndexInput {
|
|
4457
|
-
Name
|
|
4458
|
-
Description
|
|
4459
|
-
VectorDatabaseID
|
|
4460
|
-
EmbeddingModelID
|
|
4520
|
+
Name?: string;
|
|
4521
|
+
Description: string | null;
|
|
4522
|
+
VectorDatabaseID?: string;
|
|
4523
|
+
EmbeddingModelID?: string;
|
|
4461
4524
|
}
|
|
4462
4525
|
export declare class UpdateVectorIndexInput {
|
|
4463
4526
|
ID: string;
|
|
4464
|
-
Name
|
|
4465
|
-
Description?: string;
|
|
4466
|
-
VectorDatabaseID
|
|
4467
|
-
EmbeddingModelID
|
|
4527
|
+
Name?: string;
|
|
4528
|
+
Description?: string | null;
|
|
4529
|
+
VectorDatabaseID?: string;
|
|
4530
|
+
EmbeddingModelID?: string;
|
|
4468
4531
|
OldValues___?: KeyValuePairInput[];
|
|
4469
4532
|
}
|
|
4470
4533
|
export declare class RunVectorIndexViewResult {
|
|
@@ -4495,13 +4558,13 @@ export declare class EntityDocumentType_ {
|
|
|
4495
4558
|
EntityDocuments_TypeIDArray: EntityDocument_[];
|
|
4496
4559
|
}
|
|
4497
4560
|
export declare class CreateEntityDocumentTypeInput {
|
|
4498
|
-
Name
|
|
4499
|
-
Description
|
|
4561
|
+
Name?: string;
|
|
4562
|
+
Description: string | null;
|
|
4500
4563
|
}
|
|
4501
4564
|
export declare class UpdateEntityDocumentTypeInput {
|
|
4502
4565
|
ID: string;
|
|
4503
|
-
Name
|
|
4504
|
-
Description?: string;
|
|
4566
|
+
Name?: string;
|
|
4567
|
+
Description?: string | null;
|
|
4505
4568
|
OldValues___?: KeyValuePairInput[];
|
|
4506
4569
|
}
|
|
4507
4570
|
export declare class RunEntityDocumentTypeViewResult {
|
|
@@ -4534,17 +4597,17 @@ export declare class EntityDocumentRun_ {
|
|
|
4534
4597
|
EntityDocument: string;
|
|
4535
4598
|
}
|
|
4536
4599
|
export declare class CreateEntityDocumentRunInput {
|
|
4537
|
-
EntityDocumentID
|
|
4538
|
-
StartedAt
|
|
4539
|
-
EndedAt
|
|
4540
|
-
Status
|
|
4600
|
+
EntityDocumentID?: string;
|
|
4601
|
+
StartedAt: Date | null;
|
|
4602
|
+
EndedAt: Date | null;
|
|
4603
|
+
Status?: string;
|
|
4541
4604
|
}
|
|
4542
4605
|
export declare class UpdateEntityDocumentRunInput {
|
|
4543
4606
|
ID: string;
|
|
4544
|
-
EntityDocumentID
|
|
4545
|
-
StartedAt?: Date;
|
|
4546
|
-
EndedAt?: Date;
|
|
4547
|
-
Status
|
|
4607
|
+
EntityDocumentID?: string;
|
|
4608
|
+
StartedAt?: Date | null;
|
|
4609
|
+
EndedAt?: Date | null;
|
|
4610
|
+
Status?: string;
|
|
4548
4611
|
OldValues___?: KeyValuePairInput[];
|
|
4549
4612
|
}
|
|
4550
4613
|
export declare class RunEntityDocumentRunViewResult {
|
|
@@ -4576,17 +4639,17 @@ export declare class VectorDatabase_ {
|
|
|
4576
4639
|
VectorIndexes_VectorDatabaseIDArray: VectorIndex_[];
|
|
4577
4640
|
}
|
|
4578
4641
|
export declare class CreateVectorDatabaseInput {
|
|
4579
|
-
Name
|
|
4580
|
-
Description
|
|
4581
|
-
DefaultURL
|
|
4582
|
-
ClassKey
|
|
4642
|
+
Name?: string;
|
|
4643
|
+
Description: string | null;
|
|
4644
|
+
DefaultURL: string | null;
|
|
4645
|
+
ClassKey: string | null;
|
|
4583
4646
|
}
|
|
4584
4647
|
export declare class UpdateVectorDatabaseInput {
|
|
4585
4648
|
ID: string;
|
|
4586
|
-
Name
|
|
4587
|
-
Description?: string;
|
|
4588
|
-
DefaultURL?: string;
|
|
4589
|
-
ClassKey?: string;
|
|
4649
|
+
Name?: string;
|
|
4650
|
+
Description?: string | null;
|
|
4651
|
+
DefaultURL?: string | null;
|
|
4652
|
+
ClassKey?: string | null;
|
|
4590
4653
|
OldValues___?: KeyValuePairInput[];
|
|
4591
4654
|
}
|
|
4592
4655
|
export declare class RunVectorDatabaseViewResult {
|
|
@@ -4626,25 +4689,25 @@ export declare class EntityRecordDocument_ {
|
|
|
4626
4689
|
VectorIndex: string;
|
|
4627
4690
|
}
|
|
4628
4691
|
export declare class CreateEntityRecordDocumentInput {
|
|
4629
|
-
EntityID
|
|
4630
|
-
RecordID
|
|
4631
|
-
EntityDocumentID
|
|
4632
|
-
DocumentText
|
|
4633
|
-
VectorIndexID
|
|
4634
|
-
VectorID
|
|
4635
|
-
VectorJSON
|
|
4636
|
-
EntityRecordUpdatedAt
|
|
4692
|
+
EntityID?: string;
|
|
4693
|
+
RecordID?: string;
|
|
4694
|
+
EntityDocumentID?: string;
|
|
4695
|
+
DocumentText: string | null;
|
|
4696
|
+
VectorIndexID?: string;
|
|
4697
|
+
VectorID: string | null;
|
|
4698
|
+
VectorJSON: string | null;
|
|
4699
|
+
EntityRecordUpdatedAt?: Date;
|
|
4637
4700
|
}
|
|
4638
4701
|
export declare class UpdateEntityRecordDocumentInput {
|
|
4639
4702
|
ID: string;
|
|
4640
|
-
EntityID
|
|
4641
|
-
RecordID
|
|
4642
|
-
EntityDocumentID
|
|
4643
|
-
DocumentText?: string;
|
|
4644
|
-
VectorIndexID
|
|
4645
|
-
VectorID?: string;
|
|
4646
|
-
VectorJSON?: string;
|
|
4647
|
-
EntityRecordUpdatedAt
|
|
4703
|
+
EntityID?: string;
|
|
4704
|
+
RecordID?: string;
|
|
4705
|
+
EntityDocumentID?: string;
|
|
4706
|
+
DocumentText?: string | null;
|
|
4707
|
+
VectorIndexID?: string;
|
|
4708
|
+
VectorID?: string | null;
|
|
4709
|
+
VectorJSON?: string | null;
|
|
4710
|
+
EntityRecordUpdatedAt?: Date;
|
|
4648
4711
|
OldValues___?: KeyValuePairInput[];
|
|
4649
4712
|
}
|
|
4650
4713
|
export declare class RunEntityRecordDocumentViewResult {
|
|
@@ -4687,27 +4750,27 @@ export declare class EntityDocument_ {
|
|
|
4687
4750
|
EntityRecordDocuments_EntityDocumentIDArray: EntityRecordDocument_[];
|
|
4688
4751
|
}
|
|
4689
4752
|
export declare class CreateEntityDocumentInput {
|
|
4690
|
-
Name
|
|
4691
|
-
TypeID
|
|
4692
|
-
EntityID
|
|
4693
|
-
VectorDatabaseID
|
|
4694
|
-
Status
|
|
4695
|
-
TemplateID
|
|
4696
|
-
AIModelID
|
|
4697
|
-
PotentialMatchThreshold
|
|
4698
|
-
AbsoluteMatchThreshold
|
|
4753
|
+
Name?: string;
|
|
4754
|
+
TypeID?: string;
|
|
4755
|
+
EntityID?: string;
|
|
4756
|
+
VectorDatabaseID?: string;
|
|
4757
|
+
Status?: string;
|
|
4758
|
+
TemplateID?: string;
|
|
4759
|
+
AIModelID?: string;
|
|
4760
|
+
PotentialMatchThreshold?: number;
|
|
4761
|
+
AbsoluteMatchThreshold?: number;
|
|
4699
4762
|
}
|
|
4700
4763
|
export declare class UpdateEntityDocumentInput {
|
|
4701
4764
|
ID: string;
|
|
4702
|
-
Name
|
|
4703
|
-
TypeID
|
|
4704
|
-
EntityID
|
|
4705
|
-
VectorDatabaseID
|
|
4706
|
-
Status
|
|
4707
|
-
TemplateID
|
|
4708
|
-
AIModelID
|
|
4709
|
-
PotentialMatchThreshold
|
|
4710
|
-
AbsoluteMatchThreshold
|
|
4765
|
+
Name?: string;
|
|
4766
|
+
TypeID?: string;
|
|
4767
|
+
EntityID?: string;
|
|
4768
|
+
VectorDatabaseID?: string;
|
|
4769
|
+
Status?: string;
|
|
4770
|
+
TemplateID?: string;
|
|
4771
|
+
AIModelID?: string;
|
|
4772
|
+
PotentialMatchThreshold?: number;
|
|
4773
|
+
AbsoluteMatchThreshold?: number;
|
|
4711
4774
|
OldValues___?: KeyValuePairInput[];
|
|
4712
4775
|
}
|
|
4713
4776
|
export declare class RunEntityDocumentViewResult {
|
|
@@ -4750,29 +4813,29 @@ export declare class DataContextItem_ {
|
|
|
4750
4813
|
Entity?: string;
|
|
4751
4814
|
}
|
|
4752
4815
|
export declare class CreateDataContextItemInput {
|
|
4753
|
-
DataContextID
|
|
4754
|
-
Type
|
|
4755
|
-
ViewID
|
|
4756
|
-
QueryID
|
|
4757
|
-
EntityID
|
|
4758
|
-
RecordID
|
|
4759
|
-
SQL
|
|
4760
|
-
DataJSON
|
|
4761
|
-
LastRefreshedAt
|
|
4762
|
-
Description
|
|
4816
|
+
DataContextID?: string;
|
|
4817
|
+
Type?: string;
|
|
4818
|
+
ViewID: string | null;
|
|
4819
|
+
QueryID: string | null;
|
|
4820
|
+
EntityID: string | null;
|
|
4821
|
+
RecordID: string | null;
|
|
4822
|
+
SQL: string | null;
|
|
4823
|
+
DataJSON: string | null;
|
|
4824
|
+
LastRefreshedAt: Date | null;
|
|
4825
|
+
Description: string | null;
|
|
4763
4826
|
}
|
|
4764
4827
|
export declare class UpdateDataContextItemInput {
|
|
4765
4828
|
ID: string;
|
|
4766
|
-
DataContextID
|
|
4767
|
-
Type
|
|
4768
|
-
ViewID?: string;
|
|
4769
|
-
QueryID?: string;
|
|
4770
|
-
EntityID?: string;
|
|
4771
|
-
RecordID?: string;
|
|
4772
|
-
SQL?: string;
|
|
4773
|
-
DataJSON?: string;
|
|
4774
|
-
LastRefreshedAt?: Date;
|
|
4775
|
-
Description?: string;
|
|
4829
|
+
DataContextID?: string;
|
|
4830
|
+
Type?: string;
|
|
4831
|
+
ViewID?: string | null;
|
|
4832
|
+
QueryID?: string | null;
|
|
4833
|
+
EntityID?: string | null;
|
|
4834
|
+
RecordID?: string | null;
|
|
4835
|
+
SQL?: string | null;
|
|
4836
|
+
DataJSON?: string | null;
|
|
4837
|
+
LastRefreshedAt?: Date | null;
|
|
4838
|
+
Description?: string | null;
|
|
4776
4839
|
OldValues___?: KeyValuePairInput[];
|
|
4777
4840
|
}
|
|
4778
4841
|
export declare class RunDataContextItemViewResult {
|
|
@@ -4807,17 +4870,17 @@ export declare class DataContext_ {
|
|
|
4807
4870
|
Conversations_DataContextIDArray: Conversation_[];
|
|
4808
4871
|
}
|
|
4809
4872
|
export declare class CreateDataContextInput {
|
|
4810
|
-
Name
|
|
4811
|
-
Description
|
|
4812
|
-
UserID
|
|
4813
|
-
LastRefreshedAt
|
|
4873
|
+
Name?: string;
|
|
4874
|
+
Description: string | null;
|
|
4875
|
+
UserID?: string;
|
|
4876
|
+
LastRefreshedAt: Date | null;
|
|
4814
4877
|
}
|
|
4815
4878
|
export declare class UpdateDataContextInput {
|
|
4816
4879
|
ID: string;
|
|
4817
|
-
Name
|
|
4818
|
-
Description?: string;
|
|
4819
|
-
UserID
|
|
4820
|
-
LastRefreshedAt?: Date;
|
|
4880
|
+
Name?: string;
|
|
4881
|
+
Description?: string | null;
|
|
4882
|
+
UserID?: string;
|
|
4883
|
+
LastRefreshedAt?: Date | null;
|
|
4821
4884
|
OldValues___?: KeyValuePairInput[];
|
|
4822
4885
|
}
|
|
4823
4886
|
export declare class RunDataContextViewResult {
|
|
@@ -4857,19 +4920,19 @@ export declare class UserViewCategory_ {
|
|
|
4857
4920
|
UserViews_CategoryIDArray: UserView_[];
|
|
4858
4921
|
}
|
|
4859
4922
|
export declare class CreateUserViewCategoryInput {
|
|
4860
|
-
Name
|
|
4861
|
-
Description
|
|
4862
|
-
ParentID
|
|
4863
|
-
EntityID
|
|
4864
|
-
UserID
|
|
4923
|
+
Name?: string;
|
|
4924
|
+
Description: string | null;
|
|
4925
|
+
ParentID: string | null;
|
|
4926
|
+
EntityID?: string;
|
|
4927
|
+
UserID?: string;
|
|
4865
4928
|
}
|
|
4866
4929
|
export declare class UpdateUserViewCategoryInput {
|
|
4867
4930
|
ID: string;
|
|
4868
|
-
Name
|
|
4869
|
-
Description?: string;
|
|
4870
|
-
ParentID?: string;
|
|
4871
|
-
EntityID
|
|
4872
|
-
UserID
|
|
4931
|
+
Name?: string;
|
|
4932
|
+
Description?: string | null;
|
|
4933
|
+
ParentID?: string | null;
|
|
4934
|
+
EntityID?: string;
|
|
4935
|
+
UserID?: string;
|
|
4873
4936
|
OldValues___?: KeyValuePairInput[];
|
|
4874
4937
|
}
|
|
4875
4938
|
export declare class RunUserViewCategoryViewResult {
|
|
@@ -4906,17 +4969,17 @@ export declare class DashboardCategory_ {
|
|
|
4906
4969
|
Dashboards_CategoryIDArray: Dashboard_[];
|
|
4907
4970
|
}
|
|
4908
4971
|
export declare class CreateDashboardCategoryInput {
|
|
4909
|
-
Name
|
|
4910
|
-
Description
|
|
4911
|
-
ParentID
|
|
4912
|
-
UserID
|
|
4972
|
+
Name?: string;
|
|
4973
|
+
Description: string | null;
|
|
4974
|
+
ParentID: string | null;
|
|
4975
|
+
UserID?: string;
|
|
4913
4976
|
}
|
|
4914
4977
|
export declare class UpdateDashboardCategoryInput {
|
|
4915
4978
|
ID: string;
|
|
4916
|
-
Name
|
|
4917
|
-
Description?: string;
|
|
4918
|
-
ParentID?: string;
|
|
4919
|
-
UserID
|
|
4979
|
+
Name?: string;
|
|
4980
|
+
Description?: string | null;
|
|
4981
|
+
ParentID?: string | null;
|
|
4982
|
+
UserID?: string;
|
|
4920
4983
|
OldValues___?: KeyValuePairInput[];
|
|
4921
4984
|
}
|
|
4922
4985
|
export declare class RunDashboardCategoryViewResult {
|
|
@@ -4953,17 +5016,17 @@ export declare class ReportCategory_ {
|
|
|
4953
5016
|
Reports_CategoryIDArray: Report_[];
|
|
4954
5017
|
}
|
|
4955
5018
|
export declare class CreateReportCategoryInput {
|
|
4956
|
-
Name
|
|
4957
|
-
Description
|
|
4958
|
-
ParentID
|
|
4959
|
-
UserID
|
|
5019
|
+
Name?: string;
|
|
5020
|
+
Description: string | null;
|
|
5021
|
+
ParentID: string | null;
|
|
5022
|
+
UserID?: string;
|
|
4960
5023
|
}
|
|
4961
5024
|
export declare class UpdateReportCategoryInput {
|
|
4962
5025
|
ID: string;
|
|
4963
|
-
Name
|
|
4964
|
-
Description?: string;
|
|
4965
|
-
ParentID?: string;
|
|
4966
|
-
UserID
|
|
5026
|
+
Name?: string;
|
|
5027
|
+
Description?: string | null;
|
|
5028
|
+
ParentID?: string | null;
|
|
5029
|
+
UserID?: string;
|
|
4967
5030
|
OldValues___?: KeyValuePairInput[];
|
|
4968
5031
|
}
|
|
4969
5032
|
export declare class RunReportCategoryViewResult {
|
|
@@ -4999,21 +5062,21 @@ export declare class FileStorageProvider_ {
|
|
|
4999
5062
|
Files_ProviderIDArray: File_[];
|
|
5000
5063
|
}
|
|
5001
5064
|
export declare class CreateFileStorageProviderInput {
|
|
5002
|
-
Name
|
|
5003
|
-
Description
|
|
5004
|
-
ServerDriverKey
|
|
5005
|
-
ClientDriverKey
|
|
5006
|
-
Priority
|
|
5007
|
-
IsActive
|
|
5065
|
+
Name?: string;
|
|
5066
|
+
Description: string | null;
|
|
5067
|
+
ServerDriverKey?: string;
|
|
5068
|
+
ClientDriverKey?: string;
|
|
5069
|
+
Priority?: number;
|
|
5070
|
+
IsActive?: boolean;
|
|
5008
5071
|
}
|
|
5009
5072
|
export declare class UpdateFileStorageProviderInput {
|
|
5010
5073
|
ID: string;
|
|
5011
|
-
Name
|
|
5012
|
-
Description?: string;
|
|
5013
|
-
ServerDriverKey
|
|
5014
|
-
ClientDriverKey
|
|
5015
|
-
Priority
|
|
5016
|
-
IsActive
|
|
5074
|
+
Name?: string;
|
|
5075
|
+
Description?: string | null;
|
|
5076
|
+
ServerDriverKey?: string;
|
|
5077
|
+
ClientDriverKey?: string;
|
|
5078
|
+
Priority?: number;
|
|
5079
|
+
IsActive?: boolean;
|
|
5017
5080
|
OldValues___?: KeyValuePairInput[];
|
|
5018
5081
|
}
|
|
5019
5082
|
export declare class RunFileStorageProviderViewResult {
|
|
@@ -5051,23 +5114,23 @@ export declare class File_ {
|
|
|
5051
5114
|
FileEntityRecordLinks_FileIDArray: FileEntityRecordLink_[];
|
|
5052
5115
|
}
|
|
5053
5116
|
export declare class CreateFileInput {
|
|
5054
|
-
Name
|
|
5055
|
-
Description
|
|
5056
|
-
CategoryID
|
|
5057
|
-
ProviderID
|
|
5058
|
-
ContentType
|
|
5059
|
-
ProviderKey
|
|
5060
|
-
Status
|
|
5117
|
+
Name?: string;
|
|
5118
|
+
Description: string | null;
|
|
5119
|
+
CategoryID: string | null;
|
|
5120
|
+
ProviderID?: string;
|
|
5121
|
+
ContentType: string | null;
|
|
5122
|
+
ProviderKey: string | null;
|
|
5123
|
+
Status?: string;
|
|
5061
5124
|
}
|
|
5062
5125
|
export declare class UpdateFileInput {
|
|
5063
5126
|
ID: string;
|
|
5064
|
-
Name
|
|
5065
|
-
Description?: string;
|
|
5066
|
-
CategoryID?: string;
|
|
5067
|
-
ProviderID
|
|
5068
|
-
ContentType?: string;
|
|
5069
|
-
ProviderKey?: string;
|
|
5070
|
-
Status
|
|
5127
|
+
Name?: string;
|
|
5128
|
+
Description?: string | null;
|
|
5129
|
+
CategoryID?: string | null;
|
|
5130
|
+
ProviderID?: string;
|
|
5131
|
+
ContentType?: string | null;
|
|
5132
|
+
ProviderKey?: string | null;
|
|
5133
|
+
Status?: string;
|
|
5071
5134
|
OldValues___?: KeyValuePairInput[];
|
|
5072
5135
|
}
|
|
5073
5136
|
export declare class RunFileViewResult {
|
|
@@ -5101,15 +5164,15 @@ export declare class FileCategory_ {
|
|
|
5101
5164
|
FileCategories_ParentIDArray: FileCategory_[];
|
|
5102
5165
|
}
|
|
5103
5166
|
export declare class CreateFileCategoryInput {
|
|
5104
|
-
Name
|
|
5105
|
-
ParentID
|
|
5106
|
-
Description
|
|
5167
|
+
Name?: string;
|
|
5168
|
+
ParentID: string | null;
|
|
5169
|
+
Description: string | null;
|
|
5107
5170
|
}
|
|
5108
5171
|
export declare class UpdateFileCategoryInput {
|
|
5109
5172
|
ID: string;
|
|
5110
|
-
Name
|
|
5111
|
-
ParentID?: string;
|
|
5112
|
-
Description?: string;
|
|
5173
|
+
Name?: string;
|
|
5174
|
+
ParentID?: string | null;
|
|
5175
|
+
Description?: string | null;
|
|
5113
5176
|
OldValues___?: KeyValuePairInput[];
|
|
5114
5177
|
}
|
|
5115
5178
|
export declare class RunFileCategoryViewResult {
|
|
@@ -5143,15 +5206,15 @@ export declare class FileEntityRecordLink_ {
|
|
|
5143
5206
|
Entity: string;
|
|
5144
5207
|
}
|
|
5145
5208
|
export declare class CreateFileEntityRecordLinkInput {
|
|
5146
|
-
FileID
|
|
5147
|
-
EntityID
|
|
5148
|
-
RecordID
|
|
5209
|
+
FileID?: string;
|
|
5210
|
+
EntityID?: string;
|
|
5211
|
+
RecordID?: string;
|
|
5149
5212
|
}
|
|
5150
5213
|
export declare class UpdateFileEntityRecordLinkInput {
|
|
5151
5214
|
ID: string;
|
|
5152
|
-
FileID
|
|
5153
|
-
EntityID
|
|
5154
|
-
RecordID
|
|
5215
|
+
FileID?: string;
|
|
5216
|
+
EntityID?: string;
|
|
5217
|
+
RecordID?: string;
|
|
5155
5218
|
OldValues___?: KeyValuePairInput[];
|
|
5156
5219
|
}
|
|
5157
5220
|
export declare class RunFileEntityRecordLinkViewResult {
|
|
@@ -5187,25 +5250,25 @@ export declare class VersionInstallation_ {
|
|
|
5187
5250
|
CompleteVersion?: string;
|
|
5188
5251
|
}
|
|
5189
5252
|
export declare class CreateVersionInstallationInput {
|
|
5190
|
-
MajorVersion
|
|
5191
|
-
MinorVersion
|
|
5192
|
-
PatchVersion
|
|
5193
|
-
Type?: string;
|
|
5194
|
-
InstalledAt
|
|
5195
|
-
Status
|
|
5196
|
-
InstallLog
|
|
5197
|
-
Comments
|
|
5253
|
+
MajorVersion?: number;
|
|
5254
|
+
MinorVersion?: number;
|
|
5255
|
+
PatchVersion?: number;
|
|
5256
|
+
Type?: string | null;
|
|
5257
|
+
InstalledAt?: Date;
|
|
5258
|
+
Status?: string;
|
|
5259
|
+
InstallLog: string | null;
|
|
5260
|
+
Comments: string | null;
|
|
5198
5261
|
}
|
|
5199
5262
|
export declare class UpdateVersionInstallationInput {
|
|
5200
5263
|
ID: string;
|
|
5201
|
-
MajorVersion
|
|
5202
|
-
MinorVersion
|
|
5203
|
-
PatchVersion
|
|
5204
|
-
Type?: string;
|
|
5205
|
-
InstalledAt
|
|
5206
|
-
Status
|
|
5207
|
-
InstallLog?: string;
|
|
5208
|
-
Comments?: string;
|
|
5264
|
+
MajorVersion?: number;
|
|
5265
|
+
MinorVersion?: number;
|
|
5266
|
+
PatchVersion?: number;
|
|
5267
|
+
Type?: string | null;
|
|
5268
|
+
InstalledAt?: Date;
|
|
5269
|
+
Status?: string;
|
|
5270
|
+
InstallLog?: string | null;
|
|
5271
|
+
Comments?: string | null;
|
|
5209
5272
|
OldValues___?: KeyValuePairInput[];
|
|
5210
5273
|
}
|
|
5211
5274
|
export declare class RunVersionInstallationViewResult {
|
|
@@ -5241,29 +5304,29 @@ export declare class DuplicateRunDetailMatch_ {
|
|
|
5241
5304
|
_mj__UpdatedAt: Date;
|
|
5242
5305
|
}
|
|
5243
5306
|
export declare class CreateDuplicateRunDetailMatchInput {
|
|
5244
|
-
DuplicateRunDetailID
|
|
5245
|
-
MatchSource
|
|
5246
|
-
MatchRecordID
|
|
5247
|
-
MatchProbability
|
|
5248
|
-
MatchedAt
|
|
5249
|
-
Action
|
|
5250
|
-
ApprovalStatus
|
|
5251
|
-
RecordMergeLogID
|
|
5252
|
-
MergeStatus
|
|
5253
|
-
MergedAt
|
|
5307
|
+
DuplicateRunDetailID?: string;
|
|
5308
|
+
MatchSource?: string;
|
|
5309
|
+
MatchRecordID?: string;
|
|
5310
|
+
MatchProbability?: number;
|
|
5311
|
+
MatchedAt?: Date;
|
|
5312
|
+
Action?: string;
|
|
5313
|
+
ApprovalStatus?: string;
|
|
5314
|
+
RecordMergeLogID: string | null;
|
|
5315
|
+
MergeStatus?: string;
|
|
5316
|
+
MergedAt?: Date;
|
|
5254
5317
|
}
|
|
5255
5318
|
export declare class UpdateDuplicateRunDetailMatchInput {
|
|
5256
5319
|
ID: string;
|
|
5257
|
-
DuplicateRunDetailID
|
|
5258
|
-
MatchSource
|
|
5259
|
-
MatchRecordID
|
|
5260
|
-
MatchProbability
|
|
5261
|
-
MatchedAt
|
|
5262
|
-
Action
|
|
5263
|
-
ApprovalStatus
|
|
5264
|
-
RecordMergeLogID?: string;
|
|
5265
|
-
MergeStatus
|
|
5266
|
-
MergedAt
|
|
5320
|
+
DuplicateRunDetailID?: string;
|
|
5321
|
+
MatchSource?: string;
|
|
5322
|
+
MatchRecordID?: string;
|
|
5323
|
+
MatchProbability?: number;
|
|
5324
|
+
MatchedAt?: Date;
|
|
5325
|
+
Action?: string;
|
|
5326
|
+
ApprovalStatus?: string;
|
|
5327
|
+
RecordMergeLogID?: string | null;
|
|
5328
|
+
MergeStatus?: string;
|
|
5329
|
+
MergedAt?: Date;
|
|
5267
5330
|
OldValues___?: KeyValuePairInput[];
|
|
5268
5331
|
}
|
|
5269
5332
|
export declare class RunDuplicateRunDetailMatchViewResult {
|
|
@@ -5294,17 +5357,17 @@ export declare class EntityDocumentSetting_ {
|
|
|
5294
5357
|
EntityDocument: string;
|
|
5295
5358
|
}
|
|
5296
5359
|
export declare class CreateEntityDocumentSettingInput {
|
|
5297
|
-
EntityDocumentID
|
|
5298
|
-
Name
|
|
5299
|
-
Value
|
|
5300
|
-
Comments
|
|
5301
|
-
}
|
|
5360
|
+
EntityDocumentID?: string;
|
|
5361
|
+
Name?: string;
|
|
5362
|
+
Value?: string;
|
|
5363
|
+
Comments: string | null;
|
|
5364
|
+
}
|
|
5302
5365
|
export declare class UpdateEntityDocumentSettingInput {
|
|
5303
5366
|
ID: string;
|
|
5304
|
-
EntityDocumentID
|
|
5305
|
-
Name
|
|
5306
|
-
Value
|
|
5307
|
-
Comments?: string;
|
|
5367
|
+
EntityDocumentID?: string;
|
|
5368
|
+
Name?: string;
|
|
5369
|
+
Value?: string;
|
|
5370
|
+
Comments?: string | null;
|
|
5308
5371
|
OldValues___?: KeyValuePairInput[];
|
|
5309
5372
|
}
|
|
5310
5373
|
export declare class RunEntityDocumentSettingViewResult {
|
|
@@ -5336,17 +5399,17 @@ export declare class EntitySetting_ {
|
|
|
5336
5399
|
Entity: string;
|
|
5337
5400
|
}
|
|
5338
5401
|
export declare class CreateEntitySettingInput {
|
|
5339
|
-
EntityID
|
|
5340
|
-
Name
|
|
5341
|
-
Value
|
|
5342
|
-
Comments
|
|
5402
|
+
EntityID?: string;
|
|
5403
|
+
Name?: string;
|
|
5404
|
+
Value?: string;
|
|
5405
|
+
Comments: string | null;
|
|
5343
5406
|
}
|
|
5344
5407
|
export declare class UpdateEntitySettingInput {
|
|
5345
5408
|
ID: string;
|
|
5346
|
-
EntityID
|
|
5347
|
-
Name
|
|
5348
|
-
Value
|
|
5349
|
-
Comments?: string;
|
|
5409
|
+
EntityID?: string;
|
|
5410
|
+
Name?: string;
|
|
5411
|
+
Value?: string;
|
|
5412
|
+
Comments?: string | null;
|
|
5350
5413
|
OldValues___?: KeyValuePairInput[];
|
|
5351
5414
|
}
|
|
5352
5415
|
export declare class RunEntitySettingViewResult {
|
|
@@ -5388,29 +5451,29 @@ export declare class DuplicateRun_ {
|
|
|
5388
5451
|
DuplicateRunDetails_DuplicateRunIDArray: DuplicateRunDetail_[];
|
|
5389
5452
|
}
|
|
5390
5453
|
export declare class CreateDuplicateRunInput {
|
|
5391
|
-
EntityID
|
|
5392
|
-
StartedByUserID
|
|
5393
|
-
SourceListID
|
|
5394
|
-
StartedAt
|
|
5395
|
-
EndedAt
|
|
5396
|
-
ApprovalStatus
|
|
5397
|
-
ApprovalComments
|
|
5398
|
-
ApprovedByUserID
|
|
5399
|
-
ProcessingStatus
|
|
5400
|
-
ProcessingErrorMessage
|
|
5454
|
+
EntityID?: string;
|
|
5455
|
+
StartedByUserID?: string;
|
|
5456
|
+
SourceListID?: string;
|
|
5457
|
+
StartedAt?: Date;
|
|
5458
|
+
EndedAt: Date | null;
|
|
5459
|
+
ApprovalStatus?: string;
|
|
5460
|
+
ApprovalComments: string | null;
|
|
5461
|
+
ApprovedByUserID: string | null;
|
|
5462
|
+
ProcessingStatus?: string;
|
|
5463
|
+
ProcessingErrorMessage: string | null;
|
|
5401
5464
|
}
|
|
5402
5465
|
export declare class UpdateDuplicateRunInput {
|
|
5403
5466
|
ID: string;
|
|
5404
|
-
EntityID
|
|
5405
|
-
StartedByUserID
|
|
5406
|
-
SourceListID
|
|
5407
|
-
StartedAt
|
|
5408
|
-
EndedAt?: Date;
|
|
5409
|
-
ApprovalStatus
|
|
5410
|
-
ApprovalComments?: string;
|
|
5411
|
-
ApprovedByUserID?: string;
|
|
5412
|
-
ProcessingStatus
|
|
5413
|
-
ProcessingErrorMessage?: string;
|
|
5467
|
+
EntityID?: string;
|
|
5468
|
+
StartedByUserID?: string;
|
|
5469
|
+
SourceListID?: string;
|
|
5470
|
+
StartedAt?: Date;
|
|
5471
|
+
EndedAt?: Date | null;
|
|
5472
|
+
ApprovalStatus?: string;
|
|
5473
|
+
ApprovalComments?: string | null;
|
|
5474
|
+
ApprovedByUserID?: string | null;
|
|
5475
|
+
ProcessingStatus?: string;
|
|
5476
|
+
ProcessingErrorMessage?: string | null;
|
|
5414
5477
|
OldValues___?: KeyValuePairInput[];
|
|
5415
5478
|
}
|
|
5416
5479
|
export declare class RunDuplicateRunViewResult {
|
|
@@ -5445,23 +5508,23 @@ export declare class DuplicateRunDetail_ {
|
|
|
5445
5508
|
DuplicateRunDetailMatches_DuplicateRunDetailIDArray: DuplicateRunDetailMatch_[];
|
|
5446
5509
|
}
|
|
5447
5510
|
export declare class CreateDuplicateRunDetailInput {
|
|
5448
|
-
DuplicateRunID
|
|
5449
|
-
RecordID
|
|
5450
|
-
MatchStatus
|
|
5451
|
-
SkippedReason
|
|
5452
|
-
MatchErrorMessage
|
|
5453
|
-
MergeStatus
|
|
5454
|
-
MergeErrorMessage
|
|
5511
|
+
DuplicateRunID?: string;
|
|
5512
|
+
RecordID?: string;
|
|
5513
|
+
MatchStatus?: string;
|
|
5514
|
+
SkippedReason: string | null;
|
|
5515
|
+
MatchErrorMessage: string | null;
|
|
5516
|
+
MergeStatus?: string;
|
|
5517
|
+
MergeErrorMessage: string | null;
|
|
5455
5518
|
}
|
|
5456
5519
|
export declare class UpdateDuplicateRunDetailInput {
|
|
5457
5520
|
ID: string;
|
|
5458
|
-
DuplicateRunID
|
|
5459
|
-
RecordID
|
|
5460
|
-
MatchStatus
|
|
5461
|
-
SkippedReason?: string;
|
|
5462
|
-
MatchErrorMessage?: string;
|
|
5463
|
-
MergeStatus
|
|
5464
|
-
MergeErrorMessage?: string;
|
|
5521
|
+
DuplicateRunID?: string;
|
|
5522
|
+
RecordID?: string;
|
|
5523
|
+
MatchStatus?: string;
|
|
5524
|
+
SkippedReason?: string | null;
|
|
5525
|
+
MatchErrorMessage?: string | null;
|
|
5526
|
+
MergeStatus?: string;
|
|
5527
|
+
MergeErrorMessage?: string | null;
|
|
5465
5528
|
OldValues___?: KeyValuePairInput[];
|
|
5466
5529
|
}
|
|
5467
5530
|
export declare class RunDuplicateRunDetailViewResult {
|
|
@@ -5493,17 +5556,17 @@ export declare class ApplicationSetting_ {
|
|
|
5493
5556
|
Application: string;
|
|
5494
5557
|
}
|
|
5495
5558
|
export declare class CreateApplicationSettingInput {
|
|
5496
|
-
ApplicationID
|
|
5497
|
-
Name
|
|
5498
|
-
Value
|
|
5499
|
-
Comments
|
|
5559
|
+
ApplicationID?: string;
|
|
5560
|
+
Name?: string;
|
|
5561
|
+
Value?: string;
|
|
5562
|
+
Comments: string | null;
|
|
5500
5563
|
}
|
|
5501
5564
|
export declare class UpdateApplicationSettingInput {
|
|
5502
5565
|
ID: string;
|
|
5503
|
-
ApplicationID
|
|
5504
|
-
Name
|
|
5505
|
-
Value
|
|
5506
|
-
Comments?: string;
|
|
5566
|
+
ApplicationID?: string;
|
|
5567
|
+
Name?: string;
|
|
5568
|
+
Value?: string;
|
|
5569
|
+
Comments?: string | null;
|
|
5507
5570
|
OldValues___?: KeyValuePairInput[];
|
|
5508
5571
|
}
|
|
5509
5572
|
export declare class RunApplicationSettingViewResult {
|
|
@@ -5537,17 +5600,17 @@ export declare class ActionCategory_ {
|
|
|
5537
5600
|
Actions_CategoryIDArray: Action_[];
|
|
5538
5601
|
}
|
|
5539
5602
|
export declare class CreateActionCategoryInput {
|
|
5540
|
-
Name
|
|
5541
|
-
Description
|
|
5542
|
-
ParentID
|
|
5543
|
-
Status
|
|
5603
|
+
Name?: string;
|
|
5604
|
+
Description: string | null;
|
|
5605
|
+
ParentID: string | null;
|
|
5606
|
+
Status?: string;
|
|
5544
5607
|
}
|
|
5545
5608
|
export declare class UpdateActionCategoryInput {
|
|
5546
5609
|
ID: string;
|
|
5547
|
-
Name
|
|
5548
|
-
Description?: string;
|
|
5549
|
-
ParentID?: string;
|
|
5550
|
-
Status
|
|
5610
|
+
Name?: string;
|
|
5611
|
+
Description?: string | null;
|
|
5612
|
+
ParentID?: string | null;
|
|
5613
|
+
Status?: string;
|
|
5551
5614
|
OldValues___?: KeyValuePairInput[];
|
|
5552
5615
|
}
|
|
5553
5616
|
export declare class RunActionCategoryViewResult {
|
|
@@ -5584,14 +5647,14 @@ export declare class EntityAction_ {
|
|
|
5584
5647
|
EntityActionParams_EntityActionIDArray: EntityActionParam_[];
|
|
5585
5648
|
}
|
|
5586
5649
|
export declare class CreateEntityActionInput {
|
|
5587
|
-
EntityID
|
|
5588
|
-
ActionID
|
|
5589
|
-
Status
|
|
5650
|
+
EntityID?: string;
|
|
5651
|
+
ActionID?: string;
|
|
5652
|
+
Status?: string;
|
|
5590
5653
|
}
|
|
5591
5654
|
export declare class UpdateEntityActionInput {
|
|
5592
|
-
EntityID
|
|
5593
|
-
ActionID
|
|
5594
|
-
Status
|
|
5655
|
+
EntityID?: string;
|
|
5656
|
+
ActionID?: string;
|
|
5657
|
+
Status?: string;
|
|
5595
5658
|
ID: string;
|
|
5596
5659
|
OldValues___?: KeyValuePairInput[];
|
|
5597
5660
|
}
|
|
@@ -5626,15 +5689,15 @@ export declare class EntityActionInvocation_ {
|
|
|
5626
5689
|
InvocationType: string;
|
|
5627
5690
|
}
|
|
5628
5691
|
export declare class CreateEntityActionInvocationInput {
|
|
5629
|
-
EntityActionID
|
|
5630
|
-
InvocationTypeID
|
|
5631
|
-
Status
|
|
5692
|
+
EntityActionID?: string;
|
|
5693
|
+
InvocationTypeID?: string;
|
|
5694
|
+
Status?: string;
|
|
5632
5695
|
}
|
|
5633
5696
|
export declare class UpdateEntityActionInvocationInput {
|
|
5634
5697
|
ID: string;
|
|
5635
|
-
EntityActionID
|
|
5636
|
-
InvocationTypeID
|
|
5637
|
-
Status
|
|
5698
|
+
EntityActionID?: string;
|
|
5699
|
+
InvocationTypeID?: string;
|
|
5700
|
+
Status?: string;
|
|
5638
5701
|
OldValues___?: KeyValuePairInput[];
|
|
5639
5702
|
}
|
|
5640
5703
|
export declare class RunEntityActionInvocationViewResult {
|
|
@@ -5666,15 +5729,15 @@ export declare class ActionAuthorization_ {
|
|
|
5666
5729
|
Authorization: string;
|
|
5667
5730
|
}
|
|
5668
5731
|
export declare class CreateActionAuthorizationInput {
|
|
5669
|
-
ActionID
|
|
5670
|
-
AuthorizationID
|
|
5671
|
-
Comments
|
|
5732
|
+
ActionID?: string;
|
|
5733
|
+
AuthorizationID?: string;
|
|
5734
|
+
Comments: string | null;
|
|
5672
5735
|
}
|
|
5673
5736
|
export declare class UpdateActionAuthorizationInput {
|
|
5674
5737
|
ID: string;
|
|
5675
|
-
ActionID
|
|
5676
|
-
AuthorizationID
|
|
5677
|
-
Comments?: string;
|
|
5738
|
+
ActionID?: string;
|
|
5739
|
+
AuthorizationID?: string;
|
|
5740
|
+
Comments?: string | null;
|
|
5678
5741
|
OldValues___?: KeyValuePairInput[];
|
|
5679
5742
|
}
|
|
5680
5743
|
export declare class RunActionAuthorizationViewResult {
|
|
@@ -5705,15 +5768,15 @@ export declare class EntityActionInvocationType_ {
|
|
|
5705
5768
|
EntityActionInvocations_InvocationTypeIDArray: EntityActionInvocation_[];
|
|
5706
5769
|
}
|
|
5707
5770
|
export declare class CreateEntityActionInvocationTypeInput {
|
|
5708
|
-
Name
|
|
5709
|
-
Description
|
|
5710
|
-
DisplaySequence
|
|
5771
|
+
Name?: string;
|
|
5772
|
+
Description: string | null;
|
|
5773
|
+
DisplaySequence?: number;
|
|
5711
5774
|
}
|
|
5712
5775
|
export declare class UpdateEntityActionInvocationTypeInput {
|
|
5713
5776
|
ID: string;
|
|
5714
|
-
Name
|
|
5715
|
-
Description?: string;
|
|
5716
|
-
DisplaySequence
|
|
5777
|
+
Name?: string;
|
|
5778
|
+
Description?: string | null;
|
|
5779
|
+
DisplaySequence?: number;
|
|
5717
5780
|
OldValues___?: KeyValuePairInput[];
|
|
5718
5781
|
}
|
|
5719
5782
|
export declare class RunEntityActionInvocationTypeViewResult {
|
|
@@ -5768,41 +5831,41 @@ export declare class Action_ {
|
|
|
5768
5831
|
ActionAuthorizations_ActionIDArray: ActionAuthorization_[];
|
|
5769
5832
|
}
|
|
5770
5833
|
export declare class CreateActionInput {
|
|
5771
|
-
CategoryID
|
|
5772
|
-
Name
|
|
5773
|
-
Description
|
|
5774
|
-
Type
|
|
5775
|
-
UserPrompt
|
|
5776
|
-
UserComments
|
|
5777
|
-
Code
|
|
5778
|
-
CodeComments
|
|
5779
|
-
CodeApprovalStatus
|
|
5780
|
-
CodeApprovalComments
|
|
5781
|
-
CodeApprovedByUserID
|
|
5782
|
-
CodeApprovedAt
|
|
5783
|
-
CodeLocked
|
|
5784
|
-
ForceCodeGeneration
|
|
5785
|
-
RetentionPeriod
|
|
5786
|
-
Status
|
|
5834
|
+
CategoryID: string | null;
|
|
5835
|
+
Name?: string;
|
|
5836
|
+
Description: string | null;
|
|
5837
|
+
Type?: string;
|
|
5838
|
+
UserPrompt: string | null;
|
|
5839
|
+
UserComments: string | null;
|
|
5840
|
+
Code: string | null;
|
|
5841
|
+
CodeComments: string | null;
|
|
5842
|
+
CodeApprovalStatus?: string;
|
|
5843
|
+
CodeApprovalComments: string | null;
|
|
5844
|
+
CodeApprovedByUserID: string | null;
|
|
5845
|
+
CodeApprovedAt: Date | null;
|
|
5846
|
+
CodeLocked?: boolean;
|
|
5847
|
+
ForceCodeGeneration?: boolean;
|
|
5848
|
+
RetentionPeriod: number | null;
|
|
5849
|
+
Status?: string;
|
|
5787
5850
|
}
|
|
5788
5851
|
export declare class UpdateActionInput {
|
|
5789
5852
|
ID: string;
|
|
5790
|
-
CategoryID?: string;
|
|
5791
|
-
Name
|
|
5792
|
-
Description?: string;
|
|
5793
|
-
Type
|
|
5794
|
-
UserPrompt?: string;
|
|
5795
|
-
UserComments?: string;
|
|
5796
|
-
Code?: string;
|
|
5797
|
-
CodeComments?: string;
|
|
5798
|
-
CodeApprovalStatus
|
|
5799
|
-
CodeApprovalComments?: string;
|
|
5800
|
-
CodeApprovedByUserID?: string;
|
|
5801
|
-
CodeApprovedAt?: Date;
|
|
5802
|
-
CodeLocked
|
|
5803
|
-
ForceCodeGeneration
|
|
5804
|
-
RetentionPeriod?: number;
|
|
5805
|
-
Status
|
|
5853
|
+
CategoryID?: string | null;
|
|
5854
|
+
Name?: string;
|
|
5855
|
+
Description?: string | null;
|
|
5856
|
+
Type?: string;
|
|
5857
|
+
UserPrompt?: string | null;
|
|
5858
|
+
UserComments?: string | null;
|
|
5859
|
+
Code?: string | null;
|
|
5860
|
+
CodeComments?: string | null;
|
|
5861
|
+
CodeApprovalStatus?: string;
|
|
5862
|
+
CodeApprovalComments?: string | null;
|
|
5863
|
+
CodeApprovedByUserID?: string | null;
|
|
5864
|
+
CodeApprovedAt?: Date | null;
|
|
5865
|
+
CodeLocked?: boolean;
|
|
5866
|
+
ForceCodeGeneration?: boolean;
|
|
5867
|
+
RetentionPeriod?: number | null;
|
|
5868
|
+
Status?: string;
|
|
5806
5869
|
OldValues___?: KeyValuePairInput[];
|
|
5807
5870
|
}
|
|
5808
5871
|
export declare class RunActionViewResult {
|
|
@@ -5842,17 +5905,17 @@ export declare class EntityActionFilter_ {
|
|
|
5842
5905
|
_mj__UpdatedAt: Date;
|
|
5843
5906
|
}
|
|
5844
5907
|
export declare class CreateEntityActionFilterInput {
|
|
5845
|
-
EntityActionID
|
|
5846
|
-
ActionFilterID
|
|
5847
|
-
Sequence
|
|
5848
|
-
Status
|
|
5908
|
+
EntityActionID?: string;
|
|
5909
|
+
ActionFilterID?: string;
|
|
5910
|
+
Sequence?: number;
|
|
5911
|
+
Status?: string;
|
|
5849
5912
|
}
|
|
5850
5913
|
export declare class UpdateEntityActionFilterInput {
|
|
5851
5914
|
ID: string;
|
|
5852
|
-
EntityActionID
|
|
5853
|
-
ActionFilterID
|
|
5854
|
-
Sequence
|
|
5855
|
-
Status
|
|
5915
|
+
EntityActionID?: string;
|
|
5916
|
+
ActionFilterID?: string;
|
|
5917
|
+
Sequence?: number;
|
|
5918
|
+
Status?: string;
|
|
5856
5919
|
OldValues___?: KeyValuePairInput[];
|
|
5857
5920
|
}
|
|
5858
5921
|
export declare class RunEntityActionFilterViewResult {
|
|
@@ -5884,17 +5947,17 @@ export declare class ActionFilter_ {
|
|
|
5884
5947
|
EntityActionFilters_ActionFilterIDArray: EntityActionFilter_[];
|
|
5885
5948
|
}
|
|
5886
5949
|
export declare class CreateActionFilterInput {
|
|
5887
|
-
UserDescription
|
|
5888
|
-
UserComments
|
|
5889
|
-
Code
|
|
5890
|
-
CodeExplanation
|
|
5950
|
+
UserDescription?: string;
|
|
5951
|
+
UserComments: string | null;
|
|
5952
|
+
Code?: string;
|
|
5953
|
+
CodeExplanation: string | null;
|
|
5891
5954
|
}
|
|
5892
5955
|
export declare class UpdateActionFilterInput {
|
|
5893
5956
|
ID: string;
|
|
5894
|
-
UserDescription
|
|
5895
|
-
UserComments?: string;
|
|
5896
|
-
Code
|
|
5897
|
-
CodeExplanation?: string;
|
|
5957
|
+
UserDescription?: string;
|
|
5958
|
+
UserComments?: string | null;
|
|
5959
|
+
Code?: string;
|
|
5960
|
+
CodeExplanation?: string | null;
|
|
5898
5961
|
OldValues___?: KeyValuePairInput[];
|
|
5899
5962
|
}
|
|
5900
5963
|
export declare class RunActionFilterViewResult {
|
|
@@ -5925,13 +5988,13 @@ export declare class ActionContextType_ {
|
|
|
5925
5988
|
ActionContexts_ContextTypeIDArray: ActionContext_[];
|
|
5926
5989
|
}
|
|
5927
5990
|
export declare class CreateActionContextTypeInput {
|
|
5928
|
-
Name
|
|
5929
|
-
Description
|
|
5991
|
+
Name?: string;
|
|
5992
|
+
Description: string | null;
|
|
5930
5993
|
}
|
|
5931
5994
|
export declare class UpdateActionContextTypeInput {
|
|
5932
5995
|
ID: string;
|
|
5933
|
-
Name
|
|
5934
|
-
Description?: string;
|
|
5996
|
+
Name?: string;
|
|
5997
|
+
Description?: string | null;
|
|
5935
5998
|
OldValues___?: KeyValuePairInput[];
|
|
5936
5999
|
}
|
|
5937
6000
|
export declare class RunActionContextTypeViewResult {
|
|
@@ -5964,17 +6027,17 @@ export declare class ActionResultCode_ {
|
|
|
5964
6027
|
Action: string;
|
|
5965
6028
|
}
|
|
5966
6029
|
export declare class CreateActionResultCodeInput {
|
|
5967
|
-
ActionID
|
|
5968
|
-
ResultCode
|
|
5969
|
-
IsSuccess
|
|
5970
|
-
Description
|
|
6030
|
+
ActionID?: string;
|
|
6031
|
+
ResultCode?: string;
|
|
6032
|
+
IsSuccess?: boolean;
|
|
6033
|
+
Description: string | null;
|
|
5971
6034
|
}
|
|
5972
6035
|
export declare class UpdateActionResultCodeInput {
|
|
5973
6036
|
ID: string;
|
|
5974
|
-
ActionID
|
|
5975
|
-
ResultCode
|
|
5976
|
-
IsSuccess
|
|
5977
|
-
Description?: string;
|
|
6037
|
+
ActionID?: string;
|
|
6038
|
+
ResultCode?: string;
|
|
6039
|
+
IsSuccess?: boolean;
|
|
6040
|
+
Description?: string | null;
|
|
5978
6041
|
OldValues___?: KeyValuePairInput[];
|
|
5979
6042
|
}
|
|
5980
6043
|
export declare class RunActionResultCodeViewResult {
|
|
@@ -6006,15 +6069,15 @@ export declare class ActionContext_ {
|
|
|
6006
6069
|
ContextType?: string;
|
|
6007
6070
|
}
|
|
6008
6071
|
export declare class CreateActionContextInput {
|
|
6009
|
-
ActionID
|
|
6010
|
-
ContextTypeID
|
|
6011
|
-
Status
|
|
6072
|
+
ActionID?: string;
|
|
6073
|
+
ContextTypeID: string | null;
|
|
6074
|
+
Status?: string;
|
|
6012
6075
|
}
|
|
6013
6076
|
export declare class UpdateActionContextInput {
|
|
6014
6077
|
ID: string;
|
|
6015
|
-
ActionID
|
|
6016
|
-
ContextTypeID?: string;
|
|
6017
|
-
Status
|
|
6078
|
+
ActionID?: string;
|
|
6079
|
+
ContextTypeID?: string | null;
|
|
6080
|
+
Status?: string;
|
|
6018
6081
|
OldValues___?: KeyValuePairInput[];
|
|
6019
6082
|
}
|
|
6020
6083
|
export declare class RunActionContextViewResult {
|
|
@@ -6050,23 +6113,23 @@ export declare class ActionExecutionLog_ {
|
|
|
6050
6113
|
User: string;
|
|
6051
6114
|
}
|
|
6052
6115
|
export declare class CreateActionExecutionLogInput {
|
|
6053
|
-
ActionID
|
|
6054
|
-
StartedAt
|
|
6055
|
-
EndedAt
|
|
6056
|
-
Params
|
|
6057
|
-
ResultCode
|
|
6058
|
-
UserID
|
|
6059
|
-
RetentionPeriod
|
|
6116
|
+
ActionID?: string;
|
|
6117
|
+
StartedAt?: Date;
|
|
6118
|
+
EndedAt: Date | null;
|
|
6119
|
+
Params: string | null;
|
|
6120
|
+
ResultCode: string | null;
|
|
6121
|
+
UserID?: string;
|
|
6122
|
+
RetentionPeriod: number | null;
|
|
6060
6123
|
}
|
|
6061
6124
|
export declare class UpdateActionExecutionLogInput {
|
|
6062
6125
|
ID: string;
|
|
6063
|
-
ActionID
|
|
6064
|
-
StartedAt
|
|
6065
|
-
EndedAt?: Date;
|
|
6066
|
-
Params?: string;
|
|
6067
|
-
ResultCode?: string;
|
|
6068
|
-
UserID
|
|
6069
|
-
RetentionPeriod?: number;
|
|
6126
|
+
ActionID?: string;
|
|
6127
|
+
StartedAt?: Date;
|
|
6128
|
+
EndedAt?: Date | null;
|
|
6129
|
+
Params?: string | null;
|
|
6130
|
+
ResultCode?: string | null;
|
|
6131
|
+
UserID?: string;
|
|
6132
|
+
RetentionPeriod?: number | null;
|
|
6070
6133
|
OldValues___?: KeyValuePairInput[];
|
|
6071
6134
|
}
|
|
6072
6135
|
export declare class RunActionExecutionLogViewResult {
|
|
@@ -6104,25 +6167,25 @@ export declare class ActionParam_ {
|
|
|
6104
6167
|
ScheduledActionParams_ActionParamIDArray: ScheduledActionParam_[];
|
|
6105
6168
|
}
|
|
6106
6169
|
export declare class CreateActionParamInput {
|
|
6107
|
-
ActionID
|
|
6108
|
-
Name
|
|
6109
|
-
DefaultValue
|
|
6110
|
-
Type
|
|
6111
|
-
ValueType
|
|
6112
|
-
IsArray
|
|
6113
|
-
Description
|
|
6114
|
-
IsRequired
|
|
6170
|
+
ActionID?: string;
|
|
6171
|
+
Name?: string;
|
|
6172
|
+
DefaultValue: string | null;
|
|
6173
|
+
Type?: string;
|
|
6174
|
+
ValueType?: string;
|
|
6175
|
+
IsArray?: boolean;
|
|
6176
|
+
Description: string | null;
|
|
6177
|
+
IsRequired?: boolean;
|
|
6115
6178
|
}
|
|
6116
6179
|
export declare class UpdateActionParamInput {
|
|
6117
6180
|
ID: string;
|
|
6118
|
-
ActionID
|
|
6119
|
-
Name
|
|
6120
|
-
DefaultValue?: string;
|
|
6121
|
-
Type
|
|
6122
|
-
ValueType
|
|
6123
|
-
IsArray
|
|
6124
|
-
Description?: string;
|
|
6125
|
-
IsRequired
|
|
6181
|
+
ActionID?: string;
|
|
6182
|
+
Name?: string;
|
|
6183
|
+
DefaultValue?: string | null;
|
|
6184
|
+
Type?: string;
|
|
6185
|
+
ValueType?: string;
|
|
6186
|
+
IsArray?: boolean;
|
|
6187
|
+
Description?: string | null;
|
|
6188
|
+
IsRequired?: boolean;
|
|
6126
6189
|
OldValues___?: KeyValuePairInput[];
|
|
6127
6190
|
}
|
|
6128
6191
|
export declare class RunActionParamViewResult {
|
|
@@ -6156,15 +6219,15 @@ export declare class ActionLibrary_ {
|
|
|
6156
6219
|
Library: string;
|
|
6157
6220
|
}
|
|
6158
6221
|
export declare class CreateActionLibraryInput {
|
|
6159
|
-
ActionID
|
|
6160
|
-
LibraryID
|
|
6161
|
-
ItemsUsed
|
|
6222
|
+
ActionID?: string;
|
|
6223
|
+
LibraryID?: string;
|
|
6224
|
+
ItemsUsed: string | null;
|
|
6162
6225
|
}
|
|
6163
6226
|
export declare class UpdateActionLibraryInput {
|
|
6164
6227
|
ID: string;
|
|
6165
|
-
ActionID
|
|
6166
|
-
LibraryID
|
|
6167
|
-
ItemsUsed?: string;
|
|
6228
|
+
ActionID?: string;
|
|
6229
|
+
LibraryID?: string;
|
|
6230
|
+
ItemsUsed?: string | null;
|
|
6168
6231
|
OldValues___?: KeyValuePairInput[];
|
|
6169
6232
|
}
|
|
6170
6233
|
export declare class RunActionLibraryViewResult {
|
|
@@ -6198,19 +6261,19 @@ export declare class Library_ {
|
|
|
6198
6261
|
LibraryItems_LibraryIDArray: LibraryItem_[];
|
|
6199
6262
|
}
|
|
6200
6263
|
export declare class CreateLibraryInput {
|
|
6201
|
-
Name
|
|
6202
|
-
Description
|
|
6203
|
-
Status
|
|
6204
|
-
TypeDefinitions
|
|
6205
|
-
SampleCode
|
|
6264
|
+
Name?: string;
|
|
6265
|
+
Description: string | null;
|
|
6266
|
+
Status?: string;
|
|
6267
|
+
TypeDefinitions: string | null;
|
|
6268
|
+
SampleCode: string | null;
|
|
6206
6269
|
}
|
|
6207
6270
|
export declare class UpdateLibraryInput {
|
|
6208
6271
|
ID: string;
|
|
6209
|
-
Name
|
|
6210
|
-
Description?: string;
|
|
6211
|
-
Status
|
|
6212
|
-
TypeDefinitions?: string;
|
|
6213
|
-
SampleCode?: string;
|
|
6272
|
+
Name?: string;
|
|
6273
|
+
Description?: string | null;
|
|
6274
|
+
Status?: string;
|
|
6275
|
+
TypeDefinitions?: string | null;
|
|
6276
|
+
SampleCode?: string | null;
|
|
6214
6277
|
OldValues___?: KeyValuePairInput[];
|
|
6215
6278
|
}
|
|
6216
6279
|
export declare class RunLibraryViewResult {
|
|
@@ -6247,17 +6310,17 @@ export declare class ListCategory_ {
|
|
|
6247
6310
|
Lists_CategoryIDArray: List_[];
|
|
6248
6311
|
}
|
|
6249
6312
|
export declare class CreateListCategoryInput {
|
|
6250
|
-
Name
|
|
6251
|
-
Description
|
|
6252
|
-
ParentID
|
|
6253
|
-
UserID
|
|
6313
|
+
Name?: string;
|
|
6314
|
+
Description: string | null;
|
|
6315
|
+
ParentID: string | null;
|
|
6316
|
+
UserID?: string;
|
|
6254
6317
|
}
|
|
6255
6318
|
export declare class UpdateListCategoryInput {
|
|
6256
6319
|
ID: string;
|
|
6257
|
-
Name
|
|
6258
|
-
Description?: string;
|
|
6259
|
-
ParentID?: string;
|
|
6260
|
-
UserID
|
|
6320
|
+
Name?: string;
|
|
6321
|
+
Description?: string | null;
|
|
6322
|
+
ParentID?: string | null;
|
|
6323
|
+
UserID?: string;
|
|
6261
6324
|
OldValues___?: KeyValuePairInput[];
|
|
6262
6325
|
}
|
|
6263
6326
|
export declare class RunListCategoryViewResult {
|
|
@@ -6294,21 +6357,21 @@ export declare class CommunicationProvider_ {
|
|
|
6294
6357
|
CommunicationProviderMessageTypes_CommunicationProviderIDArray: CommunicationProviderMessageType_[];
|
|
6295
6358
|
}
|
|
6296
6359
|
export declare class CreateCommunicationProviderInput {
|
|
6297
|
-
Name
|
|
6298
|
-
Description
|
|
6299
|
-
Status
|
|
6300
|
-
SupportsSending
|
|
6301
|
-
SupportsReceiving
|
|
6302
|
-
SupportsScheduledSending
|
|
6360
|
+
Name?: string;
|
|
6361
|
+
Description: string | null;
|
|
6362
|
+
Status?: string;
|
|
6363
|
+
SupportsSending?: boolean;
|
|
6364
|
+
SupportsReceiving?: boolean;
|
|
6365
|
+
SupportsScheduledSending?: boolean;
|
|
6303
6366
|
}
|
|
6304
6367
|
export declare class UpdateCommunicationProviderInput {
|
|
6305
6368
|
ID: string;
|
|
6306
|
-
Name
|
|
6307
|
-
Description?: string;
|
|
6308
|
-
Status
|
|
6309
|
-
SupportsSending
|
|
6310
|
-
SupportsReceiving
|
|
6311
|
-
SupportsScheduledSending
|
|
6369
|
+
Name?: string;
|
|
6370
|
+
Description?: string | null;
|
|
6371
|
+
Status?: string;
|
|
6372
|
+
SupportsSending?: boolean;
|
|
6373
|
+
SupportsReceiving?: boolean;
|
|
6374
|
+
SupportsScheduledSending?: boolean;
|
|
6312
6375
|
OldValues___?: KeyValuePairInput[];
|
|
6313
6376
|
}
|
|
6314
6377
|
export declare class RunCommunicationProviderViewResult {
|
|
@@ -6346,23 +6409,23 @@ export declare class CommunicationRun_ {
|
|
|
6346
6409
|
CommunicationLogs_CommunicationRunIDArray: CommunicationLog_[];
|
|
6347
6410
|
}
|
|
6348
6411
|
export declare class CreateCommunicationRunInput {
|
|
6349
|
-
UserID
|
|
6350
|
-
Direction
|
|
6351
|
-
Status
|
|
6352
|
-
StartedAt
|
|
6353
|
-
EndedAt
|
|
6354
|
-
Comments
|
|
6355
|
-
ErrorMessage
|
|
6412
|
+
UserID?: string;
|
|
6413
|
+
Direction?: string;
|
|
6414
|
+
Status?: string;
|
|
6415
|
+
StartedAt: Date | null;
|
|
6416
|
+
EndedAt: Date | null;
|
|
6417
|
+
Comments: string | null;
|
|
6418
|
+
ErrorMessage: string | null;
|
|
6356
6419
|
}
|
|
6357
6420
|
export declare class UpdateCommunicationRunInput {
|
|
6358
6421
|
ID: string;
|
|
6359
|
-
UserID
|
|
6360
|
-
Direction
|
|
6361
|
-
Status
|
|
6362
|
-
StartedAt?: Date;
|
|
6363
|
-
EndedAt?: Date;
|
|
6364
|
-
Comments?: string;
|
|
6365
|
-
ErrorMessage?: string;
|
|
6422
|
+
UserID?: string;
|
|
6423
|
+
Direction?: string;
|
|
6424
|
+
Status?: string;
|
|
6425
|
+
StartedAt?: Date | null;
|
|
6426
|
+
EndedAt?: Date | null;
|
|
6427
|
+
Comments?: string | null;
|
|
6428
|
+
ErrorMessage?: string | null;
|
|
6366
6429
|
OldValues___?: KeyValuePairInput[];
|
|
6367
6430
|
}
|
|
6368
6431
|
export declare class RunCommunicationRunViewResult {
|
|
@@ -6397,19 +6460,19 @@ export declare class CommunicationProviderMessageType_ {
|
|
|
6397
6460
|
CommunicationLogs_CommunicationProviderMessageTypeIDArray: CommunicationLog_[];
|
|
6398
6461
|
}
|
|
6399
6462
|
export declare class CreateCommunicationProviderMessageTypeInput {
|
|
6400
|
-
CommunicationProviderID
|
|
6401
|
-
CommunicationBaseMessageTypeID
|
|
6402
|
-
Name
|
|
6403
|
-
Status
|
|
6404
|
-
AdditionalAttributes
|
|
6463
|
+
CommunicationProviderID?: string;
|
|
6464
|
+
CommunicationBaseMessageTypeID?: string;
|
|
6465
|
+
Name?: string;
|
|
6466
|
+
Status?: string;
|
|
6467
|
+
AdditionalAttributes: string | null;
|
|
6405
6468
|
}
|
|
6406
6469
|
export declare class UpdateCommunicationProviderMessageTypeInput {
|
|
6407
6470
|
ID: string;
|
|
6408
|
-
CommunicationProviderID
|
|
6409
|
-
CommunicationBaseMessageTypeID
|
|
6410
|
-
Name
|
|
6411
|
-
Status
|
|
6412
|
-
AdditionalAttributes?: string;
|
|
6471
|
+
CommunicationProviderID?: string;
|
|
6472
|
+
CommunicationBaseMessageTypeID?: string;
|
|
6473
|
+
Name?: string;
|
|
6474
|
+
Status?: string;
|
|
6475
|
+
AdditionalAttributes?: string | null;
|
|
6413
6476
|
OldValues___?: KeyValuePairInput[];
|
|
6414
6477
|
}
|
|
6415
6478
|
export declare class RunCommunicationProviderMessageTypeViewResult {
|
|
@@ -6447,25 +6510,25 @@ export declare class CommunicationLog_ {
|
|
|
6447
6510
|
CommunicationProviderMessageType: string;
|
|
6448
6511
|
}
|
|
6449
6512
|
export declare class CreateCommunicationLogInput {
|
|
6450
|
-
CommunicationProviderID
|
|
6451
|
-
CommunicationProviderMessageTypeID
|
|
6452
|
-
CommunicationRunID
|
|
6453
|
-
Direction
|
|
6454
|
-
MessageDate
|
|
6455
|
-
Status
|
|
6456
|
-
MessageContent
|
|
6457
|
-
ErrorMessage
|
|
6513
|
+
CommunicationProviderID?: string;
|
|
6514
|
+
CommunicationProviderMessageTypeID?: string;
|
|
6515
|
+
CommunicationRunID: string | null;
|
|
6516
|
+
Direction?: string;
|
|
6517
|
+
MessageDate?: Date;
|
|
6518
|
+
Status?: string;
|
|
6519
|
+
MessageContent: string | null;
|
|
6520
|
+
ErrorMessage: string | null;
|
|
6458
6521
|
}
|
|
6459
6522
|
export declare class UpdateCommunicationLogInput {
|
|
6460
6523
|
ID: string;
|
|
6461
|
-
CommunicationProviderID
|
|
6462
|
-
CommunicationProviderMessageTypeID
|
|
6463
|
-
CommunicationRunID?: string;
|
|
6464
|
-
Direction
|
|
6465
|
-
MessageDate
|
|
6466
|
-
Status
|
|
6467
|
-
MessageContent?: string;
|
|
6468
|
-
ErrorMessage?: string;
|
|
6524
|
+
CommunicationProviderID?: string;
|
|
6525
|
+
CommunicationProviderMessageTypeID?: string;
|
|
6526
|
+
CommunicationRunID?: string | null;
|
|
6527
|
+
Direction?: string;
|
|
6528
|
+
MessageDate?: Date;
|
|
6529
|
+
Status?: string;
|
|
6530
|
+
MessageContent?: string | null;
|
|
6531
|
+
ErrorMessage?: string | null;
|
|
6469
6532
|
OldValues___?: KeyValuePairInput[];
|
|
6470
6533
|
}
|
|
6471
6534
|
export declare class RunCommunicationLogViewResult {
|
|
@@ -6498,19 +6561,19 @@ export declare class CommunicationBaseMessageType_ {
|
|
|
6498
6561
|
EntityCommunicationMessageTypes_BaseMessageTypeIDArray: EntityCommunicationMessageType_[];
|
|
6499
6562
|
}
|
|
6500
6563
|
export declare class CreateCommunicationBaseMessageTypeInput {
|
|
6501
|
-
Type
|
|
6502
|
-
SupportsAttachments
|
|
6503
|
-
SupportsSubjectLine
|
|
6504
|
-
SupportsHtml
|
|
6505
|
-
MaxBytes
|
|
6564
|
+
Type?: string;
|
|
6565
|
+
SupportsAttachments?: boolean;
|
|
6566
|
+
SupportsSubjectLine?: boolean;
|
|
6567
|
+
SupportsHtml?: boolean;
|
|
6568
|
+
MaxBytes: number | null;
|
|
6506
6569
|
}
|
|
6507
6570
|
export declare class UpdateCommunicationBaseMessageTypeInput {
|
|
6508
6571
|
ID: string;
|
|
6509
|
-
Type
|
|
6510
|
-
SupportsAttachments
|
|
6511
|
-
SupportsSubjectLine
|
|
6512
|
-
SupportsHtml
|
|
6513
|
-
MaxBytes?: number;
|
|
6572
|
+
Type?: string;
|
|
6573
|
+
SupportsAttachments?: boolean;
|
|
6574
|
+
SupportsSubjectLine?: boolean;
|
|
6575
|
+
SupportsHtml?: boolean;
|
|
6576
|
+
MaxBytes?: number | null;
|
|
6514
6577
|
OldValues___?: KeyValuePairInput[];
|
|
6515
6578
|
}
|
|
6516
6579
|
export declare class RunCommunicationBaseMessageTypeViewResult {
|
|
@@ -6553,25 +6616,25 @@ export declare class Template_ {
|
|
|
6553
6616
|
EntityDocuments_TemplateIDArray: EntityDocument_[];
|
|
6554
6617
|
}
|
|
6555
6618
|
export declare class CreateTemplateInput {
|
|
6556
|
-
Name
|
|
6557
|
-
Description
|
|
6558
|
-
CategoryID
|
|
6559
|
-
UserPrompt
|
|
6560
|
-
UserID
|
|
6561
|
-
ActiveAt
|
|
6562
|
-
DisabledAt
|
|
6563
|
-
IsActive
|
|
6619
|
+
Name?: string;
|
|
6620
|
+
Description: string | null;
|
|
6621
|
+
CategoryID: string | null;
|
|
6622
|
+
UserPrompt: string | null;
|
|
6623
|
+
UserID?: string;
|
|
6624
|
+
ActiveAt: Date | null;
|
|
6625
|
+
DisabledAt: Date | null;
|
|
6626
|
+
IsActive?: boolean;
|
|
6564
6627
|
}
|
|
6565
6628
|
export declare class UpdateTemplateInput {
|
|
6566
6629
|
ID: string;
|
|
6567
|
-
Name
|
|
6568
|
-
Description?: string;
|
|
6569
|
-
CategoryID?: string;
|
|
6570
|
-
UserPrompt?: string;
|
|
6571
|
-
UserID
|
|
6572
|
-
ActiveAt?: Date;
|
|
6573
|
-
DisabledAt?: Date;
|
|
6574
|
-
IsActive
|
|
6630
|
+
Name?: string;
|
|
6631
|
+
Description?: string | null;
|
|
6632
|
+
CategoryID?: string | null;
|
|
6633
|
+
UserPrompt?: string | null;
|
|
6634
|
+
UserID?: string;
|
|
6635
|
+
ActiveAt?: Date | null;
|
|
6636
|
+
DisabledAt?: Date | null;
|
|
6637
|
+
IsActive?: boolean;
|
|
6575
6638
|
OldValues___?: KeyValuePairInput[];
|
|
6576
6639
|
}
|
|
6577
6640
|
export declare class RunTemplateViewResult {
|
|
@@ -6610,17 +6673,17 @@ export declare class TemplateCategory_ {
|
|
|
6610
6673
|
TemplateCategories_ParentIDArray: TemplateCategory_[];
|
|
6611
6674
|
}
|
|
6612
6675
|
export declare class CreateTemplateCategoryInput {
|
|
6613
|
-
Name
|
|
6614
|
-
Description
|
|
6615
|
-
ParentID
|
|
6616
|
-
UserID
|
|
6676
|
+
Name?: string;
|
|
6677
|
+
Description: string | null;
|
|
6678
|
+
ParentID: string | null;
|
|
6679
|
+
UserID?: string;
|
|
6617
6680
|
}
|
|
6618
6681
|
export declare class UpdateTemplateCategoryInput {
|
|
6619
6682
|
ID: string;
|
|
6620
|
-
Name
|
|
6621
|
-
Description?: string;
|
|
6622
|
-
ParentID?: string;
|
|
6623
|
-
UserID
|
|
6683
|
+
Name?: string;
|
|
6684
|
+
Description?: string | null;
|
|
6685
|
+
ParentID?: string | null;
|
|
6686
|
+
UserID?: string;
|
|
6624
6687
|
OldValues___?: KeyValuePairInput[];
|
|
6625
6688
|
}
|
|
6626
6689
|
export declare class RunTemplateCategoryViewResult {
|
|
@@ -6656,19 +6719,19 @@ export declare class TemplateContent_ {
|
|
|
6656
6719
|
Type: string;
|
|
6657
6720
|
}
|
|
6658
6721
|
export declare class CreateTemplateContentInput {
|
|
6659
|
-
TemplateID
|
|
6660
|
-
TypeID
|
|
6661
|
-
TemplateText
|
|
6662
|
-
Priority
|
|
6663
|
-
IsActive
|
|
6722
|
+
TemplateID?: string;
|
|
6723
|
+
TypeID?: string;
|
|
6724
|
+
TemplateText: string | null;
|
|
6725
|
+
Priority?: number;
|
|
6726
|
+
IsActive?: boolean;
|
|
6664
6727
|
}
|
|
6665
6728
|
export declare class UpdateTemplateContentInput {
|
|
6666
6729
|
ID: string;
|
|
6667
|
-
TemplateID
|
|
6668
|
-
TypeID
|
|
6669
|
-
TemplateText?: string;
|
|
6670
|
-
Priority
|
|
6671
|
-
IsActive
|
|
6730
|
+
TemplateID?: string;
|
|
6731
|
+
TypeID?: string;
|
|
6732
|
+
TemplateText?: string | null;
|
|
6733
|
+
Priority?: number;
|
|
6734
|
+
IsActive?: boolean;
|
|
6672
6735
|
OldValues___?: KeyValuePairInput[];
|
|
6673
6736
|
}
|
|
6674
6737
|
export declare class RunTemplateContentViewResult {
|
|
@@ -6709,33 +6772,33 @@ export declare class TemplateParam_ {
|
|
|
6709
6772
|
Entity?: string;
|
|
6710
6773
|
}
|
|
6711
6774
|
export declare class CreateTemplateParamInput {
|
|
6712
|
-
TemplateID
|
|
6713
|
-
Name
|
|
6714
|
-
Description
|
|
6715
|
-
Type
|
|
6716
|
-
DefaultValue
|
|
6717
|
-
IsRequired
|
|
6718
|
-
LinkedParameterName
|
|
6719
|
-
LinkedParameterField
|
|
6720
|
-
ExtraFilter
|
|
6721
|
-
EntityID
|
|
6722
|
-
RecordID
|
|
6723
|
-
OrderBy
|
|
6775
|
+
TemplateID?: string;
|
|
6776
|
+
Name?: string;
|
|
6777
|
+
Description: string | null;
|
|
6778
|
+
Type?: string;
|
|
6779
|
+
DefaultValue: string | null;
|
|
6780
|
+
IsRequired?: boolean;
|
|
6781
|
+
LinkedParameterName: string | null;
|
|
6782
|
+
LinkedParameterField: string | null;
|
|
6783
|
+
ExtraFilter: string | null;
|
|
6784
|
+
EntityID: string | null;
|
|
6785
|
+
RecordID: string | null;
|
|
6786
|
+
OrderBy: string | null;
|
|
6724
6787
|
}
|
|
6725
6788
|
export declare class UpdateTemplateParamInput {
|
|
6726
6789
|
ID: string;
|
|
6727
|
-
TemplateID
|
|
6728
|
-
Name
|
|
6729
|
-
Description?: string;
|
|
6730
|
-
Type
|
|
6731
|
-
DefaultValue?: string;
|
|
6732
|
-
IsRequired
|
|
6733
|
-
LinkedParameterName?: string;
|
|
6734
|
-
LinkedParameterField?: string;
|
|
6735
|
-
ExtraFilter?: string;
|
|
6736
|
-
EntityID?: string;
|
|
6737
|
-
RecordID?: string;
|
|
6738
|
-
OrderBy?: string;
|
|
6790
|
+
TemplateID?: string;
|
|
6791
|
+
Name?: string;
|
|
6792
|
+
Description?: string | null;
|
|
6793
|
+
Type?: string;
|
|
6794
|
+
DefaultValue?: string | null;
|
|
6795
|
+
IsRequired?: boolean;
|
|
6796
|
+
LinkedParameterName?: string | null;
|
|
6797
|
+
LinkedParameterField?: string | null;
|
|
6798
|
+
ExtraFilter?: string | null;
|
|
6799
|
+
EntityID?: string | null;
|
|
6800
|
+
RecordID?: string | null;
|
|
6801
|
+
OrderBy?: string | null;
|
|
6739
6802
|
OldValues___?: KeyValuePairInput[];
|
|
6740
6803
|
}
|
|
6741
6804
|
export declare class RunTemplateParamViewResult {
|
|
@@ -6766,15 +6829,15 @@ export declare class TemplateContentType_ {
|
|
|
6766
6829
|
TemplateContents_TypeIDArray: TemplateContent_[];
|
|
6767
6830
|
}
|
|
6768
6831
|
export declare class CreateTemplateContentTypeInput {
|
|
6769
|
-
Name
|
|
6770
|
-
Description
|
|
6771
|
-
CodeType
|
|
6832
|
+
Name?: string;
|
|
6833
|
+
Description: string | null;
|
|
6834
|
+
CodeType?: string;
|
|
6772
6835
|
}
|
|
6773
6836
|
export declare class UpdateTemplateContentTypeInput {
|
|
6774
6837
|
ID: string;
|
|
6775
|
-
Name
|
|
6776
|
-
Description?: string;
|
|
6777
|
-
CodeType
|
|
6838
|
+
Name?: string;
|
|
6839
|
+
Description?: string | null;
|
|
6840
|
+
CodeType?: string;
|
|
6778
6841
|
OldValues___?: KeyValuePairInput[];
|
|
6779
6842
|
}
|
|
6780
6843
|
export declare class RunTemplateContentTypeViewResult {
|
|
@@ -6807,15 +6870,15 @@ export declare class Recommendation_ {
|
|
|
6807
6870
|
RecommendationItems_RecommendationIDArray: RecommendationItem_[];
|
|
6808
6871
|
}
|
|
6809
6872
|
export declare class CreateRecommendationInput {
|
|
6810
|
-
RecommendationRunID
|
|
6811
|
-
SourceEntityID
|
|
6812
|
-
SourceEntityRecordID
|
|
6873
|
+
RecommendationRunID?: string;
|
|
6874
|
+
SourceEntityID?: string;
|
|
6875
|
+
SourceEntityRecordID?: string;
|
|
6813
6876
|
}
|
|
6814
6877
|
export declare class UpdateRecommendationInput {
|
|
6815
6878
|
ID: string;
|
|
6816
|
-
RecommendationRunID
|
|
6817
|
-
SourceEntityID
|
|
6818
|
-
SourceEntityRecordID
|
|
6879
|
+
RecommendationRunID?: string;
|
|
6880
|
+
SourceEntityID?: string;
|
|
6881
|
+
SourceEntityRecordID?: string;
|
|
6819
6882
|
OldValues___?: KeyValuePairInput[];
|
|
6820
6883
|
}
|
|
6821
6884
|
export declare class RunRecommendationViewResult {
|
|
@@ -6845,13 +6908,13 @@ export declare class RecommendationProvider_ {
|
|
|
6845
6908
|
RecommendationRuns_RecommendationProviderIDArray: RecommendationRun_[];
|
|
6846
6909
|
}
|
|
6847
6910
|
export declare class CreateRecommendationProviderInput {
|
|
6848
|
-
Name
|
|
6849
|
-
Description
|
|
6911
|
+
Name?: string;
|
|
6912
|
+
Description: string | null;
|
|
6850
6913
|
}
|
|
6851
6914
|
export declare class UpdateRecommendationProviderInput {
|
|
6852
6915
|
ID: string;
|
|
6853
|
-
Name
|
|
6854
|
-
Description?: string;
|
|
6916
|
+
Name?: string;
|
|
6917
|
+
Description?: string | null;
|
|
6855
6918
|
OldValues___?: KeyValuePairInput[];
|
|
6856
6919
|
}
|
|
6857
6920
|
export declare class RunRecommendationProviderViewResult {
|
|
@@ -6888,21 +6951,21 @@ export declare class RecommendationRun_ {
|
|
|
6888
6951
|
Recommendations_RecommendationRunIDArray: Recommendation_[];
|
|
6889
6952
|
}
|
|
6890
6953
|
export declare class CreateRecommendationRunInput {
|
|
6891
|
-
RecommendationProviderID
|
|
6892
|
-
StartDate
|
|
6893
|
-
EndDate
|
|
6894
|
-
Status
|
|
6895
|
-
Description
|
|
6896
|
-
RunByUserID
|
|
6954
|
+
RecommendationProviderID?: string;
|
|
6955
|
+
StartDate?: Date;
|
|
6956
|
+
EndDate: Date | null;
|
|
6957
|
+
Status?: string;
|
|
6958
|
+
Description: string | null;
|
|
6959
|
+
RunByUserID?: string;
|
|
6897
6960
|
}
|
|
6898
6961
|
export declare class UpdateRecommendationRunInput {
|
|
6899
6962
|
ID: string;
|
|
6900
|
-
RecommendationProviderID
|
|
6901
|
-
StartDate
|
|
6902
|
-
EndDate?: Date;
|
|
6903
|
-
Status
|
|
6904
|
-
Description?: string;
|
|
6905
|
-
RunByUserID
|
|
6963
|
+
RecommendationProviderID?: string;
|
|
6964
|
+
StartDate?: Date;
|
|
6965
|
+
EndDate?: Date | null;
|
|
6966
|
+
Status?: string;
|
|
6967
|
+
Description?: string | null;
|
|
6968
|
+
RunByUserID?: string;
|
|
6906
6969
|
OldValues___?: KeyValuePairInput[];
|
|
6907
6970
|
}
|
|
6908
6971
|
export declare class RunRecommendationRunViewResult {
|
|
@@ -6934,17 +6997,17 @@ export declare class RecommendationItem_ {
|
|
|
6934
6997
|
DestinationEntity: string;
|
|
6935
6998
|
}
|
|
6936
6999
|
export declare class CreateRecommendationItemInput {
|
|
6937
|
-
RecommendationID
|
|
6938
|
-
DestinationEntityID
|
|
6939
|
-
DestinationEntityRecordID
|
|
6940
|
-
MatchProbability
|
|
7000
|
+
RecommendationID?: string;
|
|
7001
|
+
DestinationEntityID?: string;
|
|
7002
|
+
DestinationEntityRecordID?: string;
|
|
7003
|
+
MatchProbability: number | null;
|
|
6941
7004
|
}
|
|
6942
7005
|
export declare class UpdateRecommendationItemInput {
|
|
6943
7006
|
ID: string;
|
|
6944
|
-
RecommendationID
|
|
6945
|
-
DestinationEntityID
|
|
6946
|
-
DestinationEntityRecordID
|
|
6947
|
-
MatchProbability?: number;
|
|
7007
|
+
RecommendationID?: string;
|
|
7008
|
+
DestinationEntityID?: string;
|
|
7009
|
+
DestinationEntityRecordID?: string;
|
|
7010
|
+
MatchProbability?: number | null;
|
|
6948
7011
|
OldValues___?: KeyValuePairInput[];
|
|
6949
7012
|
}
|
|
6950
7013
|
export declare class RunRecommendationItemViewResult {
|
|
@@ -6976,15 +7039,15 @@ export declare class EntityCommunicationMessageType_ {
|
|
|
6976
7039
|
EntityCommunicationFields_EntityCommunicationMessageTypeIDArray: EntityCommunicationField_[];
|
|
6977
7040
|
}
|
|
6978
7041
|
export declare class CreateEntityCommunicationMessageTypeInput {
|
|
6979
|
-
EntityID
|
|
6980
|
-
BaseMessageTypeID
|
|
6981
|
-
IsActive
|
|
7042
|
+
EntityID?: string;
|
|
7043
|
+
BaseMessageTypeID?: string;
|
|
7044
|
+
IsActive?: boolean;
|
|
6982
7045
|
}
|
|
6983
7046
|
export declare class UpdateEntityCommunicationMessageTypeInput {
|
|
6984
7047
|
ID: string;
|
|
6985
|
-
EntityID
|
|
6986
|
-
BaseMessageTypeID
|
|
6987
|
-
IsActive
|
|
7048
|
+
EntityID?: string;
|
|
7049
|
+
BaseMessageTypeID?: string;
|
|
7050
|
+
IsActive?: boolean;
|
|
6988
7051
|
OldValues___?: KeyValuePairInput[];
|
|
6989
7052
|
}
|
|
6990
7053
|
export declare class RunEntityCommunicationMessageTypeViewResult {
|
|
@@ -7015,15 +7078,15 @@ export declare class EntityCommunicationField_ {
|
|
|
7015
7078
|
_mj__UpdatedAt: Date;
|
|
7016
7079
|
}
|
|
7017
7080
|
export declare class CreateEntityCommunicationFieldInput {
|
|
7018
|
-
EntityCommunicationMessageTypeID
|
|
7019
|
-
FieldName
|
|
7020
|
-
Priority
|
|
7081
|
+
EntityCommunicationMessageTypeID?: string;
|
|
7082
|
+
FieldName?: string;
|
|
7083
|
+
Priority?: number;
|
|
7021
7084
|
}
|
|
7022
7085
|
export declare class UpdateEntityCommunicationFieldInput {
|
|
7023
7086
|
ID: string;
|
|
7024
|
-
EntityCommunicationMessageTypeID
|
|
7025
|
-
FieldName
|
|
7026
|
-
Priority
|
|
7087
|
+
EntityCommunicationMessageTypeID?: string;
|
|
7088
|
+
FieldName?: string;
|
|
7089
|
+
Priority?: number;
|
|
7027
7090
|
OldValues___?: KeyValuePairInput[];
|
|
7028
7091
|
}
|
|
7029
7092
|
export declare class RunEntityCommunicationFieldViewResult {
|
|
@@ -7056,17 +7119,17 @@ export declare class RecordChangeReplayRun_ {
|
|
|
7056
7119
|
RecordChanges_ReplayRunIDArray: RecordChange_[];
|
|
7057
7120
|
}
|
|
7058
7121
|
export declare class CreateRecordChangeReplayRunInput {
|
|
7059
|
-
StartedAt
|
|
7060
|
-
EndedAt
|
|
7061
|
-
Status
|
|
7062
|
-
UserID
|
|
7122
|
+
StartedAt?: Date;
|
|
7123
|
+
EndedAt: Date | null;
|
|
7124
|
+
Status?: string;
|
|
7125
|
+
UserID?: string;
|
|
7063
7126
|
}
|
|
7064
7127
|
export declare class UpdateRecordChangeReplayRunInput {
|
|
7065
7128
|
ID: string;
|
|
7066
|
-
StartedAt
|
|
7067
|
-
EndedAt?: Date;
|
|
7068
|
-
Status
|
|
7069
|
-
UserID
|
|
7129
|
+
StartedAt?: Date;
|
|
7130
|
+
EndedAt?: Date | null;
|
|
7131
|
+
Status?: string;
|
|
7132
|
+
UserID?: string;
|
|
7070
7133
|
OldValues___?: KeyValuePairInput[];
|
|
7071
7134
|
}
|
|
7072
7135
|
export declare class RunRecordChangeReplayRunViewResult {
|
|
@@ -7097,15 +7160,15 @@ export declare class LibraryItem_ {
|
|
|
7097
7160
|
Library: string;
|
|
7098
7161
|
}
|
|
7099
7162
|
export declare class CreateLibraryItemInput {
|
|
7100
|
-
Name
|
|
7101
|
-
LibraryID
|
|
7102
|
-
Type
|
|
7163
|
+
Name?: string;
|
|
7164
|
+
LibraryID?: string;
|
|
7165
|
+
Type?: string;
|
|
7103
7166
|
}
|
|
7104
7167
|
export declare class UpdateLibraryItemInput {
|
|
7105
7168
|
ID: string;
|
|
7106
|
-
Name
|
|
7107
|
-
LibraryID
|
|
7108
|
-
Type
|
|
7169
|
+
Name?: string;
|
|
7170
|
+
LibraryID?: string;
|
|
7171
|
+
Type?: string;
|
|
7109
7172
|
OldValues___?: KeyValuePairInput[];
|
|
7110
7173
|
}
|
|
7111
7174
|
export declare class RunLibraryItemViewResult {
|
|
@@ -7136,15 +7199,15 @@ export declare class EntityRelationshipDisplayComponent_ {
|
|
|
7136
7199
|
EntityRelationships_DisplayComponentIDArray: EntityRelationship_[];
|
|
7137
7200
|
}
|
|
7138
7201
|
export declare class CreateEntityRelationshipDisplayComponentInput {
|
|
7139
|
-
Name
|
|
7140
|
-
Description
|
|
7141
|
-
RelationshipType
|
|
7202
|
+
Name?: string;
|
|
7203
|
+
Description: string | null;
|
|
7204
|
+
RelationshipType?: string;
|
|
7142
7205
|
}
|
|
7143
7206
|
export declare class UpdateEntityRelationshipDisplayComponentInput {
|
|
7144
7207
|
ID: string;
|
|
7145
|
-
Name
|
|
7146
|
-
Description?: string;
|
|
7147
|
-
RelationshipType
|
|
7208
|
+
Name?: string;
|
|
7209
|
+
Description?: string | null;
|
|
7210
|
+
RelationshipType?: string;
|
|
7148
7211
|
OldValues___?: KeyValuePairInput[];
|
|
7149
7212
|
}
|
|
7150
7213
|
export declare class RunEntityRelationshipDisplayComponentViewResult {
|
|
@@ -7177,19 +7240,19 @@ export declare class EntityActionParam_ {
|
|
|
7177
7240
|
ActionParam: string;
|
|
7178
7241
|
}
|
|
7179
7242
|
export declare class CreateEntityActionParamInput {
|
|
7180
|
-
EntityActionID
|
|
7181
|
-
ActionParamID
|
|
7182
|
-
ValueType
|
|
7183
|
-
Value
|
|
7184
|
-
Comments
|
|
7243
|
+
EntityActionID?: string;
|
|
7244
|
+
ActionParamID?: string;
|
|
7245
|
+
ValueType?: string;
|
|
7246
|
+
Value: string | null;
|
|
7247
|
+
Comments: string | null;
|
|
7185
7248
|
}
|
|
7186
7249
|
export declare class UpdateEntityActionParamInput {
|
|
7187
7250
|
ID: string;
|
|
7188
|
-
EntityActionID
|
|
7189
|
-
ActionParamID
|
|
7190
|
-
ValueType
|
|
7191
|
-
Value?: string;
|
|
7192
|
-
Comments?: string;
|
|
7251
|
+
EntityActionID?: string;
|
|
7252
|
+
ActionParamID?: string;
|
|
7253
|
+
ValueType?: string;
|
|
7254
|
+
Value?: string | null;
|
|
7255
|
+
Comments?: string | null;
|
|
7193
7256
|
OldValues___?: KeyValuePairInput[];
|
|
7194
7257
|
}
|
|
7195
7258
|
export declare class RunEntityActionParamViewResult {
|
|
@@ -7228,27 +7291,27 @@ export declare class ResourcePermission_ {
|
|
|
7228
7291
|
User?: string;
|
|
7229
7292
|
}
|
|
7230
7293
|
export declare class CreateResourcePermissionInput {
|
|
7231
|
-
ResourceTypeID
|
|
7232
|
-
ResourceRecordID
|
|
7233
|
-
Type
|
|
7234
|
-
StartSharingAt
|
|
7235
|
-
EndSharingAt
|
|
7236
|
-
RoleID
|
|
7237
|
-
UserID
|
|
7238
|
-
PermissionLevel
|
|
7239
|
-
Status
|
|
7294
|
+
ResourceTypeID?: string;
|
|
7295
|
+
ResourceRecordID?: string;
|
|
7296
|
+
Type?: string;
|
|
7297
|
+
StartSharingAt: Date | null;
|
|
7298
|
+
EndSharingAt: Date | null;
|
|
7299
|
+
RoleID: string | null;
|
|
7300
|
+
UserID: string | null;
|
|
7301
|
+
PermissionLevel: string | null;
|
|
7302
|
+
Status?: string;
|
|
7240
7303
|
}
|
|
7241
7304
|
export declare class UpdateResourcePermissionInput {
|
|
7242
7305
|
ID: string;
|
|
7243
|
-
ResourceTypeID
|
|
7244
|
-
ResourceRecordID
|
|
7245
|
-
Type
|
|
7246
|
-
StartSharingAt?: Date;
|
|
7247
|
-
EndSharingAt?: Date;
|
|
7248
|
-
RoleID?: string;
|
|
7249
|
-
UserID?: string;
|
|
7250
|
-
PermissionLevel?: string;
|
|
7251
|
-
Status
|
|
7306
|
+
ResourceTypeID?: string;
|
|
7307
|
+
ResourceRecordID?: string;
|
|
7308
|
+
Type?: string;
|
|
7309
|
+
StartSharingAt?: Date | null;
|
|
7310
|
+
EndSharingAt?: Date | null;
|
|
7311
|
+
RoleID?: string | null;
|
|
7312
|
+
UserID?: string | null;
|
|
7313
|
+
PermissionLevel?: string | null;
|
|
7314
|
+
Status?: string;
|
|
7252
7315
|
OldValues___?: KeyValuePairInput[];
|
|
7253
7316
|
}
|
|
7254
7317
|
export declare class RunResourcePermissionViewResult {
|
|
@@ -7281,17 +7344,17 @@ export declare class ResourceLink_ {
|
|
|
7281
7344
|
ResourceType: string;
|
|
7282
7345
|
}
|
|
7283
7346
|
export declare class CreateResourceLinkInput {
|
|
7284
|
-
UserID
|
|
7285
|
-
ResourceTypeID
|
|
7286
|
-
ResourceRecordID
|
|
7287
|
-
FolderID
|
|
7347
|
+
UserID?: string;
|
|
7348
|
+
ResourceTypeID?: string;
|
|
7349
|
+
ResourceRecordID?: string;
|
|
7350
|
+
FolderID: string | null;
|
|
7288
7351
|
}
|
|
7289
7352
|
export declare class UpdateResourceLinkInput {
|
|
7290
7353
|
ID: string;
|
|
7291
|
-
UserID
|
|
7292
|
-
ResourceTypeID
|
|
7293
|
-
ResourceRecordID
|
|
7294
|
-
FolderID?: string;
|
|
7354
|
+
UserID?: string;
|
|
7355
|
+
ResourceTypeID?: string;
|
|
7356
|
+
ResourceRecordID?: string;
|
|
7357
|
+
FolderID?: string | null;
|
|
7295
7358
|
OldValues___?: KeyValuePairInput[];
|
|
7296
7359
|
}
|
|
7297
7360
|
export declare class RunResourceLinkViewResult {
|
|
@@ -7330,27 +7393,27 @@ export declare class AIAgentRequest_ {
|
|
|
7330
7393
|
ResponseByUser?: string;
|
|
7331
7394
|
}
|
|
7332
7395
|
export declare class CreateAIAgentRequestInput {
|
|
7333
|
-
AgentID
|
|
7334
|
-
RequestedAt
|
|
7335
|
-
RequestForUserID
|
|
7336
|
-
Status
|
|
7337
|
-
Request
|
|
7338
|
-
Response
|
|
7339
|
-
ResponseByUserID
|
|
7340
|
-
RespondedAt
|
|
7341
|
-
Comments
|
|
7396
|
+
AgentID?: string;
|
|
7397
|
+
RequestedAt?: Date;
|
|
7398
|
+
RequestForUserID: string | null;
|
|
7399
|
+
Status?: string;
|
|
7400
|
+
Request?: string;
|
|
7401
|
+
Response: string | null;
|
|
7402
|
+
ResponseByUserID: string | null;
|
|
7403
|
+
RespondedAt: Date | null;
|
|
7404
|
+
Comments: string | null;
|
|
7342
7405
|
}
|
|
7343
7406
|
export declare class UpdateAIAgentRequestInput {
|
|
7344
7407
|
ID: string;
|
|
7345
|
-
AgentID
|
|
7346
|
-
RequestedAt
|
|
7347
|
-
RequestForUserID?: string;
|
|
7348
|
-
Status
|
|
7349
|
-
Request
|
|
7350
|
-
Response?: string;
|
|
7351
|
-
ResponseByUserID?: string;
|
|
7352
|
-
RespondedAt?: Date;
|
|
7353
|
-
Comments?: string;
|
|
7408
|
+
AgentID?: string;
|
|
7409
|
+
RequestedAt?: Date;
|
|
7410
|
+
RequestForUserID?: string | null;
|
|
7411
|
+
Status?: string;
|
|
7412
|
+
Request?: string;
|
|
7413
|
+
Response?: string | null;
|
|
7414
|
+
ResponseByUserID?: string | null;
|
|
7415
|
+
RespondedAt?: Date | null;
|
|
7416
|
+
Comments?: string | null;
|
|
7354
7417
|
OldValues___?: KeyValuePairInput[];
|
|
7355
7418
|
}
|
|
7356
7419
|
export declare class RunAIAgentRequestViewResult {
|
|
@@ -7381,13 +7444,13 @@ export declare class QueryEntity_ {
|
|
|
7381
7444
|
Entity: string;
|
|
7382
7445
|
}
|
|
7383
7446
|
export declare class CreateQueryEntityInput {
|
|
7384
|
-
QueryID
|
|
7385
|
-
EntityID
|
|
7447
|
+
QueryID?: string;
|
|
7448
|
+
EntityID?: string;
|
|
7386
7449
|
}
|
|
7387
7450
|
export declare class UpdateQueryEntityInput {
|
|
7388
7451
|
ID: string;
|
|
7389
|
-
QueryID
|
|
7390
|
-
EntityID
|
|
7452
|
+
QueryID?: string;
|
|
7453
|
+
EntityID?: string;
|
|
7391
7454
|
OldValues___?: KeyValuePairInput[];
|
|
7392
7455
|
}
|
|
7393
7456
|
export declare class RunQueryEntityViewResult {
|
|
@@ -7408,63 +7471,6 @@ export declare class QueryEntityResolver extends ResolverBase {
|
|
|
7408
7471
|
UpdateQueryEntity(input: UpdateQueryEntityInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7409
7472
|
DeleteQueryEntity(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7410
7473
|
}
|
|
7411
|
-
export declare class flyway_schema_history_ {
|
|
7412
|
-
installed_rank: number;
|
|
7413
|
-
version?: string;
|
|
7414
|
-
description?: string;
|
|
7415
|
-
type: string;
|
|
7416
|
-
script: string;
|
|
7417
|
-
checksum?: number;
|
|
7418
|
-
installed_by: string;
|
|
7419
|
-
installed_on: Date;
|
|
7420
|
-
execution_time: number;
|
|
7421
|
-
success: boolean;
|
|
7422
|
-
_mj__CreatedAt: Date;
|
|
7423
|
-
_mj__UpdatedAt: Date;
|
|
7424
|
-
}
|
|
7425
|
-
export declare class Createflyway_schema_historyInput {
|
|
7426
|
-
installed_rank: number;
|
|
7427
|
-
version?: string;
|
|
7428
|
-
description?: string;
|
|
7429
|
-
type: string;
|
|
7430
|
-
script: string;
|
|
7431
|
-
checksum?: number;
|
|
7432
|
-
installed_by: string;
|
|
7433
|
-
installed_on: Date;
|
|
7434
|
-
execution_time: number;
|
|
7435
|
-
success: boolean;
|
|
7436
|
-
}
|
|
7437
|
-
export declare class Updateflyway_schema_historyInput {
|
|
7438
|
-
installed_rank: number;
|
|
7439
|
-
version?: string;
|
|
7440
|
-
description?: string;
|
|
7441
|
-
type: string;
|
|
7442
|
-
script: string;
|
|
7443
|
-
checksum?: number;
|
|
7444
|
-
installed_by: string;
|
|
7445
|
-
installed_on: Date;
|
|
7446
|
-
execution_time: number;
|
|
7447
|
-
success: boolean;
|
|
7448
|
-
OldValues___?: KeyValuePairInput[];
|
|
7449
|
-
}
|
|
7450
|
-
export declare class Runflyway_schema_historyViewResult {
|
|
7451
|
-
Results: flyway_schema_history_[];
|
|
7452
|
-
UserViewRunID?: string;
|
|
7453
|
-
RowCount: number;
|
|
7454
|
-
TotalRowCount: number;
|
|
7455
|
-
ExecutionTime: number;
|
|
7456
|
-
ErrorMessage?: string;
|
|
7457
|
-
Success: boolean;
|
|
7458
|
-
}
|
|
7459
|
-
export declare class flyway_schema_historyResolver extends ResolverBase {
|
|
7460
|
-
Runflyway_schema_historyViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7461
|
-
Runflyway_schema_historyViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7462
|
-
Runflyway_schema_historyDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7463
|
-
flyway_schema_history(installed_rank: number, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<flyway_schema_history_ | null>;
|
|
7464
|
-
Createflyway_schema_history(input: Createflyway_schema_historyInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7465
|
-
Updateflyway_schema_history(input: Updateflyway_schema_historyInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7466
|
-
Deleteflyway_schema_history(installed_rank: number, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7467
|
-
}
|
|
7468
7474
|
export declare class ContentProcessRun_ {
|
|
7469
7475
|
ID: string;
|
|
7470
7476
|
SourceID: string;
|
|
@@ -7477,19 +7483,19 @@ export declare class ContentProcessRun_ {
|
|
|
7477
7483
|
Source?: string;
|
|
7478
7484
|
}
|
|
7479
7485
|
export declare class CreateContentProcessRunInput {
|
|
7480
|
-
SourceID
|
|
7481
|
-
StartTime
|
|
7482
|
-
EndTime
|
|
7483
|
-
Status
|
|
7484
|
-
ProcessedItems
|
|
7486
|
+
SourceID?: string;
|
|
7487
|
+
StartTime: Date | null;
|
|
7488
|
+
EndTime: Date | null;
|
|
7489
|
+
Status: string | null;
|
|
7490
|
+
ProcessedItems: number | null;
|
|
7485
7491
|
}
|
|
7486
7492
|
export declare class UpdateContentProcessRunInput {
|
|
7487
7493
|
ID: string;
|
|
7488
|
-
SourceID
|
|
7489
|
-
StartTime?: Date;
|
|
7490
|
-
EndTime?: Date;
|
|
7491
|
-
Status?: string;
|
|
7492
|
-
ProcessedItems?: number;
|
|
7494
|
+
SourceID?: string;
|
|
7495
|
+
StartTime?: Date | null;
|
|
7496
|
+
EndTime?: Date | null;
|
|
7497
|
+
Status?: string | null;
|
|
7498
|
+
ProcessedItems?: number | null;
|
|
7493
7499
|
OldValues___?: KeyValuePairInput[];
|
|
7494
7500
|
}
|
|
7495
7501
|
export declare class RunContentProcessRunViewResult {
|
|
@@ -7527,19 +7533,19 @@ export declare class ContentSource_ {
|
|
|
7527
7533
|
ContentItems_ContentSourceIDArray: ContentItem_[];
|
|
7528
7534
|
}
|
|
7529
7535
|
export declare class CreateContentSourceInput {
|
|
7530
|
-
Name
|
|
7531
|
-
ContentTypeID
|
|
7532
|
-
ContentSourceTypeID
|
|
7533
|
-
ContentFileTypeID
|
|
7534
|
-
URL
|
|
7536
|
+
Name: string | null;
|
|
7537
|
+
ContentTypeID?: string;
|
|
7538
|
+
ContentSourceTypeID?: string;
|
|
7539
|
+
ContentFileTypeID?: string;
|
|
7540
|
+
URL?: string;
|
|
7535
7541
|
}
|
|
7536
7542
|
export declare class UpdateContentSourceInput {
|
|
7537
7543
|
ID: string;
|
|
7538
|
-
Name?: string;
|
|
7539
|
-
ContentTypeID
|
|
7540
|
-
ContentSourceTypeID
|
|
7541
|
-
ContentFileTypeID
|
|
7542
|
-
URL
|
|
7544
|
+
Name?: string | null;
|
|
7545
|
+
ContentTypeID?: string;
|
|
7546
|
+
ContentSourceTypeID?: string;
|
|
7547
|
+
ContentFileTypeID?: string;
|
|
7548
|
+
URL?: string;
|
|
7543
7549
|
OldValues___?: KeyValuePairInput[];
|
|
7544
7550
|
}
|
|
7545
7551
|
export declare class RunContentSourceViewResult {
|
|
@@ -7573,15 +7579,15 @@ export declare class ContentSourceParam_ {
|
|
|
7573
7579
|
ContentSource?: string;
|
|
7574
7580
|
}
|
|
7575
7581
|
export declare class CreateContentSourceParamInput {
|
|
7576
|
-
ContentSourceID
|
|
7577
|
-
ContentSourceTypeParamID
|
|
7578
|
-
Value
|
|
7582
|
+
ContentSourceID?: string;
|
|
7583
|
+
ContentSourceTypeParamID?: string;
|
|
7584
|
+
Value?: string;
|
|
7579
7585
|
}
|
|
7580
7586
|
export declare class UpdateContentSourceParamInput {
|
|
7581
7587
|
ID: string;
|
|
7582
|
-
ContentSourceID
|
|
7583
|
-
ContentSourceTypeParamID
|
|
7584
|
-
Value
|
|
7588
|
+
ContentSourceID?: string;
|
|
7589
|
+
ContentSourceTypeParamID?: string;
|
|
7590
|
+
Value?: string;
|
|
7585
7591
|
OldValues___?: KeyValuePairInput[];
|
|
7586
7592
|
}
|
|
7587
7593
|
export declare class RunContentSourceParamViewResult {
|
|
@@ -7612,13 +7618,13 @@ export declare class ContentSourceType_ {
|
|
|
7612
7618
|
ContentItems_ContentSourceTypeIDArray: ContentItem_[];
|
|
7613
7619
|
}
|
|
7614
7620
|
export declare class CreateContentSourceTypeInput {
|
|
7615
|
-
Name
|
|
7616
|
-
Description
|
|
7621
|
+
Name?: string;
|
|
7622
|
+
Description: string | null;
|
|
7617
7623
|
}
|
|
7618
7624
|
export declare class UpdateContentSourceTypeInput {
|
|
7619
7625
|
ID: string;
|
|
7620
|
-
Name
|
|
7621
|
-
Description?: string;
|
|
7626
|
+
Name?: string;
|
|
7627
|
+
Description?: string | null;
|
|
7622
7628
|
OldValues___?: KeyValuePairInput[];
|
|
7623
7629
|
}
|
|
7624
7630
|
export declare class RunContentSourceTypeViewResult {
|
|
@@ -7652,19 +7658,19 @@ export declare class ContentSourceTypeParam_ {
|
|
|
7652
7658
|
_mj__UpdatedAt: Date;
|
|
7653
7659
|
}
|
|
7654
7660
|
export declare class CreateContentSourceTypeParamInput {
|
|
7655
|
-
Name
|
|
7656
|
-
Description
|
|
7657
|
-
Type
|
|
7658
|
-
DefaultValue
|
|
7659
|
-
IsRequired
|
|
7661
|
+
Name?: string;
|
|
7662
|
+
Description: string | null;
|
|
7663
|
+
Type: string | null;
|
|
7664
|
+
DefaultValue: string | null;
|
|
7665
|
+
IsRequired?: boolean;
|
|
7660
7666
|
}
|
|
7661
7667
|
export declare class UpdateContentSourceTypeParamInput {
|
|
7662
7668
|
ID: string;
|
|
7663
|
-
Name
|
|
7664
|
-
Description?: string;
|
|
7665
|
-
Type?: string;
|
|
7666
|
-
DefaultValue?: string;
|
|
7667
|
-
IsRequired
|
|
7669
|
+
Name?: string;
|
|
7670
|
+
Description?: string | null;
|
|
7671
|
+
Type?: string | null;
|
|
7672
|
+
DefaultValue?: string | null;
|
|
7673
|
+
IsRequired?: boolean;
|
|
7668
7674
|
OldValues___?: KeyValuePairInput[];
|
|
7669
7675
|
}
|
|
7670
7676
|
export declare class RunContentSourceTypeParamViewResult {
|
|
@@ -7699,19 +7705,19 @@ export declare class ContentType_ {
|
|
|
7699
7705
|
ContentItems_ContentTypeIDArray: ContentItem_[];
|
|
7700
7706
|
}
|
|
7701
7707
|
export declare class CreateContentTypeInput {
|
|
7702
|
-
Name
|
|
7703
|
-
Description
|
|
7704
|
-
AIModelID
|
|
7705
|
-
MinTags
|
|
7706
|
-
MaxTags
|
|
7708
|
+
Name?: string;
|
|
7709
|
+
Description: string | null;
|
|
7710
|
+
AIModelID?: string;
|
|
7711
|
+
MinTags?: number;
|
|
7712
|
+
MaxTags?: number;
|
|
7707
7713
|
}
|
|
7708
7714
|
export declare class UpdateContentTypeInput {
|
|
7709
7715
|
ID: string;
|
|
7710
|
-
Name
|
|
7711
|
-
Description?: string;
|
|
7712
|
-
AIModelID
|
|
7713
|
-
MinTags
|
|
7714
|
-
MaxTags
|
|
7716
|
+
Name?: string;
|
|
7717
|
+
Description?: string | null;
|
|
7718
|
+
AIModelID?: string;
|
|
7719
|
+
MinTags?: number;
|
|
7720
|
+
MaxTags?: number;
|
|
7715
7721
|
OldValues___?: KeyValuePairInput[];
|
|
7716
7722
|
}
|
|
7717
7723
|
export declare class RunContentTypeViewResult {
|
|
@@ -7744,17 +7750,17 @@ export declare class ContentTypeAttribute_ {
|
|
|
7744
7750
|
_mj__UpdatedAt: Date;
|
|
7745
7751
|
}
|
|
7746
7752
|
export declare class CreateContentTypeAttributeInput {
|
|
7747
|
-
ContentTypeID
|
|
7748
|
-
Name
|
|
7749
|
-
Prompt
|
|
7750
|
-
Description
|
|
7753
|
+
ContentTypeID?: string;
|
|
7754
|
+
Name?: string;
|
|
7755
|
+
Prompt?: string;
|
|
7756
|
+
Description: string | null;
|
|
7751
7757
|
}
|
|
7752
7758
|
export declare class UpdateContentTypeAttributeInput {
|
|
7753
7759
|
ID: string;
|
|
7754
|
-
ContentTypeID
|
|
7755
|
-
Name
|
|
7756
|
-
Prompt
|
|
7757
|
-
Description?: string;
|
|
7760
|
+
ContentTypeID?: string;
|
|
7761
|
+
Name?: string;
|
|
7762
|
+
Prompt?: string;
|
|
7763
|
+
Description?: string | null;
|
|
7758
7764
|
OldValues___?: KeyValuePairInput[];
|
|
7759
7765
|
}
|
|
7760
7766
|
export declare class RunContentTypeAttributeViewResult {
|
|
@@ -7785,13 +7791,13 @@ export declare class ContentFileType_ {
|
|
|
7785
7791
|
ContentItems_ContentFileTypeIDArray: ContentItem_[];
|
|
7786
7792
|
}
|
|
7787
7793
|
export declare class CreateContentFileTypeInput {
|
|
7788
|
-
Name
|
|
7789
|
-
FileExtension
|
|
7794
|
+
Name?: string;
|
|
7795
|
+
FileExtension: string | null;
|
|
7790
7796
|
}
|
|
7791
7797
|
export declare class UpdateContentFileTypeInput {
|
|
7792
7798
|
ID: string;
|
|
7793
|
-
Name
|
|
7794
|
-
FileExtension?: string;
|
|
7799
|
+
Name?: string;
|
|
7800
|
+
FileExtension?: string | null;
|
|
7795
7801
|
OldValues___?: KeyValuePairInput[];
|
|
7796
7802
|
}
|
|
7797
7803
|
export declare class RunContentFileTypeViewResult {
|
|
@@ -7835,27 +7841,27 @@ export declare class ContentItem_ {
|
|
|
7835
7841
|
ContentItemTags_ItemIDArray: ContentItemTag_[];
|
|
7836
7842
|
}
|
|
7837
7843
|
export declare class CreateContentItemInput {
|
|
7838
|
-
ContentSourceID
|
|
7839
|
-
Name
|
|
7840
|
-
Description
|
|
7841
|
-
ContentTypeID
|
|
7842
|
-
ContentSourceTypeID
|
|
7843
|
-
ContentFileTypeID
|
|
7844
|
-
Checksum
|
|
7845
|
-
URL
|
|
7846
|
-
Text
|
|
7844
|
+
ContentSourceID?: string;
|
|
7845
|
+
Name: string | null;
|
|
7846
|
+
Description: string | null;
|
|
7847
|
+
ContentTypeID?: string;
|
|
7848
|
+
ContentSourceTypeID?: string;
|
|
7849
|
+
ContentFileTypeID?: string;
|
|
7850
|
+
Checksum: string | null;
|
|
7851
|
+
URL?: string;
|
|
7852
|
+
Text: string | null;
|
|
7847
7853
|
}
|
|
7848
7854
|
export declare class UpdateContentItemInput {
|
|
7849
7855
|
ID: string;
|
|
7850
|
-
ContentSourceID
|
|
7851
|
-
Name?: string;
|
|
7852
|
-
Description?: string;
|
|
7853
|
-
ContentTypeID
|
|
7854
|
-
ContentSourceTypeID
|
|
7855
|
-
ContentFileTypeID
|
|
7856
|
-
Checksum?: string;
|
|
7857
|
-
URL
|
|
7858
|
-
Text?: string;
|
|
7856
|
+
ContentSourceID?: string;
|
|
7857
|
+
Name?: string | null;
|
|
7858
|
+
Description?: string | null;
|
|
7859
|
+
ContentTypeID?: string;
|
|
7860
|
+
ContentSourceTypeID?: string;
|
|
7861
|
+
ContentFileTypeID?: string;
|
|
7862
|
+
Checksum?: string | null;
|
|
7863
|
+
URL?: string;
|
|
7864
|
+
Text?: string | null;
|
|
7859
7865
|
OldValues___?: KeyValuePairInput[];
|
|
7860
7866
|
}
|
|
7861
7867
|
export declare class RunContentItemViewResult {
|
|
@@ -7888,15 +7894,15 @@ export declare class ContentItemAttribute_ {
|
|
|
7888
7894
|
ContentItem?: string;
|
|
7889
7895
|
}
|
|
7890
7896
|
export declare class CreateContentItemAttributeInput {
|
|
7891
|
-
ContentItemID
|
|
7892
|
-
Name
|
|
7893
|
-
Value
|
|
7897
|
+
ContentItemID?: string;
|
|
7898
|
+
Name?: string;
|
|
7899
|
+
Value?: string;
|
|
7894
7900
|
}
|
|
7895
7901
|
export declare class UpdateContentItemAttributeInput {
|
|
7896
7902
|
ID: string;
|
|
7897
|
-
ContentItemID
|
|
7898
|
-
Name
|
|
7899
|
-
Value
|
|
7903
|
+
ContentItemID?: string;
|
|
7904
|
+
Name?: string;
|
|
7905
|
+
Value?: string;
|
|
7900
7906
|
OldValues___?: KeyValuePairInput[];
|
|
7901
7907
|
}
|
|
7902
7908
|
export declare class RunContentItemAttributeViewResult {
|
|
@@ -7926,13 +7932,13 @@ export declare class ContentItemTag_ {
|
|
|
7926
7932
|
Item?: string;
|
|
7927
7933
|
}
|
|
7928
7934
|
export declare class CreateContentItemTagInput {
|
|
7929
|
-
ItemID
|
|
7930
|
-
Tag
|
|
7935
|
+
ItemID?: string;
|
|
7936
|
+
Tag?: string;
|
|
7931
7937
|
}
|
|
7932
7938
|
export declare class UpdateContentItemTagInput {
|
|
7933
7939
|
ID: string;
|
|
7934
|
-
ItemID
|
|
7935
|
-
Tag
|
|
7940
|
+
ItemID?: string;
|
|
7941
|
+
Tag?: string;
|
|
7936
7942
|
OldValues___?: KeyValuePairInput[];
|
|
7937
7943
|
}
|
|
7938
7944
|
export declare class RunContentItemTagViewResult {
|
|
@@ -7965,19 +7971,19 @@ export declare class AIAgentLearningCycle_ {
|
|
|
7965
7971
|
Agent?: string;
|
|
7966
7972
|
}
|
|
7967
7973
|
export declare class CreateAIAgentLearningCycleInput {
|
|
7968
|
-
AgentID
|
|
7969
|
-
StartedAt
|
|
7970
|
-
EndedAt
|
|
7971
|
-
Status
|
|
7972
|
-
AgentSummary
|
|
7974
|
+
AgentID?: string;
|
|
7975
|
+
StartedAt?: Date;
|
|
7976
|
+
EndedAt: Date | null;
|
|
7977
|
+
Status?: string;
|
|
7978
|
+
AgentSummary: string | null;
|
|
7973
7979
|
}
|
|
7974
7980
|
export declare class UpdateAIAgentLearningCycleInput {
|
|
7975
7981
|
ID: string;
|
|
7976
|
-
AgentID
|
|
7977
|
-
StartedAt
|
|
7978
|
-
EndedAt?: Date;
|
|
7979
|
-
Status
|
|
7980
|
-
AgentSummary?: string;
|
|
7982
|
+
AgentID?: string;
|
|
7983
|
+
StartedAt?: Date;
|
|
7984
|
+
EndedAt?: Date | null;
|
|
7985
|
+
Status?: string;
|
|
7986
|
+
AgentSummary?: string | null;
|
|
7981
7987
|
OldValues___?: KeyValuePairInput[];
|
|
7982
7988
|
}
|
|
7983
7989
|
export declare class RunAIAgentLearningCycleViewResult {
|