@amigo-ai/sdk 0.100.0 → 0.100.1
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/README.md +26 -0
- package/dist/index.cjs +14 -2
- package/dist/index.cjs.map +2 -2
- package/dist/index.mjs +14 -2
- package/dist/index.mjs.map +2 -2
- package/dist/types/core/openapi-client.d.ts +1 -0
- package/dist/types/core/retry.d.ts +2 -0
- package/dist/types/generated/api-types.d.ts +1634 -807
- package/dist/types/index.d.ts +5 -0
- package/dist/types/resources/conversation.d.ts +10 -0
- package/dist/types/resources/organization.d.ts +2 -1
- package/dist/types/resources/services.d.ts +1 -0
- package/dist/types/resources/user.d.ts +6 -1
- package/package.json +1 -1
|
@@ -916,6 +916,82 @@ export interface paths {
|
|
|
916
916
|
patch?: never;
|
|
917
917
|
trace?: never;
|
|
918
918
|
};
|
|
919
|
+
"/v1/{organization}/user/{requested_user_id}/variable": {
|
|
920
|
+
parameters: {
|
|
921
|
+
query?: never;
|
|
922
|
+
header?: never;
|
|
923
|
+
path?: never;
|
|
924
|
+
cookie?: never;
|
|
925
|
+
};
|
|
926
|
+
get?: never;
|
|
927
|
+
put?: never;
|
|
928
|
+
/**
|
|
929
|
+
* Modify the variables of an user
|
|
930
|
+
* @description Upsert or delete the user's variables. These changes are only reflected in tool invocations that are not yet made.
|
|
931
|
+
*
|
|
932
|
+
* #### Permissions
|
|
933
|
+
* This endpoint requires the following permissions:
|
|
934
|
+
* * `User:UpdateUserInfo` for the user to modify variables for.
|
|
935
|
+
*/
|
|
936
|
+
post: operations["modify-user-variables"];
|
|
937
|
+
delete?: never;
|
|
938
|
+
options?: never;
|
|
939
|
+
head?: never;
|
|
940
|
+
patch?: never;
|
|
941
|
+
trace?: never;
|
|
942
|
+
};
|
|
943
|
+
"/v1/{organization}/role/temporary_permission_grant/": {
|
|
944
|
+
parameters: {
|
|
945
|
+
query?: never;
|
|
946
|
+
header?: never;
|
|
947
|
+
path?: never;
|
|
948
|
+
cookie?: never;
|
|
949
|
+
};
|
|
950
|
+
get?: never;
|
|
951
|
+
put?: never;
|
|
952
|
+
/**
|
|
953
|
+
* Create a temporary permission grant
|
|
954
|
+
* @description Create a new temporary permission grant.
|
|
955
|
+
*
|
|
956
|
+
* The user that is given the grant will be able to perform actions permitted by the grant for a limited amount of time. Note that any actions that
|
|
957
|
+
* require comparing the permissions of the user and the permissions of another entity would still use the user and the other entity's role, without
|
|
958
|
+
* factoring into the temporary permission grants.
|
|
959
|
+
*
|
|
960
|
+
* #### Permissions
|
|
961
|
+
* This endpoint requires the following permissions:
|
|
962
|
+
* * `Role:CreateTemporaryPermissionGrant` for the grant to create.
|
|
963
|
+
*/
|
|
964
|
+
post: operations["create-temporary-permission-grant"];
|
|
965
|
+
delete?: never;
|
|
966
|
+
options?: never;
|
|
967
|
+
head?: never;
|
|
968
|
+
patch?: never;
|
|
969
|
+
trace?: never;
|
|
970
|
+
};
|
|
971
|
+
"/v1/{organization}/role/temporary_permission_grants/": {
|
|
972
|
+
parameters: {
|
|
973
|
+
query?: never;
|
|
974
|
+
header?: never;
|
|
975
|
+
path?: never;
|
|
976
|
+
cookie?: never;
|
|
977
|
+
};
|
|
978
|
+
/**
|
|
979
|
+
* Get temporary permission grants
|
|
980
|
+
* @description Retrieve the temporary permission grants that match the given filters.
|
|
981
|
+
*
|
|
982
|
+
* #### Permissions
|
|
983
|
+
* This endpoint may be impacted by the following permissions:
|
|
984
|
+
* * Only temporary permission grants that the authenticated user has `Role:GetTemporaryPermissionGrant` permission for will be returned.
|
|
985
|
+
*/
|
|
986
|
+
get: operations["get-temporary-permission-grants"];
|
|
987
|
+
put?: never;
|
|
988
|
+
post?: never;
|
|
989
|
+
delete?: never;
|
|
990
|
+
options?: never;
|
|
991
|
+
head?: never;
|
|
992
|
+
patch?: never;
|
|
993
|
+
trace?: never;
|
|
994
|
+
};
|
|
919
995
|
"/v1/{organization}/role/": {
|
|
920
996
|
parameters: {
|
|
921
997
|
query?: never;
|
|
@@ -1451,10 +1527,14 @@ export interface paths {
|
|
|
1451
1527
|
put?: never;
|
|
1452
1528
|
/**
|
|
1453
1529
|
* Evaluate metrics
|
|
1454
|
-
* @description Evaluate the specified metrics for
|
|
1530
|
+
* @description Evaluate the specified metrics for a completed conversation. The results will be stored and retrievable through the [`GetMetricEvaluationResults`](get-metric-evaluation-results)
|
|
1531
|
+
* endpoint with a special source type of `manual`.
|
|
1532
|
+
*
|
|
1533
|
+
* If the same conversation has been manually evaluated for the same metric, the previous evaluation result will be overwritten.
|
|
1455
1534
|
*
|
|
1456
1535
|
* #### Permissions
|
|
1457
1536
|
* This endpoint requires the following permissions:
|
|
1537
|
+
* * `Metric:GetMetric` for the metrics.
|
|
1458
1538
|
* * `Metric:EvaluateMetric` for the metrics.
|
|
1459
1539
|
* * `Metric:GetMetricEvaluationResult` for the metric results.
|
|
1460
1540
|
*/
|
|
@@ -1999,6 +2079,59 @@ export interface paths {
|
|
|
1999
2079
|
patch?: never;
|
|
2000
2080
|
trace?: never;
|
|
2001
2081
|
};
|
|
2082
|
+
"/v1/{organization}/tool/git/{git_path}": {
|
|
2083
|
+
parameters: {
|
|
2084
|
+
query?: never;
|
|
2085
|
+
header?: never;
|
|
2086
|
+
path?: never;
|
|
2087
|
+
cookie?: never;
|
|
2088
|
+
};
|
|
2089
|
+
/**
|
|
2090
|
+
* Access the Git interface of the tool repo.
|
|
2091
|
+
* @description Access the underlying tool repo for this organization through the standard Git interface. This endpoint effectively serves as the Git URL for the underlying tool repo, and
|
|
2092
|
+
* permits all standard Git operations on it through [Git protocol version 2](https://git-scm.com/docs/http-protocol#_smart_clients) over HTTPS, which should be the default protocol
|
|
2093
|
+
* selected by most Git clients.
|
|
2094
|
+
*
|
|
2095
|
+
* #### Permissions
|
|
2096
|
+
* This endpoint requires the following permissions:
|
|
2097
|
+
* * `Tool:AccessRepo` for the organization's tool repo.
|
|
2098
|
+
*/
|
|
2099
|
+
get: operations["access-git-interface"];
|
|
2100
|
+
put?: never;
|
|
2101
|
+
/**
|
|
2102
|
+
* Access the Git interface of the tool repo.
|
|
2103
|
+
* @description Access the underlying tool repo for this organization through the standard Git interface. This endpoint effectively serves as the Git URL for the underlying tool repo, and
|
|
2104
|
+
* permits all standard Git operations on it through [Git protocol version 2](https://git-scm.com/docs/http-protocol#_smart_clients) over HTTPS, which should be the default protocol
|
|
2105
|
+
* selected by most Git clients.
|
|
2106
|
+
*
|
|
2107
|
+
* #### Permissions
|
|
2108
|
+
* This endpoint requires the following permissions:
|
|
2109
|
+
* * `Tool:AccessRepo` for the organization's tool repo.
|
|
2110
|
+
*/
|
|
2111
|
+
post: operations["access-git-interface-post"];
|
|
2112
|
+
delete?: never;
|
|
2113
|
+
options?: never;
|
|
2114
|
+
head?: never;
|
|
2115
|
+
patch?: never;
|
|
2116
|
+
trace?: never;
|
|
2117
|
+
};
|
|
2118
|
+
"/v1/{organization}/tool/amigo_tool_scaffold.tar.gz": {
|
|
2119
|
+
parameters: {
|
|
2120
|
+
query?: never;
|
|
2121
|
+
header?: never;
|
|
2122
|
+
path?: never;
|
|
2123
|
+
cookie?: never;
|
|
2124
|
+
};
|
|
2125
|
+
/** Get the latest tool scaffold release */
|
|
2126
|
+
get: operations["get-tool-scaffold-release"];
|
|
2127
|
+
put?: never;
|
|
2128
|
+
post?: never;
|
|
2129
|
+
delete?: never;
|
|
2130
|
+
options?: never;
|
|
2131
|
+
head?: never;
|
|
2132
|
+
patch?: never;
|
|
2133
|
+
trace?: never;
|
|
2134
|
+
};
|
|
2002
2135
|
"/v1/{organization}/tool/": {
|
|
2003
2136
|
parameters: {
|
|
2004
2137
|
query?: never;
|
|
@@ -2222,13 +2355,15 @@ export interface paths {
|
|
|
2222
2355
|
export type webhooks = Record<string, never>;
|
|
2223
2356
|
export interface components {
|
|
2224
2357
|
schemas: {
|
|
2225
|
-
/**
|
|
2226
|
-
|
|
2358
|
+
/** APIKeyInstance */
|
|
2359
|
+
APIKeyInstance: {
|
|
2360
|
+
/** Id */
|
|
2361
|
+
_id: string;
|
|
2227
2362
|
/**
|
|
2228
|
-
*
|
|
2229
|
-
* @description The
|
|
2363
|
+
* Name
|
|
2364
|
+
* @description The name of the API key.
|
|
2230
2365
|
*/
|
|
2231
|
-
|
|
2366
|
+
name: string | null;
|
|
2232
2367
|
/**
|
|
2233
2368
|
* Org Id
|
|
2234
2369
|
* @description The ID of the organization.
|
|
@@ -2237,13 +2372,15 @@ export interface components {
|
|
|
2237
2372
|
/**
|
|
2238
2373
|
* Created At
|
|
2239
2374
|
* Format: date-time
|
|
2375
|
+
* @description The UTC time at which this key was created.
|
|
2240
2376
|
*/
|
|
2241
|
-
created_at
|
|
2377
|
+
created_at: string;
|
|
2242
2378
|
/**
|
|
2243
2379
|
* Updated At
|
|
2244
2380
|
* Format: date-time
|
|
2381
|
+
* @description The UTC time at which this key was last updated.
|
|
2245
2382
|
*/
|
|
2246
|
-
updated_at
|
|
2383
|
+
updated_at: string;
|
|
2247
2384
|
/**
|
|
2248
2385
|
* Key Id
|
|
2249
2386
|
* @description The ID of the API key. Instead of the key's Mongo ID, this UUID is used as the identifier for the key for backwards compatibility reasons.
|
|
@@ -2255,11 +2392,6 @@ export interface components {
|
|
|
2255
2392
|
* @description The UTC time at which this key will expire.
|
|
2256
2393
|
*/
|
|
2257
2394
|
expires_at: string;
|
|
2258
|
-
/**
|
|
2259
|
-
* Hashed Value
|
|
2260
|
-
* @description The hashed value of the API key.
|
|
2261
|
-
*/
|
|
2262
|
-
hashed_value: string;
|
|
2263
2395
|
/** @description The user who created this key. */
|
|
2264
2396
|
creator: components["schemas"]["amigo_lib__mongo__collections__api_key__APIKey__UserInfo"];
|
|
2265
2397
|
/**
|
|
@@ -2267,11 +2399,6 @@ export interface components {
|
|
|
2267
2399
|
* @description The role ID of the creator of this key.
|
|
2268
2400
|
*/
|
|
2269
2401
|
role_id: string;
|
|
2270
|
-
/**
|
|
2271
|
-
* Index
|
|
2272
|
-
* @description The index of this API key, which is an integer between 0 to 19. An org cannot have more than 1 API key with the same index.
|
|
2273
|
-
*/
|
|
2274
|
-
index: number;
|
|
2275
2402
|
};
|
|
2276
2403
|
/** ActionState */
|
|
2277
2404
|
"ActionState-Input": {
|
|
@@ -2291,7 +2418,7 @@ export interface components {
|
|
|
2291
2418
|
/** Boundary Constraints */
|
|
2292
2419
|
boundary_constraints: components["schemas"]["amigo_lib__pydantic__base_model__StrippedNonemptyString__1"][];
|
|
2293
2420
|
/** Exit Conditions */
|
|
2294
|
-
exit_conditions: components["schemas"]["
|
|
2421
|
+
exit_conditions: components["schemas"]["ExitCondition-Input"][];
|
|
2295
2422
|
/** Action Tool Call Specs */
|
|
2296
2423
|
action_tool_call_specs: components["schemas"]["organization__create_service_hierarchical_state_machine_version__Request__ToolCallSpec"][];
|
|
2297
2424
|
/** Exit Condition Tool Call Specs */
|
|
@@ -2719,10 +2846,9 @@ export interface components {
|
|
|
2719
2846
|
type: "decision";
|
|
2720
2847
|
name: components["schemas"]["StateOrRefName"];
|
|
2721
2848
|
/** Exit Conditions */
|
|
2722
|
-
exit_conditions: components["schemas"]["
|
|
2849
|
+
exit_conditions: components["schemas"]["ExitCondition-Input"][];
|
|
2723
2850
|
/** Decision Guidelines */
|
|
2724
2851
|
decision_guidelines: components["schemas"]["amigo_lib__pydantic__base_model__StrippedNonemptyString__1"][];
|
|
2725
|
-
/** @description The objective the agent is trying to achieve in this decision state. */
|
|
2726
2852
|
objective: components["schemas"]["amigo_lib__pydantic__base_model__StrippedNonemptyString__1"];
|
|
2727
2853
|
/** Tool Call Specs */
|
|
2728
2854
|
tool_call_specs: components["schemas"]["organization__create_service_hierarchical_state_machine_version__Request__ToolCallSpec"][];
|
|
@@ -2730,7 +2856,7 @@ export interface components {
|
|
|
2730
2856
|
* Audio Fillers
|
|
2731
2857
|
* @description A list of audio fillers to play in audio mode if the `select-next-state-for-decision-state` prompt is taking too long to process.
|
|
2732
2858
|
*/
|
|
2733
|
-
audio_fillers: components["schemas"]["
|
|
2859
|
+
audio_fillers: components["schemas"]["amigo_lib__pydantic__base_model__StrippedNonemptyString__1"][];
|
|
2734
2860
|
/**
|
|
2735
2861
|
* Audio Filler Triggered After
|
|
2736
2862
|
* @description The number of seconds to wait before playing an audio filler.
|
|
@@ -2829,11 +2955,6 @@ export interface components {
|
|
|
2829
2955
|
*/
|
|
2830
2956
|
tool_call_logs: components["schemas"]["ToolCallLog"][][];
|
|
2831
2957
|
};
|
|
2832
|
-
/** DeleteRequest */
|
|
2833
|
-
DeleteRequest: {
|
|
2834
|
-
/** @description The name of the environment variable to delete. */
|
|
2835
|
-
name: components["schemas"]["StrippedNonemptyString_A-Z______"];
|
|
2836
|
-
};
|
|
2837
2958
|
/** DeliveryAttempt */
|
|
2838
2959
|
DeliveryAttempt: {
|
|
2839
2960
|
/**
|
|
@@ -2921,6 +3042,33 @@ export interface components {
|
|
|
2921
3042
|
*/
|
|
2922
3043
|
external_event_message_ids?: string[];
|
|
2923
3044
|
};
|
|
3045
|
+
/** DynamicBehaviorSetInstance */
|
|
3046
|
+
DynamicBehaviorSetInstance: {
|
|
3047
|
+
/** Id */
|
|
3048
|
+
id: string;
|
|
3049
|
+
/** Name */
|
|
3050
|
+
name: string;
|
|
3051
|
+
/** Is Active */
|
|
3052
|
+
is_active: boolean;
|
|
3053
|
+
/** Applied To Services */
|
|
3054
|
+
applied_to_services: string[];
|
|
3055
|
+
/** Tags */
|
|
3056
|
+
tags: {
|
|
3057
|
+
[key: string]: string | null;
|
|
3058
|
+
};
|
|
3059
|
+
/**
|
|
3060
|
+
* Created At
|
|
3061
|
+
* Format: date-time
|
|
3062
|
+
*/
|
|
3063
|
+
created_at: string;
|
|
3064
|
+
creator: components["schemas"]["amigo_lib__mongo__collections__dynamic_behavior_set__DynamicBehaviorSet__UserInfo"];
|
|
3065
|
+
/**
|
|
3066
|
+
* Updated At
|
|
3067
|
+
* Format: date-time
|
|
3068
|
+
*/
|
|
3069
|
+
updated_at: string;
|
|
3070
|
+
updated_by: components["schemas"]["amigo_lib__mongo__collections__dynamic_behavior_set__DynamicBehaviorSet__UserInfo"];
|
|
3071
|
+
};
|
|
2924
3072
|
/** DynamicBehaviorSetVersion */
|
|
2925
3073
|
DynamicBehaviorSetVersion: {
|
|
2926
3074
|
/**
|
|
@@ -2951,6 +3099,8 @@ export interface components {
|
|
|
2951
3099
|
conversation_triggers: string[];
|
|
2952
3100
|
/** Actions */
|
|
2953
3101
|
actions: components["schemas"]["amigo_lib__mongo__collections__dynamic_behavior_set_version__Action"][];
|
|
3102
|
+
/** @description The user who created this version of the dynamic behavior set. */
|
|
3103
|
+
creator: components["schemas"]["amigo_lib__mongo__collections__dynamic_behavior_set_version__DynamicBehaviorSetVersion__UserInfo"];
|
|
2954
3104
|
};
|
|
2955
3105
|
EngageUserAgentActionEvent: components["schemas"]["EngageUserDynamicBehaviorOverrideEvent"] | components["schemas"]["EngageUserMessageFragmentGeneratedEvent"] | components["schemas"]["ToolCallStartedEvent"] | components["schemas"]["ToolCallEndedEvent"] | components["schemas"]["ActionTooLongEvent"];
|
|
2956
3106
|
/**
|
|
@@ -3065,6 +3215,15 @@ export interface components {
|
|
|
3065
3215
|
/** @enum {string} */
|
|
3066
3216
|
EvaluationSourceType: "post-session" | "manual" | "simulation";
|
|
3067
3217
|
/** ExitCondition */
|
|
3218
|
+
"ExitCondition-Input": {
|
|
3219
|
+
description: components["schemas"]["amigo_lib__pydantic__base_model__StrippedNonemptyString__1"];
|
|
3220
|
+
/** Next State */
|
|
3221
|
+
next_state: components["schemas"]["StateOrRefName"] | [
|
|
3222
|
+
components["schemas"]["ExternalStateName"],
|
|
3223
|
+
components["schemas"]["StateOrRefName"]
|
|
3224
|
+
];
|
|
3225
|
+
};
|
|
3226
|
+
/** ExitCondition */
|
|
3068
3227
|
"ExitCondition-Output": {
|
|
3069
3228
|
/**
|
|
3070
3229
|
* Description
|
|
@@ -3198,6 +3357,48 @@ export interface components {
|
|
|
3198
3357
|
tool_version: string;
|
|
3199
3358
|
};
|
|
3200
3359
|
GenerateToolParamsEvent: components["schemas"]["GenerateToolParamsDesignatedToolRetrievedEvent"] | components["schemas"]["GenerateToolParamsDesignatedToolCallParamsGeneratedEvent"] | components["schemas"]["ActionTooLongEvent"] | components["schemas"]["ToolCallStartedEvent"] | components["schemas"]["ToolCallEndedEvent"];
|
|
3360
|
+
/** HTTPValidationError */
|
|
3361
|
+
HTTPValidationError: {
|
|
3362
|
+
/** Detail */
|
|
3363
|
+
detail?: components["schemas"]["ValidationError"][];
|
|
3364
|
+
};
|
|
3365
|
+
/** Identity */
|
|
3366
|
+
"Identity-Input": {
|
|
3367
|
+
name: components["schemas"]["amigo_lib__pydantic__base_model__StrippedNonemptyString__1"];
|
|
3368
|
+
role: components["schemas"]["amigo_lib__pydantic__base_model__StrippedNonemptyString__1"];
|
|
3369
|
+
developed_by: components["schemas"]["amigo_lib__pydantic__base_model__StrippedNonemptyString__1"];
|
|
3370
|
+
/**
|
|
3371
|
+
* Default Spoken Language
|
|
3372
|
+
* @enum {string}
|
|
3373
|
+
*/
|
|
3374
|
+
default_spoken_language: "aaa" | "aab" | "aac" | "aad" | "aae" | "aaf" | "aag" | "aah" | "aai" | "aak" | "aal" | "aan" | "aao" | "aap" | "aaq" | "aar" | "aas" | "aat" | "aau" | "aaw" | "aax" | "aaz" | "aba" | "abb" | "abc" | "abd" | "abe" | "abf" | "abg" | "abh" | "abi" | "abj" | "abk" | "abl" | "abm" | "abn" | "abo" | "abp" | "abq" | "abr" | "abs" | "abt" | "abu" | "abv" | "abw" | "abx" | "aby" | "abz" | "aca" | "acb" | "acd" | "ace" | "acf" | "ach" | "aci" | "ack" | "acl" | "acm" | "acn" | "acp" | "acq" | "acr" | "acs" | "act" | "acu" | "acv" | "acw" | "acx" | "acy" | "acz" | "ada" | "adb" | "add" | "ade" | "adf" | "adg" | "adh" | "adi" | "adj" | "adl" | "adn" | "ado" | "adq" | "adr" | "ads" | "adt" | "adu" | "adw" | "adx" | "ady" | "adz" | "aea" | "aeb" | "aec" | "aed" | "aee" | "aek" | "ael" | "aem" | "aen" | "aeq" | "aer" | "aes" | "aeu" | "aew" | "aey" | "aez" | "afb" | "afd" | "afe" | "afg" | "afh" | "afi" | "afk" | "afn" | "afo" | "afp" | "afr" | "afs" | "aft" | "afu" | "afz" | "aga" | "agb" | "agc" | "agd" | "age" | "agf" | "agg" | "agh" | "agi" | "agj" | "agk" | "agl" | "agm" | "agn" | "ago" | "agq" | "agr" | "ags" | "agt" | "agu" | "agv" | "agw" | "agx" | "agy" | "agz" | "aha" | "ahb" | "ahg" | "ahh" | "ahi" | "ahk" | "ahl" | "ahm" | "ahn" | "aho" | "ahp" | "ahr" | "ahs" | "aht" | "aia" | "aib" | "aic" | "aid" | "aie" | "aif" | "aig" | "aih" | "aii" | "aij" | "aik" | "ail" | "aim" | "ain" | "aio" | "aip" | "aiq" | "air" | "ait" | "aiw" | "aix" | "aiy" | "aja" | "ajg" | "aji" | "ajn" | "ajp" | "ajs" | "aju" | "ajw" | "ajz" | "aka" | "akb" | "akc" | "akd" | "ake" | "akf" | "akg" | "akh" | "aki" | "akj" | "akk" | "akl" | "akm" | "ako" | "akp" | "akq" | "akr" | "aks" | "akt" | "aku" | "akv" | "akw" | "akx" | "aky" | "akz" | "ala" | "alc" | "ald" | "ale" | "alf" | "alh" | "ali" | "alj" | "alk" | "all" | "alm" | "aln" | "alo" | "alp" | "alq" | "alr" | "als" | "alt" | "alu" | "alw" | "alx" | "aly" | "alz" | "ama" | "amb" | "amc" | "ame" | "amf" | "amg" | "amh" | "ami" | "amj" | "amk" | "aml" | "amm" | "amn" | "amo" | "amp" | "amq" | "amr" | "ams" | "amt" | "amu" | "amv" | "amw" | "amx" | "amy" | "amz" | "ana" | "anb" | "anc" | "and" | "ane" | "anf" | "ang" | "anh" | "ani" | "anj" | "ank" | "anl" | "anm" | "ann" | "ano" | "anp" | "anq" | "anr" | "ans" | "ant" | "anu" | "anv" | "anw" | "anx" | "any" | "anz" | "aoa" | "aob" | "aoc" | "aod" | "aoe" | "aof" | "aog" | "aoi" | "aoj" | "aok" | "aol" | "aom" | "aon" | "aor" | "aos" | "aot" | "aou" | "aox" | "aoz" | "apb" | "apc" | "apd" | "ape" | "apf" | "apg" | "aph" | "api" | "apj" | "apk" | "apl" | "apm" | "apn" | "apo" | "app" | "apq" | "apr" | "aps" | "apt" | "apu" | "apv" | "apw" | "apx" | "apy" | "apz" | "aqc" | "aqd" | "aqg" | "aqk" | "aqm" | "aqn" | "aqp" | "aqr" | "aqt" | "aqz" | "ara" | "arb" | "arc" | "ard" | "are" | "arg" | "arh" | "ari" | "arj" | "ark" | "arl" | "arn" | "aro" | "arp" | "arq" | "arr" | "ars" | "aru" | "arv" | "arw" | "arx" | "ary" | "arz" | "asa" | "asb" | "asc" | "ase" | "asf" | "asg" | "ash" | "asi" | "asj" | "ask" | "asl" | "asm" | "asn" | "aso" | "asp" | "asq" | "asr" | "ass" | "ast" | "asu" | "asv" | "asw" | "asx" | "asy" | "asz" | "ata" | "atb" | "atc" | "atd" | "ate" | "atg" | "ati" | "atj" | "atk" | "atl" | "atm" | "atn" | "ato" | "atp" | "atq" | "atr" | "ats" | "att" | "atu" | "atv" | "atw" | "atx" | "aty" | "atz" | "aua" | "aub" | "auc" | "aud" | "aug" | "auh" | "aui" | "auj" | "auk" | "aul" | "aum" | "aun" | "auo" | "aup" | "auq" | "aur" | "aut" | "auu" | "auw" | "aux" | "auy" | "auz" | "ava" | "avb" | "avd" | "ave" | "avi" | "avk" | "avl" | "avm" | "avn" | "avo" | "avs" | "avt" | "avu" | "avv" | "awa" | "awb" | "awc" | "awe" | "awg" | "awh" | "awi" | "awk" | "awm" | "awn" | "awo" | "awr" | "aws" | "awt" | "awu" | "awv" | "aww" | "awx" | "awy" | "axb" | "axe" | "axg" | "axk" | "axl" | "axm" | "axx" | "aya" | "ayb" | "ayc" | "ayd" | "aye" | "ayg" | "ayh" | "ayi" | "ayk" | "ayl" | "aym" | "ayn" | "ayo" | "ayp" | "ayq" | "ayr" | "ays" | "ayt" | "ayu" | "ayz" | "aza" | "azb" | "azd" | "aze" | "azg" | "azj" | "azm" | "azn" | "azo" | "azt" | "azz" | "baa" | "bab" | "bac" | "bae" | "baf" | "bag" | "bah" | "baj" | "bak" | "bal" | "bam" | "ban" | "bao" | "bap" | "bar" | "bas" | "bau" | "bav" | "baw" | "bax" | "bay" | "bba" | "bbb" | "bbc" | "bbd" | "bbe" | "bbf" | "bbg" | "bbh" | "bbi" | "bbj" | "bbk" | "bbl" | "bbm" | "bbn" | "bbo" | "bbp" | "bbq" | "bbr" | "bbs" | "bbt" | "bbu" | "bbv" | "bbw" | "bbx" | "bby" | "bca" | "bcb" | "bcc" | "bcd" | "bce" | "bcf" | "bcg" | "bch" | "bci" | "bcj" | "bck" | "bcl" | "bcm" | "bcn" | "bco" | "bcp" | "bcq" | "bcr" | "bcs" | "bct" | "bcu" | "bcv" | "bcw" | "bcy" | "bcz" | "bda" | "bdb" | "bdc" | "bdd" | "bde" | "bdf" | "bdg" | "bdh" | "bdi" | "bdj" | "bdk" | "bdl" | "bdm" | "bdn" | "bdo" | "bdp" | "bdq" | "bdr" | "bds" | "bdt" | "bdu" | "bdv" | "bdw" | "bdx" | "bdy" | "bdz" | "bea" | "beb" | "bec" | "bed" | "bee" | "bef" | "beg" | "beh" | "bei" | "bej" | "bek" | "bel" | "bem" | "ben" | "beo" | "bep" | "beq" | "bes" | "bet" | "beu" | "bev" | "bew" | "bex" | "bey" | "bez" | "bfa" | "bfb" | "bfc" | "bfd" | "bfe" | "bff" | "bfg" | "bfh" | "bfi" | "bfj" | "bfk" | "bfl" | "bfm" | "bfn" | "bfo" | "bfp" | "bfq" | "bfr" | "bfs" | "bft" | "bfu" | "bfw" | "bfx" | "bfy" | "bfz" | "bga" | "bgb" | "bgc" | "bgd" | "bge" | "bgf" | "bgg" | "bgi" | "bgj" | "bgk" | "bgl" | "bgn" | "bgo" | "bgp" | "bgq" | "bgr" | "bgs" | "bgt" | "bgu" | "bgv" | "bgw" | "bgx" | "bgy" | "bgz" | "bha" | "bhb" | "bhc" | "bhd" | "bhe" | "bhf" | "bhg" | "bhh" | "bhi" | "bhj" | "bhl" | "bhm" | "bhn" | "bho" | "bhp" | "bhq" | "bhr" | "bhs" | "bht" | "bhu" | "bhv" | "bhw" | "bhx" | "bhy" | "bhz" | "bia" | "bib" | "bid" | "bie" | "bif" | "big" | "bik" | "bil" | "bim" | "bin" | "bio" | "bip" | "biq" | "bir" | "bis" | "bit" | "biu" | "biv" | "biw" | "bix" | "biy" | "biz" | "bja" | "bjb" | "bjc" | "bje" | "bjf" | "bjg" | "bjh" | "bji" | "bjj" | "bjk" | "bjl" | "bjm" | "bjn" | "bjo" | "bjp" | "bjr" | "bjs" | "bjt" | "bju" | "bjv" | "bjw" | "bjx" | "bjy" | "bjz" | "bka" | "bkc" | "bkd" | "bkf" | "bkg" | "bkh" | "bki" | "bkj" | "bkk" | "bkl" | "bkm" | "bkn" | "bko" | "bkp" | "bkq" | "bkr" | "bks" | "bkt" | "bku" | "bkv" | "bkw" | "bkx" | "bky" | "bkz" | "bla" | "blb" | "blc" | "bld" | "ble" | "blf" | "blh" | "bli" | "blj" | "blk" | "bll" | "blm" | "bln" | "blo" | "blp" | "blq" | "blr" | "bls" | "blt" | "blv" | "blw" | "blx" | "bly" | "blz" | "bma" | "bmb" | "bmc" | "bmd" | "bme" | "bmf" | "bmg" | "bmh" | "bmi" | "bmj" | "bmk" | "bml" | "bmm" | "bmn" | "bmo" | "bmp" | "bmq" | "bmr" | "bms" | "bmt" | "bmu" | "bmv" | "bmw" | "bmx" | "bmz" | "bna" | "bnb" | "bnc" | "bnd" | "bne" | "bnf" | "bng" | "bni" | "bnj" | "bnk" | "bnl" | "bnm" | "bnn" | "bno" | "bnp" | "bnq" | "bnr" | "bns" | "bnu" | "bnv" | "bnw" | "bnx" | "bny" | "bnz" | "boa" | "bob" | "bod" | "boe" | "bof" | "bog" | "boh" | "boi" | "boj" | "bok" | "bol" | "bom" | "bon" | "boo" | "bop" | "boq" | "bor" | "bos" | "bot" | "bou" | "bov" | "bow" | "box" | "boy" | "boz" | "bpa" | "bpc" | "bpd" | "bpe" | "bpg" | "bph" | "bpi" | "bpj" | "bpk" | "bpl" | "bpm" | "bpn" | "bpo" | "bpp" | "bpq" | "bpr" | "bps" | "bpt" | "bpu" | "bpv" | "bpw" | "bpx" | "bpy" | "bpz" | "bqa" | "bqb" | "bqc" | "bqd" | "bqf" | "bqg" | "bqh" | "bqi" | "bqj" | "bqk" | "bql" | "bqm" | "bqn" | "bqo" | "bqp" | "bqq" | "bqr" | "bqs" | "bqt" | "bqu" | "bqv" | "bqw" | "bqx" | "bqy" | "bqz" | "bra" | "brb" | "brc" | "brd" | "bre" | "brf" | "brg" | "brh" | "bri" | "brj" | "brk" | "brl" | "brm" | "brn" | "bro" | "brp" | "brq" | "brr" | "brs" | "brt" | "bru" | "brv" | "brw" | "brx" | "bry" | "brz" | "bsa" | "bsb" | "bsc" | "bse" | "bsf" | "bsg" | "bsh" | "bsi" | "bsj" | "bsk" | "bsl" | "bsm" | "bsn" | "bso" | "bsp" | "bsq" | "bsr" | "bss" | "bst" | "bsu" | "bsv" | "bsw" | "bsx" | "bsy" | "bta" | "btc" | "btd" | "bte" | "btf" | "btg" | "bth" | "bti" | "btj" | "btm" | "btn" | "bto" | "btp" | "btq" | "btr" | "bts" | "btt" | "btu" | "btv" | "btw" | "btx" | "bty" | "btz" | "bua" | "bub" | "buc" | "bud" | "bue" | "buf" | "bug" | "buh" | "bui" | "buj" | "buk" | "bul" | "bum" | "bun" | "buo" | "bup" | "buq" | "bus" | "but" | "buu" | "buv" | "buw" | "bux" | "buy" | "buz" | "bva" | "bvb" | "bvc" | "bvd" | "bve" | "bvf" | "bvg" | "bvh" | "bvi" | "bvj" | "bvk" | "bvl" | "bvm" | "bvn" | "bvo" | "bvp" | "bvq" | "bvr" | "bvt" | "bvu" | "bvv" | "bvw" | "bvx" | "bvy" | "bvz" | "bwa" | "bwb" | "bwc" | "bwd" | "bwe" | "bwf" | "bwg" | "bwh" | "bwi" | "bwj" | "bwk" | "bwl" | "bwm" | "bwn" | "bwo" | "bwp" | "bwq" | "bwr" | "bws" | "bwt" | "bwu" | "bww" | "bwx" | "bwy" | "bwz" | "bxa" | "bxb" | "bxc" | "bxd" | "bxe" | "bxf" | "bxg" | "bxh" | "bxi" | "bxj" | "bxk" | "bxl" | "bxm" | "bxn" | "bxo" | "bxp" | "bxq" | "bxr" | "bxs" | "bxu" | "bxv" | "bxw" | "bxz" | "bya" | "byb" | "byc" | "byd" | "bye" | "byf" | "byg" | "byh" | "byi" | "byj" | "byk" | "byl" | "bym" | "byn" | "byo" | "byp" | "byq" | "byr" | "bys" | "byt" | "byv" | "byw" | "byx" | "byz" | "bza" | "bzb" | "bzc" | "bzd" | "bze" | "bzf" | "bzg" | "bzh" | "bzi" | "bzj" | "bzk" | "bzl" | "bzm" | "bzn" | "bzo" | "bzp" | "bzq" | "bzr" | "bzs" | "bzt" | "bzu" | "bzv" | "bzw" | "bzx" | "bzy" | "bzz" | "caa" | "cab" | "cac" | "cad" | "cae" | "caf" | "cag" | "cah" | "caj" | "cak" | "cal" | "cam" | "can" | "cao" | "cap" | "caq" | "car" | "cas" | "cat" | "cav" | "caw" | "cax" | "cay" | "caz" | "cbb" | "cbc" | "cbd" | "cbg" | "cbi" | "cbj" | "cbk" | "cbl" | "cbn" | "cbo" | "cbq" | "cbr" | "cbs" | "cbt" | "cbu" | "cbv" | "cbw" | "cby" | "ccc" | "ccd" | "cce" | "ccg" | "cch" | "ccj" | "ccl" | "ccm" | "cco" | "ccp" | "ccr" | "cda" | "cde" | "cdf" | "cdh" | "cdi" | "cdj" | "cdm" | "cdn" | "cdo" | "cdr" | "cds" | "cdy" | "cdz" | "cea" | "ceb" | "ceg" | "cek" | "cen" | "ces" | "cet" | "cey" | "cfa" | "cfd" | "cfg" | "cfm" | "cga" | "cgc" | "cgg" | "cgk" | "cha" | "chb" | "chc" | "chd" | "che" | "chf" | "chg" | "chh" | "chj" | "chk" | "chl" | "chm" | "chn" | "cho" | "chp" | "chq" | "chr" | "cht" | "chu" | "chv" | "chw" | "chx" | "chy" | "chz" | "cia" | "cib" | "cic" | "cid" | "cie" | "cih" | "cik" | "cim" | "cin" | "cip" | "cir" | "ciw" | "ciy" | "cja" | "cje" | "cjh" | "cji" | "cjk" | "cjm" | "cjn" | "cjo" | "cjp" | "cjs" | "cjv" | "cjy" | "ckb" | "ckh" | "ckl" | "ckm" | "ckn" | "cko" | "ckq" | "ckr" | "cks" | "ckt" | "cku" | "ckv" | "ckx" | "cky" | "ckz" | "cla" | "clc" | "cld" | "cle" | "clh" | "cli" | "clj" | "clk" | "cll" | "clm" | "clo" | "clt" | "clu" | "clw" | "cly" | "cma" | "cme" | "cmg" | "cmi" | "cml" | "cmm" | "cmn" | "cmo" | "cmr" | "cms" | "cmt" | "cna" | "cnb" | "cnc" | "cng" | "cnh" | "cni" | "cnk" | "cnl" | "cno" | "cnp" | "cnq" | "cnr" | "cns" | "cnt" | "cnu" | "cnw" | "cnx" | "coa" | "cob" | "coc" | "cod" | "coe" | "cof" | "cog" | "coh" | "coj" | "cok" | "col" | "com" | "con" | "coo" | "cop" | "coq" | "cor" | "cos" | "cot" | "cou" | "cov" | "cow" | "cox" | "coz" | "cpa" | "cpb" | "cpc" | "cpg" | "cpi" | "cpn" | "cpo" | "cps" | "cpu" | "cpx" | "cpy" | "cqd" | "cra" | "crb" | "crc" | "crd" | "cre" | "crf" | "crg" | "crh" | "cri" | "crj" | "crk" | "crl" | "crm" | "crn" | "cro" | "crq" | "crr" | "crs" | "crt" | "crv" | "crw" | "crx" | "cry" | "crz" | "csa" | "csb" | "csc" | "csd" | "cse" | "csf" | "csg" | "csh" | "csi" | "csj" | "csk" | "csl" | "csm" | "csn" | "cso" | "csp" | "csq" | "csr" | "css" | "cst" | "csv" | "csw" | "csx" | "csy" | "csz" | "cta" | "ctc" | "ctd" | "cte" | "ctg" | "cth" | "ctl" | "ctm" | "ctn" | "cto" | "ctp" | "cts" | "ctt" | "ctu" | "cty" | "ctz" | "cua" | "cub" | "cuc" | "cuh" | "cui" | "cuj" | "cuk" | "cul" | "cuo" | "cup" | "cuq" | "cur" | "cut" | "cuu" | "cuv" | "cuw" | "cux" | "cuy" | "cvg" | "cvn" | "cwa" | "cwb" | "cwd" | "cwe" | "cwg" | "cwt" | "cya" | "cyb" | "cym" | "cyo" | "czh" | "czk" | "czn" | "czo" | "czt" | "daa" | "dac" | "dad" | "dae" | "dag" | "dah" | "dai" | "daj" | "dak" | "dal" | "dam" | "dan" | "dao" | "daq" | "dar" | "das" | "dau" | "dav" | "daw" | "dax" | "daz" | "dba" | "dbb" | "dbd" | "dbe" | "dbf" | "dbg" | "dbi" | "dbj" | "dbl" | "dbm" | "dbn" | "dbo" | "dbp" | "dbq" | "dbr" | "dbt" | "dbu" | "dbv" | "dbw" | "dby" | "dcc" | "dcr" | "dda" | "ddd" | "dde" | "ddg" | "ddi" | "ddj" | "ddn" | "ddo" | "ddr" | "dds" | "ddw" | "dec" | "ded" | "dee" | "def" | "deg" | "deh" | "dei" | "dek" | "del" | "dem" | "den" | "dep" | "deq" | "der" | "des" | "deu" | "dev" | "dez" | "dga" | "dgb" | "dgc" | "dgd" | "dge" | "dgg" | "dgh" | "dgi" | "dgk" | "dgl" | "dgn" | "dgo" | "dgr" | "dgs" | "dgt" | "dgw" | "dgx" | "dgz" | "dhd" | "dhg" | "dhi" | "dhl" | "dhm" | "dhn" | "dho" | "dhr" | "dhs" | "dhu" | "dhv" | "dhw" | "dhx" | "dia" | "dib" | "dic" | "did" | "dif" | "dig" | "dih" | "dii" | "dij" | "dik" | "dil" | "dim" | "din" | "dio" | "dip" | "diq" | "dir" | "dis" | "diu" | "div" | "diw" | "dix" | "diy" | "diz" | "dja" | "djb" | "djc" | "djd" | "dje" | "djf" | "dji" | "djj" | "djk" | "djm" | "djn" | "djo" | "djr" | "dju" | "djw" | "dka" | "dkg" | "dkk" | "dkr" | "dks" | "dkx" | "dlg" | "dlk" | "dlm" | "dln" | "dma" | "dmb" | "dmc" | "dmd" | "dme" | "dmf" | "dmg" | "dmk" | "dml" | "dmm" | "dmo" | "dmr" | "dms" | "dmu" | "dmv" | "dmw" | "dmx" | "dmy" | "dna" | "dnd" | "dne" | "dng" | "dni" | "dnj" | "dnk" | "dnn" | "dno" | "dnr" | "dnt" | "dnu" | "dnv" | "dnw" | "dny" | "doa" | "dob" | "doc" | "doe" | "dof" | "doh" | "doi" | "dok" | "dol" | "don" | "doo" | "dop" | "doq" | "dor" | "dos" | "dot" | "dov" | "dow" | "dox" | "doy" | "doz" | "dpp" | "drb" | "drc" | "drd" | "dre" | "drg" | "dri" | "drl" | "drn" | "dro" | "drq" | "drs" | "drt" | "dru" | "dry" | "dsb" | "dse" | "dsh" | "dsi" | "dsl" | "dsn" | "dso" | "dsq" | "dsz" | "dta" | "dtb" | "dtd" | "dth" | "dti" | "dtk" | "dtm" | "dtn" | "dto" | "dtp" | "dtr" | "dts" | "dtt" | "dtu" | "dty" | "dua" | "dub" | "duc" | "due" | "duf" | "dug" | "duh" | "dui" | "duk" | "dul" | "dum" | "dun" | "duo" | "dup" | "duq" | "dur" | "dus" | "duu" | "duv" | "duw" | "dux" | "duy" | "duz" | "dva" | "dwa" | "dwk" | "dwr" | "dws" | "dwu" | "dww" | "dwy" | "dwz" | "dya" | "dyb" | "dyd" | "dyg" | "dyi" | "dym" | "dyn" | "dyo" | "dyu" | "dyy" | "dza" | "dze" | "dzg" | "dzl" | "dzn" | "dzo" | "eaa" | "ebc" | "ebg" | "ebk" | "ebo" | "ebr" | "ebu" | "ecr" | "ecs" | "ecy" | "eee" | "efa" | "efe" | "efi" | "ega" | "egl" | "egm" | "ego" | "egy" | "ehs" | "ehu" | "eip" | "eit" | "eiv" | "eja" | "eka" | "eke" | "ekg" | "eki" | "ekk" | "ekl" | "ekm" | "eko" | "ekp" | "ekr" | "eky" | "ele" | "elh" | "eli" | "elk" | "ell" | "elm" | "elo" | "elu" | "elx" | "ema" | "emb" | "eme" | "emg" | "emi" | "emk" | "emm" | "emn" | "emp" | "emq" | "ems" | "emu" | "emw" | "emx" | "emy" | "emz" | "ena" | "enb" | "enc" | "end" | "enf" | "eng" | "enh" | "enl" | "enm" | "enn" | "eno" | "enq" | "enr" | "enu" | "env" | "enw" | "enx" | "eot" | "epi" | "epo" | "era" | "erg" | "erh" | "eri" | "erk" | "ero" | "err" | "ers" | "ert" | "erw" | "ese" | "esg" | "esh" | "esi" | "esk" | "esl" | "esm" | "esn" | "eso" | "esq" | "ess" | "est" | "esu" | "esy" | "etb" | "etc" | "eth" | "etn" | "eto" | "etr" | "ets" | "ett" | "etu" | "etx" | "etz" | "eus" | "eve" | "evh" | "evn" | "ewe" | "ewo" | "ext" | "eya" | "eyo" | "eza" | "eze" | "faa" | "fab" | "fad" | "faf" | "fag" | "fah" | "fai" | "faj" | "fak" | "fal" | "fam" | "fan" | "fao" | "fap" | "far" | "fas" | "fat" | "fau" | "fax" | "fay" | "faz" | "fbl" | "fcs" | "fer" | "ffi" | "ffm" | "fgr" | "fia" | "fie" | "fif" | "fij" | "fil" | "fin" | "fip" | "fir" | "fit" | "fiw" | "fkk" | "fkv" | "fla" | "flh" | "fli" | "fll" | "fln" | "flr" | "fly" | "fmp" | "fmu" | "fnb" | "fng" | "fni" | "fod" | "foi" | "fom" | "fon" | "for" | "fos" | "fpe" | "fqs" | "fra" | "frc" | "frd" | "frk" | "frm" | "fro" | "frp" | "frq" | "frr" | "frs" | "frt" | "fry" | "fse" | "fsl" | "fss" | "fub" | "fuc" | "fud" | "fue" | "fuf" | "fuh" | "fui" | "fuj" | "ful" | "fum" | "fun" | "fuq" | "fur" | "fut" | "fuu" | "fuv" | "fuy" | "fvr" | "fwa" | "fwe" | "gaa" | "gab" | "gac" | "gad" | "gae" | "gaf" | "gag" | "gah" | "gai" | "gaj" | "gak" | "gal" | "gam" | "gan" | "gao" | "gap" | "gaq" | "gar" | "gas" | "gat" | "gau" | "gaw" | "gax" | "gay" | "gaz" | "gba" | "gbb" | "gbd" | "gbe" | "gbf" | "gbg" | "gbh" | "gbi" | "gbj" | "gbk" | "gbl" | "gbm" | "gbn" | "gbo" | "gbp" | "gbq" | "gbr" | "gbs" | "gbu" | "gbv" | "gbw" | "gbx" | "gby" | "gbz" | "gcc" | "gcd" | "gce" | "gcf" | "gcl" | "gcn" | "gcr" | "gct" | "gda" | "gdb" | "gdc" | "gdd" | "gde" | "gdf" | "gdg" | "gdh" | "gdi" | "gdj" | "gdk" | "gdl" | "gdm" | "gdn" | "gdo" | "gdq" | "gdr" | "gds" | "gdt" | "gdu" | "gdx" | "gea" | "geb" | "gec" | "ged" | "gef" | "geg" | "geh" | "gei" | "gej" | "gek" | "gel" | "geq" | "ges" | "gev" | "gew" | "gex" | "gey" | "gez" | "gfk" | "gft" | "gga" | "ggb" | "ggd" | "gge" | "ggg" | "ggk" | "ggl" | "ggt" | "ggu" | "ggw" | "gha" | "ghc" | "ghe" | "ghh" | "ghk" | "ghl" | "ghn" | "gho" | "ghr" | "ghs" | "ght" | "gia" | "gib" | "gic" | "gid" | "gie" | "gig" | "gih" | "gii" | "gil" | "gim" | "gin" | "gip" | "giq" | "gir" | "gis" | "git" | "giu" | "giw" | "gix" | "giy" | "giz" | "gjk" | "gjm" | "gjn" | "gjr" | "gju" | "gka" | "gkd" | "gke" | "gkn" | "gko" | "gkp" | "gku" | "gla" | "glb" | "glc" | "gld" | "gle" | "glg" | "glh" | "glj" | "glk" | "gll" | "glo" | "glr" | "glu" | "glv" | "glw" | "gly" | "gma" | "gmb" | "gmd" | "gmg" | "gmh" | "gml" | "gmm" | "gmn" | "gmr" | "gmu" | "gmv" | "gmx" | "gmy" | "gmz" | "gna" | "gnb" | "gnc" | "gnd" | "gne" | "gng" | "gnh" | "gni" | "gnj" | "gnk" | "gnl" | "gnm" | "gnn" | "gno" | "gnq" | "gnr" | "gnt" | "gnu" | "gnw" | "gnz" | "goa" | "gob" | "goc" | "god" | "goe" | "gof" | "gog" | "goh" | "goi" | "goj" | "gok" | "gol" | "gom" | "gon" | "goo" | "gop" | "goq" | "gor" | "gos" | "got" | "gou" | "gov" | "gow" | "gox" | "goy" | "goz" | "gpa" | "gpe" | "gpn" | "gqa" | "gqi" | "gqn" | "gqr" | "gqu" | "gra" | "grb" | "grc" | "grd" | "grg" | "grh" | "gri" | "grj" | "grm" | "grn" | "gro" | "grq" | "grr" | "grs" | "grt" | "gru" | "grv" | "grw" | "grx" | "gry" | "grz" | "gse" | "gsg" | "gsl" | "gsm" | "gsn" | "gso" | "gsp" | "gss" | "gsw" | "gta" | "gtu" | "gua" | "gub" | "guc" | "gud" | "gue" | "guf" | "gug" | "guh" | "gui" | "guj" | "guk" | "gul" | "gum" | "gun" | "guo" | "gup" | "guq" | "gur" | "gus" | "gut" | "guu" | "guw" | "gux" | "guz" | "gva" | "gvc" | "gve" | "gvf" | "gvj" | "gvl" | "gvm" | "gvn" | "gvo" | "gvp" | "gvr" | "gvs" | "gvy" | "gwa" | "gwb" | "gwc" | "gwd" | "gwe" | "gwf" | "gwg" | "gwi" | "gwj" | "gwm" | "gwn" | "gwr" | "gwt" | "gwu" | "gww" | "gwx" | "gxx" | "gya" | "gyb" | "gyd" | "gye" | "gyf" | "gyg" | "gyi" | "gyl" | "gym" | "gyn" | "gyo" | "gyr" | "gyy" | "gyz" | "gza" | "gzi" | "gzn" | "haa" | "hab" | "hac" | "had" | "hae" | "haf" | "hag" | "hah" | "hai" | "haj" | "hak" | "hal" | "ham" | "han" | "hao" | "hap" | "haq" | "har" | "has" | "hat" | "hau" | "hav" | "haw" | "hax" | "hay" | "haz" | "hba" | "hbb" | "hbn" | "hbo" | "hbs" | "hbu" | "hca" | "hch" | "hdn" | "hds" | "hdy" | "hea" | "heb" | "hed" | "heg" | "heh" | "hei" | "hem" | "her" | "hgm" | "hgw" | "hhi" | "hhr" | "hhy" | "hia" | "hib" | "hid" | "hif" | "hig" | "hih" | "hii" | "hij" | "hik" | "hil" | "hin" | "hio" | "hir" | "hit" | "hiw" | "hix" | "hji" | "hka" | "hke" | "hkh" | "hkk" | "hkn" | "hks" | "hla" | "hlb" | "hld" | "hle" | "hlt" | "hlu" | "hma" | "hmb" | "hmc" | "hmd" | "hme" | "hmf" | "hmg" | "hmh" | "hmi" | "hmj" | "hmk" | "hml" | "hmm" | "hmn" | "hmo" | "hmp" | "hmq" | "hmr" | "hms" | "hmt" | "hmu" | "hmv" | "hmw" | "hmy" | "hmz" | "hna" | "hnd" | "hne" | "hng" | "hnh" | "hni" | "hnj" | "hnn" | "hno" | "hns" | "hnu" | "hoa" | "hob" | "hoc" | "hod" | "hoe" | "hoh" | "hoi" | "hoj" | "hol" | "hom" | "hoo" | "hop" | "hor" | "hos" | "hot" | "hov" | "how" | "hoy" | "hoz" | "hpo" | "hps" | "hra" | "hrc" | "hre" | "hrk" | "hrm" | "hro" | "hrp" | "hrt" | "hru" | "hrv" | "hrw" | "hrx" | "hrz" | "hsb" | "hsh" | "hsl" | "hsn" | "hss" | "hti" | "hto" | "hts" | "htu" | "htx" | "hub" | "huc" | "hud" | "hue" | "huf" | "hug" | "huh" | "hui" | "huj" | "huk" | "hul" | "hum" | "hun" | "huo" | "hup" | "huq" | "hur" | "hus" | "hut" | "huu" | "huv" | "huw" | "hux" | "huy" | "huz" | "hvc" | "hve" | "hvk" | "hvn" | "hvv" | "hwa" | "hwc" | "hwo" | "hya" | "hye" | "hyw" | "iai" | "ian" | "iar" | "iba" | "ibb" | "ibd" | "ibe" | "ibg" | "ibh" | "ibl" | "ibm" | "ibn" | "ibo" | "ibr" | "ibu" | "iby" | "ica" | "ich" | "icl" | "icr" | "ida" | "idb" | "idc" | "idd" | "ide" | "idi" | "ido" | "idr" | "ids" | "idt" | "idu" | "ifa" | "ifb" | "ife" | "iff" | "ifk" | "ifm" | "ifu" | "ify" | "igb" | "ige" | "igg" | "igl" | "igm" | "ign" | "igo" | "igs" | "igw" | "ihb" | "ihi" | "ihp" | "ihw" | "iii" | "iin" | "ijc" | "ije" | "ijj" | "ijn" | "ijs" | "ike" | "iki" | "ikk" | "ikl" | "iko" | "ikp" | "ikr" | "iks" | "ikt" | "iku" | "ikv" | "ikw" | "ikx" | "ikz" | "ila" | "ilb" | "ile" | "ilg" | "ili" | "ilk" | "ilm" | "ilo" | "ilp" | "ils" | "ilu" | "ilv" | "ima" | "imi" | "iml" | "imn" | "imo" | "imr" | "ims" | "imt" | "imy" | "ina" | "inb" | "ind" | "ing" | "inh" | "inj" | "inl" | "inm" | "inn" | "ino" | "inp" | "ins" | "int" | "inz" | "ior" | "iou" | "iow" | "ipi" | "ipk" | "ipo" | "iqu" | "iqw" | "ire" | "irh" | "iri" | "irk" | "irn" | "irr" | "iru" | "irx" | "iry" | "isa" | "isc" | "isd" | "ise" | "isg" | "ish" | "isi" | "isk" | "isl" | "ism" | "isn" | "iso" | "isr" | "ist" | "isu" | "ita" | "itb" | "itd" | "ite" | "iti" | "itk" | "itl" | "itm" | "ito" | "itr" | "its" | "itt" | "itv" | "itw" | "itx" | "ity" | "itz" | "ium" | "ivb" | "ivv" | "iwk" | "iwm" | "iwo" | "iws" | "ixc" | "ixl" | "iya" | "iyo" | "iyx" | "izh" | "izr" | "izz" | "jaa" | "jab" | "jac" | "jad" | "jae" | "jaf" | "jah" | "jaj" | "jak" | "jal" | "jam" | "jan" | "jao" | "jaq" | "jas" | "jat" | "jau" | "jav" | "jax" | "jay" | "jaz" | "jbe" | "jbi" | "jbj" | "jbk" | "jbm" | "jbn" | "jbo" | "jbr" | "jbt" | "jbu" | "jbw" | "jcs" | "jct" | "jda" | "jdg" | "jdt" | "jeb" | "jee" | "jeh" | "jei" | "jek" | "jel" | "jen" | "jer" | "jet" | "jeu" | "jgb" | "jge" | "jgk" | "jgo" | "jhi" | "jhs" | "jia" | "jib" | "jic" | "jid" | "jie" | "jig" | "jih" | "jii" | "jil" | "jim" | "jio" | "jiq" | "jit" | "jiu" | "jiv" | "jiy" | "jje" | "jjr" | "jka" | "jkm" | "jko" | "jkp" | "jkr" | "jks" | "jku" | "jle" | "jls" | "jma" | "jmb" | "jmc" | "jmd" | "jmi" | "jml" | "jmn" | "jmr" | "jms" | "jmw" | "jmx" | "jna" | "jnd" | "jng" | "jni" | "jnj" | "jnl" | "jns" | "job" | "jod" | "jog" | "jor" | "jos" | "jow" | "jpa" | "jpn" | "jpr" | "jqr" | "jra" | "jrb" | "jrr" | "jrt" | "jru" | "jsl" | "jua" | "jub" | "juc" | "jud" | "juh" | "jui" | "juk" | "jul" | "jum" | "jun" | "juo" | "jup" | "jur" | "jus" | "jut" | "juu" | "juw" | "juy" | "jvd" | "jvn" | "jwi" | "jya" | "jye" | "jyy" | "kaa" | "kab" | "kac" | "kad" | "kae" | "kaf" | "kag" | "kah" | "kai" | "kaj" | "kak" | "kal" | "kam" | "kan" | "kao" | "kap" | "kaq" | "kas" | "kat" | "kau" | "kav" | "kaw" | "kax" | "kay" | "kaz" | "kba" | "kbb" | "kbc" | "kbd" | "kbe" | "kbg" | "kbh" | "kbi" | "kbj" | "kbk" | "kbl" | "kbm" | "kbn" | "kbo" | "kbp" | "kbq" | "kbr" | "kbs" | "kbt" | "kbu" | "kbv" | "kbw" | "kbx" | "kby" | "kbz" | "kca" | "kcb" | "kcc" | "kcd" | "kce" | "kcf" | "kcg" | "kch" | "kci" | "kcj" | "kck" | "kcl" | "kcm" | "kcn" | "kco" | "kcp" | "kcq" | "kcr" | "kcs" | "kct" | "kcu" | "kcv" | "kcw" | "kcx" | "kcy" | "kcz" | "kda" | "kdc" | "kdd" | "kde" | "kdf" | "kdg" | "kdh" | "kdi" | "kdj" | "kdk" | "kdl" | "kdm" | "kdn" | "kdp" | "kdq" | "kdr" | "kdt" | "kdu" | "kdw" | "kdx" | "kdy" | "kdz" | "kea" | "keb" | "kec" | "ked" | "kee" | "kef" | "keg" | "keh" | "kei" | "kej" | "kek" | "kel" | "kem" | "ken" | "keo" | "kep" | "keq" | "ker" | "kes" | "ket" | "keu" | "kev" | "kew" | "kex" | "key" | "kez" | "kfa" | "kfb" | "kfc" | "kfd" | "kfe" | "kff" | "kfg" | "kfh" | "kfi" | "kfj" | "kfk" | "kfl" | "kfm" | "kfn" | "kfo" | "kfp" | "kfq" | "kfr" | "kfs" | "kft" | "kfu" | "kfv" | "kfw" | "kfx" | "kfy" | "kfz" | "kga" | "kgb" | "kge" | "kgf" | "kgg" | "kgi" | "kgj" | "kgk" | "kgl" | "kgm" | "kgn" | "kgo" | "kgp" | "kgq" | "kgr" | "kgs" | "kgt" | "kgu" | "kgv" | "kgw" | "kgx" | "kgy" | "kha" | "khb" | "khc" | "khd" | "khe" | "khf" | "khg" | "khh" | "khj" | "khk" | "khl" | "khm" | "khn" | "kho" | "khp" | "khq" | "khr" | "khs" | "kht" | "khu" | "khv" | "khw" | "khx" | "khy" | "khz" | "kia" | "kib" | "kic" | "kid" | "kie" | "kif" | "kig" | "kih" | "kii" | "kij" | "kik" | "kil" | "kim" | "kin" | "kio" | "kip" | "kiq" | "kir" | "kis" | "kit" | "kiu" | "kiv" | "kiw" | "kix" | "kiy" | "kiz" | "kja" | "kjb" | "kjc" | "kjd" | "kje" | "kjg" | "kjh" | "kji" | "kjj" | "kjk" | "kjl" | "kjm" | "kjn" | "kjo" | "kjp" | "kjq" | "kjr" | "kjs" | "kjt" | "kju" | "kjv" | "kjx" | "kjy" | "kjz" | "kka" | "kkb" | "kkc" | "kkd" | "kke" | "kkf" | "kkg" | "kkh" | "kki" | "kkj" | "kkk" | "kkl" | "kkm" | "kkn" | "kko" | "kkp" | "kkq" | "kkr" | "kks" | "kkt" | "kku" | "kkv" | "kkw" | "kkx" | "kky" | "kkz" | "kla" | "klb" | "klc" | "kld" | "kle" | "klf" | "klg" | "klh" | "kli" | "klj" | "klk" | "kll" | "klm" | "kln" | "klo" | "klp" | "klq" | "klr" | "kls" | "klt" | "klu" | "klv" | "klw" | "klx" | "kly" | "klz" | "kma" | "kmb" | "kmc" | "kmd" | "kme" | "kmf" | "kmg" | "kmh" | "kmi" | "kmj" | "kmk" | "kml" | "kmm" | "kmn" | "kmo" | "kmp" | "kmq" | "kmr" | "kms" | "kmt" | "kmu" | "kmv" | "kmw" | "kmx" | "kmy" | "kmz" | "kna" | "knb" | "knc" | "knd" | "kne" | "knf" | "kng" | "kni" | "knj" | "knk" | "knl" | "knm" | "knn" | "kno" | "knp" | "knq" | "knr" | "kns" | "knt" | "knu" | "knv" | "knw" | "knx" | "kny" | "knz" | "koa" | "koc" | "kod" | "koe" | "kof" | "kog" | "koh" | "koi" | "kok" | "kol" | "kom" | "kon" | "koo" | "kop" | "koq" | "kor" | "kos" | "kot" | "kou" | "kov" | "kow" | "koy" | "koz" | "kpa" | "kpb" | "kpc" | "kpd" | "kpe" | "kpf" | "kpg" | "kph" | "kpi" | "kpj" | "kpk" | "kpl" | "kpm" | "kpn" | "kpo" | "kpq" | "kpr" | "kps" | "kpt" | "kpu" | "kpv" | "kpw" | "kpx" | "kpy" | "kpz" | "kqa" | "kqb" | "kqc" | "kqd" | "kqe" | "kqf" | "kqg" | "kqh" | "kqi" | "kqj" | "kqk" | "kql" | "kqm" | "kqn" | "kqo" | "kqp" | "kqq" | "kqr" | "kqs" | "kqt" | "kqu" | "kqv" | "kqw" | "kqx" | "kqy" | "kqz" | "kra" | "krb" | "krc" | "krd" | "kre" | "krf" | "krh" | "kri" | "krj" | "krk" | "krl" | "krn" | "krp" | "krr" | "krs" | "krt" | "kru" | "krv" | "krw" | "krx" | "kry" | "krz" | "ksa" | "ksb" | "ksc" | "ksd" | "kse" | "ksf" | "ksg" | "ksh" | "ksi" | "ksj" | "ksk" | "ksl" | "ksm" | "ksn" | "kso" | "ksp" | "ksq" | "ksr" | "kss" | "kst" | "ksu" | "ksv" | "ksw" | "ksx" | "ksy" | "ksz" | "kta" | "ktb" | "ktc" | "ktd" | "kte" | "ktf" | "ktg" | "kth" | "kti" | "ktj" | "ktk" | "ktl" | "ktm" | "ktn" | "kto" | "ktp" | "ktq" | "kts" | "ktt" | "ktu" | "ktv" | "ktw" | "ktx" | "kty" | "ktz" | "kua" | "kub" | "kuc" | "kud" | "kue" | "kuf" | "kug" | "kuh" | "kui" | "kuj" | "kuk" | "kul" | "kum" | "kun" | "kuo" | "kup" | "kuq" | "kur" | "kus" | "kut" | "kuu" | "kuv" | "kuw" | "kux" | "kuy" | "kuz" | "kva" | "kvb" | "kvc" | "kvd" | "kve" | "kvf" | "kvg" | "kvh" | "kvi" | "kvj" | "kvk" | "kvl" | "kvm" | "kvn" | "kvo" | "kvp" | "kvq" | "kvr" | "kvt" | "kvu" | "kvv" | "kvw" | "kvx" | "kvy" | "kvz" | "kwa" | "kwb" | "kwc" | "kwd" | "kwe" | "kwf" | "kwg" | "kwh" | "kwi" | "kwj" | "kwk" | "kwl" | "kwm" | "kwn" | "kwo" | "kwp" | "kwr" | "kws" | "kwt" | "kwu" | "kwv" | "kww" | "kwx" | "kwy" | "kwz" | "kxa" | "kxb" | "kxc" | "kxd" | "kxf" | "kxh" | "kxi" | "kxj" | "kxk" | "kxm" | "kxn" | "kxo" | "kxp" | "kxq" | "kxr" | "kxs" | "kxt" | "kxv" | "kxw" | "kxx" | "kxy" | "kxz" | "kya" | "kyb" | "kyc" | "kyd" | "kye" | "kyf" | "kyg" | "kyh" | "kyi" | "kyj" | "kyk" | "kyl" | "kym" | "kyn" | "kyo" | "kyp" | "kyq" | "kyr" | "kys" | "kyt" | "kyu" | "kyv" | "kyw" | "kyx" | "kyy" | "kyz" | "kza" | "kzb" | "kzc" | "kzd" | "kze" | "kzf" | "kzg" | "kzi" | "kzk" | "kzl" | "kzm" | "kzn" | "kzo" | "kzp" | "kzq" | "kzr" | "kzs" | "kzu" | "kzv" | "kzw" | "kzx" | "kzy" | "kzz" | "laa" | "lab" | "lac" | "lad" | "lae" | "laf" | "lag" | "lah" | "lai" | "laj" | "lal" | "lam" | "lan" | "lao" | "lap" | "laq" | "lar" | "las" | "lat" | "lau" | "lav" | "law" | "lax" | "lay" | "laz" | "lbb" | "lbc" | "lbe" | "lbf" | "lbg" | "lbi" | "lbj" | "lbk" | "lbl" | "lbm" | "lbn" | "lbo" | "lbq" | "lbr" | "lbs" | "lbt" | "lbu" | "lbv" | "lbw" | "lbx" | "lby" | "lbz" | "lcc" | "lcd" | "lce" | "lcf" | "lch" | "lcl" | "lcm" | "lcp" | "lcq" | "lcs" | "lda" | "ldb" | "ldd" | "ldg" | "ldh" | "ldi" | "ldj" | "ldk" | "ldl" | "ldm" | "ldn" | "ldo" | "ldp" | "ldq" | "lea" | "leb" | "lec" | "led" | "lee" | "lef" | "leh" | "lei" | "lej" | "lek" | "lel" | "lem" | "len" | "leo" | "lep" | "leq" | "ler" | "les" | "let" | "leu" | "lev" | "lew" | "lex" | "ley" | "lez" | "lfa" | "lfn" | "lga" | "lgb" | "lgg" | "lgh" | "lgi" | "lgk" | "lgl" | "lgm" | "lgn" | "lgo" | "lgq" | "lgr" | "lgt" | "lgu" | "lgz" | "lha" | "lhh" | "lhi" | "lhl" | "lhm" | "lhn" | "lhp" | "lhs" | "lht" | "lhu" | "lia" | "lib" | "lic" | "lid" | "lie" | "lif" | "lig" | "lih" | "lij" | "lik" | "lil" | "lim" | "lin" | "lio" | "lip" | "liq" | "lir" | "lis" | "lit" | "liu" | "liv" | "liw" | "lix" | "liy" | "liz" | "lja" | "lje" | "lji" | "ljl" | "ljp" | "ljw" | "ljx" | "lka" | "lkb" | "lkc" | "lkd" | "lke" | "lkh" | "lki" | "lkj" | "lkl" | "lkm" | "lkn" | "lko" | "lkr" | "lks" | "lkt" | "lku" | "lky" | "lla" | "llb" | "llc" | "lld" | "lle" | "llf" | "llg" | "llh" | "lli" | "llj" | "llk" | "lll" | "llm" | "lln" | "llp" | "llq" | "lls" | "llu" | "llx" | "lma" | "lmb" | "lmc" | "lmd" | "lme" | "lmf" | "lmg" | "lmh" | "lmi" | "lmj" | "lmk" | "lml" | "lmn" | "lmo" | "lmp" | "lmq" | "lmr" | "lmu" | "lmv" | "lmw" | "lmx" | "lmy" | "lna" | "lnb" | "lnd" | "lng" | "lnh" | "lni" | "lnj" | "lnl" | "lnm" | "lnn" | "lns" | "lnu" | "lnw" | "lnz" | "loa" | "lob" | "loc" | "loe" | "lof" | "log" | "loh" | "loi" | "loj" | "lok" | "lol" | "lom" | "lon" | "loo" | "lop" | "loq" | "lor" | "los" | "lot" | "lou" | "lov" | "low" | "lox" | "loy" | "loz" | "lpa" | "lpe" | "lpn" | "lpo" | "lpx" | "lqr" | "lra" | "lrc" | "lre" | "lrg" | "lri" | "lrk" | "lrl" | "lrm" | "lrn" | "lro" | "lrr" | "lrt" | "lrv" | "lrz" | "lsa" | "lsb" | "lsc" | "lsd" | "lse" | "lsh" | "lsi" | "lsl" | "lsm" | "lsn" | "lso" | "lsp" | "lsr" | "lss" | "lst" | "lsv" | "lsw" | "lsy" | "ltc" | "ltg" | "lth" | "lti" | "ltn" | "lto" | "lts" | "ltu" | "ltz" | "lua" | "lub" | "luc" | "lud" | "lue" | "luf" | "lug" | "lui" | "luj" | "luk" | "lul" | "lum" | "lun" | "luo" | "lup" | "luq" | "lur" | "lus" | "lut" | "luu" | "luv" | "luw" | "luy" | "luz" | "lva" | "lvi" | "lvk" | "lvs" | "lvu" | "lwa" | "lwe" | "lwg" | "lwh" | "lwl" | "lwm" | "lwo" | "lws" | "lwt" | "lwu" | "lww" | "lxm" | "lya" | "lyg" | "lyn" | "lzh" | "lzl" | "lzn" | "lzz" | "maa" | "mab" | "mad" | "mae" | "maf" | "mag" | "mah" | "mai" | "maj" | "mak" | "mal" | "mam" | "man" | "maq" | "mar" | "mas" | "mat" | "mau" | "mav" | "maw" | "max" | "maz" | "mba" | "mbb" | "mbc" | "mbd" | "mbe" | "mbf" | "mbh" | "mbi" | "mbj" | "mbk" | "mbl" | "mbm" | "mbn" | "mbo" | "mbp" | "mbq" | "mbr" | "mbs" | "mbt" | "mbu" | "mbv" | "mbw" | "mbx" | "mby" | "mbz" | "mca" | "mcb" | "mcc" | "mcd" | "mce" | "mcf" | "mcg" | "mch" | "mci" | "mcj" | "mck" | "mcl" | "mcm" | "mcn" | "mco" | "mcp" | "mcq" | "mcr" | "mcs" | "mct" | "mcu" | "mcv" | "mcw" | "mcx" | "mcy" | "mcz" | "mda" | "mdb" | "mdc" | "mdd" | "mde" | "mdf" | "mdg" | "mdh" | "mdi" | "mdj" | "mdk" | "mdl" | "mdm" | "mdn" | "mdp" | "mdq" | "mdr" | "mds" | "mdt" | "mdu" | "mdv" | "mdw" | "mdx" | "mdy" | "mdz" | "mea" | "meb" | "mec" | "med" | "mee" | "mef" | "meh" | "mei" | "mej" | "mek" | "mel" | "mem" | "men" | "meo" | "mep" | "meq" | "mer" | "mes" | "met" | "meu" | "mev" | "mew" | "mey" | "mez" | "mfa" | "mfb" | "mfc" | "mfd" | "mfe" | "mff" | "mfg" | "mfh" | "mfi" | "mfj" | "mfk" | "mfl" | "mfm" | "mfn" | "mfo" | "mfp" | "mfq" | "mfr" | "mfs" | "mft" | "mfu" | "mfv" | "mfw" | "mfx" | "mfy" | "mfz" | "mga" | "mgb" | "mgc" | "mgd" | "mge" | "mgf" | "mgg" | "mgh" | "mgi" | "mgj" | "mgk" | "mgl" | "mgm" | "mgn" | "mgo" | "mgp" | "mgq" | "mgr" | "mgs" | "mgt" | "mgu" | "mgv" | "mgw" | "mgy" | "mgz" | "mha" | "mhb" | "mhc" | "mhd" | "mhe" | "mhf" | "mhg" | "mhi" | "mhj" | "mhk" | "mhl" | "mhm" | "mhn" | "mho" | "mhp" | "mhq" | "mhr" | "mhs" | "mht" | "mhu" | "mhw" | "mhx" | "mhy" | "mhz" | "mia" | "mib" | "mic" | "mid" | "mie" | "mif" | "mig" | "mih" | "mii" | "mij" | "mik" | "mil" | "mim" | "min" | "mio" | "mip" | "miq" | "mir" | "mis" | "mit" | "miu" | "miw" | "mix" | "miy" | "miz" | "mjb" | "mjc" | "mjd" | "mje" | "mjg" | "mjh" | "mji" | "mjj" | "mjk" | "mjl" | "mjm" | "mjn" | "mjo" | "mjp" | "mjq" | "mjr" | "mjs" | "mjt" | "mju" | "mjv" | "mjw" | "mjx" | "mjy" | "mjz" | "mka" | "mkb" | "mkc" | "mkd" | "mke" | "mkf" | "mkg" | "mki" | "mkj" | "mkk" | "mkl" | "mkm" | "mkn" | "mko" | "mkp" | "mkq" | "mkr" | "mks" | "mkt" | "mku" | "mkv" | "mkw" | "mkx" | "mky" | "mkz" | "mla" | "mlb" | "mlc" | "mle" | "mlf" | "mlg" | "mlh" | "mli" | "mlj" | "mlk" | "mll" | "mlm" | "mln" | "mlo" | "mlp" | "mlq" | "mlr" | "mls" | "mlt" | "mlu" | "mlv" | "mlw" | "mlx" | "mlz" | "mma" | "mmb" | "mmc" | "mmd" | "mme" | "mmf" | "mmg" | "mmh" | "mmi" | "mmj" | "mmk" | "mml" | "mmm" | "mmn" | "mmo" | "mmp" | "mmq" | "mmr" | "mmt" | "mmu" | "mmv" | "mmw" | "mmx" | "mmy" | "mmz" | "mna" | "mnb" | "mnc" | "mnd" | "mne" | "mnf" | "mng" | "mnh" | "mni" | "mnj" | "mnk" | "mnl" | "mnm" | "mnn" | "mnp" | "mnq" | "mnr" | "mns" | "mnu" | "mnv" | "mnw" | "mnx" | "mny" | "mnz" | "moa" | "moc" | "mod" | "moe" | "mog" | "moh" | "moi" | "moj" | "mok" | "mom" | "mon" | "moo" | "mop" | "moq" | "mor" | "mos" | "mot" | "mou" | "mov" | "mow" | "mox" | "moy" | "moz" | "mpa" | "mpb" | "mpc" | "mpd" | "mpe" | "mpg" | "mph" | "mpi" | "mpj" | "mpk" | "mpl" | "mpm" | "mpn" | "mpo" | "mpp" | "mpq" | "mpr" | "mps" | "mpt" | "mpu" | "mpv" | "mpw" | "mpx" | "mpy" | "mpz" | "mqa" | "mqb" | "mqc" | "mqe" | "mqf" | "mqg" | "mqh" | "mqi" | "mqj" | "mqk" | "mql" | "mqm" | "mqn" | "mqo" | "mqp" | "mqq" | "mqr" | "mqs" | "mqt" | "mqu" | "mqv" | "mqw" | "mqx" | "mqy" | "mqz" | "mra" | "mrb" | "mrc" | "mrd" | "mre" | "mrf" | "mrg" | "mrh" | "mri" | "mrj" | "mrk" | "mrl" | "mrm" | "mrn" | "mro" | "mrp" | "mrq" | "mrr" | "mrs" | "mrt" | "mru" | "mrv" | "mrw" | "mrx" | "mry" | "mrz" | "msa" | "msb" | "msc" | "msd" | "mse" | "msf" | "msg" | "msh" | "msi" | "msj" | "msk" | "msl" | "msm" | "msn" | "mso" | "msp" | "msq" | "msr" | "mss" | "msu" | "msv" | "msw" | "msx" | "msy" | "msz" | "mta" | "mtb" | "mtc" | "mtd" | "mte" | "mtf" | "mtg" | "mth" | "mti" | "mtj" | "mtk" | "mtl" | "mtm" | "mtn" | "mto" | "mtp" | "mtq" | "mtr" | "mts" | "mtt" | "mtu" | "mtv" | "mtw" | "mtx" | "mty" | "mua" | "mub" | "muc" | "mud" | "mue" | "mug" | "muh" | "mui" | "muj" | "muk" | "mul" | "mum" | "muo" | "mup" | "muq" | "mur" | "mus" | "mut" | "muu" | "muv" | "mux" | "muy" | "muz" | "mva" | "mvb" | "mvd" | "mve" | "mvf" | "mvg" | "mvh" | "mvi" | "mvk" | "mvl" | "mvn" | "mvo" | "mvp" | "mvq" | "mvr" | "mvs" | "mvt" | "mvu" | "mvv" | "mvw" | "mvx" | "mvy" | "mvz" | "mwa" | "mwb" | "mwc" | "mwe" | "mwf" | "mwg" | "mwh" | "mwi" | "mwk" | "mwl" | "mwm" | "mwn" | "mwo" | "mwp" | "mwq" | "mwr" | "mws" | "mwt" | "mwu" | "mwv" | "mww" | "mwz" | "mxa" | "mxb" | "mxc" | "mxd" | "mxe" | "mxf" | "mxg" | "mxh" | "mxi" | "mxj" | "mxk" | "mxl" | "mxm" | "mxn" | "mxo" | "mxp" | "mxq" | "mxr" | "mxs" | "mxt" | "mxu" | "mxv" | "mxw" | "mxx" | "mxy" | "mxz" | "mya" | "myb" | "myc" | "mye" | "myf" | "myg" | "myh" | "myj" | "myk" | "myl" | "mym" | "myo" | "myp" | "myr" | "mys" | "myu" | "myv" | "myw" | "myx" | "myy" | "myz" | "mza" | "mzb" | "mzc" | "mzd" | "mze" | "mzg" | "mzh" | "mzi" | "mzj" | "mzk" | "mzl" | "mzm" | "mzn" | "mzo" | "mzp" | "mzq" | "mzr" | "mzs" | "mzt" | "mzu" | "mzv" | "mzw" | "mzx" | "mzy" | "mzz" | "naa" | "nab" | "nac" | "nae" | "naf" | "nag" | "naj" | "nak" | "nal" | "nam" | "nan" | "nao" | "nap" | "naq" | "nar" | "nas" | "nat" | "nau" | "nav" | "naw" | "nax" | "nay" | "naz" | "nba" | "nbb" | "nbc" | "nbd" | "nbe" | "nbg" | "nbh" | "nbi" | "nbj" | "nbk" | "nbl" | "nbm" | "nbn" | "nbo" | "nbp" | "nbq" | "nbr" | "nbs" | "nbt" | "nbu" | "nbv" | "nbw" | "nby" | "nca" | "ncb" | "ncc" | "ncd" | "nce" | "ncf" | "ncg" | "nch" | "nci" | "ncj" | "nck" | "ncl" | "ncm" | "ncn" | "nco" | "ncq" | "ncr" | "ncs" | "nct" | "ncu" | "ncx" | "ncz" | "nda" | "ndb" | "ndc" | "ndd" | "nde" | "ndf" | "ndg" | "ndh" | "ndi" | "ndj" | "ndk" | "ndl" | "ndm" | "ndn" | "ndo" | "ndp" | "ndq" | "ndr" | "nds" | "ndt" | "ndu" | "ndv" | "ndw" | "ndx" | "ndy" | "ndz" | "nea" | "neb" | "nec" | "ned" | "nee" | "nef" | "neg" | "neh" | "nei" | "nej" | "nek" | "nem" | "nen" | "neo" | "nep" | "neq" | "ner" | "nes" | "net" | "neu" | "nev" | "new" | "nex" | "ney" | "nez" | "nfa" | "nfd" | "nfl" | "nfr" | "nfu" | "nga" | "ngb" | "ngc" | "ngd" | "nge" | "ngg" | "ngh" | "ngi" | "ngj" | "ngk" | "ngl" | "ngm" | "ngn" | "ngp" | "ngq" | "ngr" | "ngs" | "ngt" | "ngu" | "ngv" | "ngw" | "ngx" | "ngy" | "ngz" | "nha" | "nhb" | "nhc" | "nhd" | "nhe" | "nhf" | "nhg" | "nhh" | "nhi" | "nhk" | "nhm" | "nhn" | "nho" | "nhp" | "nhq" | "nhr" | "nht" | "nhu" | "nhv" | "nhw" | "nhx" | "nhy" | "nhz" | "nia" | "nib" | "nid" | "nie" | "nif" | "nig" | "nih" | "nii" | "nij" | "nik" | "nil" | "nim" | "nin" | "nio" | "niq" | "nir" | "nis" | "nit" | "niu" | "niv" | "niw" | "nix" | "niy" | "niz" | "nja" | "njb" | "njd" | "njh" | "nji" | "njj" | "njl" | "njm" | "njn" | "njo" | "njr" | "njs" | "njt" | "nju" | "njx" | "njy" | "njz" | "nka" | "nkb" | "nkc" | "nkd" | "nke" | "nkf" | "nkg" | "nkh" | "nki" | "nkj" | "nkk" | "nkm" | "nkn" | "nko" | "nkp" | "nkq" | "nkr" | "nks" | "nkt" | "nku" | "nkv" | "nkw" | "nkx" | "nkz" | "nla" | "nlc" | "nld" | "nle" | "nlg" | "nli" | "nlj" | "nlk" | "nll" | "nlm" | "nlo" | "nlq" | "nlu" | "nlv" | "nlw" | "nlx" | "nly" | "nlz" | "nma" | "nmb" | "nmc" | "nmd" | "nme" | "nmf" | "nmg" | "nmh" | "nmi" | "nmj" | "nmk" | "nml" | "nmm" | "nmn" | "nmo" | "nmp" | "nmq" | "nmr" | "nms" | "nmt" | "nmu" | "nmv" | "nmw" | "nmx" | "nmy" | "nmz" | "nna" | "nnb" | "nnc" | "nnd" | "nne" | "nnf" | "nng" | "nnh" | "nni" | "nnj" | "nnk" | "nnl" | "nnm" | "nnn" | "nno" | "nnp" | "nnq" | "nnr" | "nnt" | "nnu" | "nnv" | "nnw" | "nny" | "nnz" | "noa" | "nob" | "noc" | "nod" | "noe" | "nof" | "nog" | "noh" | "noi" | "noj" | "nok" | "nol" | "nom" | "non" | "nop" | "noq" | "nor" | "nos" | "not" | "nou" | "nov" | "now" | "noy" | "noz" | "npa" | "npb" | "npg" | "nph" | "npi" | "npl" | "npn" | "npo" | "nps" | "npu" | "npx" | "npy" | "nqg" | "nqk" | "nql" | "nqm" | "nqn" | "nqo" | "nqq" | "nqt" | "nqy" | "nra" | "nrb" | "nrc" | "nre" | "nrf" | "nrg" | "nri" | "nrk" | "nrl" | "nrm" | "nrn" | "nrp" | "nrr" | "nrt" | "nru" | "nrx" | "nrz" | "nsa" | "nsb" | "nsc" | "nsd" | "nse" | "nsf" | "nsg" | "nsh" | "nsi" | "nsk" | "nsl" | "nsm" | "nsn" | "nso" | "nsp" | "nsq" | "nsr" | "nss" | "nst" | "nsu" | "nsv" | "nsw" | "nsx" | "nsy" | "nsz" | "ntd" | "nte" | "ntg" | "nti" | "ntj" | "ntk" | "ntm" | "nto" | "ntp" | "ntr" | "ntu" | "ntw" | "ntx" | "nty" | "ntz" | "nua" | "nuc" | "nud" | "nue" | "nuf" | "nug" | "nuh" | "nui" | "nuj" | "nuk" | "nul" | "num" | "nun" | "nuo" | "nup" | "nuq" | "nur" | "nus" | "nut" | "nuu" | "nuv" | "nuw" | "nux" | "nuy" | "nuz" | "nvh" | "nvm" | "nvo" | "nwa" | "nwb" | "nwc" | "nwe" | "nwg" | "nwi" | "nwm" | "nwo" | "nwr" | "nww" | "nwx" | "nwy" | "nxa" | "nxd" | "nxe" | "nxg" | "nxi" | "nxk" | "nxl" | "nxm" | "nxn" | "nxo" | "nxq" | "nxr" | "nxx" | "nya" | "nyb" | "nyc" | "nyd" | "nye" | "nyf" | "nyg" | "nyh" | "nyi" | "nyj" | "nyk" | "nyl" | "nym" | "nyn" | "nyo" | "nyp" | "nyq" | "nyr" | "nys" | "nyt" | "nyu" | "nyv" | "nyw" | "nyx" | "nyy" | "nza" | "nzb" | "nzd" | "nzi" | "nzk" | "nzm" | "nzs" | "nzu" | "nzy" | "nzz" | "oaa" | "oac" | "oar" | "oav" | "obi" | "obk" | "obl" | "obm" | "obo" | "obr" | "obt" | "obu" | "oca" | "och" | "oci" | "ocm" | "oco" | "ocu" | "oda" | "odk" | "odt" | "odu" | "ofo" | "ofs" | "ofu" | "ogb" | "ogc" | "oge" | "ogg" | "ogo" | "ogu" | "oht" | "ohu" | "oia" | "oie" | "oin" | "ojb" | "ojc" | "ojg" | "oji" | "ojp" | "ojs" | "ojv" | "ojw" | "oka" | "okb" | "okc" | "okd" | "oke" | "okg" | "okh" | "oki" | "okj" | "okk" | "okl" | "okm" | "okn" | "oko" | "okr" | "oks" | "oku" | "okv" | "okx" | "okz" | "ola" | "old" | "ole" | "olk" | "olm" | "olo" | "olr" | "olt" | "olu" | "oma" | "omb" | "omc" | "omg" | "omi" | "omk" | "oml" | "omn" | "omo" | "omp" | "omr" | "omt" | "omu" | "omw" | "omx" | "omy" | "ona" | "onb" | "one" | "ong" | "oni" | "onj" | "onk" | "onn" | "ono" | "onp" | "onr" | "ons" | "ont" | "onu" | "onw" | "onx" | "ood" | "oog" | "oon" | "oor" | "oos" | "opa" | "opk" | "opm" | "opo" | "opt" | "opy" | "ora" | "orc" | "ore" | "org" | "orh" | "ori" | "orm" | "orn" | "oro" | "orr" | "ors" | "ort" | "oru" | "orv" | "orw" | "orx" | "ory" | "orz" | "osa" | "osc" | "osi" | "osn" | "oso" | "osp" | "oss" | "ost" | "osu" | "osx" | "ota" | "otb" | "otd" | "ote" | "oti" | "otk" | "otl" | "otm" | "otn" | "otq" | "otr" | "ots" | "ott" | "otu" | "otw" | "otx" | "oty" | "otz" | "oua" | "oub" | "oue" | "oui" | "oum" | "ovd" | "owi" | "owl" | "oyb" | "oyd" | "oym" | "oyy" | "ozm" | "pab" | "pac" | "pad" | "pae" | "paf" | "pag" | "pah" | "pai" | "pak" | "pal" | "pam" | "pan" | "pao" | "pap" | "paq" | "par" | "pas" | "pau" | "pav" | "paw" | "pax" | "pay" | "paz" | "pbb" | "pbc" | "pbe" | "pbf" | "pbg" | "pbh" | "pbi" | "pbl" | "pbm" | "pbn" | "pbo" | "pbp" | "pbr" | "pbs" | "pbt" | "pbu" | "pbv" | "pby" | "pca" | "pcb" | "pcc" | "pcd" | "pce" | "pcf" | "pcg" | "pch" | "pci" | "pcj" | "pck" | "pcl" | "pcm" | "pcn" | "pcp" | "pcw" | "pda" | "pdc" | "pdi" | "pdn" | "pdo" | "pdt" | "pdu" | "pea" | "peb" | "ped" | "pee" | "pef" | "peg" | "peh" | "pei" | "pej" | "pek" | "pel" | "pem" | "peo" | "pep" | "peq" | "pes" | "pev" | "pex" | "pey" | "pez" | "pfa" | "pfe" | "pfl" | "pga" | "pgd" | "pgg" | "pgi" | "pgk" | "pgl" | "pgn" | "pgs" | "pgu" | "pgz" | "pha" | "phd" | "phg" | "phh" | "phj" | "phk" | "phl" | "phm" | "phn" | "pho" | "phq" | "phr" | "pht" | "phu" | "phv" | "phw" | "pia" | "pib" | "pic" | "pid" | "pie" | "pif" | "pig" | "pih" | "pij" | "pil" | "pim" | "pin" | "pio" | "pip" | "pir" | "pis" | "pit" | "piu" | "piv" | "piw" | "pix" | "piy" | "piz" | "pjt" | "pka" | "pkb" | "pkc" | "pkg" | "pkh" | "pkn" | "pko" | "pkp" | "pkr" | "pks" | "pkt" | "pku" | "pla" | "plb" | "plc" | "pld" | "ple" | "plg" | "plh" | "pli" | "plj" | "plk" | "pll" | "pln" | "plo" | "plq" | "plr" | "pls" | "plt" | "plu" | "plv" | "plw" | "ply" | "plz" | "pma" | "pmb" | "pmd" | "pme" | "pmf" | "pmh" | "pmi" | "pmj" | "pmk" | "pml" | "pmm" | "pmn" | "pmo" | "pmq" | "pmr" | "pms" | "pmt" | "pmw" | "pmx" | "pmy" | "pmz" | "pna" | "pnb" | "pnc" | "pnd" | "pne" | "png" | "pnh" | "pni" | "pnj" | "pnk" | "pnl" | "pnm" | "pnn" | "pno" | "pnp" | "pnq" | "pnr" | "pns" | "pnt" | "pnu" | "pnv" | "pnw" | "pnx" | "pny" | "pnz" | "poc" | "poe" | "pof" | "pog" | "poh" | "poi" | "pok" | "pol" | "pom" | "pon" | "poo" | "pop" | "poq" | "por" | "pos" | "pot" | "pov" | "pow" | "pox" | "poy" | "ppe" | "ppi" | "ppk" | "ppl" | "ppm" | "ppn" | "ppo" | "ppp" | "ppq" | "pps" | "ppt" | "ppu" | "pqa" | "pqm" | "prc" | "prd" | "pre" | "prf" | "prg" | "prh" | "pri" | "prk" | "prl" | "prm" | "prn" | "pro" | "prp" | "prq" | "prr" | "prs" | "prt" | "pru" | "prw" | "prx" | "prz" | "psa" | "psc" | "psd" | "pse" | "psg" | "psh" | "psi" | "psl" | "psm" | "psn" | "pso" | "psp" | "psq" | "psr" | "pss" | "pst" | "psu" | "psw" | "psy" | "pta" | "pth" | "pti" | "ptn" | "pto" | "ptp" | "ptq" | "ptr" | "ptt" | "ptu" | "ptv" | "ptw" | "pty" | "pua" | "pub" | "puc" | "pud" | "pue" | "puf" | "pug" | "pui" | "puj" | "pum" | "puo" | "pup" | "puq" | "pur" | "pus" | "put" | "puu" | "puw" | "pux" | "puy" | "pwa" | "pwb" | "pwg" | "pwi" | "pwm" | "pwn" | "pwo" | "pwr" | "pww" | "pxm" | "pye" | "pym" | "pyn" | "pys" | "pyu" | "pyx" | "pyy" | "pzh" | "pzn" | "qua" | "qub" | "quc" | "qud" | "que" | "quf" | "qug" | "quh" | "qui" | "quk" | "qul" | "qum" | "qun" | "qup" | "quq" | "qur" | "qus" | "quv" | "quw" | "qux" | "quy" | "quz" | "qva" | "qvc" | "qve" | "qvh" | "qvi" | "qvj" | "qvl" | "qvm" | "qvn" | "qvo" | "qvp" | "qvs" | "qvw" | "qvy" | "qvz" | "qwa" | "qwc" | "qwh" | "qwm" | "qws" | "qwt" | "qxa" | "qxc" | "qxh" | "qxl" | "qxn" | "qxo" | "qxp" | "qxq" | "qxr" | "qxs" | "qxt" | "qxu" | "qxw" | "qya" | "qyp" | "raa" | "rab" | "rac" | "rad" | "raf" | "rag" | "rah" | "rai" | "raj" | "rak" | "ral" | "ram" | "ran" | "rao" | "rap" | "raq" | "rar" | "ras" | "rat" | "rau" | "rav" | "raw" | "rax" | "ray" | "raz" | "rbb" | "rbk" | "rbl" | "rbp" | "rcf" | "rdb" | "rea" | "reb" | "ree" | "reg" | "rei" | "rej" | "rel" | "rem" | "ren" | "rer" | "res" | "ret" | "rey" | "rga" | "rge" | "rgk" | "rgn" | "rgr" | "rgs" | "rgu" | "rhg" | "rhp" | "ria" | "rib" | "rif" | "ril" | "rim" | "rin" | "rir" | "rit" | "riu" | "rjg" | "rji" | "rjs" | "rka" | "rkb" | "rkh" | "rki" | "rkm" | "rkt" | "rkw" | "rma" | "rmb" | "rmc" | "rmd" | "rme" | "rmf" | "rmg" | "rmh" | "rmi" | "rmk" | "rml" | "rmm" | "rmn" | "rmo" | "rmp" | "rmq" | "rms" | "rmt" | "rmu" | "rmv" | "rmw" | "rmx" | "rmy" | "rmz" | "rnb" | "rnd" | "rng" | "rnl" | "rnn" | "rnp" | "rnr" | "rnw" | "rob" | "roc" | "rod" | "roe" | "rof" | "rog" | "roh" | "rol" | "rom" | "ron" | "roo" | "rop" | "ror" | "rou" | "row" | "rpn" | "rpt" | "rri" | "rro" | "rrt" | "rsb" | "rsk" | "rsl" | "rsm" | "rsn" | "rtc" | "rth" | "rtm" | "rts" | "rtw" | "rub" | "ruc" | "rue" | "ruf" | "rug" | "ruh" | "rui" | "ruk" | "run" | "ruo" | "rup" | "ruq" | "rus" | "rut" | "ruu" | "ruy" | "ruz" | "rwa" | "rwk" | "rwl" | "rwm" | "rwo" | "rwr" | "rxd" | "rxw" | "ryn" | "rys" | "ryu" | "rzh" | "saa" | "sab" | "sac" | "sad" | "sae" | "saf" | "sag" | "sah" | "saj" | "sak" | "sam" | "san" | "sao" | "saq" | "sar" | "sas" | "sat" | "sau" | "sav" | "saw" | "sax" | "say" | "saz" | "sba" | "sbb" | "sbc" | "sbd" | "sbe" | "sbf" | "sbg" | "sbh" | "sbi" | "sbj" | "sbk" | "sbl" | "sbm" | "sbn" | "sbo" | "sbp" | "sbq" | "sbr" | "sbs" | "sbt" | "sbu" | "sbv" | "sbw" | "sbx" | "sby" | "sbz" | "scb" | "sce" | "scf" | "scg" | "sch" | "sci" | "sck" | "scl" | "scn" | "sco" | "scp" | "scq" | "scs" | "sct" | "scu" | "scv" | "scw" | "scx" | "sda" | "sdb" | "sdc" | "sde" | "sdf" | "sdg" | "sdh" | "sdj" | "sdk" | "sdl" | "sdn" | "sdo" | "sdp" | "sdq" | "sdr" | "sds" | "sdt" | "sdu" | "sdx" | "sdz" | "sea" | "seb" | "sec" | "sed" | "see" | "sef" | "seg" | "seh" | "sei" | "sej" | "sek" | "sel" | "sen" | "seo" | "sep" | "seq" | "ser" | "ses" | "set" | "seu" | "sev" | "sew" | "sey" | "sez" | "sfb" | "sfe" | "sfm" | "sfs" | "sfw" | "sga" | "sgb" | "sgc" | "sgd" | "sge" | "sgg" | "sgh" | "sgi" | "sgj" | "sgk" | "sgm" | "sgp" | "sgr" | "sgs" | "sgt" | "sgu" | "sgw" | "sgx" | "sgy" | "sgz" | "sha" | "shb" | "shc" | "shd" | "she" | "shg" | "shh" | "shi" | "shj" | "shk" | "shl" | "shm" | "shn" | "sho" | "shp" | "shq" | "shr" | "shs" | "sht" | "shu" | "shv" | "shw" | "shx" | "shy" | "shz" | "sia" | "sib" | "sid" | "sie" | "sif" | "sig" | "sih" | "sii" | "sij" | "sik" | "sil" | "sim" | "sin" | "sip" | "siq" | "sir" | "sis" | "siu" | "siv" | "siw" | "six" | "siy" | "siz" | "sja" | "sjb" | "sjd" | "sje" | "sjg" | "sjk" | "sjl" | "sjm" | "sjn" | "sjo" | "sjp" | "sjr" | "sjs" | "sjt" | "sju" | "sjw" | "ska" | "skb" | "skc" | "skd" | "ske" | "skf" | "skg" | "skh" | "ski" | "skj" | "skm" | "skn" | "sko" | "skp" | "skq" | "skr" | "sks" | "skt" | "sku" | "skv" | "skw" | "skx" | "sky" | "skz" | "slc" | "sld" | "sle" | "slf" | "slg" | "slh" | "sli" | "slj" | "slk" | "sll" | "slm" | "sln" | "slp" | "slq" | "slr" | "sls" | "slt" | "slu" | "slv" | "slw" | "slx" | "sly" | "slz" | "sma" | "smb" | "smc" | "sme" | "smf" | "smg" | "smh" | "smj" | "smk" | "sml" | "smm" | "smn" | "smo" | "smp" | "smq" | "smr" | "sms" | "smt" | "smu" | "smv" | "smw" | "smx" | "smy" | "smz" | "sna" | "snc" | "snd" | "sne" | "snf" | "sng" | "sni" | "snj" | "snk" | "snl" | "snm" | "snn" | "sno" | "snp" | "snq" | "snr" | "sns" | "snu" | "snv" | "snw" | "snx" | "sny" | "snz" | "soa" | "sob" | "soc" | "sod" | "soe" | "sog" | "soh" | "soi" | "soj" | "sok" | "sol" | "som" | "soo" | "sop" | "soq" | "sor" | "sos" | "sot" | "sou" | "sov" | "sow" | "sox" | "soy" | "soz" | "spa" | "spb" | "spc" | "spd" | "spe" | "spg" | "spi" | "spk" | "spl" | "spm" | "spn" | "spo" | "spp" | "spq" | "spr" | "sps" | "spt" | "spu" | "spv" | "spx" | "spy" | "sqa" | "sqh" | "sqi" | "sqk" | "sqm" | "sqn" | "sqo" | "sqq" | "sqr" | "sqs" | "sqt" | "squ" | "sqx" | "sra" | "srb" | "src" | "srd" | "sre" | "srf" | "srg" | "srh" | "sri" | "srk" | "srl" | "srm" | "srn" | "sro" | "srp" | "srq" | "srr" | "srs" | "srt" | "sru" | "srv" | "srw" | "srx" | "sry" | "srz" | "ssb" | "ssc" | "ssd" | "sse" | "ssf" | "ssg" | "ssh" | "ssi" | "ssj" | "ssk" | "ssl" | "ssm" | "ssn" | "sso" | "ssp" | "ssq" | "ssr" | "sss" | "sst" | "ssu" | "ssv" | "ssw" | "ssx" | "ssy" | "ssz" | "sta" | "stb" | "std" | "ste" | "stf" | "stg" | "sth" | "sti" | "stj" | "stk" | "stl" | "stm" | "stn" | "sto" | "stp" | "stq" | "str" | "sts" | "stt" | "stu" | "stv" | "stw" | "sty" | "sua" | "sub" | "suc" | "sue" | "sug" | "sui" | "suj" | "suk" | "sun" | "suo" | "suq" | "sur" | "sus" | "sut" | "suv" | "suw" | "sux" | "suy" | "suz" | "sva" | "svb" | "svc" | "sve" | "svk" | "svm" | "svs" | "svx" | "swa" | "swb" | "swc" | "swe" | "swf" | "swg" | "swh" | "swi" | "swj" | "swk" | "swl" | "swm" | "swn" | "swo" | "swp" | "swq" | "swr" | "sws" | "swt" | "swu" | "swv" | "sww" | "swx" | "swy" | "sxb" | "sxc" | "sxe" | "sxg" | "sxk" | "sxl" | "sxm" | "sxn" | "sxo" | "sxr" | "sxs" | "sxu" | "sxw" | "sya" | "syb" | "syc" | "syi" | "syk" | "syl" | "sym" | "syn" | "syo" | "syr" | "sys" | "syw" | "syx" | "syy" | "sza" | "szb" | "szc" | "szd" | "sze" | "szg" | "szl" | "szn" | "szp" | "szs" | "szv" | "szw" | "szy" | "taa" | "tab" | "tac" | "tad" | "tae" | "taf" | "tag" | "tah" | "taj" | "tak" | "tal" | "tam" | "tan" | "tao" | "tap" | "taq" | "tar" | "tas" | "tat" | "tau" | "tav" | "taw" | "tax" | "tay" | "taz" | "tba" | "tbc" | "tbd" | "tbe" | "tbf" | "tbg" | "tbh" | "tbi" | "tbj" | "tbk" | "tbl" | "tbm" | "tbn" | "tbo" | "tbp" | "tbr" | "tbs" | "tbt" | "tbu" | "tbv" | "tbw" | "tbx" | "tby" | "tbz" | "tca" | "tcb" | "tcc" | "tcd" | "tce" | "tcf" | "tcg" | "tch" | "tci" | "tck" | "tcl" | "tcm" | "tcn" | "tco" | "tcp" | "tcq" | "tcs" | "tct" | "tcu" | "tcw" | "tcx" | "tcy" | "tcz" | "tda" | "tdb" | "tdc" | "tdd" | "tde" | "tdf" | "tdg" | "tdh" | "tdi" | "tdj" | "tdk" | "tdl" | "tdm" | "tdn" | "tdo" | "tdq" | "tdr" | "tds" | "tdt" | "tdv" | "tdx" | "tdy" | "tea" | "teb" | "tec" | "ted" | "tee" | "tef" | "teg" | "teh" | "tei" | "tek" | "tel" | "tem" | "ten" | "teo" | "tep" | "teq" | "ter" | "tes" | "tet" | "teu" | "tev" | "tew" | "tex" | "tey" | "tez" | "tfi" | "tfn" | "tfo" | "tfr" | "tft" | "tga" | "tgb" | "tgc" | "tgd" | "tge" | "tgf" | "tgh" | "tgi" | "tgj" | "tgk" | "tgl" | "tgn" | "tgo" | "tgp" | "tgq" | "tgr" | "tgs" | "tgt" | "tgu" | "tgv" | "tgw" | "tgx" | "tgy" | "tgz" | "tha" | "thd" | "the" | "thf" | "thh" | "thi" | "thk" | "thl" | "thm" | "thn" | "thp" | "thq" | "thr" | "ths" | "tht" | "thu" | "thv" | "thy" | "thz" | "tia" | "tic" | "tif" | "tig" | "tih" | "tii" | "tij" | "tik" | "til" | "tim" | "tin" | "tio" | "tip" | "tiq" | "tir" | "tis" | "tit" | "tiu" | "tiv" | "tiw" | "tix" | "tiy" | "tiz" | "tja" | "tjg" | "tji" | "tjj" | "tjl" | "tjm" | "tjn" | "tjo" | "tjp" | "tjs" | "tju" | "tjw" | "tka" | "tkb" | "tkd" | "tke" | "tkf" | "tkg" | "tkl" | "tkm" | "tkn" | "tkp" | "tkq" | "tkr" | "tks" | "tkt" | "tku" | "tkv" | "tkw" | "tkx" | "tkz" | "tla" | "tlb" | "tlc" | "tld" | "tlf" | "tlg" | "tlh" | "tli" | "tlj" | "tlk" | "tll" | "tlm" | "tln" | "tlo" | "tlp" | "tlq" | "tlr" | "tls" | "tlt" | "tlu" | "tlv" | "tlx" | "tly" | "tma" | "tmb" | "tmc" | "tmd" | "tme" | "tmf" | "tmg" | "tmh" | "tmi" | "tmj" | "tmk" | "tml" | "tmm" | "tmn" | "tmo" | "tmq" | "tmr" | "tms" | "tmt" | "tmu" | "tmv" | "tmw" | "tmy" | "tmz" | "tna" | "tnb" | "tnc" | "tnd" | "tng" | "tnh" | "tni" | "tnk" | "tnl" | "tnm" | "tnn" | "tno" | "tnp" | "tnq" | "tnr" | "tns" | "tnt" | "tnu" | "tnv" | "tnw" | "tnx" | "tny" | "tnz" | "tob" | "toc" | "tod" | "tof" | "tog" | "toh" | "toi" | "toj" | "tok" | "tol" | "tom" | "ton" | "too" | "top" | "toq" | "tor" | "tos" | "tou" | "tov" | "tow" | "tox" | "toy" | "toz" | "tpa" | "tpc" | "tpe" | "tpf" | "tpg" | "tpi" | "tpj" | "tpk" | "tpl" | "tpm" | "tpn" | "tpo" | "tpp" | "tpq" | "tpr" | "tpt" | "tpu" | "tpv" | "tpw" | "tpx" | "tpy" | "tpz" | "tqb" | "tql" | "tqm" | "tqn" | "tqo" | "tqp" | "tqq" | "tqr" | "tqt" | "tqu" | "tqw" | "tra" | "trb" | "trc" | "trd" | "tre" | "trf" | "trg" | "trh" | "tri" | "trj" | "trl" | "trm" | "trn" | "tro" | "trp" | "trq" | "trr" | "trs" | "trt" | "tru" | "trv" | "trw" | "trx" | "try" | "trz" | "tsa" | "tsb" | "tsc" | "tsd" | "tse" | "tsg" | "tsh" | "tsi" | "tsj" | "tsk" | "tsl" | "tsm" | "tsn" | "tso" | "tsp" | "tsq" | "tsr" | "tss" | "tst" | "tsu" | "tsv" | "tsw" | "tsx" | "tsy" | "tsz" | "tta" | "ttb" | "ttc" | "ttd" | "tte" | "ttf" | "ttg" | "tth" | "tti" | "ttj" | "ttk" | "ttl" | "ttm" | "ttn" | "tto" | "ttp" | "ttq" | "ttr" | "tts" | "ttt" | "ttu" | "ttv" | "ttw" | "tty" | "ttz" | "tua" | "tub" | "tuc" | "tud" | "tue" | "tuf" | "tug" | "tuh" | "tui" | "tuj" | "tuk" | "tul" | "tum" | "tun" | "tuo" | "tuq" | "tur" | "tus" | "tuu" | "tuv" | "tux" | "tuy" | "tuz" | "tva" | "tvd" | "tve" | "tvk" | "tvl" | "tvm" | "tvn" | "tvo" | "tvs" | "tvt" | "tvu" | "tvw" | "tvx" | "tvy" | "twa" | "twb" | "twc" | "twd" | "twe" | "twf" | "twg" | "twh" | "twi" | "twl" | "twm" | "twn" | "two" | "twp" | "twq" | "twr" | "twt" | "twu" | "tww" | "twx" | "twy" | "txa" | "txb" | "txc" | "txe" | "txg" | "txh" | "txi" | "txj" | "txm" | "txn" | "txo" | "txq" | "txr" | "txs" | "txt" | "txu" | "txx" | "txy" | "tya" | "tye" | "tyh" | "tyi" | "tyj" | "tyl" | "tyn" | "typ" | "tyr" | "tys" | "tyt" | "tyu" | "tyv" | "tyx" | "tyy" | "tyz" | "tza" | "tzh" | "tzj" | "tzl" | "tzm" | "tzn" | "tzo" | "tzx" | "uam" | "uan" | "uar" | "uba" | "ubi" | "ubl" | "ubr" | "ubu" | "uby" | "uda" | "ude" | "udg" | "udi" | "udj" | "udl" | "udm" | "udu" | "ues" | "ufi" | "uga" | "ugb" | "uge" | "ugh" | "ugn" | "ugo" | "ugy" | "uha" | "uhn" | "uig" | "uis" | "uiv" | "uji" | "uka" | "ukg" | "ukh" | "uki" | "ukk" | "ukl" | "ukp" | "ukq" | "ukr" | "uks" | "uku" | "ukv" | "ukw" | "uky" | "ula" | "ulb" | "ulc" | "ule" | "ulf" | "uli" | "ulk" | "ull" | "ulm" | "uln" | "ulu" | "ulw" | "uma" | "umb" | "umc" | "umd" | "umg" | "umi" | "umm" | "umn" | "umo" | "ump" | "umr" | "ums" | "umu" | "una" | "und" | "une" | "ung" | "uni" | "unk" | "unm" | "unn" | "unr" | "unu" | "unx" | "unz" | "uon" | "upi" | "upv" | "ura" | "urb" | "urc" | "urd" | "ure" | "urf" | "urg" | "urh" | "uri" | "urk" | "url" | "urm" | "urn" | "uro" | "urp" | "urr" | "urt" | "uru" | "urv" | "urw" | "urx" | "ury" | "urz" | "usa" | "ush" | "usi" | "usk" | "usp" | "uss" | "usu" | "uta" | "ute" | "uth" | "utp" | "utr" | "utu" | "uum" | "uur" | "uuu" | "uve" | "uvh" | "uvl" | "uwa" | "uya" | "uzb" | "uzn" | "uzs" | "vaa" | "vae" | "vaf" | "vag" | "vah" | "vai" | "vaj" | "val" | "vam" | "van" | "vao" | "vap" | "var" | "vas" | "vau" | "vav" | "vay" | "vbb" | "vbk" | "vec" | "ved" | "vel" | "vem" | "ven" | "veo" | "vep" | "ver" | "vgr" | "vgt" | "vic" | "vid" | "vie" | "vif" | "vig" | "vil" | "vin" | "vis" | "vit" | "viv" | "vka" | "vkj" | "vkk" | "vkl" | "vkm" | "vkn" | "vko" | "vkp" | "vkt" | "vku" | "vkz" | "vlp" | "vls" | "vma" | "vmb" | "vmc" | "vmd" | "vme" | "vmf" | "vmg" | "vmh" | "vmi" | "vmj" | "vmk" | "vml" | "vmm" | "vmp" | "vmq" | "vmr" | "vms" | "vmu" | "vmv" | "vmw" | "vmx" | "vmy" | "vmz" | "vnk" | "vnm" | "vnp" | "vol" | "vor" | "vot" | "vra" | "vro" | "vrs" | "vrt" | "vsi" | "vsl" | "vsv" | "vto" | "vum" | "vun" | "vut" | "vwa" | "waa" | "wab" | "wac" | "wad" | "wae" | "waf" | "wag" | "wah" | "wai" | "waj" | "wal" | "wam" | "wan" | "wao" | "wap" | "waq" | "war" | "was" | "wat" | "wau" | "wav" | "waw" | "wax" | "way" | "waz" | "wba" | "wbb" | "wbe" | "wbf" | "wbh" | "wbi" | "wbj" | "wbk" | "wbl" | "wbm" | "wbp" | "wbq" | "wbr" | "wbs" | "wbt" | "wbv" | "wbw" | "wca" | "wci" | "wdd" | "wdg" | "wdj" | "wdk" | "wdt" | "wdu" | "wdy" | "wea" | "wec" | "wed" | "weg" | "weh" | "wei" | "wem" | "weo" | "wep" | "wer" | "wes" | "wet" | "weu" | "wew" | "wfg" | "wga" | "wgb" | "wgg" | "wgi" | "wgo" | "wgu" | "wgy" | "wha" | "whg" | "whk" | "whu" | "wib" | "wic" | "wie" | "wif" | "wig" | "wih" | "wii" | "wij" | "wik" | "wil" | "wim" | "win" | "wir" | "wiu" | "wiv" | "wiy" | "wja" | "wji" | "wka" | "wkb" | "wkd" | "wkl" | "wkr" | "wku" | "wkw" | "wky" | "wla" | "wlc" | "wle" | "wlg" | "wlh" | "wli" | "wlk" | "wll" | "wlm" | "wln" | "wlo" | "wlr" | "wls" | "wlu" | "wlv" | "wlw" | "wlx" | "wly" | "wma" | "wmb" | "wmc" | "wmd" | "wme" | "wmg" | "wmh" | "wmi" | "wmm" | "wmn" | "wmo" | "wms" | "wmt" | "wmw" | "wmx" | "wnb" | "wnc" | "wnd" | "wne" | "wng" | "wni" | "wnk" | "wnm" | "wnn" | "wno" | "wnp" | "wnu" | "wnw" | "wny" | "woa" | "wob" | "woc" | "wod" | "woe" | "wof" | "wog" | "woi" | "wok" | "wol" | "wom" | "won" | "woo" | "wor" | "wos" | "wow" | "woy" | "wpc" | "wrb" | "wrg" | "wrh" | "wri" | "wrk" | "wrl" | "wrm" | "wrn" | "wro" | "wrp" | "wrr" | "wrs" | "wru" | "wrv" | "wrw" | "wrx" | "wry" | "wrz" | "wsa" | "wsg" | "wsi" | "wsk" | "wsr" | "wss" | "wsu" | "wsv" | "wtf" | "wth" | "wti" | "wtk" | "wtm" | "wtw" | "wua" | "wub" | "wud" | "wuh" | "wul" | "wum" | "wun" | "wur" | "wut" | "wuu" | "wuv" | "wux" | "wuy" | "wwa" | "wwb" | "wwo" | "wwr" | "www" | "wxa" | "wxw" | "wyb" | "wyi" | "wym" | "wyn" | "wyr" | "wyy" | "xaa" | "xab" | "xac" | "xad" | "xae" | "xag" | "xai" | "xaj" | "xak" | "xal" | "xam" | "xan" | "xao" | "xap" | "xaq" | "xar" | "xas" | "xat" | "xau" | "xav" | "xaw" | "xay" | "xbb" | "xbc" | "xbd" | "xbe" | "xbg" | "xbi" | "xbj" | "xbm" | "xbn" | "xbo" | "xbp" | "xbr" | "xbw" | "xby" | "xcb" | "xcc" | "xce" | "xcg" | "xch" | "xcl" | "xcm" | "xcn" | "xco" | "xcr" | "xct" | "xcu" | "xcv" | "xcw" | "xcy" | "xda" | "xdc" | "xdk" | "xdm" | "xdo" | "xdq" | "xdy" | "xeb" | "xed" | "xeg" | "xel" | "xem" | "xep" | "xer" | "xes" | "xet" | "xeu" | "xfa" | "xga" | "xgb" | "xgd" | "xgf" | "xgg" | "xgi" | "xgl" | "xgm" | "xgr" | "xgu" | "xgw" | "xha" | "xhc" | "xhd" | "xhe" | "xhm" | "xho" | "xhr" | "xht" | "xhu" | "xhv" | "xib" | "xii" | "xil" | "xin" | "xir" | "xis" | "xiv" | "xiy" | "xjb" | "xjt" | "xka" | "xkb" | "xkc" | "xkd" | "xke" | "xkf" | "xkg" | "xki" | "xkj" | "xkk" | "xkl" | "xkn" | "xko" | "xkp" | "xkq" | "xkr" | "xks" | "xkt" | "xku" | "xkv" | "xkw" | "xkx" | "xky" | "xkz" | "xla" | "xlb" | "xlc" | "xld" | "xle" | "xlg" | "xli" | "xln" | "xlo" | "xlp" | "xls" | "xlu" | "xly" | "xma" | "xmb" | "xmc" | "xmd" | "xme" | "xmf" | "xmg" | "xmh" | "xmj" | "xmk" | "xml" | "xmm" | "xmn" | "xmo" | "xmp" | "xmq" | "xmr" | "xms" | "xmt" | "xmu" | "xmv" | "xmw" | "xmx" | "xmy" | "xmz" | "xna" | "xnb" | "xng" | "xnh" | "xni" | "xnj" | "xnk" | "xnm" | "xnn" | "xno" | "xnq" | "xnr" | "xns" | "xnt" | "xnu" | "xny" | "xnz" | "xoc" | "xod" | "xog" | "xoi" | "xok" | "xom" | "xon" | "xoo" | "xop" | "xor" | "xow" | "xpa" | "xpb" | "xpc" | "xpd" | "xpe" | "xpf" | "xpg" | "xph" | "xpi" | "xpj" | "xpk" | "xpl" | "xpm" | "xpn" | "xpo" | "xpp" | "xpq" | "xpr" | "xps" | "xpt" | "xpu" | "xpv" | "xpw" | "xpx" | "xpy" | "xpz" | "xqa" | "xqt" | "xra" | "xrb" | "xrd" | "xre" | "xrg" | "xri" | "xrm" | "xrn" | "xrr" | "xrt" | "xru" | "xrw" | "xsa" | "xsb" | "xsc" | "xsd" | "xse" | "xsh" | "xsi" | "xsj" | "xsl" | "xsm" | "xsn" | "xso" | "xsp" | "xsq" | "xsr" | "xss" | "xsu" | "xsv" | "xsy" | "xta" | "xtb" | "xtc" | "xtd" | "xte" | "xtg" | "xth" | "xti" | "xtj" | "xtl" | "xtm" | "xtn" | "xto" | "xtp" | "xtq" | "xtr" | "xts" | "xtt" | "xtu" | "xtv" | "xtw" | "xty" | "xua" | "xub" | "xud" | "xug" | "xuj" | "xul" | "xum" | "xun" | "xuo" | "xup" | "xur" | "xut" | "xuu" | "xve" | "xvi" | "xvn" | "xvo" | "xvs" | "xwa" | "xwc" | "xwd" | "xwe" | "xwg" | "xwj" | "xwk" | "xwl" | "xwo" | "xwr" | "xwt" | "xww" | "xxb" | "xxk" | "xxm" | "xxr" | "xxt" | "xya" | "xyb" | "xyj" | "xyk" | "xyl" | "xyt" | "xyy" | "xzh" | "xzm" | "xzp" | "yaa" | "yab" | "yac" | "yad" | "yae" | "yaf" | "yag" | "yah" | "yai" | "yaj" | "yak" | "yal" | "yam" | "yan" | "yao" | "yap" | "yaq" | "yar" | "yas" | "yat" | "yau" | "yav" | "yaw" | "yax" | "yay" | "yaz" | "yba" | "ybb" | "ybe" | "ybh" | "ybi" | "ybj" | "ybk" | "ybl" | "ybm" | "ybn" | "ybo" | "ybx" | "yby" | "ych" | "ycl" | "ycn" | "ycp" | "yda" | "ydd" | "yde" | "ydg" | "ydk" | "yea" | "yec" | "yee" | "yei" | "yej" | "yel" | "yer" | "yes" | "yet" | "yeu" | "yev" | "yey" | "yga" | "ygi" | "ygl" | "ygm" | "ygp" | "ygr" | "ygs" | "ygu" | "ygw" | "yha" | "yhd" | "yhl" | "yhs" | "yia" | "yid" | "yif" | "yig" | "yih" | "yii" | "yij" | "yik" | "yil" | "yim" | "yin" | "yip" | "yiq" | "yir" | "yis" | "yit" | "yiu" | "yiv" | "yix" | "yiz" | "yka" | "ykg" | "yki" | "ykk" | "ykl" | "ykm" | "ykn" | "yko" | "ykr" | "ykt" | "yku" | "yky" | "yla" | "ylb" | "yle" | "ylg" | "yli" | "yll" | "ylm" | "yln" | "ylo" | "ylr" | "ylu" | "yly" | "ymb" | "ymc" | "ymd" | "yme" | "ymg" | "ymh" | "ymi" | "ymk" | "yml" | "ymm" | "ymn" | "ymo" | "ymp" | "ymq" | "ymr" | "yms" | "ymx" | "ymz" | "yna" | "ynd" | "yne" | "yng" | "ynk" | "ynl" | "ynn" | "yno" | "ynq" | "yns" | "ynu" | "yob" | "yog" | "yoi" | "yok" | "yol" | "yom" | "yon" | "yor" | "yot" | "yox" | "yoy" | "ypa" | "ypb" | "ypg" | "yph" | "ypm" | "ypn" | "ypo" | "ypp" | "ypz" | "yra" | "yrb" | "yre" | "yrk" | "yrl" | "yrm" | "yrn" | "yro" | "yrs" | "yrw" | "yry" | "ysc" | "ysd" | "ysg" | "ysl" | "ysm" | "ysn" | "yso" | "ysp" | "ysr" | "yss" | "ysy" | "yta" | "ytl" | "ytp" | "ytw" | "yty" | "yua" | "yub" | "yuc" | "yud" | "yue" | "yuf" | "yug" | "yui" | "yuj" | "yuk" | "yul" | "yum" | "yun" | "yup" | "yuq" | "yur" | "yut" | "yuw" | "yux" | "yuy" | "yuz" | "yva" | "yvt" | "ywa" | "ywg" | "ywl" | "ywn" | "ywq" | "ywr" | "ywt" | "ywu" | "yww" | "yxa" | "yxg" | "yxl" | "yxm" | "yxu" | "yxy" | "yyr" | "yyu" | "yyz" | "yzg" | "yzk" | "zaa" | "zab" | "zac" | "zad" | "zae" | "zaf" | "zag" | "zah" | "zai" | "zaj" | "zak" | "zal" | "zam" | "zao" | "zap" | "zaq" | "zar" | "zas" | "zat" | "zau" | "zav" | "zaw" | "zax" | "zay" | "zaz" | "zba" | "zbc" | "zbe" | "zbl" | "zbt" | "zbu" | "zbw" | "zca" | "zcd" | "zch" | "zdj" | "zea" | "zeg" | "zeh" | "zen" | "zga" | "zgb" | "zgh" | "zgm" | "zgn" | "zgr" | "zha" | "zhb" | "zhd" | "zhi" | "zhn" | "zho" | "zhw" | "zia" | "zib" | "zik" | "zil" | "zim" | "zin" | "ziw" | "ziz" | "zka" | "zkb" | "zkd" | "zkg" | "zkh" | "zkk" | "zkn" | "zko" | "zkp" | "zkr" | "zkt" | "zku" | "zkv" | "zkz" | "zla" | "zlj" | "zlm" | "zln" | "zlq" | "zma" | "zmb" | "zmc" | "zmd" | "zme" | "zmf" | "zmg" | "zmh" | "zmi" | "zmj" | "zmk" | "zml" | "zmm" | "zmn" | "zmo" | "zmp" | "zmq" | "zmr" | "zms" | "zmt" | "zmu" | "zmv" | "zmw" | "zmx" | "zmy" | "zmz" | "zna" | "zne" | "zng" | "znk" | "zns" | "zoc" | "zoh" | "zom" | "zoo" | "zoq" | "zor" | "zos" | "zpa" | "zpb" | "zpc" | "zpd" | "zpe" | "zpf" | "zpg" | "zph" | "zpi" | "zpj" | "zpk" | "zpl" | "zpm" | "zpn" | "zpo" | "zpp" | "zpq" | "zpr" | "zps" | "zpt" | "zpu" | "zpv" | "zpw" | "zpx" | "zpy" | "zpz" | "zqe" | "zra" | "zrg" | "zrn" | "zro" | "zrp" | "zrs" | "zsa" | "zsk" | "zsl" | "zsm" | "zsr" | "zsu" | "zte" | "ztg" | "ztl" | "ztm" | "ztn" | "ztp" | "ztq" | "zts" | "ztt" | "ztu" | "ztx" | "zty" | "zua" | "zuh" | "zul" | "zum" | "zun" | "zuy" | "zwa" | "zxx" | "zyb" | "zyg" | "zyj" | "zyn" | "zyp" | "zza" | "zzj";
|
|
3375
|
+
relationship_to_developer: components["schemas"]["RelationshipToDeveloper-Input"];
|
|
3376
|
+
};
|
|
3377
|
+
/** Identity */
|
|
3378
|
+
"Identity-Output": {
|
|
3379
|
+
/**
|
|
3380
|
+
* Name
|
|
3381
|
+
* @description A human friendly name of the agent.
|
|
3382
|
+
*/
|
|
3383
|
+
name: string;
|
|
3384
|
+
/**
|
|
3385
|
+
* Role
|
|
3386
|
+
* @description The agent's role within the organization.
|
|
3387
|
+
*/
|
|
3388
|
+
role: string;
|
|
3389
|
+
/**
|
|
3390
|
+
* Developed By
|
|
3391
|
+
* @description A human-friendly name of the organization that developed this agent.
|
|
3392
|
+
*/
|
|
3393
|
+
developed_by: string;
|
|
3394
|
+
/**
|
|
3395
|
+
* Default Spoken Language
|
|
3396
|
+
* @description The agent's primary language. This must be specified in the ISO 639-3 format.
|
|
3397
|
+
*/
|
|
3398
|
+
default_spoken_language: string;
|
|
3399
|
+
/** @description Relationship of the agent to its developer. */
|
|
3400
|
+
relationship_to_developer: components["schemas"]["RelationshipToDeveloper-Output"];
|
|
3401
|
+
};
|
|
3201
3402
|
/**
|
|
3202
3403
|
* InCondition
|
|
3203
3404
|
* @description Requires that the attribute value in the request to be one of the specified values.
|
|
@@ -3217,6 +3418,20 @@ export interface components {
|
|
|
3217
3418
|
/** @enum {string} */
|
|
3218
3419
|
InitialMessageType: "user-message" | "external-event" | "skip";
|
|
3219
3420
|
/** InjectInstructionAction */
|
|
3421
|
+
"InjectInstructionAction-Input": {
|
|
3422
|
+
/**
|
|
3423
|
+
* @description discriminator enum property added by openapi-typescript
|
|
3424
|
+
* @enum {string}
|
|
3425
|
+
*/
|
|
3426
|
+
type: "inject-instruction";
|
|
3427
|
+
instruction: components["schemas"]["amigo_lib__pydantic__base_model__StrippedNonemptyString__1"];
|
|
3428
|
+
/**
|
|
3429
|
+
* Overrides Instructions
|
|
3430
|
+
* @description During injection, whether the original instruction of the state is overriden with this instruction.
|
|
3431
|
+
*/
|
|
3432
|
+
overrides_instructions: boolean;
|
|
3433
|
+
};
|
|
3434
|
+
/** InjectInstructionAction */
|
|
3220
3435
|
"InjectInstructionAction-Output": {
|
|
3221
3436
|
/**
|
|
3222
3437
|
* @description discriminator enum property added by openapi-typescript
|
|
@@ -3231,6 +3446,36 @@ export interface components {
|
|
|
3231
3446
|
*/
|
|
3232
3447
|
overrides_instructions: boolean;
|
|
3233
3448
|
};
|
|
3449
|
+
/** Input */
|
|
3450
|
+
Input: {
|
|
3451
|
+
/**
|
|
3452
|
+
* Input Parameters
|
|
3453
|
+
* @description The input parameters for the tool invocation.
|
|
3454
|
+
*/
|
|
3455
|
+
input_parameters: {
|
|
3456
|
+
[key: string]: unknown;
|
|
3457
|
+
};
|
|
3458
|
+
/**
|
|
3459
|
+
* Invocation Mode
|
|
3460
|
+
* @description The mode of invocation.
|
|
3461
|
+
* @enum {string}
|
|
3462
|
+
*/
|
|
3463
|
+
invocation_mode: "regular" | "conversation-simulation";
|
|
3464
|
+
/**
|
|
3465
|
+
* Nonsensitive User Variables
|
|
3466
|
+
* @description The nonsensitive user variables to provide to the tool during invocation.
|
|
3467
|
+
*/
|
|
3468
|
+
nonsensitive_user_variables: {
|
|
3469
|
+
[key: string]: string;
|
|
3470
|
+
};
|
|
3471
|
+
/**
|
|
3472
|
+
* Sensitive User Variables
|
|
3473
|
+
* @description The sensitive user variables to provide to the tool during invocation.
|
|
3474
|
+
*/
|
|
3475
|
+
sensitive_user_variables: {
|
|
3476
|
+
[key: string]: string;
|
|
3477
|
+
};
|
|
3478
|
+
};
|
|
3234
3479
|
/** InsertRequest */
|
|
3235
3480
|
InsertRequest: {
|
|
3236
3481
|
/** @description The name of the environment variable to insert. */
|
|
@@ -3314,8 +3559,36 @@ export interface components {
|
|
|
3314
3559
|
*/
|
|
3315
3560
|
type: "jumpback";
|
|
3316
3561
|
};
|
|
3562
|
+
/** LLMConfig */
|
|
3563
|
+
"LLMConfig-Input": {
|
|
3564
|
+
llm_name: components["schemas"]["LLMType"];
|
|
3565
|
+
/**
|
|
3566
|
+
* Params
|
|
3567
|
+
* @description LLM-specific parameters to use.
|
|
3568
|
+
* @default {}
|
|
3569
|
+
*/
|
|
3570
|
+
params?: {
|
|
3571
|
+
[key: string]: unknown;
|
|
3572
|
+
};
|
|
3573
|
+
};
|
|
3574
|
+
/** LLMConfig */
|
|
3575
|
+
"LLMConfig-Output": {
|
|
3576
|
+
/**
|
|
3577
|
+
* Llm Name
|
|
3578
|
+
* @description The name of the LLM to use.
|
|
3579
|
+
*/
|
|
3580
|
+
llm_name: string;
|
|
3581
|
+
/**
|
|
3582
|
+
* Params
|
|
3583
|
+
* @description LLM-specific parameters to use.
|
|
3584
|
+
* @default {}
|
|
3585
|
+
*/
|
|
3586
|
+
params?: {
|
|
3587
|
+
[key: string]: unknown;
|
|
3588
|
+
};
|
|
3589
|
+
};
|
|
3317
3590
|
/** @enum {string} */
|
|
3318
|
-
LLMType: "azure_gpt-4.1-2025-04-14" | "azure_gpt-4.1-mini-2025-04-14" | "azure_gpt-5-2025-08-07" | "azure_gpt-5-
|
|
3591
|
+
LLMType: "azure_gpt-4.1-2025-04-14" | "openai_gpt-4.1-2025-04-14" | "azure_gpt-4.1-mini-2025-04-14" | "openai_gpt-4.1-mini-2025-04-14" | "azure_gpt-5-nano-2025-08-07" | "azure_gpt-5.1-2025-11-13" | "openai_gpt-5.1-2025-11-13" | "azure_gpt-5.2-2025-12-11" | "openai_gpt-5-nano-2025-08-07" | "openai_gpt-5.2-2025-12-11" | "google_claude-sonnet-4-5@20250929" | "aws_claude-sonnet-4-5-20250929" | "google_gemini-2.5-pro" | "google_gemini-2.5-flash";
|
|
3319
3592
|
/** MP3UserMessageAudioConfig */
|
|
3320
3593
|
MP3UserMessageAudioConfig: {
|
|
3321
3594
|
/**
|
|
@@ -3350,13 +3623,6 @@ export interface components {
|
|
|
3350
3623
|
* @description The identifier of the memory.
|
|
3351
3624
|
*/
|
|
3352
3625
|
id: string;
|
|
3353
|
-
/**
|
|
3354
|
-
* Timestamp
|
|
3355
|
-
* Format: date-time
|
|
3356
|
-
* @deprecated
|
|
3357
|
-
* @description The time at which this memory was created.
|
|
3358
|
-
*/
|
|
3359
|
-
timestamp: string;
|
|
3360
3626
|
/**
|
|
3361
3627
|
* Created At
|
|
3362
3628
|
* Format: date-time
|
|
@@ -3393,13 +3659,6 @@ export interface components {
|
|
|
3393
3659
|
* @description The identifier of the interaction.
|
|
3394
3660
|
*/
|
|
3395
3661
|
interaction_id: string;
|
|
3396
|
-
/**
|
|
3397
|
-
* Timestamp
|
|
3398
|
-
* Format: date-time
|
|
3399
|
-
* @deprecated
|
|
3400
|
-
* @description The time at which this message was sent.
|
|
3401
|
-
*/
|
|
3402
|
-
timestamp: string;
|
|
3403
3662
|
/**
|
|
3404
3663
|
* Created At
|
|
3405
3664
|
* Format: date-time
|
|
@@ -3469,7 +3728,7 @@ export interface components {
|
|
|
3469
3728
|
* Tags
|
|
3470
3729
|
* @description The tags of the metric.
|
|
3471
3730
|
*/
|
|
3472
|
-
tags: components["schemas"]["
|
|
3731
|
+
tags: components["schemas"]["Tag"][];
|
|
3473
3732
|
/** @description The user who created the metric. */
|
|
3474
3733
|
creator: components["schemas"]["amigo_lib__mongo__collections__metric__Metric__UserInfo"];
|
|
3475
3734
|
/** @description The user who last updated the metric. */
|
|
@@ -3520,13 +3779,6 @@ export interface components {
|
|
|
3520
3779
|
*/
|
|
3521
3780
|
justification: string;
|
|
3522
3781
|
source: components["schemas"]["EvaluationSource"];
|
|
3523
|
-
/**
|
|
3524
|
-
* Timestamp
|
|
3525
|
-
* Format: date-time
|
|
3526
|
-
* @deprecated
|
|
3527
|
-
* @description The time at which the metric evaluation result was created.
|
|
3528
|
-
*/
|
|
3529
|
-
timestamp: string;
|
|
3530
3782
|
};
|
|
3531
3783
|
/** MetricInstance */
|
|
3532
3784
|
MetricInstance: {
|
|
@@ -3574,7 +3826,7 @@ export interface components {
|
|
|
3574
3826
|
* Tags
|
|
3575
3827
|
* @description The tags of the metric.
|
|
3576
3828
|
*/
|
|
3577
|
-
tags: components["schemas"]["
|
|
3829
|
+
tags: components["schemas"]["Tag"][];
|
|
3578
3830
|
/** @description The user who created the metric. */
|
|
3579
3831
|
creator: components["schemas"]["amigo_lib__mongo__collections__metric__Metric__UserInfo"];
|
|
3580
3832
|
/** @description The user who last updated the metric. */
|
|
@@ -3866,6 +4118,13 @@ export interface components {
|
|
|
3866
4118
|
* @description The duration taken to receive the tool output in seconds.
|
|
3867
4119
|
*/
|
|
3868
4120
|
duration: number;
|
|
4121
|
+
/**
|
|
4122
|
+
* Input Arguments
|
|
4123
|
+
* @description The input arguments used for the tool call.
|
|
4124
|
+
*/
|
|
4125
|
+
input_arguments: {
|
|
4126
|
+
[key: string]: unknown;
|
|
4127
|
+
};
|
|
3869
4128
|
};
|
|
3870
4129
|
/**
|
|
3871
4130
|
* NewMessageEvent
|
|
@@ -3970,6 +4229,51 @@ export interface components {
|
|
|
3970
4229
|
*/
|
|
3971
4230
|
sample_width: 2 | 4;
|
|
3972
4231
|
};
|
|
4232
|
+
/** PermissionGrant */
|
|
4233
|
+
"PermissionGrant-Input": {
|
|
4234
|
+
/**
|
|
4235
|
+
* Permission Name
|
|
4236
|
+
* @description The name of the permission.
|
|
4237
|
+
*/
|
|
4238
|
+
permission_name: string;
|
|
4239
|
+
/**
|
|
4240
|
+
* Conditions
|
|
4241
|
+
* @description A dictionary of attribute name to condition that must be met for this grant to be applicable.
|
|
4242
|
+
*/
|
|
4243
|
+
conditions: {
|
|
4244
|
+
[key: string]: components["schemas"]["Condition"];
|
|
4245
|
+
};
|
|
4246
|
+
};
|
|
4247
|
+
/** PermissionGrant */
|
|
4248
|
+
"PermissionGrant-Output": {
|
|
4249
|
+
/**
|
|
4250
|
+
* Permission Name
|
|
4251
|
+
* @description The name of the permission.
|
|
4252
|
+
*/
|
|
4253
|
+
permission_name: string;
|
|
4254
|
+
/**
|
|
4255
|
+
* Conditions
|
|
4256
|
+
* @description A dictionary of attribute name to condition that must be met for this grant to be applicable.
|
|
4257
|
+
*/
|
|
4258
|
+
conditions: {
|
|
4259
|
+
[key: string]: components["schemas"]["Condition"];
|
|
4260
|
+
};
|
|
4261
|
+
};
|
|
4262
|
+
/** PermissionGrantInstance */
|
|
4263
|
+
PermissionGrantInstance: {
|
|
4264
|
+
/**
|
|
4265
|
+
* Permission Name
|
|
4266
|
+
* @description The name of the permission.
|
|
4267
|
+
*/
|
|
4268
|
+
permission_name: string;
|
|
4269
|
+
/**
|
|
4270
|
+
* Conditions
|
|
4271
|
+
* @description A dictionary of attribute name to condition that must be met for this grant to be applicable.
|
|
4272
|
+
*/
|
|
4273
|
+
conditions: {
|
|
4274
|
+
[key: string]: components["schemas"]["Condition"];
|
|
4275
|
+
};
|
|
4276
|
+
};
|
|
3973
4277
|
/** @enum {string} */
|
|
3974
4278
|
PostAnalysisType: "generate-user-models" | "extract-memories" | "compute-metrics";
|
|
3975
4279
|
/** PostSessionEvaluationSource */
|
|
@@ -3987,6 +4291,47 @@ export interface components {
|
|
|
3987
4291
|
*/
|
|
3988
4292
|
references: string[];
|
|
3989
4293
|
};
|
|
4294
|
+
/**
|
|
4295
|
+
* Preferences
|
|
4296
|
+
* @description Preferences that the user can set to customize their experience.
|
|
4297
|
+
*/
|
|
4298
|
+
"Preferences-Output": {
|
|
4299
|
+
/**
|
|
4300
|
+
* Enable Response Recommendation
|
|
4301
|
+
* @description Whether to automatically recommend responses to the user if the user hasn't replied to the coach for a while.
|
|
4302
|
+
* @default false
|
|
4303
|
+
*/
|
|
4304
|
+
enable_response_recommendation?: boolean;
|
|
4305
|
+
/**
|
|
4306
|
+
* Preferred Language
|
|
4307
|
+
* @description The preferred language to use for the user. This field must be in the ISO 639-3 format. The agent will attempt to converse
|
|
4308
|
+
* with the user in this language. If not set, the agent's default spoken language is used.
|
|
4309
|
+
*/
|
|
4310
|
+
preferred_language?: string | null;
|
|
4311
|
+
/**
|
|
4312
|
+
* Conversations Visible To Admins
|
|
4313
|
+
* @description Whether the user's conversations are visible to the admins.
|
|
4314
|
+
* @default true
|
|
4315
|
+
*/
|
|
4316
|
+
conversations_visible_to_admins?: boolean;
|
|
4317
|
+
/**
|
|
4318
|
+
* User Model Visible To Admins
|
|
4319
|
+
* @description Whether the user's user model is visible to the admins.
|
|
4320
|
+
* @default true
|
|
4321
|
+
*/
|
|
4322
|
+
user_model_visible_to_admins?: boolean;
|
|
4323
|
+
/**
|
|
4324
|
+
* Timezone
|
|
4325
|
+
* @description The user's timezone in the IANA tz database format for all users in this organization. If not specified, UTC is used.
|
|
4326
|
+
*/
|
|
4327
|
+
timezone?: string | null;
|
|
4328
|
+
/**
|
|
4329
|
+
* Audio Keyterms
|
|
4330
|
+
* @description A list of keyterms that are easy to get wrong during audio transcriptions that tend to occur commonly in audio sessions for this user.
|
|
4331
|
+
* @default []
|
|
4332
|
+
*/
|
|
4333
|
+
audio_keyterms?: string[];
|
|
4334
|
+
};
|
|
3990
4335
|
/** Prompt */
|
|
3991
4336
|
Prompt: {
|
|
3992
4337
|
/**
|
|
@@ -4009,7 +4354,7 @@ export interface components {
|
|
|
4009
4354
|
type: "recall";
|
|
4010
4355
|
name: components["schemas"]["StateOrRefName"];
|
|
4011
4356
|
/** Queries */
|
|
4012
|
-
queries:
|
|
4357
|
+
queries: string[] | null;
|
|
4013
4358
|
requested_information: components["schemas"]["amigo_lib__pydantic__base_model__StrippedNonemptyString__1"] | null;
|
|
4014
4359
|
/** Next State */
|
|
4015
4360
|
next_state: components["schemas"]["StateOrRefName"] | [
|
|
@@ -4115,7 +4460,7 @@ export interface components {
|
|
|
4115
4460
|
* Audio Fillers
|
|
4116
4461
|
* @description A list of audio fillers to play in audio mode if the reflection is taking too long to be generated.
|
|
4117
4462
|
*/
|
|
4118
|
-
audio_fillers: components["schemas"]["
|
|
4463
|
+
audio_fillers: components["schemas"]["amigo_lib__pydantic__base_model__StrippedNonemptyString__1"][];
|
|
4119
4464
|
/**
|
|
4120
4465
|
* Audio Filler Triggered After
|
|
4121
4466
|
* @description The number of seconds to wait before playing an audio filler.
|
|
@@ -4242,6 +4587,36 @@ export interface components {
|
|
|
4242
4587
|
/** @description Metadata about the invocation. */
|
|
4243
4588
|
invocation_metadata: components["schemas"]["AgentFrameworkInvocationMetadata"];
|
|
4244
4589
|
};
|
|
4590
|
+
/** RelationshipToDeveloper */
|
|
4591
|
+
"RelationshipToDeveloper-Input": {
|
|
4592
|
+
ownership: components["schemas"]["amigo_lib__pydantic__base_model__StrippedNonemptyString__1"];
|
|
4593
|
+
type: components["schemas"]["amigo_lib__pydantic__base_model__StrippedNonemptyString__1"];
|
|
4594
|
+
conversation_visibility: components["schemas"]["amigo_lib__pydantic__base_model__StrippedNonemptyString__1"];
|
|
4595
|
+
thought_visibility: components["schemas"]["amigo_lib__pydantic__base_model__StrippedNonemptyString__1"];
|
|
4596
|
+
};
|
|
4597
|
+
/** RelationshipToDeveloper */
|
|
4598
|
+
"RelationshipToDeveloper-Output": {
|
|
4599
|
+
/**
|
|
4600
|
+
* Ownership
|
|
4601
|
+
* @description The agent's belief of which entity owns it.
|
|
4602
|
+
*/
|
|
4603
|
+
ownership: string;
|
|
4604
|
+
/**
|
|
4605
|
+
* Type
|
|
4606
|
+
* @description The entity that the agent regards itself as.
|
|
4607
|
+
*/
|
|
4608
|
+
type: string;
|
|
4609
|
+
/**
|
|
4610
|
+
* Conversation Visibility
|
|
4611
|
+
* @description Whether the agent believes that its owner can see its conversations with clients.
|
|
4612
|
+
*/
|
|
4613
|
+
conversation_visibility: string;
|
|
4614
|
+
/**
|
|
4615
|
+
* Thought Visibility
|
|
4616
|
+
* @description Whether the agent believes that its owner can see its inner thoughts when engaging in conversations with its clients.
|
|
4617
|
+
*/
|
|
4618
|
+
thought_visibility: string;
|
|
4619
|
+
};
|
|
4245
4620
|
/** @enum {string} */
|
|
4246
4621
|
ResultPersistence: "ephemeral" | "persisted-preferred" | "persisted";
|
|
4247
4622
|
/** RoleInstance */
|
|
@@ -4267,7 +4642,7 @@ export interface components {
|
|
|
4267
4642
|
* Permission Grants
|
|
4268
4643
|
* @description The permission grants given to the role. Only returned if the `return_permission_grants` query parameter is True.
|
|
4269
4644
|
*/
|
|
4270
|
-
permission_grants: components["schemas"]["
|
|
4645
|
+
permission_grants: components["schemas"]["PermissionGrant-Output"][];
|
|
4271
4646
|
};
|
|
4272
4647
|
SelectDynamicBehaviorAgentActionEvent: components["schemas"]["SelectDynamicBehaviorVectorGeneratedEvent"] | components["schemas"]["SelectDynamicBehaviorRelevanceRetrievalCompletedEvent"] | components["schemas"]["SelectDynamicBehaviorCompletedEvent"];
|
|
4273
4648
|
/** SelectDynamicBehaviorCompletedEvent */
|
|
@@ -4332,6 +4707,8 @@ export interface components {
|
|
|
4332
4707
|
* @description The time at which this version was created.
|
|
4333
4708
|
*/
|
|
4334
4709
|
created_at: string;
|
|
4710
|
+
/** @description The user who created this version of the state machine. */
|
|
4711
|
+
creator: components["schemas"]["amigo_lib__mongo__collections__service_hierarchical_state_machine__ServiceHierarchicalStateMachine__UserInfo"];
|
|
4335
4712
|
/**
|
|
4336
4713
|
* Description
|
|
4337
4714
|
* @description A description of the state machine.
|
|
@@ -4400,7 +4777,7 @@ export interface components {
|
|
|
4400
4777
|
* @description The available version sets of the service.
|
|
4401
4778
|
*/
|
|
4402
4779
|
version_sets: {
|
|
4403
|
-
[key: string]: components["schemas"]["
|
|
4780
|
+
[key: string]: components["schemas"]["VersionSet-Output"];
|
|
4404
4781
|
};
|
|
4405
4782
|
/**
|
|
4406
4783
|
* Description
|
|
@@ -4426,12 +4803,16 @@ export interface components {
|
|
|
4426
4803
|
* Tags
|
|
4427
4804
|
* @description The tags of the service.
|
|
4428
4805
|
*/
|
|
4429
|
-
tags: components["schemas"]["
|
|
4806
|
+
tags: components["schemas"]["Tag"][];
|
|
4430
4807
|
/**
|
|
4431
4808
|
* Keyterms
|
|
4432
4809
|
* @description A list of keyterms that are easy to get wrong during audio transcriptions that tend to occur commonly in audio sessions using this service.
|
|
4433
4810
|
*/
|
|
4434
4811
|
keyterms: string[];
|
|
4812
|
+
/** @description The user who created the service. */
|
|
4813
|
+
creator: components["schemas"]["amigo_lib__mongo__collections__service__Service__UserInfo"];
|
|
4814
|
+
/** @description The user who last updated the service. */
|
|
4815
|
+
updated_by: components["schemas"]["amigo_lib__mongo__collections__service__Service__UserInfo"];
|
|
4435
4816
|
};
|
|
4436
4817
|
/** SimulationConversationInvocationSource */
|
|
4437
4818
|
SimulationConversationInvocationSource: {
|
|
@@ -4468,6 +4849,52 @@ export interface components {
|
|
|
4468
4849
|
*/
|
|
4469
4850
|
references: string[];
|
|
4470
4851
|
};
|
|
4852
|
+
/** SimulationPersonaInstance */
|
|
4853
|
+
SimulationPersonaInstance: {
|
|
4854
|
+
/**
|
|
4855
|
+
* Id
|
|
4856
|
+
* @description The ID of the simulation persona.
|
|
4857
|
+
*/
|
|
4858
|
+
id: string;
|
|
4859
|
+
/**
|
|
4860
|
+
* Name
|
|
4861
|
+
* @description The name of the simulation persona.
|
|
4862
|
+
*/
|
|
4863
|
+
name: string;
|
|
4864
|
+
/**
|
|
4865
|
+
* Role
|
|
4866
|
+
* @description The role of the simulation persona.
|
|
4867
|
+
*/
|
|
4868
|
+
role: string;
|
|
4869
|
+
/**
|
|
4870
|
+
* Tags
|
|
4871
|
+
* @description The tags of the simulation persona.
|
|
4872
|
+
*/
|
|
4873
|
+
tags: {
|
|
4874
|
+
[key: string]: string | null;
|
|
4875
|
+
};
|
|
4876
|
+
/**
|
|
4877
|
+
* Is Deleted
|
|
4878
|
+
* @description Whether the simulation persona is deleted.
|
|
4879
|
+
*/
|
|
4880
|
+
is_deleted: boolean;
|
|
4881
|
+
/**
|
|
4882
|
+
* Created At
|
|
4883
|
+
* Format: date-time
|
|
4884
|
+
* @description The timestamp when the simulation persona was created.
|
|
4885
|
+
*/
|
|
4886
|
+
created_at: string;
|
|
4887
|
+
/** @description The user who created the simulation persona. */
|
|
4888
|
+
creator: components["schemas"]["amigo_lib__mongo__collections__simulation_persona__SimulationPersona__UserInfo"];
|
|
4889
|
+
/**
|
|
4890
|
+
* Updated At
|
|
4891
|
+
* Format: date-time
|
|
4892
|
+
* @description The timestamp when the simulation persona was last updated.
|
|
4893
|
+
*/
|
|
4894
|
+
updated_at: string;
|
|
4895
|
+
/** @description The user who last updated the simulation persona. */
|
|
4896
|
+
updated_by: components["schemas"]["amigo_lib__mongo__collections__simulation_persona__SimulationPersona__UserInfo"];
|
|
4897
|
+
};
|
|
4471
4898
|
/** SimulationPersonaVersion */
|
|
4472
4899
|
SimulationPersonaVersion: {
|
|
4473
4900
|
/**
|
|
@@ -4520,6 +4947,65 @@ export interface components {
|
|
|
4520
4947
|
* @description The user models associated with the simulation persona.
|
|
4521
4948
|
*/
|
|
4522
4949
|
user_models: string[];
|
|
4950
|
+
/**
|
|
4951
|
+
* Nonsensitive User Variables
|
|
4952
|
+
* @description A dictionary of the simulation persona's nonsensitive user variables that are provided to the tools.
|
|
4953
|
+
*/
|
|
4954
|
+
nonsensitive_user_variables: {
|
|
4955
|
+
[key: string]: string;
|
|
4956
|
+
};
|
|
4957
|
+
/**
|
|
4958
|
+
* Sensitive User Variables
|
|
4959
|
+
* @description A dictionary of the simulation persona's sensitive user variables that are provided to the tools. Unlike the ones in the user collection, these are not encrypted,
|
|
4960
|
+
* so only sensitive information in staging environment should be stored here.
|
|
4961
|
+
* @default {}
|
|
4962
|
+
*/
|
|
4963
|
+
sensitive_user_variables?: {
|
|
4964
|
+
[key: string]: string;
|
|
4965
|
+
};
|
|
4966
|
+
/** @description The user who created this simulation persona version. */
|
|
4967
|
+
creator: components["schemas"]["amigo_lib__mongo__collections__simulation_persona_version__SimulationPersonaVersion__UserInfo"];
|
|
4968
|
+
};
|
|
4969
|
+
/** SimulationScenarioInstance */
|
|
4970
|
+
SimulationScenarioInstance: {
|
|
4971
|
+
/**
|
|
4972
|
+
* Id
|
|
4973
|
+
* @description The ID of the simulation scenario.
|
|
4974
|
+
*/
|
|
4975
|
+
id: string;
|
|
4976
|
+
/**
|
|
4977
|
+
* Name
|
|
4978
|
+
* @description The name of the simulation scenario.
|
|
4979
|
+
*/
|
|
4980
|
+
name: string;
|
|
4981
|
+
/**
|
|
4982
|
+
* Tags
|
|
4983
|
+
* @description The tags of the simulation scenario.
|
|
4984
|
+
*/
|
|
4985
|
+
tags: {
|
|
4986
|
+
[key: string]: string | null;
|
|
4987
|
+
};
|
|
4988
|
+
/**
|
|
4989
|
+
* Is Deleted
|
|
4990
|
+
* @description Whether the simulation scenario is deleted.
|
|
4991
|
+
*/
|
|
4992
|
+
is_deleted: boolean;
|
|
4993
|
+
/**
|
|
4994
|
+
* Created At
|
|
4995
|
+
* Format: date-time
|
|
4996
|
+
* @description The timestamp when the simulation scenario was created.
|
|
4997
|
+
*/
|
|
4998
|
+
created_at: string;
|
|
4999
|
+
/** @description The user who created the simulation scenario. */
|
|
5000
|
+
creator: components["schemas"]["amigo_lib__mongo__collections__simulation_scenario__SimulationScenario__UserInfo"];
|
|
5001
|
+
/**
|
|
5002
|
+
* Updated At
|
|
5003
|
+
* Format: date-time
|
|
5004
|
+
* @description The timestamp when the simulation scenario was last updated.
|
|
5005
|
+
*/
|
|
5006
|
+
updated_at: string;
|
|
5007
|
+
/** @description The user who last updated the simulation scenario. */
|
|
5008
|
+
updated_by: components["schemas"]["amigo_lib__mongo__collections__simulation_scenario__SimulationScenario__UserInfo"];
|
|
4523
5009
|
};
|
|
4524
5010
|
/** SimulationScenarioVersion */
|
|
4525
5011
|
SimulationScenarioVersion: {
|
|
@@ -4569,6 +5055,8 @@ export interface components {
|
|
|
4569
5055
|
* @description The time at which the conversation starts. This must be a timestamp in UTC. If not specified, the current server time is used.
|
|
4570
5056
|
*/
|
|
4571
5057
|
conversation_starts_at: string | null;
|
|
5058
|
+
/** @description The user who created this simulation scenario version. */
|
|
5059
|
+
creator: components["schemas"]["amigo_lib__mongo__collections__simulation_scenario_version__SimulationScenarioVersion__UserInfo"];
|
|
4572
5060
|
};
|
|
4573
5061
|
/** SimulationUnitTest */
|
|
4574
5062
|
SimulationUnitTest: {
|
|
@@ -4631,7 +5119,7 @@ export interface components {
|
|
|
4631
5119
|
* Success Criterions
|
|
4632
5120
|
* @description The success criterions for the unit test.
|
|
4633
5121
|
*/
|
|
4634
|
-
success_criterions: components["schemas"]["
|
|
5122
|
+
success_criterions: components["schemas"]["SuccessCriterion-Output"][];
|
|
4635
5123
|
/**
|
|
4636
5124
|
* Is Deleted
|
|
4637
5125
|
* @description Whether the unit test has been deleted.
|
|
@@ -4641,7 +5129,7 @@ export interface components {
|
|
|
4641
5129
|
* Tags
|
|
4642
5130
|
* @description The tags of the simulation persona.
|
|
4643
5131
|
*/
|
|
4644
|
-
tags: components["schemas"]["
|
|
5132
|
+
tags: components["schemas"]["Tag"][];
|
|
4645
5133
|
creator: components["schemas"]["amigo_lib__mongo__collections__simulation_unit_test__SimulationUnitTest__UserInfo"];
|
|
4646
5134
|
updated_by: components["schemas"]["amigo_lib__mongo__collections__simulation_unit_test__SimulationUnitTest__UserInfo"];
|
|
4647
5135
|
};
|
|
@@ -4703,7 +5191,7 @@ export interface components {
|
|
|
4703
5191
|
* Success Criterions
|
|
4704
5192
|
* @description The success criterions for the unit test.
|
|
4705
5193
|
*/
|
|
4706
|
-
success_criterions: components["schemas"]["
|
|
5194
|
+
success_criterions: components["schemas"]["SuccessCriterion-Output"][];
|
|
4707
5195
|
/**
|
|
4708
5196
|
* Is Deleted
|
|
4709
5197
|
* @description Whether the unit test has been deleted.
|
|
@@ -4713,7 +5201,7 @@ export interface components {
|
|
|
4713
5201
|
* Tags
|
|
4714
5202
|
* @description The tags of the simulation persona.
|
|
4715
5203
|
*/
|
|
4716
|
-
tags: components["schemas"]["
|
|
5204
|
+
tags: components["schemas"]["Tag"][];
|
|
4717
5205
|
creator: components["schemas"]["amigo_lib__mongo__collections__simulation_unit_test__SimulationUnitTest__UserInfo"];
|
|
4718
5206
|
updated_by: components["schemas"]["amigo_lib__mongo__collections__simulation_unit_test__SimulationUnitTest__UserInfo"];
|
|
4719
5207
|
};
|
|
@@ -4753,7 +5241,7 @@ export interface components {
|
|
|
4753
5241
|
* Unit Test Runs
|
|
4754
5242
|
* @description The unit test runs that are part of this set.
|
|
4755
5243
|
*/
|
|
4756
|
-
unit_test_runs: components["schemas"]["
|
|
5244
|
+
unit_test_runs: components["schemas"]["UnitTestRunDescriptor-Output"][];
|
|
4757
5245
|
/**
|
|
4758
5246
|
* Last Triggered Run Id
|
|
4759
5247
|
* @description The last unit test set run that was triggered.
|
|
@@ -4768,7 +5256,7 @@ export interface components {
|
|
|
4768
5256
|
* Tags
|
|
4769
5257
|
* @description The tags of the simulation unit test set.
|
|
4770
5258
|
*/
|
|
4771
|
-
tags: components["schemas"]["
|
|
5259
|
+
tags: components["schemas"]["Tag"][];
|
|
4772
5260
|
creator: components["schemas"]["amigo_lib__mongo__collections__simulation_unit_test_set__SimulationUnitTestSet__UserInfo"];
|
|
4773
5261
|
updated_by: components["schemas"]["amigo_lib__mongo__collections__simulation_unit_test_set__SimulationUnitTestSet__UserInfo"];
|
|
4774
5262
|
};
|
|
@@ -4805,7 +5293,7 @@ export interface components {
|
|
|
4805
5293
|
* Unit Test Runs
|
|
4806
5294
|
* @description The unit test runs that are part of this set.
|
|
4807
5295
|
*/
|
|
4808
|
-
unit_test_runs: components["schemas"]["
|
|
5296
|
+
unit_test_runs: components["schemas"]["UnitTestRunDescriptor-Output"][];
|
|
4809
5297
|
/**
|
|
4810
5298
|
* Last Triggered Run Id
|
|
4811
5299
|
* @description The last unit test set run that was triggered.
|
|
@@ -4820,7 +5308,7 @@ export interface components {
|
|
|
4820
5308
|
* Tags
|
|
4821
5309
|
* @description The tags of the simulation unit test set.
|
|
4822
5310
|
*/
|
|
4823
|
-
tags: components["schemas"]["
|
|
5311
|
+
tags: components["schemas"]["Tag"][];
|
|
4824
5312
|
creator: components["schemas"]["amigo_lib__mongo__collections__simulation_unit_test_set__SimulationUnitTestSet__UserInfo"];
|
|
4825
5313
|
updated_by: components["schemas"]["amigo_lib__mongo__collections__simulation_unit_test_set__SimulationUnitTestSet__UserInfo"];
|
|
4826
5314
|
};
|
|
@@ -4932,12 +5420,13 @@ export interface components {
|
|
|
4932
5420
|
};
|
|
4933
5421
|
StateTransitionLog: components["schemas"]["ActionStateTransitionLog"] | components["schemas"]["DecisionStateTransitionLog"] | components["schemas"]["RecallStateTransitionLog"] | components["schemas"]["JumpbackStateTransitionLog"] | components["schemas"]["AnnotationStateTransitionLog"] | components["schemas"]["ReflectionStateTransitionLog"] | components["schemas"]["ToolCallStateTransitionLog"];
|
|
4934
5422
|
"StrippedNonemptyString_A-Z______": string;
|
|
4935
|
-
|
|
5423
|
+
"StrippedNonemptyString_A-Za-z0-9_-______MaxLen_max_length_40_": string;
|
|
4936
5424
|
StrippedNonemptyString___w__s_____: string;
|
|
4937
|
-
"StrippedNonemptyString__to_upper_None__to_lower_None__strict_None__min_length_None__max_length_None__pattern____A-Za-z0-9_-______MaxLen_max_length_40_": string;
|
|
4938
5425
|
"StrippedNonemptyString_a-z-______": string;
|
|
4939
5426
|
"StrippedNonemptyString_a-z-_____a-z-____0_2____": string;
|
|
4940
5427
|
"StrippedNonemptyString_a-z0-9______": string;
|
|
5428
|
+
"StrippedNonemptyString_a-z___a-z0-9_______": string;
|
|
5429
|
+
"StrippedNonemptyString_a-z___a-z0-9___lambda__at_0xffff4a9e6f00__": string;
|
|
4941
5430
|
/** SucceededInvocationResult */
|
|
4942
5431
|
SucceededInvocationResult: {
|
|
4943
5432
|
/**
|
|
@@ -4969,42 +5458,117 @@ export interface components {
|
|
|
4969
5458
|
*/
|
|
4970
5459
|
output: string;
|
|
4971
5460
|
};
|
|
5461
|
+
/** SuccessCriterion */
|
|
5462
|
+
"SuccessCriterion-Output": {
|
|
5463
|
+
/** Name */
|
|
5464
|
+
name: string;
|
|
5465
|
+
/** Metric Id */
|
|
5466
|
+
metric_id: string;
|
|
5467
|
+
criterion: components["schemas"]["SuccessCriterionDescription-Output"];
|
|
5468
|
+
};
|
|
4972
5469
|
"SuccessCriterionDescription-Input": components["schemas"]["NumericalMetricSuccessCriterion"] | components["schemas"]["BooleanMetricSuccessCriterion"] | components["schemas"]["CategoricalMetricSuccessCriterion-Input"];
|
|
4973
5470
|
"SuccessCriterionDescription-Output": components["schemas"]["BooleanMetricSuccessCriterion"] | components["schemas"]["NumericalMetricSuccessCriterion"] | components["schemas"]["CategoricalMetricSuccessCriterion-Output"];
|
|
5471
|
+
/** Tag */
|
|
5472
|
+
Tag: {
|
|
5473
|
+
/** Key */
|
|
5474
|
+
key: string;
|
|
5475
|
+
/** Value */
|
|
5476
|
+
value: string | null;
|
|
5477
|
+
};
|
|
4974
5478
|
/**
|
|
4975
|
-
*
|
|
4976
|
-
* @description
|
|
5479
|
+
* TemporaryPermissionGrant
|
|
5480
|
+
* @description A temporary permission grant provides an user additional permission grants beyond what their role allows for a limited amount of time.
|
|
4977
5481
|
*/
|
|
4978
|
-
|
|
5482
|
+
TemporaryPermissionGrant: {
|
|
4979
5483
|
/**
|
|
4980
|
-
*
|
|
4981
|
-
* @
|
|
5484
|
+
* Id
|
|
5485
|
+
* @description The ID of the document.
|
|
4982
5486
|
*/
|
|
4983
|
-
|
|
5487
|
+
_id: string;
|
|
4984
5488
|
/**
|
|
4985
|
-
*
|
|
4986
|
-
* @description
|
|
5489
|
+
* Org Id
|
|
5490
|
+
* @description The ID of the organization.
|
|
4987
5491
|
*/
|
|
4988
|
-
|
|
5492
|
+
org_id: string;
|
|
4989
5493
|
/**
|
|
4990
|
-
*
|
|
4991
|
-
*
|
|
5494
|
+
* Created At
|
|
5495
|
+
* Format: date-time
|
|
4992
5496
|
*/
|
|
4993
|
-
|
|
5497
|
+
created_at?: string;
|
|
4994
5498
|
/**
|
|
4995
|
-
*
|
|
4996
|
-
*
|
|
5499
|
+
* Updated At
|
|
5500
|
+
* Format: date-time
|
|
4997
5501
|
*/
|
|
4998
|
-
|
|
5502
|
+
updated_at?: string;
|
|
4999
5503
|
/**
|
|
5000
|
-
*
|
|
5001
|
-
* @description The
|
|
5504
|
+
* User Id
|
|
5505
|
+
* @description The ID of the user that this grant applies to.
|
|
5002
5506
|
*/
|
|
5003
|
-
|
|
5507
|
+
user_id: string;
|
|
5004
5508
|
/**
|
|
5005
|
-
*
|
|
5006
|
-
*
|
|
5007
|
-
|
|
5509
|
+
* Expires At
|
|
5510
|
+
* Format: date-time
|
|
5511
|
+
* @description The time at which this temporary permission grant expires.
|
|
5512
|
+
*/
|
|
5513
|
+
expires_at: string;
|
|
5514
|
+
/** @description The permission grant to give to the user. */
|
|
5515
|
+
permission_grant: components["schemas"]["PermissionGrant-Output"];
|
|
5516
|
+
/**
|
|
5517
|
+
* Justification
|
|
5518
|
+
* @description The reason for offering this permission grant.
|
|
5519
|
+
*/
|
|
5520
|
+
justification: string;
|
|
5521
|
+
/** @description The creator of this permission grant. */
|
|
5522
|
+
creator: components["schemas"]["amigo_lib__mongo__collections__temporary_permission_grant__TemporaryPermissionGrant__UserInfo"];
|
|
5523
|
+
/**
|
|
5524
|
+
* Tags
|
|
5525
|
+
* @description The tags of the permission grant.
|
|
5526
|
+
*/
|
|
5527
|
+
tags: {
|
|
5528
|
+
[key: string]: string | null;
|
|
5529
|
+
};
|
|
5530
|
+
};
|
|
5531
|
+
/**
|
|
5532
|
+
* ToolCallEndedEvent
|
|
5533
|
+
* @description Indicating that the agent has finished executing a tool.
|
|
5534
|
+
*/
|
|
5535
|
+
ToolCallEndedEvent: {
|
|
5536
|
+
/**
|
|
5537
|
+
* @description discriminator enum property added by openapi-typescript
|
|
5538
|
+
* @enum {string}
|
|
5539
|
+
*/
|
|
5540
|
+
type: "tool-call-ended";
|
|
5541
|
+
/**
|
|
5542
|
+
* Tool Round Index
|
|
5543
|
+
* @description Within the current LLM interaction, the round of tool call.
|
|
5544
|
+
*/
|
|
5545
|
+
tool_round_index: number;
|
|
5546
|
+
/**
|
|
5547
|
+
* Tool Id
|
|
5548
|
+
* @description The ID of the tool being called.
|
|
5549
|
+
*/
|
|
5550
|
+
tool_id: string;
|
|
5551
|
+
/**
|
|
5552
|
+
* Tool Version
|
|
5553
|
+
* @description The version of the tool being called.
|
|
5554
|
+
*/
|
|
5555
|
+
tool_version: string;
|
|
5556
|
+
/**
|
|
5557
|
+
* Input Parameters
|
|
5558
|
+
* @description The input parameters for the tool call.
|
|
5559
|
+
*/
|
|
5560
|
+
input_parameters: {
|
|
5561
|
+
[key: string]: unknown;
|
|
5562
|
+
};
|
|
5563
|
+
/**
|
|
5564
|
+
* Result
|
|
5565
|
+
* @description The result of the tool call.
|
|
5566
|
+
*/
|
|
5567
|
+
result: string;
|
|
5568
|
+
/**
|
|
5569
|
+
* Duration
|
|
5570
|
+
* @description The duration of the tool call in seconds.
|
|
5571
|
+
*/
|
|
5008
5572
|
duration: number;
|
|
5009
5573
|
};
|
|
5010
5574
|
/** ToolCallLog */
|
|
@@ -5090,7 +5654,7 @@ export interface components {
|
|
|
5090
5654
|
];
|
|
5091
5655
|
designated_tool: components["schemas"]["organization__create_service_hierarchical_state_machine_version__Request__ToolCallSpec"];
|
|
5092
5656
|
/** Designated Tool Call Params Generation Audio Fillers */
|
|
5093
|
-
designated_tool_call_params_generation_audio_fillers: components["schemas"]["
|
|
5657
|
+
designated_tool_call_params_generation_audio_fillers: components["schemas"]["amigo_lib__pydantic__base_model__StrippedNonemptyString__1"][];
|
|
5094
5658
|
/** Designated Tool Call Params Generation Audio Filler Triggered After */
|
|
5095
5659
|
designated_tool_call_params_generation_audio_filler_triggered_after: number;
|
|
5096
5660
|
designated_tool_call_objective: components["schemas"]["amigo_lib__pydantic__base_model__StrippedNonemptyString__1"];
|
|
@@ -5282,7 +5846,57 @@ export interface components {
|
|
|
5282
5846
|
* Tags
|
|
5283
5847
|
* @description The tags of the simulation persona.
|
|
5284
5848
|
*/
|
|
5285
|
-
tags: components["schemas"]["
|
|
5849
|
+
tags: components["schemas"]["Tag"][];
|
|
5850
|
+
/** @description The user who created this tool. */
|
|
5851
|
+
creator: components["schemas"]["amigo_lib__mongo__collections__tool__Tool__UserInfo"];
|
|
5852
|
+
/** @description The user who last updated this tool. */
|
|
5853
|
+
updated_by: components["schemas"]["amigo_lib__mongo__collections__tool__Tool__UserInfo"];
|
|
5854
|
+
};
|
|
5855
|
+
/** ToolInvocationInstance */
|
|
5856
|
+
ToolInvocationInstance: {
|
|
5857
|
+
/**
|
|
5858
|
+
* Id
|
|
5859
|
+
* @description The ID of the tool invocation.
|
|
5860
|
+
*/
|
|
5861
|
+
id: string;
|
|
5862
|
+
/**
|
|
5863
|
+
* Org Id
|
|
5864
|
+
* @description The ID of the organization.
|
|
5865
|
+
*/
|
|
5866
|
+
org_id: string;
|
|
5867
|
+
/**
|
|
5868
|
+
* Created At
|
|
5869
|
+
* Format: date-time
|
|
5870
|
+
*/
|
|
5871
|
+
created_at?: string;
|
|
5872
|
+
/**
|
|
5873
|
+
* Updated At
|
|
5874
|
+
* Format: date-time
|
|
5875
|
+
*/
|
|
5876
|
+
updated_at?: string;
|
|
5877
|
+
/** @description The status of the tool invocation. */
|
|
5878
|
+
invocation_status: components["schemas"]["InvocationStatus"];
|
|
5879
|
+
/** @description The source of the tool invocation. */
|
|
5880
|
+
invocation_source: components["schemas"]["InvocationSource"];
|
|
5881
|
+
/**
|
|
5882
|
+
* Duration Ms
|
|
5883
|
+
* @description The duration of the tool invocation in milliseconds.
|
|
5884
|
+
*/
|
|
5885
|
+
duration_ms: number;
|
|
5886
|
+
/**
|
|
5887
|
+
* Tool Id
|
|
5888
|
+
* @description The ID of the tool that was invoked.
|
|
5889
|
+
*/
|
|
5890
|
+
tool_id: string;
|
|
5891
|
+
/** @description The version of the tool that was invoked. */
|
|
5892
|
+
tool_version: components["schemas"]["Version"];
|
|
5893
|
+
/**
|
|
5894
|
+
* Inputs
|
|
5895
|
+
* @description The input parameters to the tool.
|
|
5896
|
+
*/
|
|
5897
|
+
inputs: {
|
|
5898
|
+
[key: string]: unknown;
|
|
5899
|
+
};
|
|
5286
5900
|
};
|
|
5287
5901
|
/** ToolVersionInstance */
|
|
5288
5902
|
ToolVersionInstance: {
|
|
@@ -5312,7 +5926,7 @@ export interface components {
|
|
|
5312
5926
|
*/
|
|
5313
5927
|
tool_id: string;
|
|
5314
5928
|
/** @description The version of the tool. */
|
|
5315
|
-
version: components["schemas"]["
|
|
5929
|
+
version: components["schemas"]["Version"];
|
|
5316
5930
|
/**
|
|
5317
5931
|
* Required Envvars
|
|
5318
5932
|
* @description The environment variables that are required to run the tool.
|
|
@@ -5352,17 +5966,30 @@ export interface components {
|
|
|
5352
5966
|
lambda_version: number;
|
|
5353
5967
|
/** @description The user who created the tool version. */
|
|
5354
5968
|
creator: components["schemas"]["amigo_lib__mongo__collections__tool_version__ToolVersion__UserInfo"];
|
|
5969
|
+
/** @description The user who last updated the tool version. */
|
|
5970
|
+
updated_by: components["schemas"]["amigo_lib__mongo__collections__tool_version__ToolVersion__UserInfo"];
|
|
5355
5971
|
/**
|
|
5356
5972
|
* Deprecated
|
|
5357
5973
|
* @description Whether the tool version is deprecated. Deprecated tool versions are not usable and do not participate in version resolution.
|
|
5358
5974
|
*/
|
|
5359
5975
|
deprecated: boolean;
|
|
5976
|
+
};
|
|
5977
|
+
/** UnitTestRunDescriptor */
|
|
5978
|
+
"UnitTestRunDescriptor-Input": {
|
|
5979
|
+
/** Unit Test Id */
|
|
5980
|
+
unit_test_id: string;
|
|
5360
5981
|
/**
|
|
5361
|
-
*
|
|
5362
|
-
* @
|
|
5363
|
-
* @constant
|
|
5982
|
+
* Run Count
|
|
5983
|
+
* @description The number of times to run the unit test.
|
|
5364
5984
|
*/
|
|
5365
|
-
|
|
5985
|
+
run_count: number;
|
|
5986
|
+
};
|
|
5987
|
+
/** UnitTestRunDescriptor */
|
|
5988
|
+
"UnitTestRunDescriptor-Output": {
|
|
5989
|
+
/** Unit Test Id */
|
|
5990
|
+
unit_test_id: string;
|
|
5991
|
+
/** Run Count */
|
|
5992
|
+
run_count: number;
|
|
5366
5993
|
};
|
|
5367
5994
|
/** UnitTestRunResult */
|
|
5368
5995
|
UnitTestRunResult: {
|
|
@@ -5432,7 +6059,7 @@ export interface components {
|
|
|
5432
6059
|
* @description The LLM model preferences for the unit test run.
|
|
5433
6060
|
*/
|
|
5434
6061
|
llm_model_preferences: {
|
|
5435
|
-
[key: string]: components["schemas"]["
|
|
6062
|
+
[key: string]: components["schemas"]["LLMConfig-Output"];
|
|
5436
6063
|
};
|
|
5437
6064
|
/**
|
|
5438
6065
|
* Max Interactions
|
|
@@ -5455,6 +6082,83 @@ export interface components {
|
|
|
5455
6082
|
*/
|
|
5456
6083
|
value: string;
|
|
5457
6084
|
};
|
|
6085
|
+
/** UpsertRequest */
|
|
6086
|
+
UpsertRequest: {
|
|
6087
|
+
/** @description The name of the variable to upsert. */
|
|
6088
|
+
name: components["schemas"]["StrippedNonemptyString_a-z___a-z0-9_______"];
|
|
6089
|
+
/**
|
|
6090
|
+
* Value
|
|
6091
|
+
* @description The value of the variable to upsert.
|
|
6092
|
+
*/
|
|
6093
|
+
value: string;
|
|
6094
|
+
/**
|
|
6095
|
+
* Is Secret
|
|
6096
|
+
* @description Whether the variable is a secret.
|
|
6097
|
+
*/
|
|
6098
|
+
is_secret: boolean;
|
|
6099
|
+
};
|
|
6100
|
+
/** UserDimension */
|
|
6101
|
+
"UserDimension-Input": {
|
|
6102
|
+
description: components["schemas"]["amigo_lib__pydantic__base_model__StrippedNonemptyString__1"];
|
|
6103
|
+
/** Tags */
|
|
6104
|
+
tags: components["schemas"]["amigo_lib__pydantic__base_model__StrippedNonemptyString__1"][];
|
|
6105
|
+
};
|
|
6106
|
+
/** UserDimension */
|
|
6107
|
+
"UserDimension-Output": {
|
|
6108
|
+
/** Description */
|
|
6109
|
+
description: string;
|
|
6110
|
+
/** Tags */
|
|
6111
|
+
tags: string[];
|
|
6112
|
+
};
|
|
6113
|
+
/** UserInstance */
|
|
6114
|
+
UserInstance: {
|
|
6115
|
+
/**
|
|
6116
|
+
* Org Id
|
|
6117
|
+
* @description The ID of the organization that this user belongs to.
|
|
6118
|
+
*/
|
|
6119
|
+
org_id: string;
|
|
6120
|
+
/**
|
|
6121
|
+
* User Id
|
|
6122
|
+
* @description The identifier of the user.
|
|
6123
|
+
*/
|
|
6124
|
+
user_id: string;
|
|
6125
|
+
/**
|
|
6126
|
+
* First Name
|
|
6127
|
+
* @description The first name of the user.
|
|
6128
|
+
*/
|
|
6129
|
+
first_name: string;
|
|
6130
|
+
/**
|
|
6131
|
+
* Last Name
|
|
6132
|
+
* @description The last name of the user.
|
|
6133
|
+
*/
|
|
6134
|
+
last_name: string;
|
|
6135
|
+
/**
|
|
6136
|
+
* Email
|
|
6137
|
+
* @description Email of the user.
|
|
6138
|
+
*/
|
|
6139
|
+
email: string;
|
|
6140
|
+
/** @description Statistics about the user's usage of the Amigo platform. */
|
|
6141
|
+
user_stats: components["schemas"]["UserStats"];
|
|
6142
|
+
/**
|
|
6143
|
+
* Role
|
|
6144
|
+
* @description The ID of the role of the user.
|
|
6145
|
+
*/
|
|
6146
|
+
role: string;
|
|
6147
|
+
/** @description The preferences of the user. */
|
|
6148
|
+
preferences: components["schemas"]["Preferences-Output"];
|
|
6149
|
+
/**
|
|
6150
|
+
* Nonsensitive Variables
|
|
6151
|
+
* @description The user's nonsensitive variables.
|
|
6152
|
+
*/
|
|
6153
|
+
nonsensitive_variables: {
|
|
6154
|
+
[key: string]: string;
|
|
6155
|
+
};
|
|
6156
|
+
/**
|
|
6157
|
+
* Sensitive Variables
|
|
6158
|
+
* @description The names of the user's sensitive variables. The values of these variables are not retrievable.
|
|
6159
|
+
*/
|
|
6160
|
+
sensitive_variables: string[];
|
|
6161
|
+
};
|
|
5458
6162
|
UserMessageAudioConfig: components["schemas"]["MP3UserMessageAudioConfig"] | components["schemas"]["PCMUserMessageAudioConfig"];
|
|
5459
6163
|
/**
|
|
5460
6164
|
* UserMessageAvailableEvent
|
|
@@ -5485,11 +6189,92 @@ export interface components {
|
|
|
5485
6189
|
/** Insight Ids */
|
|
5486
6190
|
insight_ids: string[];
|
|
5487
6191
|
/** Dimensions */
|
|
5488
|
-
dimensions: components["schemas"]["
|
|
6192
|
+
dimensions: components["schemas"]["UserDimension-Output"][];
|
|
6193
|
+
};
|
|
6194
|
+
/** UserStats */
|
|
6195
|
+
UserStats: {
|
|
6196
|
+
/**
|
|
6197
|
+
* Num Conversations
|
|
6198
|
+
* @description The number of conversations the user has created.
|
|
6199
|
+
*/
|
|
6200
|
+
num_conversations: number;
|
|
6201
|
+
/**
|
|
6202
|
+
* Num Messages
|
|
6203
|
+
* @description The number of messages the user has sent and received.
|
|
6204
|
+
*/
|
|
6205
|
+
num_messages: number;
|
|
6206
|
+
/**
|
|
6207
|
+
* Last Message Time
|
|
6208
|
+
* @description The time of the last message the user sent or received. If `None`, the user hasn't started any conversations.
|
|
6209
|
+
*/
|
|
6210
|
+
last_message_time: string | null;
|
|
6211
|
+
};
|
|
6212
|
+
/** ValidationError */
|
|
6213
|
+
ValidationError: {
|
|
6214
|
+
/** Location */
|
|
6215
|
+
loc: (string | number)[];
|
|
6216
|
+
/** Message */
|
|
6217
|
+
msg: string;
|
|
6218
|
+
/** Error Type */
|
|
6219
|
+
type: string;
|
|
6220
|
+
/** Input */
|
|
6221
|
+
input?: unknown;
|
|
6222
|
+
/** Context */
|
|
6223
|
+
ctx?: Record<string, never>;
|
|
5489
6224
|
};
|
|
5490
6225
|
/** @enum {string} */
|
|
5491
6226
|
Verb: "==" | "!=" | "<=" | "<" | ">=" | ">";
|
|
6227
|
+
/** Version */
|
|
6228
|
+
Version: {
|
|
6229
|
+
/** Major */
|
|
6230
|
+
major: number;
|
|
6231
|
+
/** Minor */
|
|
6232
|
+
minor: number;
|
|
6233
|
+
/** Patch */
|
|
6234
|
+
patch: number;
|
|
6235
|
+
};
|
|
5492
6236
|
VersionComponent: number | "latest";
|
|
6237
|
+
/** VersionSet */
|
|
6238
|
+
"VersionSet-Input": {
|
|
6239
|
+
/**
|
|
6240
|
+
* Agent Version Number
|
|
6241
|
+
* @description The version number of the agent to be used. If None, the latest agent version will be used.
|
|
6242
|
+
*/
|
|
6243
|
+
agent_version_number: number | null;
|
|
6244
|
+
/**
|
|
6245
|
+
* Service Hierarchical State Machine Version Number
|
|
6246
|
+
* @description The version number of the state machine to be used. If None, the latest state machine version will be used.
|
|
6247
|
+
*/
|
|
6248
|
+
service_hierarchical_state_machine_version_number: number | null;
|
|
6249
|
+
/** Llm Model Preferences */
|
|
6250
|
+
llm_model_preferences: {
|
|
6251
|
+
[key: string]: components["schemas"]["LLMConfig-Input"];
|
|
6252
|
+
};
|
|
6253
|
+
};
|
|
6254
|
+
/**
|
|
6255
|
+
* VersionSet
|
|
6256
|
+
* @description A version set pins the agent, state machine, and model version used by this service.
|
|
6257
|
+
*/
|
|
6258
|
+
"VersionSet-Output": {
|
|
6259
|
+
/**
|
|
6260
|
+
* Agent Version Number
|
|
6261
|
+
* @description The version number of the agent to be used. If None, the latest agent version will be used.
|
|
6262
|
+
*/
|
|
6263
|
+
agent_version_number: number | null;
|
|
6264
|
+
/**
|
|
6265
|
+
* Service Hierarchical State Machine Version Number
|
|
6266
|
+
* @description The version number of the state machine to be used. If None, the latest state machine version will be used.
|
|
6267
|
+
*/
|
|
6268
|
+
service_hierarchical_state_machine_version_number: number | null;
|
|
6269
|
+
/**
|
|
6270
|
+
* Llm Model Preferences
|
|
6271
|
+
* @description A map of `LLMInteraction` name to the preferred LLM config that can be used for that interaction.
|
|
6272
|
+
* If an `LLMInteraction` is not in this map, the default model config will be used (defined in each `LLMInteraction` instance).
|
|
6273
|
+
*/
|
|
6274
|
+
llm_model_preferences: {
|
|
6275
|
+
[key: string]: components["schemas"]["LLMConfig-Output"];
|
|
6276
|
+
};
|
|
6277
|
+
};
|
|
5493
6278
|
/** VersionSetInfo */
|
|
5494
6279
|
VersionSetInfo: {
|
|
5495
6280
|
/**
|
|
@@ -5518,9 +6303,36 @@ export interface components {
|
|
|
5518
6303
|
* @description The LLM model preferences for this version set.
|
|
5519
6304
|
*/
|
|
5520
6305
|
llm_model_preferences: {
|
|
5521
|
-
[key: string]: components["schemas"]["
|
|
6306
|
+
[key: string]: components["schemas"]["LLMConfig-Output"];
|
|
5522
6307
|
};
|
|
5523
6308
|
};
|
|
6309
|
+
/** VoiceConfig */
|
|
6310
|
+
VoiceConfig: {
|
|
6311
|
+
voice_id: components["schemas"]["amigo_lib__pydantic__base_model__StrippedNonemptyString__1"];
|
|
6312
|
+
};
|
|
6313
|
+
/** VoiceConfigInstance */
|
|
6314
|
+
VoiceConfigInstance: {
|
|
6315
|
+
/**
|
|
6316
|
+
* Voice Id
|
|
6317
|
+
* @description The Cartesia voice ID for this agent.
|
|
6318
|
+
*/
|
|
6319
|
+
voice_id: string;
|
|
6320
|
+
/**
|
|
6321
|
+
* Stability
|
|
6322
|
+
* @default 0
|
|
6323
|
+
*/
|
|
6324
|
+
stability?: number;
|
|
6325
|
+
/**
|
|
6326
|
+
* Similarity Boost
|
|
6327
|
+
* @default 0
|
|
6328
|
+
*/
|
|
6329
|
+
similarity_boost?: number;
|
|
6330
|
+
/**
|
|
6331
|
+
* Style
|
|
6332
|
+
* @default 0
|
|
6333
|
+
*/
|
|
6334
|
+
style?: number;
|
|
6335
|
+
};
|
|
5524
6336
|
/** WebhookDeliveryInstance */
|
|
5525
6337
|
WebhookDeliveryInstance: {
|
|
5526
6338
|
/**
|
|
@@ -5587,8 +6399,8 @@ export interface components {
|
|
|
5587
6399
|
*/
|
|
5588
6400
|
accepted_types: string[];
|
|
5589
6401
|
};
|
|
5590
|
-
/** @
|
|
5591
|
-
WebhookType: "conversation-post-processing-complete";
|
|
6402
|
+
/** @enum {string} */
|
|
6403
|
+
WebhookType: "conversation-post-processing-complete" | "api-key-expiration-soon";
|
|
5592
6404
|
/** WorkingMemory */
|
|
5593
6405
|
WorkingMemory: {
|
|
5594
6406
|
/**
|
|
@@ -5635,93 +6447,12 @@ export interface components {
|
|
|
5635
6447
|
*/
|
|
5636
6448
|
justification: string;
|
|
5637
6449
|
};
|
|
5638
|
-
/**
|
|
5639
|
-
|
|
5640
|
-
/**
|
|
5641
|
-
|
|
5642
|
-
|
|
5643
|
-
|
|
5644
|
-
llm_name: string;
|
|
5645
|
-
/**
|
|
5646
|
-
* Params
|
|
5647
|
-
* @description LLM-specific parameters to use.
|
|
5648
|
-
* @default {}
|
|
5649
|
-
*/
|
|
5650
|
-
params?: {
|
|
5651
|
-
[key: string]: unknown;
|
|
5652
|
-
};
|
|
5653
|
-
};
|
|
5654
|
-
/** Identity */
|
|
5655
|
-
amigo_lib__mongo__collections__agent__Agent__Identity: {
|
|
5656
|
-
/**
|
|
5657
|
-
* Name
|
|
5658
|
-
* @description A human friendly name of the agent.
|
|
5659
|
-
*/
|
|
5660
|
-
name: string;
|
|
5661
|
-
/**
|
|
5662
|
-
* Role
|
|
5663
|
-
* @description The agent's role within the organization.
|
|
5664
|
-
*/
|
|
5665
|
-
role: string;
|
|
5666
|
-
/**
|
|
5667
|
-
* Developed By
|
|
5668
|
-
* @description A human-friendly name of the organization that developed this agent.
|
|
5669
|
-
*/
|
|
5670
|
-
developed_by: string;
|
|
5671
|
-
/**
|
|
5672
|
-
* Default Spoken Language
|
|
5673
|
-
* @description The agent's primary language. This must be specified in the ISO 639-3 format.
|
|
5674
|
-
*/
|
|
5675
|
-
default_spoken_language: string;
|
|
5676
|
-
/** @description Relationship of the agent to its developer. */
|
|
5677
|
-
relationship_to_developer: components["schemas"]["amigo_lib__mongo__collections__agent__Agent__Identity__RelationshipToDeveloper"];
|
|
5678
|
-
};
|
|
5679
|
-
/** RelationshipToDeveloper */
|
|
5680
|
-
amigo_lib__mongo__collections__agent__Agent__Identity__RelationshipToDeveloper: {
|
|
5681
|
-
/**
|
|
5682
|
-
* Ownership
|
|
5683
|
-
* @description The agent's belief of which entity owns it.
|
|
5684
|
-
*/
|
|
5685
|
-
ownership: string;
|
|
5686
|
-
/**
|
|
5687
|
-
* Type
|
|
5688
|
-
* @description The entity that the agent regards itself as.
|
|
5689
|
-
*/
|
|
5690
|
-
type: string;
|
|
5691
|
-
/**
|
|
5692
|
-
* Conversation Visibility
|
|
5693
|
-
* @description Whether the agent believes that its owner can see its conversations with clients.
|
|
5694
|
-
*/
|
|
5695
|
-
conversation_visibility: string;
|
|
5696
|
-
/**
|
|
5697
|
-
* Thought Visibility
|
|
5698
|
-
* @description Whether the agent believes that its owner can see its inner thoughts when engaging in conversations with its clients.
|
|
5699
|
-
*/
|
|
5700
|
-
thought_visibility: string;
|
|
5701
|
-
};
|
|
5702
|
-
/** VoiceConfig */
|
|
5703
|
-
amigo_lib__mongo__collections__agent__Agent__VoiceConfig: {
|
|
5704
|
-
/**
|
|
5705
|
-
* Voice Id
|
|
5706
|
-
* @description The Elevenlabs voice ID for this agent.
|
|
5707
|
-
*/
|
|
5708
|
-
voice_id: string;
|
|
5709
|
-
/**
|
|
5710
|
-
* Stability
|
|
5711
|
-
* @description How stable the voice is and the randomness between each generation. The higher the more stable the voice is.
|
|
5712
|
-
*/
|
|
5713
|
-
stability: number;
|
|
5714
|
-
/**
|
|
5715
|
-
* Similarity Boost
|
|
5716
|
-
* @description How closely the AI should adhere to the original voice when attempting to replicate it. The higher the more similar the generated audio is to the
|
|
5717
|
-
* original voice.
|
|
5718
|
-
*/
|
|
5719
|
-
similarity_boost: number;
|
|
5720
|
-
/**
|
|
5721
|
-
* Style
|
|
5722
|
-
* @description How much to exaggerate the original voice styles of the speaker. The higher the more exaggeration there is.
|
|
5723
|
-
*/
|
|
5724
|
-
style: number;
|
|
6450
|
+
/** UserInfo */
|
|
6451
|
+
amigo_lib__mongo__collections__agent__Agent__UserInfo: {
|
|
6452
|
+
/** Org Id */
|
|
6453
|
+
org_id: string;
|
|
6454
|
+
/** User Id */
|
|
6455
|
+
user_id: string;
|
|
5725
6456
|
};
|
|
5726
6457
|
/** UserInfo */
|
|
5727
6458
|
amigo_lib__mongo__collections__api_key__APIKey__UserInfo: {
|
|
@@ -5776,77 +6507,41 @@ export interface components {
|
|
|
5776
6507
|
* - If `ephemeral`, the result of the tool call is only provided to the current LLM interaction. Any future LLM interactions will not see this tool result.
|
|
5777
6508
|
* - If `persisted-preferred`, the result of the tool call is reflected in all future LLM interactions if it's less than 5000 characters long. Otherwise, it's only visible in the current LLM interaction.
|
|
5778
6509
|
* - If `persisted`, the result of the tool call is reflected in all future LLM interactions, unless it's more than 5000 characters long, in which case an error is thrown. */
|
|
5779
|
-
result_persistence: components["schemas"]["ResultPersistence"];
|
|
5780
|
-
/**
|
|
5781
|
-
* Tool Name
|
|
5782
|
-
* @description An identifier of the tool that will be displayed in the description of this dynamic behavior set. This could be simply the name of the tool, or one augmented with
|
|
5783
|
-
* the context of the dynamic behavior.
|
|
5784
|
-
*/
|
|
5785
|
-
tool_name: string;
|
|
5786
|
-
};
|
|
5787
|
-
/** UserInfo */
|
|
5788
|
-
amigo_lib__mongo__collections__metric__Metric__UserInfo: {
|
|
5789
|
-
/** Org Id */
|
|
5790
|
-
org_id: string;
|
|
5791
|
-
/** User Id */
|
|
5792
|
-
user_id: string;
|
|
5793
|
-
};
|
|
5794
|
-
/** UserInfo */
|
|
5795
|
-
amigo_lib__mongo__collections__metric_evaluation_result__MetricEvaluationResult__ManualEvaluationSource__UserInfo: {
|
|
5796
|
-
/** Org Id */
|
|
5797
|
-
org_id: string;
|
|
5798
|
-
/** User Id */
|
|
5799
|
-
user_id: string;
|
|
5800
|
-
};
|
|
5801
|
-
/** PermissionGrant */
|
|
5802
|
-
amigo_lib__mongo__collections__role__Role__PermissionGrant: {
|
|
5803
|
-
/**
|
|
5804
|
-
* Action
|
|
5805
|
-
* @description Whether this grant allows or denies the specified access.
|
|
5806
|
-
* @enum {string}
|
|
5807
|
-
*/
|
|
5808
|
-
action: "Allow" | "Deny";
|
|
5809
|
-
/**
|
|
5810
|
-
* Permission Name
|
|
5811
|
-
* @description The name of the permission.
|
|
5812
|
-
*/
|
|
5813
|
-
permission_name: string;
|
|
5814
|
-
/**
|
|
5815
|
-
* Conditions
|
|
5816
|
-
* @description A dictionary of attribute name to condition that must be met for this grant to be applicable.
|
|
5817
|
-
*/
|
|
5818
|
-
conditions: {
|
|
5819
|
-
[key: string]: components["schemas"]["Condition"];
|
|
5820
|
-
};
|
|
5821
|
-
/**
|
|
5822
|
-
* Description
|
|
5823
|
-
* @description An optional explanation of this grant.
|
|
5824
|
-
*/
|
|
5825
|
-
description?: string | null;
|
|
5826
|
-
};
|
|
5827
|
-
/**
|
|
5828
|
-
* VersionSet
|
|
5829
|
-
* @description A version set pins the agent, state machine, and model version used by this service.
|
|
5830
|
-
*/
|
|
5831
|
-
amigo_lib__mongo__collections__service__Service__VersionSet: {
|
|
5832
|
-
/**
|
|
5833
|
-
* Agent Version Number
|
|
5834
|
-
* @description The version number of the agent to be used. If None, the latest agent version will be used.
|
|
5835
|
-
*/
|
|
5836
|
-
agent_version_number: number | null;
|
|
5837
|
-
/**
|
|
5838
|
-
* Service Hierarchical State Machine Version Number
|
|
5839
|
-
* @description The version number of the state machine to be used. If None, the latest state machine version will be used.
|
|
5840
|
-
*/
|
|
5841
|
-
service_hierarchical_state_machine_version_number: number | null;
|
|
5842
|
-
/**
|
|
5843
|
-
* Llm Model Preferences
|
|
5844
|
-
* @description A map of `LLMInteraction` name to the preferred LLM config that can be used for that interaction.
|
|
5845
|
-
* If an `LLMInteraction` is not in this map, the default model config will be used (defined in each `LLMInteraction` instance).
|
|
6510
|
+
result_persistence: components["schemas"]["ResultPersistence"];
|
|
6511
|
+
/**
|
|
6512
|
+
* Tool Name
|
|
6513
|
+
* @description An identifier of the tool that will be displayed in the description of this dynamic behavior set. This could be simply the name of the tool, or one augmented with
|
|
6514
|
+
* the context of the dynamic behavior.
|
|
5846
6515
|
*/
|
|
5847
|
-
|
|
5848
|
-
|
|
5849
|
-
|
|
6516
|
+
tool_name: string;
|
|
6517
|
+
};
|
|
6518
|
+
/** UserInfo */
|
|
6519
|
+
amigo_lib__mongo__collections__dynamic_behavior_set_version__DynamicBehaviorSetVersion__UserInfo: {
|
|
6520
|
+
/** Org Id */
|
|
6521
|
+
org_id: string;
|
|
6522
|
+
/** User Id */
|
|
6523
|
+
user_id: string;
|
|
6524
|
+
};
|
|
6525
|
+
/** UserInfo */
|
|
6526
|
+
amigo_lib__mongo__collections__metric__Metric__UserInfo: {
|
|
6527
|
+
/** Org Id */
|
|
6528
|
+
org_id: string;
|
|
6529
|
+
/** User Id */
|
|
6530
|
+
user_id: string;
|
|
6531
|
+
};
|
|
6532
|
+
/** UserInfo */
|
|
6533
|
+
amigo_lib__mongo__collections__metric_evaluation_result__MetricEvaluationResult__ManualEvaluationSource__UserInfo: {
|
|
6534
|
+
/** Org Id */
|
|
6535
|
+
org_id: string;
|
|
6536
|
+
/** User Id */
|
|
6537
|
+
user_id: string;
|
|
6538
|
+
};
|
|
6539
|
+
/** UserInfo */
|
|
6540
|
+
amigo_lib__mongo__collections__service__Service__UserInfo: {
|
|
6541
|
+
/** Org Id */
|
|
6542
|
+
org_id: string;
|
|
6543
|
+
/** User Id */
|
|
6544
|
+
user_id: string;
|
|
5850
6545
|
};
|
|
5851
6546
|
/**
|
|
5852
6547
|
* ToolCallSpec
|
|
@@ -5886,6 +6581,13 @@ export interface components {
|
|
|
5886
6581
|
result_persistence: components["schemas"]["ResultPersistence"];
|
|
5887
6582
|
};
|
|
5888
6583
|
/** UserInfo */
|
|
6584
|
+
amigo_lib__mongo__collections__service_hierarchical_state_machine__ServiceHierarchicalStateMachine__UserInfo: {
|
|
6585
|
+
/** Org Id */
|
|
6586
|
+
org_id: string;
|
|
6587
|
+
/** User Id */
|
|
6588
|
+
user_id: string;
|
|
6589
|
+
};
|
|
6590
|
+
/** UserInfo */
|
|
5889
6591
|
amigo_lib__mongo__collections__simulation_persona__SimulationPersona__UserInfo: {
|
|
5890
6592
|
/** Org Id */
|
|
5891
6593
|
org_id: string;
|
|
@@ -5893,19 +6595,25 @@ export interface components {
|
|
|
5893
6595
|
user_id: string;
|
|
5894
6596
|
};
|
|
5895
6597
|
/** UserInfo */
|
|
6598
|
+
amigo_lib__mongo__collections__simulation_persona_version__SimulationPersonaVersion__UserInfo: {
|
|
6599
|
+
/** Org Id */
|
|
6600
|
+
org_id: string;
|
|
6601
|
+
/** User Id */
|
|
6602
|
+
user_id: string;
|
|
6603
|
+
};
|
|
6604
|
+
/** UserInfo */
|
|
5896
6605
|
amigo_lib__mongo__collections__simulation_scenario__SimulationScenario__UserInfo: {
|
|
5897
6606
|
/** Org Id */
|
|
5898
6607
|
org_id: string;
|
|
5899
6608
|
/** User Id */
|
|
5900
6609
|
user_id: string;
|
|
5901
6610
|
};
|
|
5902
|
-
/**
|
|
5903
|
-
|
|
5904
|
-
/**
|
|
5905
|
-
|
|
5906
|
-
/**
|
|
5907
|
-
|
|
5908
|
-
criterion: components["schemas"]["SuccessCriterionDescription-Output"];
|
|
6611
|
+
/** UserInfo */
|
|
6612
|
+
amigo_lib__mongo__collections__simulation_scenario_version__SimulationScenarioVersion__UserInfo: {
|
|
6613
|
+
/** Org Id */
|
|
6614
|
+
org_id: string;
|
|
6615
|
+
/** User Id */
|
|
6616
|
+
user_id: string;
|
|
5909
6617
|
};
|
|
5910
6618
|
/** UserInfo */
|
|
5911
6619
|
amigo_lib__mongo__collections__simulation_unit_test__SimulationUnitTest__UserInfo: {
|
|
@@ -5914,20 +6622,6 @@ export interface components {
|
|
|
5914
6622
|
/** User Id */
|
|
5915
6623
|
user_id: string;
|
|
5916
6624
|
};
|
|
5917
|
-
/** Tag */
|
|
5918
|
-
amigo_lib__mongo__collections__simulation_unit_test_set__SimulationUnitTestSet__Tag: {
|
|
5919
|
-
/** Key */
|
|
5920
|
-
key: string;
|
|
5921
|
-
/** Value */
|
|
5922
|
-
value: string | null;
|
|
5923
|
-
};
|
|
5924
|
-
/** UnitTestRunDescriptor */
|
|
5925
|
-
amigo_lib__mongo__collections__simulation_unit_test_set__SimulationUnitTestSet__UnitTestRunDescriptor: {
|
|
5926
|
-
/** Unit Test Id */
|
|
5927
|
-
unit_test_id: string;
|
|
5928
|
-
/** Run Count */
|
|
5929
|
-
run_count: number;
|
|
5930
|
-
};
|
|
5931
6625
|
/** UserInfo */
|
|
5932
6626
|
amigo_lib__mongo__collections__simulation_unit_test_set__SimulationUnitTestSet__UserInfo: {
|
|
5933
6627
|
/** Org Id */
|
|
@@ -5956,14 +6650,19 @@ export interface components {
|
|
|
5956
6650
|
/** User Id */
|
|
5957
6651
|
user_id: string;
|
|
5958
6652
|
};
|
|
5959
|
-
/**
|
|
5960
|
-
|
|
5961
|
-
/**
|
|
5962
|
-
|
|
5963
|
-
/**
|
|
5964
|
-
|
|
5965
|
-
|
|
5966
|
-
|
|
6653
|
+
/** UserInfo */
|
|
6654
|
+
amigo_lib__mongo__collections__temporary_permission_grant__TemporaryPermissionGrant__UserInfo: {
|
|
6655
|
+
/** Org Id */
|
|
6656
|
+
org_id: string;
|
|
6657
|
+
/** User Id */
|
|
6658
|
+
user_id: string;
|
|
6659
|
+
};
|
|
6660
|
+
/** UserInfo */
|
|
6661
|
+
amigo_lib__mongo__collections__tool__Tool__UserInfo: {
|
|
6662
|
+
/** Org Id */
|
|
6663
|
+
org_id: string;
|
|
6664
|
+
/** User Id */
|
|
6665
|
+
user_id: string;
|
|
5967
6666
|
};
|
|
5968
6667
|
/** UserInfo */
|
|
5969
6668
|
amigo_lib__mongo__collections__tool_version__ToolVersion__UserInfo: {
|
|
@@ -5978,57 +6677,10 @@ export interface components {
|
|
|
5978
6677
|
*/
|
|
5979
6678
|
user_org_id: string;
|
|
5980
6679
|
};
|
|
5981
|
-
/**
|
|
5982
|
-
* Preferences
|
|
5983
|
-
* @description Preferences that the user can set to customize their experience.
|
|
5984
|
-
*/
|
|
5985
|
-
amigo_lib__mongo__collections__user__User__Preferences: {
|
|
5986
|
-
/**
|
|
5987
|
-
* Enable Response Recommendation
|
|
5988
|
-
* @description Whether to automatically recommend responses to the user if the user hasn't replied to the coach for a while.
|
|
5989
|
-
* @default false
|
|
5990
|
-
*/
|
|
5991
|
-
enable_response_recommendation?: boolean;
|
|
5992
|
-
/**
|
|
5993
|
-
* Preferred Language
|
|
5994
|
-
* @description The preferred language to use for the user. This field must be in the ISO 639-3 format. The agent will attempt to converse
|
|
5995
|
-
* with the user in this language. If not set, the agent's default spoken language is used.
|
|
5996
|
-
*/
|
|
5997
|
-
preferred_language?: string | null;
|
|
5998
|
-
/**
|
|
5999
|
-
* Conversations Visible To Admins
|
|
6000
|
-
* @description Whether the user's conversations are visible to the admins.
|
|
6001
|
-
* @default true
|
|
6002
|
-
*/
|
|
6003
|
-
conversations_visible_to_admins?: boolean;
|
|
6004
|
-
/**
|
|
6005
|
-
* User Model Visible To Admins
|
|
6006
|
-
* @description Whether the user's user model is visible to the admins.
|
|
6007
|
-
* @default true
|
|
6008
|
-
*/
|
|
6009
|
-
user_model_visible_to_admins?: boolean;
|
|
6010
|
-
/**
|
|
6011
|
-
* Timezone
|
|
6012
|
-
* @description The user's timezone in the IANA tz database format for all users in this organization. If not specified, UTC is used.
|
|
6013
|
-
*/
|
|
6014
|
-
timezone?: string | null;
|
|
6015
|
-
/**
|
|
6016
|
-
* Audio Keyterms
|
|
6017
|
-
* @description A list of keyterms that are easy to get wrong during audio transcriptions that tend to occur commonly in audio sessions for this user.
|
|
6018
|
-
* @default []
|
|
6019
|
-
*/
|
|
6020
|
-
audio_keyterms?: string[];
|
|
6021
|
-
};
|
|
6022
|
-
/** UserDimension */
|
|
6023
|
-
amigo_lib__mongo__collections__user__User__UserModel__UserDimension: {
|
|
6024
|
-
/** Description */
|
|
6025
|
-
description: string;
|
|
6026
|
-
/** Tags */
|
|
6027
|
-
tags: string[];
|
|
6028
|
-
};
|
|
6029
6680
|
amigo_lib__pydantic__base_model__StrippedNonemptyString__1: string;
|
|
6030
6681
|
amigo_lib__pydantic__base_model__StrippedNonemptyString__2: string;
|
|
6031
6682
|
amigo_lib__pydantic__base_model__StrippedNonemptyString__3: string;
|
|
6683
|
+
amigo_lib__pydantic__base_model__StrippedNonemptyString__4: string;
|
|
6032
6684
|
src__app__amigo__service__conversation__Action: components["schemas"]["SelectDynamicBehaviorAgentActionEvent"] | components["schemas"]["CheckIfActiveMemoryNeededAgentActionEvent"] | components["schemas"]["ExtractActiveMemoriesAgentActionEvent"] | components["schemas"]["NavigateStateMachineAgentActionEvent"] | components["schemas"]["EngageUserAgentActionEvent"];
|
|
6033
6685
|
/** Response */
|
|
6034
6686
|
admin__get_models__Response: {
|
|
@@ -6306,7 +6958,7 @@ export interface components {
|
|
|
6306
6958
|
* Actions
|
|
6307
6959
|
* @description The action to perform when the dynamic behavior set version is activated.
|
|
6308
6960
|
*/
|
|
6309
|
-
actions: (components["schemas"]["
|
|
6961
|
+
actions: (components["schemas"]["InjectInstructionAction-Input"] | components["schemas"]["dynamic_behavior_set__create_dynamic_behavior_set__Request__InitialVersion__ChangeToolCandidatesAction"])[];
|
|
6310
6962
|
};
|
|
6311
6963
|
/** ChangeToolCandidatesAction */
|
|
6312
6964
|
dynamic_behavior_set__create_dynamic_behavior_set__Request__InitialVersion__ChangeToolCandidatesAction: {
|
|
@@ -6341,7 +6993,7 @@ export interface components {
|
|
|
6341
6993
|
* Audio Fillers
|
|
6342
6994
|
* @description A list of audio fillers to play in audio mode if the tool is taking a long time.
|
|
6343
6995
|
*/
|
|
6344
|
-
audio_fillers: components["schemas"]["
|
|
6996
|
+
audio_fillers: components["schemas"]["amigo_lib__pydantic__base_model__StrippedNonemptyString__1"][];
|
|
6345
6997
|
/**
|
|
6346
6998
|
* Audio Filler Triggered After
|
|
6347
6999
|
* @description The number of seconds to wait before playing an audio filler.
|
|
@@ -6376,7 +7028,7 @@ export interface components {
|
|
|
6376
7028
|
* Actions
|
|
6377
7029
|
* @description The action to perform when the dynamic behavior set version is activated.
|
|
6378
7030
|
*/
|
|
6379
|
-
actions: (components["schemas"]["
|
|
7031
|
+
actions: (components["schemas"]["InjectInstructionAction-Input"] | components["schemas"]["dynamic_behavior_set__create_dynamic_behavior_set_version__Request__ChangeToolCandidatesAction"])[];
|
|
6380
7032
|
};
|
|
6381
7033
|
/** ChangeToolCandidatesAction */
|
|
6382
7034
|
dynamic_behavior_set__create_dynamic_behavior_set_version__Request__ChangeToolCandidatesAction: {
|
|
@@ -6411,7 +7063,7 @@ export interface components {
|
|
|
6411
7063
|
* Audio Fillers
|
|
6412
7064
|
* @description A list of audio fillers to play in audio mode if the tool is taking a long time.
|
|
6413
7065
|
*/
|
|
6414
|
-
audio_fillers: components["schemas"]["
|
|
7066
|
+
audio_fillers: components["schemas"]["amigo_lib__pydantic__base_model__StrippedNonemptyString__1"][];
|
|
6415
7067
|
/**
|
|
6416
7068
|
* Audio Filler Triggered After
|
|
6417
7069
|
* @description The number of seconds to wait before playing an audio filler.
|
|
@@ -6427,20 +7079,6 @@ export interface components {
|
|
|
6427
7079
|
* the context of the dynamic behavior. */
|
|
6428
7080
|
tool_name: components["schemas"]["amigo_lib__pydantic__base_model__StrippedNonemptyString__1"];
|
|
6429
7081
|
};
|
|
6430
|
-
/** InjectInstructionAction */
|
|
6431
|
-
dynamic_behavior_set__create_dynamic_behavior_set_version__Request__InjectInstructionAction: {
|
|
6432
|
-
/**
|
|
6433
|
-
* @description discriminator enum property added by openapi-typescript
|
|
6434
|
-
* @enum {string}
|
|
6435
|
-
*/
|
|
6436
|
-
type: "dynamic_behavior_set__create_dynamic_behavior_set_version__Request__InjectInstructionAction";
|
|
6437
|
-
instruction: components["schemas"]["amigo_lib__pydantic__base_model__StrippedNonemptyString__1"];
|
|
6438
|
-
/**
|
|
6439
|
-
* Overrides Instructions
|
|
6440
|
-
* @description During injection, whether the original instruction of the state is overriden with this instruction.
|
|
6441
|
-
*/
|
|
6442
|
-
overrides_instructions: boolean;
|
|
6443
|
-
};
|
|
6444
7082
|
/** Response */
|
|
6445
7083
|
dynamic_behavior_set__create_dynamic_behavior_set_version__Response: {
|
|
6446
7084
|
/**
|
|
@@ -6491,7 +7129,7 @@ export interface components {
|
|
|
6491
7129
|
* Dynamic Behavior Sets
|
|
6492
7130
|
* @description The retrieved dynamic behavior sets.
|
|
6493
7131
|
*/
|
|
6494
|
-
dynamic_behavior_sets: components["schemas"]["
|
|
7132
|
+
dynamic_behavior_sets: components["schemas"]["DynamicBehaviorSetInstance"][];
|
|
6495
7133
|
/**
|
|
6496
7134
|
* Has More
|
|
6497
7135
|
* @description Whether there are more dynamic behavior sets to retrieve.
|
|
@@ -6532,34 +7170,7 @@ export interface components {
|
|
|
6532
7170
|
* Dynamic Behavior Sets
|
|
6533
7171
|
* @description The retrieved dynamic behavior sets.
|
|
6534
7172
|
*/
|
|
6535
|
-
dynamic_behavior_sets: components["schemas"]["
|
|
6536
|
-
};
|
|
6537
|
-
/** DynamicBehaviorSetInstance */
|
|
6538
|
-
dynamic_behavior_set__search_dynamic_behavior_sets__Response__DynamicBehaviorSetInstance: {
|
|
6539
|
-
/** Id */
|
|
6540
|
-
id: string;
|
|
6541
|
-
/** Name */
|
|
6542
|
-
name: string;
|
|
6543
|
-
/** Is Active */
|
|
6544
|
-
is_active: boolean;
|
|
6545
|
-
/** Applied To Services */
|
|
6546
|
-
applied_to_services: string[];
|
|
6547
|
-
/** Tags */
|
|
6548
|
-
tags: {
|
|
6549
|
-
[key: string]: string | null;
|
|
6550
|
-
};
|
|
6551
|
-
/**
|
|
6552
|
-
* Created At
|
|
6553
|
-
* Format: date-time
|
|
6554
|
-
*/
|
|
6555
|
-
created_at: string;
|
|
6556
|
-
creator: components["schemas"]["amigo_lib__mongo__collections__dynamic_behavior_set__DynamicBehaviorSet__UserInfo"];
|
|
6557
|
-
/**
|
|
6558
|
-
* Updated At
|
|
6559
|
-
* Format: date-time
|
|
6560
|
-
*/
|
|
6561
|
-
updated_at: string;
|
|
6562
|
-
updated_by: components["schemas"]["amigo_lib__mongo__collections__dynamic_behavior_set__DynamicBehaviorSet__UserInfo"];
|
|
7173
|
+
dynamic_behavior_sets: components["schemas"]["DynamicBehaviorSetInstance"][];
|
|
6563
7174
|
};
|
|
6564
7175
|
/** Request */
|
|
6565
7176
|
dynamic_behavior_set__update_dynamic_behavior_set__Request: {
|
|
@@ -6765,7 +7376,7 @@ export interface components {
|
|
|
6765
7376
|
/** @description The agent's initials. */
|
|
6766
7377
|
initials?: components["schemas"]["amigo_lib__pydantic__base_model__StrippedNonemptyString__3"] | null;
|
|
6767
7378
|
/** @description Information about the agent's identity. */
|
|
6768
|
-
identity?: components["schemas"]["
|
|
7379
|
+
identity?: components["schemas"]["Identity-Input"] | null;
|
|
6769
7380
|
/** @description A description of the agent's background. */
|
|
6770
7381
|
background?: components["schemas"]["amigo_lib__pydantic__base_model__StrippedNonemptyString__1"] | null;
|
|
6771
7382
|
/**
|
|
@@ -6778,41 +7389,8 @@ export interface components {
|
|
|
6778
7389
|
* @description A list of descriptions that illustrate the communication styles of this agent.
|
|
6779
7390
|
*/
|
|
6780
7391
|
communication_patterns?: components["schemas"]["amigo_lib__pydantic__base_model__StrippedNonemptyString__1"][] | null;
|
|
6781
|
-
/** @description The
|
|
6782
|
-
voice_config?: components["schemas"]["
|
|
6783
|
-
};
|
|
6784
|
-
/** Identity */
|
|
6785
|
-
organization__create_agent_version__Request__Identity: {
|
|
6786
|
-
name: components["schemas"]["amigo_lib__pydantic__base_model__StrippedNonemptyString__1"];
|
|
6787
|
-
role: components["schemas"]["amigo_lib__pydantic__base_model__StrippedNonemptyString__1"];
|
|
6788
|
-
developed_by: components["schemas"]["amigo_lib__pydantic__base_model__StrippedNonemptyString__1"];
|
|
6789
|
-
/**
|
|
6790
|
-
* Default Spoken Language
|
|
6791
|
-
* @enum {string}
|
|
6792
|
-
*/
|
|
6793
|
-
default_spoken_language: "aaa" | "aab" | "aac" | "aad" | "aae" | "aaf" | "aag" | "aah" | "aai" | "aak" | "aal" | "aan" | "aao" | "aap" | "aaq" | "aar" | "aas" | "aat" | "aau" | "aaw" | "aax" | "aaz" | "aba" | "abb" | "abc" | "abd" | "abe" | "abf" | "abg" | "abh" | "abi" | "abj" | "abk" | "abl" | "abm" | "abn" | "abo" | "abp" | "abq" | "abr" | "abs" | "abt" | "abu" | "abv" | "abw" | "abx" | "aby" | "abz" | "aca" | "acb" | "acd" | "ace" | "acf" | "ach" | "aci" | "ack" | "acl" | "acm" | "acn" | "acp" | "acq" | "acr" | "acs" | "act" | "acu" | "acv" | "acw" | "acx" | "acy" | "acz" | "ada" | "adb" | "add" | "ade" | "adf" | "adg" | "adh" | "adi" | "adj" | "adl" | "adn" | "ado" | "adq" | "adr" | "ads" | "adt" | "adu" | "adw" | "adx" | "ady" | "adz" | "aea" | "aeb" | "aec" | "aed" | "aee" | "aek" | "ael" | "aem" | "aen" | "aeq" | "aer" | "aes" | "aeu" | "aew" | "aey" | "aez" | "afb" | "afd" | "afe" | "afg" | "afh" | "afi" | "afk" | "afn" | "afo" | "afp" | "afr" | "afs" | "aft" | "afu" | "afz" | "aga" | "agb" | "agc" | "agd" | "age" | "agf" | "agg" | "agh" | "agi" | "agj" | "agk" | "agl" | "agm" | "agn" | "ago" | "agq" | "agr" | "ags" | "agt" | "agu" | "agv" | "agw" | "agx" | "agy" | "agz" | "aha" | "ahb" | "ahg" | "ahh" | "ahi" | "ahk" | "ahl" | "ahm" | "ahn" | "aho" | "ahp" | "ahr" | "ahs" | "aht" | "aia" | "aib" | "aic" | "aid" | "aie" | "aif" | "aig" | "aih" | "aii" | "aij" | "aik" | "ail" | "aim" | "ain" | "aio" | "aip" | "aiq" | "air" | "ait" | "aiw" | "aix" | "aiy" | "aja" | "ajg" | "aji" | "ajn" | "ajp" | "ajs" | "aju" | "ajw" | "ajz" | "aka" | "akb" | "akc" | "akd" | "ake" | "akf" | "akg" | "akh" | "aki" | "akj" | "akk" | "akl" | "akm" | "ako" | "akp" | "akq" | "akr" | "aks" | "akt" | "aku" | "akv" | "akw" | "akx" | "aky" | "akz" | "ala" | "alc" | "ald" | "ale" | "alf" | "alh" | "ali" | "alj" | "alk" | "all" | "alm" | "aln" | "alo" | "alp" | "alq" | "alr" | "als" | "alt" | "alu" | "alw" | "alx" | "aly" | "alz" | "ama" | "amb" | "amc" | "ame" | "amf" | "amg" | "amh" | "ami" | "amj" | "amk" | "aml" | "amm" | "amn" | "amo" | "amp" | "amq" | "amr" | "ams" | "amt" | "amu" | "amv" | "amw" | "amx" | "amy" | "amz" | "ana" | "anb" | "anc" | "and" | "ane" | "anf" | "ang" | "anh" | "ani" | "anj" | "ank" | "anl" | "anm" | "ann" | "ano" | "anp" | "anq" | "anr" | "ans" | "ant" | "anu" | "anv" | "anw" | "anx" | "any" | "anz" | "aoa" | "aob" | "aoc" | "aod" | "aoe" | "aof" | "aog" | "aoi" | "aoj" | "aok" | "aol" | "aom" | "aon" | "aor" | "aos" | "aot" | "aou" | "aox" | "aoz" | "apb" | "apc" | "apd" | "ape" | "apf" | "apg" | "aph" | "api" | "apj" | "apk" | "apl" | "apm" | "apn" | "apo" | "app" | "apq" | "apr" | "aps" | "apt" | "apu" | "apv" | "apw" | "apx" | "apy" | "apz" | "aqc" | "aqd" | "aqg" | "aqk" | "aqm" | "aqn" | "aqp" | "aqr" | "aqt" | "aqz" | "ara" | "arb" | "arc" | "ard" | "are" | "arg" | "arh" | "ari" | "arj" | "ark" | "arl" | "arn" | "aro" | "arp" | "arq" | "arr" | "ars" | "aru" | "arv" | "arw" | "arx" | "ary" | "arz" | "asa" | "asb" | "asc" | "ase" | "asf" | "asg" | "ash" | "asi" | "asj" | "ask" | "asl" | "asm" | "asn" | "aso" | "asp" | "asq" | "asr" | "ass" | "ast" | "asu" | "asv" | "asw" | "asx" | "asy" | "asz" | "ata" | "atb" | "atc" | "atd" | "ate" | "atg" | "ati" | "atj" | "atk" | "atl" | "atm" | "atn" | "ato" | "atp" | "atq" | "atr" | "ats" | "att" | "atu" | "atv" | "atw" | "atx" | "aty" | "atz" | "aua" | "aub" | "auc" | "aud" | "aug" | "auh" | "aui" | "auj" | "auk" | "aul" | "aum" | "aun" | "auo" | "aup" | "auq" | "aur" | "aut" | "auu" | "auw" | "aux" | "auy" | "auz" | "ava" | "avb" | "avd" | "ave" | "avi" | "avk" | "avl" | "avm" | "avn" | "avo" | "avs" | "avt" | "avu" | "avv" | "awa" | "awb" | "awc" | "awe" | "awg" | "awh" | "awi" | "awk" | "awm" | "awn" | "awo" | "awr" | "aws" | "awt" | "awu" | "awv" | "aww" | "awx" | "awy" | "axb" | "axe" | "axg" | "axk" | "axl" | "axm" | "axx" | "aya" | "ayb" | "ayc" | "ayd" | "aye" | "ayg" | "ayh" | "ayi" | "ayk" | "ayl" | "aym" | "ayn" | "ayo" | "ayp" | "ayq" | "ayr" | "ays" | "ayt" | "ayu" | "ayz" | "aza" | "azb" | "azd" | "aze" | "azg" | "azj" | "azm" | "azn" | "azo" | "azt" | "azz" | "baa" | "bab" | "bac" | "bae" | "baf" | "bag" | "bah" | "baj" | "bak" | "bal" | "bam" | "ban" | "bao" | "bap" | "bar" | "bas" | "bau" | "bav" | "baw" | "bax" | "bay" | "bba" | "bbb" | "bbc" | "bbd" | "bbe" | "bbf" | "bbg" | "bbh" | "bbi" | "bbj" | "bbk" | "bbl" | "bbm" | "bbn" | "bbo" | "bbp" | "bbq" | "bbr" | "bbs" | "bbt" | "bbu" | "bbv" | "bbw" | "bbx" | "bby" | "bca" | "bcb" | "bcc" | "bcd" | "bce" | "bcf" | "bcg" | "bch" | "bci" | "bcj" | "bck" | "bcl" | "bcm" | "bcn" | "bco" | "bcp" | "bcq" | "bcr" | "bcs" | "bct" | "bcu" | "bcv" | "bcw" | "bcy" | "bcz" | "bda" | "bdb" | "bdc" | "bdd" | "bde" | "bdf" | "bdg" | "bdh" | "bdi" | "bdj" | "bdk" | "bdl" | "bdm" | "bdn" | "bdo" | "bdp" | "bdq" | "bdr" | "bds" | "bdt" | "bdu" | "bdv" | "bdw" | "bdx" | "bdy" | "bdz" | "bea" | "beb" | "bec" | "bed" | "bee" | "bef" | "beg" | "beh" | "bei" | "bej" | "bek" | "bel" | "bem" | "ben" | "beo" | "bep" | "beq" | "bes" | "bet" | "beu" | "bev" | "bew" | "bex" | "bey" | "bez" | "bfa" | "bfb" | "bfc" | "bfd" | "bfe" | "bff" | "bfg" | "bfh" | "bfi" | "bfj" | "bfk" | "bfl" | "bfm" | "bfn" | "bfo" | "bfp" | "bfq" | "bfr" | "bfs" | "bft" | "bfu" | "bfw" | "bfx" | "bfy" | "bfz" | "bga" | "bgb" | "bgc" | "bgd" | "bge" | "bgf" | "bgg" | "bgi" | "bgj" | "bgk" | "bgl" | "bgn" | "bgo" | "bgp" | "bgq" | "bgr" | "bgs" | "bgt" | "bgu" | "bgv" | "bgw" | "bgx" | "bgy" | "bgz" | "bha" | "bhb" | "bhc" | "bhd" | "bhe" | "bhf" | "bhg" | "bhh" | "bhi" | "bhj" | "bhl" | "bhm" | "bhn" | "bho" | "bhp" | "bhq" | "bhr" | "bhs" | "bht" | "bhu" | "bhv" | "bhw" | "bhx" | "bhy" | "bhz" | "bia" | "bib" | "bid" | "bie" | "bif" | "big" | "bik" | "bil" | "bim" | "bin" | "bio" | "bip" | "biq" | "bir" | "bis" | "bit" | "biu" | "biv" | "biw" | "bix" | "biy" | "biz" | "bja" | "bjb" | "bjc" | "bje" | "bjf" | "bjg" | "bjh" | "bji" | "bjj" | "bjk" | "bjl" | "bjm" | "bjn" | "bjo" | "bjp" | "bjr" | "bjs" | "bjt" | "bju" | "bjv" | "bjw" | "bjx" | "bjy" | "bjz" | "bka" | "bkc" | "bkd" | "bkf" | "bkg" | "bkh" | "bki" | "bkj" | "bkk" | "bkl" | "bkm" | "bkn" | "bko" | "bkp" | "bkq" | "bkr" | "bks" | "bkt" | "bku" | "bkv" | "bkw" | "bkx" | "bky" | "bkz" | "bla" | "blb" | "blc" | "bld" | "ble" | "blf" | "blh" | "bli" | "blj" | "blk" | "bll" | "blm" | "bln" | "blo" | "blp" | "blq" | "blr" | "bls" | "blt" | "blv" | "blw" | "blx" | "bly" | "blz" | "bma" | "bmb" | "bmc" | "bmd" | "bme" | "bmf" | "bmg" | "bmh" | "bmi" | "bmj" | "bmk" | "bml" | "bmm" | "bmn" | "bmo" | "bmp" | "bmq" | "bmr" | "bms" | "bmt" | "bmu" | "bmv" | "bmw" | "bmx" | "bmz" | "bna" | "bnb" | "bnc" | "bnd" | "bne" | "bnf" | "bng" | "bni" | "bnj" | "bnk" | "bnl" | "bnm" | "bnn" | "bno" | "bnp" | "bnq" | "bnr" | "bns" | "bnu" | "bnv" | "bnw" | "bnx" | "bny" | "bnz" | "boa" | "bob" | "bod" | "boe" | "bof" | "bog" | "boh" | "boi" | "boj" | "bok" | "bol" | "bom" | "bon" | "boo" | "bop" | "boq" | "bor" | "bos" | "bot" | "bou" | "bov" | "bow" | "box" | "boy" | "boz" | "bpa" | "bpc" | "bpd" | "bpe" | "bpg" | "bph" | "bpi" | "bpj" | "bpk" | "bpl" | "bpm" | "bpn" | "bpo" | "bpp" | "bpq" | "bpr" | "bps" | "bpt" | "bpu" | "bpv" | "bpw" | "bpx" | "bpy" | "bpz" | "bqa" | "bqb" | "bqc" | "bqd" | "bqf" | "bqg" | "bqh" | "bqi" | "bqj" | "bqk" | "bql" | "bqm" | "bqn" | "bqo" | "bqp" | "bqq" | "bqr" | "bqs" | "bqt" | "bqu" | "bqv" | "bqw" | "bqx" | "bqy" | "bqz" | "bra" | "brb" | "brc" | "brd" | "bre" | "brf" | "brg" | "brh" | "bri" | "brj" | "brk" | "brl" | "brm" | "brn" | "bro" | "brp" | "brq" | "brr" | "brs" | "brt" | "bru" | "brv" | "brw" | "brx" | "bry" | "brz" | "bsa" | "bsb" | "bsc" | "bse" | "bsf" | "bsg" | "bsh" | "bsi" | "bsj" | "bsk" | "bsl" | "bsm" | "bsn" | "bso" | "bsp" | "bsq" | "bsr" | "bss" | "bst" | "bsu" | "bsv" | "bsw" | "bsx" | "bsy" | "bta" | "btc" | "btd" | "bte" | "btf" | "btg" | "bth" | "bti" | "btj" | "btm" | "btn" | "bto" | "btp" | "btq" | "btr" | "bts" | "btt" | "btu" | "btv" | "btw" | "btx" | "bty" | "btz" | "bua" | "bub" | "buc" | "bud" | "bue" | "buf" | "bug" | "buh" | "bui" | "buj" | "buk" | "bul" | "bum" | "bun" | "buo" | "bup" | "buq" | "bus" | "but" | "buu" | "buv" | "buw" | "bux" | "buy" | "buz" | "bva" | "bvb" | "bvc" | "bvd" | "bve" | "bvf" | "bvg" | "bvh" | "bvi" | "bvj" | "bvk" | "bvl" | "bvm" | "bvn" | "bvo" | "bvp" | "bvq" | "bvr" | "bvt" | "bvu" | "bvv" | "bvw" | "bvx" | "bvy" | "bvz" | "bwa" | "bwb" | "bwc" | "bwd" | "bwe" | "bwf" | "bwg" | "bwh" | "bwi" | "bwj" | "bwk" | "bwl" | "bwm" | "bwn" | "bwo" | "bwp" | "bwq" | "bwr" | "bws" | "bwt" | "bwu" | "bww" | "bwx" | "bwy" | "bwz" | "bxa" | "bxb" | "bxc" | "bxd" | "bxe" | "bxf" | "bxg" | "bxh" | "bxi" | "bxj" | "bxk" | "bxl" | "bxm" | "bxn" | "bxo" | "bxp" | "bxq" | "bxr" | "bxs" | "bxu" | "bxv" | "bxw" | "bxz" | "bya" | "byb" | "byc" | "byd" | "bye" | "byf" | "byg" | "byh" | "byi" | "byj" | "byk" | "byl" | "bym" | "byn" | "byo" | "byp" | "byq" | "byr" | "bys" | "byt" | "byv" | "byw" | "byx" | "byz" | "bza" | "bzb" | "bzc" | "bzd" | "bze" | "bzf" | "bzg" | "bzh" | "bzi" | "bzj" | "bzk" | "bzl" | "bzm" | "bzn" | "bzo" | "bzp" | "bzq" | "bzr" | "bzs" | "bzt" | "bzu" | "bzv" | "bzw" | "bzx" | "bzy" | "bzz" | "caa" | "cab" | "cac" | "cad" | "cae" | "caf" | "cag" | "cah" | "caj" | "cak" | "cal" | "cam" | "can" | "cao" | "cap" | "caq" | "car" | "cas" | "cat" | "cav" | "caw" | "cax" | "cay" | "caz" | "cbb" | "cbc" | "cbd" | "cbg" | "cbi" | "cbj" | "cbk" | "cbl" | "cbn" | "cbo" | "cbq" | "cbr" | "cbs" | "cbt" | "cbu" | "cbv" | "cbw" | "cby" | "ccc" | "ccd" | "cce" | "ccg" | "cch" | "ccj" | "ccl" | "ccm" | "cco" | "ccp" | "ccr" | "cda" | "cde" | "cdf" | "cdh" | "cdi" | "cdj" | "cdm" | "cdn" | "cdo" | "cdr" | "cds" | "cdy" | "cdz" | "cea" | "ceb" | "ceg" | "cek" | "cen" | "ces" | "cet" | "cey" | "cfa" | "cfd" | "cfg" | "cfm" | "cga" | "cgc" | "cgg" | "cgk" | "cha" | "chb" | "chc" | "chd" | "che" | "chf" | "chg" | "chh" | "chj" | "chk" | "chl" | "chm" | "chn" | "cho" | "chp" | "chq" | "chr" | "cht" | "chu" | "chv" | "chw" | "chx" | "chy" | "chz" | "cia" | "cib" | "cic" | "cid" | "cie" | "cih" | "cik" | "cim" | "cin" | "cip" | "cir" | "ciw" | "ciy" | "cja" | "cje" | "cjh" | "cji" | "cjk" | "cjm" | "cjn" | "cjo" | "cjp" | "cjs" | "cjv" | "cjy" | "ckb" | "ckh" | "ckl" | "ckm" | "ckn" | "cko" | "ckq" | "ckr" | "cks" | "ckt" | "cku" | "ckv" | "ckx" | "cky" | "ckz" | "cla" | "clc" | "cld" | "cle" | "clh" | "cli" | "clj" | "clk" | "cll" | "clm" | "clo" | "clt" | "clu" | "clw" | "cly" | "cma" | "cme" | "cmg" | "cmi" | "cml" | "cmm" | "cmn" | "cmo" | "cmr" | "cms" | "cmt" | "cna" | "cnb" | "cnc" | "cng" | "cnh" | "cni" | "cnk" | "cnl" | "cno" | "cnp" | "cnq" | "cnr" | "cns" | "cnt" | "cnu" | "cnw" | "cnx" | "coa" | "cob" | "coc" | "cod" | "coe" | "cof" | "cog" | "coh" | "coj" | "cok" | "col" | "com" | "con" | "coo" | "cop" | "coq" | "cor" | "cos" | "cot" | "cou" | "cov" | "cow" | "cox" | "coz" | "cpa" | "cpb" | "cpc" | "cpg" | "cpi" | "cpn" | "cpo" | "cps" | "cpu" | "cpx" | "cpy" | "cqd" | "cra" | "crb" | "crc" | "crd" | "cre" | "crf" | "crg" | "crh" | "cri" | "crj" | "crk" | "crl" | "crm" | "crn" | "cro" | "crq" | "crr" | "crs" | "crt" | "crv" | "crw" | "crx" | "cry" | "crz" | "csa" | "csb" | "csc" | "csd" | "cse" | "csf" | "csg" | "csh" | "csi" | "csj" | "csk" | "csl" | "csm" | "csn" | "cso" | "csp" | "csq" | "csr" | "css" | "cst" | "csv" | "csw" | "csx" | "csy" | "csz" | "cta" | "ctc" | "ctd" | "cte" | "ctg" | "cth" | "ctl" | "ctm" | "ctn" | "cto" | "ctp" | "cts" | "ctt" | "ctu" | "cty" | "ctz" | "cua" | "cub" | "cuc" | "cuh" | "cui" | "cuj" | "cuk" | "cul" | "cuo" | "cup" | "cuq" | "cur" | "cut" | "cuu" | "cuv" | "cuw" | "cux" | "cuy" | "cvg" | "cvn" | "cwa" | "cwb" | "cwd" | "cwe" | "cwg" | "cwt" | "cya" | "cyb" | "cym" | "cyo" | "czh" | "czk" | "czn" | "czo" | "czt" | "daa" | "dac" | "dad" | "dae" | "dag" | "dah" | "dai" | "daj" | "dak" | "dal" | "dam" | "dan" | "dao" | "daq" | "dar" | "das" | "dau" | "dav" | "daw" | "dax" | "daz" | "dba" | "dbb" | "dbd" | "dbe" | "dbf" | "dbg" | "dbi" | "dbj" | "dbl" | "dbm" | "dbn" | "dbo" | "dbp" | "dbq" | "dbr" | "dbt" | "dbu" | "dbv" | "dbw" | "dby" | "dcc" | "dcr" | "dda" | "ddd" | "dde" | "ddg" | "ddi" | "ddj" | "ddn" | "ddo" | "ddr" | "dds" | "ddw" | "dec" | "ded" | "dee" | "def" | "deg" | "deh" | "dei" | "dek" | "del" | "dem" | "den" | "dep" | "deq" | "der" | "des" | "deu" | "dev" | "dez" | "dga" | "dgb" | "dgc" | "dgd" | "dge" | "dgg" | "dgh" | "dgi" | "dgk" | "dgl" | "dgn" | "dgo" | "dgr" | "dgs" | "dgt" | "dgw" | "dgx" | "dgz" | "dhd" | "dhg" | "dhi" | "dhl" | "dhm" | "dhn" | "dho" | "dhr" | "dhs" | "dhu" | "dhv" | "dhw" | "dhx" | "dia" | "dib" | "dic" | "did" | "dif" | "dig" | "dih" | "dii" | "dij" | "dik" | "dil" | "dim" | "din" | "dio" | "dip" | "diq" | "dir" | "dis" | "diu" | "div" | "diw" | "dix" | "diy" | "diz" | "dja" | "djb" | "djc" | "djd" | "dje" | "djf" | "dji" | "djj" | "djk" | "djm" | "djn" | "djo" | "djr" | "dju" | "djw" | "dka" | "dkg" | "dkk" | "dkr" | "dks" | "dkx" | "dlg" | "dlk" | "dlm" | "dln" | "dma" | "dmb" | "dmc" | "dmd" | "dme" | "dmf" | "dmg" | "dmk" | "dml" | "dmm" | "dmo" | "dmr" | "dms" | "dmu" | "dmv" | "dmw" | "dmx" | "dmy" | "dna" | "dnd" | "dne" | "dng" | "dni" | "dnj" | "dnk" | "dnn" | "dno" | "dnr" | "dnt" | "dnu" | "dnv" | "dnw" | "dny" | "doa" | "dob" | "doc" | "doe" | "dof" | "doh" | "doi" | "dok" | "dol" | "don" | "doo" | "dop" | "doq" | "dor" | "dos" | "dot" | "dov" | "dow" | "dox" | "doy" | "doz" | "dpp" | "drb" | "drc" | "drd" | "dre" | "drg" | "dri" | "drl" | "drn" | "dro" | "drq" | "drs" | "drt" | "dru" | "dry" | "dsb" | "dse" | "dsh" | "dsi" | "dsl" | "dsn" | "dso" | "dsq" | "dsz" | "dta" | "dtb" | "dtd" | "dth" | "dti" | "dtk" | "dtm" | "dtn" | "dto" | "dtp" | "dtr" | "dts" | "dtt" | "dtu" | "dty" | "dua" | "dub" | "duc" | "due" | "duf" | "dug" | "duh" | "dui" | "duk" | "dul" | "dum" | "dun" | "duo" | "dup" | "duq" | "dur" | "dus" | "duu" | "duv" | "duw" | "dux" | "duy" | "duz" | "dva" | "dwa" | "dwk" | "dwr" | "dws" | "dwu" | "dww" | "dwy" | "dwz" | "dya" | "dyb" | "dyd" | "dyg" | "dyi" | "dym" | "dyn" | "dyo" | "dyu" | "dyy" | "dza" | "dze" | "dzg" | "dzl" | "dzn" | "dzo" | "eaa" | "ebc" | "ebg" | "ebk" | "ebo" | "ebr" | "ebu" | "ecr" | "ecs" | "ecy" | "eee" | "efa" | "efe" | "efi" | "ega" | "egl" | "egm" | "ego" | "egy" | "ehs" | "ehu" | "eip" | "eit" | "eiv" | "eja" | "eka" | "eke" | "ekg" | "eki" | "ekk" | "ekl" | "ekm" | "eko" | "ekp" | "ekr" | "eky" | "ele" | "elh" | "eli" | "elk" | "ell" | "elm" | "elo" | "elu" | "elx" | "ema" | "emb" | "eme" | "emg" | "emi" | "emk" | "emm" | "emn" | "emp" | "emq" | "ems" | "emu" | "emw" | "emx" | "emy" | "emz" | "ena" | "enb" | "enc" | "end" | "enf" | "eng" | "enh" | "enl" | "enm" | "enn" | "eno" | "enq" | "enr" | "enu" | "env" | "enw" | "enx" | "eot" | "epi" | "epo" | "era" | "erg" | "erh" | "eri" | "erk" | "ero" | "err" | "ers" | "ert" | "erw" | "ese" | "esg" | "esh" | "esi" | "esk" | "esl" | "esm" | "esn" | "eso" | "esq" | "ess" | "est" | "esu" | "esy" | "etb" | "etc" | "eth" | "etn" | "eto" | "etr" | "ets" | "ett" | "etu" | "etx" | "etz" | "eus" | "eve" | "evh" | "evn" | "ewe" | "ewo" | "ext" | "eya" | "eyo" | "eza" | "eze" | "faa" | "fab" | "fad" | "faf" | "fag" | "fah" | "fai" | "faj" | "fak" | "fal" | "fam" | "fan" | "fao" | "fap" | "far" | "fas" | "fat" | "fau" | "fax" | "fay" | "faz" | "fbl" | "fcs" | "fer" | "ffi" | "ffm" | "fgr" | "fia" | "fie" | "fif" | "fij" | "fil" | "fin" | "fip" | "fir" | "fit" | "fiw" | "fkk" | "fkv" | "fla" | "flh" | "fli" | "fll" | "fln" | "flr" | "fly" | "fmp" | "fmu" | "fnb" | "fng" | "fni" | "fod" | "foi" | "fom" | "fon" | "for" | "fos" | "fpe" | "fqs" | "fra" | "frc" | "frd" | "frk" | "frm" | "fro" | "frp" | "frq" | "frr" | "frs" | "frt" | "fry" | "fse" | "fsl" | "fss" | "fub" | "fuc" | "fud" | "fue" | "fuf" | "fuh" | "fui" | "fuj" | "ful" | "fum" | "fun" | "fuq" | "fur" | "fut" | "fuu" | "fuv" | "fuy" | "fvr" | "fwa" | "fwe" | "gaa" | "gab" | "gac" | "gad" | "gae" | "gaf" | "gag" | "gah" | "gai" | "gaj" | "gak" | "gal" | "gam" | "gan" | "gao" | "gap" | "gaq" | "gar" | "gas" | "gat" | "gau" | "gaw" | "gax" | "gay" | "gaz" | "gba" | "gbb" | "gbd" | "gbe" | "gbf" | "gbg" | "gbh" | "gbi" | "gbj" | "gbk" | "gbl" | "gbm" | "gbn" | "gbo" | "gbp" | "gbq" | "gbr" | "gbs" | "gbu" | "gbv" | "gbw" | "gbx" | "gby" | "gbz" | "gcc" | "gcd" | "gce" | "gcf" | "gcl" | "gcn" | "gcr" | "gct" | "gda" | "gdb" | "gdc" | "gdd" | "gde" | "gdf" | "gdg" | "gdh" | "gdi" | "gdj" | "gdk" | "gdl" | "gdm" | "gdn" | "gdo" | "gdq" | "gdr" | "gds" | "gdt" | "gdu" | "gdx" | "gea" | "geb" | "gec" | "ged" | "gef" | "geg" | "geh" | "gei" | "gej" | "gek" | "gel" | "geq" | "ges" | "gev" | "gew" | "gex" | "gey" | "gez" | "gfk" | "gft" | "gga" | "ggb" | "ggd" | "gge" | "ggg" | "ggk" | "ggl" | "ggt" | "ggu" | "ggw" | "gha" | "ghc" | "ghe" | "ghh" | "ghk" | "ghl" | "ghn" | "gho" | "ghr" | "ghs" | "ght" | "gia" | "gib" | "gic" | "gid" | "gie" | "gig" | "gih" | "gii" | "gil" | "gim" | "gin" | "gip" | "giq" | "gir" | "gis" | "git" | "giu" | "giw" | "gix" | "giy" | "giz" | "gjk" | "gjm" | "gjn" | "gjr" | "gju" | "gka" | "gkd" | "gke" | "gkn" | "gko" | "gkp" | "gku" | "gla" | "glb" | "glc" | "gld" | "gle" | "glg" | "glh" | "glj" | "glk" | "gll" | "glo" | "glr" | "glu" | "glv" | "glw" | "gly" | "gma" | "gmb" | "gmd" | "gmg" | "gmh" | "gml" | "gmm" | "gmn" | "gmr" | "gmu" | "gmv" | "gmx" | "gmy" | "gmz" | "gna" | "gnb" | "gnc" | "gnd" | "gne" | "gng" | "gnh" | "gni" | "gnj" | "gnk" | "gnl" | "gnm" | "gnn" | "gno" | "gnq" | "gnr" | "gnt" | "gnu" | "gnw" | "gnz" | "goa" | "gob" | "goc" | "god" | "goe" | "gof" | "gog" | "goh" | "goi" | "goj" | "gok" | "gol" | "gom" | "gon" | "goo" | "gop" | "goq" | "gor" | "gos" | "got" | "gou" | "gov" | "gow" | "gox" | "goy" | "goz" | "gpa" | "gpe" | "gpn" | "gqa" | "gqi" | "gqn" | "gqr" | "gqu" | "gra" | "grb" | "grc" | "grd" | "grg" | "grh" | "gri" | "grj" | "grm" | "grn" | "gro" | "grq" | "grr" | "grs" | "grt" | "gru" | "grv" | "grw" | "grx" | "gry" | "grz" | "gse" | "gsg" | "gsl" | "gsm" | "gsn" | "gso" | "gsp" | "gss" | "gsw" | "gta" | "gtu" | "gua" | "gub" | "guc" | "gud" | "gue" | "guf" | "gug" | "guh" | "gui" | "guj" | "guk" | "gul" | "gum" | "gun" | "guo" | "gup" | "guq" | "gur" | "gus" | "gut" | "guu" | "guw" | "gux" | "guz" | "gva" | "gvc" | "gve" | "gvf" | "gvj" | "gvl" | "gvm" | "gvn" | "gvo" | "gvp" | "gvr" | "gvs" | "gvy" | "gwa" | "gwb" | "gwc" | "gwd" | "gwe" | "gwf" | "gwg" | "gwi" | "gwj" | "gwm" | "gwn" | "gwr" | "gwt" | "gwu" | "gww" | "gwx" | "gxx" | "gya" | "gyb" | "gyd" | "gye" | "gyf" | "gyg" | "gyi" | "gyl" | "gym" | "gyn" | "gyo" | "gyr" | "gyy" | "gyz" | "gza" | "gzi" | "gzn" | "haa" | "hab" | "hac" | "had" | "hae" | "haf" | "hag" | "hah" | "hai" | "haj" | "hak" | "hal" | "ham" | "han" | "hao" | "hap" | "haq" | "har" | "has" | "hat" | "hau" | "hav" | "haw" | "hax" | "hay" | "haz" | "hba" | "hbb" | "hbn" | "hbo" | "hbs" | "hbu" | "hca" | "hch" | "hdn" | "hds" | "hdy" | "hea" | "heb" | "hed" | "heg" | "heh" | "hei" | "hem" | "her" | "hgm" | "hgw" | "hhi" | "hhr" | "hhy" | "hia" | "hib" | "hid" | "hif" | "hig" | "hih" | "hii" | "hij" | "hik" | "hil" | "hin" | "hio" | "hir" | "hit" | "hiw" | "hix" | "hji" | "hka" | "hke" | "hkh" | "hkk" | "hkn" | "hks" | "hla" | "hlb" | "hld" | "hle" | "hlt" | "hlu" | "hma" | "hmb" | "hmc" | "hmd" | "hme" | "hmf" | "hmg" | "hmh" | "hmi" | "hmj" | "hmk" | "hml" | "hmm" | "hmn" | "hmo" | "hmp" | "hmq" | "hmr" | "hms" | "hmt" | "hmu" | "hmv" | "hmw" | "hmy" | "hmz" | "hna" | "hnd" | "hne" | "hng" | "hnh" | "hni" | "hnj" | "hnn" | "hno" | "hns" | "hnu" | "hoa" | "hob" | "hoc" | "hod" | "hoe" | "hoh" | "hoi" | "hoj" | "hol" | "hom" | "hoo" | "hop" | "hor" | "hos" | "hot" | "hov" | "how" | "hoy" | "hoz" | "hpo" | "hps" | "hra" | "hrc" | "hre" | "hrk" | "hrm" | "hro" | "hrp" | "hrt" | "hru" | "hrv" | "hrw" | "hrx" | "hrz" | "hsb" | "hsh" | "hsl" | "hsn" | "hss" | "hti" | "hto" | "hts" | "htu" | "htx" | "hub" | "huc" | "hud" | "hue" | "huf" | "hug" | "huh" | "hui" | "huj" | "huk" | "hul" | "hum" | "hun" | "huo" | "hup" | "huq" | "hur" | "hus" | "hut" | "huu" | "huv" | "huw" | "hux" | "huy" | "huz" | "hvc" | "hve" | "hvk" | "hvn" | "hvv" | "hwa" | "hwc" | "hwo" | "hya" | "hye" | "hyw" | "iai" | "ian" | "iar" | "iba" | "ibb" | "ibd" | "ibe" | "ibg" | "ibh" | "ibl" | "ibm" | "ibn" | "ibo" | "ibr" | "ibu" | "iby" | "ica" | "ich" | "icl" | "icr" | "ida" | "idb" | "idc" | "idd" | "ide" | "idi" | "ido" | "idr" | "ids" | "idt" | "idu" | "ifa" | "ifb" | "ife" | "iff" | "ifk" | "ifm" | "ifu" | "ify" | "igb" | "ige" | "igg" | "igl" | "igm" | "ign" | "igo" | "igs" | "igw" | "ihb" | "ihi" | "ihp" | "ihw" | "iii" | "iin" | "ijc" | "ije" | "ijj" | "ijn" | "ijs" | "ike" | "iki" | "ikk" | "ikl" | "iko" | "ikp" | "ikr" | "iks" | "ikt" | "iku" | "ikv" | "ikw" | "ikx" | "ikz" | "ila" | "ilb" | "ile" | "ilg" | "ili" | "ilk" | "ilm" | "ilo" | "ilp" | "ils" | "ilu" | "ilv" | "ima" | "imi" | "iml" | "imn" | "imo" | "imr" | "ims" | "imt" | "imy" | "ina" | "inb" | "ind" | "ing" | "inh" | "inj" | "inl" | "inm" | "inn" | "ino" | "inp" | "ins" | "int" | "inz" | "ior" | "iou" | "iow" | "ipi" | "ipk" | "ipo" | "iqu" | "iqw" | "ire" | "irh" | "iri" | "irk" | "irn" | "irr" | "iru" | "irx" | "iry" | "isa" | "isc" | "isd" | "ise" | "isg" | "ish" | "isi" | "isk" | "isl" | "ism" | "isn" | "iso" | "isr" | "ist" | "isu" | "ita" | "itb" | "itd" | "ite" | "iti" | "itk" | "itl" | "itm" | "ito" | "itr" | "its" | "itt" | "itv" | "itw" | "itx" | "ity" | "itz" | "ium" | "ivb" | "ivv" | "iwk" | "iwm" | "iwo" | "iws" | "ixc" | "ixl" | "iya" | "iyo" | "iyx" | "izh" | "izr" | "izz" | "jaa" | "jab" | "jac" | "jad" | "jae" | "jaf" | "jah" | "jaj" | "jak" | "jal" | "jam" | "jan" | "jao" | "jaq" | "jas" | "jat" | "jau" | "jav" | "jax" | "jay" | "jaz" | "jbe" | "jbi" | "jbj" | "jbk" | "jbm" | "jbn" | "jbo" | "jbr" | "jbt" | "jbu" | "jbw" | "jcs" | "jct" | "jda" | "jdg" | "jdt" | "jeb" | "jee" | "jeh" | "jei" | "jek" | "jel" | "jen" | "jer" | "jet" | "jeu" | "jgb" | "jge" | "jgk" | "jgo" | "jhi" | "jhs" | "jia" | "jib" | "jic" | "jid" | "jie" | "jig" | "jih" | "jii" | "jil" | "jim" | "jio" | "jiq" | "jit" | "jiu" | "jiv" | "jiy" | "jje" | "jjr" | "jka" | "jkm" | "jko" | "jkp" | "jkr" | "jks" | "jku" | "jle" | "jls" | "jma" | "jmb" | "jmc" | "jmd" | "jmi" | "jml" | "jmn" | "jmr" | "jms" | "jmw" | "jmx" | "jna" | "jnd" | "jng" | "jni" | "jnj" | "jnl" | "jns" | "job" | "jod" | "jog" | "jor" | "jos" | "jow" | "jpa" | "jpn" | "jpr" | "jqr" | "jra" | "jrb" | "jrr" | "jrt" | "jru" | "jsl" | "jua" | "jub" | "juc" | "jud" | "juh" | "jui" | "juk" | "jul" | "jum" | "jun" | "juo" | "jup" | "jur" | "jus" | "jut" | "juu" | "juw" | "juy" | "jvd" | "jvn" | "jwi" | "jya" | "jye" | "jyy" | "kaa" | "kab" | "kac" | "kad" | "kae" | "kaf" | "kag" | "kah" | "kai" | "kaj" | "kak" | "kal" | "kam" | "kan" | "kao" | "kap" | "kaq" | "kas" | "kat" | "kau" | "kav" | "kaw" | "kax" | "kay" | "kaz" | "kba" | "kbb" | "kbc" | "kbd" | "kbe" | "kbg" | "kbh" | "kbi" | "kbj" | "kbk" | "kbl" | "kbm" | "kbn" | "kbo" | "kbp" | "kbq" | "kbr" | "kbs" | "kbt" | "kbu" | "kbv" | "kbw" | "kbx" | "kby" | "kbz" | "kca" | "kcb" | "kcc" | "kcd" | "kce" | "kcf" | "kcg" | "kch" | "kci" | "kcj" | "kck" | "kcl" | "kcm" | "kcn" | "kco" | "kcp" | "kcq" | "kcr" | "kcs" | "kct" | "kcu" | "kcv" | "kcw" | "kcx" | "kcy" | "kcz" | "kda" | "kdc" | "kdd" | "kde" | "kdf" | "kdg" | "kdh" | "kdi" | "kdj" | "kdk" | "kdl" | "kdm" | "kdn" | "kdp" | "kdq" | "kdr" | "kdt" | "kdu" | "kdw" | "kdx" | "kdy" | "kdz" | "kea" | "keb" | "kec" | "ked" | "kee" | "kef" | "keg" | "keh" | "kei" | "kej" | "kek" | "kel" | "kem" | "ken" | "keo" | "kep" | "keq" | "ker" | "kes" | "ket" | "keu" | "kev" | "kew" | "kex" | "key" | "kez" | "kfa" | "kfb" | "kfc" | "kfd" | "kfe" | "kff" | "kfg" | "kfh" | "kfi" | "kfj" | "kfk" | "kfl" | "kfm" | "kfn" | "kfo" | "kfp" | "kfq" | "kfr" | "kfs" | "kft" | "kfu" | "kfv" | "kfw" | "kfx" | "kfy" | "kfz" | "kga" | "kgb" | "kge" | "kgf" | "kgg" | "kgi" | "kgj" | "kgk" | "kgl" | "kgm" | "kgn" | "kgo" | "kgp" | "kgq" | "kgr" | "kgs" | "kgt" | "kgu" | "kgv" | "kgw" | "kgx" | "kgy" | "kha" | "khb" | "khc" | "khd" | "khe" | "khf" | "khg" | "khh" | "khj" | "khk" | "khl" | "khm" | "khn" | "kho" | "khp" | "khq" | "khr" | "khs" | "kht" | "khu" | "khv" | "khw" | "khx" | "khy" | "khz" | "kia" | "kib" | "kic" | "kid" | "kie" | "kif" | "kig" | "kih" | "kii" | "kij" | "kik" | "kil" | "kim" | "kin" | "kio" | "kip" | "kiq" | "kir" | "kis" | "kit" | "kiu" | "kiv" | "kiw" | "kix" | "kiy" | "kiz" | "kja" | "kjb" | "kjc" | "kjd" | "kje" | "kjg" | "kjh" | "kji" | "kjj" | "kjk" | "kjl" | "kjm" | "kjn" | "kjo" | "kjp" | "kjq" | "kjr" | "kjs" | "kjt" | "kju" | "kjv" | "kjx" | "kjy" | "kjz" | "kka" | "kkb" | "kkc" | "kkd" | "kke" | "kkf" | "kkg" | "kkh" | "kki" | "kkj" | "kkk" | "kkl" | "kkm" | "kkn" | "kko" | "kkp" | "kkq" | "kkr" | "kks" | "kkt" | "kku" | "kkv" | "kkw" | "kkx" | "kky" | "kkz" | "kla" | "klb" | "klc" | "kld" | "kle" | "klf" | "klg" | "klh" | "kli" | "klj" | "klk" | "kll" | "klm" | "kln" | "klo" | "klp" | "klq" | "klr" | "kls" | "klt" | "klu" | "klv" | "klw" | "klx" | "kly" | "klz" | "kma" | "kmb" | "kmc" | "kmd" | "kme" | "kmf" | "kmg" | "kmh" | "kmi" | "kmj" | "kmk" | "kml" | "kmm" | "kmn" | "kmo" | "kmp" | "kmq" | "kmr" | "kms" | "kmt" | "kmu" | "kmv" | "kmw" | "kmx" | "kmy" | "kmz" | "kna" | "knb" | "knc" | "knd" | "kne" | "knf" | "kng" | "kni" | "knj" | "knk" | "knl" | "knm" | "knn" | "kno" | "knp" | "knq" | "knr" | "kns" | "knt" | "knu" | "knv" | "knw" | "knx" | "kny" | "knz" | "koa" | "koc" | "kod" | "koe" | "kof" | "kog" | "koh" | "koi" | "kok" | "kol" | "kom" | "kon" | "koo" | "kop" | "koq" | "kor" | "kos" | "kot" | "kou" | "kov" | "kow" | "koy" | "koz" | "kpa" | "kpb" | "kpc" | "kpd" | "kpe" | "kpf" | "kpg" | "kph" | "kpi" | "kpj" | "kpk" | "kpl" | "kpm" | "kpn" | "kpo" | "kpq" | "kpr" | "kps" | "kpt" | "kpu" | "kpv" | "kpw" | "kpx" | "kpy" | "kpz" | "kqa" | "kqb" | "kqc" | "kqd" | "kqe" | "kqf" | "kqg" | "kqh" | "kqi" | "kqj" | "kqk" | "kql" | "kqm" | "kqn" | "kqo" | "kqp" | "kqq" | "kqr" | "kqs" | "kqt" | "kqu" | "kqv" | "kqw" | "kqx" | "kqy" | "kqz" | "kra" | "krb" | "krc" | "krd" | "kre" | "krf" | "krh" | "kri" | "krj" | "krk" | "krl" | "krn" | "krp" | "krr" | "krs" | "krt" | "kru" | "krv" | "krw" | "krx" | "kry" | "krz" | "ksa" | "ksb" | "ksc" | "ksd" | "kse" | "ksf" | "ksg" | "ksh" | "ksi" | "ksj" | "ksk" | "ksl" | "ksm" | "ksn" | "kso" | "ksp" | "ksq" | "ksr" | "kss" | "kst" | "ksu" | "ksv" | "ksw" | "ksx" | "ksy" | "ksz" | "kta" | "ktb" | "ktc" | "ktd" | "kte" | "ktf" | "ktg" | "kth" | "kti" | "ktj" | "ktk" | "ktl" | "ktm" | "ktn" | "kto" | "ktp" | "ktq" | "kts" | "ktt" | "ktu" | "ktv" | "ktw" | "ktx" | "kty" | "ktz" | "kua" | "kub" | "kuc" | "kud" | "kue" | "kuf" | "kug" | "kuh" | "kui" | "kuj" | "kuk" | "kul" | "kum" | "kun" | "kuo" | "kup" | "kuq" | "kur" | "kus" | "kut" | "kuu" | "kuv" | "kuw" | "kux" | "kuy" | "kuz" | "kva" | "kvb" | "kvc" | "kvd" | "kve" | "kvf" | "kvg" | "kvh" | "kvi" | "kvj" | "kvk" | "kvl" | "kvm" | "kvn" | "kvo" | "kvp" | "kvq" | "kvr" | "kvt" | "kvu" | "kvv" | "kvw" | "kvx" | "kvy" | "kvz" | "kwa" | "kwb" | "kwc" | "kwd" | "kwe" | "kwf" | "kwg" | "kwh" | "kwi" | "kwj" | "kwk" | "kwl" | "kwm" | "kwn" | "kwo" | "kwp" | "kwr" | "kws" | "kwt" | "kwu" | "kwv" | "kww" | "kwx" | "kwy" | "kwz" | "kxa" | "kxb" | "kxc" | "kxd" | "kxf" | "kxh" | "kxi" | "kxj" | "kxk" | "kxm" | "kxn" | "kxo" | "kxp" | "kxq" | "kxr" | "kxs" | "kxt" | "kxv" | "kxw" | "kxx" | "kxy" | "kxz" | "kya" | "kyb" | "kyc" | "kyd" | "kye" | "kyf" | "kyg" | "kyh" | "kyi" | "kyj" | "kyk" | "kyl" | "kym" | "kyn" | "kyo" | "kyp" | "kyq" | "kyr" | "kys" | "kyt" | "kyu" | "kyv" | "kyw" | "kyx" | "kyy" | "kyz" | "kza" | "kzb" | "kzc" | "kzd" | "kze" | "kzf" | "kzg" | "kzi" | "kzk" | "kzl" | "kzm" | "kzn" | "kzo" | "kzp" | "kzq" | "kzr" | "kzs" | "kzu" | "kzv" | "kzw" | "kzx" | "kzy" | "kzz" | "laa" | "lab" | "lac" | "lad" | "lae" | "laf" | "lag" | "lah" | "lai" | "laj" | "lal" | "lam" | "lan" | "lao" | "lap" | "laq" | "lar" | "las" | "lat" | "lau" | "lav" | "law" | "lax" | "lay" | "laz" | "lbb" | "lbc" | "lbe" | "lbf" | "lbg" | "lbi" | "lbj" | "lbk" | "lbl" | "lbm" | "lbn" | "lbo" | "lbq" | "lbr" | "lbs" | "lbt" | "lbu" | "lbv" | "lbw" | "lbx" | "lby" | "lbz" | "lcc" | "lcd" | "lce" | "lcf" | "lch" | "lcl" | "lcm" | "lcp" | "lcq" | "lcs" | "lda" | "ldb" | "ldd" | "ldg" | "ldh" | "ldi" | "ldj" | "ldk" | "ldl" | "ldm" | "ldn" | "ldo" | "ldp" | "ldq" | "lea" | "leb" | "lec" | "led" | "lee" | "lef" | "leh" | "lei" | "lej" | "lek" | "lel" | "lem" | "len" | "leo" | "lep" | "leq" | "ler" | "les" | "let" | "leu" | "lev" | "lew" | "lex" | "ley" | "lez" | "lfa" | "lfn" | "lga" | "lgb" | "lgg" | "lgh" | "lgi" | "lgk" | "lgl" | "lgm" | "lgn" | "lgo" | "lgq" | "lgr" | "lgt" | "lgu" | "lgz" | "lha" | "lhh" | "lhi" | "lhl" | "lhm" | "lhn" | "lhp" | "lhs" | "lht" | "lhu" | "lia" | "lib" | "lic" | "lid" | "lie" | "lif" | "lig" | "lih" | "lij" | "lik" | "lil" | "lim" | "lin" | "lio" | "lip" | "liq" | "lir" | "lis" | "lit" | "liu" | "liv" | "liw" | "lix" | "liy" | "liz" | "lja" | "lje" | "lji" | "ljl" | "ljp" | "ljw" | "ljx" | "lka" | "lkb" | "lkc" | "lkd" | "lke" | "lkh" | "lki" | "lkj" | "lkl" | "lkm" | "lkn" | "lko" | "lkr" | "lks" | "lkt" | "lku" | "lky" | "lla" | "llb" | "llc" | "lld" | "lle" | "llf" | "llg" | "llh" | "lli" | "llj" | "llk" | "lll" | "llm" | "lln" | "llp" | "llq" | "lls" | "llu" | "llx" | "lma" | "lmb" | "lmc" | "lmd" | "lme" | "lmf" | "lmg" | "lmh" | "lmi" | "lmj" | "lmk" | "lml" | "lmn" | "lmo" | "lmp" | "lmq" | "lmr" | "lmu" | "lmv" | "lmw" | "lmx" | "lmy" | "lna" | "lnb" | "lnd" | "lng" | "lnh" | "lni" | "lnj" | "lnl" | "lnm" | "lnn" | "lns" | "lnu" | "lnw" | "lnz" | "loa" | "lob" | "loc" | "loe" | "lof" | "log" | "loh" | "loi" | "loj" | "lok" | "lol" | "lom" | "lon" | "loo" | "lop" | "loq" | "lor" | "los" | "lot" | "lou" | "lov" | "low" | "lox" | "loy" | "loz" | "lpa" | "lpe" | "lpn" | "lpo" | "lpx" | "lqr" | "lra" | "lrc" | "lre" | "lrg" | "lri" | "lrk" | "lrl" | "lrm" | "lrn" | "lro" | "lrr" | "lrt" | "lrv" | "lrz" | "lsa" | "lsb" | "lsc" | "lsd" | "lse" | "lsh" | "lsi" | "lsl" | "lsm" | "lsn" | "lso" | "lsp" | "lsr" | "lss" | "lst" | "lsv" | "lsw" | "lsy" | "ltc" | "ltg" | "lth" | "lti" | "ltn" | "lto" | "lts" | "ltu" | "ltz" | "lua" | "lub" | "luc" | "lud" | "lue" | "luf" | "lug" | "lui" | "luj" | "luk" | "lul" | "lum" | "lun" | "luo" | "lup" | "luq" | "lur" | "lus" | "lut" | "luu" | "luv" | "luw" | "luy" | "luz" | "lva" | "lvi" | "lvk" | "lvs" | "lvu" | "lwa" | "lwe" | "lwg" | "lwh" | "lwl" | "lwm" | "lwo" | "lws" | "lwt" | "lwu" | "lww" | "lxm" | "lya" | "lyg" | "lyn" | "lzh" | "lzl" | "lzn" | "lzz" | "maa" | "mab" | "mad" | "mae" | "maf" | "mag" | "mah" | "mai" | "maj" | "mak" | "mal" | "mam" | "man" | "maq" | "mar" | "mas" | "mat" | "mau" | "mav" | "maw" | "max" | "maz" | "mba" | "mbb" | "mbc" | "mbd" | "mbe" | "mbf" | "mbh" | "mbi" | "mbj" | "mbk" | "mbl" | "mbm" | "mbn" | "mbo" | "mbp" | "mbq" | "mbr" | "mbs" | "mbt" | "mbu" | "mbv" | "mbw" | "mbx" | "mby" | "mbz" | "mca" | "mcb" | "mcc" | "mcd" | "mce" | "mcf" | "mcg" | "mch" | "mci" | "mcj" | "mck" | "mcl" | "mcm" | "mcn" | "mco" | "mcp" | "mcq" | "mcr" | "mcs" | "mct" | "mcu" | "mcv" | "mcw" | "mcx" | "mcy" | "mcz" | "mda" | "mdb" | "mdc" | "mdd" | "mde" | "mdf" | "mdg" | "mdh" | "mdi" | "mdj" | "mdk" | "mdl" | "mdm" | "mdn" | "mdp" | "mdq" | "mdr" | "mds" | "mdt" | "mdu" | "mdv" | "mdw" | "mdx" | "mdy" | "mdz" | "mea" | "meb" | "mec" | "med" | "mee" | "mef" | "meh" | "mei" | "mej" | "mek" | "mel" | "mem" | "men" | "meo" | "mep" | "meq" | "mer" | "mes" | "met" | "meu" | "mev" | "mew" | "mey" | "mez" | "mfa" | "mfb" | "mfc" | "mfd" | "mfe" | "mff" | "mfg" | "mfh" | "mfi" | "mfj" | "mfk" | "mfl" | "mfm" | "mfn" | "mfo" | "mfp" | "mfq" | "mfr" | "mfs" | "mft" | "mfu" | "mfv" | "mfw" | "mfx" | "mfy" | "mfz" | "mga" | "mgb" | "mgc" | "mgd" | "mge" | "mgf" | "mgg" | "mgh" | "mgi" | "mgj" | "mgk" | "mgl" | "mgm" | "mgn" | "mgo" | "mgp" | "mgq" | "mgr" | "mgs" | "mgt" | "mgu" | "mgv" | "mgw" | "mgy" | "mgz" | "mha" | "mhb" | "mhc" | "mhd" | "mhe" | "mhf" | "mhg" | "mhi" | "mhj" | "mhk" | "mhl" | "mhm" | "mhn" | "mho" | "mhp" | "mhq" | "mhr" | "mhs" | "mht" | "mhu" | "mhw" | "mhx" | "mhy" | "mhz" | "mia" | "mib" | "mic" | "mid" | "mie" | "mif" | "mig" | "mih" | "mii" | "mij" | "mik" | "mil" | "mim" | "min" | "mio" | "mip" | "miq" | "mir" | "mis" | "mit" | "miu" | "miw" | "mix" | "miy" | "miz" | "mjb" | "mjc" | "mjd" | "mje" | "mjg" | "mjh" | "mji" | "mjj" | "mjk" | "mjl" | "mjm" | "mjn" | "mjo" | "mjp" | "mjq" | "mjr" | "mjs" | "mjt" | "mju" | "mjv" | "mjw" | "mjx" | "mjy" | "mjz" | "mka" | "mkb" | "mkc" | "mkd" | "mke" | "mkf" | "mkg" | "mki" | "mkj" | "mkk" | "mkl" | "mkm" | "mkn" | "mko" | "mkp" | "mkq" | "mkr" | "mks" | "mkt" | "mku" | "mkv" | "mkw" | "mkx" | "mky" | "mkz" | "mla" | "mlb" | "mlc" | "mle" | "mlf" | "mlg" | "mlh" | "mli" | "mlj" | "mlk" | "mll" | "mlm" | "mln" | "mlo" | "mlp" | "mlq" | "mlr" | "mls" | "mlt" | "mlu" | "mlv" | "mlw" | "mlx" | "mlz" | "mma" | "mmb" | "mmc" | "mmd" | "mme" | "mmf" | "mmg" | "mmh" | "mmi" | "mmj" | "mmk" | "mml" | "mmm" | "mmn" | "mmo" | "mmp" | "mmq" | "mmr" | "mmt" | "mmu" | "mmv" | "mmw" | "mmx" | "mmy" | "mmz" | "mna" | "mnb" | "mnc" | "mnd" | "mne" | "mnf" | "mng" | "mnh" | "mni" | "mnj" | "mnk" | "mnl" | "mnm" | "mnn" | "mnp" | "mnq" | "mnr" | "mns" | "mnu" | "mnv" | "mnw" | "mnx" | "mny" | "mnz" | "moa" | "moc" | "mod" | "moe" | "mog" | "moh" | "moi" | "moj" | "mok" | "mom" | "mon" | "moo" | "mop" | "moq" | "mor" | "mos" | "mot" | "mou" | "mov" | "mow" | "mox" | "moy" | "moz" | "mpa" | "mpb" | "mpc" | "mpd" | "mpe" | "mpg" | "mph" | "mpi" | "mpj" | "mpk" | "mpl" | "mpm" | "mpn" | "mpo" | "mpp" | "mpq" | "mpr" | "mps" | "mpt" | "mpu" | "mpv" | "mpw" | "mpx" | "mpy" | "mpz" | "mqa" | "mqb" | "mqc" | "mqe" | "mqf" | "mqg" | "mqh" | "mqi" | "mqj" | "mqk" | "mql" | "mqm" | "mqn" | "mqo" | "mqp" | "mqq" | "mqr" | "mqs" | "mqt" | "mqu" | "mqv" | "mqw" | "mqx" | "mqy" | "mqz" | "mra" | "mrb" | "mrc" | "mrd" | "mre" | "mrf" | "mrg" | "mrh" | "mri" | "mrj" | "mrk" | "mrl" | "mrm" | "mrn" | "mro" | "mrp" | "mrq" | "mrr" | "mrs" | "mrt" | "mru" | "mrv" | "mrw" | "mrx" | "mry" | "mrz" | "msa" | "msb" | "msc" | "msd" | "mse" | "msf" | "msg" | "msh" | "msi" | "msj" | "msk" | "msl" | "msm" | "msn" | "mso" | "msp" | "msq" | "msr" | "mss" | "msu" | "msv" | "msw" | "msx" | "msy" | "msz" | "mta" | "mtb" | "mtc" | "mtd" | "mte" | "mtf" | "mtg" | "mth" | "mti" | "mtj" | "mtk" | "mtl" | "mtm" | "mtn" | "mto" | "mtp" | "mtq" | "mtr" | "mts" | "mtt" | "mtu" | "mtv" | "mtw" | "mtx" | "mty" | "mua" | "mub" | "muc" | "mud" | "mue" | "mug" | "muh" | "mui" | "muj" | "muk" | "mul" | "mum" | "muo" | "mup" | "muq" | "mur" | "mus" | "mut" | "muu" | "muv" | "mux" | "muy" | "muz" | "mva" | "mvb" | "mvd" | "mve" | "mvf" | "mvg" | "mvh" | "mvi" | "mvk" | "mvl" | "mvn" | "mvo" | "mvp" | "mvq" | "mvr" | "mvs" | "mvt" | "mvu" | "mvv" | "mvw" | "mvx" | "mvy" | "mvz" | "mwa" | "mwb" | "mwc" | "mwe" | "mwf" | "mwg" | "mwh" | "mwi" | "mwk" | "mwl" | "mwm" | "mwn" | "mwo" | "mwp" | "mwq" | "mwr" | "mws" | "mwt" | "mwu" | "mwv" | "mww" | "mwz" | "mxa" | "mxb" | "mxc" | "mxd" | "mxe" | "mxf" | "mxg" | "mxh" | "mxi" | "mxj" | "mxk" | "mxl" | "mxm" | "mxn" | "mxo" | "mxp" | "mxq" | "mxr" | "mxs" | "mxt" | "mxu" | "mxv" | "mxw" | "mxx" | "mxy" | "mxz" | "mya" | "myb" | "myc" | "mye" | "myf" | "myg" | "myh" | "myj" | "myk" | "myl" | "mym" | "myo" | "myp" | "myr" | "mys" | "myu" | "myv" | "myw" | "myx" | "myy" | "myz" | "mza" | "mzb" | "mzc" | "mzd" | "mze" | "mzg" | "mzh" | "mzi" | "mzj" | "mzk" | "mzl" | "mzm" | "mzn" | "mzo" | "mzp" | "mzq" | "mzr" | "mzs" | "mzt" | "mzu" | "mzv" | "mzw" | "mzx" | "mzy" | "mzz" | "naa" | "nab" | "nac" | "nae" | "naf" | "nag" | "naj" | "nak" | "nal" | "nam" | "nan" | "nao" | "nap" | "naq" | "nar" | "nas" | "nat" | "nau" | "nav" | "naw" | "nax" | "nay" | "naz" | "nba" | "nbb" | "nbc" | "nbd" | "nbe" | "nbg" | "nbh" | "nbi" | "nbj" | "nbk" | "nbl" | "nbm" | "nbn" | "nbo" | "nbp" | "nbq" | "nbr" | "nbs" | "nbt" | "nbu" | "nbv" | "nbw" | "nby" | "nca" | "ncb" | "ncc" | "ncd" | "nce" | "ncf" | "ncg" | "nch" | "nci" | "ncj" | "nck" | "ncl" | "ncm" | "ncn" | "nco" | "ncq" | "ncr" | "ncs" | "nct" | "ncu" | "ncx" | "ncz" | "nda" | "ndb" | "ndc" | "ndd" | "nde" | "ndf" | "ndg" | "ndh" | "ndi" | "ndj" | "ndk" | "ndl" | "ndm" | "ndn" | "ndo" | "ndp" | "ndq" | "ndr" | "nds" | "ndt" | "ndu" | "ndv" | "ndw" | "ndx" | "ndy" | "ndz" | "nea" | "neb" | "nec" | "ned" | "nee" | "nef" | "neg" | "neh" | "nei" | "nej" | "nek" | "nem" | "nen" | "neo" | "nep" | "neq" | "ner" | "nes" | "net" | "neu" | "nev" | "new" | "nex" | "ney" | "nez" | "nfa" | "nfd" | "nfl" | "nfr" | "nfu" | "nga" | "ngb" | "ngc" | "ngd" | "nge" | "ngg" | "ngh" | "ngi" | "ngj" | "ngk" | "ngl" | "ngm" | "ngn" | "ngp" | "ngq" | "ngr" | "ngs" | "ngt" | "ngu" | "ngv" | "ngw" | "ngx" | "ngy" | "ngz" | "nha" | "nhb" | "nhc" | "nhd" | "nhe" | "nhf" | "nhg" | "nhh" | "nhi" | "nhk" | "nhm" | "nhn" | "nho" | "nhp" | "nhq" | "nhr" | "nht" | "nhu" | "nhv" | "nhw" | "nhx" | "nhy" | "nhz" | "nia" | "nib" | "nid" | "nie" | "nif" | "nig" | "nih" | "nii" | "nij" | "nik" | "nil" | "nim" | "nin" | "nio" | "niq" | "nir" | "nis" | "nit" | "niu" | "niv" | "niw" | "nix" | "niy" | "niz" | "nja" | "njb" | "njd" | "njh" | "nji" | "njj" | "njl" | "njm" | "njn" | "njo" | "njr" | "njs" | "njt" | "nju" | "njx" | "njy" | "njz" | "nka" | "nkb" | "nkc" | "nkd" | "nke" | "nkf" | "nkg" | "nkh" | "nki" | "nkj" | "nkk" | "nkm" | "nkn" | "nko" | "nkp" | "nkq" | "nkr" | "nks" | "nkt" | "nku" | "nkv" | "nkw" | "nkx" | "nkz" | "nla" | "nlc" | "nld" | "nle" | "nlg" | "nli" | "nlj" | "nlk" | "nll" | "nlm" | "nlo" | "nlq" | "nlu" | "nlv" | "nlw" | "nlx" | "nly" | "nlz" | "nma" | "nmb" | "nmc" | "nmd" | "nme" | "nmf" | "nmg" | "nmh" | "nmi" | "nmj" | "nmk" | "nml" | "nmm" | "nmn" | "nmo" | "nmp" | "nmq" | "nmr" | "nms" | "nmt" | "nmu" | "nmv" | "nmw" | "nmx" | "nmy" | "nmz" | "nna" | "nnb" | "nnc" | "nnd" | "nne" | "nnf" | "nng" | "nnh" | "nni" | "nnj" | "nnk" | "nnl" | "nnm" | "nnn" | "nno" | "nnp" | "nnq" | "nnr" | "nnt" | "nnu" | "nnv" | "nnw" | "nny" | "nnz" | "noa" | "nob" | "noc" | "nod" | "noe" | "nof" | "nog" | "noh" | "noi" | "noj" | "nok" | "nol" | "nom" | "non" | "nop" | "noq" | "nor" | "nos" | "not" | "nou" | "nov" | "now" | "noy" | "noz" | "npa" | "npb" | "npg" | "nph" | "npi" | "npl" | "npn" | "npo" | "nps" | "npu" | "npx" | "npy" | "nqg" | "nqk" | "nql" | "nqm" | "nqn" | "nqo" | "nqq" | "nqt" | "nqy" | "nra" | "nrb" | "nrc" | "nre" | "nrf" | "nrg" | "nri" | "nrk" | "nrl" | "nrm" | "nrn" | "nrp" | "nrr" | "nrt" | "nru" | "nrx" | "nrz" | "nsa" | "nsb" | "nsc" | "nsd" | "nse" | "nsf" | "nsg" | "nsh" | "nsi" | "nsk" | "nsl" | "nsm" | "nsn" | "nso" | "nsp" | "nsq" | "nsr" | "nss" | "nst" | "nsu" | "nsv" | "nsw" | "nsx" | "nsy" | "nsz" | "ntd" | "nte" | "ntg" | "nti" | "ntj" | "ntk" | "ntm" | "nto" | "ntp" | "ntr" | "ntu" | "ntw" | "ntx" | "nty" | "ntz" | "nua" | "nuc" | "nud" | "nue" | "nuf" | "nug" | "nuh" | "nui" | "nuj" | "nuk" | "nul" | "num" | "nun" | "nuo" | "nup" | "nuq" | "nur" | "nus" | "nut" | "nuu" | "nuv" | "nuw" | "nux" | "nuy" | "nuz" | "nvh" | "nvm" | "nvo" | "nwa" | "nwb" | "nwc" | "nwe" | "nwg" | "nwi" | "nwm" | "nwo" | "nwr" | "nww" | "nwx" | "nwy" | "nxa" | "nxd" | "nxe" | "nxg" | "nxi" | "nxk" | "nxl" | "nxm" | "nxn" | "nxo" | "nxq" | "nxr" | "nxx" | "nya" | "nyb" | "nyc" | "nyd" | "nye" | "nyf" | "nyg" | "nyh" | "nyi" | "nyj" | "nyk" | "nyl" | "nym" | "nyn" | "nyo" | "nyp" | "nyq" | "nyr" | "nys" | "nyt" | "nyu" | "nyv" | "nyw" | "nyx" | "nyy" | "nza" | "nzb" | "nzd" | "nzi" | "nzk" | "nzm" | "nzs" | "nzu" | "nzy" | "nzz" | "oaa" | "oac" | "oar" | "oav" | "obi" | "obk" | "obl" | "obm" | "obo" | "obr" | "obt" | "obu" | "oca" | "och" | "oci" | "ocm" | "oco" | "ocu" | "oda" | "odk" | "odt" | "odu" | "ofo" | "ofs" | "ofu" | "ogb" | "ogc" | "oge" | "ogg" | "ogo" | "ogu" | "oht" | "ohu" | "oia" | "oie" | "oin" | "ojb" | "ojc" | "ojg" | "oji" | "ojp" | "ojs" | "ojv" | "ojw" | "oka" | "okb" | "okc" | "okd" | "oke" | "okg" | "okh" | "oki" | "okj" | "okk" | "okl" | "okm" | "okn" | "oko" | "okr" | "oks" | "oku" | "okv" | "okx" | "okz" | "ola" | "old" | "ole" | "olk" | "olm" | "olo" | "olr" | "olt" | "olu" | "oma" | "omb" | "omc" | "omg" | "omi" | "omk" | "oml" | "omn" | "omo" | "omp" | "omr" | "omt" | "omu" | "omw" | "omx" | "omy" | "ona" | "onb" | "one" | "ong" | "oni" | "onj" | "onk" | "onn" | "ono" | "onp" | "onr" | "ons" | "ont" | "onu" | "onw" | "onx" | "ood" | "oog" | "oon" | "oor" | "oos" | "opa" | "opk" | "opm" | "opo" | "opt" | "opy" | "ora" | "orc" | "ore" | "org" | "orh" | "ori" | "orm" | "orn" | "oro" | "orr" | "ors" | "ort" | "oru" | "orv" | "orw" | "orx" | "ory" | "orz" | "osa" | "osc" | "osi" | "osn" | "oso" | "osp" | "oss" | "ost" | "osu" | "osx" | "ota" | "otb" | "otd" | "ote" | "oti" | "otk" | "otl" | "otm" | "otn" | "otq" | "otr" | "ots" | "ott" | "otu" | "otw" | "otx" | "oty" | "otz" | "oua" | "oub" | "oue" | "oui" | "oum" | "ovd" | "owi" | "owl" | "oyb" | "oyd" | "oym" | "oyy" | "ozm" | "pab" | "pac" | "pad" | "pae" | "paf" | "pag" | "pah" | "pai" | "pak" | "pal" | "pam" | "pan" | "pao" | "pap" | "paq" | "par" | "pas" | "pau" | "pav" | "paw" | "pax" | "pay" | "paz" | "pbb" | "pbc" | "pbe" | "pbf" | "pbg" | "pbh" | "pbi" | "pbl" | "pbm" | "pbn" | "pbo" | "pbp" | "pbr" | "pbs" | "pbt" | "pbu" | "pbv" | "pby" | "pca" | "pcb" | "pcc" | "pcd" | "pce" | "pcf" | "pcg" | "pch" | "pci" | "pcj" | "pck" | "pcl" | "pcm" | "pcn" | "pcp" | "pcw" | "pda" | "pdc" | "pdi" | "pdn" | "pdo" | "pdt" | "pdu" | "pea" | "peb" | "ped" | "pee" | "pef" | "peg" | "peh" | "pei" | "pej" | "pek" | "pel" | "pem" | "peo" | "pep" | "peq" | "pes" | "pev" | "pex" | "pey" | "pez" | "pfa" | "pfe" | "pfl" | "pga" | "pgd" | "pgg" | "pgi" | "pgk" | "pgl" | "pgn" | "pgs" | "pgu" | "pgz" | "pha" | "phd" | "phg" | "phh" | "phj" | "phk" | "phl" | "phm" | "phn" | "pho" | "phq" | "phr" | "pht" | "phu" | "phv" | "phw" | "pia" | "pib" | "pic" | "pid" | "pie" | "pif" | "pig" | "pih" | "pij" | "pil" | "pim" | "pin" | "pio" | "pip" | "pir" | "pis" | "pit" | "piu" | "piv" | "piw" | "pix" | "piy" | "piz" | "pjt" | "pka" | "pkb" | "pkc" | "pkg" | "pkh" | "pkn" | "pko" | "pkp" | "pkr" | "pks" | "pkt" | "pku" | "pla" | "plb" | "plc" | "pld" | "ple" | "plg" | "plh" | "pli" | "plj" | "plk" | "pll" | "pln" | "plo" | "plq" | "plr" | "pls" | "plt" | "plu" | "plv" | "plw" | "ply" | "plz" | "pma" | "pmb" | "pmd" | "pme" | "pmf" | "pmh" | "pmi" | "pmj" | "pmk" | "pml" | "pmm" | "pmn" | "pmo" | "pmq" | "pmr" | "pms" | "pmt" | "pmw" | "pmx" | "pmy" | "pmz" | "pna" | "pnb" | "pnc" | "pnd" | "pne" | "png" | "pnh" | "pni" | "pnj" | "pnk" | "pnl" | "pnm" | "pnn" | "pno" | "pnp" | "pnq" | "pnr" | "pns" | "pnt" | "pnu" | "pnv" | "pnw" | "pnx" | "pny" | "pnz" | "poc" | "poe" | "pof" | "pog" | "poh" | "poi" | "pok" | "pol" | "pom" | "pon" | "poo" | "pop" | "poq" | "por" | "pos" | "pot" | "pov" | "pow" | "pox" | "poy" | "ppe" | "ppi" | "ppk" | "ppl" | "ppm" | "ppn" | "ppo" | "ppp" | "ppq" | "pps" | "ppt" | "ppu" | "pqa" | "pqm" | "prc" | "prd" | "pre" | "prf" | "prg" | "prh" | "pri" | "prk" | "prl" | "prm" | "prn" | "pro" | "prp" | "prq" | "prr" | "prs" | "prt" | "pru" | "prw" | "prx" | "prz" | "psa" | "psc" | "psd" | "pse" | "psg" | "psh" | "psi" | "psl" | "psm" | "psn" | "pso" | "psp" | "psq" | "psr" | "pss" | "pst" | "psu" | "psw" | "psy" | "pta" | "pth" | "pti" | "ptn" | "pto" | "ptp" | "ptq" | "ptr" | "ptt" | "ptu" | "ptv" | "ptw" | "pty" | "pua" | "pub" | "puc" | "pud" | "pue" | "puf" | "pug" | "pui" | "puj" | "pum" | "puo" | "pup" | "puq" | "pur" | "pus" | "put" | "puu" | "puw" | "pux" | "puy" | "pwa" | "pwb" | "pwg" | "pwi" | "pwm" | "pwn" | "pwo" | "pwr" | "pww" | "pxm" | "pye" | "pym" | "pyn" | "pys" | "pyu" | "pyx" | "pyy" | "pzh" | "pzn" | "qua" | "qub" | "quc" | "qud" | "que" | "quf" | "qug" | "quh" | "qui" | "quk" | "qul" | "qum" | "qun" | "qup" | "quq" | "qur" | "qus" | "quv" | "quw" | "qux" | "quy" | "quz" | "qva" | "qvc" | "qve" | "qvh" | "qvi" | "qvj" | "qvl" | "qvm" | "qvn" | "qvo" | "qvp" | "qvs" | "qvw" | "qvy" | "qvz" | "qwa" | "qwc" | "qwh" | "qwm" | "qws" | "qwt" | "qxa" | "qxc" | "qxh" | "qxl" | "qxn" | "qxo" | "qxp" | "qxq" | "qxr" | "qxs" | "qxt" | "qxu" | "qxw" | "qya" | "qyp" | "raa" | "rab" | "rac" | "rad" | "raf" | "rag" | "rah" | "rai" | "raj" | "rak" | "ral" | "ram" | "ran" | "rao" | "rap" | "raq" | "rar" | "ras" | "rat" | "rau" | "rav" | "raw" | "rax" | "ray" | "raz" | "rbb" | "rbk" | "rbl" | "rbp" | "rcf" | "rdb" | "rea" | "reb" | "ree" | "reg" | "rei" | "rej" | "rel" | "rem" | "ren" | "rer" | "res" | "ret" | "rey" | "rga" | "rge" | "rgk" | "rgn" | "rgr" | "rgs" | "rgu" | "rhg" | "rhp" | "ria" | "rib" | "rif" | "ril" | "rim" | "rin" | "rir" | "rit" | "riu" | "rjg" | "rji" | "rjs" | "rka" | "rkb" | "rkh" | "rki" | "rkm" | "rkt" | "rkw" | "rma" | "rmb" | "rmc" | "rmd" | "rme" | "rmf" | "rmg" | "rmh" | "rmi" | "rmk" | "rml" | "rmm" | "rmn" | "rmo" | "rmp" | "rmq" | "rms" | "rmt" | "rmu" | "rmv" | "rmw" | "rmx" | "rmy" | "rmz" | "rnb" | "rnd" | "rng" | "rnl" | "rnn" | "rnp" | "rnr" | "rnw" | "rob" | "roc" | "rod" | "roe" | "rof" | "rog" | "roh" | "rol" | "rom" | "ron" | "roo" | "rop" | "ror" | "rou" | "row" | "rpn" | "rpt" | "rri" | "rro" | "rrt" | "rsb" | "rsk" | "rsl" | "rsm" | "rsn" | "rtc" | "rth" | "rtm" | "rts" | "rtw" | "rub" | "ruc" | "rue" | "ruf" | "rug" | "ruh" | "rui" | "ruk" | "run" | "ruo" | "rup" | "ruq" | "rus" | "rut" | "ruu" | "ruy" | "ruz" | "rwa" | "rwk" | "rwl" | "rwm" | "rwo" | "rwr" | "rxd" | "rxw" | "ryn" | "rys" | "ryu" | "rzh" | "saa" | "sab" | "sac" | "sad" | "sae" | "saf" | "sag" | "sah" | "saj" | "sak" | "sam" | "san" | "sao" | "saq" | "sar" | "sas" | "sat" | "sau" | "sav" | "saw" | "sax" | "say" | "saz" | "sba" | "sbb" | "sbc" | "sbd" | "sbe" | "sbf" | "sbg" | "sbh" | "sbi" | "sbj" | "sbk" | "sbl" | "sbm" | "sbn" | "sbo" | "sbp" | "sbq" | "sbr" | "sbs" | "sbt" | "sbu" | "sbv" | "sbw" | "sbx" | "sby" | "sbz" | "scb" | "sce" | "scf" | "scg" | "sch" | "sci" | "sck" | "scl" | "scn" | "sco" | "scp" | "scq" | "scs" | "sct" | "scu" | "scv" | "scw" | "scx" | "sda" | "sdb" | "sdc" | "sde" | "sdf" | "sdg" | "sdh" | "sdj" | "sdk" | "sdl" | "sdn" | "sdo" | "sdp" | "sdq" | "sdr" | "sds" | "sdt" | "sdu" | "sdx" | "sdz" | "sea" | "seb" | "sec" | "sed" | "see" | "sef" | "seg" | "seh" | "sei" | "sej" | "sek" | "sel" | "sen" | "seo" | "sep" | "seq" | "ser" | "ses" | "set" | "seu" | "sev" | "sew" | "sey" | "sez" | "sfb" | "sfe" | "sfm" | "sfs" | "sfw" | "sga" | "sgb" | "sgc" | "sgd" | "sge" | "sgg" | "sgh" | "sgi" | "sgj" | "sgk" | "sgm" | "sgp" | "sgr" | "sgs" | "sgt" | "sgu" | "sgw" | "sgx" | "sgy" | "sgz" | "sha" | "shb" | "shc" | "shd" | "she" | "shg" | "shh" | "shi" | "shj" | "shk" | "shl" | "shm" | "shn" | "sho" | "shp" | "shq" | "shr" | "shs" | "sht" | "shu" | "shv" | "shw" | "shx" | "shy" | "shz" | "sia" | "sib" | "sid" | "sie" | "sif" | "sig" | "sih" | "sii" | "sij" | "sik" | "sil" | "sim" | "sin" | "sip" | "siq" | "sir" | "sis" | "siu" | "siv" | "siw" | "six" | "siy" | "siz" | "sja" | "sjb" | "sjd" | "sje" | "sjg" | "sjk" | "sjl" | "sjm" | "sjn" | "sjo" | "sjp" | "sjr" | "sjs" | "sjt" | "sju" | "sjw" | "ska" | "skb" | "skc" | "skd" | "ske" | "skf" | "skg" | "skh" | "ski" | "skj" | "skm" | "skn" | "sko" | "skp" | "skq" | "skr" | "sks" | "skt" | "sku" | "skv" | "skw" | "skx" | "sky" | "skz" | "slc" | "sld" | "sle" | "slf" | "slg" | "slh" | "sli" | "slj" | "slk" | "sll" | "slm" | "sln" | "slp" | "slq" | "slr" | "sls" | "slt" | "slu" | "slv" | "slw" | "slx" | "sly" | "slz" | "sma" | "smb" | "smc" | "sme" | "smf" | "smg" | "smh" | "smj" | "smk" | "sml" | "smm" | "smn" | "smo" | "smp" | "smq" | "smr" | "sms" | "smt" | "smu" | "smv" | "smw" | "smx" | "smy" | "smz" | "sna" | "snc" | "snd" | "sne" | "snf" | "sng" | "sni" | "snj" | "snk" | "snl" | "snm" | "snn" | "sno" | "snp" | "snq" | "snr" | "sns" | "snu" | "snv" | "snw" | "snx" | "sny" | "snz" | "soa" | "sob" | "soc" | "sod" | "soe" | "sog" | "soh" | "soi" | "soj" | "sok" | "sol" | "som" | "soo" | "sop" | "soq" | "sor" | "sos" | "sot" | "sou" | "sov" | "sow" | "sox" | "soy" | "soz" | "spa" | "spb" | "spc" | "spd" | "spe" | "spg" | "spi" | "spk" | "spl" | "spm" | "spn" | "spo" | "spp" | "spq" | "spr" | "sps" | "spt" | "spu" | "spv" | "spx" | "spy" | "sqa" | "sqh" | "sqi" | "sqk" | "sqm" | "sqn" | "sqo" | "sqq" | "sqr" | "sqs" | "sqt" | "squ" | "sqx" | "sra" | "srb" | "src" | "srd" | "sre" | "srf" | "srg" | "srh" | "sri" | "srk" | "srl" | "srm" | "srn" | "sro" | "srp" | "srq" | "srr" | "srs" | "srt" | "sru" | "srv" | "srw" | "srx" | "sry" | "srz" | "ssb" | "ssc" | "ssd" | "sse" | "ssf" | "ssg" | "ssh" | "ssi" | "ssj" | "ssk" | "ssl" | "ssm" | "ssn" | "sso" | "ssp" | "ssq" | "ssr" | "sss" | "sst" | "ssu" | "ssv" | "ssw" | "ssx" | "ssy" | "ssz" | "sta" | "stb" | "std" | "ste" | "stf" | "stg" | "sth" | "sti" | "stj" | "stk" | "stl" | "stm" | "stn" | "sto" | "stp" | "stq" | "str" | "sts" | "stt" | "stu" | "stv" | "stw" | "sty" | "sua" | "sub" | "suc" | "sue" | "sug" | "sui" | "suj" | "suk" | "sun" | "suo" | "suq" | "sur" | "sus" | "sut" | "suv" | "suw" | "sux" | "suy" | "suz" | "sva" | "svb" | "svc" | "sve" | "svk" | "svm" | "svs" | "svx" | "swa" | "swb" | "swc" | "swe" | "swf" | "swg" | "swh" | "swi" | "swj" | "swk" | "swl" | "swm" | "swn" | "swo" | "swp" | "swq" | "swr" | "sws" | "swt" | "swu" | "swv" | "sww" | "swx" | "swy" | "sxb" | "sxc" | "sxe" | "sxg" | "sxk" | "sxl" | "sxm" | "sxn" | "sxo" | "sxr" | "sxs" | "sxu" | "sxw" | "sya" | "syb" | "syc" | "syi" | "syk" | "syl" | "sym" | "syn" | "syo" | "syr" | "sys" | "syw" | "syx" | "syy" | "sza" | "szb" | "szc" | "szd" | "sze" | "szg" | "szl" | "szn" | "szp" | "szs" | "szv" | "szw" | "szy" | "taa" | "tab" | "tac" | "tad" | "tae" | "taf" | "tag" | "tah" | "taj" | "tak" | "tal" | "tam" | "tan" | "tao" | "tap" | "taq" | "tar" | "tas" | "tat" | "tau" | "tav" | "taw" | "tax" | "tay" | "taz" | "tba" | "tbc" | "tbd" | "tbe" | "tbf" | "tbg" | "tbh" | "tbi" | "tbj" | "tbk" | "tbl" | "tbm" | "tbn" | "tbo" | "tbp" | "tbr" | "tbs" | "tbt" | "tbu" | "tbv" | "tbw" | "tbx" | "tby" | "tbz" | "tca" | "tcb" | "tcc" | "tcd" | "tce" | "tcf" | "tcg" | "tch" | "tci" | "tck" | "tcl" | "tcm" | "tcn" | "tco" | "tcp" | "tcq" | "tcs" | "tct" | "tcu" | "tcw" | "tcx" | "tcy" | "tcz" | "tda" | "tdb" | "tdc" | "tdd" | "tde" | "tdf" | "tdg" | "tdh" | "tdi" | "tdj" | "tdk" | "tdl" | "tdm" | "tdn" | "tdo" | "tdq" | "tdr" | "tds" | "tdt" | "tdv" | "tdx" | "tdy" | "tea" | "teb" | "tec" | "ted" | "tee" | "tef" | "teg" | "teh" | "tei" | "tek" | "tel" | "tem" | "ten" | "teo" | "tep" | "teq" | "ter" | "tes" | "tet" | "teu" | "tev" | "tew" | "tex" | "tey" | "tez" | "tfi" | "tfn" | "tfo" | "tfr" | "tft" | "tga" | "tgb" | "tgc" | "tgd" | "tge" | "tgf" | "tgh" | "tgi" | "tgj" | "tgk" | "tgl" | "tgn" | "tgo" | "tgp" | "tgq" | "tgr" | "tgs" | "tgt" | "tgu" | "tgv" | "tgw" | "tgx" | "tgy" | "tgz" | "tha" | "thd" | "the" | "thf" | "thh" | "thi" | "thk" | "thl" | "thm" | "thn" | "thp" | "thq" | "thr" | "ths" | "tht" | "thu" | "thv" | "thy" | "thz" | "tia" | "tic" | "tif" | "tig" | "tih" | "tii" | "tij" | "tik" | "til" | "tim" | "tin" | "tio" | "tip" | "tiq" | "tir" | "tis" | "tit" | "tiu" | "tiv" | "tiw" | "tix" | "tiy" | "tiz" | "tja" | "tjg" | "tji" | "tjj" | "tjl" | "tjm" | "tjn" | "tjo" | "tjp" | "tjs" | "tju" | "tjw" | "tka" | "tkb" | "tkd" | "tke" | "tkf" | "tkg" | "tkl" | "tkm" | "tkn" | "tkp" | "tkq" | "tkr" | "tks" | "tkt" | "tku" | "tkv" | "tkw" | "tkx" | "tkz" | "tla" | "tlb" | "tlc" | "tld" | "tlf" | "tlg" | "tlh" | "tli" | "tlj" | "tlk" | "tll" | "tlm" | "tln" | "tlo" | "tlp" | "tlq" | "tlr" | "tls" | "tlt" | "tlu" | "tlv" | "tlx" | "tly" | "tma" | "tmb" | "tmc" | "tmd" | "tme" | "tmf" | "tmg" | "tmh" | "tmi" | "tmj" | "tmk" | "tml" | "tmm" | "tmn" | "tmo" | "tmq" | "tmr" | "tms" | "tmt" | "tmu" | "tmv" | "tmw" | "tmy" | "tmz" | "tna" | "tnb" | "tnc" | "tnd" | "tng" | "tnh" | "tni" | "tnk" | "tnl" | "tnm" | "tnn" | "tno" | "tnp" | "tnq" | "tnr" | "tns" | "tnt" | "tnu" | "tnv" | "tnw" | "tnx" | "tny" | "tnz" | "tob" | "toc" | "tod" | "tof" | "tog" | "toh" | "toi" | "toj" | "tok" | "tol" | "tom" | "ton" | "too" | "top" | "toq" | "tor" | "tos" | "tou" | "tov" | "tow" | "tox" | "toy" | "toz" | "tpa" | "tpc" | "tpe" | "tpf" | "tpg" | "tpi" | "tpj" | "tpk" | "tpl" | "tpm" | "tpn" | "tpo" | "tpp" | "tpq" | "tpr" | "tpt" | "tpu" | "tpv" | "tpw" | "tpx" | "tpy" | "tpz" | "tqb" | "tql" | "tqm" | "tqn" | "tqo" | "tqp" | "tqq" | "tqr" | "tqt" | "tqu" | "tqw" | "tra" | "trb" | "trc" | "trd" | "tre" | "trf" | "trg" | "trh" | "tri" | "trj" | "trl" | "trm" | "trn" | "tro" | "trp" | "trq" | "trr" | "trs" | "trt" | "tru" | "trv" | "trw" | "trx" | "try" | "trz" | "tsa" | "tsb" | "tsc" | "tsd" | "tse" | "tsg" | "tsh" | "tsi" | "tsj" | "tsk" | "tsl" | "tsm" | "tsn" | "tso" | "tsp" | "tsq" | "tsr" | "tss" | "tst" | "tsu" | "tsv" | "tsw" | "tsx" | "tsy" | "tsz" | "tta" | "ttb" | "ttc" | "ttd" | "tte" | "ttf" | "ttg" | "tth" | "tti" | "ttj" | "ttk" | "ttl" | "ttm" | "ttn" | "tto" | "ttp" | "ttq" | "ttr" | "tts" | "ttt" | "ttu" | "ttv" | "ttw" | "tty" | "ttz" | "tua" | "tub" | "tuc" | "tud" | "tue" | "tuf" | "tug" | "tuh" | "tui" | "tuj" | "tuk" | "tul" | "tum" | "tun" | "tuo" | "tuq" | "tur" | "tus" | "tuu" | "tuv" | "tux" | "tuy" | "tuz" | "tva" | "tvd" | "tve" | "tvk" | "tvl" | "tvm" | "tvn" | "tvo" | "tvs" | "tvt" | "tvu" | "tvw" | "tvx" | "tvy" | "twa" | "twb" | "twc" | "twd" | "twe" | "twf" | "twg" | "twh" | "twi" | "twl" | "twm" | "twn" | "two" | "twp" | "twq" | "twr" | "twt" | "twu" | "tww" | "twx" | "twy" | "txa" | "txb" | "txc" | "txe" | "txg" | "txh" | "txi" | "txj" | "txm" | "txn" | "txo" | "txq" | "txr" | "txs" | "txt" | "txu" | "txx" | "txy" | "tya" | "tye" | "tyh" | "tyi" | "tyj" | "tyl" | "tyn" | "typ" | "tyr" | "tys" | "tyt" | "tyu" | "tyv" | "tyx" | "tyy" | "tyz" | "tza" | "tzh" | "tzj" | "tzl" | "tzm" | "tzn" | "tzo" | "tzx" | "uam" | "uan" | "uar" | "uba" | "ubi" | "ubl" | "ubr" | "ubu" | "uby" | "uda" | "ude" | "udg" | "udi" | "udj" | "udl" | "udm" | "udu" | "ues" | "ufi" | "uga" | "ugb" | "uge" | "ugh" | "ugn" | "ugo" | "ugy" | "uha" | "uhn" | "uig" | "uis" | "uiv" | "uji" | "uka" | "ukg" | "ukh" | "uki" | "ukk" | "ukl" | "ukp" | "ukq" | "ukr" | "uks" | "uku" | "ukv" | "ukw" | "uky" | "ula" | "ulb" | "ulc" | "ule" | "ulf" | "uli" | "ulk" | "ull" | "ulm" | "uln" | "ulu" | "ulw" | "uma" | "umb" | "umc" | "umd" | "umg" | "umi" | "umm" | "umn" | "umo" | "ump" | "umr" | "ums" | "umu" | "una" | "und" | "une" | "ung" | "uni" | "unk" | "unm" | "unn" | "unr" | "unu" | "unx" | "unz" | "uon" | "upi" | "upv" | "ura" | "urb" | "urc" | "urd" | "ure" | "urf" | "urg" | "urh" | "uri" | "urk" | "url" | "urm" | "urn" | "uro" | "urp" | "urr" | "urt" | "uru" | "urv" | "urw" | "urx" | "ury" | "urz" | "usa" | "ush" | "usi" | "usk" | "usp" | "uss" | "usu" | "uta" | "ute" | "uth" | "utp" | "utr" | "utu" | "uum" | "uur" | "uuu" | "uve" | "uvh" | "uvl" | "uwa" | "uya" | "uzb" | "uzn" | "uzs" | "vaa" | "vae" | "vaf" | "vag" | "vah" | "vai" | "vaj" | "val" | "vam" | "van" | "vao" | "vap" | "var" | "vas" | "vau" | "vav" | "vay" | "vbb" | "vbk" | "vec" | "ved" | "vel" | "vem" | "ven" | "veo" | "vep" | "ver" | "vgr" | "vgt" | "vic" | "vid" | "vie" | "vif" | "vig" | "vil" | "vin" | "vis" | "vit" | "viv" | "vka" | "vkj" | "vkk" | "vkl" | "vkm" | "vkn" | "vko" | "vkp" | "vkt" | "vku" | "vkz" | "vlp" | "vls" | "vma" | "vmb" | "vmc" | "vmd" | "vme" | "vmf" | "vmg" | "vmh" | "vmi" | "vmj" | "vmk" | "vml" | "vmm" | "vmp" | "vmq" | "vmr" | "vms" | "vmu" | "vmv" | "vmw" | "vmx" | "vmy" | "vmz" | "vnk" | "vnm" | "vnp" | "vol" | "vor" | "vot" | "vra" | "vro" | "vrs" | "vrt" | "vsi" | "vsl" | "vsv" | "vto" | "vum" | "vun" | "vut" | "vwa" | "waa" | "wab" | "wac" | "wad" | "wae" | "waf" | "wag" | "wah" | "wai" | "waj" | "wal" | "wam" | "wan" | "wao" | "wap" | "waq" | "war" | "was" | "wat" | "wau" | "wav" | "waw" | "wax" | "way" | "waz" | "wba" | "wbb" | "wbe" | "wbf" | "wbh" | "wbi" | "wbj" | "wbk" | "wbl" | "wbm" | "wbp" | "wbq" | "wbr" | "wbs" | "wbt" | "wbv" | "wbw" | "wca" | "wci" | "wdd" | "wdg" | "wdj" | "wdk" | "wdt" | "wdu" | "wdy" | "wea" | "wec" | "wed" | "weg" | "weh" | "wei" | "wem" | "weo" | "wep" | "wer" | "wes" | "wet" | "weu" | "wew" | "wfg" | "wga" | "wgb" | "wgg" | "wgi" | "wgo" | "wgu" | "wgy" | "wha" | "whg" | "whk" | "whu" | "wib" | "wic" | "wie" | "wif" | "wig" | "wih" | "wii" | "wij" | "wik" | "wil" | "wim" | "win" | "wir" | "wiu" | "wiv" | "wiy" | "wja" | "wji" | "wka" | "wkb" | "wkd" | "wkl" | "wkr" | "wku" | "wkw" | "wky" | "wla" | "wlc" | "wle" | "wlg" | "wlh" | "wli" | "wlk" | "wll" | "wlm" | "wln" | "wlo" | "wlr" | "wls" | "wlu" | "wlv" | "wlw" | "wlx" | "wly" | "wma" | "wmb" | "wmc" | "wmd" | "wme" | "wmg" | "wmh" | "wmi" | "wmm" | "wmn" | "wmo" | "wms" | "wmt" | "wmw" | "wmx" | "wnb" | "wnc" | "wnd" | "wne" | "wng" | "wni" | "wnk" | "wnm" | "wnn" | "wno" | "wnp" | "wnu" | "wnw" | "wny" | "woa" | "wob" | "woc" | "wod" | "woe" | "wof" | "wog" | "woi" | "wok" | "wol" | "wom" | "won" | "woo" | "wor" | "wos" | "wow" | "woy" | "wpc" | "wrb" | "wrg" | "wrh" | "wri" | "wrk" | "wrl" | "wrm" | "wrn" | "wro" | "wrp" | "wrr" | "wrs" | "wru" | "wrv" | "wrw" | "wrx" | "wry" | "wrz" | "wsa" | "wsg" | "wsi" | "wsk" | "wsr" | "wss" | "wsu" | "wsv" | "wtf" | "wth" | "wti" | "wtk" | "wtm" | "wtw" | "wua" | "wub" | "wud" | "wuh" | "wul" | "wum" | "wun" | "wur" | "wut" | "wuu" | "wuv" | "wux" | "wuy" | "wwa" | "wwb" | "wwo" | "wwr" | "www" | "wxa" | "wxw" | "wyb" | "wyi" | "wym" | "wyn" | "wyr" | "wyy" | "xaa" | "xab" | "xac" | "xad" | "xae" | "xag" | "xai" | "xaj" | "xak" | "xal" | "xam" | "xan" | "xao" | "xap" | "xaq" | "xar" | "xas" | "xat" | "xau" | "xav" | "xaw" | "xay" | "xbb" | "xbc" | "xbd" | "xbe" | "xbg" | "xbi" | "xbj" | "xbm" | "xbn" | "xbo" | "xbp" | "xbr" | "xbw" | "xby" | "xcb" | "xcc" | "xce" | "xcg" | "xch" | "xcl" | "xcm" | "xcn" | "xco" | "xcr" | "xct" | "xcu" | "xcv" | "xcw" | "xcy" | "xda" | "xdc" | "xdk" | "xdm" | "xdo" | "xdq" | "xdy" | "xeb" | "xed" | "xeg" | "xel" | "xem" | "xep" | "xer" | "xes" | "xet" | "xeu" | "xfa" | "xga" | "xgb" | "xgd" | "xgf" | "xgg" | "xgi" | "xgl" | "xgm" | "xgr" | "xgu" | "xgw" | "xha" | "xhc" | "xhd" | "xhe" | "xhm" | "xho" | "xhr" | "xht" | "xhu" | "xhv" | "xib" | "xii" | "xil" | "xin" | "xir" | "xis" | "xiv" | "xiy" | "xjb" | "xjt" | "xka" | "xkb" | "xkc" | "xkd" | "xke" | "xkf" | "xkg" | "xki" | "xkj" | "xkk" | "xkl" | "xkn" | "xko" | "xkp" | "xkq" | "xkr" | "xks" | "xkt" | "xku" | "xkv" | "xkw" | "xkx" | "xky" | "xkz" | "xla" | "xlb" | "xlc" | "xld" | "xle" | "xlg" | "xli" | "xln" | "xlo" | "xlp" | "xls" | "xlu" | "xly" | "xma" | "xmb" | "xmc" | "xmd" | "xme" | "xmf" | "xmg" | "xmh" | "xmj" | "xmk" | "xml" | "xmm" | "xmn" | "xmo" | "xmp" | "xmq" | "xmr" | "xms" | "xmt" | "xmu" | "xmv" | "xmw" | "xmx" | "xmy" | "xmz" | "xna" | "xnb" | "xng" | "xnh" | "xni" | "xnj" | "xnk" | "xnm" | "xnn" | "xno" | "xnq" | "xnr" | "xns" | "xnt" | "xnu" | "xny" | "xnz" | "xoc" | "xod" | "xog" | "xoi" | "xok" | "xom" | "xon" | "xoo" | "xop" | "xor" | "xow" | "xpa" | "xpb" | "xpc" | "xpd" | "xpe" | "xpf" | "xpg" | "xph" | "xpi" | "xpj" | "xpk" | "xpl" | "xpm" | "xpn" | "xpo" | "xpp" | "xpq" | "xpr" | "xps" | "xpt" | "xpu" | "xpv" | "xpw" | "xpx" | "xpy" | "xpz" | "xqa" | "xqt" | "xra" | "xrb" | "xrd" | "xre" | "xrg" | "xri" | "xrm" | "xrn" | "xrr" | "xrt" | "xru" | "xrw" | "xsa" | "xsb" | "xsc" | "xsd" | "xse" | "xsh" | "xsi" | "xsj" | "xsl" | "xsm" | "xsn" | "xso" | "xsp" | "xsq" | "xsr" | "xss" | "xsu" | "xsv" | "xsy" | "xta" | "xtb" | "xtc" | "xtd" | "xte" | "xtg" | "xth" | "xti" | "xtj" | "xtl" | "xtm" | "xtn" | "xto" | "xtp" | "xtq" | "xtr" | "xts" | "xtt" | "xtu" | "xtv" | "xtw" | "xty" | "xua" | "xub" | "xud" | "xug" | "xuj" | "xul" | "xum" | "xun" | "xuo" | "xup" | "xur" | "xut" | "xuu" | "xve" | "xvi" | "xvn" | "xvo" | "xvs" | "xwa" | "xwc" | "xwd" | "xwe" | "xwg" | "xwj" | "xwk" | "xwl" | "xwo" | "xwr" | "xwt" | "xww" | "xxb" | "xxk" | "xxm" | "xxr" | "xxt" | "xya" | "xyb" | "xyj" | "xyk" | "xyl" | "xyt" | "xyy" | "xzh" | "xzm" | "xzp" | "yaa" | "yab" | "yac" | "yad" | "yae" | "yaf" | "yag" | "yah" | "yai" | "yaj" | "yak" | "yal" | "yam" | "yan" | "yao" | "yap" | "yaq" | "yar" | "yas" | "yat" | "yau" | "yav" | "yaw" | "yax" | "yay" | "yaz" | "yba" | "ybb" | "ybe" | "ybh" | "ybi" | "ybj" | "ybk" | "ybl" | "ybm" | "ybn" | "ybo" | "ybx" | "yby" | "ych" | "ycl" | "ycn" | "ycp" | "yda" | "ydd" | "yde" | "ydg" | "ydk" | "yea" | "yec" | "yee" | "yei" | "yej" | "yel" | "yer" | "yes" | "yet" | "yeu" | "yev" | "yey" | "yga" | "ygi" | "ygl" | "ygm" | "ygp" | "ygr" | "ygs" | "ygu" | "ygw" | "yha" | "yhd" | "yhl" | "yhs" | "yia" | "yid" | "yif" | "yig" | "yih" | "yii" | "yij" | "yik" | "yil" | "yim" | "yin" | "yip" | "yiq" | "yir" | "yis" | "yit" | "yiu" | "yiv" | "yix" | "yiz" | "yka" | "ykg" | "yki" | "ykk" | "ykl" | "ykm" | "ykn" | "yko" | "ykr" | "ykt" | "yku" | "yky" | "yla" | "ylb" | "yle" | "ylg" | "yli" | "yll" | "ylm" | "yln" | "ylo" | "ylr" | "ylu" | "yly" | "ymb" | "ymc" | "ymd" | "yme" | "ymg" | "ymh" | "ymi" | "ymk" | "yml" | "ymm" | "ymn" | "ymo" | "ymp" | "ymq" | "ymr" | "yms" | "ymx" | "ymz" | "yna" | "ynd" | "yne" | "yng" | "ynk" | "ynl" | "ynn" | "yno" | "ynq" | "yns" | "ynu" | "yob" | "yog" | "yoi" | "yok" | "yol" | "yom" | "yon" | "yor" | "yot" | "yox" | "yoy" | "ypa" | "ypb" | "ypg" | "yph" | "ypm" | "ypn" | "ypo" | "ypp" | "ypz" | "yra" | "yrb" | "yre" | "yrk" | "yrl" | "yrm" | "yrn" | "yro" | "yrs" | "yrw" | "yry" | "ysc" | "ysd" | "ysg" | "ysl" | "ysm" | "ysn" | "yso" | "ysp" | "ysr" | "yss" | "ysy" | "yta" | "ytl" | "ytp" | "ytw" | "yty" | "yua" | "yub" | "yuc" | "yud" | "yue" | "yuf" | "yug" | "yui" | "yuj" | "yuk" | "yul" | "yum" | "yun" | "yup" | "yuq" | "yur" | "yut" | "yuw" | "yux" | "yuy" | "yuz" | "yva" | "yvt" | "ywa" | "ywg" | "ywl" | "ywn" | "ywq" | "ywr" | "ywt" | "ywu" | "yww" | "yxa" | "yxg" | "yxl" | "yxm" | "yxu" | "yxy" | "yyr" | "yyu" | "yyz" | "yzg" | "yzk" | "zaa" | "zab" | "zac" | "zad" | "zae" | "zaf" | "zag" | "zah" | "zai" | "zaj" | "zak" | "zal" | "zam" | "zao" | "zap" | "zaq" | "zar" | "zas" | "zat" | "zau" | "zav" | "zaw" | "zax" | "zay" | "zaz" | "zba" | "zbc" | "zbe" | "zbl" | "zbt" | "zbu" | "zbw" | "zca" | "zcd" | "zch" | "zdj" | "zea" | "zeg" | "zeh" | "zen" | "zga" | "zgb" | "zgh" | "zgm" | "zgn" | "zgr" | "zha" | "zhb" | "zhd" | "zhi" | "zhn" | "zho" | "zhw" | "zia" | "zib" | "zik" | "zil" | "zim" | "zin" | "ziw" | "ziz" | "zka" | "zkb" | "zkd" | "zkg" | "zkh" | "zkk" | "zkn" | "zko" | "zkp" | "zkr" | "zkt" | "zku" | "zkv" | "zkz" | "zla" | "zlj" | "zlm" | "zln" | "zlq" | "zma" | "zmb" | "zmc" | "zmd" | "zme" | "zmf" | "zmg" | "zmh" | "zmi" | "zmj" | "zmk" | "zml" | "zmm" | "zmn" | "zmo" | "zmp" | "zmq" | "zmr" | "zms" | "zmt" | "zmu" | "zmv" | "zmw" | "zmx" | "zmy" | "zmz" | "zna" | "zne" | "zng" | "znk" | "zns" | "zoc" | "zoh" | "zom" | "zoo" | "zoq" | "zor" | "zos" | "zpa" | "zpb" | "zpc" | "zpd" | "zpe" | "zpf" | "zpg" | "zph" | "zpi" | "zpj" | "zpk" | "zpl" | "zpm" | "zpn" | "zpo" | "zpp" | "zpq" | "zpr" | "zps" | "zpt" | "zpu" | "zpv" | "zpw" | "zpx" | "zpy" | "zpz" | "zqe" | "zra" | "zrg" | "zrn" | "zro" | "zrp" | "zrs" | "zsa" | "zsk" | "zsl" | "zsm" | "zsr" | "zsu" | "zte" | "ztg" | "ztl" | "ztm" | "ztn" | "ztp" | "ztq" | "zts" | "ztt" | "ztu" | "ztx" | "zty" | "zua" | "zuh" | "zul" | "zum" | "zun" | "zuy" | "zwa" | "zxx" | "zyb" | "zyg" | "zyj" | "zyn" | "zyp" | "zza" | "zzj";
|
|
6794
|
-
relationship_to_developer: components["schemas"]["organization__create_agent_version__Request__Identity__RelationshipToDeveloper"];
|
|
6795
|
-
};
|
|
6796
|
-
/** RelationshipToDeveloper */
|
|
6797
|
-
organization__create_agent_version__Request__Identity__RelationshipToDeveloper: {
|
|
6798
|
-
ownership: components["schemas"]["amigo_lib__pydantic__base_model__StrippedNonemptyString__1"];
|
|
6799
|
-
type: components["schemas"]["amigo_lib__pydantic__base_model__StrippedNonemptyString__1"];
|
|
6800
|
-
conversation_visibility: components["schemas"]["amigo_lib__pydantic__base_model__StrippedNonemptyString__1"];
|
|
6801
|
-
thought_visibility: components["schemas"]["amigo_lib__pydantic__base_model__StrippedNonemptyString__1"];
|
|
6802
|
-
};
|
|
6803
|
-
/** VoiceConfig */
|
|
6804
|
-
organization__create_agent_version__Request__VoiceConfig: {
|
|
6805
|
-
/**
|
|
6806
|
-
* Voice Id
|
|
6807
|
-
* @description The Elevenlabs voice ID for this agent.
|
|
6808
|
-
*/
|
|
6809
|
-
voice_id: string;
|
|
6810
|
-
/** Stability */
|
|
6811
|
-
stability: number;
|
|
6812
|
-
/** Similarity Boost */
|
|
6813
|
-
similarity_boost: number;
|
|
6814
|
-
/** Style */
|
|
6815
|
-
style: number;
|
|
7392
|
+
/** @description The Cartesia voice config for the agent. If set to null, it is not updated. */
|
|
7393
|
+
voice_config?: components["schemas"]["VoiceConfig"] | null;
|
|
6816
7394
|
};
|
|
6817
7395
|
/** Response */
|
|
6818
7396
|
organization__create_agent_version__Response: {
|
|
@@ -6838,6 +7416,8 @@ export interface components {
|
|
|
6838
7416
|
};
|
|
6839
7417
|
/** Request */
|
|
6840
7418
|
organization__create_api_key__Request: {
|
|
7419
|
+
/** @description An optional name for the API key for easier identification by users. */
|
|
7420
|
+
name: components["schemas"]["amigo_lib__pydantic__base_model__StrippedNonemptyString__1"] | null;
|
|
6841
7421
|
/**
|
|
6842
7422
|
* Duration
|
|
6843
7423
|
* Format: duration
|
|
@@ -6885,7 +7465,7 @@ export interface components {
|
|
|
6885
7465
|
* User Dimensions
|
|
6886
7466
|
* @description User dimensions for the organization.
|
|
6887
7467
|
*/
|
|
6888
|
-
user_dimensions: components["schemas"]["
|
|
7468
|
+
user_dimensions: components["schemas"]["UserDimension-Input"][];
|
|
6889
7469
|
/**
|
|
6890
7470
|
* Logo
|
|
6891
7471
|
* Format: base64
|
|
@@ -7024,15 +7604,6 @@ export interface components {
|
|
|
7024
7604
|
*/
|
|
7025
7605
|
global_boundary_constraints: components["schemas"]["amigo_lib__pydantic__base_model__StrippedNonemptyString__1"][];
|
|
7026
7606
|
};
|
|
7027
|
-
/** ExitCondition */
|
|
7028
|
-
organization__create_service_hierarchical_state_machine_version__Request__DecisionState__ExitCondition: {
|
|
7029
|
-
description: components["schemas"]["amigo_lib__pydantic__base_model__StrippedNonemptyString__1"];
|
|
7030
|
-
/** Next State */
|
|
7031
|
-
next_state: components["schemas"]["StateOrRefName"] | [
|
|
7032
|
-
components["schemas"]["ExternalStateName"],
|
|
7033
|
-
components["schemas"]["StateOrRefName"]
|
|
7034
|
-
];
|
|
7035
|
-
};
|
|
7036
7607
|
/** ToolCallSpec */
|
|
7037
7608
|
organization__create_service_hierarchical_state_machine_version__Request__ToolCallSpec: {
|
|
7038
7609
|
/**
|
|
@@ -7051,7 +7622,7 @@ export interface components {
|
|
|
7051
7622
|
* Audio Fillers
|
|
7052
7623
|
* @description A list of audio fillers to play in audio mode if the tool is taking a long time.
|
|
7053
7624
|
*/
|
|
7054
|
-
audio_fillers: components["schemas"]["
|
|
7625
|
+
audio_fillers: components["schemas"]["amigo_lib__pydantic__base_model__StrippedNonemptyString__1"][];
|
|
7055
7626
|
/**
|
|
7056
7627
|
* Audio Filler Triggered After
|
|
7057
7628
|
* @description The number of seconds to wait before playing an audio filler.
|
|
@@ -7135,14 +7706,14 @@ export interface components {
|
|
|
7135
7706
|
*/
|
|
7136
7707
|
version: number;
|
|
7137
7708
|
/** @description The voice configuration of the agent. */
|
|
7138
|
-
voice_config: components["schemas"]["
|
|
7709
|
+
voice_config: components["schemas"]["VoiceConfigInstance"] | null;
|
|
7139
7710
|
/**
|
|
7140
7711
|
* Initials
|
|
7141
7712
|
* @description The initials of the agent.
|
|
7142
7713
|
*/
|
|
7143
7714
|
initials: string;
|
|
7144
7715
|
/** @description The identity of the agent. */
|
|
7145
|
-
identity: components["schemas"]["
|
|
7716
|
+
identity: components["schemas"]["Identity-Output"];
|
|
7146
7717
|
/**
|
|
7147
7718
|
* Background
|
|
7148
7719
|
* @description A description of the `Agent`'s background.
|
|
@@ -7164,6 +7735,8 @@ export interface components {
|
|
|
7164
7735
|
* @description The time at which this version was created.
|
|
7165
7736
|
*/
|
|
7166
7737
|
created_at: string;
|
|
7738
|
+
/** @description The user who created this version of the agent. */
|
|
7739
|
+
creator: components["schemas"]["amigo_lib__mongo__collections__agent__Agent__UserInfo"];
|
|
7167
7740
|
};
|
|
7168
7741
|
/** Response */
|
|
7169
7742
|
organization__get_agents__Response: {
|
|
@@ -7212,7 +7785,7 @@ export interface components {
|
|
|
7212
7785
|
* Api Keys
|
|
7213
7786
|
* @description The list of API keys for the organization.
|
|
7214
7787
|
*/
|
|
7215
|
-
api_keys: components["schemas"]["
|
|
7788
|
+
api_keys: components["schemas"]["APIKeyInstance"][];
|
|
7216
7789
|
};
|
|
7217
7790
|
/** Response */
|
|
7218
7791
|
organization__get_organization__Response: {
|
|
@@ -7248,7 +7821,7 @@ export interface components {
|
|
|
7248
7821
|
onboarding_instructions: string[];
|
|
7249
7822
|
/** @description Default user preferences for new users in this organization. This field is only populated if this endpoint is called with user authentication credentials,
|
|
7250
7823
|
* and the authenticated user has the `Organization:GetOrganizationDetails` permission. */
|
|
7251
|
-
default_user_preferences: components["schemas"]["
|
|
7824
|
+
default_user_preferences: components["schemas"]["Preferences-Output"] | null;
|
|
7252
7825
|
};
|
|
7253
7826
|
/** Response */
|
|
7254
7827
|
organization__get_service_hierarchical_state_machine_versions__Response: {
|
|
@@ -7292,7 +7865,7 @@ export interface components {
|
|
|
7292
7865
|
* User Dimensions
|
|
7293
7866
|
* @description The list of user dimensions for the organization.
|
|
7294
7867
|
*/
|
|
7295
|
-
user_dimensions: components["schemas"]["
|
|
7868
|
+
user_dimensions: components["schemas"]["UserDimension-Output"][];
|
|
7296
7869
|
};
|
|
7297
7870
|
/** Request */
|
|
7298
7871
|
organization__modify_organization__Request: {
|
|
@@ -7328,7 +7901,7 @@ export interface components {
|
|
|
7328
7901
|
* User Dimensions
|
|
7329
7902
|
* @description User dimensions for the organization. If not set or `null`, this field is not updated.
|
|
7330
7903
|
*/
|
|
7331
|
-
user_dimensions?: components["schemas"]["
|
|
7904
|
+
user_dimensions?: components["schemas"]["UserDimension-Input"][] | null;
|
|
7332
7905
|
/** @description The default user preferences for the organization. If `null`, this field is not updated. */
|
|
7333
7906
|
default_user_preferences?: components["schemas"]["organization__modify_organization__Request__Preferences"] | null;
|
|
7334
7907
|
/**
|
|
@@ -7368,12 +7941,6 @@ export interface components {
|
|
|
7368
7941
|
*/
|
|
7369
7942
|
audio_keyterms?: string[];
|
|
7370
7943
|
};
|
|
7371
|
-
/** UserDimension */
|
|
7372
|
-
organization__modify_organization__Request__UserDimension: {
|
|
7373
|
-
description: components["schemas"]["amigo_lib__pydantic__base_model__StrippedNonemptyString__1"];
|
|
7374
|
-
/** Tags */
|
|
7375
|
-
tags: components["schemas"]["amigo_lib__pydantic__base_model__StrippedNonemptyString__1"][];
|
|
7376
|
-
};
|
|
7377
7944
|
/** Request */
|
|
7378
7945
|
role__assign_role__Request: {
|
|
7379
7946
|
/**
|
|
@@ -7400,44 +7967,82 @@ export interface components {
|
|
|
7400
7967
|
* Permission Grants
|
|
7401
7968
|
* @description A list of permission grants associated with this role.
|
|
7402
7969
|
*/
|
|
7403
|
-
permission_grants: components["schemas"]["
|
|
7970
|
+
permission_grants: components["schemas"]["PermissionGrant-Input"][];
|
|
7404
7971
|
/** @description The frontend view for users of this role. */
|
|
7405
7972
|
frontend_view: components["schemas"]["FrontendView"];
|
|
7406
7973
|
};
|
|
7407
|
-
/**
|
|
7408
|
-
|
|
7974
|
+
/** Response */
|
|
7975
|
+
role__create_role__Response: {
|
|
7409
7976
|
/**
|
|
7410
|
-
*
|
|
7411
|
-
* @description
|
|
7412
|
-
* @enum {string}
|
|
7977
|
+
* Role Id
|
|
7978
|
+
* @description The ID of the newly created role.
|
|
7413
7979
|
*/
|
|
7414
|
-
|
|
7415
|
-
|
|
7416
|
-
|
|
7980
|
+
role_id: string;
|
|
7981
|
+
};
|
|
7982
|
+
/** Request */
|
|
7983
|
+
role__create_temporary_permission_grant__Request: {
|
|
7417
7984
|
/**
|
|
7418
|
-
*
|
|
7419
|
-
* @description
|
|
7985
|
+
* User Id
|
|
7986
|
+
* @description The ID of the user to grant the temporary permission to.
|
|
7420
7987
|
*/
|
|
7421
|
-
|
|
7422
|
-
|
|
7988
|
+
user_id: string;
|
|
7989
|
+
/**
|
|
7990
|
+
* Duration
|
|
7991
|
+
* Format: duration
|
|
7992
|
+
* @description In ISO8601 format, the duration that this permission grant will last.
|
|
7993
|
+
*/
|
|
7994
|
+
duration: string;
|
|
7995
|
+
/** @description The permission grant to give to the user. */
|
|
7996
|
+
permission_grant: components["schemas"]["PermissionGrantInstance"];
|
|
7997
|
+
/**
|
|
7998
|
+
* Tags
|
|
7999
|
+
* @description The tags of the permission grant. Both the key and the value can only contain alphanumeric characters, underscores, or spaces.
|
|
8000
|
+
*/
|
|
8001
|
+
tags: {
|
|
8002
|
+
[key: string]: components["schemas"]["StrippedNonemptyString___w__s_____"] | null;
|
|
7423
8003
|
};
|
|
7424
|
-
description
|
|
8004
|
+
/** @description A justification for why this grant is made. */
|
|
8005
|
+
justification: components["schemas"]["amigo_lib__pydantic__base_model__StrippedNonemptyString__4"];
|
|
7425
8006
|
};
|
|
7426
8007
|
/** Response */
|
|
7427
|
-
|
|
8008
|
+
role__create_temporary_permission_grant__Response: {
|
|
7428
8009
|
/**
|
|
7429
|
-
*
|
|
7430
|
-
* @description The ID of the
|
|
8010
|
+
* Temporary Permission Grant Id
|
|
8011
|
+
* @description The ID of the created temporary permission grant.
|
|
8012
|
+
*/
|
|
8013
|
+
temporary_permission_grant_id: string;
|
|
8014
|
+
/**
|
|
8015
|
+
* Expires At
|
|
8016
|
+
* Format: date-time
|
|
8017
|
+
* @description The time in UTC at which the permission grant expires.
|
|
8018
|
+
*/
|
|
8019
|
+
expires_at: string;
|
|
8020
|
+
};
|
|
8021
|
+
/** Response */
|
|
8022
|
+
role__get_roles__Response: {
|
|
8023
|
+
/**
|
|
8024
|
+
* Roles
|
|
8025
|
+
* @description A list of roles in this organization.
|
|
8026
|
+
*/
|
|
8027
|
+
roles: components["schemas"]["RoleInstance"][];
|
|
8028
|
+
};
|
|
8029
|
+
/** Response */
|
|
8030
|
+
role__get_temporary_permission_grants__Response: {
|
|
8031
|
+
/**
|
|
8032
|
+
* Temporary Permission Grants
|
|
8033
|
+
* @description The retrieved temporary permission grants.
|
|
8034
|
+
*/
|
|
8035
|
+
temporary_permission_grants: components["schemas"]["TemporaryPermissionGrant"][];
|
|
8036
|
+
/**
|
|
8037
|
+
* Has More
|
|
8038
|
+
* @description Whether there are more temporary permission grants to retrieve.
|
|
7431
8039
|
*/
|
|
7432
|
-
|
|
7433
|
-
};
|
|
7434
|
-
/** Response */
|
|
7435
|
-
role__get_roles__Response: {
|
|
8040
|
+
has_more: boolean;
|
|
7436
8041
|
/**
|
|
7437
|
-
*
|
|
7438
|
-
* @description
|
|
8042
|
+
* Continuation Token
|
|
8043
|
+
* @description The continuation token to use to retrieve the next set of temporary permission grants.
|
|
7439
8044
|
*/
|
|
7440
|
-
|
|
8045
|
+
continuation_token: number | null;
|
|
7441
8046
|
};
|
|
7442
8047
|
/** Request */
|
|
7443
8048
|
role__modify_role__Request: {
|
|
@@ -7447,7 +8052,7 @@ export interface components {
|
|
|
7447
8052
|
* Permission Grants
|
|
7448
8053
|
* @description A list of permission grants associated with this role. Only updated if specified. This field is an immutable field.
|
|
7449
8054
|
*/
|
|
7450
|
-
permission_grants?: components["schemas"]["
|
|
8055
|
+
permission_grants?: components["schemas"]["PermissionGrant-Input"][] | null;
|
|
7451
8056
|
/** @description The frontend view for the user of this role. Only updated if specified. This field is an immutable field. */
|
|
7452
8057
|
frontend_view?: components["schemas"]["FrontendView"] | null;
|
|
7453
8058
|
};
|
|
@@ -7482,7 +8087,7 @@ export interface components {
|
|
|
7482
8087
|
is_active: boolean;
|
|
7483
8088
|
/** @description The `release` version set to use for this service. If not specified, the `release` version set will be the same as the `edge` version set, which uses the
|
|
7484
8089
|
* latest agent and state machine versions with no model preference. */
|
|
7485
|
-
release_version_set?: components["schemas"]["
|
|
8090
|
+
release_version_set?: components["schemas"]["VersionSet-Input"] | null;
|
|
7486
8091
|
/**
|
|
7487
8092
|
* Keyterms
|
|
7488
8093
|
* @description A list of keyterms that are easy to get wrong during audio transcriptions that tend to occur commonly in audio sessions using this service.
|
|
@@ -7496,35 +8101,6 @@ export interface components {
|
|
|
7496
8101
|
[key: string]: components["schemas"]["StrippedNonemptyString___w__s_____"] | null;
|
|
7497
8102
|
};
|
|
7498
8103
|
};
|
|
7499
|
-
/** VersionSet */
|
|
7500
|
-
service__create_service__Request__VersionSet: {
|
|
7501
|
-
/**
|
|
7502
|
-
* Agent Version Number
|
|
7503
|
-
* @description The version number of the agent to be used. If None, the latest agent version will be used.
|
|
7504
|
-
*/
|
|
7505
|
-
agent_version_number: number | null;
|
|
7506
|
-
/**
|
|
7507
|
-
* Service Hierarchical State Machine Version Number
|
|
7508
|
-
* @description The version number of the state machine to be used. If None, the latest state machine version will be used.
|
|
7509
|
-
*/
|
|
7510
|
-
service_hierarchical_state_machine_version_number: number | null;
|
|
7511
|
-
/** Llm Model Preferences */
|
|
7512
|
-
llm_model_preferences: {
|
|
7513
|
-
[key: string]: components["schemas"]["service__create_service__Request__VersionSet__LLMConfig"];
|
|
7514
|
-
};
|
|
7515
|
-
};
|
|
7516
|
-
/** LLMConfig */
|
|
7517
|
-
service__create_service__Request__VersionSet__LLMConfig: {
|
|
7518
|
-
llm_name: components["schemas"]["LLMType"];
|
|
7519
|
-
/**
|
|
7520
|
-
* Params
|
|
7521
|
-
* @description LLM-specific parameters to use.
|
|
7522
|
-
* @default {}
|
|
7523
|
-
*/
|
|
7524
|
-
params?: {
|
|
7525
|
-
[key: string]: unknown;
|
|
7526
|
-
};
|
|
7527
|
-
};
|
|
7528
8104
|
/** Response */
|
|
7529
8105
|
service__create_service__Response: {
|
|
7530
8106
|
/**
|
|
@@ -7605,7 +8181,7 @@ export interface components {
|
|
|
7605
8181
|
/** Request */
|
|
7606
8182
|
service__upsert_service_version_set__Request: {
|
|
7607
8183
|
/** @description The version set to upsert. */
|
|
7608
|
-
version_set: components["schemas"]["
|
|
8184
|
+
version_set: components["schemas"]["VersionSet-Input"];
|
|
7609
8185
|
};
|
|
7610
8186
|
/** Request */
|
|
7611
8187
|
simulation__create_simulation_persona__Request: {
|
|
@@ -7644,6 +8220,22 @@ export interface components {
|
|
|
7644
8220
|
* @description A list of strings representing the user models associated with the simulation persona.
|
|
7645
8221
|
*/
|
|
7646
8222
|
user_models: components["schemas"]["amigo_lib__pydantic__base_model__StrippedNonemptyString__1"][];
|
|
8223
|
+
/**
|
|
8224
|
+
* Nonsensitive User Variables
|
|
8225
|
+
* @description A dictionary of the simulation persona's nonsensitive user variables that are provided to the tools.
|
|
8226
|
+
*/
|
|
8227
|
+
nonsensitive_user_variables: {
|
|
8228
|
+
[key: string]: string;
|
|
8229
|
+
};
|
|
8230
|
+
/**
|
|
8231
|
+
* Sensitive User Variables
|
|
8232
|
+
* @description A dictionary of the simulation persona's sensitive user variables that are provided to the tools. Unlike the ones in the user collection,
|
|
8233
|
+
* these are not encrypted, so only sensitive information in staging environment should be stored here.
|
|
8234
|
+
* @default {}
|
|
8235
|
+
*/
|
|
8236
|
+
sensitive_user_variables?: {
|
|
8237
|
+
[key: string]: string;
|
|
8238
|
+
};
|
|
7647
8239
|
};
|
|
7648
8240
|
/** Response */
|
|
7649
8241
|
simulation__create_simulation_persona__Response: {
|
|
@@ -7674,6 +8266,22 @@ export interface components {
|
|
|
7674
8266
|
* @description A list of strings representing the user models associated with the simulation persona.
|
|
7675
8267
|
*/
|
|
7676
8268
|
user_models: components["schemas"]["amigo_lib__pydantic__base_model__StrippedNonemptyString__1"][];
|
|
8269
|
+
/**
|
|
8270
|
+
* Nonsensitive User Variables
|
|
8271
|
+
* @description A dictionary of the simulation persona's nonsensitive user variables that are provided to the tools.
|
|
8272
|
+
*/
|
|
8273
|
+
nonsensitive_user_variables: {
|
|
8274
|
+
[key: string]: string;
|
|
8275
|
+
};
|
|
8276
|
+
/**
|
|
8277
|
+
* Sensitive User Variables
|
|
8278
|
+
* @description A dictionary of the simulation persona's sensitive user variables that are provided to the tools. Unlike the ones in the user collection,
|
|
8279
|
+
* these are not encrypted, so only sensitive information in staging environment should be stored here.
|
|
8280
|
+
* @default {}
|
|
8281
|
+
*/
|
|
8282
|
+
sensitive_user_variables?: {
|
|
8283
|
+
[key: string]: string;
|
|
8284
|
+
};
|
|
7677
8285
|
};
|
|
7678
8286
|
/** Response */
|
|
7679
8287
|
simulation__create_simulation_persona_version__Response: {
|
|
@@ -7810,7 +8418,7 @@ export interface components {
|
|
|
7810
8418
|
* Unit Test Runs
|
|
7811
8419
|
* @description The unit test runs that are part of this set.
|
|
7812
8420
|
*/
|
|
7813
|
-
unit_test_runs: components["schemas"]["
|
|
8421
|
+
unit_test_runs: components["schemas"]["UnitTestRunDescriptor-Input"][];
|
|
7814
8422
|
/**
|
|
7815
8423
|
* Tags
|
|
7816
8424
|
* @description The tags of the simulation unit test set.
|
|
@@ -7819,16 +8427,6 @@ export interface components {
|
|
|
7819
8427
|
[key: string]: string | null;
|
|
7820
8428
|
};
|
|
7821
8429
|
};
|
|
7822
|
-
/** UnitTestRunDescriptor */
|
|
7823
|
-
simulation__create_simulation_unit_test_set__Request__UnitTestRunDescriptor: {
|
|
7824
|
-
/** Unit Test Id */
|
|
7825
|
-
unit_test_id: string;
|
|
7826
|
-
/**
|
|
7827
|
-
* Run Count
|
|
7828
|
-
* @description The number of times to run the unit test.
|
|
7829
|
-
*/
|
|
7830
|
-
run_count: number;
|
|
7831
|
-
};
|
|
7832
8430
|
/** Response */
|
|
7833
8431
|
simulation__create_simulation_unit_test_set__Response: {
|
|
7834
8432
|
/**
|
|
@@ -7877,7 +8475,7 @@ export interface components {
|
|
|
7877
8475
|
* Simulation Personas
|
|
7878
8476
|
* @description The list of simulation personas.
|
|
7879
8477
|
*/
|
|
7880
|
-
simulation_personas: components["schemas"]["
|
|
8478
|
+
simulation_personas: components["schemas"]["SimulationPersonaInstance"][];
|
|
7881
8479
|
/**
|
|
7882
8480
|
* Has More
|
|
7883
8481
|
* @description Whether there are more simulation personas to fetch.
|
|
@@ -7912,52 +8510,6 @@ export interface components {
|
|
|
7912
8510
|
*/
|
|
7913
8511
|
roles: string[];
|
|
7914
8512
|
};
|
|
7915
|
-
/** SimulationPersonaInstance */
|
|
7916
|
-
simulation__get_simulation_personas__Response__SimulationPersonaInstance: {
|
|
7917
|
-
/**
|
|
7918
|
-
* Id
|
|
7919
|
-
* @description The ID of the simulation persona.
|
|
7920
|
-
*/
|
|
7921
|
-
id: string;
|
|
7922
|
-
/**
|
|
7923
|
-
* Name
|
|
7924
|
-
* @description The name of the simulation persona.
|
|
7925
|
-
*/
|
|
7926
|
-
name: string;
|
|
7927
|
-
/**
|
|
7928
|
-
* Role
|
|
7929
|
-
* @description The role of the simulation persona.
|
|
7930
|
-
*/
|
|
7931
|
-
role: string;
|
|
7932
|
-
/**
|
|
7933
|
-
* Tags
|
|
7934
|
-
* @description The tags of the simulation persona.
|
|
7935
|
-
*/
|
|
7936
|
-
tags: {
|
|
7937
|
-
[key: string]: string | null;
|
|
7938
|
-
};
|
|
7939
|
-
/**
|
|
7940
|
-
* Is Deleted
|
|
7941
|
-
* @description Whether the simulation persona is deleted.
|
|
7942
|
-
*/
|
|
7943
|
-
is_deleted: boolean;
|
|
7944
|
-
/**
|
|
7945
|
-
* Created At
|
|
7946
|
-
* Format: date-time
|
|
7947
|
-
* @description The timestamp when the simulation persona was created.
|
|
7948
|
-
*/
|
|
7949
|
-
created_at: string;
|
|
7950
|
-
/** @description The user who created the simulation persona. */
|
|
7951
|
-
creator: components["schemas"]["amigo_lib__mongo__collections__simulation_persona__SimulationPersona__UserInfo"];
|
|
7952
|
-
/**
|
|
7953
|
-
* Updated At
|
|
7954
|
-
* Format: date-time
|
|
7955
|
-
* @description The timestamp when the simulation persona was last updated.
|
|
7956
|
-
*/
|
|
7957
|
-
updated_at: string;
|
|
7958
|
-
/** @description The user who last updated the simulation persona. */
|
|
7959
|
-
updated_by: components["schemas"]["amigo_lib__mongo__collections__simulation_persona__SimulationPersona__UserInfo"];
|
|
7960
|
-
};
|
|
7961
8513
|
/** Response */
|
|
7962
8514
|
simulation__get_simulation_scenario_versions__Response: {
|
|
7963
8515
|
/**
|
|
@@ -7982,7 +8534,7 @@ export interface components {
|
|
|
7982
8534
|
* Simulation Scenarios
|
|
7983
8535
|
* @description The list of simulation scenarios.
|
|
7984
8536
|
*/
|
|
7985
|
-
simulation_scenarios: components["schemas"]["
|
|
8537
|
+
simulation_scenarios: components["schemas"]["SimulationScenarioInstance"][];
|
|
7986
8538
|
/**
|
|
7987
8539
|
* Has More
|
|
7988
8540
|
* @description Whether there are more simulation scenarios to fetch.
|
|
@@ -8170,7 +8722,7 @@ export interface components {
|
|
|
8170
8722
|
* Simulation Personas
|
|
8171
8723
|
* @description The list of simulation personas.
|
|
8172
8724
|
*/
|
|
8173
|
-
simulation_personas: components["schemas"]["
|
|
8725
|
+
simulation_personas: components["schemas"]["SimulationPersonaInstance"][];
|
|
8174
8726
|
};
|
|
8175
8727
|
/** Response */
|
|
8176
8728
|
simulation__search_simulation_scenarios__Response: {
|
|
@@ -8178,48 +8730,7 @@ export interface components {
|
|
|
8178
8730
|
* Simulation Scenarios
|
|
8179
8731
|
* @description The list of simulation scenarios.
|
|
8180
8732
|
*/
|
|
8181
|
-
simulation_scenarios: components["schemas"]["
|
|
8182
|
-
};
|
|
8183
|
-
/** SimulationScenarioInstance */
|
|
8184
|
-
simulation__search_simulation_scenarios__Response__SimulationScenarioInstance: {
|
|
8185
|
-
/**
|
|
8186
|
-
* Id
|
|
8187
|
-
* @description The ID of the simulation scenario.
|
|
8188
|
-
*/
|
|
8189
|
-
id: string;
|
|
8190
|
-
/**
|
|
8191
|
-
* Name
|
|
8192
|
-
* @description The name of the simulation scenario.
|
|
8193
|
-
*/
|
|
8194
|
-
name: string;
|
|
8195
|
-
/**
|
|
8196
|
-
* Tags
|
|
8197
|
-
* @description The tags of the simulation scenario.
|
|
8198
|
-
*/
|
|
8199
|
-
tags: {
|
|
8200
|
-
[key: string]: string | null;
|
|
8201
|
-
};
|
|
8202
|
-
/**
|
|
8203
|
-
* Is Deleted
|
|
8204
|
-
* @description Whether the simulation scenario is deleted.
|
|
8205
|
-
*/
|
|
8206
|
-
is_deleted: boolean;
|
|
8207
|
-
/**
|
|
8208
|
-
* Created At
|
|
8209
|
-
* Format: date-time
|
|
8210
|
-
* @description The timestamp when the simulation scenario was created.
|
|
8211
|
-
*/
|
|
8212
|
-
created_at: string;
|
|
8213
|
-
/** @description The user who created the simulation scenario. */
|
|
8214
|
-
creator: components["schemas"]["amigo_lib__mongo__collections__simulation_scenario__SimulationScenario__UserInfo"];
|
|
8215
|
-
/**
|
|
8216
|
-
* Updated At
|
|
8217
|
-
* Format: date-time
|
|
8218
|
-
* @description The timestamp when the simulation scenario was last updated.
|
|
8219
|
-
*/
|
|
8220
|
-
updated_at: string;
|
|
8221
|
-
/** @description The user who last updated the simulation scenario. */
|
|
8222
|
-
updated_by: components["schemas"]["amigo_lib__mongo__collections__simulation_scenario__SimulationScenario__UserInfo"];
|
|
8733
|
+
simulation_scenarios: components["schemas"]["SimulationScenarioInstance"][];
|
|
8223
8734
|
};
|
|
8224
8735
|
/** Response */
|
|
8225
8736
|
simulation__search_simulation_unit_test_set__Response: {
|
|
@@ -8325,7 +8836,7 @@ export interface components {
|
|
|
8325
8836
|
* Unit Test Runs
|
|
8326
8837
|
* @description The unit test runs that are part of this set.
|
|
8327
8838
|
*/
|
|
8328
|
-
unit_test_runs?: components["schemas"]["
|
|
8839
|
+
unit_test_runs?: components["schemas"]["UnitTestRunDescriptor-Input"][] | null;
|
|
8329
8840
|
/**
|
|
8330
8841
|
* Tags
|
|
8331
8842
|
* @description The tags of the simulation unit test set.
|
|
@@ -8362,7 +8873,7 @@ export interface components {
|
|
|
8362
8873
|
* Tool Invocations
|
|
8363
8874
|
* @description The list of tool invocations.
|
|
8364
8875
|
*/
|
|
8365
|
-
tool_invocations: components["schemas"]["
|
|
8876
|
+
tool_invocations: components["schemas"]["ToolInvocationInstance"][];
|
|
8366
8877
|
/**
|
|
8367
8878
|
* Has More
|
|
8368
8879
|
* @description Whether there are more tool invocations to retrieve.
|
|
@@ -8374,47 +8885,6 @@ export interface components {
|
|
|
8374
8885
|
*/
|
|
8375
8886
|
continuation_token: unknown | null;
|
|
8376
8887
|
};
|
|
8377
|
-
/** ToolInvocationInstance */
|
|
8378
|
-
tool__get_tool_invocations__Response__ToolInvocationInstance: {
|
|
8379
|
-
/**
|
|
8380
|
-
* Id
|
|
8381
|
-
* @description The ID of the tool invocation.
|
|
8382
|
-
*/
|
|
8383
|
-
id: string;
|
|
8384
|
-
/**
|
|
8385
|
-
* Org Id
|
|
8386
|
-
* @description The ID of the organization.
|
|
8387
|
-
*/
|
|
8388
|
-
org_id: string;
|
|
8389
|
-
/**
|
|
8390
|
-
* Created At
|
|
8391
|
-
* Format: date-time
|
|
8392
|
-
*/
|
|
8393
|
-
created_at?: string;
|
|
8394
|
-
/**
|
|
8395
|
-
* Updated At
|
|
8396
|
-
* Format: date-time
|
|
8397
|
-
*/
|
|
8398
|
-
updated_at?: string;
|
|
8399
|
-
/** @description The status of the tool invocation. */
|
|
8400
|
-
invocation_status: components["schemas"]["InvocationStatus"];
|
|
8401
|
-
/** @description The source of the tool invocation. */
|
|
8402
|
-
invocation_source: components["schemas"]["InvocationSource"];
|
|
8403
|
-
/** Logs */
|
|
8404
|
-
logs: string[];
|
|
8405
|
-
/**
|
|
8406
|
-
* Duration Ms
|
|
8407
|
-
* @description The duration of the tool invocation in milliseconds.
|
|
8408
|
-
*/
|
|
8409
|
-
duration_ms: number;
|
|
8410
|
-
/**
|
|
8411
|
-
* Tool Id
|
|
8412
|
-
* @description The ID of the tool that was invoked.
|
|
8413
|
-
*/
|
|
8414
|
-
tool_id: string;
|
|
8415
|
-
/** @description The version of the tool that was invoked. */
|
|
8416
|
-
tool_version: components["schemas"]["amigo_lib__mongo__collections__tool_invocation__ToolInvocation__Version"];
|
|
8417
|
-
};
|
|
8418
8888
|
/** Response */
|
|
8419
8889
|
tool__get_tool_versions__Response: {
|
|
8420
8890
|
/**
|
|
@@ -8483,7 +8953,7 @@ export interface components {
|
|
|
8483
8953
|
* Inputs
|
|
8484
8954
|
* @description The list of inputs for the tool invocation.
|
|
8485
8955
|
*/
|
|
8486
|
-
inputs: components["schemas"]["
|
|
8956
|
+
inputs: components["schemas"]["Input"][];
|
|
8487
8957
|
};
|
|
8488
8958
|
/** Response */
|
|
8489
8959
|
tool__invoke_tool_version__Response: {
|
|
@@ -8518,7 +8988,12 @@ export interface components {
|
|
|
8518
8988
|
* Deletes
|
|
8519
8989
|
* @default []
|
|
8520
8990
|
*/
|
|
8521
|
-
deletes?: components["schemas"]["
|
|
8991
|
+
deletes?: components["schemas"]["tool__modify_tool_envvars__Request__DeleteRequest"][];
|
|
8992
|
+
};
|
|
8993
|
+
/** DeleteRequest */
|
|
8994
|
+
tool__modify_tool_envvars__Request__DeleteRequest: {
|
|
8995
|
+
/** @description The name of the environment variable to delete. */
|
|
8996
|
+
name: components["schemas"]["StrippedNonemptyString_A-Z______"];
|
|
8522
8997
|
};
|
|
8523
8998
|
/** Request */
|
|
8524
8999
|
tool__publish_tool_version__Request: {
|
|
@@ -8548,7 +9023,7 @@ export interface components {
|
|
|
8548
9023
|
* Tool Invocations
|
|
8549
9024
|
* @description The list of tool invocations.
|
|
8550
9025
|
*/
|
|
8551
|
-
tool_invocations: components["schemas"]["
|
|
9026
|
+
tool_invocations: components["schemas"]["ToolInvocationInstance"][];
|
|
8552
9027
|
};
|
|
8553
9028
|
/** Request */
|
|
8554
9029
|
tool__test_tool__Request: {
|
|
@@ -8556,7 +9031,7 @@ export interface components {
|
|
|
8556
9031
|
* Inputs
|
|
8557
9032
|
* @description The list of inputs for the tool invocation.
|
|
8558
9033
|
*/
|
|
8559
|
-
inputs: components["schemas"]["
|
|
9034
|
+
inputs: components["schemas"]["Input"][];
|
|
8560
9035
|
/**
|
|
8561
9036
|
* Commit Branch
|
|
8562
9037
|
* @description The branch in the tools repo whose tip will be tested.
|
|
@@ -8582,22 +9057,6 @@ export interface components {
|
|
|
8582
9057
|
[key: string]: string;
|
|
8583
9058
|
};
|
|
8584
9059
|
};
|
|
8585
|
-
/** Input */
|
|
8586
|
-
tool__test_tool__Request__Input: {
|
|
8587
|
-
/**
|
|
8588
|
-
* Input Parameters
|
|
8589
|
-
* @description The input parameters for the tool invocation.
|
|
8590
|
-
*/
|
|
8591
|
-
input_parameters: {
|
|
8592
|
-
[key: string]: unknown;
|
|
8593
|
-
};
|
|
8594
|
-
/**
|
|
8595
|
-
* Invocation Mode
|
|
8596
|
-
* @description The mode of invocation.
|
|
8597
|
-
* @enum {string}
|
|
8598
|
-
*/
|
|
8599
|
-
invocation_mode: "regular" | "conversation-simulation";
|
|
8600
|
-
};
|
|
8601
9060
|
/** Response */
|
|
8602
9061
|
tool__test_tool__Response: {
|
|
8603
9062
|
/** Invocation Results */
|
|
@@ -8626,6 +9085,22 @@ export interface components {
|
|
|
8626
9085
|
* @description The role to assign to the user. Only roles that are returned from the [Get roles](get-roles) endpoint are allowed.
|
|
8627
9086
|
*/
|
|
8628
9087
|
role_name: string;
|
|
9088
|
+
/**
|
|
9089
|
+
* Nonsensitive User Variables
|
|
9090
|
+
* @description The nonsensitive user variables to provide to the tool during invocation.
|
|
9091
|
+
* @default {}
|
|
9092
|
+
*/
|
|
9093
|
+
nonsensitive_user_variables?: {
|
|
9094
|
+
[key: string]: string;
|
|
9095
|
+
};
|
|
9096
|
+
/**
|
|
9097
|
+
* Sensitive User Variables
|
|
9098
|
+
* @description The sensitive user variables to provide to the tool during invocation.
|
|
9099
|
+
* @default {}
|
|
9100
|
+
*/
|
|
9101
|
+
sensitive_user_variables?: {
|
|
9102
|
+
[key: string]: string;
|
|
9103
|
+
};
|
|
8629
9104
|
/** @description If specified, the user's preferences will be set to this value instead of the organization default. */
|
|
8630
9105
|
user_preferences?: components["schemas"]["user__create_invited_user__Request__Preferences"] | null;
|
|
8631
9106
|
};
|
|
@@ -8710,7 +9185,7 @@ export interface components {
|
|
|
8710
9185
|
* Users
|
|
8711
9186
|
* @description Users in this organization.
|
|
8712
9187
|
*/
|
|
8713
|
-
users: components["schemas"]["
|
|
9188
|
+
users: components["schemas"]["UserInstance"][];
|
|
8714
9189
|
/**
|
|
8715
9190
|
* Has More
|
|
8716
9191
|
* @description Whether there are more users to retrieve.
|
|
@@ -8718,64 +9193,29 @@ export interface components {
|
|
|
8718
9193
|
has_more: boolean;
|
|
8719
9194
|
/**
|
|
8720
9195
|
* Continuation Token
|
|
8721
|
-
* @description A token to supply to the next request to retrieve the next page of users. Only populated if `has_more` is `True`.
|
|
8722
|
-
*/
|
|
8723
|
-
continuation_token: number | null;
|
|
8724
|
-
};
|
|
8725
|
-
/** UserInstance */
|
|
8726
|
-
user__get_users__Response__UserInstance: {
|
|
8727
|
-
/**
|
|
8728
|
-
* Org Id
|
|
8729
|
-
* @description The ID of the organization that this user belongs to.
|
|
8730
|
-
*/
|
|
8731
|
-
org_id: string;
|
|
8732
|
-
/**
|
|
8733
|
-
* User Id
|
|
8734
|
-
* @description The identifier of the user.
|
|
8735
|
-
*/
|
|
8736
|
-
user_id: string;
|
|
8737
|
-
/**
|
|
8738
|
-
* First Name
|
|
8739
|
-
* @description The first name of the user.
|
|
8740
|
-
*/
|
|
8741
|
-
first_name: string;
|
|
8742
|
-
/**
|
|
8743
|
-
* Last Name
|
|
8744
|
-
* @description The last name of the user.
|
|
8745
|
-
*/
|
|
8746
|
-
last_name: string;
|
|
8747
|
-
/**
|
|
8748
|
-
* Email
|
|
8749
|
-
* @description Email of the user.
|
|
8750
|
-
*/
|
|
8751
|
-
email: string;
|
|
8752
|
-
/** @description Statistics about the user's usage of the Amigo platform. */
|
|
8753
|
-
user_stats: components["schemas"]["user__get_users__Response__UserInstance__UserStats"];
|
|
8754
|
-
/**
|
|
8755
|
-
* Role
|
|
8756
|
-
* @description The ID of the role of the user.
|
|
8757
|
-
*/
|
|
8758
|
-
role: string;
|
|
8759
|
-
/** @description The preferences of the user. */
|
|
8760
|
-
preferences: components["schemas"]["amigo_lib__mongo__collections__user__User__Preferences"];
|
|
8761
|
-
};
|
|
8762
|
-
/** UserStats */
|
|
8763
|
-
user__get_users__Response__UserInstance__UserStats: {
|
|
8764
|
-
/**
|
|
8765
|
-
* Num Conversations
|
|
8766
|
-
* @description The number of conversations the user has created.
|
|
9196
|
+
* @description A token to supply to the next request to retrieve the next page of users. Only populated if `has_more` is `True`.
|
|
8767
9197
|
*/
|
|
8768
|
-
|
|
9198
|
+
continuation_token: number | null;
|
|
9199
|
+
};
|
|
9200
|
+
/** Request */
|
|
9201
|
+
user__modify_user_variables__Request: {
|
|
8769
9202
|
/**
|
|
8770
|
-
*
|
|
8771
|
-
* @description
|
|
9203
|
+
* Upserts
|
|
9204
|
+
* @description A list of variables to upsert.
|
|
9205
|
+
* @default []
|
|
8772
9206
|
*/
|
|
8773
|
-
|
|
9207
|
+
upserts?: components["schemas"]["UpsertRequest"][];
|
|
8774
9208
|
/**
|
|
8775
|
-
*
|
|
8776
|
-
* @description
|
|
9209
|
+
* Deletes
|
|
9210
|
+
* @description A list of variables to delete.
|
|
9211
|
+
* @default []
|
|
8777
9212
|
*/
|
|
8778
|
-
|
|
9213
|
+
deletes?: components["schemas"]["user__modify_user_variables__Request__DeleteRequest"][];
|
|
9214
|
+
};
|
|
9215
|
+
/** DeleteRequest */
|
|
9216
|
+
user__modify_user_variables__Request__DeleteRequest: {
|
|
9217
|
+
/** @description The name of the variable to delete. */
|
|
9218
|
+
name: components["schemas"]["StrippedNonemptyString_a-z___a-z0-9_______"];
|
|
8779
9219
|
};
|
|
8780
9220
|
/** Response */
|
|
8781
9221
|
user__search_users__Response: {
|
|
@@ -8783,7 +9223,7 @@ export interface components {
|
|
|
8783
9223
|
* Users
|
|
8784
9224
|
* @description Users in this organization.
|
|
8785
9225
|
*/
|
|
8786
|
-
users: components["schemas"]["
|
|
9226
|
+
users: components["schemas"]["UserInstance"][];
|
|
8787
9227
|
};
|
|
8788
9228
|
/** SigninWithAPIKeyResponse */
|
|
8789
9229
|
user__sign_in_with_api_key__Response: {
|
|
@@ -8859,11 +9299,6 @@ export interface components {
|
|
|
8859
9299
|
* @description A list of keyterms that are easy to get wrong during audio transcriptions that tend to occur commonly in audio sessions using this service. If `null`, the keyterms are not modified.
|
|
8860
9300
|
*/
|
|
8861
9301
|
audio_keyterms?: components["schemas"]["StrippedNonemptyString_a-z-_____a-z-____0_2____"][] | null;
|
|
8862
|
-
/**
|
|
8863
|
-
* Actions Development Enabled
|
|
8864
|
-
* @description Whether to enable Actions development access for the user. If `null`, the preference is not modified.
|
|
8865
|
-
*/
|
|
8866
|
-
actions_development_enabled?: boolean | null;
|
|
8867
9302
|
};
|
|
8868
9303
|
/** Request */
|
|
8869
9304
|
webhook_destination__create_webhook_destination__Request: {
|
|
@@ -10535,7 +10970,7 @@ export interface operations {
|
|
|
10535
10970
|
/** @description Identifier of the service. */
|
|
10536
10971
|
service_id: string;
|
|
10537
10972
|
/** @description Name of the version set to upsert. */
|
|
10538
|
-
version_set_name: components["schemas"]["
|
|
10973
|
+
version_set_name: components["schemas"]["StrippedNonemptyString_A-Za-z0-9_-______MaxLen_max_length_40_"];
|
|
10539
10974
|
organization: string;
|
|
10540
10975
|
};
|
|
10541
10976
|
cookie?: never;
|
|
@@ -10886,7 +11321,12 @@ export interface operations {
|
|
|
10886
11321
|
"application/x-ndjson": components["schemas"]["conversation__create_conversation__Response"];
|
|
10887
11322
|
};
|
|
10888
11323
|
};
|
|
10889
|
-
/** @description
|
|
11324
|
+
/** @description
|
|
11325
|
+
* This may occur for the following reasons:
|
|
11326
|
+
* * Attempting to start a conversation when other unfinished conversations exist.
|
|
11327
|
+
* * The preferred language does not support voice response.
|
|
11328
|
+
* * The `response_audio_format` field is not set when voice output is requested.
|
|
11329
|
+
* * The agent does not have voice config specified. */
|
|
10890
11330
|
400: {
|
|
10891
11331
|
headers: {
|
|
10892
11332
|
[name: string]: unknown;
|
|
@@ -11300,17 +11740,17 @@ export interface operations {
|
|
|
11300
11740
|
initial_message_type: "external-event";
|
|
11301
11741
|
recorded_message: string;
|
|
11302
11742
|
/**
|
|
11303
|
-
* External Event Message
|
|
11743
|
+
* External Event Message Content
|
|
11304
11744
|
* @description The contents of external event messages to be inserted before the initial message, in chronological order.
|
|
11305
11745
|
* @default []
|
|
11306
11746
|
*/
|
|
11307
|
-
|
|
11747
|
+
external_event_message_content?: string[];
|
|
11308
11748
|
/**
|
|
11309
|
-
* External Event Message
|
|
11749
|
+
* External Event Message Timestamp
|
|
11310
11750
|
* @description The timestamps of external event messages to be inserted before the initial message, in chronological order.
|
|
11311
11751
|
* @default []
|
|
11312
11752
|
*/
|
|
11313
|
-
|
|
11753
|
+
external_event_message_timestamp?: string[];
|
|
11314
11754
|
} | {
|
|
11315
11755
|
/**
|
|
11316
11756
|
* Initial Message Type
|
|
@@ -11319,17 +11759,17 @@ export interface operations {
|
|
|
11319
11759
|
initial_message_type: "user-message";
|
|
11320
11760
|
recorded_message: string;
|
|
11321
11761
|
/**
|
|
11322
|
-
* External Event Message
|
|
11762
|
+
* External Event Message Content
|
|
11323
11763
|
* @description The contents of external event messages to be inserted before the initial message, in chronological order.
|
|
11324
11764
|
* @default []
|
|
11325
11765
|
*/
|
|
11326
|
-
|
|
11766
|
+
external_event_message_content?: string[];
|
|
11327
11767
|
/**
|
|
11328
|
-
* External Event Message
|
|
11768
|
+
* External Event Message Timestamp
|
|
11329
11769
|
* @description The timestamps of external event messages to be inserted before the initial message, in chronological order.
|
|
11330
11770
|
* @default []
|
|
11331
11771
|
*/
|
|
11332
|
-
|
|
11772
|
+
external_event_message_timestamp?: string[];
|
|
11333
11773
|
} | {
|
|
11334
11774
|
/**
|
|
11335
11775
|
* Initial Message Type
|
|
@@ -11342,17 +11782,17 @@ export interface operations {
|
|
|
11342
11782
|
*/
|
|
11343
11783
|
recorded_message: string;
|
|
11344
11784
|
/**
|
|
11345
|
-
* External Event Message
|
|
11785
|
+
* External Event Message Content
|
|
11346
11786
|
* @description Must be empty, as external event messages cannot be sent with skips.
|
|
11347
11787
|
* @default []
|
|
11348
11788
|
*/
|
|
11349
|
-
|
|
11789
|
+
external_event_message_content?: string[];
|
|
11350
11790
|
/**
|
|
11351
|
-
* External Event Message
|
|
11791
|
+
* External Event Message Timestamp
|
|
11352
11792
|
* @description Must be empty, as external event messages cannot be sent with skips.
|
|
11353
11793
|
* @default []
|
|
11354
11794
|
*/
|
|
11355
|
-
|
|
11795
|
+
external_event_message_timestamp?: string[];
|
|
11356
11796
|
};
|
|
11357
11797
|
};
|
|
11358
11798
|
};
|
|
@@ -11369,7 +11809,14 @@ export interface operations {
|
|
|
11369
11809
|
"application/x-ndjson": components["schemas"]["conversation__interact_with_conversation__Response"];
|
|
11370
11810
|
};
|
|
11371
11811
|
};
|
|
11372
|
-
/** @description
|
|
11812
|
+
/** @description
|
|
11813
|
+
* This may occur for the following reasons:
|
|
11814
|
+
* * The user message is empty.
|
|
11815
|
+
* * The preferred language does not support voice transcription or response.
|
|
11816
|
+
* * The `response_audio_format` field is not set when voice output is requested.
|
|
11817
|
+
* * The timestamps for external event messages are not in the past.
|
|
11818
|
+
* * The timestamps for external event messages are inconsistent with the conversation.
|
|
11819
|
+
* * The agent does not have voice config specified. */
|
|
11373
11820
|
400: {
|
|
11374
11821
|
headers: {
|
|
11375
11822
|
[name: string]: unknown;
|
|
@@ -11971,11 +12418,251 @@ export interface operations {
|
|
|
11971
12418
|
};
|
|
11972
12419
|
responses: {
|
|
11973
12420
|
/** @description Succeeded. */
|
|
11974
|
-
204: {
|
|
12421
|
+
204: {
|
|
12422
|
+
headers: {
|
|
12423
|
+
[name: string]: unknown;
|
|
12424
|
+
};
|
|
12425
|
+
content?: never;
|
|
12426
|
+
};
|
|
12427
|
+
/** @description Invalid authorization credentials. */
|
|
12428
|
+
401: {
|
|
12429
|
+
headers: {
|
|
12430
|
+
[name: string]: unknown;
|
|
12431
|
+
};
|
|
12432
|
+
content?: never;
|
|
12433
|
+
};
|
|
12434
|
+
/** @description Missing required permissions. */
|
|
12435
|
+
403: {
|
|
12436
|
+
headers: {
|
|
12437
|
+
[name: string]: unknown;
|
|
12438
|
+
};
|
|
12439
|
+
content?: never;
|
|
12440
|
+
};
|
|
12441
|
+
/** @description Specified organization or user is not found. */
|
|
12442
|
+
404: {
|
|
12443
|
+
headers: {
|
|
12444
|
+
[name: string]: unknown;
|
|
12445
|
+
};
|
|
12446
|
+
content?: never;
|
|
12447
|
+
};
|
|
12448
|
+
/** @description A related operation is in progress. */
|
|
12449
|
+
409: {
|
|
12450
|
+
headers: {
|
|
12451
|
+
[name: string]: unknown;
|
|
12452
|
+
};
|
|
12453
|
+
content?: never;
|
|
12454
|
+
};
|
|
12455
|
+
/** @description Invalid request path parameter or request body failed validation. */
|
|
12456
|
+
422: {
|
|
12457
|
+
headers: {
|
|
12458
|
+
[name: string]: unknown;
|
|
12459
|
+
};
|
|
12460
|
+
content?: never;
|
|
12461
|
+
};
|
|
12462
|
+
/** @description The user has exceeded the rate limit of 50 requests per minute for this endpoint. */
|
|
12463
|
+
429: {
|
|
12464
|
+
headers: {
|
|
12465
|
+
[name: string]: unknown;
|
|
12466
|
+
};
|
|
12467
|
+
content?: never;
|
|
12468
|
+
};
|
|
12469
|
+
/** @description The service is going through temporary maintenance. */
|
|
12470
|
+
503: {
|
|
12471
|
+
headers: {
|
|
12472
|
+
[name: string]: unknown;
|
|
12473
|
+
};
|
|
12474
|
+
content?: never;
|
|
12475
|
+
};
|
|
12476
|
+
};
|
|
12477
|
+
};
|
|
12478
|
+
"delete-user": {
|
|
12479
|
+
parameters: {
|
|
12480
|
+
query?: never;
|
|
12481
|
+
header?: {
|
|
12482
|
+
/** @description The Mongo cluster name to perform this request in. This is usually not needed unless the organization does not exist yet in the Amigo organization infra config database. */
|
|
12483
|
+
"x-mongo-cluster-name"?: string | null;
|
|
12484
|
+
"Sec-WebSocket-Protocol"?: string[];
|
|
12485
|
+
};
|
|
12486
|
+
path: {
|
|
12487
|
+
/** @description The identifier of the user to delete. */
|
|
12488
|
+
requested_user_id: string;
|
|
12489
|
+
organization: string;
|
|
12490
|
+
};
|
|
12491
|
+
cookie?: never;
|
|
12492
|
+
};
|
|
12493
|
+
requestBody?: never;
|
|
12494
|
+
responses: {
|
|
12495
|
+
/** @description Succeeded. */
|
|
12496
|
+
204: {
|
|
12497
|
+
headers: {
|
|
12498
|
+
[name: string]: unknown;
|
|
12499
|
+
};
|
|
12500
|
+
content?: never;
|
|
12501
|
+
};
|
|
12502
|
+
/** @description The user is currently active in Actions development. */
|
|
12503
|
+
400: {
|
|
12504
|
+
headers: {
|
|
12505
|
+
[name: string]: unknown;
|
|
12506
|
+
};
|
|
12507
|
+
content?: never;
|
|
12508
|
+
};
|
|
12509
|
+
/** @description Invalid authorization credentials. */
|
|
12510
|
+
401: {
|
|
12511
|
+
headers: {
|
|
12512
|
+
[name: string]: unknown;
|
|
12513
|
+
};
|
|
12514
|
+
content?: never;
|
|
12515
|
+
};
|
|
12516
|
+
/** @description Missing required permissions. */
|
|
12517
|
+
403: {
|
|
12518
|
+
headers: {
|
|
12519
|
+
[name: string]: unknown;
|
|
12520
|
+
};
|
|
12521
|
+
content?: never;
|
|
12522
|
+
};
|
|
12523
|
+
/** @description Specified organization or user is not found. */
|
|
12524
|
+
404: {
|
|
12525
|
+
headers: {
|
|
12526
|
+
[name: string]: unknown;
|
|
12527
|
+
};
|
|
12528
|
+
content?: never;
|
|
12529
|
+
};
|
|
12530
|
+
/** @description A related operation is in progress. */
|
|
12531
|
+
409: {
|
|
12532
|
+
headers: {
|
|
12533
|
+
[name: string]: unknown;
|
|
12534
|
+
};
|
|
12535
|
+
content?: never;
|
|
12536
|
+
};
|
|
12537
|
+
/** @description Invalid request path parameter failed validation. */
|
|
12538
|
+
422: {
|
|
12539
|
+
headers: {
|
|
12540
|
+
[name: string]: unknown;
|
|
12541
|
+
};
|
|
12542
|
+
content?: never;
|
|
12543
|
+
};
|
|
12544
|
+
/** @description The user has exceeded the rate limit of 500 requests per minute for this endpoint. */
|
|
12545
|
+
429: {
|
|
12546
|
+
headers: {
|
|
12547
|
+
[name: string]: unknown;
|
|
12548
|
+
};
|
|
12549
|
+
content?: never;
|
|
12550
|
+
};
|
|
12551
|
+
/** @description The service is going through temporary maintenance. */
|
|
12552
|
+
503: {
|
|
12553
|
+
headers: {
|
|
12554
|
+
[name: string]: unknown;
|
|
12555
|
+
};
|
|
12556
|
+
content?: never;
|
|
12557
|
+
};
|
|
12558
|
+
};
|
|
12559
|
+
};
|
|
12560
|
+
"get-user-model": {
|
|
12561
|
+
parameters: {
|
|
12562
|
+
query?: never;
|
|
12563
|
+
header?: {
|
|
12564
|
+
/** @description The Mongo cluster name to perform this request in. This is usually not needed unless the organization does not exist yet in the Amigo organization infra config database. */
|
|
12565
|
+
"x-mongo-cluster-name"?: string | null;
|
|
12566
|
+
"Sec-WebSocket-Protocol"?: string[];
|
|
12567
|
+
};
|
|
12568
|
+
path: {
|
|
12569
|
+
organization: string;
|
|
12570
|
+
/** @description The ID of the user whose user models to retrieve. */
|
|
12571
|
+
user_id: string;
|
|
12572
|
+
};
|
|
12573
|
+
cookie?: never;
|
|
12574
|
+
};
|
|
12575
|
+
requestBody?: never;
|
|
12576
|
+
responses: {
|
|
12577
|
+
/** @description Succeeded. */
|
|
12578
|
+
200: {
|
|
12579
|
+
headers: {
|
|
12580
|
+
[name: string]: unknown;
|
|
12581
|
+
};
|
|
12582
|
+
content: {
|
|
12583
|
+
"application/json": components["schemas"]["user__get_user_model__Response"];
|
|
12584
|
+
};
|
|
12585
|
+
};
|
|
12586
|
+
/** @description Invalid authorization credentials. */
|
|
12587
|
+
401: {
|
|
12588
|
+
headers: {
|
|
12589
|
+
[name: string]: unknown;
|
|
12590
|
+
};
|
|
12591
|
+
content?: never;
|
|
12592
|
+
};
|
|
12593
|
+
/** @description Missing required permissions. */
|
|
12594
|
+
403: {
|
|
12595
|
+
headers: {
|
|
12596
|
+
[name: string]: unknown;
|
|
12597
|
+
};
|
|
12598
|
+
content?: never;
|
|
12599
|
+
};
|
|
12600
|
+
/** @description Specified organization or user is not found. */
|
|
12601
|
+
404: {
|
|
12602
|
+
headers: {
|
|
12603
|
+
[name: string]: unknown;
|
|
12604
|
+
};
|
|
12605
|
+
content?: never;
|
|
12606
|
+
};
|
|
12607
|
+
/** @description Invalid request path parameter failed validation. */
|
|
12608
|
+
422: {
|
|
12609
|
+
headers: {
|
|
12610
|
+
[name: string]: unknown;
|
|
12611
|
+
};
|
|
12612
|
+
content?: never;
|
|
12613
|
+
};
|
|
12614
|
+
/** @description The user has exceeded the rate limit of 60 requests per minute for this endpoint. */
|
|
12615
|
+
429: {
|
|
12616
|
+
headers: {
|
|
12617
|
+
[name: string]: unknown;
|
|
12618
|
+
};
|
|
12619
|
+
content?: never;
|
|
12620
|
+
};
|
|
12621
|
+
/** @description The service is going through temporary maintenance. */
|
|
12622
|
+
503: {
|
|
12623
|
+
headers: {
|
|
12624
|
+
[name: string]: unknown;
|
|
12625
|
+
};
|
|
12626
|
+
content?: never;
|
|
12627
|
+
};
|
|
12628
|
+
};
|
|
12629
|
+
};
|
|
12630
|
+
"get-memories": {
|
|
12631
|
+
parameters: {
|
|
12632
|
+
query?: {
|
|
12633
|
+
/** @description The IDs of the memories to retrieve. */
|
|
12634
|
+
id?: string[];
|
|
12635
|
+
/** @description The IDs of the conversations to retrieve memories from. */
|
|
12636
|
+
conversation_id?: string[];
|
|
12637
|
+
/** @description The maximum number of memories to retrieve. */
|
|
12638
|
+
limit?: number;
|
|
12639
|
+
/** @description The token from the previous request to return the next page of memories. */
|
|
12640
|
+
continuation_token?: number;
|
|
12641
|
+
/** @description The fields to sort the sets by. Supported fields are `conversation_id` and `created_at`. Specify a `+` before the field name to indicate ascending sorting and `-` for descending sorting. Multiple fields can be specified to break ties. */
|
|
12642
|
+
sort_by?: string[];
|
|
12643
|
+
};
|
|
12644
|
+
header?: {
|
|
12645
|
+
/** @description The Mongo cluster name to perform this request in. This is usually not needed unless the organization does not exist yet in the Amigo organization infra config database. */
|
|
12646
|
+
"x-mongo-cluster-name"?: string | null;
|
|
12647
|
+
"Sec-WebSocket-Protocol"?: string[];
|
|
12648
|
+
};
|
|
12649
|
+
path: {
|
|
12650
|
+
organization: string;
|
|
12651
|
+
/** @description The ID of the user to retrieve memories for. */
|
|
12652
|
+
user_id: string;
|
|
12653
|
+
};
|
|
12654
|
+
cookie?: never;
|
|
12655
|
+
};
|
|
12656
|
+
requestBody?: never;
|
|
12657
|
+
responses: {
|
|
12658
|
+
/** @description Succeeded. */
|
|
12659
|
+
200: {
|
|
11975
12660
|
headers: {
|
|
11976
12661
|
[name: string]: unknown;
|
|
11977
12662
|
};
|
|
11978
|
-
content
|
|
12663
|
+
content: {
|
|
12664
|
+
"application/json": components["schemas"]["user__get_memories__Response"];
|
|
12665
|
+
};
|
|
11979
12666
|
};
|
|
11980
12667
|
/** @description Invalid authorization credentials. */
|
|
11981
12668
|
401: {
|
|
@@ -11998,21 +12685,14 @@ export interface operations {
|
|
|
11998
12685
|
};
|
|
11999
12686
|
content?: never;
|
|
12000
12687
|
};
|
|
12001
|
-
/** @description
|
|
12002
|
-
409: {
|
|
12003
|
-
headers: {
|
|
12004
|
-
[name: string]: unknown;
|
|
12005
|
-
};
|
|
12006
|
-
content?: never;
|
|
12007
|
-
};
|
|
12008
|
-
/** @description Invalid request path parameter or request body failed validation. */
|
|
12688
|
+
/** @description Invalid request path parameter or request query parameter failed validation. */
|
|
12009
12689
|
422: {
|
|
12010
12690
|
headers: {
|
|
12011
12691
|
[name: string]: unknown;
|
|
12012
12692
|
};
|
|
12013
12693
|
content?: never;
|
|
12014
12694
|
};
|
|
12015
|
-
/** @description The user has exceeded the rate limit of
|
|
12695
|
+
/** @description The user has exceeded the rate limit of 40 requests per minute for this endpoint. */
|
|
12016
12696
|
429: {
|
|
12017
12697
|
headers: {
|
|
12018
12698
|
[name: string]: unknown;
|
|
@@ -12028,17 +12708,20 @@ export interface operations {
|
|
|
12028
12708
|
};
|
|
12029
12709
|
};
|
|
12030
12710
|
};
|
|
12031
|
-
"
|
|
12711
|
+
"search-users": {
|
|
12032
12712
|
parameters: {
|
|
12033
|
-
query
|
|
12713
|
+
query: {
|
|
12714
|
+
/** @description The search query. Any users whose name or email contains the query are returned. */
|
|
12715
|
+
query: string;
|
|
12716
|
+
/** @description The IDs of the users. */
|
|
12717
|
+
user_id?: string[];
|
|
12718
|
+
};
|
|
12034
12719
|
header?: {
|
|
12035
12720
|
/** @description The Mongo cluster name to perform this request in. This is usually not needed unless the organization does not exist yet in the Amigo organization infra config database. */
|
|
12036
12721
|
"x-mongo-cluster-name"?: string | null;
|
|
12037
12722
|
"Sec-WebSocket-Protocol"?: string[];
|
|
12038
12723
|
};
|
|
12039
12724
|
path: {
|
|
12040
|
-
/** @description The identifier of the user to delete. */
|
|
12041
|
-
requested_user_id: string;
|
|
12042
12725
|
organization: string;
|
|
12043
12726
|
};
|
|
12044
12727
|
cookie?: never;
|
|
@@ -12046,18 +12729,13 @@ export interface operations {
|
|
|
12046
12729
|
requestBody?: never;
|
|
12047
12730
|
responses: {
|
|
12048
12731
|
/** @description Succeeded. */
|
|
12049
|
-
|
|
12732
|
+
200: {
|
|
12050
12733
|
headers: {
|
|
12051
12734
|
[name: string]: unknown;
|
|
12052
12735
|
};
|
|
12053
|
-
content
|
|
12054
|
-
|
|
12055
|
-
/** @description The user is currently active in Actions development. */
|
|
12056
|
-
400: {
|
|
12057
|
-
headers: {
|
|
12058
|
-
[name: string]: unknown;
|
|
12736
|
+
content: {
|
|
12737
|
+
"application/json": components["schemas"]["user__search_users__Response"];
|
|
12059
12738
|
};
|
|
12060
|
-
content?: never;
|
|
12061
12739
|
};
|
|
12062
12740
|
/** @description Invalid authorization credentials. */
|
|
12063
12741
|
401: {
|
|
@@ -12073,28 +12751,21 @@ export interface operations {
|
|
|
12073
12751
|
};
|
|
12074
12752
|
content?: never;
|
|
12075
12753
|
};
|
|
12076
|
-
/** @description Specified organization
|
|
12754
|
+
/** @description Specified organization is not found. */
|
|
12077
12755
|
404: {
|
|
12078
12756
|
headers: {
|
|
12079
12757
|
[name: string]: unknown;
|
|
12080
12758
|
};
|
|
12081
12759
|
content?: never;
|
|
12082
12760
|
};
|
|
12083
|
-
/** @description
|
|
12084
|
-
409: {
|
|
12085
|
-
headers: {
|
|
12086
|
-
[name: string]: unknown;
|
|
12087
|
-
};
|
|
12088
|
-
content?: never;
|
|
12089
|
-
};
|
|
12090
|
-
/** @description Invalid request path parameter failed validation. */
|
|
12761
|
+
/** @description Invalid request path parameter or request query parameter failed validation. */
|
|
12091
12762
|
422: {
|
|
12092
12763
|
headers: {
|
|
12093
12764
|
[name: string]: unknown;
|
|
12094
12765
|
};
|
|
12095
12766
|
content?: never;
|
|
12096
12767
|
};
|
|
12097
|
-
/** @description The user has exceeded the rate limit of
|
|
12768
|
+
/** @description The user has exceeded the rate limit of 50 requests per minute for this endpoint. */
|
|
12098
12769
|
429: {
|
|
12099
12770
|
headers: {
|
|
12100
12771
|
[name: string]: unknown;
|
|
@@ -12110,7 +12781,7 @@ export interface operations {
|
|
|
12110
12781
|
};
|
|
12111
12782
|
};
|
|
12112
12783
|
};
|
|
12113
|
-
"
|
|
12784
|
+
"modify-user-variables": {
|
|
12114
12785
|
parameters: {
|
|
12115
12786
|
query?: never;
|
|
12116
12787
|
header?: {
|
|
@@ -12120,21 +12791,30 @@ export interface operations {
|
|
|
12120
12791
|
};
|
|
12121
12792
|
path: {
|
|
12122
12793
|
organization: string;
|
|
12123
|
-
/** @description The
|
|
12124
|
-
|
|
12794
|
+
/** @description The identifier of the user to update information for. */
|
|
12795
|
+
requested_user_id: string;
|
|
12125
12796
|
};
|
|
12126
12797
|
cookie?: never;
|
|
12127
12798
|
};
|
|
12128
|
-
requestBody
|
|
12799
|
+
requestBody: {
|
|
12800
|
+
content: {
|
|
12801
|
+
"application/json": components["schemas"]["user__modify_user_variables__Request"];
|
|
12802
|
+
};
|
|
12803
|
+
};
|
|
12129
12804
|
responses: {
|
|
12130
12805
|
/** @description Succeeded. */
|
|
12131
|
-
|
|
12806
|
+
204: {
|
|
12132
12807
|
headers: {
|
|
12133
12808
|
[name: string]: unknown;
|
|
12134
12809
|
};
|
|
12135
|
-
content
|
|
12136
|
-
|
|
12810
|
+
content?: never;
|
|
12811
|
+
};
|
|
12812
|
+
/** @description One or more variables to delete do not exist, or the user has exceeded the limit of 20 nonsensitive variables. */
|
|
12813
|
+
400: {
|
|
12814
|
+
headers: {
|
|
12815
|
+
[name: string]: unknown;
|
|
12137
12816
|
};
|
|
12817
|
+
content?: never;
|
|
12138
12818
|
};
|
|
12139
12819
|
/** @description Invalid authorization credentials. */
|
|
12140
12820
|
401: {
|
|
@@ -12157,14 +12837,14 @@ export interface operations {
|
|
|
12157
12837
|
};
|
|
12158
12838
|
content?: never;
|
|
12159
12839
|
};
|
|
12160
|
-
/** @description Invalid request path parameter failed validation. */
|
|
12840
|
+
/** @description Invalid request path parameter or request body failed validation. */
|
|
12161
12841
|
422: {
|
|
12162
12842
|
headers: {
|
|
12163
12843
|
[name: string]: unknown;
|
|
12164
12844
|
};
|
|
12165
12845
|
content?: never;
|
|
12166
12846
|
};
|
|
12167
|
-
/** @description The user has exceeded the rate limit of
|
|
12847
|
+
/** @description The user has exceeded the rate limit of 50 requests per minute for this endpoint. */
|
|
12168
12848
|
429: {
|
|
12169
12849
|
headers: {
|
|
12170
12850
|
[name: string]: unknown;
|
|
@@ -12180,20 +12860,9 @@ export interface operations {
|
|
|
12180
12860
|
};
|
|
12181
12861
|
};
|
|
12182
12862
|
};
|
|
12183
|
-
"
|
|
12863
|
+
"create-temporary-permission-grant": {
|
|
12184
12864
|
parameters: {
|
|
12185
|
-
query?:
|
|
12186
|
-
/** @description The IDs of the memories to retrieve. */
|
|
12187
|
-
id?: string[];
|
|
12188
|
-
/** @description The IDs of the conversations to retrieve memories from. */
|
|
12189
|
-
conversation_id?: string[];
|
|
12190
|
-
/** @description The maximum number of memories to retrieve. */
|
|
12191
|
-
limit?: number;
|
|
12192
|
-
/** @description The token from the previous request to return the next page of memories. */
|
|
12193
|
-
continuation_token?: number;
|
|
12194
|
-
/** @description The fields to sort the sets by. Supported fields are `conversation_id` and `created_at`. Specify a `+` before the field name to indicate ascending sorting and `-` for descending sorting. Multiple fields can be specified to break ties. */
|
|
12195
|
-
sort_by?: string[];
|
|
12196
|
-
};
|
|
12865
|
+
query?: never;
|
|
12197
12866
|
header?: {
|
|
12198
12867
|
/** @description The Mongo cluster name to perform this request in. This is usually not needed unless the organization does not exist yet in the Amigo organization infra config database. */
|
|
12199
12868
|
"x-mongo-cluster-name"?: string | null;
|
|
@@ -12201,20 +12870,22 @@ export interface operations {
|
|
|
12201
12870
|
};
|
|
12202
12871
|
path: {
|
|
12203
12872
|
organization: string;
|
|
12204
|
-
/** @description The ID of the user to retrieve memories for. */
|
|
12205
|
-
user_id: string;
|
|
12206
12873
|
};
|
|
12207
12874
|
cookie?: never;
|
|
12208
12875
|
};
|
|
12209
|
-
requestBody
|
|
12876
|
+
requestBody: {
|
|
12877
|
+
content: {
|
|
12878
|
+
"application/json": components["schemas"]["role__create_temporary_permission_grant__Request"];
|
|
12879
|
+
};
|
|
12880
|
+
};
|
|
12210
12881
|
responses: {
|
|
12211
|
-
/** @description Succeeded
|
|
12212
|
-
|
|
12882
|
+
/** @description Succeeded */
|
|
12883
|
+
201: {
|
|
12213
12884
|
headers: {
|
|
12214
12885
|
[name: string]: unknown;
|
|
12215
12886
|
};
|
|
12216
12887
|
content: {
|
|
12217
|
-
"application/json": components["schemas"]["
|
|
12888
|
+
"application/json": components["schemas"]["role__create_temporary_permission_grant__Response"];
|
|
12218
12889
|
};
|
|
12219
12890
|
};
|
|
12220
12891
|
/** @description Invalid authorization credentials. */
|
|
@@ -12238,14 +12909,14 @@ export interface operations {
|
|
|
12238
12909
|
};
|
|
12239
12910
|
content?: never;
|
|
12240
12911
|
};
|
|
12241
|
-
/** @description Invalid request path parameter or request
|
|
12912
|
+
/** @description Invalid request path parameter or request body failed validation. */
|
|
12242
12913
|
422: {
|
|
12243
12914
|
headers: {
|
|
12244
12915
|
[name: string]: unknown;
|
|
12245
12916
|
};
|
|
12246
12917
|
content?: never;
|
|
12247
12918
|
};
|
|
12248
|
-
/** @description The user has exceeded the rate limit of
|
|
12919
|
+
/** @description The user has exceeded the rate limit of 100 requests per minute for this endpoint. */
|
|
12249
12920
|
429: {
|
|
12250
12921
|
headers: {
|
|
12251
12922
|
[name: string]: unknown;
|
|
@@ -12261,13 +12932,27 @@ export interface operations {
|
|
|
12261
12932
|
};
|
|
12262
12933
|
};
|
|
12263
12934
|
};
|
|
12264
|
-
"
|
|
12935
|
+
"get-temporary-permission-grants": {
|
|
12265
12936
|
parameters: {
|
|
12266
|
-
query
|
|
12267
|
-
/** @description The
|
|
12268
|
-
|
|
12269
|
-
/** @description The IDs of the
|
|
12937
|
+
query?: {
|
|
12938
|
+
/** @description The IDs of the temporary permission grants to retrieve. */
|
|
12939
|
+
id?: string[];
|
|
12940
|
+
/** @description The user IDs of the temporary permission grants to retrieve. */
|
|
12270
12941
|
user_id?: string[];
|
|
12942
|
+
/** @description The permission name of the grants. */
|
|
12943
|
+
permission_grant_name?: string | null;
|
|
12944
|
+
/** @description Whether to only return expired or unexpired temporary permission grants. */
|
|
12945
|
+
is_expired?: boolean | null;
|
|
12946
|
+
/** @description The maximum number of temporary permission grants to return. */
|
|
12947
|
+
limit?: number;
|
|
12948
|
+
/** @description The continuation token to use to retrieve the next set of temporary permission grants. */
|
|
12949
|
+
continuation_token?: number;
|
|
12950
|
+
/** @description The creators of the temporary permission grants. */
|
|
12951
|
+
creator?: string[];
|
|
12952
|
+
/** @description The tags of the temporary permission grants. Must be specified using the syntax `key:value`, which means to match all sets with the given `key` and `value` pair among its tags. If `value` is `*`, it means the `value` does not matter. If `value` is empty, it matches against when the value is `None`. */
|
|
12953
|
+
tag?: string[];
|
|
12954
|
+
/** @description The fields to sort the sets by. Supported fields are `user_id`, `expires_at`, and `permission_grant.permission_name`. Specify a `+` before the field name to indicate ascending sorting and `-` for descending sorting. Multiple fields can be specified to break ties. */
|
|
12955
|
+
sort_by?: string[];
|
|
12271
12956
|
};
|
|
12272
12957
|
header?: {
|
|
12273
12958
|
/** @description The Mongo cluster name to perform this request in. This is usually not needed unless the organization does not exist yet in the Amigo organization infra config database. */
|
|
@@ -12287,7 +12972,7 @@ export interface operations {
|
|
|
12287
12972
|
[name: string]: unknown;
|
|
12288
12973
|
};
|
|
12289
12974
|
content: {
|
|
12290
|
-
"application/json": components["schemas"]["
|
|
12975
|
+
"application/json": components["schemas"]["role__get_temporary_permission_grants__Response"];
|
|
12291
12976
|
};
|
|
12292
12977
|
};
|
|
12293
12978
|
/** @description Invalid authorization credentials. */
|
|
@@ -12318,7 +13003,7 @@ export interface operations {
|
|
|
12318
13003
|
};
|
|
12319
13004
|
content?: never;
|
|
12320
13005
|
};
|
|
12321
|
-
/** @description The user has exceeded the rate limit of
|
|
13006
|
+
/** @description The user has exceeded the rate limit of 100 requests per minute for this endpoint. */
|
|
12322
13007
|
429: {
|
|
12323
13008
|
headers: {
|
|
12324
13009
|
[name: string]: unknown;
|
|
@@ -14423,7 +15108,7 @@ export interface operations {
|
|
|
14423
15108
|
};
|
|
14424
15109
|
content?: never;
|
|
14425
15110
|
};
|
|
14426
|
-
/** @description Specified organization, conversation,
|
|
15111
|
+
/** @description Specified organization, conversation, or metric is not found. */
|
|
14427
15112
|
404: {
|
|
14428
15113
|
headers: {
|
|
14429
15114
|
[name: string]: unknown;
|
|
@@ -14437,7 +15122,7 @@ export interface operations {
|
|
|
14437
15122
|
};
|
|
14438
15123
|
content?: never;
|
|
14439
15124
|
};
|
|
14440
|
-
/** @description The user has exceeded the rate limit of
|
|
15125
|
+
/** @description The user has exceeded the rate limit of 50 requests per minute for this endpoint. */
|
|
14441
15126
|
429: {
|
|
14442
15127
|
headers: {
|
|
14443
15128
|
[name: string]: unknown;
|
|
@@ -16763,6 +17448,148 @@ export interface operations {
|
|
|
16763
17448
|
};
|
|
16764
17449
|
};
|
|
16765
17450
|
};
|
|
17451
|
+
"access-git-interface": {
|
|
17452
|
+
parameters: {
|
|
17453
|
+
query?: never;
|
|
17454
|
+
header?: {
|
|
17455
|
+
/** @description The Mongo cluster name to perform this request in. This is usually not needed unless the organization does not exist yet in the Amigo organization infra config database. */
|
|
17456
|
+
"x-mongo-cluster-name"?: string | null;
|
|
17457
|
+
"Sec-WebSocket-Protocol"?: string[];
|
|
17458
|
+
};
|
|
17459
|
+
path: {
|
|
17460
|
+
organization: string;
|
|
17461
|
+
/** @description The Git path to forward the request to. */
|
|
17462
|
+
git_path: string;
|
|
17463
|
+
};
|
|
17464
|
+
cookie?: never;
|
|
17465
|
+
};
|
|
17466
|
+
requestBody?: never;
|
|
17467
|
+
responses: {
|
|
17468
|
+
/** @description Successful Response */
|
|
17469
|
+
200: {
|
|
17470
|
+
headers: {
|
|
17471
|
+
[name: string]: unknown;
|
|
17472
|
+
};
|
|
17473
|
+
content: {
|
|
17474
|
+
"application/json": unknown;
|
|
17475
|
+
};
|
|
17476
|
+
};
|
|
17477
|
+
/** @description Validation Error */
|
|
17478
|
+
422: {
|
|
17479
|
+
headers: {
|
|
17480
|
+
[name: string]: unknown;
|
|
17481
|
+
};
|
|
17482
|
+
content: {
|
|
17483
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
17484
|
+
};
|
|
17485
|
+
};
|
|
17486
|
+
};
|
|
17487
|
+
};
|
|
17488
|
+
"access-git-interface-post": {
|
|
17489
|
+
parameters: {
|
|
17490
|
+
query?: never;
|
|
17491
|
+
header?: {
|
|
17492
|
+
/** @description The Mongo cluster name to perform this request in. This is usually not needed unless the organization does not exist yet in the Amigo organization infra config database. */
|
|
17493
|
+
"x-mongo-cluster-name"?: string | null;
|
|
17494
|
+
"Sec-WebSocket-Protocol"?: string[];
|
|
17495
|
+
};
|
|
17496
|
+
path: {
|
|
17497
|
+
organization: string;
|
|
17498
|
+
/** @description The Git path to forward the request to. */
|
|
17499
|
+
git_path: string;
|
|
17500
|
+
};
|
|
17501
|
+
cookie?: never;
|
|
17502
|
+
};
|
|
17503
|
+
requestBody?: never;
|
|
17504
|
+
responses: {
|
|
17505
|
+
/** @description Successful Response */
|
|
17506
|
+
200: {
|
|
17507
|
+
headers: {
|
|
17508
|
+
[name: string]: unknown;
|
|
17509
|
+
};
|
|
17510
|
+
content: {
|
|
17511
|
+
"application/json": unknown;
|
|
17512
|
+
};
|
|
17513
|
+
};
|
|
17514
|
+
/** @description Validation Error */
|
|
17515
|
+
422: {
|
|
17516
|
+
headers: {
|
|
17517
|
+
[name: string]: unknown;
|
|
17518
|
+
};
|
|
17519
|
+
content: {
|
|
17520
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
17521
|
+
};
|
|
17522
|
+
};
|
|
17523
|
+
};
|
|
17524
|
+
};
|
|
17525
|
+
"get-tool-scaffold-release": {
|
|
17526
|
+
parameters: {
|
|
17527
|
+
query?: never;
|
|
17528
|
+
header?: {
|
|
17529
|
+
/** @description The Mongo cluster name to perform this request in. This is usually not needed unless the organization does not exist yet in the Amigo organization infra config database. */
|
|
17530
|
+
"x-mongo-cluster-name"?: string | null;
|
|
17531
|
+
"Sec-WebSocket-Protocol"?: string[];
|
|
17532
|
+
};
|
|
17533
|
+
path: {
|
|
17534
|
+
organization: string;
|
|
17535
|
+
};
|
|
17536
|
+
cookie?: never;
|
|
17537
|
+
};
|
|
17538
|
+
requestBody?: never;
|
|
17539
|
+
responses: {
|
|
17540
|
+
/** @description Succeeded. */
|
|
17541
|
+
200: {
|
|
17542
|
+
headers: {
|
|
17543
|
+
[name: string]: unknown;
|
|
17544
|
+
};
|
|
17545
|
+
content: {
|
|
17546
|
+
"application/json": unknown;
|
|
17547
|
+
};
|
|
17548
|
+
};
|
|
17549
|
+
/** @description Invalid authorization credentials. */
|
|
17550
|
+
401: {
|
|
17551
|
+
headers: {
|
|
17552
|
+
[name: string]: unknown;
|
|
17553
|
+
};
|
|
17554
|
+
content?: never;
|
|
17555
|
+
};
|
|
17556
|
+
/** @description Missing required permissions. */
|
|
17557
|
+
403: {
|
|
17558
|
+
headers: {
|
|
17559
|
+
[name: string]: unknown;
|
|
17560
|
+
};
|
|
17561
|
+
content?: never;
|
|
17562
|
+
};
|
|
17563
|
+
/** @description Specified organization is not found. */
|
|
17564
|
+
404: {
|
|
17565
|
+
headers: {
|
|
17566
|
+
[name: string]: unknown;
|
|
17567
|
+
};
|
|
17568
|
+
content?: never;
|
|
17569
|
+
};
|
|
17570
|
+
/** @description Invalid request path parameter failed validation. */
|
|
17571
|
+
422: {
|
|
17572
|
+
headers: {
|
|
17573
|
+
[name: string]: unknown;
|
|
17574
|
+
};
|
|
17575
|
+
content?: never;
|
|
17576
|
+
};
|
|
17577
|
+
/** @description The user has exceeded the rate limit of 50 requests per minute for this endpoint. */
|
|
17578
|
+
429: {
|
|
17579
|
+
headers: {
|
|
17580
|
+
[name: string]: unknown;
|
|
17581
|
+
};
|
|
17582
|
+
content?: never;
|
|
17583
|
+
};
|
|
17584
|
+
/** @description The service is going through temporary maintenance. */
|
|
17585
|
+
503: {
|
|
17586
|
+
headers: {
|
|
17587
|
+
[name: string]: unknown;
|
|
17588
|
+
};
|
|
17589
|
+
content?: never;
|
|
17590
|
+
};
|
|
17591
|
+
};
|
|
17592
|
+
};
|
|
16766
17593
|
"get-tools": {
|
|
16767
17594
|
parameters: {
|
|
16768
17595
|
query?: {
|