devtools-protocol 0.0.1574117 → 0.0.1577676

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.
@@ -11589,6 +11589,22 @@
11589
11589
  }
11590
11590
  ],
11591
11591
  "commands": [
11592
+ {
11593
+ "name": "triggerAction",
11594
+ "description": "Runs an extension default action.\nAvailable if the client is connected using the --remote-debugging-pipe\nflag and the --enable-unsafe-extension-debugging flag is set.",
11595
+ "parameters": [
11596
+ {
11597
+ "name": "id",
11598
+ "description": "Extension id.",
11599
+ "type": "string"
11600
+ },
11601
+ {
11602
+ "name": "targetId",
11603
+ "description": "A tab target ID to trigger the default extension action on.",
11604
+ "type": "string"
11605
+ }
11606
+ ]
11607
+ },
11592
11608
  {
11593
11609
  "name": "loadUnpacked",
11594
11610
  "description": "Installs an unpacked extension from the filesystem similar to\n--load-extension CLI flags. Returns extension ID once the extension\nhas been installed. Available if the client is connected using the\n--remote-debugging-pipe flag and the --enable-unsafe-extension-debugging\nflag is set.",
@@ -11597,6 +11613,12 @@
11597
11613
  "name": "path",
11598
11614
  "description": "Absolute file path.",
11599
11615
  "type": "string"
11616
+ },
11617
+ {
11618
+ "name": "enableInIncognito",
11619
+ "description": "Enable the extension in incognito",
11620
+ "optional": true,
11621
+ "type": "boolean"
11600
11622
  }
11601
11623
  ],
11602
11624
  "returns": [
@@ -25921,6 +25943,641 @@
25921
25943
  }
25922
25944
  ]
25923
25945
  },
25946
+ {
25947
+ "domain": "SmartCardEmulation",
25948
+ "experimental": true,
25949
+ "types": [
25950
+ {
25951
+ "id": "ResultCode",
25952
+ "description": "Indicates the PC/SC error code.\n\nThis maps to:\nPC/SC Lite: https://pcsclite.apdu.fr/api/group__ErrorCodes.html\nMicrosoft: https://learn.microsoft.com/en-us/windows/win32/secauthn/authentication-return-values",
25953
+ "type": "string",
25954
+ "enum": [
25955
+ "success",
25956
+ "removed-card",
25957
+ "reset-card",
25958
+ "unpowered-card",
25959
+ "unresponsive-card",
25960
+ "unsupported-card",
25961
+ "reader-unavailable",
25962
+ "sharing-violation",
25963
+ "not-transacted",
25964
+ "no-smartcard",
25965
+ "proto-mismatch",
25966
+ "system-cancelled",
25967
+ "not-ready",
25968
+ "cancelled",
25969
+ "insufficient-buffer",
25970
+ "invalid-handle",
25971
+ "invalid-parameter",
25972
+ "invalid-value",
25973
+ "no-memory",
25974
+ "timeout",
25975
+ "unknown-reader",
25976
+ "unsupported-feature",
25977
+ "no-readers-available",
25978
+ "service-stopped",
25979
+ "no-service",
25980
+ "comm-error",
25981
+ "internal-error",
25982
+ "server-too-busy",
25983
+ "unexpected",
25984
+ "shutdown",
25985
+ "unknown-card",
25986
+ "unknown"
25987
+ ]
25988
+ },
25989
+ {
25990
+ "id": "ShareMode",
25991
+ "description": "Maps to the |SCARD_SHARE_*| values.",
25992
+ "type": "string",
25993
+ "enum": [
25994
+ "shared",
25995
+ "exclusive",
25996
+ "direct"
25997
+ ]
25998
+ },
25999
+ {
26000
+ "id": "Disposition",
26001
+ "description": "Indicates what the reader should do with the card.",
26002
+ "type": "string",
26003
+ "enum": [
26004
+ "leave-card",
26005
+ "reset-card",
26006
+ "unpower-card",
26007
+ "eject-card"
26008
+ ]
26009
+ },
26010
+ {
26011
+ "id": "ConnectionState",
26012
+ "description": "Maps to |SCARD_*| connection state values.",
26013
+ "type": "string",
26014
+ "enum": [
26015
+ "absent",
26016
+ "present",
26017
+ "swallowed",
26018
+ "powered",
26019
+ "negotiable",
26020
+ "specific"
26021
+ ]
26022
+ },
26023
+ {
26024
+ "id": "ReaderStateFlags",
26025
+ "description": "Maps to the |SCARD_STATE_*| flags.",
26026
+ "type": "object",
26027
+ "properties": [
26028
+ {
26029
+ "name": "unaware",
26030
+ "optional": true,
26031
+ "type": "boolean"
26032
+ },
26033
+ {
26034
+ "name": "ignore",
26035
+ "optional": true,
26036
+ "type": "boolean"
26037
+ },
26038
+ {
26039
+ "name": "changed",
26040
+ "optional": true,
26041
+ "type": "boolean"
26042
+ },
26043
+ {
26044
+ "name": "unknown",
26045
+ "optional": true,
26046
+ "type": "boolean"
26047
+ },
26048
+ {
26049
+ "name": "unavailable",
26050
+ "optional": true,
26051
+ "type": "boolean"
26052
+ },
26053
+ {
26054
+ "name": "empty",
26055
+ "optional": true,
26056
+ "type": "boolean"
26057
+ },
26058
+ {
26059
+ "name": "present",
26060
+ "optional": true,
26061
+ "type": "boolean"
26062
+ },
26063
+ {
26064
+ "name": "exclusive",
26065
+ "optional": true,
26066
+ "type": "boolean"
26067
+ },
26068
+ {
26069
+ "name": "inuse",
26070
+ "optional": true,
26071
+ "type": "boolean"
26072
+ },
26073
+ {
26074
+ "name": "mute",
26075
+ "optional": true,
26076
+ "type": "boolean"
26077
+ },
26078
+ {
26079
+ "name": "unpowered",
26080
+ "optional": true,
26081
+ "type": "boolean"
26082
+ }
26083
+ ]
26084
+ },
26085
+ {
26086
+ "id": "ProtocolSet",
26087
+ "description": "Maps to the |SCARD_PROTOCOL_*| flags.",
26088
+ "type": "object",
26089
+ "properties": [
26090
+ {
26091
+ "name": "t0",
26092
+ "optional": true,
26093
+ "type": "boolean"
26094
+ },
26095
+ {
26096
+ "name": "t1",
26097
+ "optional": true,
26098
+ "type": "boolean"
26099
+ },
26100
+ {
26101
+ "name": "raw",
26102
+ "optional": true,
26103
+ "type": "boolean"
26104
+ }
26105
+ ]
26106
+ },
26107
+ {
26108
+ "id": "Protocol",
26109
+ "description": "Maps to the |SCARD_PROTOCOL_*| values.",
26110
+ "type": "string",
26111
+ "enum": [
26112
+ "t0",
26113
+ "t1",
26114
+ "raw"
26115
+ ]
26116
+ },
26117
+ {
26118
+ "id": "ReaderStateIn",
26119
+ "type": "object",
26120
+ "properties": [
26121
+ {
26122
+ "name": "reader",
26123
+ "type": "string"
26124
+ },
26125
+ {
26126
+ "name": "currentState",
26127
+ "$ref": "ReaderStateFlags"
26128
+ },
26129
+ {
26130
+ "name": "currentInsertionCount",
26131
+ "type": "integer"
26132
+ }
26133
+ ]
26134
+ },
26135
+ {
26136
+ "id": "ReaderStateOut",
26137
+ "type": "object",
26138
+ "properties": [
26139
+ {
26140
+ "name": "reader",
26141
+ "type": "string"
26142
+ },
26143
+ {
26144
+ "name": "eventState",
26145
+ "$ref": "ReaderStateFlags"
26146
+ },
26147
+ {
26148
+ "name": "eventCount",
26149
+ "type": "integer"
26150
+ },
26151
+ {
26152
+ "name": "atr",
26153
+ "type": "string"
26154
+ }
26155
+ ]
26156
+ }
26157
+ ],
26158
+ "commands": [
26159
+ {
26160
+ "name": "enable",
26161
+ "description": "Enables the |SmartCardEmulation| domain."
26162
+ },
26163
+ {
26164
+ "name": "disable",
26165
+ "description": "Disables the |SmartCardEmulation| domain."
26166
+ },
26167
+ {
26168
+ "name": "reportEstablishContextResult",
26169
+ "description": "Reports the successful result of a |SCardEstablishContext| call.\n\nThis maps to:\nPC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#gaa1b8970169fd4883a6dc4a8f43f19b67\nMicrosoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardestablishcontext",
26170
+ "parameters": [
26171
+ {
26172
+ "name": "requestId",
26173
+ "type": "string"
26174
+ },
26175
+ {
26176
+ "name": "contextId",
26177
+ "type": "integer"
26178
+ }
26179
+ ]
26180
+ },
26181
+ {
26182
+ "name": "reportReleaseContextResult",
26183
+ "description": "Reports the successful result of a |SCardReleaseContext| call.\n\nThis maps to:\nPC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#ga6aabcba7744c5c9419fdd6404f73a934\nMicrosoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardreleasecontext",
26184
+ "parameters": [
26185
+ {
26186
+ "name": "requestId",
26187
+ "type": "string"
26188
+ }
26189
+ ]
26190
+ },
26191
+ {
26192
+ "name": "reportListReadersResult",
26193
+ "description": "Reports the successful result of a |SCardListReaders| call.\n\nThis maps to:\nPC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#ga93b07815789b3cf2629d439ecf20f0d9\nMicrosoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardlistreadersa",
26194
+ "parameters": [
26195
+ {
26196
+ "name": "requestId",
26197
+ "type": "string"
26198
+ },
26199
+ {
26200
+ "name": "readers",
26201
+ "type": "array",
26202
+ "items": {
26203
+ "type": "string"
26204
+ }
26205
+ }
26206
+ ]
26207
+ },
26208
+ {
26209
+ "name": "reportGetStatusChangeResult",
26210
+ "description": "Reports the successful result of a |SCardGetStatusChange| call.\n\nThis maps to:\nPC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#ga33247d5d1257d59e55647c3bb717db24\nMicrosoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardgetstatuschangea",
26211
+ "parameters": [
26212
+ {
26213
+ "name": "requestId",
26214
+ "type": "string"
26215
+ },
26216
+ {
26217
+ "name": "readerStates",
26218
+ "type": "array",
26219
+ "items": {
26220
+ "$ref": "ReaderStateOut"
26221
+ }
26222
+ }
26223
+ ]
26224
+ },
26225
+ {
26226
+ "name": "reportBeginTransactionResult",
26227
+ "description": "Reports the result of a |SCardBeginTransaction| call.\nOn success, this creates a new transaction object.\n\nThis maps to:\nPC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#gaddb835dce01a0da1d6ca02d33ee7d861\nMicrosoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardbegintransaction",
26228
+ "parameters": [
26229
+ {
26230
+ "name": "requestId",
26231
+ "type": "string"
26232
+ },
26233
+ {
26234
+ "name": "handle",
26235
+ "type": "integer"
26236
+ }
26237
+ ]
26238
+ },
26239
+ {
26240
+ "name": "reportPlainResult",
26241
+ "description": "Reports the successful result of a call that returns only a result code.\nUsed for: |SCardCancel|, |SCardDisconnect|, |SCardSetAttrib|, |SCardEndTransaction|.\n\nThis maps to:\n1. SCardCancel\n PC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#gaacbbc0c6d6c0cbbeb4f4debf6fbeeee6\n Microsoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardcancel\n\n2. SCardDisconnect\n PC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#ga4be198045c73ec0deb79e66c0ca1738a\n Microsoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scarddisconnect\n\n3. SCardSetAttrib\n PC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#ga060f0038a4ddfd5dd2b8fadf3c3a2e4f\n Microsoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardsetattrib\n\n4. SCardEndTransaction\n PC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#gae8742473b404363e5c587f570d7e2f3b\n Microsoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardendtransaction",
26242
+ "parameters": [
26243
+ {
26244
+ "name": "requestId",
26245
+ "type": "string"
26246
+ }
26247
+ ]
26248
+ },
26249
+ {
26250
+ "name": "reportConnectResult",
26251
+ "description": "Reports the successful result of a |SCardConnect| call.\n\nThis maps to:\nPC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#ga4e515829752e0a8dbc4d630696a8d6a5\nMicrosoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardconnecta",
26252
+ "parameters": [
26253
+ {
26254
+ "name": "requestId",
26255
+ "type": "string"
26256
+ },
26257
+ {
26258
+ "name": "handle",
26259
+ "type": "integer"
26260
+ },
26261
+ {
26262
+ "name": "activeProtocol",
26263
+ "optional": true,
26264
+ "$ref": "Protocol"
26265
+ }
26266
+ ]
26267
+ },
26268
+ {
26269
+ "name": "reportDataResult",
26270
+ "description": "Reports the successful result of a call that sends back data on success.\nUsed for |SCardTransmit|, |SCardControl|, and |SCardGetAttrib|.\n\nThis maps to:\n1. SCardTransmit\n PC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#ga9a2d77242a271310269065e64633ab99\n Microsoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardtransmit\n\n2. SCardControl\n PC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#gac3454d4657110fd7f753b2d3d8f4e32f\n Microsoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardcontrol\n\n3. SCardGetAttrib\n PC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#gaacfec51917255b7a25b94c5104961602\n Microsoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardgetattrib",
26271
+ "parameters": [
26272
+ {
26273
+ "name": "requestId",
26274
+ "type": "string"
26275
+ },
26276
+ {
26277
+ "name": "data",
26278
+ "type": "string"
26279
+ }
26280
+ ]
26281
+ },
26282
+ {
26283
+ "name": "reportStatusResult",
26284
+ "description": "Reports the successful result of a |SCardStatus| call.\n\nThis maps to:\nPC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#gae49c3c894ad7ac12a5b896bde70d0382\nMicrosoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardstatusa",
26285
+ "parameters": [
26286
+ {
26287
+ "name": "requestId",
26288
+ "type": "string"
26289
+ },
26290
+ {
26291
+ "name": "readerName",
26292
+ "type": "string"
26293
+ },
26294
+ {
26295
+ "name": "state",
26296
+ "$ref": "ConnectionState"
26297
+ },
26298
+ {
26299
+ "name": "atr",
26300
+ "type": "string"
26301
+ },
26302
+ {
26303
+ "name": "protocol",
26304
+ "optional": true,
26305
+ "$ref": "Protocol"
26306
+ }
26307
+ ]
26308
+ },
26309
+ {
26310
+ "name": "reportError",
26311
+ "description": "Reports an error result for the given request.",
26312
+ "parameters": [
26313
+ {
26314
+ "name": "requestId",
26315
+ "type": "string"
26316
+ },
26317
+ {
26318
+ "name": "resultCode",
26319
+ "$ref": "ResultCode"
26320
+ }
26321
+ ]
26322
+ }
26323
+ ],
26324
+ "events": [
26325
+ {
26326
+ "name": "establishContextRequested",
26327
+ "description": "Fired when |SCardEstablishContext| is called.\n\nThis maps to:\nPC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#gaa1b8970169fd4883a6dc4a8f43f19b67\nMicrosoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardestablishcontext",
26328
+ "parameters": [
26329
+ {
26330
+ "name": "requestId",
26331
+ "type": "string"
26332
+ }
26333
+ ]
26334
+ },
26335
+ {
26336
+ "name": "releaseContextRequested",
26337
+ "description": "Fired when |SCardReleaseContext| is called.\n\nThis maps to:\nPC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#ga6aabcba7744c5c9419fdd6404f73a934\nMicrosoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardreleasecontext",
26338
+ "parameters": [
26339
+ {
26340
+ "name": "requestId",
26341
+ "type": "string"
26342
+ },
26343
+ {
26344
+ "name": "contextId",
26345
+ "type": "integer"
26346
+ }
26347
+ ]
26348
+ },
26349
+ {
26350
+ "name": "listReadersRequested",
26351
+ "description": "Fired when |SCardListReaders| is called.\n\nThis maps to:\nPC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#ga93b07815789b3cf2629d439ecf20f0d9\nMicrosoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardlistreadersa",
26352
+ "parameters": [
26353
+ {
26354
+ "name": "requestId",
26355
+ "type": "string"
26356
+ },
26357
+ {
26358
+ "name": "contextId",
26359
+ "type": "integer"
26360
+ }
26361
+ ]
26362
+ },
26363
+ {
26364
+ "name": "getStatusChangeRequested",
26365
+ "description": "Fired when |SCardGetStatusChange| is called. Timeout is specified in milliseconds.\n\nThis maps to:\nPC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#ga33247d5d1257d59e55647c3bb717db24\nMicrosoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardgetstatuschangea",
26366
+ "parameters": [
26367
+ {
26368
+ "name": "requestId",
26369
+ "type": "string"
26370
+ },
26371
+ {
26372
+ "name": "contextId",
26373
+ "type": "integer"
26374
+ },
26375
+ {
26376
+ "name": "readerStates",
26377
+ "type": "array",
26378
+ "items": {
26379
+ "$ref": "ReaderStateIn"
26380
+ }
26381
+ },
26382
+ {
26383
+ "name": "timeout",
26384
+ "description": "in milliseconds, if absent, it means \"infinite\"",
26385
+ "optional": true,
26386
+ "type": "integer"
26387
+ }
26388
+ ]
26389
+ },
26390
+ {
26391
+ "name": "cancelRequested",
26392
+ "description": "Fired when |SCardCancel| is called.\n\nThis maps to:\nPC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#gaacbbc0c6d6c0cbbeb4f4debf6fbeeee6\nMicrosoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardcancel",
26393
+ "parameters": [
26394
+ {
26395
+ "name": "requestId",
26396
+ "type": "string"
26397
+ },
26398
+ {
26399
+ "name": "contextId",
26400
+ "type": "integer"
26401
+ }
26402
+ ]
26403
+ },
26404
+ {
26405
+ "name": "connectRequested",
26406
+ "description": "Fired when |SCardConnect| is called.\n\nThis maps to:\nPC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#ga4e515829752e0a8dbc4d630696a8d6a5\nMicrosoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardconnecta",
26407
+ "parameters": [
26408
+ {
26409
+ "name": "requestId",
26410
+ "type": "string"
26411
+ },
26412
+ {
26413
+ "name": "contextId",
26414
+ "type": "integer"
26415
+ },
26416
+ {
26417
+ "name": "reader",
26418
+ "type": "string"
26419
+ },
26420
+ {
26421
+ "name": "shareMode",
26422
+ "$ref": "ShareMode"
26423
+ },
26424
+ {
26425
+ "name": "preferredProtocols",
26426
+ "$ref": "ProtocolSet"
26427
+ }
26428
+ ]
26429
+ },
26430
+ {
26431
+ "name": "disconnectRequested",
26432
+ "description": "Fired when |SCardDisconnect| is called.\n\nThis maps to:\nPC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#ga4be198045c73ec0deb79e66c0ca1738a\nMicrosoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scarddisconnect",
26433
+ "parameters": [
26434
+ {
26435
+ "name": "requestId",
26436
+ "type": "string"
26437
+ },
26438
+ {
26439
+ "name": "handle",
26440
+ "type": "integer"
26441
+ },
26442
+ {
26443
+ "name": "disposition",
26444
+ "$ref": "Disposition"
26445
+ }
26446
+ ]
26447
+ },
26448
+ {
26449
+ "name": "transmitRequested",
26450
+ "description": "Fired when |SCardTransmit| is called.\n\nThis maps to:\nPC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#ga9a2d77242a271310269065e64633ab99\nMicrosoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardtransmit",
26451
+ "parameters": [
26452
+ {
26453
+ "name": "requestId",
26454
+ "type": "string"
26455
+ },
26456
+ {
26457
+ "name": "handle",
26458
+ "type": "integer"
26459
+ },
26460
+ {
26461
+ "name": "data",
26462
+ "type": "string"
26463
+ },
26464
+ {
26465
+ "name": "protocol",
26466
+ "optional": true,
26467
+ "$ref": "Protocol"
26468
+ }
26469
+ ]
26470
+ },
26471
+ {
26472
+ "name": "controlRequested",
26473
+ "description": "Fired when |SCardControl| is called.\n\nThis maps to:\nPC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#gac3454d4657110fd7f753b2d3d8f4e32f\nMicrosoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardcontrol",
26474
+ "parameters": [
26475
+ {
26476
+ "name": "requestId",
26477
+ "type": "string"
26478
+ },
26479
+ {
26480
+ "name": "handle",
26481
+ "type": "integer"
26482
+ },
26483
+ {
26484
+ "name": "controlCode",
26485
+ "type": "integer"
26486
+ },
26487
+ {
26488
+ "name": "data",
26489
+ "type": "string"
26490
+ }
26491
+ ]
26492
+ },
26493
+ {
26494
+ "name": "getAttribRequested",
26495
+ "description": "Fired when |SCardGetAttrib| is called.\n\nThis maps to:\nPC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#gaacfec51917255b7a25b94c5104961602\nMicrosoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardgetattrib",
26496
+ "parameters": [
26497
+ {
26498
+ "name": "requestId",
26499
+ "type": "string"
26500
+ },
26501
+ {
26502
+ "name": "handle",
26503
+ "type": "integer"
26504
+ },
26505
+ {
26506
+ "name": "attribId",
26507
+ "type": "integer"
26508
+ }
26509
+ ]
26510
+ },
26511
+ {
26512
+ "name": "setAttribRequested",
26513
+ "description": "Fired when |SCardSetAttrib| is called.\n\nThis maps to:\nPC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#ga060f0038a4ddfd5dd2b8fadf3c3a2e4f\nMicrosoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardsetattrib",
26514
+ "parameters": [
26515
+ {
26516
+ "name": "requestId",
26517
+ "type": "string"
26518
+ },
26519
+ {
26520
+ "name": "handle",
26521
+ "type": "integer"
26522
+ },
26523
+ {
26524
+ "name": "attribId",
26525
+ "type": "integer"
26526
+ },
26527
+ {
26528
+ "name": "data",
26529
+ "type": "string"
26530
+ }
26531
+ ]
26532
+ },
26533
+ {
26534
+ "name": "statusRequested",
26535
+ "description": "Fired when |SCardStatus| is called.\n\nThis maps to:\nPC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#gae49c3c894ad7ac12a5b896bde70d0382\nMicrosoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardstatusa",
26536
+ "parameters": [
26537
+ {
26538
+ "name": "requestId",
26539
+ "type": "string"
26540
+ },
26541
+ {
26542
+ "name": "handle",
26543
+ "type": "integer"
26544
+ }
26545
+ ]
26546
+ },
26547
+ {
26548
+ "name": "beginTransactionRequested",
26549
+ "description": "Fired when |SCardBeginTransaction| is called.\n\nThis maps to:\nPC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#gaddb835dce01a0da1d6ca02d33ee7d861\nMicrosoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardbegintransaction",
26550
+ "parameters": [
26551
+ {
26552
+ "name": "requestId",
26553
+ "type": "string"
26554
+ },
26555
+ {
26556
+ "name": "handle",
26557
+ "type": "integer"
26558
+ }
26559
+ ]
26560
+ },
26561
+ {
26562
+ "name": "endTransactionRequested",
26563
+ "description": "Fired when |SCardEndTransaction| is called.\n\nThis maps to:\nPC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#gae8742473b404363e5c587f570d7e2f3b\nMicrosoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardendtransaction",
26564
+ "parameters": [
26565
+ {
26566
+ "name": "requestId",
26567
+ "type": "string"
26568
+ },
26569
+ {
26570
+ "name": "handle",
26571
+ "type": "integer"
26572
+ },
26573
+ {
26574
+ "name": "disposition",
26575
+ "$ref": "Disposition"
26576
+ }
26577
+ ]
26578
+ }
26579
+ ]
26580
+ },
25924
26581
  {
25925
26582
  "domain": "Storage",
25926
26583
  "experimental": true,