@aws-sdk/client-qapps 3.721.0 → 3.723.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/QAppsClient.js +1 -0
- package/dist-cjs/models/models_0.js +40 -26
- package/dist-es/QAppsClient.js +1 -0
- package/dist-es/models/models_0.js +36 -22
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -7
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +20 -8
- package/package.json +43 -43
package/dist-cjs/QAppsClient.js
CHANGED
|
@@ -17,6 +17,7 @@ const EndpointParameters_1 = require("./endpoint/EndpointParameters");
|
|
|
17
17
|
const runtimeConfig_1 = require("./runtimeConfig");
|
|
18
18
|
const runtimeExtensions_1 = require("./runtimeExtensions");
|
|
19
19
|
class QAppsClient extends smithy_client_1.Client {
|
|
20
|
+
config;
|
|
20
21
|
constructor(...[configuration]) {
|
|
21
22
|
const _config_0 = (0, runtimeConfig_1.getRuntimeConfig)(configuration || {});
|
|
22
23
|
const _config_1 = (0, EndpointParameters_1.resolveClientEndpointParameters)(_config_0);
|
|
@@ -3,14 +3,14 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.CardInput = exports.Card = exports.PredictQAppInputOptions = exports.LibraryItemStatus = exports.UserType = exports.DocumentScope = exports.Sender = exports.ContentTooLargeException = exports.SubmissionMutationKind = exports.ExecutionStatus = exports.ValidationException = exports.UnauthorizedException = exports.ThrottlingException = exports.ServiceQuotaExceededException = exports.ResourceNotFoundException = exports.InternalServerException = exports.ConflictException = exports.AppStatus = exports.AppRequiredCapability = exports.CardOutputSource = exports.DocumentAttributeValue = exports.PluginType = exports.InputCardComputeMode = exports.CardType = exports.Action = exports.AccessDeniedException = void 0;
|
|
4
4
|
const QAppsServiceException_1 = require("./QAppsServiceException");
|
|
5
5
|
class AccessDeniedException extends QAppsServiceException_1.QAppsServiceException {
|
|
6
|
+
name = "AccessDeniedException";
|
|
7
|
+
$fault = "client";
|
|
6
8
|
constructor(opts) {
|
|
7
9
|
super({
|
|
8
10
|
name: "AccessDeniedException",
|
|
9
11
|
$fault: "client",
|
|
10
12
|
...opts,
|
|
11
13
|
});
|
|
12
|
-
this.name = "AccessDeniedException";
|
|
13
|
-
this.$fault = "client";
|
|
14
14
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
15
15
|
}
|
|
16
16
|
}
|
|
@@ -61,7 +61,7 @@ var DocumentAttributeValue;
|
|
|
61
61
|
return visitor.dateValue(value.dateValue);
|
|
62
62
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
63
63
|
};
|
|
64
|
-
})(DocumentAttributeValue
|
|
64
|
+
})(DocumentAttributeValue || (exports.DocumentAttributeValue = DocumentAttributeValue = {}));
|
|
65
65
|
exports.CardOutputSource = {
|
|
66
66
|
APPROVED_SOURCES: "approved-sources",
|
|
67
67
|
LLM: "llm",
|
|
@@ -78,14 +78,16 @@ exports.AppStatus = {
|
|
|
78
78
|
PUBLISHED: "PUBLISHED",
|
|
79
79
|
};
|
|
80
80
|
class ConflictException extends QAppsServiceException_1.QAppsServiceException {
|
|
81
|
+
name = "ConflictException";
|
|
82
|
+
$fault = "client";
|
|
83
|
+
resourceId;
|
|
84
|
+
resourceType;
|
|
81
85
|
constructor(opts) {
|
|
82
86
|
super({
|
|
83
87
|
name: "ConflictException",
|
|
84
88
|
$fault: "client",
|
|
85
89
|
...opts,
|
|
86
90
|
});
|
|
87
|
-
this.name = "ConflictException";
|
|
88
|
-
this.$fault = "client";
|
|
89
91
|
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
90
92
|
this.resourceId = opts.resourceId;
|
|
91
93
|
this.resourceType = opts.resourceType;
|
|
@@ -93,29 +95,32 @@ class ConflictException extends QAppsServiceException_1.QAppsServiceException {
|
|
|
93
95
|
}
|
|
94
96
|
exports.ConflictException = ConflictException;
|
|
95
97
|
class InternalServerException extends QAppsServiceException_1.QAppsServiceException {
|
|
98
|
+
name = "InternalServerException";
|
|
99
|
+
$fault = "server";
|
|
100
|
+
$retryable = {};
|
|
101
|
+
retryAfterSeconds;
|
|
96
102
|
constructor(opts) {
|
|
97
103
|
super({
|
|
98
104
|
name: "InternalServerException",
|
|
99
105
|
$fault: "server",
|
|
100
106
|
...opts,
|
|
101
107
|
});
|
|
102
|
-
this.name = "InternalServerException";
|
|
103
|
-
this.$fault = "server";
|
|
104
|
-
this.$retryable = {};
|
|
105
108
|
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
106
109
|
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
107
110
|
}
|
|
108
111
|
}
|
|
109
112
|
exports.InternalServerException = InternalServerException;
|
|
110
113
|
class ResourceNotFoundException extends QAppsServiceException_1.QAppsServiceException {
|
|
114
|
+
name = "ResourceNotFoundException";
|
|
115
|
+
$fault = "client";
|
|
116
|
+
resourceId;
|
|
117
|
+
resourceType;
|
|
111
118
|
constructor(opts) {
|
|
112
119
|
super({
|
|
113
120
|
name: "ResourceNotFoundException",
|
|
114
121
|
$fault: "client",
|
|
115
122
|
...opts,
|
|
116
123
|
});
|
|
117
|
-
this.name = "ResourceNotFoundException";
|
|
118
|
-
this.$fault = "client";
|
|
119
124
|
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
120
125
|
this.resourceId = opts.resourceId;
|
|
121
126
|
this.resourceType = opts.resourceType;
|
|
@@ -123,14 +128,18 @@ class ResourceNotFoundException extends QAppsServiceException_1.QAppsServiceExce
|
|
|
123
128
|
}
|
|
124
129
|
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
125
130
|
class ServiceQuotaExceededException extends QAppsServiceException_1.QAppsServiceException {
|
|
131
|
+
name = "ServiceQuotaExceededException";
|
|
132
|
+
$fault = "client";
|
|
133
|
+
resourceId;
|
|
134
|
+
resourceType;
|
|
135
|
+
serviceCode;
|
|
136
|
+
quotaCode;
|
|
126
137
|
constructor(opts) {
|
|
127
138
|
super({
|
|
128
139
|
name: "ServiceQuotaExceededException",
|
|
129
140
|
$fault: "client",
|
|
130
141
|
...opts,
|
|
131
142
|
});
|
|
132
|
-
this.name = "ServiceQuotaExceededException";
|
|
133
|
-
this.$fault = "client";
|
|
134
143
|
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
135
144
|
this.resourceId = opts.resourceId;
|
|
136
145
|
this.resourceType = opts.resourceType;
|
|
@@ -140,17 +149,20 @@ class ServiceQuotaExceededException extends QAppsServiceException_1.QAppsService
|
|
|
140
149
|
}
|
|
141
150
|
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
142
151
|
class ThrottlingException extends QAppsServiceException_1.QAppsServiceException {
|
|
152
|
+
name = "ThrottlingException";
|
|
153
|
+
$fault = "client";
|
|
154
|
+
$retryable = {
|
|
155
|
+
throttling: true,
|
|
156
|
+
};
|
|
157
|
+
serviceCode;
|
|
158
|
+
quotaCode;
|
|
159
|
+
retryAfterSeconds;
|
|
143
160
|
constructor(opts) {
|
|
144
161
|
super({
|
|
145
162
|
name: "ThrottlingException",
|
|
146
163
|
$fault: "client",
|
|
147
164
|
...opts,
|
|
148
165
|
});
|
|
149
|
-
this.name = "ThrottlingException";
|
|
150
|
-
this.$fault = "client";
|
|
151
|
-
this.$retryable = {
|
|
152
|
-
throttling: true,
|
|
153
|
-
};
|
|
154
166
|
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
155
167
|
this.serviceCode = opts.serviceCode;
|
|
156
168
|
this.quotaCode = opts.quotaCode;
|
|
@@ -159,27 +171,27 @@ class ThrottlingException extends QAppsServiceException_1.QAppsServiceException
|
|
|
159
171
|
}
|
|
160
172
|
exports.ThrottlingException = ThrottlingException;
|
|
161
173
|
class UnauthorizedException extends QAppsServiceException_1.QAppsServiceException {
|
|
174
|
+
name = "UnauthorizedException";
|
|
175
|
+
$fault = "client";
|
|
162
176
|
constructor(opts) {
|
|
163
177
|
super({
|
|
164
178
|
name: "UnauthorizedException",
|
|
165
179
|
$fault: "client",
|
|
166
180
|
...opts,
|
|
167
181
|
});
|
|
168
|
-
this.name = "UnauthorizedException";
|
|
169
|
-
this.$fault = "client";
|
|
170
182
|
Object.setPrototypeOf(this, UnauthorizedException.prototype);
|
|
171
183
|
}
|
|
172
184
|
}
|
|
173
185
|
exports.UnauthorizedException = UnauthorizedException;
|
|
174
186
|
class ValidationException extends QAppsServiceException_1.QAppsServiceException {
|
|
187
|
+
name = "ValidationException";
|
|
188
|
+
$fault = "client";
|
|
175
189
|
constructor(opts) {
|
|
176
190
|
super({
|
|
177
191
|
name: "ValidationException",
|
|
178
192
|
$fault: "client",
|
|
179
193
|
...opts,
|
|
180
194
|
});
|
|
181
|
-
this.name = "ValidationException";
|
|
182
|
-
this.$fault = "client";
|
|
183
195
|
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
184
196
|
}
|
|
185
197
|
}
|
|
@@ -196,14 +208,16 @@ exports.SubmissionMutationKind = {
|
|
|
196
208
|
edit: "edit",
|
|
197
209
|
};
|
|
198
210
|
class ContentTooLargeException extends QAppsServiceException_1.QAppsServiceException {
|
|
211
|
+
name = "ContentTooLargeException";
|
|
212
|
+
$fault = "client";
|
|
213
|
+
resourceId;
|
|
214
|
+
resourceType;
|
|
199
215
|
constructor(opts) {
|
|
200
216
|
super({
|
|
201
217
|
name: "ContentTooLargeException",
|
|
202
218
|
$fault: "client",
|
|
203
219
|
...opts,
|
|
204
220
|
});
|
|
205
|
-
this.name = "ContentTooLargeException";
|
|
206
|
-
this.$fault = "client";
|
|
207
221
|
Object.setPrototypeOf(this, ContentTooLargeException.prototype);
|
|
208
222
|
this.resourceId = opts.resourceId;
|
|
209
223
|
this.resourceType = opts.resourceType;
|
|
@@ -235,7 +249,7 @@ var PredictQAppInputOptions;
|
|
|
235
249
|
return visitor.problemStatement(value.problemStatement);
|
|
236
250
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
237
251
|
};
|
|
238
|
-
})(PredictQAppInputOptions
|
|
252
|
+
})(PredictQAppInputOptions || (exports.PredictQAppInputOptions = PredictQAppInputOptions = {}));
|
|
239
253
|
var Card;
|
|
240
254
|
(function (Card) {
|
|
241
255
|
Card.visit = (value, visitor) => {
|
|
@@ -251,7 +265,7 @@ var Card;
|
|
|
251
265
|
return visitor.formInput(value.formInput);
|
|
252
266
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
253
267
|
};
|
|
254
|
-
})(Card
|
|
268
|
+
})(Card || (exports.Card = Card = {}));
|
|
255
269
|
var CardInput;
|
|
256
270
|
(function (CardInput) {
|
|
257
271
|
CardInput.visit = (value, visitor) => {
|
|
@@ -267,4 +281,4 @@ var CardInput;
|
|
|
267
281
|
return visitor.formInput(value.formInput);
|
|
268
282
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
269
283
|
};
|
|
270
|
-
})(CardInput
|
|
284
|
+
})(CardInput || (exports.CardInput = CardInput = {}));
|
package/dist-es/QAppsClient.js
CHANGED
|
@@ -14,6 +14,7 @@ import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
|
|
|
14
14
|
import { resolveRuntimeExtensions } from "./runtimeExtensions";
|
|
15
15
|
export { __Client };
|
|
16
16
|
export class QAppsClient extends __Client {
|
|
17
|
+
config;
|
|
17
18
|
constructor(...[configuration]) {
|
|
18
19
|
const _config_0 = __getRuntimeConfig(configuration || {});
|
|
19
20
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { QAppsServiceException as __BaseException } from "./QAppsServiceException";
|
|
2
2
|
export class AccessDeniedException extends __BaseException {
|
|
3
|
+
name = "AccessDeniedException";
|
|
4
|
+
$fault = "client";
|
|
3
5
|
constructor(opts) {
|
|
4
6
|
super({
|
|
5
7
|
name: "AccessDeniedException",
|
|
6
8
|
$fault: "client",
|
|
7
9
|
...opts,
|
|
8
10
|
});
|
|
9
|
-
this.name = "AccessDeniedException";
|
|
10
|
-
this.$fault = "client";
|
|
11
11
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
12
12
|
}
|
|
13
13
|
}
|
|
@@ -74,56 +74,65 @@ export const AppStatus = {
|
|
|
74
74
|
PUBLISHED: "PUBLISHED",
|
|
75
75
|
};
|
|
76
76
|
export class ConflictException extends __BaseException {
|
|
77
|
+
name = "ConflictException";
|
|
78
|
+
$fault = "client";
|
|
79
|
+
resourceId;
|
|
80
|
+
resourceType;
|
|
77
81
|
constructor(opts) {
|
|
78
82
|
super({
|
|
79
83
|
name: "ConflictException",
|
|
80
84
|
$fault: "client",
|
|
81
85
|
...opts,
|
|
82
86
|
});
|
|
83
|
-
this.name = "ConflictException";
|
|
84
|
-
this.$fault = "client";
|
|
85
87
|
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
86
88
|
this.resourceId = opts.resourceId;
|
|
87
89
|
this.resourceType = opts.resourceType;
|
|
88
90
|
}
|
|
89
91
|
}
|
|
90
92
|
export class InternalServerException extends __BaseException {
|
|
93
|
+
name = "InternalServerException";
|
|
94
|
+
$fault = "server";
|
|
95
|
+
$retryable = {};
|
|
96
|
+
retryAfterSeconds;
|
|
91
97
|
constructor(opts) {
|
|
92
98
|
super({
|
|
93
99
|
name: "InternalServerException",
|
|
94
100
|
$fault: "server",
|
|
95
101
|
...opts,
|
|
96
102
|
});
|
|
97
|
-
this.name = "InternalServerException";
|
|
98
|
-
this.$fault = "server";
|
|
99
|
-
this.$retryable = {};
|
|
100
103
|
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
101
104
|
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
102
105
|
}
|
|
103
106
|
}
|
|
104
107
|
export class ResourceNotFoundException extends __BaseException {
|
|
108
|
+
name = "ResourceNotFoundException";
|
|
109
|
+
$fault = "client";
|
|
110
|
+
resourceId;
|
|
111
|
+
resourceType;
|
|
105
112
|
constructor(opts) {
|
|
106
113
|
super({
|
|
107
114
|
name: "ResourceNotFoundException",
|
|
108
115
|
$fault: "client",
|
|
109
116
|
...opts,
|
|
110
117
|
});
|
|
111
|
-
this.name = "ResourceNotFoundException";
|
|
112
|
-
this.$fault = "client";
|
|
113
118
|
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
114
119
|
this.resourceId = opts.resourceId;
|
|
115
120
|
this.resourceType = opts.resourceType;
|
|
116
121
|
}
|
|
117
122
|
}
|
|
118
123
|
export class ServiceQuotaExceededException extends __BaseException {
|
|
124
|
+
name = "ServiceQuotaExceededException";
|
|
125
|
+
$fault = "client";
|
|
126
|
+
resourceId;
|
|
127
|
+
resourceType;
|
|
128
|
+
serviceCode;
|
|
129
|
+
quotaCode;
|
|
119
130
|
constructor(opts) {
|
|
120
131
|
super({
|
|
121
132
|
name: "ServiceQuotaExceededException",
|
|
122
133
|
$fault: "client",
|
|
123
134
|
...opts,
|
|
124
135
|
});
|
|
125
|
-
this.name = "ServiceQuotaExceededException";
|
|
126
|
-
this.$fault = "client";
|
|
127
136
|
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
128
137
|
this.resourceId = opts.resourceId;
|
|
129
138
|
this.resourceType = opts.resourceType;
|
|
@@ -132,17 +141,20 @@ export class ServiceQuotaExceededException extends __BaseException {
|
|
|
132
141
|
}
|
|
133
142
|
}
|
|
134
143
|
export class ThrottlingException extends __BaseException {
|
|
144
|
+
name = "ThrottlingException";
|
|
145
|
+
$fault = "client";
|
|
146
|
+
$retryable = {
|
|
147
|
+
throttling: true,
|
|
148
|
+
};
|
|
149
|
+
serviceCode;
|
|
150
|
+
quotaCode;
|
|
151
|
+
retryAfterSeconds;
|
|
135
152
|
constructor(opts) {
|
|
136
153
|
super({
|
|
137
154
|
name: "ThrottlingException",
|
|
138
155
|
$fault: "client",
|
|
139
156
|
...opts,
|
|
140
157
|
});
|
|
141
|
-
this.name = "ThrottlingException";
|
|
142
|
-
this.$fault = "client";
|
|
143
|
-
this.$retryable = {
|
|
144
|
-
throttling: true,
|
|
145
|
-
};
|
|
146
158
|
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
147
159
|
this.serviceCode = opts.serviceCode;
|
|
148
160
|
this.quotaCode = opts.quotaCode;
|
|
@@ -150,26 +162,26 @@ export class ThrottlingException extends __BaseException {
|
|
|
150
162
|
}
|
|
151
163
|
}
|
|
152
164
|
export class UnauthorizedException extends __BaseException {
|
|
165
|
+
name = "UnauthorizedException";
|
|
166
|
+
$fault = "client";
|
|
153
167
|
constructor(opts) {
|
|
154
168
|
super({
|
|
155
169
|
name: "UnauthorizedException",
|
|
156
170
|
$fault: "client",
|
|
157
171
|
...opts,
|
|
158
172
|
});
|
|
159
|
-
this.name = "UnauthorizedException";
|
|
160
|
-
this.$fault = "client";
|
|
161
173
|
Object.setPrototypeOf(this, UnauthorizedException.prototype);
|
|
162
174
|
}
|
|
163
175
|
}
|
|
164
176
|
export class ValidationException extends __BaseException {
|
|
177
|
+
name = "ValidationException";
|
|
178
|
+
$fault = "client";
|
|
165
179
|
constructor(opts) {
|
|
166
180
|
super({
|
|
167
181
|
name: "ValidationException",
|
|
168
182
|
$fault: "client",
|
|
169
183
|
...opts,
|
|
170
184
|
});
|
|
171
|
-
this.name = "ValidationException";
|
|
172
|
-
this.$fault = "client";
|
|
173
185
|
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
174
186
|
}
|
|
175
187
|
}
|
|
@@ -185,14 +197,16 @@ export const SubmissionMutationKind = {
|
|
|
185
197
|
edit: "edit",
|
|
186
198
|
};
|
|
187
199
|
export class ContentTooLargeException extends __BaseException {
|
|
200
|
+
name = "ContentTooLargeException";
|
|
201
|
+
$fault = "client";
|
|
202
|
+
resourceId;
|
|
203
|
+
resourceType;
|
|
188
204
|
constructor(opts) {
|
|
189
205
|
super({
|
|
190
206
|
name: "ContentTooLargeException",
|
|
191
207
|
$fault: "client",
|
|
192
208
|
...opts,
|
|
193
209
|
});
|
|
194
|
-
this.name = "ContentTooLargeException";
|
|
195
|
-
this.$fault = "client";
|
|
196
210
|
Object.setPrototypeOf(this, ContentTooLargeException.prototype);
|
|
197
211
|
this.resourceId = opts.resourceId;
|
|
198
212
|
this.resourceType = opts.resourceType;
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: QAppsClientConfig) => {
|
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
10
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
11
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<any>;
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: QAppsClientConfig) => {
|
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: (init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity
|
|
10
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
11
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<string>;
|
|
@@ -22,7 +22,7 @@ export declare const getRuntimeConfig: (config: QAppsClientConfig) => {
|
|
|
22
22
|
region: string | import("@smithy/types").Provider<any>;
|
|
23
23
|
profile?: string | undefined;
|
|
24
24
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
25
|
-
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
25
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
26
26
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
27
27
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
@@ -31,7 +31,7 @@ export declare const getRuntimeConfig: (config: QAppsClientConfig) => {
|
|
|
31
31
|
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
32
32
|
userAgentAppId?: string | import("@smithy/types").Provider<string | undefined> | undefined;
|
|
33
33
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
34
|
-
endpoint?: string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2> | undefined;
|
|
34
|
+
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
35
35
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
36
36
|
logger?: import("@smithy/types").Logger | undefined;
|
|
37
37
|
}) => import("@smithy/types").EndpointV2;
|
|
@@ -6,9 +6,11 @@ export declare const getRuntimeConfig: (config: QAppsClientConfig) => {
|
|
|
6
6
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
7
7
|
>;
|
|
8
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
|
-
credentialDefaultProvider:
|
|
10
|
-
input: any
|
|
11
|
-
|
|
9
|
+
credentialDefaultProvider:
|
|
10
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
11
|
+
| ((
|
|
12
|
+
_: unknown
|
|
13
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
12
14
|
defaultUserAgentProvider: (
|
|
13
15
|
config?:
|
|
14
16
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
@@ -6,13 +6,15 @@ export declare const getRuntimeConfig: (config: QAppsClientConfig) => {
|
|
|
6
6
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
7
7
|
>;
|
|
8
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
|
-
credentialDefaultProvider:
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
9
|
+
credentialDefaultProvider:
|
|
10
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
11
|
+
| ((
|
|
12
|
+
init?:
|
|
13
|
+
| import("@aws-sdk/credential-provider-node").DefaultProviderInit
|
|
14
|
+
| undefined
|
|
15
|
+
) => import("@smithy/types").MemoizedProvider<
|
|
16
|
+
import("@smithy/types").AwsCredentialIdentity
|
|
17
|
+
>);
|
|
16
18
|
defaultUserAgentProvider: (
|
|
17
19
|
config?:
|
|
18
20
|
| import("@aws-sdk/util-user-agent-node").PreviouslyResolved
|
|
@@ -28,9 +28,11 @@ export declare const getRuntimeConfig: (config: QAppsClientConfig) => {
|
|
|
28
28
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
29
29
|
| undefined
|
|
30
30
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
31
|
-
credentialDefaultProvider:
|
|
32
|
-
input: any
|
|
33
|
-
|
|
31
|
+
credentialDefaultProvider:
|
|
32
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
33
|
+
| ((
|
|
34
|
+
_: unknown
|
|
35
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
34
36
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
35
37
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
36
38
|
logger: import("@smithy/types").Logger;
|
|
@@ -50,11 +52,21 @@ export declare const getRuntimeConfig: (config: QAppsClientConfig) => {
|
|
|
50
52
|
| import("@smithy/types").RetryStrategyV2
|
|
51
53
|
| undefined;
|
|
52
54
|
endpoint?:
|
|
53
|
-
|
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
55
|
+
| ((
|
|
56
|
+
| string
|
|
57
|
+
| import("@smithy/types").Endpoint
|
|
58
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
59
|
+
| import("@smithy/types").EndpointV2
|
|
60
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
61
|
+
) &
|
|
62
|
+
(
|
|
63
|
+
| string
|
|
64
|
+
| import("@smithy/types").Provider<string>
|
|
65
|
+
| import("@smithy/types").Endpoint
|
|
66
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
67
|
+
| import("@smithy/types").EndpointV2
|
|
68
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
69
|
+
))
|
|
58
70
|
| undefined;
|
|
59
71
|
endpointProvider: (
|
|
60
72
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-qapps",
|
|
3
3
|
"description": "AWS SDK for JavaScript Qapps Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.723.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -20,56 +20,56 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
-
"@aws-sdk/middleware-logger": "3.
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^
|
|
37
|
-
"@smithy/core": "^
|
|
38
|
-
"@smithy/fetch-http-handler": "^
|
|
39
|
-
"@smithy/hash-node": "^
|
|
40
|
-
"@smithy/invalid-dependency": "^
|
|
41
|
-
"@smithy/middleware-content-length": "^
|
|
42
|
-
"@smithy/middleware-endpoint": "^
|
|
43
|
-
"@smithy/middleware-retry": "^
|
|
44
|
-
"@smithy/middleware-serde": "^
|
|
45
|
-
"@smithy/middleware-stack": "^
|
|
46
|
-
"@smithy/node-config-provider": "^
|
|
47
|
-
"@smithy/node-http-handler": "^
|
|
48
|
-
"@smithy/protocol-http": "^
|
|
49
|
-
"@smithy/smithy-client": "^
|
|
50
|
-
"@smithy/types": "^
|
|
51
|
-
"@smithy/url-parser": "^
|
|
52
|
-
"@smithy/util-base64": "^
|
|
53
|
-
"@smithy/util-body-length-browser": "^
|
|
54
|
-
"@smithy/util-body-length-node": "^
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^
|
|
57
|
-
"@smithy/util-endpoints": "^
|
|
58
|
-
"@smithy/util-middleware": "^
|
|
59
|
-
"@smithy/util-retry": "^
|
|
60
|
-
"@smithy/util-utf8": "^
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.723.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.723.0",
|
|
25
|
+
"@aws-sdk/core": "3.723.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.723.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.723.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.723.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.723.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.723.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.723.0",
|
|
32
|
+
"@aws-sdk/types": "3.723.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.723.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.723.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.723.0",
|
|
36
|
+
"@smithy/config-resolver": "^4.0.0",
|
|
37
|
+
"@smithy/core": "^3.0.0",
|
|
38
|
+
"@smithy/fetch-http-handler": "^5.0.0",
|
|
39
|
+
"@smithy/hash-node": "^4.0.0",
|
|
40
|
+
"@smithy/invalid-dependency": "^4.0.0",
|
|
41
|
+
"@smithy/middleware-content-length": "^4.0.0",
|
|
42
|
+
"@smithy/middleware-endpoint": "^4.0.0",
|
|
43
|
+
"@smithy/middleware-retry": "^4.0.0",
|
|
44
|
+
"@smithy/middleware-serde": "^4.0.0",
|
|
45
|
+
"@smithy/middleware-stack": "^4.0.0",
|
|
46
|
+
"@smithy/node-config-provider": "^4.0.0",
|
|
47
|
+
"@smithy/node-http-handler": "^4.0.0",
|
|
48
|
+
"@smithy/protocol-http": "^5.0.0",
|
|
49
|
+
"@smithy/smithy-client": "^4.0.0",
|
|
50
|
+
"@smithy/types": "^4.0.0",
|
|
51
|
+
"@smithy/url-parser": "^4.0.0",
|
|
52
|
+
"@smithy/util-base64": "^4.0.0",
|
|
53
|
+
"@smithy/util-body-length-browser": "^4.0.0",
|
|
54
|
+
"@smithy/util-body-length-node": "^4.0.0",
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^4.0.0",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^4.0.0",
|
|
57
|
+
"@smithy/util-endpoints": "^3.0.0",
|
|
58
|
+
"@smithy/util-middleware": "^4.0.0",
|
|
59
|
+
"@smithy/util-retry": "^4.0.0",
|
|
60
|
+
"@smithy/util-utf8": "^4.0.0",
|
|
61
61
|
"tslib": "^2.6.2"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|
|
64
|
-
"@tsconfig/
|
|
65
|
-
"@types/node": "^
|
|
64
|
+
"@tsconfig/node18": "18.2.4",
|
|
65
|
+
"@types/node": "^18.19.69",
|
|
66
66
|
"concurrently": "7.0.0",
|
|
67
67
|
"downlevel-dts": "0.10.1",
|
|
68
68
|
"rimraf": "3.0.2",
|
|
69
|
-
"typescript": "~
|
|
69
|
+
"typescript": "~5.2.2"
|
|
70
70
|
},
|
|
71
71
|
"engines": {
|
|
72
|
-
"node": ">=
|
|
72
|
+
"node": ">=18.0.0"
|
|
73
73
|
},
|
|
74
74
|
"typesVersions": {
|
|
75
75
|
"<4.0": {
|