@wildix/wim-tools-client 4.0.2 → 4.0.5

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.
Files changed (65) hide show
  1. package/dist-cjs/Tools.js +27 -1
  2. package/dist-cjs/commands/CreateConnectorCommand.js +20 -0
  3. package/dist-cjs/commands/CreateConnectorSessionCommand.js +20 -0
  4. package/dist-cjs/commands/DeleteConnectorCommand.js +20 -0
  5. package/dist-cjs/commands/ExecuteConnectorCommand.js +20 -0
  6. package/dist-cjs/commands/GetConnectorCommand.js +20 -0
  7. package/dist-cjs/commands/GetConnectorDefinitionCommand.js +20 -0
  8. package/dist-cjs/commands/ListConnectorDefinitionsCommand.js +20 -0
  9. package/dist-cjs/commands/ListConnectorsCommand.js +20 -0
  10. package/dist-cjs/commands/ResolveConnectorConfigurationCommand.js +20 -0
  11. package/dist-cjs/commands/UpdateConnectorCommand.js +20 -0
  12. package/dist-cjs/commands/index.js +10 -0
  13. package/dist-cjs/index.js +1 -0
  14. package/dist-cjs/models/enums.js +18 -7
  15. package/dist-cjs/pagination/Interfaces.js +2 -0
  16. package/dist-cjs/pagination/ListConnectorDefinitionsPaginator.js +7 -0
  17. package/dist-cjs/pagination/ListConnectorsPaginator.js +7 -0
  18. package/dist-cjs/pagination/index.js +6 -0
  19. package/dist-cjs/schemas/schemas_0.js +360 -57
  20. package/dist-es/Tools.js +27 -1
  21. package/dist-es/commands/CreateConnectorCommand.js +16 -0
  22. package/dist-es/commands/CreateConnectorSessionCommand.js +16 -0
  23. package/dist-es/commands/DeleteConnectorCommand.js +16 -0
  24. package/dist-es/commands/ExecuteConnectorCommand.js +16 -0
  25. package/dist-es/commands/GetConnectorCommand.js +16 -0
  26. package/dist-es/commands/GetConnectorDefinitionCommand.js +16 -0
  27. package/dist-es/commands/ListConnectorDefinitionsCommand.js +16 -0
  28. package/dist-es/commands/ListConnectorsCommand.js +16 -0
  29. package/dist-es/commands/ResolveConnectorConfigurationCommand.js +16 -0
  30. package/dist-es/commands/UpdateConnectorCommand.js +16 -0
  31. package/dist-es/commands/index.js +10 -0
  32. package/dist-es/index.js +1 -0
  33. package/dist-es/models/enums.js +17 -6
  34. package/dist-es/pagination/Interfaces.js +1 -0
  35. package/dist-es/pagination/ListConnectorDefinitionsPaginator.js +4 -0
  36. package/dist-es/pagination/ListConnectorsPaginator.js +4 -0
  37. package/dist-es/pagination/index.js +3 -0
  38. package/dist-es/schemas/schemas_0.js +357 -55
  39. package/dist-types/Tools.d.ts +87 -1
  40. package/dist-types/ToolsClient.d.ts +12 -2
  41. package/dist-types/commands/CreateConnectorCommand.d.ts +123 -0
  42. package/dist-types/commands/CreateConnectorSessionCommand.d.ts +95 -0
  43. package/dist-types/commands/CreateToolCommand.d.ts +42 -0
  44. package/dist-types/commands/DeleteConnectorCommand.d.ts +87 -0
  45. package/dist-types/commands/DescribeToolsCommand.d.ts +4 -0
  46. package/dist-types/commands/ExecuteConnectorCommand.d.ts +96 -0
  47. package/dist-types/commands/GetConnectorCommand.d.ts +108 -0
  48. package/dist-types/commands/GetConnectorDefinitionCommand.d.ts +152 -0
  49. package/dist-types/commands/GetToolCommand.d.ts +21 -0
  50. package/dist-types/commands/ListConnectorDefinitionsCommand.d.ts +156 -0
  51. package/dist-types/commands/ListConnectorsCommand.d.ts +112 -0
  52. package/dist-types/commands/ListToolsCommand.d.ts +21 -0
  53. package/dist-types/commands/ResolveConnectorConfigurationCommand.d.ts +102 -0
  54. package/dist-types/commands/UpdateConnectorCommand.d.ts +124 -0
  55. package/dist-types/commands/UpdateToolCommand.d.ts +42 -0
  56. package/dist-types/commands/index.d.ts +10 -0
  57. package/dist-types/index.d.ts +1 -0
  58. package/dist-types/models/enums.d.ts +40 -7
  59. package/dist-types/models/models_0.d.ts +861 -50
  60. package/dist-types/pagination/Interfaces.d.ts +8 -0
  61. package/dist-types/pagination/ListConnectorDefinitionsPaginator.d.ts +7 -0
  62. package/dist-types/pagination/ListConnectorsPaginator.d.ts +7 -0
  63. package/dist-types/pagination/index.d.ts +3 -0
  64. package/dist-types/schemas/schemas_0.d.ts +44 -0
  65. package/package.json +1 -1
package/dist-cjs/Tools.js CHANGED
@@ -2,26 +2,52 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.Tools = void 0;
4
4
  const client_1 = require("@smithy/core/client");
5
+ const CreateConnectorCommand_1 = require("./commands/CreateConnectorCommand");
6
+ const CreateConnectorSessionCommand_1 = require("./commands/CreateConnectorSessionCommand");
5
7
  const CreateToolCommand_1 = require("./commands/CreateToolCommand");
8
+ const DeleteConnectorCommand_1 = require("./commands/DeleteConnectorCommand");
6
9
  const DeleteToolCommand_1 = require("./commands/DeleteToolCommand");
7
10
  const DescribeToolsCommand_1 = require("./commands/DescribeToolsCommand");
8
11
  const DiscoverToolsCommand_1 = require("./commands/DiscoverToolsCommand");
12
+ const ExecuteConnectorCommand_1 = require("./commands/ExecuteConnectorCommand");
9
13
  const ExecuteToolCommand_1 = require("./commands/ExecuteToolCommand");
14
+ const GetConnectorCommand_1 = require("./commands/GetConnectorCommand");
15
+ const GetConnectorDefinitionCommand_1 = require("./commands/GetConnectorDefinitionCommand");
10
16
  const GetToolCommand_1 = require("./commands/GetToolCommand");
17
+ const ListConnectorDefinitionsCommand_1 = require("./commands/ListConnectorDefinitionsCommand");
18
+ const ListConnectorsCommand_1 = require("./commands/ListConnectorsCommand");
11
19
  const ListToolsCommand_1 = require("./commands/ListToolsCommand");
20
+ const ResolveConnectorConfigurationCommand_1 = require("./commands/ResolveConnectorConfigurationCommand");
21
+ const UpdateConnectorCommand_1 = require("./commands/UpdateConnectorCommand");
12
22
  const UpdateToolCommand_1 = require("./commands/UpdateToolCommand");
23
+ const ListConnectorDefinitionsPaginator_1 = require("./pagination/ListConnectorDefinitionsPaginator");
24
+ const ListConnectorsPaginator_1 = require("./pagination/ListConnectorsPaginator");
13
25
  const ToolsClient_1 = require("./ToolsClient");
14
26
  const commands = {
27
+ CreateConnectorCommand: CreateConnectorCommand_1.CreateConnectorCommand,
28
+ CreateConnectorSessionCommand: CreateConnectorSessionCommand_1.CreateConnectorSessionCommand,
15
29
  CreateToolCommand: CreateToolCommand_1.CreateToolCommand,
30
+ DeleteConnectorCommand: DeleteConnectorCommand_1.DeleteConnectorCommand,
16
31
  DeleteToolCommand: DeleteToolCommand_1.DeleteToolCommand,
17
32
  DescribeToolsCommand: DescribeToolsCommand_1.DescribeToolsCommand,
18
33
  DiscoverToolsCommand: DiscoverToolsCommand_1.DiscoverToolsCommand,
34
+ ExecuteConnectorCommand: ExecuteConnectorCommand_1.ExecuteConnectorCommand,
19
35
  ExecuteToolCommand: ExecuteToolCommand_1.ExecuteToolCommand,
36
+ GetConnectorCommand: GetConnectorCommand_1.GetConnectorCommand,
37
+ GetConnectorDefinitionCommand: GetConnectorDefinitionCommand_1.GetConnectorDefinitionCommand,
20
38
  GetToolCommand: GetToolCommand_1.GetToolCommand,
39
+ ListConnectorDefinitionsCommand: ListConnectorDefinitionsCommand_1.ListConnectorDefinitionsCommand,
40
+ ListConnectorsCommand: ListConnectorsCommand_1.ListConnectorsCommand,
21
41
  ListToolsCommand: ListToolsCommand_1.ListToolsCommand,
42
+ ResolveConnectorConfigurationCommand: ResolveConnectorConfigurationCommand_1.ResolveConnectorConfigurationCommand,
43
+ UpdateConnectorCommand: UpdateConnectorCommand_1.UpdateConnectorCommand,
22
44
  UpdateToolCommand: UpdateToolCommand_1.UpdateToolCommand,
23
45
  };
46
+ const paginators = {
47
+ paginateListConnectorDefinitions: ListConnectorDefinitionsPaginator_1.paginateListConnectorDefinitions,
48
+ paginateListConnectors: ListConnectorsPaginator_1.paginateListConnectors,
49
+ };
24
50
  class Tools extends ToolsClient_1.ToolsClient {
25
51
  }
26
52
  exports.Tools = Tools;
27
- (0, client_1.createAggregatedClient)(commands, Tools);
53
+ (0, client_1.createAggregatedClient)(commands, Tools, { paginators });
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CreateConnectorCommand = exports.$Command = void 0;
4
+ const client_1 = require("@smithy/core/client");
5
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return client_1.Command; } });
6
+ const endpoints_1 = require("@smithy/core/endpoints");
7
+ const EndpointParameters_1 = require("../endpoint/EndpointParameters");
8
+ const schemas_0_1 = require("../schemas/schemas_0");
9
+ class CreateConnectorCommand extends client_1.Command
10
+ .classBuilder()
11
+ .ep(EndpointParameters_1.commonParams)
12
+ .m(function (Command, cs, config, o) {
13
+ return [(0, endpoints_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())];
14
+ })
15
+ .s("Tools", "CreateConnector", {})
16
+ .n("ToolsClient", "CreateConnectorCommand")
17
+ .sc(schemas_0_1.CreateConnector$)
18
+ .build() {
19
+ }
20
+ exports.CreateConnectorCommand = CreateConnectorCommand;
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CreateConnectorSessionCommand = exports.$Command = void 0;
4
+ const client_1 = require("@smithy/core/client");
5
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return client_1.Command; } });
6
+ const endpoints_1 = require("@smithy/core/endpoints");
7
+ const EndpointParameters_1 = require("../endpoint/EndpointParameters");
8
+ const schemas_0_1 = require("../schemas/schemas_0");
9
+ class CreateConnectorSessionCommand extends client_1.Command
10
+ .classBuilder()
11
+ .ep(EndpointParameters_1.commonParams)
12
+ .m(function (Command, cs, config, o) {
13
+ return [(0, endpoints_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())];
14
+ })
15
+ .s("Tools", "CreateConnectorSession", {})
16
+ .n("ToolsClient", "CreateConnectorSessionCommand")
17
+ .sc(schemas_0_1.CreateConnectorSession$)
18
+ .build() {
19
+ }
20
+ exports.CreateConnectorSessionCommand = CreateConnectorSessionCommand;
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.DeleteConnectorCommand = exports.$Command = void 0;
4
+ const client_1 = require("@smithy/core/client");
5
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return client_1.Command; } });
6
+ const endpoints_1 = require("@smithy/core/endpoints");
7
+ const EndpointParameters_1 = require("../endpoint/EndpointParameters");
8
+ const schemas_0_1 = require("../schemas/schemas_0");
9
+ class DeleteConnectorCommand extends client_1.Command
10
+ .classBuilder()
11
+ .ep(EndpointParameters_1.commonParams)
12
+ .m(function (Command, cs, config, o) {
13
+ return [(0, endpoints_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())];
14
+ })
15
+ .s("Tools", "DeleteConnector", {})
16
+ .n("ToolsClient", "DeleteConnectorCommand")
17
+ .sc(schemas_0_1.DeleteConnector$)
18
+ .build() {
19
+ }
20
+ exports.DeleteConnectorCommand = DeleteConnectorCommand;
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ExecuteConnectorCommand = exports.$Command = void 0;
4
+ const client_1 = require("@smithy/core/client");
5
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return client_1.Command; } });
6
+ const endpoints_1 = require("@smithy/core/endpoints");
7
+ const EndpointParameters_1 = require("../endpoint/EndpointParameters");
8
+ const schemas_0_1 = require("../schemas/schemas_0");
9
+ class ExecuteConnectorCommand extends client_1.Command
10
+ .classBuilder()
11
+ .ep(EndpointParameters_1.commonParams)
12
+ .m(function (Command, cs, config, o) {
13
+ return [(0, endpoints_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())];
14
+ })
15
+ .s("Tools", "ExecuteConnector", {})
16
+ .n("ToolsClient", "ExecuteConnectorCommand")
17
+ .sc(schemas_0_1.ExecuteConnector$)
18
+ .build() {
19
+ }
20
+ exports.ExecuteConnectorCommand = ExecuteConnectorCommand;
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.GetConnectorCommand = exports.$Command = void 0;
4
+ const client_1 = require("@smithy/core/client");
5
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return client_1.Command; } });
6
+ const endpoints_1 = require("@smithy/core/endpoints");
7
+ const EndpointParameters_1 = require("../endpoint/EndpointParameters");
8
+ const schemas_0_1 = require("../schemas/schemas_0");
9
+ class GetConnectorCommand extends client_1.Command
10
+ .classBuilder()
11
+ .ep(EndpointParameters_1.commonParams)
12
+ .m(function (Command, cs, config, o) {
13
+ return [(0, endpoints_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())];
14
+ })
15
+ .s("Tools", "GetConnector", {})
16
+ .n("ToolsClient", "GetConnectorCommand")
17
+ .sc(schemas_0_1.GetConnector$)
18
+ .build() {
19
+ }
20
+ exports.GetConnectorCommand = GetConnectorCommand;
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.GetConnectorDefinitionCommand = exports.$Command = void 0;
4
+ const client_1 = require("@smithy/core/client");
5
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return client_1.Command; } });
6
+ const endpoints_1 = require("@smithy/core/endpoints");
7
+ const EndpointParameters_1 = require("../endpoint/EndpointParameters");
8
+ const schemas_0_1 = require("../schemas/schemas_0");
9
+ class GetConnectorDefinitionCommand extends client_1.Command
10
+ .classBuilder()
11
+ .ep(EndpointParameters_1.commonParams)
12
+ .m(function (Command, cs, config, o) {
13
+ return [(0, endpoints_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())];
14
+ })
15
+ .s("Tools", "GetConnectorDefinition", {})
16
+ .n("ToolsClient", "GetConnectorDefinitionCommand")
17
+ .sc(schemas_0_1.GetConnectorDefinition$)
18
+ .build() {
19
+ }
20
+ exports.GetConnectorDefinitionCommand = GetConnectorDefinitionCommand;
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ListConnectorDefinitionsCommand = exports.$Command = void 0;
4
+ const client_1 = require("@smithy/core/client");
5
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return client_1.Command; } });
6
+ const endpoints_1 = require("@smithy/core/endpoints");
7
+ const EndpointParameters_1 = require("../endpoint/EndpointParameters");
8
+ const schemas_0_1 = require("../schemas/schemas_0");
9
+ class ListConnectorDefinitionsCommand extends client_1.Command
10
+ .classBuilder()
11
+ .ep(EndpointParameters_1.commonParams)
12
+ .m(function (Command, cs, config, o) {
13
+ return [(0, endpoints_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())];
14
+ })
15
+ .s("Tools", "ListConnectorDefinitions", {})
16
+ .n("ToolsClient", "ListConnectorDefinitionsCommand")
17
+ .sc(schemas_0_1.ListConnectorDefinitions$)
18
+ .build() {
19
+ }
20
+ exports.ListConnectorDefinitionsCommand = ListConnectorDefinitionsCommand;
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ListConnectorsCommand = exports.$Command = void 0;
4
+ const client_1 = require("@smithy/core/client");
5
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return client_1.Command; } });
6
+ const endpoints_1 = require("@smithy/core/endpoints");
7
+ const EndpointParameters_1 = require("../endpoint/EndpointParameters");
8
+ const schemas_0_1 = require("../schemas/schemas_0");
9
+ class ListConnectorsCommand extends client_1.Command
10
+ .classBuilder()
11
+ .ep(EndpointParameters_1.commonParams)
12
+ .m(function (Command, cs, config, o) {
13
+ return [(0, endpoints_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())];
14
+ })
15
+ .s("Tools", "ListConnectors", {})
16
+ .n("ToolsClient", "ListConnectorsCommand")
17
+ .sc(schemas_0_1.ListConnectors$)
18
+ .build() {
19
+ }
20
+ exports.ListConnectorsCommand = ListConnectorsCommand;
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ResolveConnectorConfigurationCommand = exports.$Command = void 0;
4
+ const client_1 = require("@smithy/core/client");
5
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return client_1.Command; } });
6
+ const endpoints_1 = require("@smithy/core/endpoints");
7
+ const EndpointParameters_1 = require("../endpoint/EndpointParameters");
8
+ const schemas_0_1 = require("../schemas/schemas_0");
9
+ class ResolveConnectorConfigurationCommand extends client_1.Command
10
+ .classBuilder()
11
+ .ep(EndpointParameters_1.commonParams)
12
+ .m(function (Command, cs, config, o) {
13
+ return [(0, endpoints_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())];
14
+ })
15
+ .s("Tools", "ResolveConnectorConfiguration", {})
16
+ .n("ToolsClient", "ResolveConnectorConfigurationCommand")
17
+ .sc(schemas_0_1.ResolveConnectorConfiguration$)
18
+ .build() {
19
+ }
20
+ exports.ResolveConnectorConfigurationCommand = ResolveConnectorConfigurationCommand;
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.UpdateConnectorCommand = exports.$Command = void 0;
4
+ const client_1 = require("@smithy/core/client");
5
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return client_1.Command; } });
6
+ const endpoints_1 = require("@smithy/core/endpoints");
7
+ const EndpointParameters_1 = require("../endpoint/EndpointParameters");
8
+ const schemas_0_1 = require("../schemas/schemas_0");
9
+ class UpdateConnectorCommand extends client_1.Command
10
+ .classBuilder()
11
+ .ep(EndpointParameters_1.commonParams)
12
+ .m(function (Command, cs, config, o) {
13
+ return [(0, endpoints_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())];
14
+ })
15
+ .s("Tools", "UpdateConnector", {})
16
+ .n("ToolsClient", "UpdateConnectorCommand")
17
+ .sc(schemas_0_1.UpdateConnector$)
18
+ .build() {
19
+ }
20
+ exports.UpdateConnectorCommand = UpdateConnectorCommand;
@@ -1,11 +1,21 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const tslib_1 = require("tslib");
4
+ tslib_1.__exportStar(require("./CreateConnectorCommand"), exports);
5
+ tslib_1.__exportStar(require("./CreateConnectorSessionCommand"), exports);
4
6
  tslib_1.__exportStar(require("./CreateToolCommand"), exports);
7
+ tslib_1.__exportStar(require("./DeleteConnectorCommand"), exports);
5
8
  tslib_1.__exportStar(require("./DeleteToolCommand"), exports);
6
9
  tslib_1.__exportStar(require("./DescribeToolsCommand"), exports);
7
10
  tslib_1.__exportStar(require("./DiscoverToolsCommand"), exports);
11
+ tslib_1.__exportStar(require("./ExecuteConnectorCommand"), exports);
8
12
  tslib_1.__exportStar(require("./ExecuteToolCommand"), exports);
13
+ tslib_1.__exportStar(require("./GetConnectorCommand"), exports);
14
+ tslib_1.__exportStar(require("./GetConnectorDefinitionCommand"), exports);
9
15
  tslib_1.__exportStar(require("./GetToolCommand"), exports);
16
+ tslib_1.__exportStar(require("./ListConnectorDefinitionsCommand"), exports);
17
+ tslib_1.__exportStar(require("./ListConnectorsCommand"), exports);
10
18
  tslib_1.__exportStar(require("./ListToolsCommand"), exports);
19
+ tslib_1.__exportStar(require("./ResolveConnectorConfigurationCommand"), exports);
20
+ tslib_1.__exportStar(require("./UpdateConnectorCommand"), exports);
11
21
  tslib_1.__exportStar(require("./UpdateToolCommand"), exports);
package/dist-cjs/index.js CHANGED
@@ -6,6 +6,7 @@ tslib_1.__exportStar(require("./ToolsClient"), exports);
6
6
  tslib_1.__exportStar(require("./Tools"), exports);
7
7
  tslib_1.__exportStar(require("./commands"), exports);
8
8
  tslib_1.__exportStar(require("./schemas/schemas_0"), exports);
9
+ tslib_1.__exportStar(require("./pagination"), exports);
9
10
  tslib_1.__exportStar(require("./models/enums"), exports);
10
11
  tslib_1.__exportStar(require("./models/errors"), exports);
11
12
  tslib_1.__exportStar(require("./models/models_0"), exports);
@@ -1,12 +1,9 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ToolVariableType = exports.ToolWebhookMethod = void 0;
4
- exports.ToolWebhookMethod = {
5
- DELETE: "DELETE",
6
- GET: "GET",
7
- PATCH: "PATCH",
8
- POST: "POST",
9
- PUT: "PUT",
3
+ exports.ToolWebhookMethod = exports.ToolCalendarOperation = exports.ToolVariableType = exports.ConnectorAuthorizationMode = void 0;
4
+ exports.ConnectorAuthorizationMode = {
5
+ SHARED: "shared",
6
+ USER: "user",
10
7
  };
11
8
  exports.ToolVariableType = {
12
9
  BOOLEAN: "boolean",
@@ -16,3 +13,17 @@ exports.ToolVariableType = {
16
13
  STRING: "string",
17
14
  STRING_ARRAY: "string_array",
18
15
  };
16
+ exports.ToolCalendarOperation = {
17
+ CANCEL: "cancel",
18
+ GET_SLOTS: "get_slots",
19
+ LIST_RESOURCE_EVENTS: "list_resource_events",
20
+ RESCHEDULE: "reschedule",
21
+ SCHEDULE: "schedule",
22
+ };
23
+ exports.ToolWebhookMethod = {
24
+ DELETE: "DELETE",
25
+ GET: "GET",
26
+ PATCH: "PATCH",
27
+ POST: "POST",
28
+ PUT: "PUT",
29
+ };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.paginateListConnectorDefinitions = void 0;
4
+ const core_1 = require("@smithy/core");
5
+ const ListConnectorDefinitionsCommand_1 = require("../commands/ListConnectorDefinitionsCommand");
6
+ const ToolsClient_1 = require("../ToolsClient");
7
+ exports.paginateListConnectorDefinitions = (0, core_1.createPaginator)(ToolsClient_1.ToolsClient, ListConnectorDefinitionsCommand_1.ListConnectorDefinitionsCommand, "nextToken", "nextToken", "pageSize");
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.paginateListConnectors = void 0;
4
+ const core_1 = require("@smithy/core");
5
+ const ListConnectorsCommand_1 = require("../commands/ListConnectorsCommand");
6
+ const ToolsClient_1 = require("../ToolsClient");
7
+ exports.paginateListConnectors = (0, core_1.createPaginator)(ToolsClient_1.ToolsClient, ListConnectorsCommand_1.ListConnectorsCommand, "nextToken", "nextToken", "pageSize");
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const tslib_1 = require("tslib");
4
+ tslib_1.__exportStar(require("./Interfaces"), exports);
5
+ tslib_1.__exportStar(require("./ListConnectorDefinitionsPaginator"), exports);
6
+ tslib_1.__exportStar(require("./ListConnectorsPaginator"), exports);