Skip to content

Commit 7fd27f2

Browse files
chore: Update dist (#1236)
Co-authored-by: GitHub Actions <github-actions[bot]@users.noreply.github.com>
1 parent b4eaaad commit 7fd27f2

1 file changed

Lines changed: 1 addition & 11 deletions

File tree

dist/index.js

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ const commonParams = {
7676
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
7777
};
7878

79-
var version = "3.1096.0";
79+
var version = "3.1105.0";
8080
var packageInfo = {
8181
version: version};
8282

@@ -28232,8 +28232,6 @@ class Schema {
2823228232

2823328233
class ListSchema extends Schema {
2823428234
static symbol = Symbol.for("@smithy/lis");
28235-
name;
28236-
traits;
2823728235
valueSchema;
2823828236
symbol = ListSchema.symbol;
2823928237
}
@@ -28246,8 +28244,6 @@ const list = (namespace, name, traits, valueSchema) => Schema.assign(new ListSch
2824628244

2824728245
class MapSchema extends Schema {
2824828246
static symbol = Symbol.for("@smithy/map");
28249-
name;
28250-
traits;
2825128247
keySchema;
2825228248
valueSchema;
2825328249
symbol = MapSchema.symbol;
@@ -28262,8 +28258,6 @@ const map = (namespace, name, traits, keySchema, valueSchema) => Schema.assign(n
2826228258

2826328259
class OperationSchema extends Schema {
2826428260
static symbol = Symbol.for("@smithy/ope");
28265-
name;
28266-
traits;
2826728261
input;
2826828262
output;
2826928263
symbol = OperationSchema.symbol;
@@ -28278,8 +28272,6 @@ const op = (namespace, name, traits, input, output) => Schema.assign(new Operati
2827828272

2827928273
class StructureSchema extends Schema {
2828028274
static symbol = Symbol.for("@smithy/str");
28281-
name;
28282-
traits;
2828328275
memberNames;
2828428276
memberList;
2828528277
symbol = StructureSchema.symbol;
@@ -28637,9 +28629,7 @@ const isStaticSchema = (sc) => Array.isArray(sc) && sc.length >= 5;
2863728629

2863828630
class SimpleSchema extends Schema {
2863928631
static symbol = Symbol.for("@smithy/sim");
28640-
name;
2864128632
schemaRef;
28642-
traits;
2864328633
symbol = SimpleSchema.symbol;
2864428634
}
2864528635
const sim = (namespace, name, schemaRef, traits) => Schema.assign(new SimpleSchema(), {

0 commit comments

Comments
 (0)