@aws-sdk/client-iotfleetwise 3.757.0 → 3.762.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/index.js +12 -0
- package/dist-es/models/models_0.js +4 -0
- package/dist-es/protocols/Aws_json1_0.js +6 -0
- package/dist-types/commands/CreateDecoderManifestCommand.d.ts +3 -0
- package/dist-types/commands/ListDecoderManifestSignalsCommand.d.ts +3 -0
- package/dist-types/commands/UpdateDecoderManifestCommand.d.ts +6 -0
- package/dist-types/models/models_0.d.ts +28 -1
- package/dist-types/ts3.4/models/models_0.d.ts +9 -0
- package/package.json +12 -12
package/dist-cjs/index.js
CHANGED
|
@@ -116,6 +116,7 @@ __export(src_exports, {
|
|
|
116
116
|
SignalFetchConfigFilterSensitiveLog: () => SignalFetchConfigFilterSensitiveLog,
|
|
117
117
|
SignalFetchInformationFilterSensitiveLog: () => SignalFetchInformationFilterSensitiveLog,
|
|
118
118
|
SignalNodeType: () => SignalNodeType,
|
|
119
|
+
SignalValueType: () => SignalValueType,
|
|
119
120
|
SpoolingMode: () => SpoolingMode,
|
|
120
121
|
StateTemplateUpdateStrategy: () => StateTemplateUpdateStrategy,
|
|
121
122
|
StorageCompressionFormat: () => StorageCompressionFormat,
|
|
@@ -675,6 +676,10 @@ var UpdateCampaignAction = {
|
|
|
675
676
|
SUSPEND: "SUSPEND",
|
|
676
677
|
UPDATE: "UPDATE"
|
|
677
678
|
};
|
|
679
|
+
var SignalValueType = {
|
|
680
|
+
FLOATING_POINT: "FLOATING_POINT",
|
|
681
|
+
INTEGER: "INTEGER"
|
|
682
|
+
};
|
|
678
683
|
var LogType = {
|
|
679
684
|
ERROR: "ERROR",
|
|
680
685
|
OFF: "OFF"
|
|
@@ -2264,6 +2269,7 @@ var se_CanSignal = /* @__PURE__ */ __name((input, context) => {
|
|
|
2264
2269
|
messageId: [],
|
|
2265
2270
|
name: [],
|
|
2266
2271
|
offset: import_smithy_client.serializeFloat,
|
|
2272
|
+
signalValueType: [],
|
|
2267
2273
|
startBit: []
|
|
2268
2274
|
});
|
|
2269
2275
|
}, "se_CanSignal");
|
|
@@ -2357,11 +2363,13 @@ var se_ObdSignal = /* @__PURE__ */ __name((input, context) => {
|
|
|
2357
2363
|
bitMaskLength: [],
|
|
2358
2364
|
bitRightShift: [],
|
|
2359
2365
|
byteLength: [],
|
|
2366
|
+
isSigned: [],
|
|
2360
2367
|
offset: import_smithy_client.serializeFloat,
|
|
2361
2368
|
pid: [],
|
|
2362
2369
|
pidResponseLength: [],
|
|
2363
2370
|
scaling: import_smithy_client.serializeFloat,
|
|
2364
2371
|
serviceMode: [],
|
|
2372
|
+
signalValueType: [],
|
|
2365
2373
|
startByte: []
|
|
2366
2374
|
});
|
|
2367
2375
|
}, "se_ObdSignal");
|
|
@@ -2524,6 +2532,7 @@ var de_CanSignal = /* @__PURE__ */ __name((output, context) => {
|
|
|
2524
2532
|
messageId: import_smithy_client.expectInt32,
|
|
2525
2533
|
name: import_smithy_client.expectString,
|
|
2526
2534
|
offset: import_smithy_client.limitedParseDouble,
|
|
2535
|
+
signalValueType: import_smithy_client.expectString,
|
|
2527
2536
|
startBit: import_smithy_client.expectInt32
|
|
2528
2537
|
});
|
|
2529
2538
|
}, "de_CanSignal");
|
|
@@ -2809,11 +2818,13 @@ var de_ObdSignal = /* @__PURE__ */ __name((output, context) => {
|
|
|
2809
2818
|
bitMaskLength: import_smithy_client.expectInt32,
|
|
2810
2819
|
bitRightShift: import_smithy_client.expectInt32,
|
|
2811
2820
|
byteLength: import_smithy_client.expectInt32,
|
|
2821
|
+
isSigned: import_smithy_client.expectBoolean,
|
|
2812
2822
|
offset: import_smithy_client.limitedParseDouble,
|
|
2813
2823
|
pid: import_smithy_client.expectInt32,
|
|
2814
2824
|
pidResponseLength: import_smithy_client.expectInt32,
|
|
2815
2825
|
scaling: import_smithy_client.limitedParseDouble,
|
|
2816
2826
|
serviceMode: import_smithy_client.expectInt32,
|
|
2827
|
+
signalValueType: import_smithy_client.expectString,
|
|
2817
2828
|
startByte: import_smithy_client.expectInt32
|
|
2818
2829
|
});
|
|
2819
2830
|
}, "de_ObdSignal");
|
|
@@ -4078,6 +4089,7 @@ var paginateListVehicles = (0, import_core.createPaginator)(IoTFleetWiseClient,
|
|
|
4078
4089
|
CampaignStatus,
|
|
4079
4090
|
ListResponseScope,
|
|
4080
4091
|
UpdateCampaignAction,
|
|
4092
|
+
SignalValueType,
|
|
4081
4093
|
LogType,
|
|
4082
4094
|
DefaultForUnmappedSignalsType,
|
|
4083
4095
|
NetworkInterfaceType,
|
|
@@ -250,6 +250,10 @@ export const UpdateCampaignAction = {
|
|
|
250
250
|
SUSPEND: "SUSPEND",
|
|
251
251
|
UPDATE: "UPDATE",
|
|
252
252
|
};
|
|
253
|
+
export const SignalValueType = {
|
|
254
|
+
FLOATING_POINT: "FLOATING_POINT",
|
|
255
|
+
INTEGER: "INTEGER",
|
|
256
|
+
};
|
|
253
257
|
export const LogType = {
|
|
254
258
|
ERROR: "ERROR",
|
|
255
259
|
OFF: "OFF",
|
|
@@ -1268,6 +1268,7 @@ const se_CanSignal = (input, context) => {
|
|
|
1268
1268
|
messageId: [],
|
|
1269
1269
|
name: [],
|
|
1270
1270
|
offset: __serializeFloat,
|
|
1271
|
+
signalValueType: [],
|
|
1271
1272
|
startBit: [],
|
|
1272
1273
|
});
|
|
1273
1274
|
};
|
|
@@ -1367,11 +1368,13 @@ const se_ObdSignal = (input, context) => {
|
|
|
1367
1368
|
bitMaskLength: [],
|
|
1368
1369
|
bitRightShift: [],
|
|
1369
1370
|
byteLength: [],
|
|
1371
|
+
isSigned: [],
|
|
1370
1372
|
offset: __serializeFloat,
|
|
1371
1373
|
pid: [],
|
|
1372
1374
|
pidResponseLength: [],
|
|
1373
1375
|
scaling: __serializeFloat,
|
|
1374
1376
|
serviceMode: [],
|
|
1377
|
+
signalValueType: [],
|
|
1375
1378
|
startByte: [],
|
|
1376
1379
|
});
|
|
1377
1380
|
};
|
|
@@ -1540,6 +1543,7 @@ const de_CanSignal = (output, context) => {
|
|
|
1540
1543
|
messageId: __expectInt32,
|
|
1541
1544
|
name: __expectString,
|
|
1542
1545
|
offset: __limitedParseDouble,
|
|
1546
|
+
signalValueType: __expectString,
|
|
1543
1547
|
startBit: __expectInt32,
|
|
1544
1548
|
});
|
|
1545
1549
|
};
|
|
@@ -1833,11 +1837,13 @@ const de_ObdSignal = (output, context) => {
|
|
|
1833
1837
|
bitMaskLength: __expectInt32,
|
|
1834
1838
|
bitRightShift: __expectInt32,
|
|
1835
1839
|
byteLength: __expectInt32,
|
|
1840
|
+
isSigned: __expectBoolean,
|
|
1836
1841
|
offset: __limitedParseDouble,
|
|
1837
1842
|
pid: __expectInt32,
|
|
1838
1843
|
pidResponseLength: __expectInt32,
|
|
1839
1844
|
scaling: __limitedParseDouble,
|
|
1840
1845
|
serviceMode: __expectInt32,
|
|
1846
|
+
signalValueType: __expectString,
|
|
1841
1847
|
startByte: __expectInt32,
|
|
1842
1848
|
});
|
|
1843
1849
|
};
|
|
@@ -67,6 +67,7 @@ declare const CreateDecoderManifestCommand_base: {
|
|
|
67
67
|
* factor: Number("double"), // required
|
|
68
68
|
* length: Number("int"), // required
|
|
69
69
|
* name: "STRING_VALUE",
|
|
70
|
+
* signalValueType: "INTEGER" || "FLOATING_POINT",
|
|
70
71
|
* },
|
|
71
72
|
* obdSignal: { // ObdSignal
|
|
72
73
|
* pidResponseLength: Number("int"), // required
|
|
@@ -78,6 +79,8 @@ declare const CreateDecoderManifestCommand_base: {
|
|
|
78
79
|
* byteLength: Number("int"), // required
|
|
79
80
|
* bitRightShift: Number("int"),
|
|
80
81
|
* bitMaskLength: Number("int"),
|
|
82
|
+
* isSigned: true || false,
|
|
83
|
+
* signalValueType: "INTEGER" || "FLOATING_POINT",
|
|
81
84
|
* },
|
|
82
85
|
* messageSignal: { // MessageSignal
|
|
83
86
|
* topicName: "STRING_VALUE", // required
|
|
@@ -59,6 +59,7 @@ declare const ListDecoderManifestSignalsCommand_base: {
|
|
|
59
59
|
* // factor: Number("double"), // required
|
|
60
60
|
* // length: Number("int"), // required
|
|
61
61
|
* // name: "STRING_VALUE",
|
|
62
|
+
* // signalValueType: "INTEGER" || "FLOATING_POINT",
|
|
62
63
|
* // },
|
|
63
64
|
* // obdSignal: { // ObdSignal
|
|
64
65
|
* // pidResponseLength: Number("int"), // required
|
|
@@ -70,6 +71,8 @@ declare const ListDecoderManifestSignalsCommand_base: {
|
|
|
70
71
|
* // byteLength: Number("int"), // required
|
|
71
72
|
* // bitRightShift: Number("int"),
|
|
72
73
|
* // bitMaskLength: Number("int"),
|
|
74
|
+
* // isSigned: true || false,
|
|
75
|
+
* // signalValueType: "INTEGER" || "FLOATING_POINT",
|
|
73
76
|
* // },
|
|
74
77
|
* // messageSignal: { // MessageSignal
|
|
75
78
|
* // topicName: "STRING_VALUE", // required
|
|
@@ -53,6 +53,7 @@ declare const UpdateDecoderManifestCommand_base: {
|
|
|
53
53
|
* factor: Number("double"), // required
|
|
54
54
|
* length: Number("int"), // required
|
|
55
55
|
* name: "STRING_VALUE",
|
|
56
|
+
* signalValueType: "INTEGER" || "FLOATING_POINT",
|
|
56
57
|
* },
|
|
57
58
|
* obdSignal: { // ObdSignal
|
|
58
59
|
* pidResponseLength: Number("int"), // required
|
|
@@ -64,6 +65,8 @@ declare const UpdateDecoderManifestCommand_base: {
|
|
|
64
65
|
* byteLength: Number("int"), // required
|
|
65
66
|
* bitRightShift: Number("int"),
|
|
66
67
|
* bitMaskLength: Number("int"),
|
|
68
|
+
* isSigned: true || false,
|
|
69
|
+
* signalValueType: "INTEGER" || "FLOATING_POINT",
|
|
67
70
|
* },
|
|
68
71
|
* messageSignal: { // MessageSignal
|
|
69
72
|
* topicName: "STRING_VALUE", // required
|
|
@@ -130,6 +133,7 @@ declare const UpdateDecoderManifestCommand_base: {
|
|
|
130
133
|
* factor: Number("double"), // required
|
|
131
134
|
* length: Number("int"), // required
|
|
132
135
|
* name: "STRING_VALUE",
|
|
136
|
+
* signalValueType: "INTEGER" || "FLOATING_POINT",
|
|
133
137
|
* },
|
|
134
138
|
* obdSignal: {
|
|
135
139
|
* pidResponseLength: Number("int"), // required
|
|
@@ -141,6 +145,8 @@ declare const UpdateDecoderManifestCommand_base: {
|
|
|
141
145
|
* byteLength: Number("int"), // required
|
|
142
146
|
* bitRightShift: Number("int"),
|
|
143
147
|
* bitMaskLength: Number("int"),
|
|
148
|
+
* isSigned: true || false,
|
|
149
|
+
* signalValueType: "INTEGER" || "FLOATING_POINT",
|
|
144
150
|
* },
|
|
145
151
|
* messageSignal: {
|
|
146
152
|
* topicName: "STRING_VALUE", // required
|
|
@@ -2005,6 +2005,18 @@ export interface CanInterface {
|
|
|
2005
2005
|
*/
|
|
2006
2006
|
protocolVersion?: string | undefined;
|
|
2007
2007
|
}
|
|
2008
|
+
/**
|
|
2009
|
+
* @public
|
|
2010
|
+
* @enum
|
|
2011
|
+
*/
|
|
2012
|
+
export declare const SignalValueType: {
|
|
2013
|
+
readonly FLOATING_POINT: "FLOATING_POINT";
|
|
2014
|
+
readonly INTEGER: "INTEGER";
|
|
2015
|
+
};
|
|
2016
|
+
/**
|
|
2017
|
+
* @public
|
|
2018
|
+
*/
|
|
2019
|
+
export type SignalValueType = (typeof SignalValueType)[keyof typeof SignalValueType];
|
|
2008
2020
|
/**
|
|
2009
2021
|
* <p>Information about a single controller area network (CAN) signal and the messages it
|
|
2010
2022
|
* receives and transmits.</p>
|
|
@@ -2022,7 +2034,7 @@ export interface CanSignal {
|
|
|
2022
2034
|
*/
|
|
2023
2035
|
isBigEndian: boolean | undefined;
|
|
2024
2036
|
/**
|
|
2025
|
-
* <p>
|
|
2037
|
+
* <p>Determines whether the message is signed (<code>true</code>) or not (<code>false</code>). If it's signed, the message can represent both positive and negative numbers. The <code>isSigned</code> parameter only applies to the <code>INTEGER</code> raw signal type, and it doesn't affect the <code>FLOATING_POINT</code> raw signal type.</p>
|
|
2026
2038
|
* @public
|
|
2027
2039
|
*/
|
|
2028
2040
|
isSigned: boolean | undefined;
|
|
@@ -2057,6 +2069,11 @@ export interface CanSignal {
|
|
|
2057
2069
|
* @public
|
|
2058
2070
|
*/
|
|
2059
2071
|
name?: string | undefined;
|
|
2072
|
+
/**
|
|
2073
|
+
* <p>The value type of the signal. The default value is <code>INTEGER</code>.</p>
|
|
2074
|
+
* @public
|
|
2075
|
+
*/
|
|
2076
|
+
signalValueType?: SignalValueType | undefined;
|
|
2060
2077
|
}
|
|
2061
2078
|
/**
|
|
2062
2079
|
* @public
|
|
@@ -2407,6 +2424,16 @@ export interface ObdSignal {
|
|
|
2407
2424
|
* @public
|
|
2408
2425
|
*/
|
|
2409
2426
|
bitMaskLength?: number | undefined;
|
|
2427
|
+
/**
|
|
2428
|
+
* <p>Determines whether the message is signed (<code>true</code>) or not (<code>false</code>). If it's signed, the message can represent both positive and negative numbers. The <code>isSigned</code> parameter only applies to the <code>INTEGER</code> raw signal type, and it doesn't affect the <code>FLOATING_POINT</code> raw signal type. The default value is <code>false</code>.</p>
|
|
2429
|
+
* @public
|
|
2430
|
+
*/
|
|
2431
|
+
isSigned?: boolean | undefined;
|
|
2432
|
+
/**
|
|
2433
|
+
* <p>The value type of the signal. The default value is <code>INTEGER</code>.</p>
|
|
2434
|
+
* @public
|
|
2435
|
+
*/
|
|
2436
|
+
signalValueType?: SignalValueType | undefined;
|
|
2410
2437
|
}
|
|
2411
2438
|
/**
|
|
2412
2439
|
* @public
|
|
@@ -578,6 +578,12 @@ export interface CanInterface {
|
|
|
578
578
|
protocolName?: string | undefined;
|
|
579
579
|
protocolVersion?: string | undefined;
|
|
580
580
|
}
|
|
581
|
+
export declare const SignalValueType: {
|
|
582
|
+
readonly FLOATING_POINT: "FLOATING_POINT";
|
|
583
|
+
readonly INTEGER: "INTEGER";
|
|
584
|
+
};
|
|
585
|
+
export type SignalValueType =
|
|
586
|
+
(typeof SignalValueType)[keyof typeof SignalValueType];
|
|
581
587
|
export interface CanSignal {
|
|
582
588
|
messageId: number | undefined;
|
|
583
589
|
isBigEndian: boolean | undefined;
|
|
@@ -587,6 +593,7 @@ export interface CanSignal {
|
|
|
587
593
|
factor: number | undefined;
|
|
588
594
|
length: number | undefined;
|
|
589
595
|
name?: string | undefined;
|
|
596
|
+
signalValueType?: SignalValueType | undefined;
|
|
590
597
|
}
|
|
591
598
|
export declare const LogType: {
|
|
592
599
|
readonly ERROR: "ERROR";
|
|
@@ -704,6 +711,8 @@ export interface ObdSignal {
|
|
|
704
711
|
byteLength: number | undefined;
|
|
705
712
|
bitRightShift?: number | undefined;
|
|
706
713
|
bitMaskLength?: number | undefined;
|
|
714
|
+
isSigned?: boolean | undefined;
|
|
715
|
+
signalValueType?: SignalValueType | undefined;
|
|
707
716
|
}
|
|
708
717
|
export declare const SignalDecoderType: {
|
|
709
718
|
readonly CAN_SIGNAL: "CAN_SIGNAL";
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-iotfleetwise",
|
|
3
3
|
"description": "AWS SDK for JavaScript Iotfleetwise Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.762.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-iotfleetwise",
|
|
@@ -20,38 +20,38 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.758.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.758.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.734.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.734.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.734.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.758.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.734.0",
|
|
30
30
|
"@aws-sdk/types": "3.734.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.743.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.734.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.758.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.0.1",
|
|
35
|
-
"@smithy/core": "^3.1.
|
|
35
|
+
"@smithy/core": "^3.1.5",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.0.1",
|
|
37
37
|
"@smithy/hash-node": "^4.0.1",
|
|
38
38
|
"@smithy/invalid-dependency": "^4.0.1",
|
|
39
39
|
"@smithy/middleware-content-length": "^4.0.1",
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.0.
|
|
41
|
-
"@smithy/middleware-retry": "^4.0.
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.0.6",
|
|
41
|
+
"@smithy/middleware-retry": "^4.0.7",
|
|
42
42
|
"@smithy/middleware-serde": "^4.0.2",
|
|
43
43
|
"@smithy/middleware-stack": "^4.0.1",
|
|
44
44
|
"@smithy/node-config-provider": "^4.0.1",
|
|
45
|
-
"@smithy/node-http-handler": "^4.0.
|
|
45
|
+
"@smithy/node-http-handler": "^4.0.3",
|
|
46
46
|
"@smithy/protocol-http": "^5.0.1",
|
|
47
|
-
"@smithy/smithy-client": "^4.1.
|
|
47
|
+
"@smithy/smithy-client": "^4.1.6",
|
|
48
48
|
"@smithy/types": "^4.1.0",
|
|
49
49
|
"@smithy/url-parser": "^4.0.1",
|
|
50
50
|
"@smithy/util-base64": "^4.0.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.0.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.0.0",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.0.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.0.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.0.7",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.0.7",
|
|
55
55
|
"@smithy/util-endpoints": "^3.0.1",
|
|
56
56
|
"@smithy/util-middleware": "^4.0.1",
|
|
57
57
|
"@smithy/util-retry": "^4.0.1",
|