@squidcloud/local-backend 1.0.60 → 1.0.62
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/common/src/ai-assistant.context.d.ts +13 -13
- package/dist/common/src/ai-assistant.context.js +19 -19
- package/dist/common/src/ai-assistant.schemas.d.ts +243 -243
- package/dist/common/src/ai-assistant.schemas.js +210 -210
- package/dist/common/src/ai-assistant.types.d.ts +90 -90
- package/dist/common/src/ai-assistant.types.js +11 -11
- package/dist/common/src/api-call.context.d.ts +13 -13
- package/dist/common/src/api-call.context.js +16 -16
- package/dist/common/src/api.types.d.ts +23 -23
- package/dist/common/src/api.types.js +2 -2
- package/dist/common/src/application.schemas.d.ts +1312 -1168
- package/dist/common/src/application.schemas.js +860 -741
- package/dist/common/src/application.schemas.js.map +1 -1
- package/dist/common/src/application.types.d.ts +186 -228
- package/dist/common/src/application.types.js +89 -89
- package/dist/common/src/application.types.js.map +1 -1
- package/dist/common/src/backend-function.schemas.d.ts +3 -3
- package/dist/common/src/backend-function.schemas.js +12 -12
- package/dist/common/src/backend-function.types.d.ts +6 -6
- package/dist/common/src/backend-function.types.js +2 -2
- package/dist/common/src/backend-run.types.d.ts +54 -54
- package/dist/common/src/backend-run.types.js +96 -96
- package/dist/common/src/bundle-api.types.d.ts +63 -63
- package/dist/common/src/bundle-api.types.js +2 -2
- package/dist/common/src/bundle-data.types.d.ts +59 -59
- package/dist/common/src/bundle-data.types.js +2 -2
- package/dist/common/src/communication.types.d.ts +18 -18
- package/dist/common/src/communication.types.js +40 -40
- package/dist/common/src/context.types.d.ts +24 -24
- package/dist/common/src/context.types.js +2 -2
- package/dist/common/src/distributed-lock.context.d.ts +5 -5
- package/dist/common/src/distributed-lock.context.js +10 -10
- package/dist/common/src/document.types.d.ts +32 -32
- package/dist/common/src/document.types.js +50 -50
- package/dist/common/src/graphql.context.d.ts +14 -14
- package/dist/common/src/graphql.context.js +12 -12
- package/dist/common/src/graphql.types.d.ts +11 -11
- package/dist/common/src/graphql.types.js +34 -34
- package/dist/common/src/heartbeat.types.d.ts +4 -4
- package/dist/common/src/heartbeat.types.js +16 -16
- package/dist/common/src/http-status.enum.d.ts +50 -50
- package/dist/common/src/http-status.enum.js +54 -54
- package/dist/common/src/index.d.ts +53 -53
- package/dist/common/src/index.js +69 -69
- package/dist/common/src/integrations/ai_assistant.types.d.ts +24 -30
- package/dist/common/src/integrations/ai_assistant.types.js +2 -2
- package/dist/common/src/integrations/api.types.d.ts +80 -80
- package/dist/common/src/integrations/api.types.js +2 -2
- package/dist/common/src/integrations/auth.types.d.ts +39 -39
- package/dist/common/src/integrations/auth.types.js +2 -2
- package/dist/common/src/integrations/database.types.d.ts +231 -236
- package/dist/common/src/integrations/database.types.js +2 -2
- package/dist/common/src/integrations/index.d.ts +124 -101
- package/dist/common/src/integrations/index.js +111 -105
- package/dist/common/src/integrations/index.js.map +1 -1
- package/dist/common/src/integrations/observability.types.d.ts +23 -23
- package/dist/common/src/integrations/observability.types.js +23 -23
- package/dist/common/src/logger.types.d.ts +21 -21
- package/dist/common/src/logger.types.js +11 -11
- package/dist/common/src/metrics.types.d.ts +73 -73
- package/dist/common/src/metrics.types.js +11 -11
- package/dist/common/src/mutation.context.d.ts +13 -13
- package/dist/common/src/mutation.context.js +26 -26
- package/dist/common/src/mutation.schemas.d.ts +5 -5
- package/dist/common/src/mutation.schemas.js +114 -114
- package/dist/common/src/mutation.types.d.ts +63 -63
- package/dist/common/src/mutation.types.js +142 -142
- package/dist/common/src/named-query.context.d.ts +4 -4
- package/dist/common/src/named-query.context.js +9 -9
- package/dist/common/src/named-query.schemas.d.ts +3 -3
- package/dist/common/src/named-query.schemas.js +13 -13
- package/dist/common/src/named-query.types.d.ts +8 -8
- package/dist/common/src/named-query.types.js +2 -2
- package/dist/common/src/query/base-query-builder.d.ts +37 -66
- package/dist/common/src/query/base-query-builder.js +36 -294
- package/dist/common/src/query/base-query-builder.js.map +1 -1
- package/dist/common/src/query/index.d.ts +4 -3
- package/dist/common/src/query/index.js +20 -19
- package/dist/common/src/query/index.js.map +1 -1
- package/dist/common/src/query/pagination.d.ts +42 -0
- package/dist/common/src/query/pagination.js +165 -0
- package/dist/common/src/query/pagination.js.map +1 -0
- package/dist/common/src/query/query-context.d.ts +47 -47
- package/dist/common/src/query/query-context.js +159 -159
- package/dist/common/src/query/serialized-query.types.d.ts +24 -24
- package/dist/common/src/query/serialized-query.types.js +2 -2
- package/dist/common/src/query.types.d.ts +86 -81
- package/dist/common/src/query.types.js +153 -153
- package/dist/common/src/query.types.js.map +1 -1
- package/dist/common/src/regions.d.ts +21 -21
- package/dist/common/src/regions.js +46 -46
- package/dist/common/src/schema/schema.types.d.ts +30 -30
- package/dist/common/src/schema/schema.types.js +172 -172
- package/dist/common/src/secret.schemas.d.ts +6 -6
- package/dist/common/src/secret.schemas.js +32 -32
- package/dist/common/src/secret.types.d.ts +49 -49
- package/dist/common/src/secret.types.js +5 -5
- package/dist/common/src/security.types.d.ts +3 -3
- package/dist/common/src/security.types.js +2 -2
- package/dist/common/src/socket.schemas.d.ts +3 -3
- package/dist/common/src/socket.schemas.js +58 -58
- package/dist/common/src/socket.types.d.ts +108 -108
- package/dist/common/src/socket.types.js +2 -2
- package/dist/common/src/time-units.d.ts +5 -5
- package/dist/common/src/time-units.js +8 -8
- package/dist/common/src/trigger.types.d.ts +15 -15
- package/dist/common/src/trigger.types.js +2 -2
- package/dist/common/src/types.d.ts +21 -21
- package/dist/common/src/types.js +2 -2
- package/dist/common/src/utils/array.d.ts +8 -8
- package/dist/common/src/utils/array.js +54 -54
- package/dist/common/src/utils/assert.d.ts +8 -8
- package/dist/common/src/utils/assert.js +49 -49
- package/dist/common/src/utils/error.d.ts +4 -4
- package/dist/common/src/utils/error.js +10 -10
- package/dist/common/src/utils/http.d.ts +2 -2
- package/dist/common/src/utils/http.js +40 -40
- package/dist/common/src/utils/id.d.ts +2 -2
- package/dist/common/src/utils/id.js +21 -21
- package/dist/common/src/utils/lock.manager.d.ts +9 -9
- package/dist/common/src/utils/lock.manager.js +39 -39
- package/dist/common/src/utils/nullish.d.ts +2 -2
- package/dist/common/src/utils/nullish.js +11 -11
- package/dist/common/src/utils/object.d.ts +5 -5
- package/dist/common/src/utils/object.js +75 -75
- package/dist/common/src/utils/serialization.d.ts +6 -6
- package/dist/common/src/utils/serialization.js +77 -77
- package/dist/common/src/utils/transforms.d.ts +18 -18
- package/dist/common/src/utils/transforms.js +92 -92
- package/dist/common/src/utils/url.d.ts +1 -1
- package/dist/common/src/utils/url.js +15 -15
- package/dist/common/src/utils/validation.d.ts +17 -17
- package/dist/common/src/utils/validation.js +209 -209
- package/dist/common/src/webhook-response.d.ts +6 -6
- package/dist/common/src/webhook-response.js +2 -2
- package/dist/internal-common/src/async-queue.d.ts +4 -4
- package/dist/internal-common/src/async-queue.js +17 -17
- package/dist/internal-common/src/code-executor.types.d.ts +13 -13
- package/dist/internal-common/src/code-executor.types.js +2 -2
- package/dist/internal-common/src/dao.types.d.ts +46 -0
- package/dist/internal-common/src/dao.types.js +3 -0
- package/dist/internal-common/src/dao.types.js.map +1 -0
- package/dist/internal-common/src/environment/environment.types.d.ts +74 -74
- package/dist/internal-common/src/environment/environment.types.js +2 -2
- package/dist/internal-common/src/environment/index.d.ts +6 -6
- package/dist/internal-common/src/environment/index.js +27 -27
- package/dist/internal-common/src/environment/local.environment.d.ts +2 -2
- package/dist/internal-common/src/environment/local.environment.js +62 -62
- package/dist/internal-common/src/filters/custom-exception.filter.d.ts +6 -6
- package/dist/internal-common/src/filters/custom-exception.filter.js +44 -44
- package/dist/internal-common/src/index.d.ts +14 -14
- package/dist/internal-common/src/index.js +32 -32
- package/dist/internal-common/src/index.js.map +1 -1
- package/dist/internal-common/src/interceptors/body.interceptor.d.ts +5 -5
- package/dist/internal-common/src/interceptors/body.interceptor.js +24 -24
- package/dist/internal-common/src/kafka/kafka.manager.d.ts +22 -22
- package/dist/internal-common/src/kafka/kafka.manager.js +129 -129
- package/dist/internal-common/src/kafka/kafka.types.d.ts +17 -17
- package/dist/internal-common/src/kafka/kafka.types.js +2 -2
- package/dist/internal-common/src/kafka-observability-publisher.d.ts +11 -11
- package/dist/internal-common/src/kafka-observability-publisher.js +20 -20
- package/dist/internal-common/src/local-dev.types.d.ts +31 -31
- package/dist/internal-common/src/local-dev.types.js +2 -2
- package/dist/internal-common/src/observability-publisher.d.ts +9 -9
- package/dist/internal-common/src/observability-publisher.js +58 -58
- package/dist/internal-common/src/observability.types.d.ts +17 -17
- package/dist/internal-common/src/observability.types.js +2 -2
- package/dist/internal-common/src/shutdown.manager.d.ts +20 -20
- package/dist/internal-common/src/shutdown.manager.js +75 -75
- package/dist/internal-common/src/utils.d.ts +5 -5
- package/dist/internal-common/src/utils.js +29 -29
- package/dist/local-backend/src/index.d.ts +4 -4
- package/dist/local-backend/src/index.js +20 -20
- package/dist/local-backend/src/local-backend-socket.service.d.ts +18 -18
- package/dist/local-backend/src/local-backend-socket.service.js +107 -107
- package/dist/local-backend/src/local-backend-socket.service.js.map +1 -1
- package/dist/local-backend/src/local-backend.app.d.ts +2 -2
- package/dist/local-backend/src/local-backend.app.js +19 -19
- package/dist/local-backend/src/local-backend.controller.d.ts +8 -8
- package/dist/local-backend/src/local-backend.controller.js +49 -49
- package/dist/local-backend/src/local-backend.module.d.ts +8 -8
- package/dist/local-backend/src/local-backend.module.js +53 -53
- package/dist/local-backend/src/local-backend.service.d.ts +15 -15
- package/dist/local-backend/src/local-backend.service.js +165 -165
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import { AiAssistantChatRequest, AiAssistantMutateRequest, AiAssistantMutationType, AiAssistantResourceType } from './ai-assistant.types';
|
|
2
|
-
export declare class AiAssistantChatContext {
|
|
3
|
-
readonly prompt: string;
|
|
4
|
-
readonly profileId: string;
|
|
5
|
-
constructor(request: AiAssistantChatRequest);
|
|
6
|
-
}
|
|
7
|
-
export declare class AiAssistantMutationContext {
|
|
8
|
-
readonly type: AiAssistantMutationType;
|
|
9
|
-
readonly resource: AiAssistantResourceType;
|
|
10
|
-
readonly profileId: string;
|
|
11
|
-
readonly payload: any;
|
|
12
|
-
constructor(request: AiAssistantMutateRequest);
|
|
13
|
-
}
|
|
1
|
+
import { AiAssistantChatRequest, AiAssistantMutateRequest, AiAssistantMutationType, AiAssistantResourceType } from './ai-assistant.types';
|
|
2
|
+
export declare class AiAssistantChatContext {
|
|
3
|
+
readonly prompt: string;
|
|
4
|
+
readonly profileId: string;
|
|
5
|
+
constructor(request: AiAssistantChatRequest);
|
|
6
|
+
}
|
|
7
|
+
export declare class AiAssistantMutationContext {
|
|
8
|
+
readonly type: AiAssistantMutationType;
|
|
9
|
+
readonly resource: AiAssistantResourceType;
|
|
10
|
+
readonly profileId: string;
|
|
11
|
+
readonly payload: any;
|
|
12
|
+
constructor(request: AiAssistantMutateRequest);
|
|
13
|
+
}
|
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.AiAssistantMutationContext = exports.AiAssistantChatContext = void 0;
|
|
4
|
-
class AiAssistantChatContext {
|
|
5
|
-
constructor(request) {
|
|
6
|
-
this.profileId = request.profileId;
|
|
7
|
-
this.prompt = request.prompt;
|
|
8
|
-
}
|
|
9
|
-
}
|
|
10
|
-
exports.AiAssistantChatContext = AiAssistantChatContext;
|
|
11
|
-
class AiAssistantMutationContext {
|
|
12
|
-
constructor(request) {
|
|
13
|
-
this.profileId = request.profileId;
|
|
14
|
-
this.type = request.type;
|
|
15
|
-
this.resource = request.resource;
|
|
16
|
-
this.payload = request.payload;
|
|
17
|
-
}
|
|
18
|
-
}
|
|
19
|
-
exports.AiAssistantMutationContext = AiAssistantMutationContext;
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.AiAssistantMutationContext = exports.AiAssistantChatContext = void 0;
|
|
4
|
+
class AiAssistantChatContext {
|
|
5
|
+
constructor(request) {
|
|
6
|
+
this.profileId = request.profileId;
|
|
7
|
+
this.prompt = request.prompt;
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
exports.AiAssistantChatContext = AiAssistantChatContext;
|
|
11
|
+
class AiAssistantMutationContext {
|
|
12
|
+
constructor(request) {
|
|
13
|
+
this.profileId = request.profileId;
|
|
14
|
+
this.type = request.type;
|
|
15
|
+
this.resource = request.resource;
|
|
16
|
+
this.payload = request.payload;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
exports.AiAssistantMutationContext = AiAssistantMutationContext;
|
|
20
20
|
//# sourceMappingURL=ai-assistant.context.js.map
|
|
@@ -1,243 +1,243 @@
|
|
|
1
|
-
export declare const AiAssistantChatRequestSchema: {
|
|
2
|
-
type: string;
|
|
3
|
-
properties: {
|
|
4
|
-
profileId: {
|
|
5
|
-
type: string;
|
|
6
|
-
};
|
|
7
|
-
integrationId: {
|
|
8
|
-
type: string;
|
|
9
|
-
};
|
|
10
|
-
clientRequestId: {
|
|
11
|
-
type: string;
|
|
12
|
-
};
|
|
13
|
-
prompt: {
|
|
14
|
-
type: string;
|
|
15
|
-
};
|
|
16
|
-
};
|
|
17
|
-
required: string[];
|
|
18
|
-
};
|
|
19
|
-
export declare const AiAssistantMutateRequestSchema: {
|
|
20
|
-
type: string;
|
|
21
|
-
properties: {
|
|
22
|
-
profileId: {
|
|
23
|
-
type: string;
|
|
24
|
-
};
|
|
25
|
-
integrationId: {
|
|
26
|
-
type: string;
|
|
27
|
-
};
|
|
28
|
-
type: {
|
|
29
|
-
type: string;
|
|
30
|
-
enum: string[];
|
|
31
|
-
};
|
|
32
|
-
resource: {
|
|
33
|
-
type: string;
|
|
34
|
-
enum: string[];
|
|
35
|
-
};
|
|
36
|
-
};
|
|
37
|
-
required: string[];
|
|
38
|
-
oneOf: ({
|
|
39
|
-
properties: {
|
|
40
|
-
type: {
|
|
41
|
-
const: string;
|
|
42
|
-
};
|
|
43
|
-
resource: {
|
|
44
|
-
const: string;
|
|
45
|
-
};
|
|
46
|
-
payload: {
|
|
47
|
-
type: string;
|
|
48
|
-
properties: {
|
|
49
|
-
modelName: {
|
|
50
|
-
type: string;
|
|
51
|
-
enum: string[];
|
|
52
|
-
};
|
|
53
|
-
strictContext: {
|
|
54
|
-
type: string;
|
|
55
|
-
};
|
|
56
|
-
id?: undefined;
|
|
57
|
-
instruction?: undefined;
|
|
58
|
-
title?: undefined;
|
|
59
|
-
context?: undefined;
|
|
60
|
-
};
|
|
61
|
-
required: string[];
|
|
62
|
-
};
|
|
63
|
-
};
|
|
64
|
-
type?: undefined;
|
|
65
|
-
required?: undefined;
|
|
66
|
-
} | {
|
|
67
|
-
properties: {
|
|
68
|
-
type: {
|
|
69
|
-
const: string;
|
|
70
|
-
};
|
|
71
|
-
resource: {
|
|
72
|
-
const: string;
|
|
73
|
-
};
|
|
74
|
-
payload: {
|
|
75
|
-
type: string;
|
|
76
|
-
properties: {
|
|
77
|
-
id: {
|
|
78
|
-
type: string;
|
|
79
|
-
};
|
|
80
|
-
instruction: {
|
|
81
|
-
type: string;
|
|
82
|
-
};
|
|
83
|
-
modelName?: undefined;
|
|
84
|
-
strictContext?: undefined;
|
|
85
|
-
title?: undefined;
|
|
86
|
-
context?: undefined;
|
|
87
|
-
};
|
|
88
|
-
required: string[];
|
|
89
|
-
};
|
|
90
|
-
};
|
|
91
|
-
type?: undefined;
|
|
92
|
-
required?: undefined;
|
|
93
|
-
} | {
|
|
94
|
-
type: string;
|
|
95
|
-
properties: {
|
|
96
|
-
type: {
|
|
97
|
-
const: string;
|
|
98
|
-
};
|
|
99
|
-
resource: {
|
|
100
|
-
const: string;
|
|
101
|
-
};
|
|
102
|
-
payload: {
|
|
103
|
-
type: string;
|
|
104
|
-
properties: {
|
|
105
|
-
id: {
|
|
106
|
-
type: string;
|
|
107
|
-
};
|
|
108
|
-
title: {
|
|
109
|
-
type: string;
|
|
110
|
-
};
|
|
111
|
-
context: {
|
|
112
|
-
anyOf: {
|
|
113
|
-
type: string;
|
|
114
|
-
properties: {
|
|
115
|
-
type: {
|
|
116
|
-
const: string;
|
|
117
|
-
};
|
|
118
|
-
data: {
|
|
119
|
-
type: string;
|
|
120
|
-
};
|
|
121
|
-
};
|
|
122
|
-
required: string[];
|
|
123
|
-
}[];
|
|
124
|
-
};
|
|
125
|
-
modelName?: undefined;
|
|
126
|
-
strictContext?: undefined;
|
|
127
|
-
instruction?: undefined;
|
|
128
|
-
};
|
|
129
|
-
required: string[];
|
|
130
|
-
};
|
|
131
|
-
};
|
|
132
|
-
required: string[];
|
|
133
|
-
} | {
|
|
134
|
-
properties: {
|
|
135
|
-
type: {
|
|
136
|
-
const: string;
|
|
137
|
-
};
|
|
138
|
-
resource: {
|
|
139
|
-
const: string;
|
|
140
|
-
};
|
|
141
|
-
payload: {
|
|
142
|
-
type: string;
|
|
143
|
-
properties: {
|
|
144
|
-
modelName: {
|
|
145
|
-
type: string;
|
|
146
|
-
enum: string[];
|
|
147
|
-
};
|
|
148
|
-
strictContext: {
|
|
149
|
-
type: string;
|
|
150
|
-
};
|
|
151
|
-
id?: undefined;
|
|
152
|
-
instruction?: undefined;
|
|
153
|
-
title?: undefined;
|
|
154
|
-
context?: undefined;
|
|
155
|
-
};
|
|
156
|
-
required?: undefined;
|
|
157
|
-
};
|
|
158
|
-
};
|
|
159
|
-
type?: undefined;
|
|
160
|
-
required?: undefined;
|
|
161
|
-
} | {
|
|
162
|
-
properties: {
|
|
163
|
-
type: {
|
|
164
|
-
const: string;
|
|
165
|
-
};
|
|
166
|
-
resource: {
|
|
167
|
-
const: string;
|
|
168
|
-
};
|
|
169
|
-
payload: {
|
|
170
|
-
type: string;
|
|
171
|
-
properties: {
|
|
172
|
-
id: {
|
|
173
|
-
type: string;
|
|
174
|
-
};
|
|
175
|
-
title: {
|
|
176
|
-
type: string;
|
|
177
|
-
};
|
|
178
|
-
context: {
|
|
179
|
-
anyOf: {
|
|
180
|
-
type: string;
|
|
181
|
-
properties: {
|
|
182
|
-
type: {
|
|
183
|
-
const: string;
|
|
184
|
-
};
|
|
185
|
-
data: {
|
|
186
|
-
type: string;
|
|
187
|
-
};
|
|
188
|
-
};
|
|
189
|
-
required: string[];
|
|
190
|
-
}[];
|
|
191
|
-
};
|
|
192
|
-
modelName?: undefined;
|
|
193
|
-
strictContext?: undefined;
|
|
194
|
-
instruction?: undefined;
|
|
195
|
-
};
|
|
196
|
-
required?: undefined;
|
|
197
|
-
};
|
|
198
|
-
};
|
|
199
|
-
type?: undefined;
|
|
200
|
-
required?: undefined;
|
|
201
|
-
} | {
|
|
202
|
-
properties: {
|
|
203
|
-
type: {
|
|
204
|
-
const: string;
|
|
205
|
-
};
|
|
206
|
-
resource: {
|
|
207
|
-
const: string;
|
|
208
|
-
};
|
|
209
|
-
payload: {
|
|
210
|
-
type: string;
|
|
211
|
-
properties: {
|
|
212
|
-
id: {
|
|
213
|
-
type: string;
|
|
214
|
-
};
|
|
215
|
-
modelName?: undefined;
|
|
216
|
-
strictContext?: undefined;
|
|
217
|
-
instruction?: undefined;
|
|
218
|
-
title?: undefined;
|
|
219
|
-
context?: undefined;
|
|
220
|
-
};
|
|
221
|
-
required: string[];
|
|
222
|
-
};
|
|
223
|
-
};
|
|
224
|
-
type?: undefined;
|
|
225
|
-
required?: undefined;
|
|
226
|
-
} | {
|
|
227
|
-
properties: {
|
|
228
|
-
type: {
|
|
229
|
-
const: string;
|
|
230
|
-
};
|
|
231
|
-
resource: {
|
|
232
|
-
const: string;
|
|
233
|
-
};
|
|
234
|
-
payload: {
|
|
235
|
-
type: string;
|
|
236
|
-
properties?: undefined;
|
|
237
|
-
required?: undefined;
|
|
238
|
-
};
|
|
239
|
-
};
|
|
240
|
-
type?: undefined;
|
|
241
|
-
required?: undefined;
|
|
242
|
-
})[];
|
|
243
|
-
};
|
|
1
|
+
export declare const AiAssistantChatRequestSchema: {
|
|
2
|
+
type: string;
|
|
3
|
+
properties: {
|
|
4
|
+
profileId: {
|
|
5
|
+
type: string;
|
|
6
|
+
};
|
|
7
|
+
integrationId: {
|
|
8
|
+
type: string;
|
|
9
|
+
};
|
|
10
|
+
clientRequestId: {
|
|
11
|
+
type: string;
|
|
12
|
+
};
|
|
13
|
+
prompt: {
|
|
14
|
+
type: string;
|
|
15
|
+
};
|
|
16
|
+
};
|
|
17
|
+
required: string[];
|
|
18
|
+
};
|
|
19
|
+
export declare const AiAssistantMutateRequestSchema: {
|
|
20
|
+
type: string;
|
|
21
|
+
properties: {
|
|
22
|
+
profileId: {
|
|
23
|
+
type: string;
|
|
24
|
+
};
|
|
25
|
+
integrationId: {
|
|
26
|
+
type: string;
|
|
27
|
+
};
|
|
28
|
+
type: {
|
|
29
|
+
type: string;
|
|
30
|
+
enum: string[];
|
|
31
|
+
};
|
|
32
|
+
resource: {
|
|
33
|
+
type: string;
|
|
34
|
+
enum: string[];
|
|
35
|
+
};
|
|
36
|
+
};
|
|
37
|
+
required: string[];
|
|
38
|
+
oneOf: ({
|
|
39
|
+
properties: {
|
|
40
|
+
type: {
|
|
41
|
+
const: string;
|
|
42
|
+
};
|
|
43
|
+
resource: {
|
|
44
|
+
const: string;
|
|
45
|
+
};
|
|
46
|
+
payload: {
|
|
47
|
+
type: string;
|
|
48
|
+
properties: {
|
|
49
|
+
modelName: {
|
|
50
|
+
type: string;
|
|
51
|
+
enum: string[];
|
|
52
|
+
};
|
|
53
|
+
strictContext: {
|
|
54
|
+
type: string;
|
|
55
|
+
};
|
|
56
|
+
id?: undefined;
|
|
57
|
+
instruction?: undefined;
|
|
58
|
+
title?: undefined;
|
|
59
|
+
context?: undefined;
|
|
60
|
+
};
|
|
61
|
+
required: string[];
|
|
62
|
+
};
|
|
63
|
+
};
|
|
64
|
+
type?: undefined;
|
|
65
|
+
required?: undefined;
|
|
66
|
+
} | {
|
|
67
|
+
properties: {
|
|
68
|
+
type: {
|
|
69
|
+
const: string;
|
|
70
|
+
};
|
|
71
|
+
resource: {
|
|
72
|
+
const: string;
|
|
73
|
+
};
|
|
74
|
+
payload: {
|
|
75
|
+
type: string;
|
|
76
|
+
properties: {
|
|
77
|
+
id: {
|
|
78
|
+
type: string;
|
|
79
|
+
};
|
|
80
|
+
instruction: {
|
|
81
|
+
type: string;
|
|
82
|
+
};
|
|
83
|
+
modelName?: undefined;
|
|
84
|
+
strictContext?: undefined;
|
|
85
|
+
title?: undefined;
|
|
86
|
+
context?: undefined;
|
|
87
|
+
};
|
|
88
|
+
required: string[];
|
|
89
|
+
};
|
|
90
|
+
};
|
|
91
|
+
type?: undefined;
|
|
92
|
+
required?: undefined;
|
|
93
|
+
} | {
|
|
94
|
+
type: string;
|
|
95
|
+
properties: {
|
|
96
|
+
type: {
|
|
97
|
+
const: string;
|
|
98
|
+
};
|
|
99
|
+
resource: {
|
|
100
|
+
const: string;
|
|
101
|
+
};
|
|
102
|
+
payload: {
|
|
103
|
+
type: string;
|
|
104
|
+
properties: {
|
|
105
|
+
id: {
|
|
106
|
+
type: string;
|
|
107
|
+
};
|
|
108
|
+
title: {
|
|
109
|
+
type: string;
|
|
110
|
+
};
|
|
111
|
+
context: {
|
|
112
|
+
anyOf: {
|
|
113
|
+
type: string;
|
|
114
|
+
properties: {
|
|
115
|
+
type: {
|
|
116
|
+
const: string;
|
|
117
|
+
};
|
|
118
|
+
data: {
|
|
119
|
+
type: string;
|
|
120
|
+
};
|
|
121
|
+
};
|
|
122
|
+
required: string[];
|
|
123
|
+
}[];
|
|
124
|
+
};
|
|
125
|
+
modelName?: undefined;
|
|
126
|
+
strictContext?: undefined;
|
|
127
|
+
instruction?: undefined;
|
|
128
|
+
};
|
|
129
|
+
required: string[];
|
|
130
|
+
};
|
|
131
|
+
};
|
|
132
|
+
required: string[];
|
|
133
|
+
} | {
|
|
134
|
+
properties: {
|
|
135
|
+
type: {
|
|
136
|
+
const: string;
|
|
137
|
+
};
|
|
138
|
+
resource: {
|
|
139
|
+
const: string;
|
|
140
|
+
};
|
|
141
|
+
payload: {
|
|
142
|
+
type: string;
|
|
143
|
+
properties: {
|
|
144
|
+
modelName: {
|
|
145
|
+
type: string;
|
|
146
|
+
enum: string[];
|
|
147
|
+
};
|
|
148
|
+
strictContext: {
|
|
149
|
+
type: string;
|
|
150
|
+
};
|
|
151
|
+
id?: undefined;
|
|
152
|
+
instruction?: undefined;
|
|
153
|
+
title?: undefined;
|
|
154
|
+
context?: undefined;
|
|
155
|
+
};
|
|
156
|
+
required?: undefined;
|
|
157
|
+
};
|
|
158
|
+
};
|
|
159
|
+
type?: undefined;
|
|
160
|
+
required?: undefined;
|
|
161
|
+
} | {
|
|
162
|
+
properties: {
|
|
163
|
+
type: {
|
|
164
|
+
const: string;
|
|
165
|
+
};
|
|
166
|
+
resource: {
|
|
167
|
+
const: string;
|
|
168
|
+
};
|
|
169
|
+
payload: {
|
|
170
|
+
type: string;
|
|
171
|
+
properties: {
|
|
172
|
+
id: {
|
|
173
|
+
type: string;
|
|
174
|
+
};
|
|
175
|
+
title: {
|
|
176
|
+
type: string;
|
|
177
|
+
};
|
|
178
|
+
context: {
|
|
179
|
+
anyOf: {
|
|
180
|
+
type: string;
|
|
181
|
+
properties: {
|
|
182
|
+
type: {
|
|
183
|
+
const: string;
|
|
184
|
+
};
|
|
185
|
+
data: {
|
|
186
|
+
type: string;
|
|
187
|
+
};
|
|
188
|
+
};
|
|
189
|
+
required: string[];
|
|
190
|
+
}[];
|
|
191
|
+
};
|
|
192
|
+
modelName?: undefined;
|
|
193
|
+
strictContext?: undefined;
|
|
194
|
+
instruction?: undefined;
|
|
195
|
+
};
|
|
196
|
+
required?: undefined;
|
|
197
|
+
};
|
|
198
|
+
};
|
|
199
|
+
type?: undefined;
|
|
200
|
+
required?: undefined;
|
|
201
|
+
} | {
|
|
202
|
+
properties: {
|
|
203
|
+
type: {
|
|
204
|
+
const: string;
|
|
205
|
+
};
|
|
206
|
+
resource: {
|
|
207
|
+
const: string;
|
|
208
|
+
};
|
|
209
|
+
payload: {
|
|
210
|
+
type: string;
|
|
211
|
+
properties: {
|
|
212
|
+
id: {
|
|
213
|
+
type: string;
|
|
214
|
+
};
|
|
215
|
+
modelName?: undefined;
|
|
216
|
+
strictContext?: undefined;
|
|
217
|
+
instruction?: undefined;
|
|
218
|
+
title?: undefined;
|
|
219
|
+
context?: undefined;
|
|
220
|
+
};
|
|
221
|
+
required: string[];
|
|
222
|
+
};
|
|
223
|
+
};
|
|
224
|
+
type?: undefined;
|
|
225
|
+
required?: undefined;
|
|
226
|
+
} | {
|
|
227
|
+
properties: {
|
|
228
|
+
type: {
|
|
229
|
+
const: string;
|
|
230
|
+
};
|
|
231
|
+
resource: {
|
|
232
|
+
const: string;
|
|
233
|
+
};
|
|
234
|
+
payload: {
|
|
235
|
+
type: string;
|
|
236
|
+
properties?: undefined;
|
|
237
|
+
required?: undefined;
|
|
238
|
+
};
|
|
239
|
+
};
|
|
240
|
+
type?: undefined;
|
|
241
|
+
required?: undefined;
|
|
242
|
+
})[];
|
|
243
|
+
};
|