@amigo-ai/platform-sdk 0.5.5 → 0.5.7
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/types/generated/api.d.ts +182 -0
- package/dist/types/generated/api.d.ts.map +1 -1
- package/dist/types/resources/actions.d.ts +22 -126
- package/dist/types/resources/actions.d.ts.map +1 -1
- package/dist/types/resources/agents.d.ts +16 -102
- package/dist/types/resources/agents.d.ts.map +1 -1
- package/dist/types/resources/analytics.d.ts +22 -74
- package/dist/types/resources/analytics.d.ts.map +1 -1
- package/dist/types/resources/api-keys.d.ts +3 -16
- package/dist/types/resources/api-keys.d.ts.map +1 -1
- package/dist/types/resources/audit.d.ts +31 -87
- package/dist/types/resources/audit.d.ts.map +1 -1
- package/dist/types/resources/billing.d.ts +9 -42
- package/dist/types/resources/billing.d.ts.map +1 -1
- package/dist/types/resources/calls.d.ts +65 -169
- package/dist/types/resources/calls.d.ts.map +1 -1
- package/dist/types/resources/compliance.d.ts +6 -6
- package/dist/types/resources/context-graphs.d.ts +17 -958
- package/dist/types/resources/context-graphs.d.ts.map +1 -1
- package/dist/types/resources/data-sources.d.ts +13 -50
- package/dist/types/resources/data-sources.d.ts.map +1 -1
- package/dist/types/resources/functions.d.ts +22 -49
- package/dist/types/resources/functions.d.ts.map +1 -1
- package/dist/types/resources/integrations.d.ts +49 -379
- package/dist/types/resources/integrations.d.ts.map +1 -1
- package/dist/types/resources/memory.d.ts +4 -48
- package/dist/types/resources/memory.d.ts.map +1 -1
- package/dist/types/resources/operators.d.ts +64 -189
- package/dist/types/resources/operators.d.ts.map +1 -1
- package/dist/types/resources/personas.d.ts +7 -20
- package/dist/types/resources/personas.d.ts.map +1 -1
- package/dist/types/resources/phone-numbers.d.ts +8 -46
- package/dist/types/resources/phone-numbers.d.ts.map +1 -1
- package/dist/types/resources/recordings.d.ts +4 -4
- package/dist/types/resources/review-queue.d.ts +49 -350
- package/dist/types/resources/review-queue.d.ts.map +1 -1
- package/dist/types/resources/safety.d.ts +6 -32
- package/dist/types/resources/safety.d.ts.map +1 -1
- package/dist/types/resources/services.d.ts +47 -242
- package/dist/types/resources/services.d.ts.map +1 -1
- package/dist/types/resources/settings.d.ts +36 -404
- package/dist/types/resources/settings.d.ts.map +1 -1
- package/dist/types/resources/simulations.d.ts +20 -148
- package/dist/types/resources/simulations.d.ts.map +1 -1
- package/dist/types/resources/skills.d.ts +21 -117
- package/dist/types/resources/skills.d.ts.map +1 -1
- package/dist/types/resources/triggers.d.ts +64 -92
- package/dist/types/resources/triggers.d.ts.map +1 -1
- package/dist/types/resources/webhook-destinations.d.ts +20 -44
- package/dist/types/resources/webhook-destinations.d.ts.map +1 -1
- package/dist/types/resources/workspaces.d.ts +4 -26
- package/dist/types/resources/workspaces.d.ts.map +1 -1
- package/dist/types/resources/world.d.ts +121 -322
- package/dist/types/resources/world.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -14,307 +14,112 @@ export interface ListServicesParams extends ListParams {
|
|
|
14
14
|
export declare class ServicesResource extends WorkspaceScopedResource {
|
|
15
15
|
create(body: components['schemas']['CreateServiceRequest']): Promise<{
|
|
16
16
|
agent_id: string;
|
|
17
|
-
agent_name?: string | null
|
|
18
|
-
channel_type?: "voice" | "text" | "scribe"
|
|
17
|
+
agent_name?: string | null;
|
|
18
|
+
channel_type?: "voice" | "text" | "scribe";
|
|
19
19
|
context_graph_id: string;
|
|
20
|
-
context_graph_name?: string | null
|
|
20
|
+
context_graph_name?: string | null;
|
|
21
21
|
created_at: string;
|
|
22
22
|
description: string;
|
|
23
|
-
environment?: "sandbox" | "production"
|
|
23
|
+
environment?: "sandbox" | "production";
|
|
24
24
|
id: string;
|
|
25
25
|
is_active: boolean;
|
|
26
|
-
is_system?: boolean
|
|
26
|
+
is_system?: boolean;
|
|
27
27
|
keyterms: string[];
|
|
28
28
|
name: string;
|
|
29
|
-
persona_id?: string | null
|
|
30
|
-
persona_name?: string | null
|
|
31
|
-
safety_filters_enabled?: boolean
|
|
32
|
-
tags:
|
|
33
|
-
key: string;
|
|
34
|
-
value?: string | null | undefined;
|
|
35
|
-
}[];
|
|
29
|
+
persona_id?: string | null;
|
|
30
|
+
persona_name?: string | null;
|
|
31
|
+
safety_filters_enabled?: boolean;
|
|
32
|
+
tags: components["schemas"]["ServiceTag"][];
|
|
36
33
|
tool_capacity: number;
|
|
37
34
|
updated_at: string;
|
|
38
35
|
version_sets: {
|
|
39
|
-
[
|
|
40
|
-
agent_version_number?: number | null | undefined;
|
|
41
|
-
context_graph_version_number?: number | null | undefined;
|
|
42
|
-
llm_model_preferences?: {
|
|
43
|
-
[x: string]: {
|
|
44
|
-
llm_name: string;
|
|
45
|
-
params?: {
|
|
46
|
-
[x: string]: unknown;
|
|
47
|
-
} | undefined;
|
|
48
|
-
};
|
|
49
|
-
} | undefined;
|
|
50
|
-
};
|
|
36
|
+
[key: string]: components["schemas"]["VersionSet"];
|
|
51
37
|
};
|
|
52
|
-
voice_config?:
|
|
53
|
-
backchannel_delay_ms?: number | undefined;
|
|
54
|
-
barge_in_cooldown_s?: number | null | undefined;
|
|
55
|
-
barge_in_min_speech_s?: number | null | undefined;
|
|
56
|
-
eager_eot_threshold?: number | null | undefined;
|
|
57
|
-
empathy_hold_ms?: number | null | undefined;
|
|
58
|
-
eot_timeout_ms?: number | null | undefined;
|
|
59
|
-
filler_cooldown_ms?: number | null | undefined;
|
|
60
|
-
filler_style?: "backchannel" | "phrase" | "silent" | undefined;
|
|
61
|
-
filler_vocabulary?: string[] | null | undefined;
|
|
62
|
-
forward_call_enabled?: boolean | undefined;
|
|
63
|
-
max_buffer_delay_ms?: number | null | undefined;
|
|
64
|
-
max_response_sentences?: number | null | undefined;
|
|
65
|
-
max_response_words?: number | null | undefined;
|
|
66
|
-
min_tts_speed?: number | null | undefined;
|
|
67
|
-
post_eot_pause_ms?: number | null | undefined;
|
|
68
|
-
progress_interval_ms?: number | null | undefined;
|
|
69
|
-
progress_vocabulary?: string[] | null | undefined;
|
|
70
|
-
transition_deadline_ms?: number | null | undefined;
|
|
71
|
-
tts_model?: ("sonic-turbo" | "sonic-3") | null | undefined;
|
|
72
|
-
} | null | undefined;
|
|
38
|
+
voice_config?: components["schemas"]["ServiceVoiceConfig"] | null;
|
|
73
39
|
workspace_id: string;
|
|
74
40
|
} & import("../index.js").ResponseMetadata>;
|
|
75
41
|
list(params?: ListServicesParams): Promise<{
|
|
76
|
-
continuation_token?: number | null
|
|
42
|
+
continuation_token?: number | null;
|
|
77
43
|
has_more: boolean;
|
|
78
|
-
items:
|
|
79
|
-
|
|
80
|
-
agent_name?: string | null | undefined;
|
|
81
|
-
channel_type?: "voice" | "text" | "scribe" | undefined;
|
|
82
|
-
context_graph_id: string;
|
|
83
|
-
context_graph_name?: string | null | undefined;
|
|
84
|
-
created_at: string;
|
|
85
|
-
description: string;
|
|
86
|
-
environment?: "sandbox" | "production" | undefined;
|
|
87
|
-
id: string;
|
|
88
|
-
is_active: boolean;
|
|
89
|
-
is_system?: boolean | undefined;
|
|
90
|
-
keyterms: string[];
|
|
91
|
-
name: string;
|
|
92
|
-
persona_id?: string | null | undefined;
|
|
93
|
-
persona_name?: string | null | undefined;
|
|
94
|
-
safety_filters_enabled?: boolean | undefined;
|
|
95
|
-
tags: {
|
|
96
|
-
key: string;
|
|
97
|
-
value?: string | null | undefined;
|
|
98
|
-
}[];
|
|
99
|
-
tool_capacity: number;
|
|
100
|
-
updated_at: string;
|
|
101
|
-
version_sets: {
|
|
102
|
-
[x: string]: {
|
|
103
|
-
agent_version_number?: number | null | undefined;
|
|
104
|
-
context_graph_version_number?: number | null | undefined;
|
|
105
|
-
llm_model_preferences?: {
|
|
106
|
-
[x: string]: {
|
|
107
|
-
llm_name: string;
|
|
108
|
-
params?: {
|
|
109
|
-
[x: string]: unknown;
|
|
110
|
-
} | undefined;
|
|
111
|
-
};
|
|
112
|
-
} | undefined;
|
|
113
|
-
};
|
|
114
|
-
};
|
|
115
|
-
voice_config?: {
|
|
116
|
-
backchannel_delay_ms?: number | undefined;
|
|
117
|
-
barge_in_cooldown_s?: number | null | undefined;
|
|
118
|
-
barge_in_min_speech_s?: number | null | undefined;
|
|
119
|
-
eager_eot_threshold?: number | null | undefined;
|
|
120
|
-
empathy_hold_ms?: number | null | undefined;
|
|
121
|
-
eot_timeout_ms?: number | null | undefined;
|
|
122
|
-
filler_cooldown_ms?: number | null | undefined;
|
|
123
|
-
filler_style?: "backchannel" | "phrase" | "silent" | undefined;
|
|
124
|
-
filler_vocabulary?: string[] | null | undefined;
|
|
125
|
-
forward_call_enabled?: boolean | undefined;
|
|
126
|
-
max_buffer_delay_ms?: number | null | undefined;
|
|
127
|
-
max_response_sentences?: number | null | undefined;
|
|
128
|
-
max_response_words?: number | null | undefined;
|
|
129
|
-
min_tts_speed?: number | null | undefined;
|
|
130
|
-
post_eot_pause_ms?: number | null | undefined;
|
|
131
|
-
progress_interval_ms?: number | null | undefined;
|
|
132
|
-
progress_vocabulary?: string[] | null | undefined;
|
|
133
|
-
transition_deadline_ms?: number | null | undefined;
|
|
134
|
-
tts_model?: ("sonic-turbo" | "sonic-3") | null | undefined;
|
|
135
|
-
} | null | undefined;
|
|
136
|
-
workspace_id: string;
|
|
137
|
-
}[];
|
|
138
|
-
total?: number | null | undefined;
|
|
44
|
+
items: components["schemas"]["ServiceResponse"][];
|
|
45
|
+
total?: number | null;
|
|
139
46
|
} & import("../index.js").ResponseMetadata>;
|
|
140
47
|
listAutoPaging(params?: ListServicesParams): AsyncGenerator<{
|
|
141
48
|
agent_id: string;
|
|
142
|
-
agent_name?: string | null
|
|
143
|
-
channel_type?: "voice" | "text" | "scribe"
|
|
49
|
+
agent_name?: string | null;
|
|
50
|
+
channel_type?: "voice" | "text" | "scribe";
|
|
144
51
|
context_graph_id: string;
|
|
145
|
-
context_graph_name?: string | null
|
|
52
|
+
context_graph_name?: string | null;
|
|
146
53
|
created_at: string;
|
|
147
54
|
description: string;
|
|
148
|
-
environment?: "sandbox" | "production"
|
|
55
|
+
environment?: "sandbox" | "production";
|
|
149
56
|
id: string;
|
|
150
57
|
is_active: boolean;
|
|
151
|
-
is_system?: boolean
|
|
58
|
+
is_system?: boolean;
|
|
152
59
|
keyterms: string[];
|
|
153
60
|
name: string;
|
|
154
|
-
persona_id?: string | null
|
|
155
|
-
persona_name?: string | null
|
|
156
|
-
safety_filters_enabled?: boolean
|
|
157
|
-
tags:
|
|
158
|
-
key: string;
|
|
159
|
-
value?: string | null | undefined;
|
|
160
|
-
}[];
|
|
61
|
+
persona_id?: string | null;
|
|
62
|
+
persona_name?: string | null;
|
|
63
|
+
safety_filters_enabled?: boolean;
|
|
64
|
+
tags: components["schemas"]["ServiceTag"][];
|
|
161
65
|
tool_capacity: number;
|
|
162
66
|
updated_at: string;
|
|
163
67
|
version_sets: {
|
|
164
|
-
[
|
|
165
|
-
agent_version_number?: number | null | undefined;
|
|
166
|
-
context_graph_version_number?: number | null | undefined;
|
|
167
|
-
llm_model_preferences?: {
|
|
168
|
-
[x: string]: {
|
|
169
|
-
llm_name: string;
|
|
170
|
-
params?: {
|
|
171
|
-
[x: string]: unknown;
|
|
172
|
-
} | undefined;
|
|
173
|
-
};
|
|
174
|
-
} | undefined;
|
|
175
|
-
};
|
|
68
|
+
[key: string]: components["schemas"]["VersionSet"];
|
|
176
69
|
};
|
|
177
|
-
voice_config?:
|
|
178
|
-
backchannel_delay_ms?: number | undefined;
|
|
179
|
-
barge_in_cooldown_s?: number | null | undefined;
|
|
180
|
-
barge_in_min_speech_s?: number | null | undefined;
|
|
181
|
-
eager_eot_threshold?: number | null | undefined;
|
|
182
|
-
empathy_hold_ms?: number | null | undefined;
|
|
183
|
-
eot_timeout_ms?: number | null | undefined;
|
|
184
|
-
filler_cooldown_ms?: number | null | undefined;
|
|
185
|
-
filler_style?: "backchannel" | "phrase" | "silent" | undefined;
|
|
186
|
-
filler_vocabulary?: string[] | null | undefined;
|
|
187
|
-
forward_call_enabled?: boolean | undefined;
|
|
188
|
-
max_buffer_delay_ms?: number | null | undefined;
|
|
189
|
-
max_response_sentences?: number | null | undefined;
|
|
190
|
-
max_response_words?: number | null | undefined;
|
|
191
|
-
min_tts_speed?: number | null | undefined;
|
|
192
|
-
post_eot_pause_ms?: number | null | undefined;
|
|
193
|
-
progress_interval_ms?: number | null | undefined;
|
|
194
|
-
progress_vocabulary?: string[] | null | undefined;
|
|
195
|
-
transition_deadline_ms?: number | null | undefined;
|
|
196
|
-
tts_model?: ("sonic-turbo" | "sonic-3") | null | undefined;
|
|
197
|
-
} | null | undefined;
|
|
70
|
+
voice_config?: components["schemas"]["ServiceVoiceConfig"] | null;
|
|
198
71
|
workspace_id: string;
|
|
199
72
|
}, any, any>;
|
|
200
73
|
get(serviceId: ServiceId | string): Promise<{
|
|
201
74
|
agent_id: string;
|
|
202
|
-
agent_name?: string | null
|
|
203
|
-
channel_type?: "voice" | "text" | "scribe"
|
|
75
|
+
agent_name?: string | null;
|
|
76
|
+
channel_type?: "voice" | "text" | "scribe";
|
|
204
77
|
context_graph_id: string;
|
|
205
|
-
context_graph_name?: string | null
|
|
78
|
+
context_graph_name?: string | null;
|
|
206
79
|
created_at: string;
|
|
207
80
|
description: string;
|
|
208
|
-
environment?: "sandbox" | "production"
|
|
81
|
+
environment?: "sandbox" | "production";
|
|
209
82
|
id: string;
|
|
210
83
|
is_active: boolean;
|
|
211
|
-
is_system?: boolean
|
|
84
|
+
is_system?: boolean;
|
|
212
85
|
keyterms: string[];
|
|
213
86
|
name: string;
|
|
214
|
-
persona_id?: string | null
|
|
215
|
-
persona_name?: string | null
|
|
216
|
-
safety_filters_enabled?: boolean
|
|
217
|
-
tags:
|
|
218
|
-
key: string;
|
|
219
|
-
value?: string | null | undefined;
|
|
220
|
-
}[];
|
|
87
|
+
persona_id?: string | null;
|
|
88
|
+
persona_name?: string | null;
|
|
89
|
+
safety_filters_enabled?: boolean;
|
|
90
|
+
tags: components["schemas"]["ServiceTag"][];
|
|
221
91
|
tool_capacity: number;
|
|
222
92
|
updated_at: string;
|
|
223
93
|
version_sets: {
|
|
224
|
-
[
|
|
225
|
-
agent_version_number?: number | null | undefined;
|
|
226
|
-
context_graph_version_number?: number | null | undefined;
|
|
227
|
-
llm_model_preferences?: {
|
|
228
|
-
[x: string]: {
|
|
229
|
-
llm_name: string;
|
|
230
|
-
params?: {
|
|
231
|
-
[x: string]: unknown;
|
|
232
|
-
} | undefined;
|
|
233
|
-
};
|
|
234
|
-
} | undefined;
|
|
235
|
-
};
|
|
94
|
+
[key: string]: components["schemas"]["VersionSet"];
|
|
236
95
|
};
|
|
237
|
-
voice_config?:
|
|
238
|
-
backchannel_delay_ms?: number | undefined;
|
|
239
|
-
barge_in_cooldown_s?: number | null | undefined;
|
|
240
|
-
barge_in_min_speech_s?: number | null | undefined;
|
|
241
|
-
eager_eot_threshold?: number | null | undefined;
|
|
242
|
-
empathy_hold_ms?: number | null | undefined;
|
|
243
|
-
eot_timeout_ms?: number | null | undefined;
|
|
244
|
-
filler_cooldown_ms?: number | null | undefined;
|
|
245
|
-
filler_style?: "backchannel" | "phrase" | "silent" | undefined;
|
|
246
|
-
filler_vocabulary?: string[] | null | undefined;
|
|
247
|
-
forward_call_enabled?: boolean | undefined;
|
|
248
|
-
max_buffer_delay_ms?: number | null | undefined;
|
|
249
|
-
max_response_sentences?: number | null | undefined;
|
|
250
|
-
max_response_words?: number | null | undefined;
|
|
251
|
-
min_tts_speed?: number | null | undefined;
|
|
252
|
-
post_eot_pause_ms?: number | null | undefined;
|
|
253
|
-
progress_interval_ms?: number | null | undefined;
|
|
254
|
-
progress_vocabulary?: string[] | null | undefined;
|
|
255
|
-
transition_deadline_ms?: number | null | undefined;
|
|
256
|
-
tts_model?: ("sonic-turbo" | "sonic-3") | null | undefined;
|
|
257
|
-
} | null | undefined;
|
|
96
|
+
voice_config?: components["schemas"]["ServiceVoiceConfig"] | null;
|
|
258
97
|
workspace_id: string;
|
|
259
98
|
} & import("../index.js").ResponseMetadata>;
|
|
260
99
|
update(serviceId: ServiceId | string, body: components['schemas']['UpdateServiceRequest']): Promise<{
|
|
261
100
|
agent_id: string;
|
|
262
|
-
agent_name?: string | null
|
|
263
|
-
channel_type?: "voice" | "text" | "scribe"
|
|
101
|
+
agent_name?: string | null;
|
|
102
|
+
channel_type?: "voice" | "text" | "scribe";
|
|
264
103
|
context_graph_id: string;
|
|
265
|
-
context_graph_name?: string | null
|
|
104
|
+
context_graph_name?: string | null;
|
|
266
105
|
created_at: string;
|
|
267
106
|
description: string;
|
|
268
|
-
environment?: "sandbox" | "production"
|
|
107
|
+
environment?: "sandbox" | "production";
|
|
269
108
|
id: string;
|
|
270
109
|
is_active: boolean;
|
|
271
|
-
is_system?: boolean
|
|
110
|
+
is_system?: boolean;
|
|
272
111
|
keyterms: string[];
|
|
273
112
|
name: string;
|
|
274
|
-
persona_id?: string | null
|
|
275
|
-
persona_name?: string | null
|
|
276
|
-
safety_filters_enabled?: boolean
|
|
277
|
-
tags:
|
|
278
|
-
key: string;
|
|
279
|
-
value?: string | null | undefined;
|
|
280
|
-
}[];
|
|
113
|
+
persona_id?: string | null;
|
|
114
|
+
persona_name?: string | null;
|
|
115
|
+
safety_filters_enabled?: boolean;
|
|
116
|
+
tags: components["schemas"]["ServiceTag"][];
|
|
281
117
|
tool_capacity: number;
|
|
282
118
|
updated_at: string;
|
|
283
119
|
version_sets: {
|
|
284
|
-
[
|
|
285
|
-
agent_version_number?: number | null | undefined;
|
|
286
|
-
context_graph_version_number?: number | null | undefined;
|
|
287
|
-
llm_model_preferences?: {
|
|
288
|
-
[x: string]: {
|
|
289
|
-
llm_name: string;
|
|
290
|
-
params?: {
|
|
291
|
-
[x: string]: unknown;
|
|
292
|
-
} | undefined;
|
|
293
|
-
};
|
|
294
|
-
} | undefined;
|
|
295
|
-
};
|
|
120
|
+
[key: string]: components["schemas"]["VersionSet"];
|
|
296
121
|
};
|
|
297
|
-
voice_config?:
|
|
298
|
-
backchannel_delay_ms?: number | undefined;
|
|
299
|
-
barge_in_cooldown_s?: number | null | undefined;
|
|
300
|
-
barge_in_min_speech_s?: number | null | undefined;
|
|
301
|
-
eager_eot_threshold?: number | null | undefined;
|
|
302
|
-
empathy_hold_ms?: number | null | undefined;
|
|
303
|
-
eot_timeout_ms?: number | null | undefined;
|
|
304
|
-
filler_cooldown_ms?: number | null | undefined;
|
|
305
|
-
filler_style?: "backchannel" | "phrase" | "silent" | undefined;
|
|
306
|
-
filler_vocabulary?: string[] | null | undefined;
|
|
307
|
-
forward_call_enabled?: boolean | undefined;
|
|
308
|
-
max_buffer_delay_ms?: number | null | undefined;
|
|
309
|
-
max_response_sentences?: number | null | undefined;
|
|
310
|
-
max_response_words?: number | null | undefined;
|
|
311
|
-
min_tts_speed?: number | null | undefined;
|
|
312
|
-
post_eot_pause_ms?: number | null | undefined;
|
|
313
|
-
progress_interval_ms?: number | null | undefined;
|
|
314
|
-
progress_vocabulary?: string[] | null | undefined;
|
|
315
|
-
transition_deadline_ms?: number | null | undefined;
|
|
316
|
-
tts_model?: ("sonic-turbo" | "sonic-3") | null | undefined;
|
|
317
|
-
} | null | undefined;
|
|
122
|
+
voice_config?: components["schemas"]["ServiceVoiceConfig"] | null;
|
|
318
123
|
workspace_id: string;
|
|
319
124
|
} & import("../index.js").ResponseMetadata>;
|
|
320
125
|
delete(serviceId: ServiceId | string): Promise<void>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"services.d.ts","sourceRoot":"","sources":["../../../src/resources/services.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAA;AACrD,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,0BAA0B,CAAA;AACzD,OAAO,EAAE,uBAAuB,EAAe,MAAM,WAAW,CAAA;AAChE,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAA;AAElD,MAAM,WAAW,kBAAmB,SAAQ,UAAU;IACpD,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,IAAI,CAAC,EAAE,MAAM,CAAA;CACd;AAED;;;;GAIG;AACH,qBAAa,gBAAiB,SAAQ,uBAAuB;IACrD,MAAM,CAAC,IAAI,EAAE,UAAU,CAAC,SAAS,CAAC,CAAC,sBAAsB,CAAC
|
|
1
|
+
{"version":3,"file":"services.d.ts","sourceRoot":"","sources":["../../../src/resources/services.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAA;AACrD,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,0BAA0B,CAAA;AACzD,OAAO,EAAE,uBAAuB,EAAe,MAAM,WAAW,CAAA;AAChE,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAA;AAElD,MAAM,WAAW,kBAAmB,SAAQ,UAAU;IACpD,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,IAAI,CAAC,EAAE,MAAM,CAAA;CACd;AAED;;;;GAIG;AACH,qBAAa,gBAAiB,SAAQ,uBAAuB;IACrD,MAAM,CAAC,IAAI,EAAE,UAAU,CAAC,SAAS,CAAC,CAAC,sBAAsB,CAAC;;;;;;;;;;;;;;;;;cA4C0kjlB,qBAAsB;;;;2BAA2S,qBAAsB;;uBAAyD,qBAAsB;;;IAnC1iklB,IAAI,CAAC,MAAM,CAAC,EAAE,kBAAkB;;;eAmC8g5gB,qBAAsB;;;IA3B1k5gB,cAAc,CAAC,MAAM,CAAC,EAAE,kBAAkB;;;;;;;;;;;;;;;;;cA2BgmjlB,qBAAsB;;;;2BAA2S,qBAAsB;;uBAAyD,qBAAsB;;;IAvB1iklB,GAAG,CAAC,SAAS,EAAE,SAAS,GAAG,MAAM;;;;;;;;;;;;;;;;;cAuBmmjlB,qBAAsB;;;;2BAA2S,qBAAsB;;uBAAyD,qBAAsB;;;IAf1iklB,MAAM,CAAC,SAAS,EAAE,SAAS,GAAG,MAAM,EAAE,IAAI,EAAE,UAAU,CAAC,SAAS,CAAC,CAAC,sBAAsB,CAAC;;;;;;;;;;;;;;;;;cAe2ijlB,qBAAsB;;;;2BAA2S,qBAAsB;;uBAAyD,qBAAsB;;;IAN1iklB,MAAM,CAAC,SAAS,EAAE,SAAS,GAAG,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;CAK3D"}
|