@wildix/xbees-users-client 1.0.33 → 1.0.34
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/Users.js +0 -2
- package/dist-cjs/commands/index.js +0 -1
- package/dist-cjs/models/models_0.js +37 -1
- package/dist-cjs/protocols/Aws_restJson1.js +120 -36
- package/dist-es/Users.js +0 -2
- package/dist-es/commands/index.js +0 -1
- package/dist-es/models/models_0.js +36 -0
- package/dist-es/protocols/Aws_restJson1.js +120 -34
- package/dist-types/Users.d.ts +0 -7
- package/dist-types/UsersClient.d.ts +2 -3
- package/dist-types/commands/CreateBotCommand.d.ts +49 -0
- package/dist-types/commands/GetBotCallbackCommand.d.ts +49 -0
- package/dist-types/commands/UpdateBotCallbackCommand.d.ts +98 -0
- package/dist-types/commands/index.d.ts +0 -1
- package/dist-types/models/models_0.d.ts +217 -32
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -9
- package/package.json +5 -5
- package/dist-cjs/commands/IntelligenceSearchCommand.js +0 -21
- package/dist-es/commands/IntelligenceSearchCommand.js +0 -17
- package/dist-types/commands/IntelligenceSearchCommand.d.ts +0 -73
|
@@ -1,73 +0,0 @@
|
|
|
1
|
-
import { ServiceInputTypes, ServiceOutputTypes, UsersClientResolvedConfig } from "../UsersClient";
|
|
2
|
-
import { IntelligenceSearchInput, IntelligenceSearchOutput } from "../models/models_0";
|
|
3
|
-
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
-
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
5
|
-
/**
|
|
6
|
-
* @public
|
|
7
|
-
*/
|
|
8
|
-
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
|
-
/**
|
|
11
|
-
* @public
|
|
12
|
-
*
|
|
13
|
-
* The input for {@link IntelligenceSearchCommand}.
|
|
14
|
-
*/
|
|
15
|
-
export interface IntelligenceSearchCommandInput extends IntelligenceSearchInput {
|
|
16
|
-
}
|
|
17
|
-
/**
|
|
18
|
-
* @public
|
|
19
|
-
*
|
|
20
|
-
* The output of {@link IntelligenceSearchCommand}.
|
|
21
|
-
*/
|
|
22
|
-
export interface IntelligenceSearchCommandOutput extends IntelligenceSearchOutput, __MetadataBearer {
|
|
23
|
-
}
|
|
24
|
-
declare const IntelligenceSearchCommand_base: {
|
|
25
|
-
new (input: IntelligenceSearchCommandInput): import("@smithy/smithy-client").CommandImpl<IntelligenceSearchCommandInput, IntelligenceSearchCommandOutput, UsersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (__0_0: IntelligenceSearchCommandInput): import("@smithy/smithy-client").CommandImpl<IntelligenceSearchCommandInput, IntelligenceSearchCommandOutput, UsersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
-
};
|
|
29
|
-
/**
|
|
30
|
-
* Search user in the directory using AI. Result is sorted by relevance.
|
|
31
|
-
* @example
|
|
32
|
-
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
-
* ```javascript
|
|
34
|
-
* import { UsersClient, IntelligenceSearchCommand } from "@wildix/xbees-users-client"; // ES Modules import
|
|
35
|
-
* // const { UsersClient, IntelligenceSearchCommand } = require("@wildix/xbees-users-client"); // CommonJS import
|
|
36
|
-
* const client = new UsersClient(config);
|
|
37
|
-
* const input = { // IntelligenceSearchInput
|
|
38
|
-
* company: "STRING_VALUE",
|
|
39
|
-
* search: "STRING_VALUE", // required
|
|
40
|
-
* excludeExtension: "STRING_VALUE",
|
|
41
|
-
* };
|
|
42
|
-
* const command = new IntelligenceSearchCommand(input);
|
|
43
|
-
* const response = await client.send(command);
|
|
44
|
-
* // { // IntelligenceSearchOutput
|
|
45
|
-
* // items: [ // DirectoryItems // required
|
|
46
|
-
* // { // DirectoryItem
|
|
47
|
-
* // extension: "STRING_VALUE",
|
|
48
|
-
* // name: "STRING_VALUE",
|
|
49
|
-
* // department: "STRING_VALUE",
|
|
50
|
-
* // group: "STRING_VALUE",
|
|
51
|
-
* // },
|
|
52
|
-
* // ],
|
|
53
|
-
* // };
|
|
54
|
-
*
|
|
55
|
-
* ```
|
|
56
|
-
*
|
|
57
|
-
* @param IntelligenceSearchCommandInput - {@link IntelligenceSearchCommandInput}
|
|
58
|
-
* @returns {@link IntelligenceSearchCommandOutput}
|
|
59
|
-
* @see {@link IntelligenceSearchCommandInput} for command's `input` shape.
|
|
60
|
-
* @see {@link IntelligenceSearchCommandOutput} for command's `response` shape.
|
|
61
|
-
* @see {@link UsersClientResolvedConfig | config} for UsersClient's `config` shape.
|
|
62
|
-
*
|
|
63
|
-
* @throws {@link ForbiddenException} (client fault)
|
|
64
|
-
*
|
|
65
|
-
* @throws {@link ValidationException} (client fault)
|
|
66
|
-
*
|
|
67
|
-
* @throws {@link UsersServiceException}
|
|
68
|
-
* <p>Base exception class for all service exceptions from Users service.</p>
|
|
69
|
-
*
|
|
70
|
-
* @public
|
|
71
|
-
*/
|
|
72
|
-
export declare class IntelligenceSearchCommand extends IntelligenceSearchCommand_base {
|
|
73
|
-
}
|