airborne-server-sdk 0.9.0

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 (109) hide show
  1. package/dist-cjs/Airborne.js +51 -0
  2. package/dist-cjs/AirborneClient.js +47 -0
  3. package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
  4. package/dist-cjs/auth/httpAuthSchemeProvider.js +49 -0
  5. package/dist-cjs/commands/CreateApplicationCommand.js +21 -0
  6. package/dist-cjs/commands/CreateDimensionCommand.js +21 -0
  7. package/dist-cjs/commands/CreateFileCommand.js +21 -0
  8. package/dist-cjs/commands/CreateOrganisationCommand.js +21 -0
  9. package/dist-cjs/commands/CreatePackageCommand.js +21 -0
  10. package/dist-cjs/commands/CreateReleaseCommand.js +21 -0
  11. package/dist-cjs/commands/DeleteDimensionCommand.js +21 -0
  12. package/dist-cjs/commands/GetReleaseCommand.js +21 -0
  13. package/dist-cjs/commands/GetUserCommand.js +21 -0
  14. package/dist-cjs/commands/ListDimensionsCommand.js +21 -0
  15. package/dist-cjs/commands/ListFilesCommand.js +21 -0
  16. package/dist-cjs/commands/ListOrganisationsCommand.js +21 -0
  17. package/dist-cjs/commands/ListPackagesCommand.js +21 -0
  18. package/dist-cjs/commands/ListReleasesCommand.js +21 -0
  19. package/dist-cjs/commands/PostLoginCommand.js +21 -0
  20. package/dist-cjs/commands/RequestOrganisationCommand.js +21 -0
  21. package/dist-cjs/commands/ServeReleaseCommand.js +21 -0
  22. package/dist-cjs/commands/ServeReleaseV2Command.js +21 -0
  23. package/dist-cjs/commands/UpdateDimensionCommand.js +21 -0
  24. package/dist-cjs/commands/UploadFileCommand.js +22 -0
  25. package/dist-cjs/commands/index.js +23 -0
  26. package/dist-cjs/extensionConfiguration.js +2 -0
  27. package/dist-cjs/index.js +10 -0
  28. package/dist-cjs/models/AirborneServiceException.js +12 -0
  29. package/dist-cjs/models/index.js +4 -0
  30. package/dist-cjs/models/models_0.js +77 -0
  31. package/dist-cjs/protocols/Aws_restJson1.js +953 -0
  32. package/dist-cjs/runtimeConfig.browser.js +32 -0
  33. package/dist-cjs/runtimeConfig.js +38 -0
  34. package/dist-cjs/runtimeConfig.native.js +15 -0
  35. package/dist-cjs/runtimeConfig.shared.js +33 -0
  36. package/dist-cjs/runtimeExtensions.js +12 -0
  37. package/dist-es/Airborne.js +47 -0
  38. package/dist-es/AirborneClient.js +43 -0
  39. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  40. package/dist-es/auth/httpAuthSchemeProvider.js +43 -0
  41. package/dist-es/commands/CreateApplicationCommand.js +17 -0
  42. package/dist-es/commands/CreateDimensionCommand.js +17 -0
  43. package/dist-es/commands/CreateFileCommand.js +17 -0
  44. package/dist-es/commands/CreateOrganisationCommand.js +17 -0
  45. package/dist-es/commands/CreatePackageCommand.js +17 -0
  46. package/dist-es/commands/CreateReleaseCommand.js +17 -0
  47. package/dist-es/commands/DeleteDimensionCommand.js +17 -0
  48. package/dist-es/commands/GetReleaseCommand.js +17 -0
  49. package/dist-es/commands/GetUserCommand.js +17 -0
  50. package/dist-es/commands/ListDimensionsCommand.js +17 -0
  51. package/dist-es/commands/ListFilesCommand.js +17 -0
  52. package/dist-es/commands/ListOrganisationsCommand.js +17 -0
  53. package/dist-es/commands/ListPackagesCommand.js +17 -0
  54. package/dist-es/commands/ListReleasesCommand.js +17 -0
  55. package/dist-es/commands/PostLoginCommand.js +17 -0
  56. package/dist-es/commands/RequestOrganisationCommand.js +17 -0
  57. package/dist-es/commands/ServeReleaseCommand.js +17 -0
  58. package/dist-es/commands/ServeReleaseV2Command.js +17 -0
  59. package/dist-es/commands/UpdateDimensionCommand.js +17 -0
  60. package/dist-es/commands/UploadFileCommand.js +18 -0
  61. package/dist-es/commands/index.js +20 -0
  62. package/dist-es/extensionConfiguration.js +1 -0
  63. package/dist-es/index.js +5 -0
  64. package/dist-es/models/AirborneServiceException.js +8 -0
  65. package/dist-es/models/index.js +1 -0
  66. package/dist-es/models/models_0.js +68 -0
  67. package/dist-es/protocols/Aws_restJson1.js +910 -0
  68. package/dist-es/runtimeConfig.browser.js +27 -0
  69. package/dist-es/runtimeConfig.js +33 -0
  70. package/dist-es/runtimeConfig.native.js +11 -0
  71. package/dist-es/runtimeConfig.shared.js +29 -0
  72. package/dist-es/runtimeExtensions.js +8 -0
  73. package/dist-types/Airborne.d.ts +152 -0
  74. package/dist-types/AirborneClient.d.ts +182 -0
  75. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  76. package/dist-types/auth/httpAuthSchemeProvider.d.ts +67 -0
  77. package/dist-types/commands/CreateApplicationCommand.d.ts +91 -0
  78. package/dist-types/commands/CreateDimensionCommand.d.ts +95 -0
  79. package/dist-types/commands/CreateFileCommand.d.ts +100 -0
  80. package/dist-types/commands/CreateOrganisationCommand.d.ts +98 -0
  81. package/dist-types/commands/CreatePackageCommand.d.ts +97 -0
  82. package/dist-types/commands/CreateReleaseCommand.d.ts +152 -0
  83. package/dist-types/commands/DeleteDimensionCommand.d.ts +86 -0
  84. package/dist-types/commands/GetReleaseCommand.d.ts +139 -0
  85. package/dist-types/commands/GetUserCommand.d.ts +108 -0
  86. package/dist-types/commands/ListDimensionsCommand.d.ts +100 -0
  87. package/dist-types/commands/ListFilesCommand.d.ts +108 -0
  88. package/dist-types/commands/ListOrganisationsCommand.d.ts +100 -0
  89. package/dist-types/commands/ListPackagesCommand.d.ts +102 -0
  90. package/dist-types/commands/ListReleasesCommand.d.ts +143 -0
  91. package/dist-types/commands/PostLoginCommand.d.ts +111 -0
  92. package/dist-types/commands/RequestOrganisationCommand.d.ts +92 -0
  93. package/dist-types/commands/ServeReleaseCommand.d.ts +103 -0
  94. package/dist-types/commands/ServeReleaseV2Command.d.ts +103 -0
  95. package/dist-types/commands/UpdateDimensionCommand.d.ts +95 -0
  96. package/dist-types/commands/UploadFileCommand.d.ts +101 -0
  97. package/dist-types/commands/index.d.ts +20 -0
  98. package/dist-types/extensionConfiguration.d.ts +8 -0
  99. package/dist-types/index.d.ts +12 -0
  100. package/dist-types/models/AirborneServiceException.d.ts +14 -0
  101. package/dist-types/models/index.d.ts +1 -0
  102. package/dist-types/models/models_0.d.ts +961 -0
  103. package/dist-types/protocols/Aws_restJson1.d.ts +182 -0
  104. package/dist-types/runtimeConfig.browser.d.ts +44 -0
  105. package/dist-types/runtimeConfig.d.ts +44 -0
  106. package/dist-types/runtimeConfig.native.d.ts +43 -0
  107. package/dist-types/runtimeConfig.shared.d.ts +27 -0
  108. package/dist-types/runtimeExtensions.d.ts +17 -0
  109. package/package.json +81 -0
@@ -0,0 +1,51 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.Airborne = void 0;
4
+ const AirborneClient_1 = require("./AirborneClient");
5
+ const CreateApplicationCommand_1 = require("./commands/CreateApplicationCommand");
6
+ const CreateDimensionCommand_1 = require("./commands/CreateDimensionCommand");
7
+ const CreateFileCommand_1 = require("./commands/CreateFileCommand");
8
+ const CreateOrganisationCommand_1 = require("./commands/CreateOrganisationCommand");
9
+ const CreatePackageCommand_1 = require("./commands/CreatePackageCommand");
10
+ const CreateReleaseCommand_1 = require("./commands/CreateReleaseCommand");
11
+ const DeleteDimensionCommand_1 = require("./commands/DeleteDimensionCommand");
12
+ const GetReleaseCommand_1 = require("./commands/GetReleaseCommand");
13
+ const GetUserCommand_1 = require("./commands/GetUserCommand");
14
+ const ListDimensionsCommand_1 = require("./commands/ListDimensionsCommand");
15
+ const ListFilesCommand_1 = require("./commands/ListFilesCommand");
16
+ const ListOrganisationsCommand_1 = require("./commands/ListOrganisationsCommand");
17
+ const ListPackagesCommand_1 = require("./commands/ListPackagesCommand");
18
+ const ListReleasesCommand_1 = require("./commands/ListReleasesCommand");
19
+ const PostLoginCommand_1 = require("./commands/PostLoginCommand");
20
+ const RequestOrganisationCommand_1 = require("./commands/RequestOrganisationCommand");
21
+ const ServeReleaseCommand_1 = require("./commands/ServeReleaseCommand");
22
+ const ServeReleaseV2Command_1 = require("./commands/ServeReleaseV2Command");
23
+ const UpdateDimensionCommand_1 = require("./commands/UpdateDimensionCommand");
24
+ const UploadFileCommand_1 = require("./commands/UploadFileCommand");
25
+ const smithy_client_1 = require("@smithy/smithy-client");
26
+ const commands = {
27
+ CreateApplicationCommand: CreateApplicationCommand_1.CreateApplicationCommand,
28
+ CreateDimensionCommand: CreateDimensionCommand_1.CreateDimensionCommand,
29
+ CreateFileCommand: CreateFileCommand_1.CreateFileCommand,
30
+ CreateOrganisationCommand: CreateOrganisationCommand_1.CreateOrganisationCommand,
31
+ CreatePackageCommand: CreatePackageCommand_1.CreatePackageCommand,
32
+ CreateReleaseCommand: CreateReleaseCommand_1.CreateReleaseCommand,
33
+ DeleteDimensionCommand: DeleteDimensionCommand_1.DeleteDimensionCommand,
34
+ GetReleaseCommand: GetReleaseCommand_1.GetReleaseCommand,
35
+ GetUserCommand: GetUserCommand_1.GetUserCommand,
36
+ ListDimensionsCommand: ListDimensionsCommand_1.ListDimensionsCommand,
37
+ ListFilesCommand: ListFilesCommand_1.ListFilesCommand,
38
+ ListOrganisationsCommand: ListOrganisationsCommand_1.ListOrganisationsCommand,
39
+ ListPackagesCommand: ListPackagesCommand_1.ListPackagesCommand,
40
+ ListReleasesCommand: ListReleasesCommand_1.ListReleasesCommand,
41
+ PostLoginCommand: PostLoginCommand_1.PostLoginCommand,
42
+ RequestOrganisationCommand: RequestOrganisationCommand_1.RequestOrganisationCommand,
43
+ ServeReleaseCommand: ServeReleaseCommand_1.ServeReleaseCommand,
44
+ ServeReleaseV2Command: ServeReleaseV2Command_1.ServeReleaseV2Command,
45
+ UpdateDimensionCommand: UpdateDimensionCommand_1.UpdateDimensionCommand,
46
+ UploadFileCommand: UploadFileCommand_1.UploadFileCommand,
47
+ };
48
+ class Airborne extends AirborneClient_1.AirborneClient {
49
+ }
50
+ exports.Airborne = Airborne;
51
+ (0, smithy_client_1.createAggregatedClient)(commands, Airborne);
@@ -0,0 +1,47 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.AirborneClient = exports.__Client = void 0;
4
+ const httpAuthSchemeProvider_1 = require("./auth/httpAuthSchemeProvider");
5
+ const runtimeConfig_1 = require("./runtimeConfig");
6
+ const runtimeExtensions_1 = require("./runtimeExtensions");
7
+ const middleware_host_header_1 = require("@aws-sdk/middleware-host-header");
8
+ const middleware_logger_1 = require("@aws-sdk/middleware-logger");
9
+ const middleware_recursion_detection_1 = require("@aws-sdk/middleware-recursion-detection");
10
+ const middleware_user_agent_1 = require("@aws-sdk/middleware-user-agent");
11
+ const config_resolver_1 = require("@smithy/config-resolver");
12
+ const core_1 = require("@smithy/core");
13
+ const middleware_content_length_1 = require("@smithy/middleware-content-length");
14
+ const middleware_retry_1 = require("@smithy/middleware-retry");
15
+ const smithy_client_1 = require("@smithy/smithy-client");
16
+ Object.defineProperty(exports, "__Client", { enumerable: true, get: function () { return smithy_client_1.Client; } });
17
+ class AirborneClient extends smithy_client_1.Client {
18
+ config;
19
+ constructor(...[configuration]) {
20
+ let _config_0 = (0, runtimeConfig_1.getRuntimeConfig)(configuration || {});
21
+ super(_config_0);
22
+ this.initConfig = _config_0;
23
+ let _config_1 = (0, middleware_user_agent_1.resolveUserAgentConfig)(_config_0);
24
+ let _config_2 = (0, config_resolver_1.resolveCustomEndpointsConfig)(_config_1);
25
+ let _config_3 = (0, middleware_retry_1.resolveRetryConfig)(_config_2);
26
+ let _config_4 = (0, middleware_host_header_1.resolveHostHeaderConfig)(_config_3);
27
+ let _config_5 = (0, httpAuthSchemeProvider_1.resolveHttpAuthSchemeConfig)(_config_4);
28
+ let _config_6 = (0, runtimeExtensions_1.resolveRuntimeExtensions)(_config_5, configuration?.extensions || []);
29
+ this.config = _config_6;
30
+ this.middlewareStack.use((0, middleware_user_agent_1.getUserAgentPlugin)(this.config));
31
+ this.middlewareStack.use((0, middleware_retry_1.getRetryPlugin)(this.config));
32
+ this.middlewareStack.use((0, middleware_content_length_1.getContentLengthPlugin)(this.config));
33
+ this.middlewareStack.use((0, middleware_host_header_1.getHostHeaderPlugin)(this.config));
34
+ this.middlewareStack.use((0, middleware_logger_1.getLoggerPlugin)(this.config));
35
+ this.middlewareStack.use((0, middleware_recursion_detection_1.getRecursionDetectionPlugin)(this.config));
36
+ this.middlewareStack.use((0, core_1.getHttpAuthSchemePlugin)(this.config, {
37
+ httpAuthSchemeParametersProvider: httpAuthSchemeProvider_1.defaultAirborneHttpAuthSchemeParametersProvider, identityProviderConfigProvider: async (config) => new core_1.DefaultIdentityProviderConfig({
38
+ "smithy.api#httpBearerAuth": config.token,
39
+ }),
40
+ }));
41
+ this.middlewareStack.use((0, core_1.getHttpSigningPlugin)(this.config));
42
+ }
43
+ destroy() {
44
+ super.destroy();
45
+ }
46
+ }
47
+ exports.AirborneClient = AirborneClient;
@@ -0,0 +1,43 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.resolveHttpAuthRuntimeConfig = exports.getHttpAuthExtensionConfiguration = void 0;
4
+ const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
5
+ let _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
6
+ let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
7
+ let _token = runtimeConfig.token;
8
+ return {
9
+ setHttpAuthScheme(httpAuthScheme) {
10
+ const index = _httpAuthSchemes.findIndex(scheme => scheme.schemeId === httpAuthScheme.schemeId);
11
+ if (index === -1) {
12
+ _httpAuthSchemes.push(httpAuthScheme);
13
+ }
14
+ else {
15
+ _httpAuthSchemes.splice(index, 1, httpAuthScheme);
16
+ }
17
+ },
18
+ httpAuthSchemes() {
19
+ return _httpAuthSchemes;
20
+ },
21
+ setHttpAuthSchemeProvider(httpAuthSchemeProvider) {
22
+ _httpAuthSchemeProvider = httpAuthSchemeProvider;
23
+ },
24
+ httpAuthSchemeProvider() {
25
+ return _httpAuthSchemeProvider;
26
+ },
27
+ setToken(token) {
28
+ _token = token;
29
+ },
30
+ token() {
31
+ return _token;
32
+ },
33
+ };
34
+ };
35
+ exports.getHttpAuthExtensionConfiguration = getHttpAuthExtensionConfiguration;
36
+ const resolveHttpAuthRuntimeConfig = (config) => {
37
+ return {
38
+ httpAuthSchemes: config.httpAuthSchemes(),
39
+ httpAuthSchemeProvider: config.httpAuthSchemeProvider(),
40
+ token: config.token(),
41
+ };
42
+ };
43
+ exports.resolveHttpAuthRuntimeConfig = resolveHttpAuthRuntimeConfig;
@@ -0,0 +1,49 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.resolveHttpAuthSchemeConfig = exports.defaultAirborneHttpAuthSchemeProvider = exports.defaultAirborneHttpAuthSchemeParametersProvider = void 0;
4
+ const core_1 = require("@smithy/core");
5
+ const util_middleware_1 = require("@smithy/util-middleware");
6
+ const defaultAirborneHttpAuthSchemeParametersProvider = async (config, context, input) => {
7
+ return {
8
+ operation: (0, util_middleware_1.getSmithyContext)(context).operation,
9
+ };
10
+ };
11
+ exports.defaultAirborneHttpAuthSchemeParametersProvider = defaultAirborneHttpAuthSchemeParametersProvider;
12
+ function createSmithyApiHttpBearerAuthHttpAuthOption(authParameters) {
13
+ return {
14
+ schemeId: "smithy.api#httpBearerAuth",
15
+ };
16
+ }
17
+ ;
18
+ function createSmithyApiNoAuthHttpAuthOption(authParameters) {
19
+ return {
20
+ schemeId: "smithy.api#noAuth",
21
+ };
22
+ }
23
+ ;
24
+ const defaultAirborneHttpAuthSchemeProvider = (authParameters) => {
25
+ const options = [];
26
+ switch (authParameters.operation) {
27
+ case "PostLogin":
28
+ {
29
+ options.push(createSmithyApiNoAuthHttpAuthOption(authParameters));
30
+ break;
31
+ }
32
+ ;
33
+ default:
34
+ {
35
+ options.push(createSmithyApiHttpBearerAuthHttpAuthOption(authParameters));
36
+ }
37
+ ;
38
+ }
39
+ ;
40
+ return options;
41
+ };
42
+ exports.defaultAirborneHttpAuthSchemeProvider = defaultAirborneHttpAuthSchemeProvider;
43
+ const resolveHttpAuthSchemeConfig = (config) => {
44
+ const token = (0, core_1.memoizeIdentityProvider)(config.token, core_1.isIdentityExpired, core_1.doesIdentityRequireRefresh);
45
+ return Object.assign(config, {
46
+ token,
47
+ });
48
+ };
49
+ exports.resolveHttpAuthSchemeConfig = resolveHttpAuthSchemeConfig;
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CreateApplicationCommand = exports.$Command = void 0;
4
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
5
+ const middleware_serde_1 = require("@smithy/middleware-serde");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ class CreateApplicationCommand extends smithy_client_1.Command.classBuilder()
9
+ .m(function (Command, cs, config, o) {
10
+ return [
11
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
12
+ ];
13
+ })
14
+ .s("Airborne", "CreateApplication", {})
15
+ .n("AirborneClient", "CreateApplicationCommand")
16
+ .f(void 0, void 0)
17
+ .ser(Aws_restJson1_1.se_CreateApplicationCommand)
18
+ .de(Aws_restJson1_1.de_CreateApplicationCommand)
19
+ .build() {
20
+ }
21
+ exports.CreateApplicationCommand = CreateApplicationCommand;
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CreateDimensionCommand = exports.$Command = void 0;
4
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
5
+ const middleware_serde_1 = require("@smithy/middleware-serde");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ class CreateDimensionCommand extends smithy_client_1.Command.classBuilder()
9
+ .m(function (Command, cs, config, o) {
10
+ return [
11
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
12
+ ];
13
+ })
14
+ .s("Airborne", "CreateDimension", {})
15
+ .n("AirborneClient", "CreateDimensionCommand")
16
+ .f(void 0, void 0)
17
+ .ser(Aws_restJson1_1.se_CreateDimensionCommand)
18
+ .de(Aws_restJson1_1.de_CreateDimensionCommand)
19
+ .build() {
20
+ }
21
+ exports.CreateDimensionCommand = CreateDimensionCommand;
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CreateFileCommand = exports.$Command = void 0;
4
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
5
+ const middleware_serde_1 = require("@smithy/middleware-serde");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ class CreateFileCommand extends smithy_client_1.Command.classBuilder()
9
+ .m(function (Command, cs, config, o) {
10
+ return [
11
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
12
+ ];
13
+ })
14
+ .s("Airborne", "CreateFile", {})
15
+ .n("AirborneClient", "CreateFileCommand")
16
+ .f(void 0, void 0)
17
+ .ser(Aws_restJson1_1.se_CreateFileCommand)
18
+ .de(Aws_restJson1_1.de_CreateFileCommand)
19
+ .build() {
20
+ }
21
+ exports.CreateFileCommand = CreateFileCommand;
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CreateOrganisationCommand = exports.$Command = void 0;
4
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
5
+ const middleware_serde_1 = require("@smithy/middleware-serde");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ class CreateOrganisationCommand extends smithy_client_1.Command.classBuilder()
9
+ .m(function (Command, cs, config, o) {
10
+ return [
11
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
12
+ ];
13
+ })
14
+ .s("Airborne", "CreateOrganisation", {})
15
+ .n("AirborneClient", "CreateOrganisationCommand")
16
+ .f(void 0, void 0)
17
+ .ser(Aws_restJson1_1.se_CreateOrganisationCommand)
18
+ .de(Aws_restJson1_1.de_CreateOrganisationCommand)
19
+ .build() {
20
+ }
21
+ exports.CreateOrganisationCommand = CreateOrganisationCommand;
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CreatePackageCommand = exports.$Command = void 0;
4
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
5
+ const middleware_serde_1 = require("@smithy/middleware-serde");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ class CreatePackageCommand extends smithy_client_1.Command.classBuilder()
9
+ .m(function (Command, cs, config, o) {
10
+ return [
11
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
12
+ ];
13
+ })
14
+ .s("Airborne", "CreatePackage", {})
15
+ .n("AirborneClient", "CreatePackageCommand")
16
+ .f(void 0, void 0)
17
+ .ser(Aws_restJson1_1.se_CreatePackageCommand)
18
+ .de(Aws_restJson1_1.de_CreatePackageCommand)
19
+ .build() {
20
+ }
21
+ exports.CreatePackageCommand = CreatePackageCommand;
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CreateReleaseCommand = exports.$Command = void 0;
4
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
5
+ const middleware_serde_1 = require("@smithy/middleware-serde");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ class CreateReleaseCommand extends smithy_client_1.Command.classBuilder()
9
+ .m(function (Command, cs, config, o) {
10
+ return [
11
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
12
+ ];
13
+ })
14
+ .s("Airborne", "CreateRelease", {})
15
+ .n("AirborneClient", "CreateReleaseCommand")
16
+ .f(void 0, void 0)
17
+ .ser(Aws_restJson1_1.se_CreateReleaseCommand)
18
+ .de(Aws_restJson1_1.de_CreateReleaseCommand)
19
+ .build() {
20
+ }
21
+ exports.CreateReleaseCommand = CreateReleaseCommand;
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.DeleteDimensionCommand = exports.$Command = void 0;
4
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
5
+ const middleware_serde_1 = require("@smithy/middleware-serde");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ class DeleteDimensionCommand extends smithy_client_1.Command.classBuilder()
9
+ .m(function (Command, cs, config, o) {
10
+ return [
11
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
12
+ ];
13
+ })
14
+ .s("Airborne", "DeleteDimension", {})
15
+ .n("AirborneClient", "DeleteDimensionCommand")
16
+ .f(void 0, void 0)
17
+ .ser(Aws_restJson1_1.se_DeleteDimensionCommand)
18
+ .de(Aws_restJson1_1.de_DeleteDimensionCommand)
19
+ .build() {
20
+ }
21
+ exports.DeleteDimensionCommand = DeleteDimensionCommand;
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.GetReleaseCommand = exports.$Command = void 0;
4
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
5
+ const middleware_serde_1 = require("@smithy/middleware-serde");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ class GetReleaseCommand extends smithy_client_1.Command.classBuilder()
9
+ .m(function (Command, cs, config, o) {
10
+ return [
11
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
12
+ ];
13
+ })
14
+ .s("Airborne", "GetRelease", {})
15
+ .n("AirborneClient", "GetReleaseCommand")
16
+ .f(void 0, void 0)
17
+ .ser(Aws_restJson1_1.se_GetReleaseCommand)
18
+ .de(Aws_restJson1_1.de_GetReleaseCommand)
19
+ .build() {
20
+ }
21
+ exports.GetReleaseCommand = GetReleaseCommand;
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.GetUserCommand = exports.$Command = void 0;
4
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
5
+ const middleware_serde_1 = require("@smithy/middleware-serde");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ class GetUserCommand extends smithy_client_1.Command.classBuilder()
9
+ .m(function (Command, cs, config, o) {
10
+ return [
11
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
12
+ ];
13
+ })
14
+ .s("Airborne", "GetUser", {})
15
+ .n("AirborneClient", "GetUserCommand")
16
+ .f(void 0, void 0)
17
+ .ser(Aws_restJson1_1.se_GetUserCommand)
18
+ .de(Aws_restJson1_1.de_GetUserCommand)
19
+ .build() {
20
+ }
21
+ exports.GetUserCommand = GetUserCommand;
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ListDimensionsCommand = exports.$Command = void 0;
4
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
5
+ const middleware_serde_1 = require("@smithy/middleware-serde");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ class ListDimensionsCommand extends smithy_client_1.Command.classBuilder()
9
+ .m(function (Command, cs, config, o) {
10
+ return [
11
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
12
+ ];
13
+ })
14
+ .s("Airborne", "ListDimensions", {})
15
+ .n("AirborneClient", "ListDimensionsCommand")
16
+ .f(void 0, void 0)
17
+ .ser(Aws_restJson1_1.se_ListDimensionsCommand)
18
+ .de(Aws_restJson1_1.de_ListDimensionsCommand)
19
+ .build() {
20
+ }
21
+ exports.ListDimensionsCommand = ListDimensionsCommand;
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ListFilesCommand = exports.$Command = void 0;
4
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
5
+ const middleware_serde_1 = require("@smithy/middleware-serde");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ class ListFilesCommand extends smithy_client_1.Command.classBuilder()
9
+ .m(function (Command, cs, config, o) {
10
+ return [
11
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
12
+ ];
13
+ })
14
+ .s("Airborne", "ListFiles", {})
15
+ .n("AirborneClient", "ListFilesCommand")
16
+ .f(void 0, void 0)
17
+ .ser(Aws_restJson1_1.se_ListFilesCommand)
18
+ .de(Aws_restJson1_1.de_ListFilesCommand)
19
+ .build() {
20
+ }
21
+ exports.ListFilesCommand = ListFilesCommand;
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ListOrganisationsCommand = exports.$Command = void 0;
4
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
5
+ const middleware_serde_1 = require("@smithy/middleware-serde");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ class ListOrganisationsCommand extends smithy_client_1.Command.classBuilder()
9
+ .m(function (Command, cs, config, o) {
10
+ return [
11
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
12
+ ];
13
+ })
14
+ .s("Airborne", "ListOrganisations", {})
15
+ .n("AirborneClient", "ListOrganisationsCommand")
16
+ .f(void 0, void 0)
17
+ .ser(Aws_restJson1_1.se_ListOrganisationsCommand)
18
+ .de(Aws_restJson1_1.de_ListOrganisationsCommand)
19
+ .build() {
20
+ }
21
+ exports.ListOrganisationsCommand = ListOrganisationsCommand;
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ListPackagesCommand = exports.$Command = void 0;
4
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
5
+ const middleware_serde_1 = require("@smithy/middleware-serde");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ class ListPackagesCommand extends smithy_client_1.Command.classBuilder()
9
+ .m(function (Command, cs, config, o) {
10
+ return [
11
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
12
+ ];
13
+ })
14
+ .s("Airborne", "ListPackages", {})
15
+ .n("AirborneClient", "ListPackagesCommand")
16
+ .f(void 0, void 0)
17
+ .ser(Aws_restJson1_1.se_ListPackagesCommand)
18
+ .de(Aws_restJson1_1.de_ListPackagesCommand)
19
+ .build() {
20
+ }
21
+ exports.ListPackagesCommand = ListPackagesCommand;
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ListReleasesCommand = exports.$Command = void 0;
4
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
5
+ const middleware_serde_1 = require("@smithy/middleware-serde");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ class ListReleasesCommand extends smithy_client_1.Command.classBuilder()
9
+ .m(function (Command, cs, config, o) {
10
+ return [
11
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
12
+ ];
13
+ })
14
+ .s("Airborne", "ListReleases", {})
15
+ .n("AirborneClient", "ListReleasesCommand")
16
+ .f(void 0, void 0)
17
+ .ser(Aws_restJson1_1.se_ListReleasesCommand)
18
+ .de(Aws_restJson1_1.de_ListReleasesCommand)
19
+ .build() {
20
+ }
21
+ exports.ListReleasesCommand = ListReleasesCommand;
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.PostLoginCommand = exports.$Command = void 0;
4
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
5
+ const middleware_serde_1 = require("@smithy/middleware-serde");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ class PostLoginCommand extends smithy_client_1.Command.classBuilder()
9
+ .m(function (Command, cs, config, o) {
10
+ return [
11
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
12
+ ];
13
+ })
14
+ .s("Airborne", "PostLogin", {})
15
+ .n("AirborneClient", "PostLoginCommand")
16
+ .f(void 0, void 0)
17
+ .ser(Aws_restJson1_1.se_PostLoginCommand)
18
+ .de(Aws_restJson1_1.de_PostLoginCommand)
19
+ .build() {
20
+ }
21
+ exports.PostLoginCommand = PostLoginCommand;
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.RequestOrganisationCommand = exports.$Command = void 0;
4
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
5
+ const middleware_serde_1 = require("@smithy/middleware-serde");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ class RequestOrganisationCommand extends smithy_client_1.Command.classBuilder()
9
+ .m(function (Command, cs, config, o) {
10
+ return [
11
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
12
+ ];
13
+ })
14
+ .s("Airborne", "RequestOrganisation", {})
15
+ .n("AirborneClient", "RequestOrganisationCommand")
16
+ .f(void 0, void 0)
17
+ .ser(Aws_restJson1_1.se_RequestOrganisationCommand)
18
+ .de(Aws_restJson1_1.de_RequestOrganisationCommand)
19
+ .build() {
20
+ }
21
+ exports.RequestOrganisationCommand = RequestOrganisationCommand;
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ServeReleaseCommand = exports.$Command = void 0;
4
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
5
+ const middleware_serde_1 = require("@smithy/middleware-serde");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ class ServeReleaseCommand extends smithy_client_1.Command.classBuilder()
9
+ .m(function (Command, cs, config, o) {
10
+ return [
11
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
12
+ ];
13
+ })
14
+ .s("Airborne", "ServeRelease", {})
15
+ .n("AirborneClient", "ServeReleaseCommand")
16
+ .f(void 0, void 0)
17
+ .ser(Aws_restJson1_1.se_ServeReleaseCommand)
18
+ .de(Aws_restJson1_1.de_ServeReleaseCommand)
19
+ .build() {
20
+ }
21
+ exports.ServeReleaseCommand = ServeReleaseCommand;
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ServeReleaseV2Command = exports.$Command = void 0;
4
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
5
+ const middleware_serde_1 = require("@smithy/middleware-serde");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ class ServeReleaseV2Command extends smithy_client_1.Command.classBuilder()
9
+ .m(function (Command, cs, config, o) {
10
+ return [
11
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
12
+ ];
13
+ })
14
+ .s("Airborne", "ServeReleaseV2", {})
15
+ .n("AirborneClient", "ServeReleaseV2Command")
16
+ .f(void 0, void 0)
17
+ .ser(Aws_restJson1_1.se_ServeReleaseV2Command)
18
+ .de(Aws_restJson1_1.de_ServeReleaseV2Command)
19
+ .build() {
20
+ }
21
+ exports.ServeReleaseV2Command = ServeReleaseV2Command;
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.UpdateDimensionCommand = exports.$Command = void 0;
4
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
5
+ const middleware_serde_1 = require("@smithy/middleware-serde");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ class UpdateDimensionCommand extends smithy_client_1.Command.classBuilder()
9
+ .m(function (Command, cs, config, o) {
10
+ return [
11
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
12
+ ];
13
+ })
14
+ .s("Airborne", "UpdateDimension", {})
15
+ .n("AirborneClient", "UpdateDimensionCommand")
16
+ .f(void 0, void 0)
17
+ .ser(Aws_restJson1_1.se_UpdateDimensionCommand)
18
+ .de(Aws_restJson1_1.de_UpdateDimensionCommand)
19
+ .build() {
20
+ }
21
+ exports.UpdateDimensionCommand = UpdateDimensionCommand;
@@ -0,0 +1,22 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.UploadFileCommand = exports.$Command = void 0;
4
+ const models_0_1 = require("../models/models_0");
5
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
6
+ const middleware_serde_1 = require("@smithy/middleware-serde");
7
+ const smithy_client_1 = require("@smithy/smithy-client");
8
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
9
+ class UploadFileCommand extends smithy_client_1.Command.classBuilder()
10
+ .m(function (Command, cs, config, o) {
11
+ return [
12
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
13
+ ];
14
+ })
15
+ .s("Airborne", "UploadFile", {})
16
+ .n("AirborneClient", "UploadFileCommand")
17
+ .f(models_0_1.UploadFileRequestFilterSensitiveLog, void 0)
18
+ .ser(Aws_restJson1_1.se_UploadFileCommand)
19
+ .de(Aws_restJson1_1.de_UploadFileCommand)
20
+ .build() {
21
+ }
22
+ exports.UploadFileCommand = UploadFileCommand;