@wildix/xbees-users-client 1.0.33 → 1.0.35

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.
@@ -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
- }