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.
- package/dist-cjs/Airborne.js +51 -0
- package/dist-cjs/AirborneClient.js +47 -0
- package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +49 -0
- package/dist-cjs/commands/CreateApplicationCommand.js +21 -0
- package/dist-cjs/commands/CreateDimensionCommand.js +21 -0
- package/dist-cjs/commands/CreateFileCommand.js +21 -0
- package/dist-cjs/commands/CreateOrganisationCommand.js +21 -0
- package/dist-cjs/commands/CreatePackageCommand.js +21 -0
- package/dist-cjs/commands/CreateReleaseCommand.js +21 -0
- package/dist-cjs/commands/DeleteDimensionCommand.js +21 -0
- package/dist-cjs/commands/GetReleaseCommand.js +21 -0
- package/dist-cjs/commands/GetUserCommand.js +21 -0
- package/dist-cjs/commands/ListDimensionsCommand.js +21 -0
- package/dist-cjs/commands/ListFilesCommand.js +21 -0
- package/dist-cjs/commands/ListOrganisationsCommand.js +21 -0
- package/dist-cjs/commands/ListPackagesCommand.js +21 -0
- package/dist-cjs/commands/ListReleasesCommand.js +21 -0
- package/dist-cjs/commands/PostLoginCommand.js +21 -0
- package/dist-cjs/commands/RequestOrganisationCommand.js +21 -0
- package/dist-cjs/commands/ServeReleaseCommand.js +21 -0
- package/dist-cjs/commands/ServeReleaseV2Command.js +21 -0
- package/dist-cjs/commands/UpdateDimensionCommand.js +21 -0
- package/dist-cjs/commands/UploadFileCommand.js +22 -0
- package/dist-cjs/commands/index.js +23 -0
- package/dist-cjs/extensionConfiguration.js +2 -0
- package/dist-cjs/index.js +10 -0
- package/dist-cjs/models/AirborneServiceException.js +12 -0
- package/dist-cjs/models/index.js +4 -0
- package/dist-cjs/models/models_0.js +77 -0
- package/dist-cjs/protocols/Aws_restJson1.js +953 -0
- package/dist-cjs/runtimeConfig.browser.js +32 -0
- package/dist-cjs/runtimeConfig.js +38 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +33 -0
- package/dist-cjs/runtimeExtensions.js +12 -0
- package/dist-es/Airborne.js +47 -0
- package/dist-es/AirborneClient.js +43 -0
- package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist-es/auth/httpAuthSchemeProvider.js +43 -0
- package/dist-es/commands/CreateApplicationCommand.js +17 -0
- package/dist-es/commands/CreateDimensionCommand.js +17 -0
- package/dist-es/commands/CreateFileCommand.js +17 -0
- package/dist-es/commands/CreateOrganisationCommand.js +17 -0
- package/dist-es/commands/CreatePackageCommand.js +17 -0
- package/dist-es/commands/CreateReleaseCommand.js +17 -0
- package/dist-es/commands/DeleteDimensionCommand.js +17 -0
- package/dist-es/commands/GetReleaseCommand.js +17 -0
- package/dist-es/commands/GetUserCommand.js +17 -0
- package/dist-es/commands/ListDimensionsCommand.js +17 -0
- package/dist-es/commands/ListFilesCommand.js +17 -0
- package/dist-es/commands/ListOrganisationsCommand.js +17 -0
- package/dist-es/commands/ListPackagesCommand.js +17 -0
- package/dist-es/commands/ListReleasesCommand.js +17 -0
- package/dist-es/commands/PostLoginCommand.js +17 -0
- package/dist-es/commands/RequestOrganisationCommand.js +17 -0
- package/dist-es/commands/ServeReleaseCommand.js +17 -0
- package/dist-es/commands/ServeReleaseV2Command.js +17 -0
- package/dist-es/commands/UpdateDimensionCommand.js +17 -0
- package/dist-es/commands/UploadFileCommand.js +18 -0
- package/dist-es/commands/index.js +20 -0
- package/dist-es/extensionConfiguration.js +1 -0
- package/dist-es/index.js +5 -0
- package/dist-es/models/AirborneServiceException.js +8 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +68 -0
- package/dist-es/protocols/Aws_restJson1.js +910 -0
- package/dist-es/runtimeConfig.browser.js +27 -0
- package/dist-es/runtimeConfig.js +33 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +29 -0
- package/dist-es/runtimeExtensions.js +8 -0
- package/dist-types/Airborne.d.ts +152 -0
- package/dist-types/AirborneClient.d.ts +182 -0
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +67 -0
- package/dist-types/commands/CreateApplicationCommand.d.ts +91 -0
- package/dist-types/commands/CreateDimensionCommand.d.ts +95 -0
- package/dist-types/commands/CreateFileCommand.d.ts +100 -0
- package/dist-types/commands/CreateOrganisationCommand.d.ts +98 -0
- package/dist-types/commands/CreatePackageCommand.d.ts +97 -0
- package/dist-types/commands/CreateReleaseCommand.d.ts +152 -0
- package/dist-types/commands/DeleteDimensionCommand.d.ts +86 -0
- package/dist-types/commands/GetReleaseCommand.d.ts +139 -0
- package/dist-types/commands/GetUserCommand.d.ts +108 -0
- package/dist-types/commands/ListDimensionsCommand.d.ts +100 -0
- package/dist-types/commands/ListFilesCommand.d.ts +108 -0
- package/dist-types/commands/ListOrganisationsCommand.d.ts +100 -0
- package/dist-types/commands/ListPackagesCommand.d.ts +102 -0
- package/dist-types/commands/ListReleasesCommand.d.ts +143 -0
- package/dist-types/commands/PostLoginCommand.d.ts +111 -0
- package/dist-types/commands/RequestOrganisationCommand.d.ts +92 -0
- package/dist-types/commands/ServeReleaseCommand.d.ts +103 -0
- package/dist-types/commands/ServeReleaseV2Command.d.ts +103 -0
- package/dist-types/commands/UpdateDimensionCommand.d.ts +95 -0
- package/dist-types/commands/UploadFileCommand.d.ts +101 -0
- package/dist-types/commands/index.d.ts +20 -0
- package/dist-types/extensionConfiguration.d.ts +8 -0
- package/dist-types/index.d.ts +12 -0
- package/dist-types/models/AirborneServiceException.d.ts +14 -0
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +961 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +182 -0
- package/dist-types/runtimeConfig.browser.d.ts +44 -0
- package/dist-types/runtimeConfig.d.ts +44 -0
- package/dist-types/runtimeConfig.native.d.ts +43 -0
- package/dist-types/runtimeConfig.shared.d.ts +27 -0
- package/dist-types/runtimeExtensions.d.ts +17 -0
- package/package.json +81 -0
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const tslib_1 = require("tslib");
|
|
4
|
+
tslib_1.__exportStar(require("./CreateApplicationCommand"), exports);
|
|
5
|
+
tslib_1.__exportStar(require("./CreateDimensionCommand"), exports);
|
|
6
|
+
tslib_1.__exportStar(require("./CreateFileCommand"), exports);
|
|
7
|
+
tslib_1.__exportStar(require("./CreateOrganisationCommand"), exports);
|
|
8
|
+
tslib_1.__exportStar(require("./CreatePackageCommand"), exports);
|
|
9
|
+
tslib_1.__exportStar(require("./CreateReleaseCommand"), exports);
|
|
10
|
+
tslib_1.__exportStar(require("./DeleteDimensionCommand"), exports);
|
|
11
|
+
tslib_1.__exportStar(require("./GetReleaseCommand"), exports);
|
|
12
|
+
tslib_1.__exportStar(require("./GetUserCommand"), exports);
|
|
13
|
+
tslib_1.__exportStar(require("./ListDimensionsCommand"), exports);
|
|
14
|
+
tslib_1.__exportStar(require("./ListFilesCommand"), exports);
|
|
15
|
+
tslib_1.__exportStar(require("./ListOrganisationsCommand"), exports);
|
|
16
|
+
tslib_1.__exportStar(require("./ListPackagesCommand"), exports);
|
|
17
|
+
tslib_1.__exportStar(require("./ListReleasesCommand"), exports);
|
|
18
|
+
tslib_1.__exportStar(require("./PostLoginCommand"), exports);
|
|
19
|
+
tslib_1.__exportStar(require("./RequestOrganisationCommand"), exports);
|
|
20
|
+
tslib_1.__exportStar(require("./ServeReleaseCommand"), exports);
|
|
21
|
+
tslib_1.__exportStar(require("./ServeReleaseV2Command"), exports);
|
|
22
|
+
tslib_1.__exportStar(require("./UpdateDimensionCommand"), exports);
|
|
23
|
+
tslib_1.__exportStar(require("./UploadFileCommand"), exports);
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.AirborneServiceException = void 0;
|
|
4
|
+
const tslib_1 = require("tslib");
|
|
5
|
+
tslib_1.__exportStar(require("./AirborneClient"), exports);
|
|
6
|
+
tslib_1.__exportStar(require("./Airborne"), exports);
|
|
7
|
+
tslib_1.__exportStar(require("./commands"), exports);
|
|
8
|
+
tslib_1.__exportStar(require("./models"), exports);
|
|
9
|
+
var AirborneServiceException_1 = require("./models/AirborneServiceException");
|
|
10
|
+
Object.defineProperty(exports, "AirborneServiceException", { enumerable: true, get: function () { return AirborneServiceException_1.AirborneServiceException; } });
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.AirborneServiceException = exports.__ServiceException = void 0;
|
|
4
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
5
|
+
Object.defineProperty(exports, "__ServiceException", { enumerable: true, get: function () { return smithy_client_1.ServiceException; } });
|
|
6
|
+
class AirborneServiceException extends smithy_client_1.ServiceException {
|
|
7
|
+
constructor(options) {
|
|
8
|
+
super(options);
|
|
9
|
+
Object.setPrototypeOf(this, AirborneServiceException.prototype);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
exports.AirborneServiceException = AirborneServiceException;
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.UploadFileRequestFilterSensitiveLog = exports.DimensionType = exports.Unauthorized = exports.NotFoundError = exports.InternalServerError = exports.ForbiddenError = exports.BadRequestError = void 0;
|
|
4
|
+
const AirborneServiceException_1 = require("./AirborneServiceException");
|
|
5
|
+
class BadRequestError extends AirborneServiceException_1.AirborneServiceException {
|
|
6
|
+
name = "BadRequestError";
|
|
7
|
+
$fault = "client";
|
|
8
|
+
constructor(opts) {
|
|
9
|
+
super({
|
|
10
|
+
name: "BadRequestError",
|
|
11
|
+
$fault: "client",
|
|
12
|
+
...opts
|
|
13
|
+
});
|
|
14
|
+
Object.setPrototypeOf(this, BadRequestError.prototype);
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
exports.BadRequestError = BadRequestError;
|
|
18
|
+
class ForbiddenError extends AirborneServiceException_1.AirborneServiceException {
|
|
19
|
+
name = "ForbiddenError";
|
|
20
|
+
$fault = "client";
|
|
21
|
+
constructor(opts) {
|
|
22
|
+
super({
|
|
23
|
+
name: "ForbiddenError",
|
|
24
|
+
$fault: "client",
|
|
25
|
+
...opts
|
|
26
|
+
});
|
|
27
|
+
Object.setPrototypeOf(this, ForbiddenError.prototype);
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
exports.ForbiddenError = ForbiddenError;
|
|
31
|
+
class InternalServerError extends AirborneServiceException_1.AirborneServiceException {
|
|
32
|
+
name = "InternalServerError";
|
|
33
|
+
$fault = "server";
|
|
34
|
+
constructor(opts) {
|
|
35
|
+
super({
|
|
36
|
+
name: "InternalServerError",
|
|
37
|
+
$fault: "server",
|
|
38
|
+
...opts
|
|
39
|
+
});
|
|
40
|
+
Object.setPrototypeOf(this, InternalServerError.prototype);
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
exports.InternalServerError = InternalServerError;
|
|
44
|
+
class NotFoundError extends AirborneServiceException_1.AirborneServiceException {
|
|
45
|
+
name = "NotFoundError";
|
|
46
|
+
$fault = "client";
|
|
47
|
+
constructor(opts) {
|
|
48
|
+
super({
|
|
49
|
+
name: "NotFoundError",
|
|
50
|
+
$fault: "client",
|
|
51
|
+
...opts
|
|
52
|
+
});
|
|
53
|
+
Object.setPrototypeOf(this, NotFoundError.prototype);
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
exports.NotFoundError = NotFoundError;
|
|
57
|
+
class Unauthorized extends AirborneServiceException_1.AirborneServiceException {
|
|
58
|
+
name = "Unauthorized";
|
|
59
|
+
$fault = "client";
|
|
60
|
+
constructor(opts) {
|
|
61
|
+
super({
|
|
62
|
+
name: "Unauthorized",
|
|
63
|
+
$fault: "client",
|
|
64
|
+
...opts
|
|
65
|
+
});
|
|
66
|
+
Object.setPrototypeOf(this, Unauthorized.prototype);
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
exports.Unauthorized = Unauthorized;
|
|
70
|
+
exports.DimensionType = {
|
|
71
|
+
COHORT: "cohort",
|
|
72
|
+
STANDARD: "standard",
|
|
73
|
+
};
|
|
74
|
+
const UploadFileRequestFilterSensitiveLog = (obj) => ({
|
|
75
|
+
...obj,
|
|
76
|
+
});
|
|
77
|
+
exports.UploadFileRequestFilterSensitiveLog = UploadFileRequestFilterSensitiveLog;
|