├── Comparison Operators ├── CO_EqualToAndNotEqualTo │ └── CO_EqualToAndNotEqualTo.ino ├── CO_GreaterThanAndLessThan │ └── CO_GreaterThanAndLessThan.ino └── CO_GreaterThanORrEqualAndLessThanOREqual │ └── CO_GreaterThanORrEqualAndLessThanOREqual.ino ├── Control Structures ├── CS_DoWhile │ └── CS_DoWhile.ino ├── CS_For │ └── CS_For.ino ├── CS_If │ └── CS_If.ino ├── CS_IfElse │ └── CS_IfElse.ino ├── CS_SwitchCase │ └── CS_SwitchCase.ino └── CS_While │ └── CS_While.ino ├── DHT11_DHT22_Temp_Sensor_with_ESP8266_LEDs └── DHT11_DHT22_Temp_Sensor_with_ESP8266_LEDs.ino ├── Data Types ├── DataTypes │ └── DataTypes.ino ├── DataTypes_Array │ └── DataTypes_Array.ino ├── DataTypes_BoolByte │ └── DataTypes_BoolByte.ino ├── DataTypes_Float │ └── DataTypes_Float.ino ├── DataTypes_Int │ └── DataTypes_Int.ino └── DataTypes_String │ └── DataTypes_String.ino ├── Door_Sensor ├── Datasheet MC-38.pdf └── Door_Sensor.ino ├── EEPROM ├── eeprom │ └── eeprom.ino ├── eeprom_clear │ └── eeprom_clear.ino ├── eeprom_read │ └── eeprom_read.ino └── eeprom_write │ └── eeprom_write.ino ├── ESP8266_LocalServer └── ESP8266_LocalServer.ino ├── Firmware Structure └── Test1 │ └── Test1.ino ├── Flame_Sensor ├── Flame-sensor-arduino.pdf └── Flame_Sensor.ino ├── Functions └── Functions.ino ├── HC-SR04_Ultrasonic_Sensor └── HC-SR04_Ultrasonic_Sensor.ino ├── HC-SR04_Ultrasonic_Sensor_MQTT └── HC-SR04_Ultrasonic_Sensor_MQTT.ino ├── HCSR04.pdf ├── HTTPS ├── HTTPS_ESP32 │ └── HTTPS_ESP32.ino └── HTTPS_ESP8266 │ └── HTTPS_ESP8266.ino ├── HTTP_GET └── HTTP_GET.ino ├── HTTP_POST └── HTTP_POST.ino ├── HTTP_PUT └── HTTP_PUT.ino ├── I2C_Scanner └── I2C_Scanner.ino ├── IR_Obstacle_Sensor ├── IR_Obstacle_Sensor.ino └── arduino-ir-infrared-obstacle-avoidance-sensor-module.pdf ├── LCD_ESP8266 └── LCD_ESP8266.ino ├── LDR_Sensor ├── LDR_Sensor │ └── LDR_Sensor.ino ├── LDR_Sensor2 │ └── LDR_Sensor2.ino └── photosensitive_sensor_module.pdf ├── MQTT_EMQXCloud_JPL └── MQTT_EMQXCloud_JPL.ino ├── MQTT_Example └── MQTT_Example.ino ├── MQTT_HiveMQ_Public └── MQTT_HiveMQ_Public.ino ├── MQTT_TLS_HiveMQ_GSM_SIM7600 ├── MQTT_TLS_HiveMQ_GSM_SIM7600.ino └── ca_cert.h ├── Modbus ├── RTU │ ├── Modbus_Library_Temperature_Sensor │ │ └── Modbus_Library_Temperature_Sensor.ino │ └── Modbus_Temperature_Sensor │ │ └── Modbus_Temperature_Sensor.ino └── TCP │ └── Master │ └── Master.ino ├── Mosquitto MQTT Broker ├── Firmware │ └── MQTT_Mosquitto_Local │ │ └── MQTT_Mosquitto_Local.ino ├── Frontend Application │ ├── bulb-off.png │ ├── bulb-on.png │ ├── hum.png │ ├── jplearning.html │ └── temp.png ├── Frontend Application2 │ └── jplearning2.html ├── index.js ├── models │ ├── eventsModel.js │ └── usersModel.js ├── package-lock.json └── package.json ├── OTA Update ├── Web Server │ ├── otaUpdateWebServerLocalNW_ESP8266 │ │ └── otaUpdateWebServerLocalNW_ESP8266.ino │ └── otaUpdateWebServer_ESP8266 │ │ └── otaUpdateWebServer_ESP8266.ino ├── httpUpdate_ESP8266 │ ├── httpUpdate_ESP8266.ino │ └── update-v2.bin └── httpsUpdate_ESP8266 │ ├── httpsUpdate_ESP8266.ino │ └── update-v2.bin ├── PHP ├── MQTT with PHP │ └── Part1 │ │ ├── Composer-Setup.exe │ │ ├── Demo Server │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── index.php │ │ └── vendor │ │ │ ├── autoload.php │ │ │ └── composer │ │ │ ├── ClassLoader.php │ │ │ ├── InstalledVersions.php │ │ │ ├── LICENSE │ │ │ ├── autoload_classmap.php │ │ │ ├── autoload_namespaces.php │ │ │ ├── autoload_psr4.php │ │ │ ├── autoload_real.php │ │ │ ├── autoload_static.php │ │ │ ├── installed.json │ │ │ ├── installed.php │ │ │ └── platform_check.php │ │ └── MQTT_EMQXCloud_Public │ │ └── MQTT_EMQXCloud_Public.ino ├── Practice 15-02-2023 │ ├── ESP8266 Fimrware │ │ └── ESP8266_PHP │ │ │ └── ESP8266_PHP.ino │ └── Server Code │ │ ├── index.php │ │ └── query.sql └── Practice 19-02-2023 │ ├── Firmware │ └── ESP8266_PHP │ │ └── ESP8266_PHP.ino │ ├── Frontend Application │ ├── bulb-off.png │ ├── bulb-on.png │ ├── hum.png │ ├── jplearning.html │ └── temp.png │ └── Server │ ├── index.php │ └── query.sql ├── PIR_Motion_Senso_withr_ESP8266_LED └── PIR_Motion_Senso_withr_ESP8266_LED.ino ├── README.md ├── RS-232 ├── Master │ └── Master.ino └── Slave │ └── Slave.ino ├── RS-485 Daisy Chain ├── Master │ └── Master.ino ├── Slave1 │ └── Slave1.ino ├── Slave2 │ └── Slave2.ino └── Slave3 │ └── Slave3.ino ├── RS-485 ├── Master │ └── Master.ino ├── Receiver │ └── Receiver.ino ├── Sender │ └── Sender.ino └── Slave │ └── Slave.ino ├── Relay_Module └── Relay_Module.ino ├── SPI_EthernetModule └── SPI_EthernetModule.ino ├── Serial Functions ├── Serial_Available_Read │ └── Serial_Available_Read.ino ├── Serial_Read │ └── Serial_Read.ino ├── Serial_ReadStringUntil │ └── Serial_ReadStringUntil.ino └── Serial_Wrte │ └── Serial_Wrte.ino ├── Serial_Arduino └── Serial_Arduino.ino ├── Serial_ESP8266 └── Serial_ESP8266.ino ├── Server Examples ├── 02-12-2022 │ ├── .gitignore │ ├── index.js │ ├── package-lock.json │ ├── package.json │ └── readme.md ├── 04-01-2023 │ ├── .gitignore │ ├── Firmware │ │ ├── ESP8266LittleFS │ │ │ └── tool │ │ │ │ └── esp8266littlefs.jar │ │ └── MQTT_HiveMQ_Server │ │ │ ├── MQTT_HiveMQ_Server.ino │ │ │ └── data │ │ │ └── certs.ar │ ├── Frontend Application │ │ ├── bulb-off.png │ │ ├── bulb-on.png │ │ ├── hum.png │ │ ├── jplearning.html │ │ └── temp.png │ ├── index.js │ ├── index2.js │ ├── main.js │ ├── models │ │ ├── eventsModel.js │ │ └── usersModel.js │ ├── package-lock.json │ └── package.json ├── 07-12-2022 │ ├── .gitignore │ ├── index.js │ ├── model.js │ ├── node_modules │ │ ├── .bin │ │ │ ├── fxparser │ │ │ ├── fxparser.cmd │ │ │ ├── fxparser.ps1 │ │ │ ├── mime │ │ │ ├── mime.cmd │ │ │ ├── mime.ps1 │ │ │ ├── uuid │ │ │ ├── uuid.cmd │ │ │ └── uuid.ps1 │ │ ├── .package-lock.json │ │ ├── @aws-crypto │ │ │ ├── ie11-detection │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── build │ │ │ │ │ ├── CryptoOperation.d.ts │ │ │ │ │ ├── CryptoOperation.js │ │ │ │ │ ├── CryptoOperation.js.map │ │ │ │ │ ├── Key.d.ts │ │ │ │ │ ├── Key.js │ │ │ │ │ ├── Key.js.map │ │ │ │ │ ├── KeyOperation.d.ts │ │ │ │ │ ├── KeyOperation.js │ │ │ │ │ ├── KeyOperation.js.map │ │ │ │ │ ├── MsSubtleCrypto.d.ts │ │ │ │ │ ├── MsSubtleCrypto.js │ │ │ │ │ ├── MsSubtleCrypto.js.map │ │ │ │ │ ├── MsWindow.d.ts │ │ │ │ │ ├── MsWindow.js │ │ │ │ │ ├── MsWindow.js.map │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.js.map │ │ │ │ ├── node_modules │ │ │ │ │ └── tslib │ │ │ │ │ │ ├── CopyrightNotice.txt │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── modules │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── test │ │ │ │ │ │ └── validateModuleExportsMatchCommonJS │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── tslib.d.ts │ │ │ │ │ │ ├── tslib.es6.html │ │ │ │ │ │ ├── tslib.es6.js │ │ │ │ │ │ ├── tslib.html │ │ │ │ │ │ └── tslib.js │ │ │ │ ├── package.json │ │ │ │ ├── src │ │ │ │ │ ├── CryptoOperation.ts │ │ │ │ │ ├── Key.ts │ │ │ │ │ ├── KeyOperation.ts │ │ │ │ │ ├── MsSubtleCrypto.ts │ │ │ │ │ ├── MsWindow.ts │ │ │ │ │ └── index.ts │ │ │ │ └── tsconfig.json │ │ │ ├── sha256-browser │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── build │ │ │ │ │ ├── constants.d.ts │ │ │ │ │ ├── constants.js │ │ │ │ │ ├── crossPlatformSha256.d.ts │ │ │ │ │ ├── crossPlatformSha256.js │ │ │ │ │ ├── ie11Sha256.d.ts │ │ │ │ │ ├── ie11Sha256.js │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ ├── isEmptyData.d.ts │ │ │ │ │ ├── isEmptyData.js │ │ │ │ │ ├── webCryptoSha256.d.ts │ │ │ │ │ └── webCryptoSha256.js │ │ │ │ ├── node_modules │ │ │ │ │ └── tslib │ │ │ │ │ │ ├── CopyrightNotice.txt │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── modules │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── test │ │ │ │ │ │ └── validateModuleExportsMatchCommonJS │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── tslib.d.ts │ │ │ │ │ │ ├── tslib.es6.html │ │ │ │ │ │ ├── tslib.es6.js │ │ │ │ │ │ ├── tslib.html │ │ │ │ │ │ └── tslib.js │ │ │ │ ├── package.json │ │ │ │ ├── src │ │ │ │ │ ├── constants.ts │ │ │ │ │ ├── crossPlatformSha256.ts │ │ │ │ │ ├── ie11Sha256.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── isEmptyData.ts │ │ │ │ │ └── webCryptoSha256.ts │ │ │ │ └── tsconfig.json │ │ │ ├── sha256-js │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── build │ │ │ │ │ ├── RawSha256.d.ts │ │ │ │ │ ├── RawSha256.js │ │ │ │ │ ├── constants.d.ts │ │ │ │ │ ├── constants.js │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ ├── jsSha256.d.ts │ │ │ │ │ ├── jsSha256.js │ │ │ │ │ ├── knownHashes.fixture.d.ts │ │ │ │ │ └── knownHashes.fixture.js │ │ │ │ ├── node_modules │ │ │ │ │ └── tslib │ │ │ │ │ │ ├── CopyrightNotice.txt │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── modules │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── test │ │ │ │ │ │ └── validateModuleExportsMatchCommonJS │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── tslib.d.ts │ │ │ │ │ │ ├── tslib.es6.html │ │ │ │ │ │ ├── tslib.es6.js │ │ │ │ │ │ ├── tslib.html │ │ │ │ │ │ └── tslib.js │ │ │ │ ├── package.json │ │ │ │ ├── src │ │ │ │ │ ├── RawSha256.ts │ │ │ │ │ ├── constants.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── jsSha256.ts │ │ │ │ │ └── knownHashes.fixture.ts │ │ │ │ └── tsconfig.json │ │ │ ├── supports-web-crypto │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── build │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ ├── supportsWebCrypto.d.ts │ │ │ │ │ └── supportsWebCrypto.js │ │ │ │ ├── node_modules │ │ │ │ │ └── tslib │ │ │ │ │ │ ├── CopyrightNotice.txt │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── modules │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── test │ │ │ │ │ │ └── validateModuleExportsMatchCommonJS │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── tslib.d.ts │ │ │ │ │ │ ├── tslib.es6.html │ │ │ │ │ │ ├── tslib.es6.js │ │ │ │ │ │ ├── tslib.html │ │ │ │ │ │ └── tslib.js │ │ │ │ ├── package.json │ │ │ │ ├── src │ │ │ │ │ ├── index.ts │ │ │ │ │ └── supportsWebCrypto.ts │ │ │ │ └── tsconfig.json │ │ │ └── util │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── build │ │ │ │ ├── convertToBuffer.d.ts │ │ │ │ ├── convertToBuffer.js │ │ │ │ ├── convertToBuffer.js.map │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ ├── isEmptyData.d.ts │ │ │ │ ├── isEmptyData.js │ │ │ │ ├── isEmptyData.js.map │ │ │ │ ├── numToUint8.d.ts │ │ │ │ ├── numToUint8.js │ │ │ │ ├── numToUint8.js.map │ │ │ │ ├── uint32ArrayFrom.d.ts │ │ │ │ ├── uint32ArrayFrom.js │ │ │ │ └── uint32ArrayFrom.js.map │ │ │ │ ├── node_modules │ │ │ │ └── tslib │ │ │ │ │ ├── CopyrightNotice.txt │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── README.md │ │ │ │ │ ├── modules │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ │ ├── package.json │ │ │ │ │ ├── test │ │ │ │ │ └── validateModuleExportsMatchCommonJS │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── tslib.d.ts │ │ │ │ │ ├── tslib.es6.html │ │ │ │ │ ├── tslib.es6.js │ │ │ │ │ ├── tslib.html │ │ │ │ │ └── tslib.js │ │ │ │ ├── package.json │ │ │ │ ├── src │ │ │ │ ├── convertToBuffer.ts │ │ │ │ ├── index.ts │ │ │ │ ├── isEmptyData.ts │ │ │ │ ├── numToUint8.ts │ │ │ │ └── uint32ArrayFrom.ts │ │ │ │ └── tsconfig.json │ │ ├── @aws-sdk │ │ │ ├── abort-controller │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── dist-cjs │ │ │ │ │ ├── AbortController.js │ │ │ │ │ ├── AbortSignal.js │ │ │ │ │ └── index.js │ │ │ │ ├── dist-es │ │ │ │ │ ├── AbortController.js │ │ │ │ │ ├── AbortSignal.js │ │ │ │ │ └── index.js │ │ │ │ ├── dist-types │ │ │ │ │ ├── AbortController.d.ts │ │ │ │ │ ├── AbortSignal.d.ts │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── ts3.4 │ │ │ │ │ │ ├── AbortController.d.ts │ │ │ │ │ │ ├── AbortSignal.d.ts │ │ │ │ │ │ └── index.d.ts │ │ │ │ └── package.json │ │ │ ├── client-cognito-identity │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── dist-cjs │ │ │ │ │ ├── CognitoIdentity.js │ │ │ │ │ ├── CognitoIdentityClient.js │ │ │ │ │ ├── commands │ │ │ │ │ │ ├── CreateIdentityPoolCommand.js │ │ │ │ │ │ ├── DeleteIdentitiesCommand.js │ │ │ │ │ │ ├── DeleteIdentityPoolCommand.js │ │ │ │ │ │ ├── DescribeIdentityCommand.js │ │ │ │ │ │ ├── DescribeIdentityPoolCommand.js │ │ │ │ │ │ ├── GetCredentialsForIdentityCommand.js │ │ │ │ │ │ ├── GetIdCommand.js │ │ │ │ │ │ ├── GetIdentityPoolRolesCommand.js │ │ │ │ │ │ ├── GetOpenIdTokenCommand.js │ │ │ │ │ │ ├── GetOpenIdTokenForDeveloperIdentityCommand.js │ │ │ │ │ │ ├── GetPrincipalTagAttributeMapCommand.js │ │ │ │ │ │ ├── ListIdentitiesCommand.js │ │ │ │ │ │ ├── ListIdentityPoolsCommand.js │ │ │ │ │ │ ├── ListTagsForResourceCommand.js │ │ │ │ │ │ ├── LookupDeveloperIdentityCommand.js │ │ │ │ │ │ ├── MergeDeveloperIdentitiesCommand.js │ │ │ │ │ │ ├── SetIdentityPoolRolesCommand.js │ │ │ │ │ │ ├── SetPrincipalTagAttributeMapCommand.js │ │ │ │ │ │ ├── TagResourceCommand.js │ │ │ │ │ │ ├── UnlinkDeveloperIdentityCommand.js │ │ │ │ │ │ ├── UnlinkIdentityCommand.js │ │ │ │ │ │ ├── UntagResourceCommand.js │ │ │ │ │ │ ├── UpdateIdentityPoolCommand.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── endpoint │ │ │ │ │ │ ├── EndpointParameters.js │ │ │ │ │ │ ├── endpointResolver.js │ │ │ │ │ │ └── ruleset.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── models │ │ │ │ │ │ ├── CognitoIdentityServiceException.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── models_0.js │ │ │ │ │ ├── pagination │ │ │ │ │ │ ├── Interfaces.js │ │ │ │ │ │ ├── ListIdentityPoolsPaginator.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── protocols │ │ │ │ │ │ └── Aws_json1_1.js │ │ │ │ │ ├── runtimeConfig.browser.js │ │ │ │ │ ├── runtimeConfig.js │ │ │ │ │ ├── runtimeConfig.native.js │ │ │ │ │ └── runtimeConfig.shared.js │ │ │ │ ├── dist-es │ │ │ │ │ ├── CognitoIdentity.js │ │ │ │ │ ├── CognitoIdentityClient.js │ │ │ │ │ ├── commands │ │ │ │ │ │ ├── CreateIdentityPoolCommand.js │ │ │ │ │ │ ├── DeleteIdentitiesCommand.js │ │ │ │ │ │ ├── DeleteIdentityPoolCommand.js │ │ │ │ │ │ ├── DescribeIdentityCommand.js │ │ │ │ │ │ ├── DescribeIdentityPoolCommand.js │ │ │ │ │ │ ├── GetCredentialsForIdentityCommand.js │ │ │ │ │ │ ├── GetIdCommand.js │ │ │ │ │ │ ├── GetIdentityPoolRolesCommand.js │ │ │ │ │ │ ├── GetOpenIdTokenCommand.js │ │ │ │ │ │ ├── GetOpenIdTokenForDeveloperIdentityCommand.js │ │ │ │ │ │ ├── GetPrincipalTagAttributeMapCommand.js │ │ │ │ │ │ ├── ListIdentitiesCommand.js │ │ │ │ │ │ ├── ListIdentityPoolsCommand.js │ │ │ │ │ │ ├── ListTagsForResourceCommand.js │ │ │ │ │ │ ├── LookupDeveloperIdentityCommand.js │ │ │ │ │ │ ├── MergeDeveloperIdentitiesCommand.js │ │ │ │ │ │ ├── SetIdentityPoolRolesCommand.js │ │ │ │ │ │ ├── SetPrincipalTagAttributeMapCommand.js │ │ │ │ │ │ ├── TagResourceCommand.js │ │ │ │ │ │ ├── UnlinkDeveloperIdentityCommand.js │ │ │ │ │ │ ├── UnlinkIdentityCommand.js │ │ │ │ │ │ ├── UntagResourceCommand.js │ │ │ │ │ │ ├── UpdateIdentityPoolCommand.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── endpoint │ │ │ │ │ │ ├── EndpointParameters.js │ │ │ │ │ │ ├── endpointResolver.js │ │ │ │ │ │ └── ruleset.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── models │ │ │ │ │ │ ├── CognitoIdentityServiceException.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── models_0.js │ │ │ │ │ ├── pagination │ │ │ │ │ │ ├── Interfaces.js │ │ │ │ │ │ ├── ListIdentityPoolsPaginator.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── protocols │ │ │ │ │ │ └── Aws_json1_1.js │ │ │ │ │ ├── runtimeConfig.browser.js │ │ │ │ │ ├── runtimeConfig.js │ │ │ │ │ ├── runtimeConfig.native.js │ │ │ │ │ └── runtimeConfig.shared.js │ │ │ │ ├── dist-types │ │ │ │ │ ├── CognitoIdentity.d.ts │ │ │ │ │ ├── CognitoIdentityClient.d.ts │ │ │ │ │ ├── commands │ │ │ │ │ │ ├── CreateIdentityPoolCommand.d.ts │ │ │ │ │ │ ├── DeleteIdentitiesCommand.d.ts │ │ │ │ │ │ ├── DeleteIdentityPoolCommand.d.ts │ │ │ │ │ │ ├── DescribeIdentityCommand.d.ts │ │ │ │ │ │ ├── DescribeIdentityPoolCommand.d.ts │ │ │ │ │ │ ├── GetCredentialsForIdentityCommand.d.ts │ │ │ │ │ │ ├── GetIdCommand.d.ts │ │ │ │ │ │ ├── GetIdentityPoolRolesCommand.d.ts │ │ │ │ │ │ ├── GetOpenIdTokenCommand.d.ts │ │ │ │ │ │ ├── GetOpenIdTokenForDeveloperIdentityCommand.d.ts │ │ │ │ │ │ ├── GetPrincipalTagAttributeMapCommand.d.ts │ │ │ │ │ │ ├── ListIdentitiesCommand.d.ts │ │ │ │ │ │ ├── ListIdentityPoolsCommand.d.ts │ │ │ │ │ │ ├── ListTagsForResourceCommand.d.ts │ │ │ │ │ │ ├── LookupDeveloperIdentityCommand.d.ts │ │ │ │ │ │ ├── MergeDeveloperIdentitiesCommand.d.ts │ │ │ │ │ │ ├── SetIdentityPoolRolesCommand.d.ts │ │ │ │ │ │ ├── SetPrincipalTagAttributeMapCommand.d.ts │ │ │ │ │ │ ├── TagResourceCommand.d.ts │ │ │ │ │ │ ├── UnlinkDeveloperIdentityCommand.d.ts │ │ │ │ │ │ ├── UnlinkIdentityCommand.d.ts │ │ │ │ │ │ ├── UntagResourceCommand.d.ts │ │ │ │ │ │ ├── UpdateIdentityPoolCommand.d.ts │ │ │ │ │ │ └── index.d.ts │ │ │ │ │ ├── endpoint │ │ │ │ │ │ ├── EndpointParameters.d.ts │ │ │ │ │ │ ├── endpointResolver.d.ts │ │ │ │ │ │ └── ruleset.d.ts │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── models │ │ │ │ │ │ ├── CognitoIdentityServiceException.d.ts │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ └── models_0.d.ts │ │ │ │ │ ├── pagination │ │ │ │ │ │ ├── Interfaces.d.ts │ │ │ │ │ │ ├── ListIdentityPoolsPaginator.d.ts │ │ │ │ │ │ └── index.d.ts │ │ │ │ │ ├── protocols │ │ │ │ │ │ └── Aws_json1_1.d.ts │ │ │ │ │ ├── runtimeConfig.browser.d.ts │ │ │ │ │ ├── runtimeConfig.d.ts │ │ │ │ │ ├── runtimeConfig.native.d.ts │ │ │ │ │ ├── runtimeConfig.shared.d.ts │ │ │ │ │ └── ts3.4 │ │ │ │ │ │ ├── CognitoIdentity.d.ts │ │ │ │ │ │ ├── CognitoIdentityClient.d.ts │ │ │ │ │ │ ├── commands │ │ │ │ │ │ ├── CreateIdentityPoolCommand.d.ts │ │ │ │ │ │ ├── DeleteIdentitiesCommand.d.ts │ │ │ │ │ │ ├── DeleteIdentityPoolCommand.d.ts │ │ │ │ │ │ ├── DescribeIdentityCommand.d.ts │ │ │ │ │ │ ├── DescribeIdentityPoolCommand.d.ts │ │ │ │ │ │ ├── GetCredentialsForIdentityCommand.d.ts │ │ │ │ │ │ ├── GetIdCommand.d.ts │ │ │ │ │ │ ├── GetIdentityPoolRolesCommand.d.ts │ │ │ │ │ │ ├── GetOpenIdTokenCommand.d.ts │ │ │ │ │ │ ├── GetOpenIdTokenForDeveloperIdentityCommand.d.ts │ │ │ │ │ │ ├── GetPrincipalTagAttributeMapCommand.d.ts │ │ │ │ │ │ ├── ListIdentitiesCommand.d.ts │ │ │ │ │ │ ├── ListIdentityPoolsCommand.d.ts │ │ │ │ │ │ ├── ListTagsForResourceCommand.d.ts │ │ │ │ │ │ ├── LookupDeveloperIdentityCommand.d.ts │ │ │ │ │ │ ├── MergeDeveloperIdentitiesCommand.d.ts │ │ │ │ │ │ ├── SetIdentityPoolRolesCommand.d.ts │ │ │ │ │ │ ├── SetPrincipalTagAttributeMapCommand.d.ts │ │ │ │ │ │ ├── TagResourceCommand.d.ts │ │ │ │ │ │ ├── UnlinkDeveloperIdentityCommand.d.ts │ │ │ │ │ │ ├── UnlinkIdentityCommand.d.ts │ │ │ │ │ │ ├── UntagResourceCommand.d.ts │ │ │ │ │ │ ├── UpdateIdentityPoolCommand.d.ts │ │ │ │ │ │ └── index.d.ts │ │ │ │ │ │ ├── endpoint │ │ │ │ │ │ ├── EndpointParameters.d.ts │ │ │ │ │ │ ├── endpointResolver.d.ts │ │ │ │ │ │ └── ruleset.d.ts │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── models │ │ │ │ │ │ ├── CognitoIdentityServiceException.d.ts │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ └── models_0.d.ts │ │ │ │ │ │ ├── pagination │ │ │ │ │ │ ├── Interfaces.d.ts │ │ │ │ │ │ ├── ListIdentityPoolsPaginator.d.ts │ │ │ │ │ │ └── index.d.ts │ │ │ │ │ │ ├── protocols │ │ │ │ │ │ └── Aws_json1_1.d.ts │ │ │ │ │ │ ├── runtimeConfig.browser.d.ts │ │ │ │ │ │ ├── runtimeConfig.d.ts │ │ │ │ │ │ ├── runtimeConfig.native.d.ts │ │ │ │ │ │ └── runtimeConfig.shared.d.ts │ │ │ │ └── package.json │ │ │ ├── client-sso-oidc │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── dist-cjs │ │ │ │ │ ├── SSOOIDC.js │ │ │ │ │ ├── SSOOIDCClient.js │ │ │ │ │ ├── commands │ │ │ │ │ │ ├── CreateTokenCommand.js │ │ │ │ │ │ ├── RegisterClientCommand.js │ │ │ │ │ │ ├── StartDeviceAuthorizationCommand.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── endpoint │ │ │ │ │ │ ├── EndpointParameters.js │ │ │ │ │ │ ├── endpointResolver.js │ │ │ │ │ │ └── ruleset.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── models │ │ │ │ │ │ ├── SSOOIDCServiceException.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── models_0.js │ │ │ │ │ ├── protocols │ │ │ │ │ │ └── Aws_restJson1.js │ │ │ │ │ ├── runtimeConfig.browser.js │ │ │ │ │ ├── runtimeConfig.js │ │ │ │ │ ├── runtimeConfig.native.js │ │ │ │ │ └── runtimeConfig.shared.js │ │ │ │ ├── dist-es │ │ │ │ │ ├── SSOOIDC.js │ │ │ │ │ ├── SSOOIDCClient.js │ │ │ │ │ ├── commands │ │ │ │ │ │ ├── CreateTokenCommand.js │ │ │ │ │ │ ├── RegisterClientCommand.js │ │ │ │ │ │ ├── StartDeviceAuthorizationCommand.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── endpoint │ │ │ │ │ │ ├── EndpointParameters.js │ │ │ │ │ │ ├── endpointResolver.js │ │ │ │ │ │ └── ruleset.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── models │ │ │ │ │ │ ├── SSOOIDCServiceException.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── models_0.js │ │ │ │ │ ├── protocols │ │ │ │ │ │ └── Aws_restJson1.js │ │ │ │ │ ├── runtimeConfig.browser.js │ │ │ │ │ ├── runtimeConfig.js │ │ │ │ │ ├── runtimeConfig.native.js │ │ │ │ │ └── runtimeConfig.shared.js │ │ │ │ ├── dist-types │ │ │ │ │ ├── SSOOIDC.d.ts │ │ │ │ │ ├── SSOOIDCClient.d.ts │ │ │ │ │ ├── commands │ │ │ │ │ │ ├── CreateTokenCommand.d.ts │ │ │ │ │ │ ├── RegisterClientCommand.d.ts │ │ │ │ │ │ ├── StartDeviceAuthorizationCommand.d.ts │ │ │ │ │ │ └── index.d.ts │ │ │ │ │ ├── endpoint │ │ │ │ │ │ ├── EndpointParameters.d.ts │ │ │ │ │ │ ├── endpointResolver.d.ts │ │ │ │ │ │ └── ruleset.d.ts │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── models │ │ │ │ │ │ ├── SSOOIDCServiceException.d.ts │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ └── models_0.d.ts │ │ │ │ │ ├── protocols │ │ │ │ │ │ └── Aws_restJson1.d.ts │ │ │ │ │ ├── runtimeConfig.browser.d.ts │ │ │ │ │ ├── runtimeConfig.d.ts │ │ │ │ │ ├── runtimeConfig.native.d.ts │ │ │ │ │ ├── runtimeConfig.shared.d.ts │ │ │ │ │ └── ts3.4 │ │ │ │ │ │ ├── SSOOIDC.d.ts │ │ │ │ │ │ ├── SSOOIDCClient.d.ts │ │ │ │ │ │ ├── commands │ │ │ │ │ │ ├── CreateTokenCommand.d.ts │ │ │ │ │ │ ├── RegisterClientCommand.d.ts │ │ │ │ │ │ ├── StartDeviceAuthorizationCommand.d.ts │ │ │ │ │ │ └── index.d.ts │ │ │ │ │ │ ├── endpoint │ │ │ │ │ │ ├── EndpointParameters.d.ts │ │ │ │ │ │ ├── endpointResolver.d.ts │ │ │ │ │ │ └── ruleset.d.ts │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── models │ │ │ │ │ │ ├── SSOOIDCServiceException.d.ts │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ └── models_0.d.ts │ │ │ │ │ │ ├── protocols │ │ │ │ │ │ └── Aws_restJson1.d.ts │ │ │ │ │ │ ├── runtimeConfig.browser.d.ts │ │ │ │ │ │ ├── runtimeConfig.d.ts │ │ │ │ │ │ ├── runtimeConfig.native.d.ts │ │ │ │ │ │ └── runtimeConfig.shared.d.ts │ │ │ │ └── package.json │ │ │ ├── client-sso │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── dist-cjs │ │ │ │ │ ├── SSO.js │ │ │ │ │ ├── SSOClient.js │ │ │ │ │ ├── commands │ │ │ │ │ │ ├── GetRoleCredentialsCommand.js │ │ │ │ │ │ ├── ListAccountRolesCommand.js │ │ │ │ │ │ ├── ListAccountsCommand.js │ │ │ │ │ │ ├── LogoutCommand.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── endpoint │ │ │ │ │ │ ├── EndpointParameters.js │ │ │ │ │ │ ├── endpointResolver.js │ │ │ │ │ │ └── ruleset.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── models │ │ │ │ │ │ ├── SSOServiceException.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── models_0.js │ │ │ │ │ ├── pagination │ │ │ │ │ │ ├── Interfaces.js │ │ │ │ │ │ ├── ListAccountRolesPaginator.js │ │ │ │ │ │ ├── ListAccountsPaginator.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── protocols │ │ │ │ │ │ └── Aws_restJson1.js │ │ │ │ │ ├── runtimeConfig.browser.js │ │ │ │ │ ├── runtimeConfig.js │ │ │ │ │ ├── runtimeConfig.native.js │ │ │ │ │ └── runtimeConfig.shared.js │ │ │ │ ├── dist-es │ │ │ │ │ ├── SSO.js │ │ │ │ │ ├── SSOClient.js │ │ │ │ │ ├── commands │ │ │ │ │ │ ├── GetRoleCredentialsCommand.js │ │ │ │ │ │ ├── ListAccountRolesCommand.js │ │ │ │ │ │ ├── ListAccountsCommand.js │ │ │ │ │ │ ├── LogoutCommand.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── endpoint │ │ │ │ │ │ ├── EndpointParameters.js │ │ │ │ │ │ ├── endpointResolver.js │ │ │ │ │ │ └── ruleset.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── models │ │ │ │ │ │ ├── SSOServiceException.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── models_0.js │ │ │ │ │ ├── pagination │ │ │ │ │ │ ├── Interfaces.js │ │ │ │ │ │ ├── ListAccountRolesPaginator.js │ │ │ │ │ │ ├── ListAccountsPaginator.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── protocols │ │ │ │ │ │ └── Aws_restJson1.js │ │ │ │ │ ├── runtimeConfig.browser.js │ │ │ │ │ ├── runtimeConfig.js │ │ │ │ │ ├── runtimeConfig.native.js │ │ │ │ │ └── runtimeConfig.shared.js │ │ │ │ ├── dist-types │ │ │ │ │ ├── SSO.d.ts │ │ │ │ │ ├── SSOClient.d.ts │ │ │ │ │ ├── commands │ │ │ │ │ │ ├── GetRoleCredentialsCommand.d.ts │ │ │ │ │ │ ├── ListAccountRolesCommand.d.ts │ │ │ │ │ │ ├── ListAccountsCommand.d.ts │ │ │ │ │ │ ├── LogoutCommand.d.ts │ │ │ │ │ │ └── index.d.ts │ │ │ │ │ ├── endpoint │ │ │ │ │ │ ├── EndpointParameters.d.ts │ │ │ │ │ │ ├── endpointResolver.d.ts │ │ │ │ │ │ └── ruleset.d.ts │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── models │ │ │ │ │ │ ├── SSOServiceException.d.ts │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ └── models_0.d.ts │ │ │ │ │ ├── pagination │ │ │ │ │ │ ├── Interfaces.d.ts │ │ │ │ │ │ ├── ListAccountRolesPaginator.d.ts │ │ │ │ │ │ ├── ListAccountsPaginator.d.ts │ │ │ │ │ │ └── index.d.ts │ │ │ │ │ ├── protocols │ │ │ │ │ │ └── Aws_restJson1.d.ts │ │ │ │ │ ├── runtimeConfig.browser.d.ts │ │ │ │ │ ├── runtimeConfig.d.ts │ │ │ │ │ ├── runtimeConfig.native.d.ts │ │ │ │ │ ├── runtimeConfig.shared.d.ts │ │ │ │ │ └── ts3.4 │ │ │ │ │ │ ├── SSO.d.ts │ │ │ │ │ │ ├── SSOClient.d.ts │ │ │ │ │ │ ├── commands │ │ │ │ │ │ ├── GetRoleCredentialsCommand.d.ts │ │ │ │ │ │ ├── ListAccountRolesCommand.d.ts │ │ │ │ │ │ ├── ListAccountsCommand.d.ts │ │ │ │ │ │ ├── LogoutCommand.d.ts │ │ │ │ │ │ └── index.d.ts │ │ │ │ │ │ ├── endpoint │ │ │ │ │ │ ├── EndpointParameters.d.ts │ │ │ │ │ │ ├── endpointResolver.d.ts │ │ │ │ │ │ └── ruleset.d.ts │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── models │ │ │ │ │ │ ├── SSOServiceException.d.ts │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ └── models_0.d.ts │ │ │ │ │ │ ├── pagination │ │ │ │ │ │ ├── Interfaces.d.ts │ │ │ │ │ │ ├── ListAccountRolesPaginator.d.ts │ │ │ │ │ │ ├── ListAccountsPaginator.d.ts │ │ │ │ │ │ └── index.d.ts │ │ │ │ │ │ ├── protocols │ │ │ │ │ │ └── Aws_restJson1.d.ts │ │ │ │ │ │ ├── runtimeConfig.browser.d.ts │ │ │ │ │ │ ├── runtimeConfig.d.ts │ │ │ │ │ │ ├── runtimeConfig.native.d.ts │ │ │ │ │ │ └── runtimeConfig.shared.d.ts │ │ │ │ └── package.json │ │ │ ├── client-sts │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── dist-cjs │ │ │ │ │ ├── STS.js │ │ │ │ │ ├── STSClient.js │ │ │ │ │ ├── commands │ │ │ │ │ │ ├── AssumeRoleCommand.js │ │ │ │ │ │ ├── AssumeRoleWithSAMLCommand.js │ │ │ │ │ │ ├── AssumeRoleWithWebIdentityCommand.js │ │ │ │ │ │ ├── DecodeAuthorizationMessageCommand.js │ │ │ │ │ │ ├── GetAccessKeyInfoCommand.js │ │ │ │ │ │ ├── GetCallerIdentityCommand.js │ │ │ │ │ │ ├── GetFederationTokenCommand.js │ │ │ │ │ │ ├── GetSessionTokenCommand.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── defaultRoleAssumers.js │ │ │ │ │ ├── defaultStsRoleAssumers.js │ │ │ │ │ ├── endpoint │ │ │ │ │ │ ├── EndpointParameters.js │ │ │ │ │ │ ├── endpointResolver.js │ │ │ │ │ │ └── ruleset.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── models │ │ │ │ │ │ ├── STSServiceException.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── models_0.js │ │ │ │ │ ├── protocols │ │ │ │ │ │ └── Aws_query.js │ │ │ │ │ ├── runtimeConfig.browser.js │ │ │ │ │ ├── runtimeConfig.js │ │ │ │ │ ├── runtimeConfig.native.js │ │ │ │ │ └── runtimeConfig.shared.js │ │ │ │ ├── dist-es │ │ │ │ │ ├── STS.js │ │ │ │ │ ├── STSClient.js │ │ │ │ │ ├── commands │ │ │ │ │ │ ├── AssumeRoleCommand.js │ │ │ │ │ │ ├── AssumeRoleWithSAMLCommand.js │ │ │ │ │ │ ├── AssumeRoleWithWebIdentityCommand.js │ │ │ │ │ │ ├── DecodeAuthorizationMessageCommand.js │ │ │ │ │ │ ├── GetAccessKeyInfoCommand.js │ │ │ │ │ │ ├── GetCallerIdentityCommand.js │ │ │ │ │ │ ├── GetFederationTokenCommand.js │ │ │ │ │ │ ├── GetSessionTokenCommand.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── defaultRoleAssumers.js │ │ │ │ │ ├── defaultStsRoleAssumers.js │ │ │ │ │ ├── endpoint │ │ │ │ │ │ ├── EndpointParameters.js │ │ │ │ │ │ ├── endpointResolver.js │ │ │ │ │ │ └── ruleset.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── models │ │ │ │ │ │ ├── STSServiceException.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── models_0.js │ │ │ │ │ ├── protocols │ │ │ │ │ │ └── Aws_query.js │ │ │ │ │ ├── runtimeConfig.browser.js │ │ │ │ │ ├── runtimeConfig.js │ │ │ │ │ ├── runtimeConfig.native.js │ │ │ │ │ └── runtimeConfig.shared.js │ │ │ │ ├── dist-types │ │ │ │ │ ├── STS.d.ts │ │ │ │ │ ├── STSClient.d.ts │ │ │ │ │ ├── commands │ │ │ │ │ │ ├── AssumeRoleCommand.d.ts │ │ │ │ │ │ ├── AssumeRoleWithSAMLCommand.d.ts │ │ │ │ │ │ ├── AssumeRoleWithWebIdentityCommand.d.ts │ │ │ │ │ │ ├── DecodeAuthorizationMessageCommand.d.ts │ │ │ │ │ │ ├── GetAccessKeyInfoCommand.d.ts │ │ │ │ │ │ ├── GetCallerIdentityCommand.d.ts │ │ │ │ │ │ ├── GetFederationTokenCommand.d.ts │ │ │ │ │ │ ├── GetSessionTokenCommand.d.ts │ │ │ │ │ │ └── index.d.ts │ │ │ │ │ ├── defaultRoleAssumers.d.ts │ │ │ │ │ ├── defaultStsRoleAssumers.d.ts │ │ │ │ │ ├── endpoint │ │ │ │ │ │ ├── EndpointParameters.d.ts │ │ │ │ │ │ ├── endpointResolver.d.ts │ │ │ │ │ │ └── ruleset.d.ts │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── models │ │ │ │ │ │ ├── STSServiceException.d.ts │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ └── models_0.d.ts │ │ │ │ │ ├── protocols │ │ │ │ │ │ └── Aws_query.d.ts │ │ │ │ │ ├── runtimeConfig.browser.d.ts │ │ │ │ │ ├── runtimeConfig.d.ts │ │ │ │ │ ├── runtimeConfig.native.d.ts │ │ │ │ │ ├── runtimeConfig.shared.d.ts │ │ │ │ │ └── ts3.4 │ │ │ │ │ │ ├── STS.d.ts │ │ │ │ │ │ ├── STSClient.d.ts │ │ │ │ │ │ ├── commands │ │ │ │ │ │ ├── AssumeRoleCommand.d.ts │ │ │ │ │ │ ├── AssumeRoleWithSAMLCommand.d.ts │ │ │ │ │ │ ├── AssumeRoleWithWebIdentityCommand.d.ts │ │ │ │ │ │ ├── DecodeAuthorizationMessageCommand.d.ts │ │ │ │ │ │ ├── GetAccessKeyInfoCommand.d.ts │ │ │ │ │ │ ├── GetCallerIdentityCommand.d.ts │ │ │ │ │ │ ├── GetFederationTokenCommand.d.ts │ │ │ │ │ │ ├── GetSessionTokenCommand.d.ts │ │ │ │ │ │ └── index.d.ts │ │ │ │ │ │ ├── defaultRoleAssumers.d.ts │ │ │ │ │ │ ├── defaultStsRoleAssumers.d.ts │ │ │ │ │ │ ├── endpoint │ │ │ │ │ │ ├── EndpointParameters.d.ts │ │ │ │ │ │ ├── endpointResolver.d.ts │ │ │ │ │ │ └── ruleset.d.ts │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── models │ │ │ │ │ │ ├── STSServiceException.d.ts │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ └── models_0.d.ts │ │ │ │ │ │ ├── protocols │ │ │ │ │ │ └── Aws_query.d.ts │ │ │ │ │ │ ├── runtimeConfig.browser.d.ts │ │ │ │ │ │ ├── runtimeConfig.d.ts │ │ │ │ │ │ ├── runtimeConfig.native.d.ts │ │ │ │ │ │ └── runtimeConfig.shared.d.ts │ │ │ │ └── package.json │ │ │ ├── config-resolver │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── dist-cjs │ │ │ │ │ ├── endpointsConfig │ │ │ │ │ │ ├── NodeUseDualstackEndpointConfigOptions.js │ │ │ │ │ │ ├── NodeUseFipsEndpointConfigOptions.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── resolveCustomEndpointsConfig.js │ │ │ │ │ │ ├── resolveEndpointsConfig.js │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ └── getEndpointFromRegion.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── regionConfig │ │ │ │ │ │ ├── config.js │ │ │ │ │ │ ├── getRealRegion.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── isFipsRegion.js │ │ │ │ │ │ └── resolveRegionConfig.js │ │ │ │ │ └── regionInfo │ │ │ │ │ │ ├── EndpointVariant.js │ │ │ │ │ │ ├── EndpointVariantTag.js │ │ │ │ │ │ ├── PartitionHash.js │ │ │ │ │ │ ├── RegionHash.js │ │ │ │ │ │ ├── getHostnameFromVariants.js │ │ │ │ │ │ ├── getRegionInfo.js │ │ │ │ │ │ ├── getResolvedHostname.js │ │ │ │ │ │ ├── getResolvedPartition.js │ │ │ │ │ │ ├── getResolvedSigningRegion.js │ │ │ │ │ │ └── index.js │ │ │ │ ├── dist-es │ │ │ │ │ ├── endpointsConfig │ │ │ │ │ │ ├── NodeUseDualstackEndpointConfigOptions.js │ │ │ │ │ │ ├── NodeUseFipsEndpointConfigOptions.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── resolveCustomEndpointsConfig.js │ │ │ │ │ │ ├── resolveEndpointsConfig.js │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ └── getEndpointFromRegion.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── regionConfig │ │ │ │ │ │ ├── config.js │ │ │ │ │ │ ├── getRealRegion.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── isFipsRegion.js │ │ │ │ │ │ └── resolveRegionConfig.js │ │ │ │ │ └── regionInfo │ │ │ │ │ │ ├── EndpointVariant.js │ │ │ │ │ │ ├── EndpointVariantTag.js │ │ │ │ │ │ ├── PartitionHash.js │ │ │ │ │ │ ├── RegionHash.js │ │ │ │ │ │ ├── getHostnameFromVariants.js │ │ │ │ │ │ ├── getRegionInfo.js │ │ │ │ │ │ ├── getResolvedHostname.js │ │ │ │ │ │ ├── getResolvedPartition.js │ │ │ │ │ │ ├── getResolvedSigningRegion.js │ │ │ │ │ │ └── index.js │ │ │ │ ├── dist-types │ │ │ │ │ ├── endpointsConfig │ │ │ │ │ │ ├── NodeUseDualstackEndpointConfigOptions.d.ts │ │ │ │ │ │ ├── NodeUseFipsEndpointConfigOptions.d.ts │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── resolveCustomEndpointsConfig.d.ts │ │ │ │ │ │ ├── resolveEndpointsConfig.d.ts │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ └── getEndpointFromRegion.d.ts │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── regionConfig │ │ │ │ │ │ ├── config.d.ts │ │ │ │ │ │ ├── getRealRegion.d.ts │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── isFipsRegion.d.ts │ │ │ │ │ │ └── resolveRegionConfig.d.ts │ │ │ │ │ ├── regionInfo │ │ │ │ │ │ ├── EndpointVariant.d.ts │ │ │ │ │ │ ├── EndpointVariantTag.d.ts │ │ │ │ │ │ ├── PartitionHash.d.ts │ │ │ │ │ │ ├── RegionHash.d.ts │ │ │ │ │ │ ├── getHostnameFromVariants.d.ts │ │ │ │ │ │ ├── getRegionInfo.d.ts │ │ │ │ │ │ ├── getResolvedHostname.d.ts │ │ │ │ │ │ ├── getResolvedPartition.d.ts │ │ │ │ │ │ ├── getResolvedSigningRegion.d.ts │ │ │ │ │ │ └── index.d.ts │ │ │ │ │ └── ts3.4 │ │ │ │ │ │ ├── endpointsConfig │ │ │ │ │ │ ├── NodeUseDualstackEndpointConfigOptions.d.ts │ │ │ │ │ │ ├── NodeUseFipsEndpointConfigOptions.d.ts │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── resolveCustomEndpointsConfig.d.ts │ │ │ │ │ │ ├── resolveEndpointsConfig.d.ts │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ └── getEndpointFromRegion.d.ts │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── regionConfig │ │ │ │ │ │ ├── config.d.ts │ │ │ │ │ │ ├── getRealRegion.d.ts │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── isFipsRegion.d.ts │ │ │ │ │ │ └── resolveRegionConfig.d.ts │ │ │ │ │ │ └── regionInfo │ │ │ │ │ │ ├── EndpointVariant.d.ts │ │ │ │ │ │ ├── EndpointVariantTag.d.ts │ │ │ │ │ │ ├── PartitionHash.d.ts │ │ │ │ │ │ ├── RegionHash.d.ts │ │ │ │ │ │ ├── getHostnameFromVariants.d.ts │ │ │ │ │ │ ├── getRegionInfo.d.ts │ │ │ │ │ │ ├── getResolvedHostname.d.ts │ │ │ │ │ │ ├── getResolvedPartition.d.ts │ │ │ │ │ │ ├── getResolvedSigningRegion.d.ts │ │ │ │ │ │ └── index.d.ts │ │ │ │ └── package.json │ │ │ ├── credential-provider-cognito-identity │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── dist-cjs │ │ │ │ │ ├── CognitoProviderParameters.js │ │ │ │ │ ├── InMemoryStorage.js │ │ │ │ │ ├── IndexedDbStorage.js │ │ │ │ │ ├── Logins.js │ │ │ │ │ ├── Storage.js │ │ │ │ │ ├── fromCognitoIdentity.js │ │ │ │ │ ├── fromCognitoIdentityPool.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── localStorage.js │ │ │ │ │ └── resolveLogins.js │ │ │ │ ├── dist-es │ │ │ │ │ ├── CognitoProviderParameters.js │ │ │ │ │ ├── InMemoryStorage.js │ │ │ │ │ ├── IndexedDbStorage.js │ │ │ │ │ ├── Logins.js │ │ │ │ │ ├── Storage.js │ │ │ │ │ ├── fromCognitoIdentity.js │ │ │ │ │ ├── fromCognitoIdentityPool.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── localStorage.js │ │ │ │ │ └── resolveLogins.js │ │ │ │ ├── dist-types │ │ │ │ │ ├── CognitoProviderParameters.d.ts │ │ │ │ │ ├── InMemoryStorage.d.ts │ │ │ │ │ ├── IndexedDbStorage.d.ts │ │ │ │ │ ├── Logins.d.ts │ │ │ │ │ ├── Storage.d.ts │ │ │ │ │ ├── fromCognitoIdentity.d.ts │ │ │ │ │ ├── fromCognitoIdentityPool.d.ts │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── localStorage.d.ts │ │ │ │ │ ├── resolveLogins.d.ts │ │ │ │ │ └── ts3.4 │ │ │ │ │ │ ├── CognitoProviderParameters.d.ts │ │ │ │ │ │ ├── InMemoryStorage.d.ts │ │ │ │ │ │ ├── IndexedDbStorage.d.ts │ │ │ │ │ │ ├── Logins.d.ts │ │ │ │ │ │ ├── Storage.d.ts │ │ │ │ │ │ ├── fromCognitoIdentity.d.ts │ │ │ │ │ │ ├── fromCognitoIdentityPool.d.ts │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── localStorage.d.ts │ │ │ │ │ │ └── resolveLogins.d.ts │ │ │ │ └── package.json │ │ │ ├── credential-provider-env │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── dist-cjs │ │ │ │ │ ├── fromEnv.js │ │ │ │ │ └── index.js │ │ │ │ ├── dist-es │ │ │ │ │ ├── fromEnv.js │ │ │ │ │ └── index.js │ │ │ │ ├── dist-types │ │ │ │ │ ├── fromEnv.d.ts │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── ts3.4 │ │ │ │ │ │ ├── fromEnv.d.ts │ │ │ │ │ │ └── index.d.ts │ │ │ │ └── package.json │ │ │ ├── credential-provider-imds │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── dist-cjs │ │ │ │ │ ├── config │ │ │ │ │ │ ├── Endpoint.js │ │ │ │ │ │ ├── EndpointConfigOptions.js │ │ │ │ │ │ ├── EndpointMode.js │ │ │ │ │ │ └── EndpointModeConfigOptions.js │ │ │ │ │ ├── fromContainerMetadata.js │ │ │ │ │ ├── fromInstanceMetadata.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── remoteProvider │ │ │ │ │ │ ├── ImdsCredentials.js │ │ │ │ │ │ ├── RemoteProviderInit.js │ │ │ │ │ │ ├── httpRequest.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── retry.js │ │ │ │ │ ├── types.js │ │ │ │ │ └── utils │ │ │ │ │ │ ├── getExtendedInstanceMetadataCredentials.js │ │ │ │ │ │ ├── getInstanceMetadataEndpoint.js │ │ │ │ │ │ └── staticStabilityProvider.js │ │ │ │ ├── dist-es │ │ │ │ │ ├── config │ │ │ │ │ │ ├── Endpoint.js │ │ │ │ │ │ ├── EndpointConfigOptions.js │ │ │ │ │ │ ├── EndpointMode.js │ │ │ │ │ │ └── EndpointModeConfigOptions.js │ │ │ │ │ ├── fromContainerMetadata.js │ │ │ │ │ ├── fromInstanceMetadata.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── remoteProvider │ │ │ │ │ │ ├── ImdsCredentials.js │ │ │ │ │ │ ├── RemoteProviderInit.js │ │ │ │ │ │ ├── httpRequest.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── retry.js │ │ │ │ │ ├── types.js │ │ │ │ │ └── utils │ │ │ │ │ │ ├── getExtendedInstanceMetadataCredentials.js │ │ │ │ │ │ ├── getInstanceMetadataEndpoint.js │ │ │ │ │ │ └── staticStabilityProvider.js │ │ │ │ ├── dist-types │ │ │ │ │ ├── config │ │ │ │ │ │ ├── Endpoint.d.ts │ │ │ │ │ │ ├── EndpointConfigOptions.d.ts │ │ │ │ │ │ ├── EndpointMode.d.ts │ │ │ │ │ │ └── EndpointModeConfigOptions.d.ts │ │ │ │ │ ├── fromContainerMetadata.d.ts │ │ │ │ │ ├── fromInstanceMetadata.d.ts │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── remoteProvider │ │ │ │ │ │ ├── ImdsCredentials.d.ts │ │ │ │ │ │ ├── RemoteProviderInit.d.ts │ │ │ │ │ │ ├── httpRequest.d.ts │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ └── retry.d.ts │ │ │ │ │ ├── ts3.4 │ │ │ │ │ │ ├── config │ │ │ │ │ │ │ ├── Endpoint.d.ts │ │ │ │ │ │ │ ├── EndpointConfigOptions.d.ts │ │ │ │ │ │ │ ├── EndpointMode.d.ts │ │ │ │ │ │ │ └── EndpointModeConfigOptions.d.ts │ │ │ │ │ │ ├── fromContainerMetadata.d.ts │ │ │ │ │ │ ├── fromInstanceMetadata.d.ts │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── remoteProvider │ │ │ │ │ │ │ ├── ImdsCredentials.d.ts │ │ │ │ │ │ │ ├── RemoteProviderInit.d.ts │ │ │ │ │ │ │ ├── httpRequest.d.ts │ │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ │ └── retry.d.ts │ │ │ │ │ │ ├── types.d.ts │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ ├── getExtendedInstanceMetadataCredentials.d.ts │ │ │ │ │ │ │ ├── getInstanceMetadataEndpoint.d.ts │ │ │ │ │ │ │ └── staticStabilityProvider.d.ts │ │ │ │ │ ├── types.d.ts │ │ │ │ │ └── utils │ │ │ │ │ │ ├── getExtendedInstanceMetadataCredentials.d.ts │ │ │ │ │ │ ├── getInstanceMetadataEndpoint.d.ts │ │ │ │ │ │ └── staticStabilityProvider.d.ts │ │ │ │ └── package.json │ │ │ ├── credential-provider-ini │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── dist-cjs │ │ │ │ │ ├── fromIni.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── resolveAssumeRoleCredentials.js │ │ │ │ │ ├── resolveCredentialSource.js │ │ │ │ │ ├── resolveProfileData.js │ │ │ │ │ ├── resolveSsoCredentials.js │ │ │ │ │ ├── resolveStaticCredentials.js │ │ │ │ │ └── resolveWebIdentityCredentials.js │ │ │ │ ├── dist-es │ │ │ │ │ ├── fromIni.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── resolveAssumeRoleCredentials.js │ │ │ │ │ ├── resolveCredentialSource.js │ │ │ │ │ ├── resolveProfileData.js │ │ │ │ │ ├── resolveSsoCredentials.js │ │ │ │ │ ├── resolveStaticCredentials.js │ │ │ │ │ └── resolveWebIdentityCredentials.js │ │ │ │ ├── dist-types │ │ │ │ │ ├── fromIni.d.ts │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── resolveAssumeRoleCredentials.d.ts │ │ │ │ │ ├── resolveCredentialSource.d.ts │ │ │ │ │ ├── resolveProfileData.d.ts │ │ │ │ │ ├── resolveSsoCredentials.d.ts │ │ │ │ │ ├── resolveStaticCredentials.d.ts │ │ │ │ │ ├── resolveWebIdentityCredentials.d.ts │ │ │ │ │ └── ts3.4 │ │ │ │ │ │ ├── fromIni.d.ts │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── resolveAssumeRoleCredentials.d.ts │ │ │ │ │ │ ├── resolveCredentialSource.d.ts │ │ │ │ │ │ ├── resolveProfileData.d.ts │ │ │ │ │ │ ├── resolveSsoCredentials.d.ts │ │ │ │ │ │ ├── resolveStaticCredentials.d.ts │ │ │ │ │ │ └── resolveWebIdentityCredentials.d.ts │ │ │ │ └── package.json │ │ │ ├── credential-provider-node │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── dist-cjs │ │ │ │ │ ├── defaultProvider.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── remoteProvider.js │ │ │ │ ├── dist-es │ │ │ │ │ ├── defaultProvider.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── remoteProvider.js │ │ │ │ ├── dist-types │ │ │ │ │ ├── defaultProvider.d.ts │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── remoteProvider.d.ts │ │ │ │ │ └── ts3.4 │ │ │ │ │ │ ├── defaultProvider.d.ts │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ └── remoteProvider.d.ts │ │ │ │ └── package.json │ │ │ ├── credential-provider-process │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── dist-cjs │ │ │ │ │ ├── ProcessCredentials.js │ │ │ │ │ ├── fromProcess.js │ │ │ │ │ ├── getValidatedProcessCredentials.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── resolveProcessCredentials.js │ │ │ │ ├── dist-es │ │ │ │ │ ├── ProcessCredentials.js │ │ │ │ │ ├── fromProcess.js │ │ │ │ │ ├── getValidatedProcessCredentials.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── resolveProcessCredentials.js │ │ │ │ ├── dist-types │ │ │ │ │ ├── ProcessCredentials.d.ts │ │ │ │ │ ├── fromProcess.d.ts │ │ │ │ │ ├── getValidatedProcessCredentials.d.ts │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── resolveProcessCredentials.d.ts │ │ │ │ │ └── ts3.4 │ │ │ │ │ │ ├── ProcessCredentials.d.ts │ │ │ │ │ │ ├── fromProcess.d.ts │ │ │ │ │ │ ├── getValidatedProcessCredentials.d.ts │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ └── resolveProcessCredentials.d.ts │ │ │ │ └── package.json │ │ │ ├── credential-provider-sso │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── dist-cjs │ │ │ │ │ ├── fromSSO.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── isSsoProfile.js │ │ │ │ │ ├── resolveSSOCredentials.js │ │ │ │ │ ├── types.js │ │ │ │ │ └── validateSsoProfile.js │ │ │ │ ├── dist-es │ │ │ │ │ ├── fromSSO.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── isSsoProfile.js │ │ │ │ │ ├── resolveSSOCredentials.js │ │ │ │ │ ├── types.js │ │ │ │ │ └── validateSsoProfile.js │ │ │ │ ├── dist-types │ │ │ │ │ ├── fromSSO.d.ts │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── isSsoProfile.d.ts │ │ │ │ │ ├── resolveSSOCredentials.d.ts │ │ │ │ │ ├── ts3.4 │ │ │ │ │ │ ├── fromSSO.d.ts │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── isSsoProfile.d.ts │ │ │ │ │ │ ├── resolveSSOCredentials.d.ts │ │ │ │ │ │ ├── types.d.ts │ │ │ │ │ │ └── validateSsoProfile.d.ts │ │ │ │ │ ├── types.d.ts │ │ │ │ │ └── validateSsoProfile.d.ts │ │ │ │ └── package.json │ │ │ ├── credential-provider-web-identity │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── dist-cjs │ │ │ │ │ ├── fromTokenFile.js │ │ │ │ │ ├── fromWebToken.js │ │ │ │ │ └── index.js │ │ │ │ ├── dist-es │ │ │ │ │ ├── fromTokenFile.js │ │ │ │ │ ├── fromWebToken.js │ │ │ │ │ └── index.js │ │ │ │ ├── dist-types │ │ │ │ │ ├── fromTokenFile.d.ts │ │ │ │ │ ├── fromWebToken.d.ts │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── ts3.4 │ │ │ │ │ │ ├── fromTokenFile.d.ts │ │ │ │ │ │ ├── fromWebToken.d.ts │ │ │ │ │ │ └── index.d.ts │ │ │ │ └── package.json │ │ │ ├── credential-providers │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── dist-cjs │ │ │ │ │ ├── fromCognitoIdentity.js │ │ │ │ │ ├── fromCognitoIdentityPool.js │ │ │ │ │ ├── fromContainerMetadata.js │ │ │ │ │ ├── fromEnv.js │ │ │ │ │ ├── fromIni.js │ │ │ │ │ ├── fromInstanceMetadata.js │ │ │ │ │ ├── fromNodeProviderChain.js │ │ │ │ │ ├── fromProcess.js │ │ │ │ │ ├── fromSSO.js │ │ │ │ │ ├── fromTemporaryCredentials.js │ │ │ │ │ ├── fromTokenFile.js │ │ │ │ │ ├── fromWebToken.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.web.js │ │ │ │ ├── dist-es │ │ │ │ │ ├── fromCognitoIdentity.js │ │ │ │ │ ├── fromCognitoIdentityPool.js │ │ │ │ │ ├── fromContainerMetadata.js │ │ │ │ │ ├── fromEnv.js │ │ │ │ │ ├── fromIni.js │ │ │ │ │ ├── fromInstanceMetadata.js │ │ │ │ │ ├── fromNodeProviderChain.js │ │ │ │ │ ├── fromProcess.js │ │ │ │ │ ├── fromSSO.js │ │ │ │ │ ├── fromTemporaryCredentials.js │ │ │ │ │ ├── fromTokenFile.js │ │ │ │ │ ├── fromWebToken.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.web.js │ │ │ │ ├── dist-types │ │ │ │ │ ├── fromCognitoIdentity.d.ts │ │ │ │ │ ├── fromCognitoIdentityPool.d.ts │ │ │ │ │ ├── fromContainerMetadata.d.ts │ │ │ │ │ ├── fromEnv.d.ts │ │ │ │ │ ├── fromIni.d.ts │ │ │ │ │ ├── fromInstanceMetadata.d.ts │ │ │ │ │ ├── fromNodeProviderChain.d.ts │ │ │ │ │ ├── fromProcess.d.ts │ │ │ │ │ ├── fromSSO.d.ts │ │ │ │ │ ├── fromTemporaryCredentials.d.ts │ │ │ │ │ ├── fromTokenFile.d.ts │ │ │ │ │ ├── fromWebToken.d.ts │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.web.d.ts │ │ │ │ │ └── ts3.4 │ │ │ │ │ │ ├── fromCognitoIdentity.d.ts │ │ │ │ │ │ ├── fromCognitoIdentityPool.d.ts │ │ │ │ │ │ ├── fromContainerMetadata.d.ts │ │ │ │ │ │ ├── fromEnv.d.ts │ │ │ │ │ │ ├── fromIni.d.ts │ │ │ │ │ │ ├── fromInstanceMetadata.d.ts │ │ │ │ │ │ ├── fromNodeProviderChain.d.ts │ │ │ │ │ │ ├── fromProcess.d.ts │ │ │ │ │ │ ├── fromSSO.d.ts │ │ │ │ │ │ ├── fromTemporaryCredentials.d.ts │ │ │ │ │ │ ├── fromTokenFile.d.ts │ │ │ │ │ │ ├── fromWebToken.d.ts │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ └── index.web.d.ts │ │ │ │ └── package.json │ │ │ ├── fetch-http-handler │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── dist-cjs │ │ │ │ │ ├── fetch-http-handler.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── request-timeout.js │ │ │ │ │ └── stream-collector.js │ │ │ │ ├── dist-es │ │ │ │ │ ├── fetch-http-handler.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── request-timeout.js │ │ │ │ │ └── stream-collector.js │ │ │ │ ├── dist-types │ │ │ │ │ ├── fetch-http-handler.d.ts │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── request-timeout.d.ts │ │ │ │ │ ├── stream-collector.d.ts │ │ │ │ │ └── ts3.4 │ │ │ │ │ │ ├── fetch-http-handler.d.ts │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── request-timeout.d.ts │ │ │ │ │ │ └── stream-collector.d.ts │ │ │ │ └── package.json │ │ │ ├── hash-node │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── dist-cjs │ │ │ │ │ └── index.js │ │ │ │ ├── dist-es │ │ │ │ │ └── index.js │ │ │ │ ├── dist-types │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── ts3.4 │ │ │ │ │ │ └── index.d.ts │ │ │ │ └── package.json │ │ │ ├── invalid-dependency │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── dist-cjs │ │ │ │ │ ├── index.js │ │ │ │ │ ├── invalidFunction.js │ │ │ │ │ └── invalidProvider.js │ │ │ │ ├── dist-es │ │ │ │ │ ├── index.js │ │ │ │ │ ├── invalidFunction.js │ │ │ │ │ └── invalidProvider.js │ │ │ │ ├── dist-types │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── invalidFunction.d.ts │ │ │ │ │ ├── invalidProvider.d.ts │ │ │ │ │ └── ts3.4 │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── invalidFunction.d.ts │ │ │ │ │ │ └── invalidProvider.d.ts │ │ │ │ └── package.json │ │ │ ├── is-array-buffer │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── dist-cjs │ │ │ │ │ └── index.js │ │ │ │ ├── dist-es │ │ │ │ │ └── index.js │ │ │ │ ├── dist-types │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── ts3.4 │ │ │ │ │ │ └── index.d.ts │ │ │ │ └── package.json │ │ │ ├── middleware-content-length │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── dist-cjs │ │ │ │ │ └── index.js │ │ │ │ ├── dist-es │ │ │ │ │ └── index.js │ │ │ │ ├── dist-types │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── ts3.4 │ │ │ │ │ │ └── index.d.ts │ │ │ │ └── package.json │ │ │ ├── middleware-endpoint │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── dist-cjs │ │ │ │ │ ├── adaptors │ │ │ │ │ │ ├── createConfigValueProvider.js │ │ │ │ │ │ ├── getEndpointFromInstructions.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── toEndpointV1.js │ │ │ │ │ ├── endpointMiddleware.js │ │ │ │ │ ├── getEndpointPlugin.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── resolveEndpointConfig.js │ │ │ │ │ ├── service-customizations │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── s3.js │ │ │ │ │ └── types.js │ │ │ │ ├── dist-es │ │ │ │ │ ├── adaptors │ │ │ │ │ │ ├── createConfigValueProvider.js │ │ │ │ │ │ ├── getEndpointFromInstructions.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── toEndpointV1.js │ │ │ │ │ ├── endpointMiddleware.js │ │ │ │ │ ├── getEndpointPlugin.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── resolveEndpointConfig.js │ │ │ │ │ ├── service-customizations │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── s3.js │ │ │ │ │ └── types.js │ │ │ │ ├── dist-types │ │ │ │ │ ├── adaptors │ │ │ │ │ │ ├── createConfigValueProvider.d.ts │ │ │ │ │ │ ├── getEndpointFromInstructions.d.ts │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ └── toEndpointV1.d.ts │ │ │ │ │ ├── endpointMiddleware.d.ts │ │ │ │ │ ├── getEndpointPlugin.d.ts │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── resolveEndpointConfig.d.ts │ │ │ │ │ ├── service-customizations │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ └── s3.d.ts │ │ │ │ │ ├── ts3.4 │ │ │ │ │ │ ├── adaptors │ │ │ │ │ │ │ ├── createConfigValueProvider.d.ts │ │ │ │ │ │ │ ├── getEndpointFromInstructions.d.ts │ │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ │ └── toEndpointV1.d.ts │ │ │ │ │ │ ├── endpointMiddleware.d.ts │ │ │ │ │ │ ├── getEndpointPlugin.d.ts │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── resolveEndpointConfig.d.ts │ │ │ │ │ │ ├── service-customizations │ │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ │ └── s3.d.ts │ │ │ │ │ │ └── types.d.ts │ │ │ │ │ └── types.d.ts │ │ │ │ └── package.json │ │ │ ├── middleware-host-header │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── dist-cjs │ │ │ │ │ └── index.js │ │ │ │ ├── dist-es │ │ │ │ │ └── index.js │ │ │ │ ├── dist-types │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── ts3.4 │ │ │ │ │ │ └── index.d.ts │ │ │ │ └── package.json │ │ │ ├── middleware-logger │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── dist-cjs │ │ │ │ │ ├── index.js │ │ │ │ │ └── loggerMiddleware.js │ │ │ │ ├── dist-es │ │ │ │ │ ├── index.js │ │ │ │ │ └── loggerMiddleware.js │ │ │ │ ├── dist-types │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── loggerMiddleware.d.ts │ │ │ │ │ └── ts3.4 │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ └── loggerMiddleware.d.ts │ │ │ │ └── package.json │ │ │ ├── middleware-recursion-detection │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── dist-cjs │ │ │ │ │ └── index.js │ │ │ │ ├── dist-es │ │ │ │ │ └── index.js │ │ │ │ ├── dist-types │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── ts3.4 │ │ │ │ │ │ └── index.d.ts │ │ │ │ └── package.json │ │ │ ├── middleware-retry │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── dist-cjs │ │ │ │ │ ├── AdaptiveRetryStrategy.js │ │ │ │ │ ├── DefaultRateLimiter.js │ │ │ │ │ ├── StandardRetryStrategy.js │ │ │ │ │ ├── config.js │ │ │ │ │ ├── configurations.js │ │ │ │ │ ├── constants.js │ │ │ │ │ ├── defaultRetryQuota.js │ │ │ │ │ ├── delayDecider.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── omitRetryHeadersMiddleware.js │ │ │ │ │ ├── retryDecider.js │ │ │ │ │ ├── retryMiddleware.js │ │ │ │ │ └── types.js │ │ │ │ ├── dist-es │ │ │ │ │ ├── AdaptiveRetryStrategy.js │ │ │ │ │ ├── DefaultRateLimiter.js │ │ │ │ │ ├── StandardRetryStrategy.js │ │ │ │ │ ├── config.js │ │ │ │ │ ├── configurations.js │ │ │ │ │ ├── constants.js │ │ │ │ │ ├── defaultRetryQuota.js │ │ │ │ │ ├── delayDecider.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── omitRetryHeadersMiddleware.js │ │ │ │ │ ├── retryDecider.js │ │ │ │ │ ├── retryMiddleware.js │ │ │ │ │ └── types.js │ │ │ │ ├── dist-types │ │ │ │ │ ├── AdaptiveRetryStrategy.d.ts │ │ │ │ │ ├── DefaultRateLimiter.d.ts │ │ │ │ │ ├── StandardRetryStrategy.d.ts │ │ │ │ │ ├── config.d.ts │ │ │ │ │ ├── configurations.d.ts │ │ │ │ │ ├── constants.d.ts │ │ │ │ │ ├── defaultRetryQuota.d.ts │ │ │ │ │ ├── delayDecider.d.ts │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── omitRetryHeadersMiddleware.d.ts │ │ │ │ │ ├── retryDecider.d.ts │ │ │ │ │ ├── retryMiddleware.d.ts │ │ │ │ │ ├── ts3.4 │ │ │ │ │ │ ├── AdaptiveRetryStrategy.d.ts │ │ │ │ │ │ ├── DefaultRateLimiter.d.ts │ │ │ │ │ │ ├── StandardRetryStrategy.d.ts │ │ │ │ │ │ ├── config.d.ts │ │ │ │ │ │ ├── configurations.d.ts │ │ │ │ │ │ ├── constants.d.ts │ │ │ │ │ │ ├── defaultRetryQuota.d.ts │ │ │ │ │ │ ├── delayDecider.d.ts │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── omitRetryHeadersMiddleware.d.ts │ │ │ │ │ │ ├── retryDecider.d.ts │ │ │ │ │ │ ├── retryMiddleware.d.ts │ │ │ │ │ │ └── types.d.ts │ │ │ │ │ └── types.d.ts │ │ │ │ └── package.json │ │ │ ├── middleware-sdk-sts │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── dist-cjs │ │ │ │ │ └── index.js │ │ │ │ ├── dist-es │ │ │ │ │ └── index.js │ │ │ │ ├── dist-types │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── ts3.4 │ │ │ │ │ │ └── index.d.ts │ │ │ │ └── package.json │ │ │ ├── middleware-serde │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── dist-cjs │ │ │ │ │ ├── deserializerMiddleware.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── serdePlugin.js │ │ │ │ │ └── serializerMiddleware.js │ │ │ │ ├── dist-es │ │ │ │ │ ├── deserializerMiddleware.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── serdePlugin.js │ │ │ │ │ └── serializerMiddleware.js │ │ │ │ ├── dist-types │ │ │ │ │ ├── deserializerMiddleware.d.ts │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── serdePlugin.d.ts │ │ │ │ │ ├── serializerMiddleware.d.ts │ │ │ │ │ └── ts3.4 │ │ │ │ │ │ ├── deserializerMiddleware.d.ts │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── serdePlugin.d.ts │ │ │ │ │ │ └── serializerMiddleware.d.ts │ │ │ │ └── package.json │ │ │ ├── middleware-signing │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── dist-cjs │ │ │ │ │ ├── configurations.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── middleware.js │ │ │ │ │ └── utils │ │ │ │ │ │ ├── getSkewCorrectedDate.js │ │ │ │ │ │ ├── getUpdatedSystemClockOffset.js │ │ │ │ │ │ └── isClockSkewed.js │ │ │ │ ├── dist-es │ │ │ │ │ ├── configurations.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── middleware.js │ │ │ │ │ └── utils │ │ │ │ │ │ ├── getSkewCorrectedDate.js │ │ │ │ │ │ ├── getUpdatedSystemClockOffset.js │ │ │ │ │ │ └── isClockSkewed.js │ │ │ │ ├── dist-types │ │ │ │ │ ├── configurations.d.ts │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── middleware.d.ts │ │ │ │ │ ├── ts3.4 │ │ │ │ │ │ ├── configurations.d.ts │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── middleware.d.ts │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ ├── getSkewCorrectedDate.d.ts │ │ │ │ │ │ │ ├── getUpdatedSystemClockOffset.d.ts │ │ │ │ │ │ │ └── isClockSkewed.d.ts │ │ │ │ │ └── utils │ │ │ │ │ │ ├── getSkewCorrectedDate.d.ts │ │ │ │ │ │ ├── getUpdatedSystemClockOffset.d.ts │ │ │ │ │ │ └── isClockSkewed.d.ts │ │ │ │ └── package.json │ │ │ ├── middleware-stack │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── dist-cjs │ │ │ │ │ ├── MiddlewareStack.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── types.js │ │ │ │ ├── dist-es │ │ │ │ │ ├── MiddlewareStack.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── types.js │ │ │ │ ├── dist-types │ │ │ │ │ ├── MiddlewareStack.d.ts │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── ts3.4 │ │ │ │ │ │ ├── MiddlewareStack.d.ts │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ └── types.d.ts │ │ │ │ │ └── types.d.ts │ │ │ │ └── package.json │ │ │ ├── middleware-user-agent │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── dist-cjs │ │ │ │ │ ├── configurations.js │ │ │ │ │ ├── constants.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── user-agent-middleware.js │ │ │ │ ├── dist-es │ │ │ │ │ ├── configurations.js │ │ │ │ │ ├── constants.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── user-agent-middleware.js │ │ │ │ ├── dist-types │ │ │ │ │ ├── configurations.d.ts │ │ │ │ │ ├── constants.d.ts │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── ts3.4 │ │ │ │ │ │ ├── configurations.d.ts │ │ │ │ │ │ ├── constants.d.ts │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ └── user-agent-middleware.d.ts │ │ │ │ │ └── user-agent-middleware.d.ts │ │ │ │ └── package.json │ │ │ ├── node-config-provider │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── dist-cjs │ │ │ │ │ ├── configLoader.js │ │ │ │ │ ├── fromEnv.js │ │ │ │ │ ├── fromSharedConfigFiles.js │ │ │ │ │ ├── fromStatic.js │ │ │ │ │ └── index.js │ │ │ │ ├── dist-es │ │ │ │ │ ├── configLoader.js │ │ │ │ │ ├── fromEnv.js │ │ │ │ │ ├── fromSharedConfigFiles.js │ │ │ │ │ ├── fromStatic.js │ │ │ │ │ └── index.js │ │ │ │ ├── dist-types │ │ │ │ │ ├── configLoader.d.ts │ │ │ │ │ ├── fromEnv.d.ts │ │ │ │ │ ├── fromSharedConfigFiles.d.ts │ │ │ │ │ ├── fromStatic.d.ts │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── ts3.4 │ │ │ │ │ │ ├── configLoader.d.ts │ │ │ │ │ │ ├── fromEnv.d.ts │ │ │ │ │ │ ├── fromSharedConfigFiles.d.ts │ │ │ │ │ │ ├── fromStatic.d.ts │ │ │ │ │ │ └── index.d.ts │ │ │ │ └── package.json │ │ │ ├── node-http-handler │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── dist-cjs │ │ │ │ │ ├── constants.js │ │ │ │ │ ├── get-transformed-headers.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── node-http-handler.js │ │ │ │ │ ├── node-http2-handler.js │ │ │ │ │ ├── readable.mock.js │ │ │ │ │ ├── server.mock.js │ │ │ │ │ ├── set-connection-timeout.js │ │ │ │ │ ├── set-socket-timeout.js │ │ │ │ │ ├── stream-collector │ │ │ │ │ │ ├── collector.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── readable.mock.js │ │ │ │ │ └── write-request-body.js │ │ │ │ ├── dist-es │ │ │ │ │ ├── constants.js │ │ │ │ │ ├── get-transformed-headers.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── node-http-handler.js │ │ │ │ │ ├── node-http2-handler.js │ │ │ │ │ ├── readable.mock.js │ │ │ │ │ ├── server.mock.js │ │ │ │ │ ├── set-connection-timeout.js │ │ │ │ │ ├── set-socket-timeout.js │ │ │ │ │ ├── stream-collector │ │ │ │ │ │ ├── collector.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── readable.mock.js │ │ │ │ │ └── write-request-body.js │ │ │ │ ├── dist-types │ │ │ │ │ ├── constants.d.ts │ │ │ │ │ ├── get-transformed-headers.d.ts │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── node-http-handler.d.ts │ │ │ │ │ ├── node-http2-handler.d.ts │ │ │ │ │ ├── readable.mock.d.ts │ │ │ │ │ ├── server.mock.d.ts │ │ │ │ │ ├── set-connection-timeout.d.ts │ │ │ │ │ ├── set-socket-timeout.d.ts │ │ │ │ │ ├── stream-collector │ │ │ │ │ │ ├── collector.d.ts │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ └── readable.mock.d.ts │ │ │ │ │ ├── ts3.4 │ │ │ │ │ │ ├── constants.d.ts │ │ │ │ │ │ ├── get-transformed-headers.d.ts │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── node-http-handler.d.ts │ │ │ │ │ │ ├── node-http2-handler.d.ts │ │ │ │ │ │ ├── readable.mock.d.ts │ │ │ │ │ │ ├── server.mock.d.ts │ │ │ │ │ │ ├── set-connection-timeout.d.ts │ │ │ │ │ │ ├── set-socket-timeout.d.ts │ │ │ │ │ │ ├── stream-collector │ │ │ │ │ │ │ ├── collector.d.ts │ │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ │ └── readable.mock.d.ts │ │ │ │ │ │ └── write-request-body.d.ts │ │ │ │ │ └── write-request-body.d.ts │ │ │ │ └── package.json │ │ │ ├── property-provider │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── dist-cjs │ │ │ │ │ ├── CredentialsProviderError.js │ │ │ │ │ ├── ProviderError.js │ │ │ │ │ ├── TokenProviderError.js │ │ │ │ │ ├── chain.js │ │ │ │ │ ├── fromStatic.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── memoize.js │ │ │ │ ├── dist-es │ │ │ │ │ ├── CredentialsProviderError.js │ │ │ │ │ ├── ProviderError.js │ │ │ │ │ ├── TokenProviderError.js │ │ │ │ │ ├── chain.js │ │ │ │ │ ├── fromStatic.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── memoize.js │ │ │ │ ├── dist-types │ │ │ │ │ ├── CredentialsProviderError.d.ts │ │ │ │ │ ├── ProviderError.d.ts │ │ │ │ │ ├── TokenProviderError.d.ts │ │ │ │ │ ├── chain.d.ts │ │ │ │ │ ├── fromStatic.d.ts │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── memoize.d.ts │ │ │ │ │ └── ts3.4 │ │ │ │ │ │ ├── CredentialsProviderError.d.ts │ │ │ │ │ │ ├── ProviderError.d.ts │ │ │ │ │ │ ├── TokenProviderError.d.ts │ │ │ │ │ │ ├── chain.d.ts │ │ │ │ │ │ ├── fromStatic.d.ts │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ └── memoize.d.ts │ │ │ │ └── package.json │ │ │ ├── protocol-http │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── dist-cjs │ │ │ │ │ ├── httpHandler.js │ │ │ │ │ ├── httpRequest.js │ │ │ │ │ ├── httpResponse.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── isValidHostname.js │ │ │ │ ├── dist-es │ │ │ │ │ ├── httpHandler.js │ │ │ │ │ ├── httpRequest.js │ │ │ │ │ ├── httpResponse.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── isValidHostname.js │ │ │ │ ├── dist-types │ │ │ │ │ ├── httpHandler.d.ts │ │ │ │ │ ├── httpRequest.d.ts │ │ │ │ │ ├── httpResponse.d.ts │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── isValidHostname.d.ts │ │ │ │ │ └── ts3.4 │ │ │ │ │ │ ├── httpHandler.d.ts │ │ │ │ │ │ ├── httpRequest.d.ts │ │ │ │ │ │ ├── httpResponse.d.ts │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ └── isValidHostname.d.ts │ │ │ │ └── package.json │ │ │ ├── querystring-builder │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── dist-cjs │ │ │ │ │ └── index.js │ │ │ │ ├── dist-es │ │ │ │ │ └── index.js │ │ │ │ ├── dist-types │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── ts3.4 │ │ │ │ │ │ └── index.d.ts │ │ │ │ └── package.json │ │ │ ├── querystring-parser │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── dist-cjs │ │ │ │ │ └── index.js │ │ │ │ ├── dist-es │ │ │ │ │ └── index.js │ │ │ │ ├── dist-types │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── ts3.4 │ │ │ │ │ │ └── index.d.ts │ │ │ │ └── package.json │ │ │ ├── service-error-classification │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── dist-cjs │ │ │ │ │ ├── constants.js │ │ │ │ │ └── index.js │ │ │ │ ├── dist-es │ │ │ │ │ ├── constants.js │ │ │ │ │ └── index.js │ │ │ │ ├── dist-types │ │ │ │ │ ├── constants.d.ts │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── ts3.4 │ │ │ │ │ │ ├── constants.d.ts │ │ │ │ │ │ └── index.d.ts │ │ │ │ └── package.json │ │ │ ├── shared-ini-file-loader │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── dist-cjs │ │ │ │ │ ├── getConfigFilepath.js │ │ │ │ │ ├── getCredentialsFilepath.js │ │ │ │ │ ├── getHomeDir.js │ │ │ │ │ ├── getProfileData.js │ │ │ │ │ ├── getProfileName.js │ │ │ │ │ ├── getSSOTokenFilepath.js │ │ │ │ │ ├── getSSOTokenFromFile.js │ │ │ │ │ ├── getSsoSessionData.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── loadSharedConfigFiles.js │ │ │ │ │ ├── loadSsoSessionData.js │ │ │ │ │ ├── parseIni.js │ │ │ │ │ ├── parseKnownFiles.js │ │ │ │ │ ├── slurpFile.js │ │ │ │ │ └── types.js │ │ │ │ ├── dist-es │ │ │ │ │ ├── getConfigFilepath.js │ │ │ │ │ ├── getCredentialsFilepath.js │ │ │ │ │ ├── getHomeDir.js │ │ │ │ │ ├── getProfileData.js │ │ │ │ │ ├── getProfileName.js │ │ │ │ │ ├── getSSOTokenFilepath.js │ │ │ │ │ ├── getSSOTokenFromFile.js │ │ │ │ │ ├── getSsoSessionData.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── loadSharedConfigFiles.js │ │ │ │ │ ├── loadSsoSessionData.js │ │ │ │ │ ├── parseIni.js │ │ │ │ │ ├── parseKnownFiles.js │ │ │ │ │ ├── slurpFile.js │ │ │ │ │ └── types.js │ │ │ │ ├── dist-types │ │ │ │ │ ├── getConfigFilepath.d.ts │ │ │ │ │ ├── getCredentialsFilepath.d.ts │ │ │ │ │ ├── getHomeDir.d.ts │ │ │ │ │ ├── getProfileData.d.ts │ │ │ │ │ ├── getProfileName.d.ts │ │ │ │ │ ├── getSSOTokenFilepath.d.ts │ │ │ │ │ ├── getSSOTokenFromFile.d.ts │ │ │ │ │ ├── getSsoSessionData.d.ts │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── loadSharedConfigFiles.d.ts │ │ │ │ │ ├── loadSsoSessionData.d.ts │ │ │ │ │ ├── parseIni.d.ts │ │ │ │ │ ├── parseKnownFiles.d.ts │ │ │ │ │ ├── slurpFile.d.ts │ │ │ │ │ ├── ts3.4 │ │ │ │ │ │ ├── getConfigFilepath.d.ts │ │ │ │ │ │ ├── getCredentialsFilepath.d.ts │ │ │ │ │ │ ├── getHomeDir.d.ts │ │ │ │ │ │ ├── getProfileData.d.ts │ │ │ │ │ │ ├── getProfileName.d.ts │ │ │ │ │ │ ├── getSSOTokenFilepath.d.ts │ │ │ │ │ │ ├── getSSOTokenFromFile.d.ts │ │ │ │ │ │ ├── getSsoSessionData.d.ts │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── loadSharedConfigFiles.d.ts │ │ │ │ │ │ ├── loadSsoSessionData.d.ts │ │ │ │ │ │ ├── parseIni.d.ts │ │ │ │ │ │ ├── parseKnownFiles.d.ts │ │ │ │ │ │ ├── slurpFile.d.ts │ │ │ │ │ │ └── types.d.ts │ │ │ │ │ └── types.d.ts │ │ │ │ └── package.json │ │ │ ├── signature-v4 │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── dist-cjs │ │ │ │ │ ├── SignatureV4.js │ │ │ │ │ ├── cloneRequest.js │ │ │ │ │ ├── constants.js │ │ │ │ │ ├── credentialDerivation.js │ │ │ │ │ ├── getCanonicalHeaders.js │ │ │ │ │ ├── getCanonicalQuery.js │ │ │ │ │ ├── getPayloadHash.js │ │ │ │ │ ├── headerUtil.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── moveHeadersToQuery.js │ │ │ │ │ ├── prepareRequest.js │ │ │ │ │ ├── suite.fixture.js │ │ │ │ │ └── utilDate.js │ │ │ │ ├── dist-es │ │ │ │ │ ├── SignatureV4.js │ │ │ │ │ ├── cloneRequest.js │ │ │ │ │ ├── constants.js │ │ │ │ │ ├── credentialDerivation.js │ │ │ │ │ ├── getCanonicalHeaders.js │ │ │ │ │ ├── getCanonicalQuery.js │ │ │ │ │ ├── getPayloadHash.js │ │ │ │ │ ├── headerUtil.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── moveHeadersToQuery.js │ │ │ │ │ ├── prepareRequest.js │ │ │ │ │ ├── suite.fixture.js │ │ │ │ │ └── utilDate.js │ │ │ │ ├── dist-types │ │ │ │ │ ├── SignatureV4.d.ts │ │ │ │ │ ├── cloneRequest.d.ts │ │ │ │ │ ├── constants.d.ts │ │ │ │ │ ├── credentialDerivation.d.ts │ │ │ │ │ ├── getCanonicalHeaders.d.ts │ │ │ │ │ ├── getCanonicalQuery.d.ts │ │ │ │ │ ├── getPayloadHash.d.ts │ │ │ │ │ ├── headerUtil.d.ts │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── moveHeadersToQuery.d.ts │ │ │ │ │ ├── prepareRequest.d.ts │ │ │ │ │ ├── suite.fixture.d.ts │ │ │ │ │ ├── ts3.4 │ │ │ │ │ │ ├── SignatureV4.d.ts │ │ │ │ │ │ ├── cloneRequest.d.ts │ │ │ │ │ │ ├── constants.d.ts │ │ │ │ │ │ ├── credentialDerivation.d.ts │ │ │ │ │ │ ├── getCanonicalHeaders.d.ts │ │ │ │ │ │ ├── getCanonicalQuery.d.ts │ │ │ │ │ │ ├── getPayloadHash.d.ts │ │ │ │ │ │ ├── headerUtil.d.ts │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── moveHeadersToQuery.d.ts │ │ │ │ │ │ ├── prepareRequest.d.ts │ │ │ │ │ │ ├── suite.fixture.d.ts │ │ │ │ │ │ └── utilDate.d.ts │ │ │ │ │ └── utilDate.d.ts │ │ │ │ └── package.json │ │ │ ├── smithy-client │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── dist-cjs │ │ │ │ │ ├── NoOpLogger.js │ │ │ │ │ ├── client.js │ │ │ │ │ ├── command.js │ │ │ │ │ ├── constants.js │ │ │ │ │ ├── date-utils.js │ │ │ │ │ ├── default-error-handler.js │ │ │ │ │ ├── defaults-mode.js │ │ │ │ │ ├── emitWarningIfUnsupportedVersion.js │ │ │ │ │ ├── exceptions.js │ │ │ │ │ ├── extended-encode-uri-component.js │ │ │ │ │ ├── get-array-if-single-item.js │ │ │ │ │ ├── get-value-from-text-node.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── lazy-json.js │ │ │ │ │ ├── object-mapping.js │ │ │ │ │ ├── parse-utils.js │ │ │ │ │ ├── resolve-path.js │ │ │ │ │ ├── ser-utils.js │ │ │ │ │ └── split-every.js │ │ │ │ ├── dist-es │ │ │ │ │ ├── NoOpLogger.js │ │ │ │ │ ├── client.js │ │ │ │ │ ├── command.js │ │ │ │ │ ├── constants.js │ │ │ │ │ ├── date-utils.js │ │ │ │ │ ├── default-error-handler.js │ │ │ │ │ ├── defaults-mode.js │ │ │ │ │ ├── emitWarningIfUnsupportedVersion.js │ │ │ │ │ ├── exceptions.js │ │ │ │ │ ├── extended-encode-uri-component.js │ │ │ │ │ ├── get-array-if-single-item.js │ │ │ │ │ ├── get-value-from-text-node.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── lazy-json.js │ │ │ │ │ ├── object-mapping.js │ │ │ │ │ ├── parse-utils.js │ │ │ │ │ ├── resolve-path.js │ │ │ │ │ ├── ser-utils.js │ │ │ │ │ └── split-every.js │ │ │ │ ├── dist-types │ │ │ │ │ ├── NoOpLogger.d.ts │ │ │ │ │ ├── client.d.ts │ │ │ │ │ ├── command.d.ts │ │ │ │ │ ├── constants.d.ts │ │ │ │ │ ├── date-utils.d.ts │ │ │ │ │ ├── default-error-handler.d.ts │ │ │ │ │ ├── defaults-mode.d.ts │ │ │ │ │ ├── emitWarningIfUnsupportedVersion.d.ts │ │ │ │ │ ├── exceptions.d.ts │ │ │ │ │ ├── extended-encode-uri-component.d.ts │ │ │ │ │ ├── get-array-if-single-item.d.ts │ │ │ │ │ ├── get-value-from-text-node.d.ts │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── lazy-json.d.ts │ │ │ │ │ ├── object-mapping.d.ts │ │ │ │ │ ├── parse-utils.d.ts │ │ │ │ │ ├── resolve-path.d.ts │ │ │ │ │ ├── ser-utils.d.ts │ │ │ │ │ ├── split-every.d.ts │ │ │ │ │ └── ts3.4 │ │ │ │ │ │ ├── NoOpLogger.d.ts │ │ │ │ │ │ ├── client.d.ts │ │ │ │ │ │ ├── command.d.ts │ │ │ │ │ │ ├── constants.d.ts │ │ │ │ │ │ ├── date-utils.d.ts │ │ │ │ │ │ ├── default-error-handler.d.ts │ │ │ │ │ │ ├── defaults-mode.d.ts │ │ │ │ │ │ ├── emitWarningIfUnsupportedVersion.d.ts │ │ │ │ │ │ ├── exceptions.d.ts │ │ │ │ │ │ ├── extended-encode-uri-component.d.ts │ │ │ │ │ │ ├── get-array-if-single-item.d.ts │ │ │ │ │ │ ├── get-value-from-text-node.d.ts │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── lazy-json.d.ts │ │ │ │ │ │ ├── object-mapping.d.ts │ │ │ │ │ │ ├── parse-utils.d.ts │ │ │ │ │ │ ├── resolve-path.d.ts │ │ │ │ │ │ ├── ser-utils.d.ts │ │ │ │ │ │ └── split-every.d.ts │ │ │ │ └── package.json │ │ │ ├── token-providers │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── dist-cjs │ │ │ │ │ ├── constants.js │ │ │ │ │ ├── fromSso.js │ │ │ │ │ ├── fromStatic.js │ │ │ │ │ ├── getNewSsoOidcToken.js │ │ │ │ │ ├── getSsoOidcClient.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── nodeProvider.js │ │ │ │ │ ├── validateTokenExpiry.js │ │ │ │ │ ├── validateTokenKey.js │ │ │ │ │ └── writeSSOTokenToFile.js │ │ │ │ ├── dist-es │ │ │ │ │ ├── constants.js │ │ │ │ │ ├── fromSso.js │ │ │ │ │ ├── fromStatic.js │ │ │ │ │ ├── getNewSsoOidcToken.js │ │ │ │ │ ├── getSsoOidcClient.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── nodeProvider.js │ │ │ │ │ ├── validateTokenExpiry.js │ │ │ │ │ ├── validateTokenKey.js │ │ │ │ │ └── writeSSOTokenToFile.js │ │ │ │ ├── dist-types │ │ │ │ │ ├── constants.d.ts │ │ │ │ │ ├── fromSso.d.ts │ │ │ │ │ ├── fromStatic.d.ts │ │ │ │ │ ├── getNewSsoOidcToken.d.ts │ │ │ │ │ ├── getSsoOidcClient.d.ts │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── nodeProvider.d.ts │ │ │ │ │ ├── ts3.4 │ │ │ │ │ │ ├── constants.d.ts │ │ │ │ │ │ ├── fromSso.d.ts │ │ │ │ │ │ ├── fromStatic.d.ts │ │ │ │ │ │ ├── getNewSsoOidcToken.d.ts │ │ │ │ │ │ ├── getSsoOidcClient.d.ts │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── nodeProvider.d.ts │ │ │ │ │ │ ├── validateTokenExpiry.d.ts │ │ │ │ │ │ ├── validateTokenKey.d.ts │ │ │ │ │ │ └── writeSSOTokenToFile.d.ts │ │ │ │ │ ├── validateTokenExpiry.d.ts │ │ │ │ │ ├── validateTokenKey.d.ts │ │ │ │ │ └── writeSSOTokenToFile.d.ts │ │ │ │ └── package.json │ │ │ ├── types │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── dist-cjs │ │ │ │ │ ├── abort.js │ │ │ │ │ ├── auth.js │ │ │ │ │ ├── checksum.js │ │ │ │ │ ├── client.js │ │ │ │ │ ├── command.js │ │ │ │ │ ├── credentials.js │ │ │ │ │ ├── crypto.js │ │ │ │ │ ├── endpoint.js │ │ │ │ │ ├── eventStream.js │ │ │ │ │ ├── http.js │ │ │ │ │ ├── identity │ │ │ │ │ │ ├── AnonymousIdentity.js │ │ │ │ │ │ ├── AwsCredentialIdentity.js │ │ │ │ │ │ ├── Identity.js │ │ │ │ │ │ ├── LoginIdentity.js │ │ │ │ │ │ ├── TokenIdentity.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── logger.js │ │ │ │ │ ├── middleware.js │ │ │ │ │ ├── pagination.js │ │ │ │ │ ├── profile.js │ │ │ │ │ ├── response.js │ │ │ │ │ ├── retry.js │ │ │ │ │ ├── serde.js │ │ │ │ │ ├── shapes.js │ │ │ │ │ ├── signature.js │ │ │ │ │ ├── stream.js │ │ │ │ │ ├── token.js │ │ │ │ │ ├── transfer.js │ │ │ │ │ ├── util.js │ │ │ │ │ └── waiter.js │ │ │ │ ├── dist-es │ │ │ │ │ ├── abort.js │ │ │ │ │ ├── auth.js │ │ │ │ │ ├── checksum.js │ │ │ │ │ ├── client.js │ │ │ │ │ ├── command.js │ │ │ │ │ ├── credentials.js │ │ │ │ │ ├── crypto.js │ │ │ │ │ ├── endpoint.js │ │ │ │ │ ├── eventStream.js │ │ │ │ │ ├── http.js │ │ │ │ │ ├── identity │ │ │ │ │ │ ├── AnonymousIdentity.js │ │ │ │ │ │ ├── AwsCredentialIdentity.js │ │ │ │ │ │ ├── Identity.js │ │ │ │ │ │ ├── LoginIdentity.js │ │ │ │ │ │ ├── TokenIdentity.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── logger.js │ │ │ │ │ ├── middleware.js │ │ │ │ │ ├── pagination.js │ │ │ │ │ ├── profile.js │ │ │ │ │ ├── response.js │ │ │ │ │ ├── retry.js │ │ │ │ │ ├── serde.js │ │ │ │ │ ├── shapes.js │ │ │ │ │ ├── signature.js │ │ │ │ │ ├── stream.js │ │ │ │ │ ├── token.js │ │ │ │ │ ├── transfer.js │ │ │ │ │ ├── util.js │ │ │ │ │ └── waiter.js │ │ │ │ ├── dist-types │ │ │ │ │ ├── abort.d.ts │ │ │ │ │ ├── auth.d.ts │ │ │ │ │ ├── checksum.d.ts │ │ │ │ │ ├── client.d.ts │ │ │ │ │ ├── command.d.ts │ │ │ │ │ ├── credentials.d.ts │ │ │ │ │ ├── crypto.d.ts │ │ │ │ │ ├── endpoint.d.ts │ │ │ │ │ ├── eventStream.d.ts │ │ │ │ │ ├── http.d.ts │ │ │ │ │ ├── identity │ │ │ │ │ │ ├── AnonymousIdentity.d.ts │ │ │ │ │ │ ├── AwsCredentialIdentity.d.ts │ │ │ │ │ │ ├── Identity.d.ts │ │ │ │ │ │ ├── LoginIdentity.d.ts │ │ │ │ │ │ ├── TokenIdentity.d.ts │ │ │ │ │ │ └── index.d.ts │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── logger.d.ts │ │ │ │ │ ├── middleware.d.ts │ │ │ │ │ ├── pagination.d.ts │ │ │ │ │ ├── profile.d.ts │ │ │ │ │ ├── response.d.ts │ │ │ │ │ ├── retry.d.ts │ │ │ │ │ ├── serde.d.ts │ │ │ │ │ ├── shapes.d.ts │ │ │ │ │ ├── signature.d.ts │ │ │ │ │ ├── stream.d.ts │ │ │ │ │ ├── token.d.ts │ │ │ │ │ ├── transfer.d.ts │ │ │ │ │ ├── ts3.4 │ │ │ │ │ │ ├── abort.d.ts │ │ │ │ │ │ ├── auth.d.ts │ │ │ │ │ │ ├── checksum.d.ts │ │ │ │ │ │ ├── client.d.ts │ │ │ │ │ │ ├── command.d.ts │ │ │ │ │ │ ├── credentials.d.ts │ │ │ │ │ │ ├── crypto.d.ts │ │ │ │ │ │ ├── endpoint.d.ts │ │ │ │ │ │ ├── eventStream.d.ts │ │ │ │ │ │ ├── http.d.ts │ │ │ │ │ │ ├── identity │ │ │ │ │ │ │ ├── AnonymousIdentity.d.ts │ │ │ │ │ │ │ ├── AwsCredentialIdentity.d.ts │ │ │ │ │ │ │ ├── Identity.d.ts │ │ │ │ │ │ │ ├── LoginIdentity.d.ts │ │ │ │ │ │ │ ├── TokenIdentity.d.ts │ │ │ │ │ │ │ └── index.d.ts │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── logger.d.ts │ │ │ │ │ │ ├── middleware.d.ts │ │ │ │ │ │ ├── pagination.d.ts │ │ │ │ │ │ ├── profile.d.ts │ │ │ │ │ │ ├── response.d.ts │ │ │ │ │ │ ├── retry.d.ts │ │ │ │ │ │ ├── serde.d.ts │ │ │ │ │ │ ├── shapes.d.ts │ │ │ │ │ │ ├── signature.d.ts │ │ │ │ │ │ ├── stream.d.ts │ │ │ │ │ │ ├── token.d.ts │ │ │ │ │ │ ├── transfer.d.ts │ │ │ │ │ │ ├── util.d.ts │ │ │ │ │ │ └── waiter.d.ts │ │ │ │ │ ├── util.d.ts │ │ │ │ │ └── waiter.d.ts │ │ │ │ └── package.json │ │ │ ├── url-parser │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── dist-cjs │ │ │ │ │ └── index.js │ │ │ │ ├── dist-es │ │ │ │ │ └── index.js │ │ │ │ ├── dist-types │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── ts3.4 │ │ │ │ │ │ └── index.d.ts │ │ │ │ └── package.json │ │ │ ├── util-base64 │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── dist-cjs │ │ │ │ │ ├── constants.browser.js │ │ │ │ │ ├── fromBase64.browser.js │ │ │ │ │ ├── fromBase64.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── toBase64.browser.js │ │ │ │ │ └── toBase64.js │ │ │ │ ├── dist-es │ │ │ │ │ ├── constants.browser.js │ │ │ │ │ ├── fromBase64.browser.js │ │ │ │ │ ├── fromBase64.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── toBase64.browser.js │ │ │ │ │ └── toBase64.js │ │ │ │ ├── dist-types │ │ │ │ │ ├── constants.browser.d.ts │ │ │ │ │ ├── fromBase64.browser.d.ts │ │ │ │ │ ├── fromBase64.d.ts │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── toBase64.browser.d.ts │ │ │ │ │ ├── toBase64.d.ts │ │ │ │ │ └── ts3.4 │ │ │ │ │ │ ├── constants.browser.d.ts │ │ │ │ │ │ ├── fromBase64.browser.d.ts │ │ │ │ │ │ ├── fromBase64.d.ts │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── toBase64.browser.d.ts │ │ │ │ │ │ └── toBase64.d.ts │ │ │ │ └── package.json │ │ │ ├── util-body-length-browser │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── dist-cjs │ │ │ │ │ ├── calculateBodyLength.js │ │ │ │ │ └── index.js │ │ │ │ ├── dist-es │ │ │ │ │ ├── calculateBodyLength.js │ │ │ │ │ └── index.js │ │ │ │ ├── dist-types │ │ │ │ │ ├── calculateBodyLength.d.ts │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── ts3.4 │ │ │ │ │ │ ├── calculateBodyLength.d.ts │ │ │ │ │ │ └── index.d.ts │ │ │ │ └── package.json │ │ │ ├── util-body-length-node │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── dist-cjs │ │ │ │ │ ├── calculateBodyLength.js │ │ │ │ │ └── index.js │ │ │ │ ├── dist-es │ │ │ │ │ ├── calculateBodyLength.js │ │ │ │ │ └── index.js │ │ │ │ ├── dist-types │ │ │ │ │ ├── calculateBodyLength.d.ts │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── ts3.4 │ │ │ │ │ │ ├── calculateBodyLength.d.ts │ │ │ │ │ │ └── index.d.ts │ │ │ │ └── package.json │ │ │ ├── util-buffer-from │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── dist-cjs │ │ │ │ │ └── index.js │ │ │ │ ├── dist-es │ │ │ │ │ └── index.js │ │ │ │ ├── dist-types │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── ts3.4 │ │ │ │ │ │ └── index.d.ts │ │ │ │ └── package.json │ │ │ ├── util-config-provider │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── dist-cjs │ │ │ │ │ ├── booleanSelector.js │ │ │ │ │ └── index.js │ │ │ │ ├── dist-es │ │ │ │ │ ├── booleanSelector.js │ │ │ │ │ └── index.js │ │ │ │ ├── dist-types │ │ │ │ │ ├── booleanSelector.d.ts │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── ts3.4 │ │ │ │ │ │ ├── booleanSelector.d.ts │ │ │ │ │ │ └── index.d.ts │ │ │ │ └── package.json │ │ │ ├── util-defaults-mode-browser │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── dist-cjs │ │ │ │ │ ├── constants.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── resolveDefaultsModeConfig.js │ │ │ │ │ └── resolveDefaultsModeConfig.native.js │ │ │ │ ├── dist-es │ │ │ │ │ ├── constants.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── resolveDefaultsModeConfig.js │ │ │ │ │ └── resolveDefaultsModeConfig.native.js │ │ │ │ ├── dist-types │ │ │ │ │ ├── constants.d.ts │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── resolveDefaultsModeConfig.d.ts │ │ │ │ │ ├── resolveDefaultsModeConfig.native.d.ts │ │ │ │ │ └── ts3.4 │ │ │ │ │ │ ├── constants.d.ts │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── resolveDefaultsModeConfig.d.ts │ │ │ │ │ │ └── resolveDefaultsModeConfig.native.d.ts │ │ │ │ └── package.json │ │ │ ├── util-defaults-mode-node │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── dist-cjs │ │ │ │ │ ├── constants.js │ │ │ │ │ ├── defaultsModeConfig.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── resolveDefaultsModeConfig.js │ │ │ │ ├── dist-es │ │ │ │ │ ├── constants.js │ │ │ │ │ ├── defaultsModeConfig.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── resolveDefaultsModeConfig.js │ │ │ │ ├── dist-types │ │ │ │ │ ├── constants.d.ts │ │ │ │ │ ├── defaultsModeConfig.d.ts │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── resolveDefaultsModeConfig.d.ts │ │ │ │ │ └── ts3.4 │ │ │ │ │ │ ├── constants.d.ts │ │ │ │ │ │ ├── defaultsModeConfig.d.ts │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ └── resolveDefaultsModeConfig.d.ts │ │ │ │ └── package.json │ │ │ ├── util-endpoints │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── dist-cjs │ │ │ │ │ ├── debug │ │ │ │ │ │ ├── debugId.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── toDebugString.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── aws │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── isVirtualHostableS3Bucket.js │ │ │ │ │ │ │ ├── parseArn.js │ │ │ │ │ │ │ ├── partition.js │ │ │ │ │ │ │ └── partitions.json │ │ │ │ │ │ ├── booleanEquals.js │ │ │ │ │ │ ├── getAttr.js │ │ │ │ │ │ ├── getAttrPathList.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── isIpAddress.js │ │ │ │ │ │ ├── isSet.js │ │ │ │ │ │ ├── isValidHostLabel.js │ │ │ │ │ │ ├── not.js │ │ │ │ │ │ ├── parseURL.js │ │ │ │ │ │ ├── stringEquals.js │ │ │ │ │ │ ├── substring.js │ │ │ │ │ │ └── uriEncode.js │ │ │ │ │ ├── resolveEndpoint.js │ │ │ │ │ ├── types │ │ │ │ │ │ ├── EndpointError.js │ │ │ │ │ │ ├── EndpointRuleObject.js │ │ │ │ │ │ ├── ErrorRuleObject.js │ │ │ │ │ │ ├── RuleSetObject.js │ │ │ │ │ │ ├── TreeRuleObject.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── shared.js │ │ │ │ │ └── utils │ │ │ │ │ │ ├── callFunction.js │ │ │ │ │ │ ├── evaluateCondition.js │ │ │ │ │ │ ├── evaluateConditions.js │ │ │ │ │ │ ├── evaluateEndpointRule.js │ │ │ │ │ │ ├── evaluateErrorRule.js │ │ │ │ │ │ ├── evaluateExpression.js │ │ │ │ │ │ ├── evaluateRules.js │ │ │ │ │ │ ├── evaluateTemplate.js │ │ │ │ │ │ ├── evaluateTreeRule.js │ │ │ │ │ │ ├── getEndpointHeaders.js │ │ │ │ │ │ ├── getEndpointProperties.js │ │ │ │ │ │ ├── getEndpointProperty.js │ │ │ │ │ │ ├── getEndpointUrl.js │ │ │ │ │ │ ├── getReferenceValue.js │ │ │ │ │ │ └── index.js │ │ │ │ ├── dist-es │ │ │ │ │ ├── debug │ │ │ │ │ │ ├── debugId.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── toDebugString.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── aws │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── isVirtualHostableS3Bucket.js │ │ │ │ │ │ │ ├── parseArn.js │ │ │ │ │ │ │ ├── partition.js │ │ │ │ │ │ │ └── partitions.json │ │ │ │ │ │ ├── booleanEquals.js │ │ │ │ │ │ ├── getAttr.js │ │ │ │ │ │ ├── getAttrPathList.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── isIpAddress.js │ │ │ │ │ │ ├── isSet.js │ │ │ │ │ │ ├── isValidHostLabel.js │ │ │ │ │ │ ├── not.js │ │ │ │ │ │ ├── parseURL.js │ │ │ │ │ │ ├── stringEquals.js │ │ │ │ │ │ ├── substring.js │ │ │ │ │ │ └── uriEncode.js │ │ │ │ │ ├── resolveEndpoint.js │ │ │ │ │ ├── types │ │ │ │ │ │ ├── EndpointError.js │ │ │ │ │ │ ├── EndpointRuleObject.js │ │ │ │ │ │ ├── ErrorRuleObject.js │ │ │ │ │ │ ├── RuleSetObject.js │ │ │ │ │ │ ├── TreeRuleObject.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── shared.js │ │ │ │ │ └── utils │ │ │ │ │ │ ├── callFunction.js │ │ │ │ │ │ ├── evaluateCondition.js │ │ │ │ │ │ ├── evaluateConditions.js │ │ │ │ │ │ ├── evaluateEndpointRule.js │ │ │ │ │ │ ├── evaluateErrorRule.js │ │ │ │ │ │ ├── evaluateExpression.js │ │ │ │ │ │ ├── evaluateRules.js │ │ │ │ │ │ ├── evaluateTemplate.js │ │ │ │ │ │ ├── evaluateTreeRule.js │ │ │ │ │ │ ├── getEndpointHeaders.js │ │ │ │ │ │ ├── getEndpointProperties.js │ │ │ │ │ │ ├── getEndpointProperty.js │ │ │ │ │ │ ├── getEndpointUrl.js │ │ │ │ │ │ ├── getReferenceValue.js │ │ │ │ │ │ └── index.js │ │ │ │ ├── dist-types │ │ │ │ │ ├── debug │ │ │ │ │ │ ├── debugId.d.ts │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ └── toDebugString.d.ts │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── aws │ │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ │ ├── isVirtualHostableS3Bucket.d.ts │ │ │ │ │ │ │ ├── parseArn.d.ts │ │ │ │ │ │ │ └── partition.d.ts │ │ │ │ │ │ ├── booleanEquals.d.ts │ │ │ │ │ │ ├── getAttr.d.ts │ │ │ │ │ │ ├── getAttrPathList.d.ts │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── isIpAddress.d.ts │ │ │ │ │ │ ├── isSet.d.ts │ │ │ │ │ │ ├── isValidHostLabel.d.ts │ │ │ │ │ │ ├── not.d.ts │ │ │ │ │ │ ├── parseURL.d.ts │ │ │ │ │ │ ├── stringEquals.d.ts │ │ │ │ │ │ ├── substring.d.ts │ │ │ │ │ │ └── uriEncode.d.ts │ │ │ │ │ ├── resolveEndpoint.d.ts │ │ │ │ │ ├── ts3.4 │ │ │ │ │ │ ├── debug │ │ │ │ │ │ │ ├── debugId.d.ts │ │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ │ └── toDebugString.d.ts │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ ├── aws │ │ │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ │ │ ├── isVirtualHostableS3Bucket.d.ts │ │ │ │ │ │ │ │ ├── parseArn.d.ts │ │ │ │ │ │ │ │ └── partition.d.ts │ │ │ │ │ │ │ ├── booleanEquals.d.ts │ │ │ │ │ │ │ ├── getAttr.d.ts │ │ │ │ │ │ │ ├── getAttrPathList.d.ts │ │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ │ ├── isIpAddress.d.ts │ │ │ │ │ │ │ ├── isSet.d.ts │ │ │ │ │ │ │ ├── isValidHostLabel.d.ts │ │ │ │ │ │ │ ├── not.d.ts │ │ │ │ │ │ │ ├── parseURL.d.ts │ │ │ │ │ │ │ ├── stringEquals.d.ts │ │ │ │ │ │ │ ├── substring.d.ts │ │ │ │ │ │ │ └── uriEncode.d.ts │ │ │ │ │ │ ├── resolveEndpoint.d.ts │ │ │ │ │ │ ├── types │ │ │ │ │ │ │ ├── EndpointError.d.ts │ │ │ │ │ │ │ ├── EndpointRuleObject.d.ts │ │ │ │ │ │ │ ├── ErrorRuleObject.d.ts │ │ │ │ │ │ │ ├── RuleSetObject.d.ts │ │ │ │ │ │ │ ├── TreeRuleObject.d.ts │ │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ │ └── shared.d.ts │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ ├── callFunction.d.ts │ │ │ │ │ │ │ ├── evaluateCondition.d.ts │ │ │ │ │ │ │ ├── evaluateConditions.d.ts │ │ │ │ │ │ │ ├── evaluateEndpointRule.d.ts │ │ │ │ │ │ │ ├── evaluateErrorRule.d.ts │ │ │ │ │ │ │ ├── evaluateExpression.d.ts │ │ │ │ │ │ │ ├── evaluateRules.d.ts │ │ │ │ │ │ │ ├── evaluateTemplate.d.ts │ │ │ │ │ │ │ ├── evaluateTreeRule.d.ts │ │ │ │ │ │ │ ├── getEndpointHeaders.d.ts │ │ │ │ │ │ │ ├── getEndpointProperties.d.ts │ │ │ │ │ │ │ ├── getEndpointProperty.d.ts │ │ │ │ │ │ │ ├── getEndpointUrl.d.ts │ │ │ │ │ │ │ ├── getReferenceValue.d.ts │ │ │ │ │ │ │ └── index.d.ts │ │ │ │ │ ├── types │ │ │ │ │ │ ├── EndpointError.d.ts │ │ │ │ │ │ ├── EndpointRuleObject.d.ts │ │ │ │ │ │ ├── ErrorRuleObject.d.ts │ │ │ │ │ │ ├── RuleSetObject.d.ts │ │ │ │ │ │ ├── TreeRuleObject.d.ts │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ └── shared.d.ts │ │ │ │ │ └── utils │ │ │ │ │ │ ├── callFunction.d.ts │ │ │ │ │ │ ├── evaluateCondition.d.ts │ │ │ │ │ │ ├── evaluateConditions.d.ts │ │ │ │ │ │ ├── evaluateEndpointRule.d.ts │ │ │ │ │ │ ├── evaluateErrorRule.d.ts │ │ │ │ │ │ ├── evaluateExpression.d.ts │ │ │ │ │ │ ├── evaluateRules.d.ts │ │ │ │ │ │ ├── evaluateTemplate.d.ts │ │ │ │ │ │ ├── evaluateTreeRule.d.ts │ │ │ │ │ │ ├── getEndpointHeaders.d.ts │ │ │ │ │ │ ├── getEndpointProperties.d.ts │ │ │ │ │ │ ├── getEndpointProperty.d.ts │ │ │ │ │ │ ├── getEndpointUrl.d.ts │ │ │ │ │ │ ├── getReferenceValue.d.ts │ │ │ │ │ │ └── index.d.ts │ │ │ │ └── package.json │ │ │ ├── util-hex-encoding │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── dist-cjs │ │ │ │ │ └── index.js │ │ │ │ ├── dist-es │ │ │ │ │ └── index.js │ │ │ │ ├── dist-types │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── ts3.4 │ │ │ │ │ │ └── index.d.ts │ │ │ │ └── package.json │ │ │ ├── util-locate-window │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── dist-cjs │ │ │ │ │ └── index.js │ │ │ │ ├── dist-es │ │ │ │ │ └── index.js │ │ │ │ ├── dist-types │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── ts3.4 │ │ │ │ │ │ └── index.d.ts │ │ │ │ └── package.json │ │ │ ├── util-middleware │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── dist-cjs │ │ │ │ │ ├── index.js │ │ │ │ │ └── normalizeProvider.js │ │ │ │ ├── dist-es │ │ │ │ │ ├── index.js │ │ │ │ │ └── normalizeProvider.js │ │ │ │ ├── dist-types │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── normalizeProvider.d.ts │ │ │ │ │ └── ts3.4 │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ └── normalizeProvider.d.ts │ │ │ │ └── package.json │ │ │ ├── util-uri-escape │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── dist-cjs │ │ │ │ │ ├── escape-uri-path.js │ │ │ │ │ ├── escape-uri.js │ │ │ │ │ └── index.js │ │ │ │ ├── dist-es │ │ │ │ │ ├── escape-uri-path.js │ │ │ │ │ ├── escape-uri.js │ │ │ │ │ └── index.js │ │ │ │ ├── dist-types │ │ │ │ │ ├── escape-uri-path.d.ts │ │ │ │ │ ├── escape-uri.d.ts │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── ts3.4 │ │ │ │ │ │ ├── escape-uri-path.d.ts │ │ │ │ │ │ ├── escape-uri.d.ts │ │ │ │ │ │ └── index.d.ts │ │ │ │ └── package.json │ │ │ ├── util-user-agent-browser │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── dist-cjs │ │ │ │ │ ├── configurations.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.native.js │ │ │ │ ├── dist-es │ │ │ │ │ ├── configurations.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.native.js │ │ │ │ ├── dist-types │ │ │ │ │ ├── configurations.d.ts │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.native.d.ts │ │ │ │ │ └── ts3.4 │ │ │ │ │ │ ├── configurations.d.ts │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ └── index.native.d.ts │ │ │ │ └── package.json │ │ │ ├── util-user-agent-node │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── dist-cjs │ │ │ │ │ ├── index.js │ │ │ │ │ └── is-crt-available.js │ │ │ │ ├── dist-es │ │ │ │ │ ├── index.js │ │ │ │ │ └── is-crt-available.js │ │ │ │ ├── dist-types │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── is-crt-available.d.ts │ │ │ │ │ └── ts3.4 │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ └── is-crt-available.d.ts │ │ │ │ └── package.json │ │ │ ├── util-utf8-browser │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── dist-cjs │ │ │ │ │ ├── index.js │ │ │ │ │ ├── pureJs.js │ │ │ │ │ └── whatwgEncodingApi.js │ │ │ │ ├── dist-es │ │ │ │ │ ├── index.js │ │ │ │ │ ├── pureJs.js │ │ │ │ │ └── whatwgEncodingApi.js │ │ │ │ ├── dist-types │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── pureJs.d.ts │ │ │ │ │ ├── ts3.4 │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── pureJs.d.ts │ │ │ │ │ │ └── whatwgEncodingApi.d.ts │ │ │ │ │ └── whatwgEncodingApi.d.ts │ │ │ │ └── package.json │ │ │ └── util-utf8-node │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── dist-cjs │ │ │ │ └── index.js │ │ │ │ ├── dist-es │ │ │ │ └── index.js │ │ │ │ ├── dist-types │ │ │ │ ├── index.d.ts │ │ │ │ └── ts3.4 │ │ │ │ │ └── index.d.ts │ │ │ │ └── package.json │ │ ├── @types │ │ │ ├── node │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── assert.d.ts │ │ │ │ ├── assert │ │ │ │ │ └── strict.d.ts │ │ │ │ ├── async_hooks.d.ts │ │ │ │ ├── buffer.d.ts │ │ │ │ ├── child_process.d.ts │ │ │ │ ├── cluster.d.ts │ │ │ │ ├── console.d.ts │ │ │ │ ├── constants.d.ts │ │ │ │ ├── crypto.d.ts │ │ │ │ ├── dgram.d.ts │ │ │ │ ├── diagnostics_channel.d.ts │ │ │ │ ├── dns.d.ts │ │ │ │ ├── dns │ │ │ │ │ └── promises.d.ts │ │ │ │ ├── dom-events.d.ts │ │ │ │ ├── domain.d.ts │ │ │ │ ├── events.d.ts │ │ │ │ ├── fs.d.ts │ │ │ │ ├── fs │ │ │ │ │ └── promises.d.ts │ │ │ │ ├── globals.d.ts │ │ │ │ ├── globals.global.d.ts │ │ │ │ ├── http.d.ts │ │ │ │ ├── http2.d.ts │ │ │ │ ├── https.d.ts │ │ │ │ ├── index.d.ts │ │ │ │ ├── inspector.d.ts │ │ │ │ ├── module.d.ts │ │ │ │ ├── net.d.ts │ │ │ │ ├── os.d.ts │ │ │ │ ├── package.json │ │ │ │ ├── path.d.ts │ │ │ │ ├── perf_hooks.d.ts │ │ │ │ ├── process.d.ts │ │ │ │ ├── punycode.d.ts │ │ │ │ ├── querystring.d.ts │ │ │ │ ├── readline.d.ts │ │ │ │ ├── readline │ │ │ │ │ └── promises.d.ts │ │ │ │ ├── repl.d.ts │ │ │ │ ├── stream.d.ts │ │ │ │ ├── stream │ │ │ │ │ ├── consumers.d.ts │ │ │ │ │ ├── promises.d.ts │ │ │ │ │ └── web.d.ts │ │ │ │ ├── string_decoder.d.ts │ │ │ │ ├── test.d.ts │ │ │ │ ├── timers.d.ts │ │ │ │ ├── timers │ │ │ │ │ └── promises.d.ts │ │ │ │ ├── tls.d.ts │ │ │ │ ├── trace_events.d.ts │ │ │ │ ├── ts4.8 │ │ │ │ │ ├── assert.d.ts │ │ │ │ │ ├── assert │ │ │ │ │ │ └── strict.d.ts │ │ │ │ │ ├── async_hooks.d.ts │ │ │ │ │ ├── buffer.d.ts │ │ │ │ │ ├── child_process.d.ts │ │ │ │ │ ├── cluster.d.ts │ │ │ │ │ ├── console.d.ts │ │ │ │ │ ├── constants.d.ts │ │ │ │ │ ├── crypto.d.ts │ │ │ │ │ ├── dgram.d.ts │ │ │ │ │ ├── diagnostics_channel.d.ts │ │ │ │ │ ├── dns.d.ts │ │ │ │ │ ├── dns │ │ │ │ │ │ └── promises.d.ts │ │ │ │ │ ├── dom-events.d.ts │ │ │ │ │ ├── domain.d.ts │ │ │ │ │ ├── events.d.ts │ │ │ │ │ ├── fs.d.ts │ │ │ │ │ ├── fs │ │ │ │ │ │ └── promises.d.ts │ │ │ │ │ ├── globals.d.ts │ │ │ │ │ ├── globals.global.d.ts │ │ │ │ │ ├── http.d.ts │ │ │ │ │ ├── http2.d.ts │ │ │ │ │ ├── https.d.ts │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── inspector.d.ts │ │ │ │ │ ├── module.d.ts │ │ │ │ │ ├── net.d.ts │ │ │ │ │ ├── os.d.ts │ │ │ │ │ ├── path.d.ts │ │ │ │ │ ├── perf_hooks.d.ts │ │ │ │ │ ├── process.d.ts │ │ │ │ │ ├── punycode.d.ts │ │ │ │ │ ├── querystring.d.ts │ │ │ │ │ ├── readline.d.ts │ │ │ │ │ ├── readline │ │ │ │ │ │ └── promises.d.ts │ │ │ │ │ ├── repl.d.ts │ │ │ │ │ ├── stream.d.ts │ │ │ │ │ ├── stream │ │ │ │ │ │ ├── consumers.d.ts │ │ │ │ │ │ ├── promises.d.ts │ │ │ │ │ │ └── web.d.ts │ │ │ │ │ ├── string_decoder.d.ts │ │ │ │ │ ├── test.d.ts │ │ │ │ │ ├── timers.d.ts │ │ │ │ │ ├── timers │ │ │ │ │ │ └── promises.d.ts │ │ │ │ │ ├── tls.d.ts │ │ │ │ │ ├── trace_events.d.ts │ │ │ │ │ ├── tty.d.ts │ │ │ │ │ ├── url.d.ts │ │ │ │ │ ├── util.d.ts │ │ │ │ │ ├── v8.d.ts │ │ │ │ │ ├── vm.d.ts │ │ │ │ │ ├── wasi.d.ts │ │ │ │ │ ├── worker_threads.d.ts │ │ │ │ │ └── zlib.d.ts │ │ │ │ ├── tty.d.ts │ │ │ │ ├── url.d.ts │ │ │ │ ├── util.d.ts │ │ │ │ ├── v8.d.ts │ │ │ │ ├── vm.d.ts │ │ │ │ ├── wasi.d.ts │ │ │ │ ├── worker_threads.d.ts │ │ │ │ └── zlib.d.ts │ │ │ ├── webidl-conversions │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── index.d.ts │ │ │ │ └── package.json │ │ │ └── whatwg-url │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── dist │ │ │ │ ├── URL-impl.d.ts │ │ │ │ ├── URL.d.ts │ │ │ │ ├── URLSearchParams-impl.d.ts │ │ │ │ └── URLSearchParams.d.ts │ │ │ │ ├── index.d.ts │ │ │ │ ├── package.json │ │ │ │ └── webidl2js-wrapper.d.ts │ │ ├── accepts │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── array-flatten │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── array-flatten.js │ │ │ └── package.json │ │ ├── base64-js │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── base64js.min.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── body-parser │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ ├── read.js │ │ │ │ └── types │ │ │ │ │ ├── json.js │ │ │ │ │ ├── raw.js │ │ │ │ │ ├── text.js │ │ │ │ │ └── urlencoded.js │ │ │ └── package.json │ │ ├── bowser │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bundled.js │ │ │ ├── es5.js │ │ │ ├── index.d.ts │ │ │ ├── package.json │ │ │ └── src │ │ │ │ ├── bowser.js │ │ │ │ ├── constants.js │ │ │ │ ├── parser-browsers.js │ │ │ │ ├── parser-engines.js │ │ │ │ ├── parser-os.js │ │ │ │ ├── parser-platforms.js │ │ │ │ ├── parser.js │ │ │ │ └── utils.js │ │ ├── bson │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── bson.d.ts │ │ │ ├── dist │ │ │ │ ├── bson.browser.esm.js │ │ │ │ ├── bson.browser.esm.js.map │ │ │ │ ├── bson.browser.umd.js │ │ │ │ ├── bson.browser.umd.js.map │ │ │ │ ├── bson.bundle.js │ │ │ │ ├── bson.bundle.js.map │ │ │ │ ├── bson.esm.js │ │ │ │ └── bson.esm.js.map │ │ │ ├── etc │ │ │ │ └── prepare.js │ │ │ ├── lib │ │ │ │ ├── binary.js │ │ │ │ ├── binary.js.map │ │ │ │ ├── bson.js │ │ │ │ ├── bson.js.map │ │ │ │ ├── code.js │ │ │ │ ├── code.js.map │ │ │ │ ├── constants.js │ │ │ │ ├── constants.js.map │ │ │ │ ├── db_ref.js │ │ │ │ ├── db_ref.js.map │ │ │ │ ├── decimal128.js │ │ │ │ ├── decimal128.js.map │ │ │ │ ├── double.js │ │ │ │ ├── double.js.map │ │ │ │ ├── ensure_buffer.js │ │ │ │ ├── ensure_buffer.js.map │ │ │ │ ├── error.js │ │ │ │ ├── error.js.map │ │ │ │ ├── extended_json.js │ │ │ │ ├── extended_json.js.map │ │ │ │ ├── int_32.js │ │ │ │ ├── int_32.js.map │ │ │ │ ├── long.js │ │ │ │ ├── long.js.map │ │ │ │ ├── map.js │ │ │ │ ├── map.js.map │ │ │ │ ├── max_key.js │ │ │ │ ├── max_key.js.map │ │ │ │ ├── min_key.js │ │ │ │ ├── min_key.js.map │ │ │ │ ├── objectid.js │ │ │ │ ├── objectid.js.map │ │ │ │ ├── parser │ │ │ │ │ ├── calculate_size.js │ │ │ │ │ ├── calculate_size.js.map │ │ │ │ │ ├── deserializer.js │ │ │ │ │ ├── deserializer.js.map │ │ │ │ │ ├── serializer.js │ │ │ │ │ ├── serializer.js.map │ │ │ │ │ ├── utils.js │ │ │ │ │ └── utils.js.map │ │ │ │ ├── regexp.js │ │ │ │ ├── regexp.js.map │ │ │ │ ├── symbol.js │ │ │ │ ├── symbol.js.map │ │ │ │ ├── timestamp.js │ │ │ │ ├── timestamp.js.map │ │ │ │ ├── utils │ │ │ │ │ ├── global.js │ │ │ │ │ └── global.js.map │ │ │ │ ├── uuid_utils.js │ │ │ │ ├── uuid_utils.js.map │ │ │ │ ├── validate_utf8.js │ │ │ │ └── validate_utf8.js.map │ │ │ ├── package.json │ │ │ └── src │ │ │ │ ├── binary.ts │ │ │ │ ├── bson.ts │ │ │ │ ├── code.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── db_ref.ts │ │ │ │ ├── decimal128.ts │ │ │ │ ├── double.ts │ │ │ │ ├── ensure_buffer.ts │ │ │ │ ├── error.ts │ │ │ │ ├── extended_json.ts │ │ │ │ ├── int_32.ts │ │ │ │ ├── long.ts │ │ │ │ ├── map.ts │ │ │ │ ├── max_key.ts │ │ │ │ ├── min_key.ts │ │ │ │ ├── objectid.ts │ │ │ │ ├── parser │ │ │ │ ├── calculate_size.ts │ │ │ │ ├── deserializer.ts │ │ │ │ ├── serializer.ts │ │ │ │ └── utils.ts │ │ │ │ ├── regexp.ts │ │ │ │ ├── symbol.ts │ │ │ │ ├── timestamp.ts │ │ │ │ ├── utils │ │ │ │ └── global.ts │ │ │ │ ├── uuid_utils.ts │ │ │ │ └── validate_utf8.ts │ │ ├── buffer │ │ │ ├── AUTHORS.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── bytes │ │ │ ├── History.md │ │ │ ├── LICENSE │ │ │ ├── Readme.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── call-bind │ │ │ ├── .eslintignore │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── .nycrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── callBound.js │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── test │ │ │ │ ├── callBound.js │ │ │ │ └── index.js │ │ ├── content-disposition │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── content-type │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── cookie-signature │ │ │ ├── .npmignore │ │ │ ├── History.md │ │ │ ├── Readme.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── cookie │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── debug │ │ │ ├── .coveralls.yml │ │ │ ├── .eslintrc │ │ │ ├── .npmignore │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── component.json │ │ │ ├── karma.conf.js │ │ │ ├── node.js │ │ │ ├── package.json │ │ │ └── src │ │ │ │ ├── browser.js │ │ │ │ ├── debug.js │ │ │ │ ├── index.js │ │ │ │ ├── inspector-log.js │ │ │ │ └── node.js │ │ ├── depd │ │ │ ├── History.md │ │ │ ├── LICENSE │ │ │ ├── Readme.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ └── browser │ │ │ │ │ └── index.js │ │ │ └── package.json │ │ ├── destroy │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── ee-first │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── encodeurl │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── escape-html │ │ │ ├── LICENSE │ │ │ ├── Readme.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── etag │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── express │ │ │ ├── History.md │ │ │ ├── LICENSE │ │ │ ├── Readme.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ ├── application.js │ │ │ │ ├── express.js │ │ │ │ ├── middleware │ │ │ │ │ ├── init.js │ │ │ │ │ └── query.js │ │ │ │ ├── request.js │ │ │ │ ├── response.js │ │ │ │ ├── router │ │ │ │ │ ├── index.js │ │ │ │ │ ├── layer.js │ │ │ │ │ └── route.js │ │ │ │ ├── utils.js │ │ │ │ └── view.js │ │ │ └── package.json │ │ ├── fast-xml-parser │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ └── src │ │ │ │ ├── cli │ │ │ │ ├── cli.js │ │ │ │ ├── man.js │ │ │ │ └── read.js │ │ │ │ ├── fxp.d.ts │ │ │ │ ├── fxp.js │ │ │ │ ├── util.js │ │ │ │ ├── validator.js │ │ │ │ ├── xmlbuilder │ │ │ │ ├── json2xml.js │ │ │ │ ├── orderedJs2Xml.js │ │ │ │ └── prettifyJs2Xml.js │ │ │ │ └── xmlparser │ │ │ │ ├── DocTypeReader.js │ │ │ │ ├── OptionsBuilder.js │ │ │ │ ├── OrderedObjParser.js │ │ │ │ ├── XMLParser.js │ │ │ │ ├── node2json.js │ │ │ │ └── xmlNode.js │ │ ├── finalhandler │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── forwarded │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── fresh │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── function-bind │ │ │ ├── .editorconfig │ │ │ ├── .eslintrc │ │ │ ├── .jscs.json │ │ │ ├── .npmignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── implementation.js │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── test │ │ │ │ ├── .eslintrc │ │ │ │ └── index.js │ │ ├── get-intrinsic │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── .nycrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── test │ │ │ │ └── GetIntrinsic.js │ │ ├── has-symbols │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── .nycrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ ├── shams.js │ │ │ └── test │ │ │ │ ├── index.js │ │ │ │ ├── shams │ │ │ │ ├── core-js.js │ │ │ │ └── get-own-property-symbols.js │ │ │ │ └── tests.js │ │ ├── has │ │ │ ├── LICENSE-MIT │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ └── index.js │ │ │ └── test │ │ │ │ └── index.js │ │ ├── http-errors │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── iconv-lite │ │ │ ├── Changelog.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── encodings │ │ │ │ ├── dbcs-codec.js │ │ │ │ ├── dbcs-data.js │ │ │ │ ├── index.js │ │ │ │ ├── internal.js │ │ │ │ ├── sbcs-codec.js │ │ │ │ ├── sbcs-data-generated.js │ │ │ │ ├── sbcs-data.js │ │ │ │ ├── tables │ │ │ │ │ ├── big5-added.json │ │ │ │ │ ├── cp936.json │ │ │ │ │ ├── cp949.json │ │ │ │ │ ├── cp950.json │ │ │ │ │ ├── eucjp.json │ │ │ │ │ ├── gb18030-ranges.json │ │ │ │ │ ├── gbk-added.json │ │ │ │ │ └── shiftjis.json │ │ │ │ ├── utf16.js │ │ │ │ └── utf7.js │ │ │ ├── lib │ │ │ │ ├── bom-handling.js │ │ │ │ ├── extend-node.js │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── streams.js │ │ │ └── package.json │ │ ├── ieee754 │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── inherits │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── inherits.js │ │ │ ├── inherits_browser.js │ │ │ └── package.json │ │ ├── ip │ │ │ ├── README.md │ │ │ ├── lib │ │ │ │ └── ip.js │ │ │ └── package.json │ │ ├── ipaddr.js │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── ipaddr.min.js │ │ │ ├── lib │ │ │ │ ├── ipaddr.js │ │ │ │ └── ipaddr.js.d.ts │ │ │ └── package.json │ │ ├── kareem │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── media-typer │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── memory-pager │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── test.js │ │ ├── merge-descriptors │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── methods │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── mime-db │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── db.json │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── mime-types │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── mime │ │ │ ├── .npmignore │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── cli.js │ │ │ ├── mime.js │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── build.js │ │ │ │ └── test.js │ │ │ └── types.json │ │ ├── mongodb-connection-string-url │ │ │ ├── .esm-wrapper.mjs │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── lib │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ ├── redact.d.ts │ │ │ │ ├── redact.js │ │ │ │ └── redact.js.map │ │ │ └── package.json │ │ ├── mongodb │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── etc │ │ │ │ └── prepare.js │ │ │ ├── lib │ │ │ │ ├── admin.js │ │ │ │ ├── admin.js.map │ │ │ │ ├── bson.js │ │ │ │ ├── bson.js.map │ │ │ │ ├── bulk │ │ │ │ │ ├── common.js │ │ │ │ │ ├── common.js.map │ │ │ │ │ ├── ordered.js │ │ │ │ │ ├── ordered.js.map │ │ │ │ │ ├── unordered.js │ │ │ │ │ └── unordered.js.map │ │ │ │ ├── change_stream.js │ │ │ │ ├── change_stream.js.map │ │ │ │ ├── cmap │ │ │ │ │ ├── auth │ │ │ │ │ │ ├── auth_provider.js │ │ │ │ │ │ ├── auth_provider.js.map │ │ │ │ │ │ ├── gssapi.js │ │ │ │ │ │ ├── gssapi.js.map │ │ │ │ │ │ ├── mongo_credentials.js │ │ │ │ │ │ ├── mongo_credentials.js.map │ │ │ │ │ │ ├── mongocr.js │ │ │ │ │ │ ├── mongocr.js.map │ │ │ │ │ │ ├── mongodb_aws.js │ │ │ │ │ │ ├── mongodb_aws.js.map │ │ │ │ │ │ ├── plain.js │ │ │ │ │ │ ├── plain.js.map │ │ │ │ │ │ ├── providers.js │ │ │ │ │ │ ├── providers.js.map │ │ │ │ │ │ ├── scram.js │ │ │ │ │ │ ├── scram.js.map │ │ │ │ │ │ ├── x509.js │ │ │ │ │ │ └── x509.js.map │ │ │ │ │ ├── command_monitoring_events.js │ │ │ │ │ ├── command_monitoring_events.js.map │ │ │ │ │ ├── commands.js │ │ │ │ │ ├── commands.js.map │ │ │ │ │ ├── connect.js │ │ │ │ │ ├── connect.js.map │ │ │ │ │ ├── connection.js │ │ │ │ │ ├── connection.js.map │ │ │ │ │ ├── connection_pool.js │ │ │ │ │ ├── connection_pool.js.map │ │ │ │ │ ├── connection_pool_events.js │ │ │ │ │ ├── connection_pool_events.js.map │ │ │ │ │ ├── errors.js │ │ │ │ │ ├── errors.js.map │ │ │ │ │ ├── message_stream.js │ │ │ │ │ ├── message_stream.js.map │ │ │ │ │ ├── metrics.js │ │ │ │ │ ├── metrics.js.map │ │ │ │ │ ├── stream_description.js │ │ │ │ │ ├── stream_description.js.map │ │ │ │ │ └── wire_protocol │ │ │ │ │ │ ├── compression.js │ │ │ │ │ │ ├── compression.js.map │ │ │ │ │ │ ├── constants.js │ │ │ │ │ │ ├── constants.js.map │ │ │ │ │ │ ├── shared.js │ │ │ │ │ │ └── shared.js.map │ │ │ │ ├── collection.js │ │ │ │ ├── collection.js.map │ │ │ │ ├── connection_string.js │ │ │ │ ├── connection_string.js.map │ │ │ │ ├── constants.js │ │ │ │ ├── constants.js.map │ │ │ │ ├── cursor │ │ │ │ │ ├── abstract_cursor.js │ │ │ │ │ ├── abstract_cursor.js.map │ │ │ │ │ ├── aggregation_cursor.js │ │ │ │ │ ├── aggregation_cursor.js.map │ │ │ │ │ ├── change_stream_cursor.js │ │ │ │ │ ├── change_stream_cursor.js.map │ │ │ │ │ ├── find_cursor.js │ │ │ │ │ ├── find_cursor.js.map │ │ │ │ │ ├── list_collections_cursor.js │ │ │ │ │ ├── list_collections_cursor.js.map │ │ │ │ │ ├── list_indexes_cursor.js │ │ │ │ │ └── list_indexes_cursor.js.map │ │ │ │ ├── db.js │ │ │ │ ├── db.js.map │ │ │ │ ├── deps.js │ │ │ │ ├── deps.js.map │ │ │ │ ├── encrypter.js │ │ │ │ ├── encrypter.js.map │ │ │ │ ├── error.js │ │ │ │ ├── error.js.map │ │ │ │ ├── explain.js │ │ │ │ ├── explain.js.map │ │ │ │ ├── gridfs │ │ │ │ │ ├── download.js │ │ │ │ │ ├── download.js.map │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ ├── upload.js │ │ │ │ │ └── upload.js.map │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ ├── logger.js │ │ │ │ ├── logger.js.map │ │ │ │ ├── mongo_client.js │ │ │ │ ├── mongo_client.js.map │ │ │ │ ├── mongo_types.js │ │ │ │ ├── mongo_types.js.map │ │ │ │ ├── operations │ │ │ │ │ ├── add_user.js │ │ │ │ │ ├── add_user.js.map │ │ │ │ │ ├── aggregate.js │ │ │ │ │ ├── aggregate.js.map │ │ │ │ │ ├── bulk_write.js │ │ │ │ │ ├── bulk_write.js.map │ │ │ │ │ ├── collections.js │ │ │ │ │ ├── collections.js.map │ │ │ │ │ ├── command.js │ │ │ │ │ ├── command.js.map │ │ │ │ │ ├── common_functions.js │ │ │ │ │ ├── common_functions.js.map │ │ │ │ │ ├── count.js │ │ │ │ │ ├── count.js.map │ │ │ │ │ ├── count_documents.js │ │ │ │ │ ├── count_documents.js.map │ │ │ │ │ ├── create_collection.js │ │ │ │ │ ├── create_collection.js.map │ │ │ │ │ ├── delete.js │ │ │ │ │ ├── delete.js.map │ │ │ │ │ ├── distinct.js │ │ │ │ │ ├── distinct.js.map │ │ │ │ │ ├── drop.js │ │ │ │ │ ├── drop.js.map │ │ │ │ │ ├── estimated_document_count.js │ │ │ │ │ ├── estimated_document_count.js.map │ │ │ │ │ ├── eval.js │ │ │ │ │ ├── eval.js.map │ │ │ │ │ ├── execute_operation.js │ │ │ │ │ ├── execute_operation.js.map │ │ │ │ │ ├── find.js │ │ │ │ │ ├── find.js.map │ │ │ │ │ ├── find_and_modify.js │ │ │ │ │ ├── find_and_modify.js.map │ │ │ │ │ ├── get_more.js │ │ │ │ │ ├── get_more.js.map │ │ │ │ │ ├── indexes.js │ │ │ │ │ ├── indexes.js.map │ │ │ │ │ ├── insert.js │ │ │ │ │ ├── insert.js.map │ │ │ │ │ ├── is_capped.js │ │ │ │ │ ├── is_capped.js.map │ │ │ │ │ ├── kill_cursors.js │ │ │ │ │ ├── kill_cursors.js.map │ │ │ │ │ ├── list_collections.js │ │ │ │ │ ├── list_collections.js.map │ │ │ │ │ ├── list_databases.js │ │ │ │ │ ├── list_databases.js.map │ │ │ │ │ ├── map_reduce.js │ │ │ │ │ ├── map_reduce.js.map │ │ │ │ │ ├── operation.js │ │ │ │ │ ├── operation.js.map │ │ │ │ │ ├── options_operation.js │ │ │ │ │ ├── options_operation.js.map │ │ │ │ │ ├── profiling_level.js │ │ │ │ │ ├── profiling_level.js.map │ │ │ │ │ ├── remove_user.js │ │ │ │ │ ├── remove_user.js.map │ │ │ │ │ ├── rename.js │ │ │ │ │ ├── rename.js.map │ │ │ │ │ ├── run_command.js │ │ │ │ │ ├── run_command.js.map │ │ │ │ │ ├── set_profiling_level.js │ │ │ │ │ ├── set_profiling_level.js.map │ │ │ │ │ ├── stats.js │ │ │ │ │ ├── stats.js.map │ │ │ │ │ ├── update.js │ │ │ │ │ ├── update.js.map │ │ │ │ │ ├── validate_collection.js │ │ │ │ │ └── validate_collection.js.map │ │ │ │ ├── promise_provider.js │ │ │ │ ├── promise_provider.js.map │ │ │ │ ├── read_concern.js │ │ │ │ ├── read_concern.js.map │ │ │ │ ├── read_preference.js │ │ │ │ ├── read_preference.js.map │ │ │ │ ├── sdam │ │ │ │ │ ├── common.js │ │ │ │ │ ├── common.js.map │ │ │ │ │ ├── events.js │ │ │ │ │ ├── events.js.map │ │ │ │ │ ├── monitor.js │ │ │ │ │ ├── monitor.js.map │ │ │ │ │ ├── server.js │ │ │ │ │ ├── server.js.map │ │ │ │ │ ├── server_description.js │ │ │ │ │ ├── server_description.js.map │ │ │ │ │ ├── server_selection.js │ │ │ │ │ ├── server_selection.js.map │ │ │ │ │ ├── srv_polling.js │ │ │ │ │ ├── srv_polling.js.map │ │ │ │ │ ├── topology.js │ │ │ │ │ ├── topology.js.map │ │ │ │ │ ├── topology_description.js │ │ │ │ │ └── topology_description.js.map │ │ │ │ ├── sessions.js │ │ │ │ ├── sessions.js.map │ │ │ │ ├── sort.js │ │ │ │ ├── sort.js.map │ │ │ │ ├── transactions.js │ │ │ │ ├── transactions.js.map │ │ │ │ ├── utils.js │ │ │ │ ├── utils.js.map │ │ │ │ ├── write_concern.js │ │ │ │ └── write_concern.js.map │ │ │ ├── mongodb.d.ts │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── admin.ts │ │ │ │ ├── bson.ts │ │ │ │ ├── bulk │ │ │ │ │ ├── common.ts │ │ │ │ │ ├── ordered.ts │ │ │ │ │ └── unordered.ts │ │ │ │ ├── change_stream.ts │ │ │ │ ├── cmap │ │ │ │ │ ├── auth │ │ │ │ │ │ ├── auth_provider.ts │ │ │ │ │ │ ├── gssapi.ts │ │ │ │ │ │ ├── mongo_credentials.ts │ │ │ │ │ │ ├── mongocr.ts │ │ │ │ │ │ ├── mongodb_aws.ts │ │ │ │ │ │ ├── plain.ts │ │ │ │ │ │ ├── providers.ts │ │ │ │ │ │ ├── scram.ts │ │ │ │ │ │ └── x509.ts │ │ │ │ │ ├── command_monitoring_events.ts │ │ │ │ │ ├── commands.ts │ │ │ │ │ ├── connect.ts │ │ │ │ │ ├── connection.ts │ │ │ │ │ ├── connection_pool.ts │ │ │ │ │ ├── connection_pool_events.ts │ │ │ │ │ ├── errors.ts │ │ │ │ │ ├── message_stream.ts │ │ │ │ │ ├── metrics.ts │ │ │ │ │ ├── stream_description.ts │ │ │ │ │ └── wire_protocol │ │ │ │ │ │ ├── compression.ts │ │ │ │ │ │ ├── constants.ts │ │ │ │ │ │ └── shared.ts │ │ │ │ ├── collection.ts │ │ │ │ ├── connection_string.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── cursor │ │ │ │ │ ├── abstract_cursor.ts │ │ │ │ │ ├── aggregation_cursor.ts │ │ │ │ │ ├── change_stream_cursor.ts │ │ │ │ │ ├── find_cursor.ts │ │ │ │ │ ├── list_collections_cursor.ts │ │ │ │ │ └── list_indexes_cursor.ts │ │ │ │ ├── db.ts │ │ │ │ ├── deps.ts │ │ │ │ ├── encrypter.ts │ │ │ │ ├── error.ts │ │ │ │ ├── explain.ts │ │ │ │ ├── gridfs │ │ │ │ │ ├── download.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── upload.ts │ │ │ │ ├── index.ts │ │ │ │ ├── logger.ts │ │ │ │ ├── mongo_client.ts │ │ │ │ ├── mongo_types.ts │ │ │ │ ├── operations │ │ │ │ │ ├── add_user.ts │ │ │ │ │ ├── aggregate.ts │ │ │ │ │ ├── bulk_write.ts │ │ │ │ │ ├── collections.ts │ │ │ │ │ ├── command.ts │ │ │ │ │ ├── common_functions.ts │ │ │ │ │ ├── count.ts │ │ │ │ │ ├── count_documents.ts │ │ │ │ │ ├── create_collection.ts │ │ │ │ │ ├── delete.ts │ │ │ │ │ ├── distinct.ts │ │ │ │ │ ├── drop.ts │ │ │ │ │ ├── estimated_document_count.ts │ │ │ │ │ ├── eval.ts │ │ │ │ │ ├── execute_operation.ts │ │ │ │ │ ├── find.ts │ │ │ │ │ ├── find_and_modify.ts │ │ │ │ │ ├── get_more.ts │ │ │ │ │ ├── indexes.ts │ │ │ │ │ ├── insert.ts │ │ │ │ │ ├── is_capped.ts │ │ │ │ │ ├── kill_cursors.ts │ │ │ │ │ ├── list_collections.ts │ │ │ │ │ ├── list_databases.ts │ │ │ │ │ ├── map_reduce.ts │ │ │ │ │ ├── operation.ts │ │ │ │ │ ├── options_operation.ts │ │ │ │ │ ├── profiling_level.ts │ │ │ │ │ ├── remove_user.ts │ │ │ │ │ ├── rename.ts │ │ │ │ │ ├── run_command.ts │ │ │ │ │ ├── set_profiling_level.ts │ │ │ │ │ ├── stats.ts │ │ │ │ │ ├── update.ts │ │ │ │ │ └── validate_collection.ts │ │ │ │ ├── promise_provider.ts │ │ │ │ ├── read_concern.ts │ │ │ │ ├── read_preference.ts │ │ │ │ ├── sdam │ │ │ │ │ ├── common.ts │ │ │ │ │ ├── events.ts │ │ │ │ │ ├── monitor.ts │ │ │ │ │ ├── server.ts │ │ │ │ │ ├── server_description.ts │ │ │ │ │ ├── server_selection.ts │ │ │ │ │ ├── srv_polling.ts │ │ │ │ │ ├── topology.ts │ │ │ │ │ └── topology_description.ts │ │ │ │ ├── sessions.ts │ │ │ │ ├── sort.ts │ │ │ │ ├── transactions.ts │ │ │ │ ├── utils.ts │ │ │ │ └── write_concern.ts │ │ │ └── tsconfig.json │ │ ├── mongoose │ │ │ ├── .eslintrc.json │ │ │ ├── .mocharc.yml │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── browser.js │ │ │ ├── dist │ │ │ │ └── browser.umd.js │ │ │ ├── index.js │ │ │ ├── lgtm.yml │ │ │ ├── lib │ │ │ │ ├── aggregate.js │ │ │ │ ├── browser.js │ │ │ │ ├── browserDocument.js │ │ │ │ ├── cast.js │ │ │ │ ├── cast │ │ │ │ │ ├── boolean.js │ │ │ │ │ ├── date.js │ │ │ │ │ ├── decimal128.js │ │ │ │ │ ├── number.js │ │ │ │ │ ├── objectid.js │ │ │ │ │ └── string.js │ │ │ │ ├── collection.js │ │ │ │ ├── connection.js │ │ │ │ ├── connectionstate.js │ │ │ │ ├── cursor │ │ │ │ │ ├── AggregationCursor.js │ │ │ │ │ ├── ChangeStream.js │ │ │ │ │ └── QueryCursor.js │ │ │ │ ├── document.js │ │ │ │ ├── document_provider.js │ │ │ │ ├── driver.js │ │ │ │ ├── drivers │ │ │ │ │ ├── SPEC.md │ │ │ │ │ ├── browser │ │ │ │ │ │ ├── ReadPreference.js │ │ │ │ │ │ ├── binary.js │ │ │ │ │ │ ├── decimal128.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── objectid.js │ │ │ │ │ └── node-mongodb-native │ │ │ │ │ │ ├── ReadPreference.js │ │ │ │ │ │ ├── binary.js │ │ │ │ │ │ ├── collection.js │ │ │ │ │ │ ├── connection.js │ │ │ │ │ │ ├── decimal128.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── objectid.js │ │ │ │ ├── error │ │ │ │ │ ├── browserMissingSchema.js │ │ │ │ │ ├── cast.js │ │ │ │ │ ├── disconnected.js │ │ │ │ │ ├── divergentArray.js │ │ │ │ │ ├── eachAsyncMultiError.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── messages.js │ │ │ │ │ ├── missingSchema.js │ │ │ │ │ ├── mongooseError.js │ │ │ │ │ ├── notFound.js │ │ │ │ │ ├── objectExpected.js │ │ │ │ │ ├── objectParameter.js │ │ │ │ │ ├── overwriteModel.js │ │ │ │ │ ├── parallelSave.js │ │ │ │ │ ├── parallelValidate.js │ │ │ │ │ ├── serverSelection.js │ │ │ │ │ ├── setOptionError.js │ │ │ │ │ ├── strict.js │ │ │ │ │ ├── strictPopulate.js │ │ │ │ │ ├── syncIndexes.js │ │ │ │ │ ├── validation.js │ │ │ │ │ ├── validator.js │ │ │ │ │ └── version.js │ │ │ │ ├── helpers │ │ │ │ │ ├── aggregate │ │ │ │ │ │ ├── prepareDiscriminatorPipeline.js │ │ │ │ │ │ └── stringifyFunctionOperators.js │ │ │ │ │ ├── arrayDepth.js │ │ │ │ │ ├── clone.js │ │ │ │ │ ├── common.js │ │ │ │ │ ├── cursor │ │ │ │ │ │ └── eachAsync.js │ │ │ │ │ ├── discriminator │ │ │ │ │ │ ├── areDiscriminatorValuesEqual.js │ │ │ │ │ │ ├── checkEmbeddedDiscriminatorKeyProjection.js │ │ │ │ │ │ ├── getConstructor.js │ │ │ │ │ │ ├── getDiscriminatorByValue.js │ │ │ │ │ │ ├── getSchemaDiscriminatorByValue.js │ │ │ │ │ │ └── mergeDiscriminatorSchema.js │ │ │ │ │ ├── document │ │ │ │ │ │ ├── applyDefaults.js │ │ │ │ │ │ ├── cleanModifiedSubpaths.js │ │ │ │ │ │ ├── compile.js │ │ │ │ │ │ ├── getEmbeddedDiscriminatorPath.js │ │ │ │ │ │ └── handleSpreadDoc.js │ │ │ │ │ ├── each.js │ │ │ │ │ ├── error │ │ │ │ │ │ └── combinePathErrors.js │ │ │ │ │ ├── firstKey.js │ │ │ │ │ ├── get.js │ │ │ │ │ ├── getConstructorName.js │ │ │ │ │ ├── getDefaultBulkwriteResult.js │ │ │ │ │ ├── getFunctionName.js │ │ │ │ │ ├── immediate.js │ │ │ │ │ ├── indexes │ │ │ │ │ │ ├── applySchemaCollation.js │ │ │ │ │ │ ├── decorateDiscriminatorIndexOptions.js │ │ │ │ │ │ ├── getRelatedIndexes.js │ │ │ │ │ │ ├── isDefaultIdIndex.js │ │ │ │ │ │ ├── isIndexEqual.js │ │ │ │ │ │ └── isTextIndex.js │ │ │ │ │ ├── isAsyncFunction.js │ │ │ │ │ ├── isBsonType.js │ │ │ │ │ ├── isMongooseObject.js │ │ │ │ │ ├── isObject.js │ │ │ │ │ ├── isPromise.js │ │ │ │ │ ├── isSimpleValidator.js │ │ │ │ │ ├── model │ │ │ │ │ │ ├── applyDefaultsToPOJO.js │ │ │ │ │ │ ├── applyHooks.js │ │ │ │ │ │ ├── applyMethods.js │ │ │ │ │ │ ├── applyStaticHooks.js │ │ │ │ │ │ ├── applyStatics.js │ │ │ │ │ │ ├── castBulkWrite.js │ │ │ │ │ │ ├── discriminator.js │ │ │ │ │ │ └── pushNestedArrayPaths.js │ │ │ │ │ ├── once.js │ │ │ │ │ ├── parallelLimit.js │ │ │ │ │ ├── path │ │ │ │ │ │ ├── flattenObjectWithDottedPaths.js │ │ │ │ │ │ ├── parentPaths.js │ │ │ │ │ │ └── setDottedPath.js │ │ │ │ │ ├── pluralize.js │ │ │ │ │ ├── populate │ │ │ │ │ │ ├── SkipPopulateValue.js │ │ │ │ │ │ ├── assignRawDocsToIdStructure.js │ │ │ │ │ │ ├── assignVals.js │ │ │ │ │ │ ├── createPopulateQueryFilter.js │ │ │ │ │ │ ├── getModelsMapForPopulate.js │ │ │ │ │ │ ├── getSchemaTypes.js │ │ │ │ │ │ ├── getVirtual.js │ │ │ │ │ │ ├── leanPopulateMap.js │ │ │ │ │ │ ├── lookupLocalFields.js │ │ │ │ │ │ ├── markArraySubdocsPopulated.js │ │ │ │ │ │ ├── modelNamesFromRefPath.js │ │ │ │ │ │ ├── removeDeselectedForeignField.js │ │ │ │ │ │ └── validateRef.js │ │ │ │ │ ├── printJestWarning.js │ │ │ │ │ ├── printStrictQueryWarning.js │ │ │ │ │ ├── processConnectionOptions.js │ │ │ │ │ ├── projection │ │ │ │ │ │ ├── applyProjection.js │ │ │ │ │ │ ├── hasIncludedChildren.js │ │ │ │ │ │ ├── isDefiningProjection.js │ │ │ │ │ │ ├── isExclusive.js │ │ │ │ │ │ ├── isInclusive.js │ │ │ │ │ │ ├── isPathExcluded.js │ │ │ │ │ │ ├── isPathSelectedInclusive.js │ │ │ │ │ │ ├── isSubpath.js │ │ │ │ │ │ └── parseProjection.js │ │ │ │ │ ├── promiseOrCallback.js │ │ │ │ │ ├── query │ │ │ │ │ │ ├── applyGlobalOption.js │ │ │ │ │ │ ├── applyQueryMiddleware.js │ │ │ │ │ │ ├── cast$expr.js │ │ │ │ │ │ ├── castFilterPath.js │ │ │ │ │ │ ├── castUpdate.js │ │ │ │ │ │ ├── completeMany.js │ │ │ │ │ │ ├── getEmbeddedDiscriminatorPath.js │ │ │ │ │ │ ├── handleImmutable.js │ │ │ │ │ │ ├── hasDollarKeys.js │ │ │ │ │ │ ├── isOperator.js │ │ │ │ │ │ ├── sanitizeFilter.js │ │ │ │ │ │ ├── sanitizeProjection.js │ │ │ │ │ │ ├── selectPopulatedFields.js │ │ │ │ │ │ ├── trusted.js │ │ │ │ │ │ ├── validOps.js │ │ │ │ │ │ └── wrapThunk.js │ │ │ │ │ ├── schema │ │ │ │ │ │ ├── addAutoId.js │ │ │ │ │ │ ├── applyPlugins.js │ │ │ │ │ │ ├── applyWriteConcern.js │ │ │ │ │ │ ├── cleanPositionalOperators.js │ │ │ │ │ │ ├── getIndexes.js │ │ │ │ │ │ ├── getKeysInSchemaOrder.js │ │ │ │ │ │ ├── getPath.js │ │ │ │ │ │ ├── handleIdOption.js │ │ │ │ │ │ ├── handleTimestampOption.js │ │ │ │ │ │ ├── idGetter.js │ │ │ │ │ │ └── merge.js │ │ │ │ │ ├── schematype │ │ │ │ │ │ └── handleImmutable.js │ │ │ │ │ ├── setDefaultsOnInsert.js │ │ │ │ │ ├── specialProperties.js │ │ │ │ │ ├── symbols.js │ │ │ │ │ ├── timers.js │ │ │ │ │ ├── timestamps │ │ │ │ │ │ ├── setDocumentTimestamps.js │ │ │ │ │ │ └── setupTimestamps.js │ │ │ │ │ ├── topology │ │ │ │ │ │ ├── allServersUnknown.js │ │ │ │ │ │ ├── isAtlas.js │ │ │ │ │ │ └── isSSLError.js │ │ │ │ │ ├── update │ │ │ │ │ │ ├── applyTimestampsToChildren.js │ │ │ │ │ │ ├── applyTimestampsToUpdate.js │ │ │ │ │ │ ├── castArrayFilters.js │ │ │ │ │ │ ├── modifiedPaths.js │ │ │ │ │ │ ├── moveImmutableProperties.js │ │ │ │ │ │ ├── removeUnusedArrayFilters.js │ │ │ │ │ │ └── updatedPathsByArrayFilter.js │ │ │ │ │ └── updateValidators.js │ │ │ │ ├── index.js │ │ │ │ ├── internal.js │ │ │ │ ├── model.js │ │ │ │ ├── options.js │ │ │ │ ├── options │ │ │ │ │ ├── PopulateOptions.js │ │ │ │ │ ├── SchemaArrayOptions.js │ │ │ │ │ ├── SchemaBufferOptions.js │ │ │ │ │ ├── SchemaDateOptions.js │ │ │ │ │ ├── SchemaDocumentArrayOptions.js │ │ │ │ │ ├── SchemaMapOptions.js │ │ │ │ │ ├── SchemaNumberOptions.js │ │ │ │ │ ├── SchemaObjectIdOptions.js │ │ │ │ │ ├── SchemaStringOptions.js │ │ │ │ │ ├── SchemaSubdocumentOptions.js │ │ │ │ │ ├── SchemaTypeOptions.js │ │ │ │ │ ├── VirtualOptions.js │ │ │ │ │ ├── propertyOptions.js │ │ │ │ │ ├── removeOptions.js │ │ │ │ │ └── saveOptions.js │ │ │ │ ├── plugins │ │ │ │ │ ├── clearValidating.js │ │ │ │ │ ├── removeSubdocs.js │ │ │ │ │ ├── saveSubdocs.js │ │ │ │ │ ├── sharding.js │ │ │ │ │ ├── trackTransaction.js │ │ │ │ │ └── validateBeforeSave.js │ │ │ │ ├── promise_provider.js │ │ │ │ ├── query.js │ │ │ │ ├── queryhelpers.js │ │ │ │ ├── schema.js │ │ │ │ ├── schema │ │ │ │ │ ├── SubdocumentPath.js │ │ │ │ │ ├── array.js │ │ │ │ │ ├── boolean.js │ │ │ │ │ ├── buffer.js │ │ │ │ │ ├── date.js │ │ │ │ │ ├── decimal128.js │ │ │ │ │ ├── documentarray.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── map.js │ │ │ │ │ ├── mixed.js │ │ │ │ │ ├── number.js │ │ │ │ │ ├── objectid.js │ │ │ │ │ ├── operators │ │ │ │ │ │ ├── bitwise.js │ │ │ │ │ │ ├── exists.js │ │ │ │ │ │ ├── geospatial.js │ │ │ │ │ │ ├── helpers.js │ │ │ │ │ │ ├── text.js │ │ │ │ │ │ └── type.js │ │ │ │ │ ├── string.js │ │ │ │ │ ├── symbols.js │ │ │ │ │ └── uuid.js │ │ │ │ ├── schematype.js │ │ │ │ ├── statemachine.js │ │ │ │ ├── types │ │ │ │ │ ├── ArraySubdocument.js │ │ │ │ │ ├── DocumentArray │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── isMongooseDocumentArray.js │ │ │ │ │ │ └── methods │ │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── array │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── isMongooseArray.js │ │ │ │ │ │ └── methods │ │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── buffer.js │ │ │ │ │ ├── decimal128.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── map.js │ │ │ │ │ ├── objectid.js │ │ │ │ │ └── subdocument.js │ │ │ │ ├── utils.js │ │ │ │ ├── validoptions.js │ │ │ │ └── virtualtype.js │ │ │ ├── node_modules │ │ │ │ └── ms │ │ │ │ │ ├── index.js │ │ │ │ │ ├── license.md │ │ │ │ │ ├── package.json │ │ │ │ │ └── readme.md │ │ │ ├── package.json │ │ │ ├── scripts │ │ │ │ ├── build-browser.js │ │ │ │ └── create-tarball.js │ │ │ ├── tools │ │ │ │ ├── auth.js │ │ │ │ ├── repl.js │ │ │ │ └── sharded.js │ │ │ ├── tsconfig.json │ │ │ └── types │ │ │ │ ├── aggregate.d.ts │ │ │ │ ├── callback.d.ts │ │ │ │ ├── collection.d.ts │ │ │ │ ├── connection.d.ts │ │ │ │ ├── cursor.d.ts │ │ │ │ ├── document.d.ts │ │ │ │ ├── error.d.ts │ │ │ │ ├── expressions.d.ts │ │ │ │ ├── helpers.d.ts │ │ │ │ ├── index.d.ts │ │ │ │ ├── indexes.d.ts │ │ │ │ ├── inferschematype.d.ts │ │ │ │ ├── middlewares.d.ts │ │ │ │ ├── models.d.ts │ │ │ │ ├── mongooseoptions.d.ts │ │ │ │ ├── pipelinestage.d.ts │ │ │ │ ├── populate.d.ts │ │ │ │ ├── query.d.ts │ │ │ │ ├── schemaoptions.d.ts │ │ │ │ ├── schematypes.d.ts │ │ │ │ ├── session.d.ts │ │ │ │ ├── types.d.ts │ │ │ │ ├── utility.d.ts │ │ │ │ ├── validation.d.ts │ │ │ │ └── virtuals.d.ts │ │ ├── mpath │ │ │ ├── .travis.yml │ │ │ ├── History.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ ├── index.js │ │ │ │ └── stringToParts.js │ │ │ ├── package.json │ │ │ └── test │ │ │ │ ├── .eslintrc.yml │ │ │ │ ├── index.js │ │ │ │ └── stringToParts.js │ │ ├── mquery │ │ │ ├── .eslintignore │ │ │ ├── .eslintrc.json │ │ │ ├── .travis.yml │ │ │ ├── History.md │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── lib │ │ │ │ ├── collection │ │ │ │ │ ├── collection.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── node.js │ │ │ │ ├── env.js │ │ │ │ ├── mquery.js │ │ │ │ ├── permissions.js │ │ │ │ └── utils.js │ │ │ ├── node_modules │ │ │ │ ├── debug │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── package.json │ │ │ │ │ └── src │ │ │ │ │ │ ├── browser.js │ │ │ │ │ │ ├── common.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── node.js │ │ │ │ └── ms │ │ │ │ │ ├── index.js │ │ │ │ │ ├── license.md │ │ │ │ │ ├── package.json │ │ │ │ │ └── readme.md │ │ │ ├── package.json │ │ │ └── test │ │ │ │ ├── .eslintrc.yml │ │ │ │ ├── collection │ │ │ │ ├── browser.js │ │ │ │ ├── mongo.js │ │ │ │ └── node.js │ │ │ │ ├── env.js │ │ │ │ ├── index.js │ │ │ │ └── utils.test.js │ │ ├── ms │ │ │ ├── index.js │ │ │ ├── license.md │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── negotiator │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ ├── charset.js │ │ │ │ ├── encoding.js │ │ │ │ ├── language.js │ │ │ │ └── mediaType.js │ │ │ └── package.json │ │ ├── object-inspect │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── .nycrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── example │ │ │ │ ├── all.js │ │ │ │ ├── circular.js │ │ │ │ ├── fn.js │ │ │ │ └── inspect.js │ │ │ ├── index.js │ │ │ ├── package-support.json │ │ │ ├── package.json │ │ │ ├── readme.markdown │ │ │ ├── test-core-js.js │ │ │ ├── test │ │ │ │ ├── bigint.js │ │ │ │ ├── browser │ │ │ │ │ └── dom.js │ │ │ │ ├── circular.js │ │ │ │ ├── deep.js │ │ │ │ ├── element.js │ │ │ │ ├── err.js │ │ │ │ ├── fakes.js │ │ │ │ ├── fn.js │ │ │ │ ├── has.js │ │ │ │ ├── holes.js │ │ │ │ ├── indent-option.js │ │ │ │ ├── inspect.js │ │ │ │ ├── lowbyte.js │ │ │ │ ├── number.js │ │ │ │ ├── quoteStyle.js │ │ │ │ ├── toStringTag.js │ │ │ │ ├── undef.js │ │ │ │ └── values.js │ │ │ └── util.inspect.js │ │ ├── on-finished │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── parseurl │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── path-to-regexp │ │ │ ├── History.md │ │ │ ├── LICENSE │ │ │ ├── Readme.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── proxy-addr │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── punycode │ │ │ ├── LICENSE-MIT.txt │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── punycode.es6.js │ │ │ └── punycode.js │ │ ├── qs │ │ │ ├── .editorconfig │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── .nycrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── dist │ │ │ │ └── qs.js │ │ │ ├── lib │ │ │ │ ├── formats.js │ │ │ │ ├── index.js │ │ │ │ ├── parse.js │ │ │ │ ├── stringify.js │ │ │ │ └── utils.js │ │ │ ├── package.json │ │ │ └── test │ │ │ │ ├── parse.js │ │ │ │ ├── stringify.js │ │ │ │ └── utils.js │ │ ├── range-parser │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── raw-body │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── safe-buffer │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── safer-buffer │ │ │ ├── LICENSE │ │ │ ├── Porting-Buffer.md │ │ │ ├── Readme.md │ │ │ ├── dangerous.js │ │ │ ├── package.json │ │ │ ├── safer.js │ │ │ └── tests.js │ │ ├── saslprep │ │ │ ├── .editorconfig │ │ │ ├── .gitattributes │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── code-points.mem │ │ │ ├── generate-code-points.js │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ ├── code-points.js │ │ │ │ ├── memory-code-points.js │ │ │ │ └── util.js │ │ │ ├── package.json │ │ │ ├── readme.md │ │ │ └── test │ │ │ │ ├── index.js │ │ │ │ └── util.js │ │ ├── send │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── index.js │ │ │ ├── node_modules │ │ │ │ └── ms │ │ │ │ │ ├── index.js │ │ │ │ │ ├── license.md │ │ │ │ │ ├── package.json │ │ │ │ │ └── readme.md │ │ │ └── package.json │ │ ├── serve-static │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── setprototypeof │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── test │ │ │ │ └── index.js │ │ ├── side-channel │ │ │ ├── .eslintignore │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── .nycrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── test │ │ │ │ └── index.js │ │ ├── sift │ │ │ ├── MIT-LICENSE.txt │ │ │ ├── README.md │ │ │ ├── es │ │ │ │ ├── index.js │ │ │ │ └── index.js.map │ │ │ ├── es5m │ │ │ │ ├── index.js │ │ │ │ └── index.js.map │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ ├── core.d.ts │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ ├── operations.d.ts │ │ │ │ └── utils.d.ts │ │ │ ├── package.json │ │ │ ├── sift.csp.min.js │ │ │ ├── sift.csp.min.js.map │ │ │ ├── sift.min.js │ │ │ ├── sift.min.js.map │ │ │ └── src │ │ │ │ ├── core.d.ts │ │ │ │ ├── core.js │ │ │ │ ├── core.js.map │ │ │ │ ├── core.ts │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ ├── index.ts │ │ │ │ ├── operations.d.ts │ │ │ │ ├── operations.js │ │ │ │ ├── operations.js.map │ │ │ │ ├── operations.ts │ │ │ │ ├── utils.d.ts │ │ │ │ ├── utils.js │ │ │ │ ├── utils.js.map │ │ │ │ └── utils.ts │ │ ├── smart-buffer │ │ │ ├── .prettierrc.yaml │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── build │ │ │ │ ├── smartbuffer.js │ │ │ │ ├── smartbuffer.js.map │ │ │ │ ├── utils.js │ │ │ │ └── utils.js.map │ │ │ ├── docs │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── README_v3.md │ │ │ │ └── ROADMAP.md │ │ │ ├── package.json │ │ │ └── typings │ │ │ │ ├── smartbuffer.d.ts │ │ │ │ └── utils.d.ts │ │ ├── socks │ │ │ ├── .eslintrc.cjs │ │ │ ├── .prettierrc.yaml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── build │ │ │ │ ├── client │ │ │ │ │ ├── socksclient.js │ │ │ │ │ └── socksclient.js.map │ │ │ │ ├── common │ │ │ │ │ ├── constants.js │ │ │ │ │ ├── constants.js.map │ │ │ │ │ ├── helpers.js │ │ │ │ │ ├── helpers.js.map │ │ │ │ │ ├── receivebuffer.js │ │ │ │ │ ├── receivebuffer.js.map │ │ │ │ │ ├── util.js │ │ │ │ │ └── util.js.map │ │ │ │ ├── index.js │ │ │ │ └── index.js.map │ │ │ ├── docs │ │ │ │ ├── examples │ │ │ │ │ ├── index.md │ │ │ │ │ ├── javascript │ │ │ │ │ │ ├── associateExample.md │ │ │ │ │ │ ├── bindExample.md │ │ │ │ │ │ └── connectExample.md │ │ │ │ │ └── typescript │ │ │ │ │ │ ├── associateExample.md │ │ │ │ │ │ ├── bindExample.md │ │ │ │ │ │ └── connectExample.md │ │ │ │ ├── index.md │ │ │ │ └── migratingFromV1.md │ │ │ ├── package.json │ │ │ └── typings │ │ │ │ ├── client │ │ │ │ └── socksclient.d.ts │ │ │ │ ├── common │ │ │ │ ├── constants.d.ts │ │ │ │ ├── helpers.d.ts │ │ │ │ ├── receivebuffer.d.ts │ │ │ │ └── util.d.ts │ │ │ │ └── index.d.ts │ │ ├── sparse-bitfield │ │ │ ├── .npmignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── test.js │ │ ├── statuses │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── codes.json │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── strnum │ │ │ ├── .vscode │ │ │ │ └── launch.json │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── strnum.js │ │ │ └── strnum.test.js │ │ ├── toidentifier │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── tr46 │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ ├── mappingTable.json │ │ │ │ ├── regexes.js │ │ │ │ └── statusMapping.js │ │ │ └── package.json │ │ ├── tslib │ │ │ ├── CopyrightNotice.txt │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── modules │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── package.json │ │ │ ├── tslib.d.ts │ │ │ ├── tslib.es6.html │ │ │ ├── tslib.es6.js │ │ │ ├── tslib.html │ │ │ └── tslib.js │ │ ├── type-is │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── unpipe │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── utils-merge │ │ │ ├── .npmignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── uuid │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── dist │ │ │ │ ├── bin │ │ │ │ │ └── uuid │ │ │ │ ├── esm-browser │ │ │ │ │ ├── index.js │ │ │ │ │ ├── md5.js │ │ │ │ │ ├── nil.js │ │ │ │ │ ├── parse.js │ │ │ │ │ ├── regex.js │ │ │ │ │ ├── rng.js │ │ │ │ │ ├── sha1.js │ │ │ │ │ ├── stringify.js │ │ │ │ │ ├── v1.js │ │ │ │ │ ├── v3.js │ │ │ │ │ ├── v35.js │ │ │ │ │ ├── v4.js │ │ │ │ │ ├── v5.js │ │ │ │ │ ├── validate.js │ │ │ │ │ └── version.js │ │ │ │ ├── esm-node │ │ │ │ │ ├── index.js │ │ │ │ │ ├── md5.js │ │ │ │ │ ├── nil.js │ │ │ │ │ ├── parse.js │ │ │ │ │ ├── regex.js │ │ │ │ │ ├── rng.js │ │ │ │ │ ├── sha1.js │ │ │ │ │ ├── stringify.js │ │ │ │ │ ├── v1.js │ │ │ │ │ ├── v3.js │ │ │ │ │ ├── v35.js │ │ │ │ │ ├── v4.js │ │ │ │ │ ├── v5.js │ │ │ │ │ ├── validate.js │ │ │ │ │ └── version.js │ │ │ │ ├── index.js │ │ │ │ ├── md5-browser.js │ │ │ │ ├── md5.js │ │ │ │ ├── nil.js │ │ │ │ ├── parse.js │ │ │ │ ├── regex.js │ │ │ │ ├── rng-browser.js │ │ │ │ ├── rng.js │ │ │ │ ├── sha1-browser.js │ │ │ │ ├── sha1.js │ │ │ │ ├── stringify.js │ │ │ │ ├── umd │ │ │ │ │ ├── uuid.min.js │ │ │ │ │ ├── uuidNIL.min.js │ │ │ │ │ ├── uuidParse.min.js │ │ │ │ │ ├── uuidStringify.min.js │ │ │ │ │ ├── uuidValidate.min.js │ │ │ │ │ ├── uuidVersion.min.js │ │ │ │ │ ├── uuidv1.min.js │ │ │ │ │ ├── uuidv3.min.js │ │ │ │ │ ├── uuidv4.min.js │ │ │ │ │ └── uuidv5.min.js │ │ │ │ ├── uuid-bin.js │ │ │ │ ├── v1.js │ │ │ │ ├── v3.js │ │ │ │ ├── v35.js │ │ │ │ ├── v4.js │ │ │ │ ├── v5.js │ │ │ │ ├── validate.js │ │ │ │ └── version.js │ │ │ ├── package.json │ │ │ └── wrapper.mjs │ │ ├── vary │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── webidl-conversions │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── lib │ │ │ │ └── index.js │ │ │ └── package.json │ │ └── whatwg-url │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ ├── Function.js │ │ │ ├── URL-impl.js │ │ │ ├── URL.js │ │ │ ├── URLSearchParams-impl.js │ │ │ ├── URLSearchParams.js │ │ │ ├── VoidFunction.js │ │ │ ├── encoding.js │ │ │ ├── infra.js │ │ │ ├── percent-encoding.js │ │ │ ├── url-state-machine.js │ │ │ ├── urlencoded.js │ │ │ └── utils.js │ │ │ ├── package.json │ │ │ └── webidl2js-wrapper.js │ ├── package-lock.json │ ├── package.json │ └── readme.md ├── 17-12-2022 │ ├── .gitignore │ ├── Firmware │ │ ├── JPLearning │ │ │ └── JPLearning.ino │ │ └── MQTT_HiveMQ_Public │ │ │ └── MQTT_HiveMQ_Public.ino │ ├── Frontend Application │ │ ├── bulb-off.png │ │ ├── bulb-on.png │ │ ├── hum.png │ │ ├── jplearning.html │ │ └── temp.png │ ├── index.js │ ├── models │ │ ├── eventsModel.js │ │ └── usersModel.js │ ├── package-lock.json │ └── package.json ├── 29-11-2022 │ └── main.js └── 30-11-2022 │ ├── .gitignore │ ├── index.js │ ├── package-lock.json │ ├── package.json │ └── readme.md ├── Smart Home with Voice Control └── Smart Home with Voice Control.ino ├── Software Serial ├── Soft_Serial │ └── Soft_Serial.ino └── Soft_Serial2 │ └── Soft_Serial2.ino ├── Sound_Sensor ├── KY-038-Joy-IT.pdf └── Sound_Sensor.ino ├── WebSocket_Client └── WebSocket_Client.ino └── libraries ├── Adafruit_Sensor-master ├── .gitignore ├── Adafruit_Sensor.cpp ├── Adafruit_Sensor.h ├── LICENSE.txt ├── README.md ├── examples │ └── sensortest │ │ └── sensortest.ino └── library.properties ├── ArduinoJson ├── ArduinoJson.h ├── CHANGELOG.md ├── CMakeLists.txt ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── SUPPORT.md ├── appveyor.yml ├── banner.svg ├── component.mk ├── examples │ ├── JsonConfigFile │ │ └── JsonConfigFile.ino │ ├── JsonFilterExample │ │ └── JsonFilterExample.ino │ ├── JsonGeneratorExample │ │ └── JsonGeneratorExample.ino │ ├── JsonHttpClient │ │ └── JsonHttpClient.ino │ ├── JsonParserExample │ │ └── JsonParserExample.ino │ ├── JsonServer │ │ └── JsonServer.ino │ ├── JsonUdpBeacon │ │ └── JsonUdpBeacon.ino │ ├── MsgPackParser │ │ └── MsgPackParser.ino │ ├── ProgmemExample │ │ └── ProgmemExample.ino │ └── StringExample │ │ └── StringExample.ino ├── extras │ ├── ArduinoJsonConfig.cmake.in │ ├── CompileOptions.cmake │ ├── ci │ │ ├── espidf │ │ │ ├── CMakeLists.txt │ │ │ └── main │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── component.mk │ │ │ │ └── main.cpp │ │ └── particle.sh │ ├── conf_test │ │ ├── avr.cpp │ │ ├── esp8266.cpp │ │ ├── x64.cpp │ │ └── x86.cpp │ ├── fuzzing │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── json_fuzzer.cpp │ │ ├── json_seed_corpus │ │ │ ├── Comments.json │ │ │ ├── EmptyArray.json │ │ │ ├── EmptyObject.json │ │ │ ├── ExcessiveNesting.json │ │ │ ├── IntegerOverflow.json │ │ │ ├── Numbers.json │ │ │ ├── OpenWeatherMap.json │ │ │ ├── Strings.json │ │ │ └── WeatherUnderground.json │ │ ├── msgpack_fuzzer.cpp │ │ ├── msgpack_seed_corpus │ │ │ ├── array16 │ │ │ ├── array32 │ │ │ ├── false │ │ │ ├── fixarray │ │ │ ├── fixint_negative │ │ │ ├── fixint_positive │ │ │ ├── fixmap │ │ │ ├── fixstr │ │ │ ├── float32 │ │ │ ├── float64 │ │ │ ├── int16 │ │ │ ├── int32 │ │ │ ├── int64 │ │ │ ├── int8 │ │ │ ├── map16 │ │ │ ├── map32 │ │ │ ├── nil │ │ │ ├── str16 │ │ │ ├── str32 │ │ │ ├── str8 │ │ │ ├── true │ │ │ ├── uint16 │ │ │ ├── uint32 │ │ │ ├── uint64 │ │ │ └── uint8 │ │ └── reproducer.cpp │ ├── particle │ │ ├── project.properties │ │ └── src │ │ │ └── smocktest.ino │ ├── scripts │ │ ├── build-arduino-package.sh │ │ ├── build-single-header.sh │ │ ├── get-release-body.sh │ │ ├── get-release-page.sh │ │ ├── publish-particle-library.sh │ │ ├── publish.sh │ │ └── wandbox │ │ │ ├── JsonGeneratorExample.cpp │ │ │ ├── JsonParserExample.cpp │ │ │ ├── MsgPackParserExample.cpp │ │ │ └── publish.sh │ └── tests │ │ ├── CMakeLists.txt │ │ ├── Cpp11 │ │ ├── CMakeLists.txt │ │ ├── issue1120.cpp │ │ ├── nullptr.cpp │ │ ├── use_long_long_0.cpp │ │ └── use_long_long_1.cpp │ │ ├── Cpp17 │ │ ├── CMakeLists.txt │ │ └── string_view.cpp │ │ ├── Cpp20 │ │ ├── CMakeLists.txt │ │ └── smoke_test.cpp │ │ ├── FailingBuilds │ │ ├── CMakeLists.txt │ │ ├── Issue1189.cpp │ │ ├── Issue978.cpp │ │ ├── assign_char.cpp │ │ ├── delete_jsondocument.cpp │ │ ├── read_long_long.cpp │ │ ├── variant_as_char.cpp │ │ └── write_long_long.cpp │ │ ├── Helpers │ │ ├── Arduino.h │ │ ├── CustomReader.hpp │ │ ├── api │ │ │ ├── Print.h │ │ │ ├── Stream.h │ │ │ └── String.h │ │ └── progmem_emulation.hpp │ │ ├── IntegrationTests │ │ ├── CMakeLists.txt │ │ ├── gbathree.cpp │ │ ├── issue772.cpp │ │ ├── openweathermap.cpp │ │ └── round_trip.cpp │ │ ├── JsonArray │ │ ├── CMakeLists.txt │ │ ├── add.cpp │ │ ├── clear.cpp │ │ ├── copyArray.cpp │ │ ├── createNested.cpp │ │ ├── equals.cpp │ │ ├── get.cpp │ │ ├── isNull.cpp │ │ ├── iterator.cpp │ │ ├── memoryUsage.cpp │ │ ├── nesting.cpp │ │ ├── remove.cpp │ │ ├── size.cpp │ │ ├── std_string.cpp │ │ ├── subscript.cpp │ │ └── unbound.cpp │ │ ├── JsonDeserializer │ │ ├── CMakeLists.txt │ │ ├── DeserializationError.cpp │ │ ├── array.cpp │ │ ├── array_static.cpp │ │ ├── filter.cpp │ │ ├── incomplete_input.cpp │ │ ├── input_types.cpp │ │ ├── invalid_input.cpp │ │ ├── misc.cpp │ │ ├── nestingLimit.cpp │ │ ├── number.cpp │ │ ├── object.cpp │ │ ├── object_static.cpp │ │ └── string.cpp │ │ ├── JsonDocument │ │ ├── BasicJsonDocument.cpp │ │ ├── CMakeLists.txt │ │ ├── DynamicJsonDocument.cpp │ │ ├── ElementProxy.cpp │ │ ├── MemberProxy.cpp │ │ ├── StaticJsonDocument.cpp │ │ ├── add.cpp │ │ ├── cast.cpp │ │ ├── compare.cpp │ │ ├── containsKey.cpp │ │ ├── createNested.cpp │ │ ├── isNull.cpp │ │ ├── nesting.cpp │ │ ├── overflowed.cpp │ │ ├── remove.cpp │ │ ├── shrinkToFit.cpp │ │ ├── size.cpp │ │ ├── subscript.cpp │ │ └── swap.cpp │ │ ├── JsonObject │ │ ├── CMakeLists.txt │ │ ├── clear.cpp │ │ ├── containsKey.cpp │ │ ├── copy.cpp │ │ ├── createNestedArray.cpp │ │ ├── createNestedObject.cpp │ │ ├── equals.cpp │ │ ├── invalid.cpp │ │ ├── isNull.cpp │ │ ├── iterator.cpp │ │ ├── memoryUsage.cpp │ │ ├── nesting.cpp │ │ ├── remove.cpp │ │ ├── size.cpp │ │ ├── std_string.cpp │ │ └── subscript.cpp │ │ ├── JsonSerializer │ │ ├── CMakeLists.txt │ │ ├── CustomWriter.cpp │ │ ├── JsonArray.cpp │ │ ├── JsonArrayPretty.cpp │ │ ├── JsonObject.cpp │ │ ├── JsonObjectPretty.cpp │ │ ├── JsonVariant.cpp │ │ ├── misc.cpp │ │ ├── std_stream.cpp │ │ └── std_string.cpp │ │ ├── JsonVariant │ │ ├── CMakeLists.txt │ │ ├── add.cpp │ │ ├── as.cpp │ │ ├── clear.cpp │ │ ├── compare.cpp │ │ ├── containsKey.cpp │ │ ├── converters.cpp │ │ ├── copy.cpp │ │ ├── createNested.cpp │ │ ├── is.cpp │ │ ├── isnull.cpp │ │ ├── memoryUsage.cpp │ │ ├── misc.cpp │ │ ├── nesting.cpp │ │ ├── or.cpp │ │ ├── overflow.cpp │ │ ├── remove.cpp │ │ ├── set.cpp │ │ ├── subscript.cpp │ │ ├── types.cpp │ │ └── unbound.cpp │ │ ├── MemoryPool │ │ ├── CMakeLists.txt │ │ ├── StringCopier.cpp │ │ ├── allocVariant.cpp │ │ ├── clear.cpp │ │ ├── saveString.cpp │ │ └── size.cpp │ │ ├── Misc │ │ ├── CMakeLists.txt │ │ ├── FloatParts.cpp │ │ ├── JsonString.cpp │ │ ├── NoArduinoHeader.cpp │ │ ├── Readers.cpp │ │ ├── StringAdapters.cpp │ │ ├── StringWriter.cpp │ │ ├── TypeTraits.cpp │ │ ├── Utf16.cpp │ │ ├── Utf8.cpp │ │ ├── arithmeticCompare.cpp │ │ ├── conflicts.cpp │ │ ├── custom_string.hpp │ │ ├── deprecated.cpp │ │ ├── printable.cpp │ │ ├── unsigned_char.cpp │ │ ├── version.cpp │ │ └── weird_strcmp.hpp │ │ ├── MixedConfiguration │ │ ├── CMakeLists.txt │ │ ├── decode_unicode_0.cpp │ │ ├── decode_unicode_1.cpp │ │ ├── enable_alignment_0.cpp │ │ ├── enable_alignment_1.cpp │ │ ├── enable_comments_0.cpp │ │ ├── enable_comments_1.cpp │ │ ├── enable_infinity_0.cpp │ │ ├── enable_infinity_1.cpp │ │ ├── enable_nan_0.cpp │ │ ├── enable_nan_1.cpp │ │ ├── enable_progmem_1.cpp │ │ ├── enable_string_deduplication_0.cpp │ │ ├── enable_string_deduplication_1.cpp │ │ ├── issue1707.cpp │ │ ├── use_double_0.cpp │ │ └── use_double_1.cpp │ │ ├── MsgPackDeserializer │ │ ├── CMakeLists.txt │ │ ├── deserializeArray.cpp │ │ ├── deserializeObject.cpp │ │ ├── deserializeStaticVariant.cpp │ │ ├── deserializeVariant.cpp │ │ ├── doubleToFloat.cpp │ │ ├── filter.cpp │ │ ├── incompleteInput.cpp │ │ ├── input_types.cpp │ │ ├── misc.cpp │ │ ├── nestingLimit.cpp │ │ └── notSupported.cpp │ │ ├── MsgPackSerializer │ │ ├── CMakeLists.txt │ │ ├── destination_types.cpp │ │ ├── measure.cpp │ │ ├── misc.cpp │ │ ├── serializeArray.cpp │ │ ├── serializeObject.cpp │ │ └── serializeVariant.cpp │ │ ├── Numbers │ │ ├── CMakeLists.txt │ │ ├── convertNumber.cpp │ │ ├── parseDouble.cpp │ │ ├── parseFloat.cpp │ │ ├── parseInteger.cpp │ │ └── parseNumber.cpp │ │ ├── TextFormatter │ │ ├── CMakeLists.txt │ │ ├── writeFloat.cpp │ │ ├── writeInteger.cpp │ │ └── writeString.cpp │ │ └── catch │ │ ├── CMakeLists.txt │ │ ├── catch.cpp │ │ └── catch.hpp ├── keywords.txt ├── library.json ├── library.properties └── src │ ├── ArduinoJson.h │ ├── ArduinoJson.hpp │ ├── ArduinoJson │ ├── Array │ │ ├── ArrayFunctions.hpp │ │ ├── ArrayImpl.hpp │ │ ├── ArrayIterator.hpp │ │ ├── ArrayRef.hpp │ │ ├── ArrayShortcuts.hpp │ │ ├── ElementProxy.hpp │ │ └── Utilities.hpp │ ├── Collection │ │ ├── CollectionData.hpp │ │ └── CollectionImpl.hpp │ ├── Configuration.hpp │ ├── Deserialization │ │ ├── DeserializationError.hpp │ │ ├── Filter.hpp │ │ ├── NestingLimit.hpp │ │ ├── Reader.hpp │ │ ├── Readers │ │ │ ├── ArduinoStreamReader.hpp │ │ │ ├── ArduinoStringReader.hpp │ │ │ ├── FlashReader.hpp │ │ │ ├── IteratorReader.hpp │ │ │ ├── RamReader.hpp │ │ │ ├── StdStreamReader.hpp │ │ │ └── VariantReader.hpp │ │ └── deserialize.hpp │ ├── Document │ │ ├── BasicJsonDocument.hpp │ │ ├── DynamicJsonDocument.hpp │ │ ├── JsonDocument.hpp │ │ └── StaticJsonDocument.hpp │ ├── Json │ │ ├── EscapeSequence.hpp │ │ ├── JsonDeserializer.hpp │ │ ├── JsonSerializer.hpp │ │ ├── Latch.hpp │ │ ├── PrettyJsonSerializer.hpp │ │ ├── TextFormatter.hpp │ │ ├── Utf16.hpp │ │ └── Utf8.hpp │ ├── Memory │ │ ├── Alignment.hpp │ │ └── MemoryPool.hpp │ ├── Misc │ │ ├── SafeBoolIdiom.hpp │ │ ├── SerializedValue.hpp │ │ └── Visitable.hpp │ ├── MsgPack │ │ ├── MsgPackDeserializer.hpp │ │ ├── MsgPackSerializer.hpp │ │ ├── endianess.hpp │ │ └── ieee754.hpp │ ├── Namespace.hpp │ ├── Numbers │ │ ├── Float.hpp │ │ ├── FloatParts.hpp │ │ ├── FloatTraits.hpp │ │ ├── Integer.hpp │ │ ├── arithmeticCompare.hpp │ │ ├── convertNumber.hpp │ │ └── parseNumber.hpp │ ├── Object │ │ ├── MemberProxy.hpp │ │ ├── ObjectFunctions.hpp │ │ ├── ObjectImpl.hpp │ │ ├── ObjectIterator.hpp │ │ ├── ObjectRef.hpp │ │ ├── ObjectShortcuts.hpp │ │ └── Pair.hpp │ ├── Polyfills │ │ ├── alias_cast.hpp │ │ ├── assert.hpp │ │ ├── attributes.hpp │ │ ├── ctype.hpp │ │ ├── integer.hpp │ │ ├── limits.hpp │ │ ├── math.hpp │ │ ├── mpl │ │ │ └── max.hpp │ │ ├── pgmspace.hpp │ │ ├── pgmspace_generic.hpp │ │ ├── preprocessor.hpp │ │ ├── static_array.hpp │ │ ├── type_traits.hpp │ │ └── type_traits │ │ │ ├── conditional.hpp │ │ │ ├── declval.hpp │ │ │ ├── enable_if.hpp │ │ │ ├── integral_constant.hpp │ │ │ ├── is_array.hpp │ │ │ ├── is_base_of.hpp │ │ │ ├── is_class.hpp │ │ │ ├── is_const.hpp │ │ │ ├── is_convertible.hpp │ │ │ ├── is_enum.hpp │ │ │ ├── is_floating_point.hpp │ │ │ ├── is_integral.hpp │ │ │ ├── is_pointer.hpp │ │ │ ├── is_same.hpp │ │ │ ├── is_signed.hpp │ │ │ ├── is_unsigned.hpp │ │ │ ├── make_unsigned.hpp │ │ │ ├── make_void.hpp │ │ │ ├── remove_const.hpp │ │ │ ├── remove_cv.hpp │ │ │ ├── remove_reference.hpp │ │ │ └── type_identity.hpp │ ├── Serialization │ │ ├── CountingDecorator.hpp │ │ ├── Writer.hpp │ │ ├── Writers │ │ │ ├── ArduinoStringWriter.hpp │ │ │ ├── DummyWriter.hpp │ │ │ ├── PrintWriter.hpp │ │ │ ├── StaticStringWriter.hpp │ │ │ ├── StdStreamWriter.hpp │ │ │ └── StdStringWriter.hpp │ │ ├── measure.hpp │ │ └── serialize.hpp │ ├── StringStorage │ │ ├── StringCopier.hpp │ │ ├── StringMover.hpp │ │ └── StringStorage.hpp │ ├── Strings │ │ ├── Adapters │ │ │ ├── ArduinoString.hpp │ │ │ ├── FlashString.hpp │ │ │ ├── JsonString.hpp │ │ │ ├── RamString.hpp │ │ │ ├── StdString.hpp │ │ │ └── StringView.hpp │ │ ├── IsString.hpp │ │ ├── StoragePolicy.hpp │ │ ├── String.hpp │ │ └── StringAdapters.hpp │ ├── Variant │ │ ├── Converter.hpp │ │ ├── ConverterImpl.hpp │ │ ├── SlotFunctions.hpp │ │ ├── VariantCompare.hpp │ │ ├── VariantContent.hpp │ │ ├── VariantData.hpp │ │ ├── VariantFunctions.hpp │ │ ├── VariantImpl.hpp │ │ ├── VariantOperators.hpp │ │ ├── VariantRef.hpp │ │ ├── VariantShortcuts.hpp │ │ ├── VariantSlot.hpp │ │ ├── VariantTag.hpp │ │ ├── VariantTo.hpp │ │ └── Visitor.hpp │ ├── compatibility.hpp │ └── version.hpp │ └── CMakeLists.txt ├── DHT_sensor_library ├── CONTRIBUTING.md ├── DHT.cpp ├── DHT.h ├── DHT_U.cpp ├── DHT_U.h ├── README.md ├── code-of-conduct.md ├── examples │ ├── DHT_Unified_Sensor │ │ └── DHT_Unified_Sensor.ino │ └── DHTtester │ │ └── DHTtester.ino ├── keywords.txt ├── library.properties └── license.txt ├── GSM SSLClient ├── LICENSE ├── README.md ├── docs │ ├── CHANGELOG.md │ ├── CODEGUIDE.md │ ├── CONTRIBUTING.md │ ├── FUNCTIONS.md │ └── RSSI.md ├── examples │ ├── Esp32-Arduino-IDE │ │ ├── https_eth_LilyGo-T-ETH-POE │ │ │ ├── ca_cert.h │ │ │ └── https_eth_LilyGo-T-ETH-POE.ino │ │ ├── https_get_sim7600 │ │ │ ├── certs.h │ │ │ ├── https_get_sim7600.ino │ │ │ └── utilities.h │ │ ├── https_gsm_SIM7000 │ │ │ ├── ca_cert.h │ │ │ └── https_gsm_SIM7000.ino │ │ ├── https_gsm_SIM800 │ │ │ ├── ca_cert.h │ │ │ └── https_gsm_SIM800.ino │ │ ├── https_post_sim7600 │ │ │ ├── certs.h │ │ │ ├── https_post_sim7600.ino │ │ │ └── utilities.h │ │ ├── https_wifi │ │ │ ├── ca_cert.h │ │ │ ├── https_wifi.ino │ │ │ └── secrets.h │ │ ├── mqtt_gsm_SIM800L_Azure_x509_Device_Twin │ │ │ ├── ca_cert.h │ │ │ └── mqtt_gsm_SIM800L_Azure_x509_Device_Twin.ino │ │ └── mqtt_secure_gsm_SIM7000 │ │ │ ├── ca_cert.h │ │ │ └── mqtt_secure_gsm_SIM7000.ino │ └── Esp32-platformIO │ │ ├── t-call-esp32-sim800l-alpn-protos │ │ ├── include │ │ │ └── ca_cert.h │ │ ├── platformio.ini │ │ └── src │ │ │ └── main.cpp │ │ ├── t-call-esp32-sim800l-aws │ │ ├── include │ │ │ └── ca_cert.h │ │ ├── platformio.ini │ │ └── src │ │ │ └── main.cpp │ │ └── t-call-esp32-sim800l-cert-bundle │ │ ├── data │ │ └── crt │ │ │ └── x509_crt_bundle.bin │ │ ├── platformio.ini │ │ └── src │ │ └── main.cpp ├── library.json ├── library.properties ├── platformio.ini ├── scripts │ ├── README.md │ ├── compile_arduino_examples.sh │ ├── compile_pio_examples.sh │ ├── install_sslclient_for_testing.sh │ ├── test_arduino_platform.sh │ └── test_pio_platform.sh ├── src │ ├── SSLClient.cpp │ ├── SSLClient.h │ ├── certBundle.c │ ├── certBundle.h │ ├── log_.h │ ├── ssl__client.cpp │ └── ssl__client.h └── test │ ├── mocks │ ├── ESPClass.hpp │ ├── MbedTLS.h │ ├── TestClient.h │ ├── esp32-hal-log.h │ ├── esp_err.h │ └── esp_system.h │ └── unit_test_private_api.cpp ├── LiquidCrystal_I2C ├── LiquidCrystal_I2C.cpp ├── LiquidCrystal_I2C.h ├── LiquidCrystal_I2C.o ├── README.md ├── examples │ ├── CustomChars │ │ └── CustomChars.pde │ ├── HelloWorld │ │ └── HelloWorld.pde │ └── SerialDisplay │ │ └── SerialDisplay.pde ├── keywords.txt ├── library.json └── library.properties ├── PubSubClient ├── CHANGES.txt ├── LICENSE.txt ├── README.md ├── examples │ ├── mqtt_auth │ │ └── mqtt_auth.ino │ ├── mqtt_basic │ │ └── mqtt_basic.ino │ ├── mqtt_esp8266 │ │ └── mqtt_esp8266.ino │ ├── mqtt_large_message │ │ └── mqtt_large_message.ino │ ├── mqtt_publish_in_callback │ │ └── mqtt_publish_in_callback.ino │ ├── mqtt_reconnect_nonblocking │ │ └── mqtt_reconnect_nonblocking.ino │ └── mqtt_stream │ │ └── mqtt_stream.ino ├── keywords.txt ├── library.json ├── library.properties ├── src │ ├── PubSubClient.cpp │ └── PubSubClient.h └── tests │ ├── Makefile │ ├── README.md │ ├── src │ ├── connect_spec.cpp │ ├── keepalive_spec.cpp │ ├── lib │ │ ├── Arduino.h │ │ ├── BDDTest.cpp │ │ ├── BDDTest.h │ │ ├── Buffer.cpp │ │ ├── Buffer.h │ │ ├── Client.h │ │ ├── IPAddress.cpp │ │ ├── IPAddress.h │ │ ├── Print.h │ │ ├── ShimClient.cpp │ │ ├── ShimClient.h │ │ ├── Stream.cpp │ │ ├── Stream.h │ │ └── trace.h │ ├── publish_spec.cpp │ ├── receive_spec.cpp │ └── subscribe_spec.cpp │ ├── testcases │ ├── __init__.py │ ├── mqtt_basic.py │ ├── mqtt_publish_in_callback.py │ └── settings.py │ └── testsuite.py ├── TinyGSM ├── ChangeLog.md ├── LICENSE ├── Makefile ├── README.md ├── cpplint.cfg ├── examples │ ├── AllFunctions │ │ └── AllFunctions.ino │ ├── BlynkClient │ │ └── BlynkClient.ino │ ├── FileDownload │ │ └── FileDownload.ino │ ├── HttpClient │ │ └── HttpClient.ino │ ├── HttpsClient │ │ └── HttpsClient.ino │ ├── MqttClient │ │ └── MqttClient.ino │ ├── WebClient │ │ └── WebClient.ino │ ├── example_dependencies.json │ └── more │ │ ├── Hologram_Dash │ │ └── Hologram_Dash.ino │ │ ├── Industruino │ │ └── Industruino.ino │ │ └── SIM800_SslSetCert │ │ ├── COMODORSACertificationAuthority.h │ │ ├── DSTRootCAX3.der.h │ │ ├── DSTRootCAX3.h │ │ └── SIM800_SslSetCert.ino ├── extras │ ├── examples.png │ ├── logo.svg │ ├── logo.txt │ ├── test_100k.bin │ ├── test_100k.hex │ ├── test_10k.bin │ ├── test_10k.hex │ ├── test_1k.bin │ ├── test_1k.hex │ ├── test_1m.bin │ └── test_simple.txt ├── keywords.txt ├── library.json ├── library.properties ├── src │ ├── ArduinoCompat │ │ ├── Client.h │ │ └── IPAddress.h │ ├── TinyGSM.h │ ├── TinyGsmBattery.tpp │ ├── TinyGsmBluetooth.tpp │ ├── TinyGsmCalling.tpp │ ├── TinyGsmClient.h │ ├── TinyGsmClientA6.h │ ├── TinyGsmClientA7672x.h │ ├── TinyGsmClientBG96.h │ ├── TinyGsmClientESP8266.h │ ├── TinyGsmClientM590.h │ ├── TinyGsmClientM95.h │ ├── TinyGsmClientMC60.h │ ├── TinyGsmClientSIM5360.h │ ├── TinyGsmClientSIM7000.h │ ├── TinyGsmClientSIM7000SSL.h │ ├── TinyGsmClientSIM7080.h │ ├── TinyGsmClientSIM70xx.h │ ├── TinyGsmClientSIM7600.h │ ├── TinyGsmClientSIM800.h │ ├── TinyGsmClientSIM808.h │ ├── TinyGsmClientSaraR4.h │ ├── TinyGsmClientSaraR5.h │ ├── TinyGsmClientSequansMonarch.h │ ├── TinyGsmClientUBLOX.h │ ├── TinyGsmClientXBee.h │ ├── TinyGsmCommon.h │ ├── TinyGsmFifo.h │ ├── TinyGsmGPRS.tpp │ ├── TinyGsmGPS.tpp │ ├── TinyGsmGSMLocation.tpp │ ├── TinyGsmModem.tpp │ ├── TinyGsmNTP.tpp │ ├── TinyGsmSMS.tpp │ ├── TinyGsmSSL.tpp │ ├── TinyGsmTCP.tpp │ ├── TinyGsmTemperature.tpp │ ├── TinyGsmTime.tpp │ └── TinyGsmWifi.tpp └── tools │ ├── AT_Debug │ └── AT_Debug.ino │ ├── AT_Spy │ └── AT_Spy.ino │ ├── Diagnostics │ └── Diagnostics.ino │ ├── FactoryReset │ └── FactoryReset.ino │ └── test_build │ └── test_build.ino ├── WebSockets ├── LICENSE ├── README.md ├── examples │ ├── Nginx │ │ └── esp8266.ssl.reverse.proxy.conf │ ├── avr │ │ └── WebSocketClientAVR │ │ │ └── WebSocketClientAVR.ino │ ├── esp32 │ │ ├── WebSocketClient │ │ │ └── WebSocketClient.ino │ │ ├── WebSocketClientSSL │ │ │ └── WebSocketClientSSL.ino │ │ ├── WebSocketClientSocketIOack │ │ │ └── WebSocketClientSocketIOack.ino │ │ └── WebSocketServer │ │ │ └── WebSocketServer.ino │ ├── esp8266 │ │ ├── WebSocketClient │ │ │ └── WebSocketClient.ino │ │ ├── WebSocketClientOTA │ │ │ ├── README.md │ │ │ ├── WebSocketClientOTA.ino │ │ │ └── python_ota_server │ │ │ │ ├── main.py │ │ │ │ └── requirements.txt │ │ ├── WebSocketClientSSL │ │ │ └── WebSocketClientSSL.ino │ │ ├── WebSocketClientSSLWithCA │ │ │ └── WebSocketClientSSLWithCA.ino │ │ ├── WebSocketClientSocketIO │ │ │ └── WebSocketClientSocketIO.ino │ │ ├── WebSocketClientSocketIOack │ │ │ └── WebSocketClientSocketIOack.ino │ │ ├── WebSocketClientStomp │ │ │ └── WebSocketClientStomp.ino │ │ ├── WebSocketClientStompOverSockJs │ │ │ └── WebSocketClientStompOverSockJs.ino │ │ ├── WebSocketServer │ │ │ └── WebSocketServer.ino │ │ ├── WebSocketServerAllFunctionsDemo │ │ │ └── WebSocketServerAllFunctionsDemo.ino │ │ ├── WebSocketServerFragmentation │ │ │ └── WebSocketServerFragmentation.ino │ │ ├── WebSocketServerHooked │ │ │ ├── WebSocketServerHooked.ino │ │ │ ├── emu │ │ │ └── ws-testclient.py │ │ ├── WebSocketServerHttpHeaderValidation │ │ │ └── WebSocketServerHttpHeaderValidation.ino │ │ └── WebSocketServer_LEDcontrol │ │ │ └── WebSocketServer_LEDcontrol.ino │ └── particle │ │ └── ParticleWebSocketClient │ │ └── application.cpp ├── library.json ├── library.properties ├── src │ ├── SocketIOclient.cpp │ ├── SocketIOclient.h │ ├── WebSockets.cpp │ ├── WebSockets.h │ ├── WebSockets4WebServer.h │ ├── WebSocketsClient.cpp │ ├── WebSocketsClient.h │ ├── WebSocketsServer.cpp │ ├── WebSocketsServer.h │ ├── WebSocketsVersion.h │ ├── libb64 │ │ ├── AUTHORS │ │ ├── LICENSE │ │ ├── cdecode.c │ │ ├── cdecode_inc.h │ │ ├── cencode.c │ │ └── cencode_inc.h │ └── libsha1 │ │ ├── libsha1.c │ │ └── libsha1.h ├── tests │ ├── webSocket.html │ └── webSocketServer │ │ ├── index.js │ │ └── package.json └── travis │ ├── common.sh │ └── version.py └── readme.txt /Control Structures/CS_DoWhile/CS_DoWhile.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Control Structures/CS_DoWhile/CS_DoWhile.ino -------------------------------------------------------------------------------- /Control Structures/CS_For/CS_For.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Control Structures/CS_For/CS_For.ino -------------------------------------------------------------------------------- /Control Structures/CS_If/CS_If.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Control Structures/CS_If/CS_If.ino -------------------------------------------------------------------------------- /Control Structures/CS_IfElse/CS_IfElse.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Control Structures/CS_IfElse/CS_IfElse.ino -------------------------------------------------------------------------------- /Control Structures/CS_SwitchCase/CS_SwitchCase.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Control Structures/CS_SwitchCase/CS_SwitchCase.ino -------------------------------------------------------------------------------- /Control Structures/CS_While/CS_While.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Control Structures/CS_While/CS_While.ino -------------------------------------------------------------------------------- /Data Types/DataTypes/DataTypes.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Data Types/DataTypes/DataTypes.ino -------------------------------------------------------------------------------- /Data Types/DataTypes_Array/DataTypes_Array.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Data Types/DataTypes_Array/DataTypes_Array.ino -------------------------------------------------------------------------------- /Data Types/DataTypes_BoolByte/DataTypes_BoolByte.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Data Types/DataTypes_BoolByte/DataTypes_BoolByte.ino -------------------------------------------------------------------------------- /Data Types/DataTypes_Float/DataTypes_Float.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Data Types/DataTypes_Float/DataTypes_Float.ino -------------------------------------------------------------------------------- /Data Types/DataTypes_Int/DataTypes_Int.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Data Types/DataTypes_Int/DataTypes_Int.ino -------------------------------------------------------------------------------- /Data Types/DataTypes_String/DataTypes_String.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Data Types/DataTypes_String/DataTypes_String.ino -------------------------------------------------------------------------------- /Door_Sensor/Datasheet MC-38.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Door_Sensor/Datasheet MC-38.pdf -------------------------------------------------------------------------------- /Door_Sensor/Door_Sensor.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Door_Sensor/Door_Sensor.ino -------------------------------------------------------------------------------- /EEPROM/eeprom/eeprom.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/EEPROM/eeprom/eeprom.ino -------------------------------------------------------------------------------- /EEPROM/eeprom_clear/eeprom_clear.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/EEPROM/eeprom_clear/eeprom_clear.ino -------------------------------------------------------------------------------- /EEPROM/eeprom_read/eeprom_read.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/EEPROM/eeprom_read/eeprom_read.ino -------------------------------------------------------------------------------- /EEPROM/eeprom_write/eeprom_write.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/EEPROM/eeprom_write/eeprom_write.ino -------------------------------------------------------------------------------- /ESP8266_LocalServer/ESP8266_LocalServer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/ESP8266_LocalServer/ESP8266_LocalServer.ino -------------------------------------------------------------------------------- /Firmware Structure/Test1/Test1.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Firmware Structure/Test1/Test1.ino -------------------------------------------------------------------------------- /Flame_Sensor/Flame-sensor-arduino.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Flame_Sensor/Flame-sensor-arduino.pdf -------------------------------------------------------------------------------- /Flame_Sensor/Flame_Sensor.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Flame_Sensor/Flame_Sensor.ino -------------------------------------------------------------------------------- /Functions/Functions.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Functions/Functions.ino -------------------------------------------------------------------------------- /HC-SR04_Ultrasonic_Sensor/HC-SR04_Ultrasonic_Sensor.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/HC-SR04_Ultrasonic_Sensor/HC-SR04_Ultrasonic_Sensor.ino -------------------------------------------------------------------------------- /HCSR04.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/HCSR04.pdf -------------------------------------------------------------------------------- /HTTPS/HTTPS_ESP32/HTTPS_ESP32.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/HTTPS/HTTPS_ESP32/HTTPS_ESP32.ino -------------------------------------------------------------------------------- /HTTPS/HTTPS_ESP8266/HTTPS_ESP8266.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/HTTPS/HTTPS_ESP8266/HTTPS_ESP8266.ino -------------------------------------------------------------------------------- /HTTP_GET/HTTP_GET.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/HTTP_GET/HTTP_GET.ino -------------------------------------------------------------------------------- /HTTP_POST/HTTP_POST.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/HTTP_POST/HTTP_POST.ino -------------------------------------------------------------------------------- /HTTP_PUT/HTTP_PUT.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/HTTP_PUT/HTTP_PUT.ino -------------------------------------------------------------------------------- /I2C_Scanner/I2C_Scanner.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/I2C_Scanner/I2C_Scanner.ino -------------------------------------------------------------------------------- /IR_Obstacle_Sensor/IR_Obstacle_Sensor.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/IR_Obstacle_Sensor/IR_Obstacle_Sensor.ino -------------------------------------------------------------------------------- /LCD_ESP8266/LCD_ESP8266.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/LCD_ESP8266/LCD_ESP8266.ino -------------------------------------------------------------------------------- /LDR_Sensor/LDR_Sensor/LDR_Sensor.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/LDR_Sensor/LDR_Sensor/LDR_Sensor.ino -------------------------------------------------------------------------------- /LDR_Sensor/LDR_Sensor2/LDR_Sensor2.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/LDR_Sensor/LDR_Sensor2/LDR_Sensor2.ino -------------------------------------------------------------------------------- /LDR_Sensor/photosensitive_sensor_module.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/LDR_Sensor/photosensitive_sensor_module.pdf -------------------------------------------------------------------------------- /MQTT_EMQXCloud_JPL/MQTT_EMQXCloud_JPL.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/MQTT_EMQXCloud_JPL/MQTT_EMQXCloud_JPL.ino -------------------------------------------------------------------------------- /MQTT_Example/MQTT_Example.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/MQTT_Example/MQTT_Example.ino -------------------------------------------------------------------------------- /MQTT_HiveMQ_Public/MQTT_HiveMQ_Public.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/MQTT_HiveMQ_Public/MQTT_HiveMQ_Public.ino -------------------------------------------------------------------------------- /MQTT_TLS_HiveMQ_GSM_SIM7600/ca_cert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/MQTT_TLS_HiveMQ_GSM_SIM7600/ca_cert.h -------------------------------------------------------------------------------- /Modbus/TCP/Master/Master.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Modbus/TCP/Master/Master.ino -------------------------------------------------------------------------------- /Mosquitto MQTT Broker/Frontend Application/bulb-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Mosquitto MQTT Broker/Frontend Application/bulb-off.png -------------------------------------------------------------------------------- /Mosquitto MQTT Broker/Frontend Application/bulb-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Mosquitto MQTT Broker/Frontend Application/bulb-on.png -------------------------------------------------------------------------------- /Mosquitto MQTT Broker/Frontend Application/hum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Mosquitto MQTT Broker/Frontend Application/hum.png -------------------------------------------------------------------------------- /Mosquitto MQTT Broker/Frontend Application/jplearning.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Mosquitto MQTT Broker/Frontend Application/jplearning.html -------------------------------------------------------------------------------- /Mosquitto MQTT Broker/Frontend Application/temp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Mosquitto MQTT Broker/Frontend Application/temp.png -------------------------------------------------------------------------------- /Mosquitto MQTT Broker/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Mosquitto MQTT Broker/index.js -------------------------------------------------------------------------------- /Mosquitto MQTT Broker/models/eventsModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Mosquitto MQTT Broker/models/eventsModel.js -------------------------------------------------------------------------------- /Mosquitto MQTT Broker/models/usersModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Mosquitto MQTT Broker/models/usersModel.js -------------------------------------------------------------------------------- /Mosquitto MQTT Broker/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Mosquitto MQTT Broker/package-lock.json -------------------------------------------------------------------------------- /Mosquitto MQTT Broker/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Mosquitto MQTT Broker/package.json -------------------------------------------------------------------------------- /OTA Update/httpUpdate_ESP8266/httpUpdate_ESP8266.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/OTA Update/httpUpdate_ESP8266/httpUpdate_ESP8266.ino -------------------------------------------------------------------------------- /OTA Update/httpUpdate_ESP8266/update-v2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/OTA Update/httpUpdate_ESP8266/update-v2.bin -------------------------------------------------------------------------------- /OTA Update/httpsUpdate_ESP8266/httpsUpdate_ESP8266.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/OTA Update/httpsUpdate_ESP8266/httpsUpdate_ESP8266.ino -------------------------------------------------------------------------------- /OTA Update/httpsUpdate_ESP8266/update-v2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/OTA Update/httpsUpdate_ESP8266/update-v2.bin -------------------------------------------------------------------------------- /PHP/MQTT with PHP/Part1/Composer-Setup.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/PHP/MQTT with PHP/Part1/Composer-Setup.exe -------------------------------------------------------------------------------- /PHP/MQTT with PHP/Part1/Demo Server/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/PHP/MQTT with PHP/Part1/Demo Server/composer.json -------------------------------------------------------------------------------- /PHP/MQTT with PHP/Part1/Demo Server/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/PHP/MQTT with PHP/Part1/Demo Server/composer.lock -------------------------------------------------------------------------------- /PHP/MQTT with PHP/Part1/Demo Server/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/PHP/MQTT with PHP/Part1/Demo Server/index.php -------------------------------------------------------------------------------- /PHP/MQTT with PHP/Part1/Demo Server/vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/PHP/MQTT with PHP/Part1/Demo Server/vendor/autoload.php -------------------------------------------------------------------------------- /PHP/Practice 15-02-2023/Server Code/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/PHP/Practice 15-02-2023/Server Code/index.php -------------------------------------------------------------------------------- /PHP/Practice 15-02-2023/Server Code/query.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/PHP/Practice 15-02-2023/Server Code/query.sql -------------------------------------------------------------------------------- /PHP/Practice 19-02-2023/Frontend Application/bulb-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/PHP/Practice 19-02-2023/Frontend Application/bulb-off.png -------------------------------------------------------------------------------- /PHP/Practice 19-02-2023/Frontend Application/bulb-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/PHP/Practice 19-02-2023/Frontend Application/bulb-on.png -------------------------------------------------------------------------------- /PHP/Practice 19-02-2023/Frontend Application/hum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/PHP/Practice 19-02-2023/Frontend Application/hum.png -------------------------------------------------------------------------------- /PHP/Practice 19-02-2023/Frontend Application/temp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/PHP/Practice 19-02-2023/Frontend Application/temp.png -------------------------------------------------------------------------------- /PHP/Practice 19-02-2023/Server/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/PHP/Practice 19-02-2023/Server/index.php -------------------------------------------------------------------------------- /PHP/Practice 19-02-2023/Server/query.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/PHP/Practice 19-02-2023/Server/query.sql -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/README.md -------------------------------------------------------------------------------- /RS-232/Master/Master.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/RS-232/Master/Master.ino -------------------------------------------------------------------------------- /RS-232/Slave/Slave.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/RS-232/Slave/Slave.ino -------------------------------------------------------------------------------- /RS-485 Daisy Chain/Master/Master.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/RS-485 Daisy Chain/Master/Master.ino -------------------------------------------------------------------------------- /RS-485 Daisy Chain/Slave1/Slave1.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/RS-485 Daisy Chain/Slave1/Slave1.ino -------------------------------------------------------------------------------- /RS-485 Daisy Chain/Slave2/Slave2.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/RS-485 Daisy Chain/Slave2/Slave2.ino -------------------------------------------------------------------------------- /RS-485 Daisy Chain/Slave3/Slave3.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/RS-485 Daisy Chain/Slave3/Slave3.ino -------------------------------------------------------------------------------- /RS-485/Master/Master.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/RS-485/Master/Master.ino -------------------------------------------------------------------------------- /RS-485/Receiver/Receiver.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/RS-485/Receiver/Receiver.ino -------------------------------------------------------------------------------- /RS-485/Sender/Sender.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/RS-485/Sender/Sender.ino -------------------------------------------------------------------------------- /RS-485/Slave/Slave.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/RS-485/Slave/Slave.ino -------------------------------------------------------------------------------- /Relay_Module/Relay_Module.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Relay_Module/Relay_Module.ino -------------------------------------------------------------------------------- /SPI_EthernetModule/SPI_EthernetModule.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/SPI_EthernetModule/SPI_EthernetModule.ino -------------------------------------------------------------------------------- /Serial Functions/Serial_Read/Serial_Read.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Serial Functions/Serial_Read/Serial_Read.ino -------------------------------------------------------------------------------- /Serial Functions/Serial_Wrte/Serial_Wrte.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Serial Functions/Serial_Wrte/Serial_Wrte.ino -------------------------------------------------------------------------------- /Serial_Arduino/Serial_Arduino.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Serial_Arduino/Serial_Arduino.ino -------------------------------------------------------------------------------- /Serial_ESP8266/Serial_ESP8266.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Serial_ESP8266/Serial_ESP8266.ino -------------------------------------------------------------------------------- /Server Examples/02-12-2022/.gitignore: -------------------------------------------------------------------------------- 1 | # dependencies 2 | node_modules -------------------------------------------------------------------------------- /Server Examples/02-12-2022/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/02-12-2022/index.js -------------------------------------------------------------------------------- /Server Examples/02-12-2022/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/02-12-2022/package-lock.json -------------------------------------------------------------------------------- /Server Examples/02-12-2022/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/02-12-2022/package.json -------------------------------------------------------------------------------- /Server Examples/02-12-2022/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/02-12-2022/readme.md -------------------------------------------------------------------------------- /Server Examples/04-01-2023/.gitignore: -------------------------------------------------------------------------------- 1 | # dependencies 2 | node_modules -------------------------------------------------------------------------------- /Server Examples/04-01-2023/Frontend Application/hum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/04-01-2023/Frontend Application/hum.png -------------------------------------------------------------------------------- /Server Examples/04-01-2023/Frontend Application/temp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/04-01-2023/Frontend Application/temp.png -------------------------------------------------------------------------------- /Server Examples/04-01-2023/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/04-01-2023/index.js -------------------------------------------------------------------------------- /Server Examples/04-01-2023/index2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/04-01-2023/index2.js -------------------------------------------------------------------------------- /Server Examples/04-01-2023/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/04-01-2023/main.js -------------------------------------------------------------------------------- /Server Examples/04-01-2023/models/eventsModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/04-01-2023/models/eventsModel.js -------------------------------------------------------------------------------- /Server Examples/04-01-2023/models/usersModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/04-01-2023/models/usersModel.js -------------------------------------------------------------------------------- /Server Examples/04-01-2023/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/04-01-2023/package-lock.json -------------------------------------------------------------------------------- /Server Examples/04-01-2023/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/04-01-2023/package.json -------------------------------------------------------------------------------- /Server Examples/07-12-2022/.gitignore: -------------------------------------------------------------------------------- 1 | # dependencies 2 | node_modules -------------------------------------------------------------------------------- /Server Examples/07-12-2022/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/index.js -------------------------------------------------------------------------------- /Server Examples/07-12-2022/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/model.js -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/.bin/fxparser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/.bin/fxparser -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/.bin/fxparser.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/.bin/fxparser.cmd -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/.bin/fxparser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/.bin/fxparser.ps1 -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/.bin/mime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/.bin/mime -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/.bin/mime.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/.bin/mime.cmd -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/.bin/mime.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/.bin/mime.ps1 -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/.bin/uuid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/.bin/uuid -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/.bin/uuid.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/.bin/uuid.cmd -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/.bin/uuid.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/.bin/uuid.ps1 -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/.package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/.package-lock.json -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/modules/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/modules/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-crypto/sha256-js/build/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from "./jsSha256"; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-crypto/sha256-js/node_modules/tslib/modules/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-crypto/sha256-js/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./jsSha256"; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-crypto/supports-web-crypto/build/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from "./supportsWebCrypto"; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/modules/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-crypto/supports-web-crypto/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./supportsWebCrypto"; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-crypto/util/node_modules/tslib/modules/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/client-cognito-identity/dist-es/models/index.js: -------------------------------------------------------------------------------- 1 | export * from "./models_0"; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/client-cognito-identity/dist-es/pagination/Interfaces.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/client-cognito-identity/dist-types/models/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from "./models_0"; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/models/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from "./models_0"; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/client-sso-oidc/dist-es/models/index.js: -------------------------------------------------------------------------------- 1 | export * from "./models_0"; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/client-sso-oidc/dist-types/models/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from "./models_0"; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/models/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from "./models_0"; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/client-sso/dist-cjs/pagination/Interfaces.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/client-sso/dist-es/models/index.js: -------------------------------------------------------------------------------- 1 | export * from "./models_0"; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/client-sso/dist-es/pagination/Interfaces.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/client-sso/dist-types/models/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from "./models_0"; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/models/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from "./models_0"; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/client-sts/dist-es/models/index.js: -------------------------------------------------------------------------------- 1 | export * from "./models_0"; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/client-sts/dist-types/models/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from "./models_0"; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/models/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from "./models_0"; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/config-resolver/dist-cjs/regionInfo/RegionHash.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/EndpointVariant.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/EndpointVariantTag.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/PartitionHash.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/RegionHash.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionInfo/EndpointVariantTag.d.ts: -------------------------------------------------------------------------------- 1 | export declare type EndpointVariantTag = "fips" | "dualstack"; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/credential-provider-cognito-identity/dist-es/CognitoProviderParameters.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/credential-provider-cognito-identity/dist-es/Logins.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/credential-provider-cognito-identity/dist-es/Storage.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/credential-provider-imds/dist-cjs/types.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/credential-provider-imds/dist-es/types.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/credential-provider-node/dist-es/index.js: -------------------------------------------------------------------------------- 1 | export * from "./defaultProvider"; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/credential-provider-node/dist-types/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from "./defaultProvider"; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/credential-provider-node/dist-types/ts3.4/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from "./defaultProvider"; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/credential-provider-process/dist-es/ProcessCredentials.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/types.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/credential-provider-sso/dist-es/types.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/middleware-endpoint/dist-cjs/types.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/middleware-endpoint/dist-es/service-customizations/index.js: -------------------------------------------------------------------------------- 1 | export * from "./s3"; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/middleware-endpoint/dist-es/types.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/middleware-endpoint/dist-types/service-customizations/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from "./s3"; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/middleware-endpoint/dist-types/ts3.4/service-customizations/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from "./s3"; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/middleware-logger/dist-es/index.js: -------------------------------------------------------------------------------- 1 | export * from "./loggerMiddleware"; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/middleware-logger/dist-types/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from "./loggerMiddleware"; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/middleware-logger/dist-types/ts3.4/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from "./loggerMiddleware"; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/middleware-retry/dist-cjs/types.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/middleware-retry/dist-es/types.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/middleware-stack/dist-cjs/types.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/middleware-stack/dist-es/index.js: -------------------------------------------------------------------------------- 1 | export * from "./MiddlewareStack"; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/middleware-stack/dist-es/types.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/middleware-stack/dist-types/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from "./MiddlewareStack"; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/middleware-stack/dist-types/ts3.4/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from "./MiddlewareStack"; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/node-config-provider/dist-es/index.js: -------------------------------------------------------------------------------- 1 | export * from "./configLoader"; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/node-config-provider/dist-types/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from "./configLoader"; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/node-config-provider/dist-types/ts3.4/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from "./configLoader"; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/constants.d.ts: -------------------------------------------------------------------------------- 1 | export declare const NODEJS_TIMEOUT_ERROR_CODES: string[]; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/protocol-http/dist-cjs/httpHandler.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/protocol-http/dist-es/httpHandler.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/shared-ini-file-loader/dist-cjs/types.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/shared-ini-file-loader/dist-es/types.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/ts3.4/getHomeDir.d.ts: -------------------------------------------------------------------------------- 1 | export declare const getHomeDir: () => string; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/smithy-client/dist-es/constants.js: -------------------------------------------------------------------------------- 1 | export const SENSITIVE_STRING = "***SensitiveInformation***"; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/smithy-client/dist-types/constants.d.ts: -------------------------------------------------------------------------------- 1 | export declare const SENSITIVE_STRING = "***SensitiveInformation***"; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/constants.d.ts: -------------------------------------------------------------------------------- 1 | export declare const SENSITIVE_STRING = "***SensitiveInformation***"; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/types/dist-cjs/abort.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/types/dist-cjs/auth.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/types/dist-cjs/checksum.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/types/dist-cjs/client.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/types/dist-cjs/command.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/types/dist-cjs/credentials.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/types/dist-cjs/crypto.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/types/dist-cjs/eventStream.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/types/dist-cjs/http.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/types/dist-cjs/identity/AnonymousIdentity.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/types/dist-cjs/identity/AwsCredentialIdentity.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/types/dist-cjs/identity/Identity.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | ; 4 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/types/dist-cjs/identity/LoginIdentity.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/types/dist-cjs/identity/TokenIdentity.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/types/dist-cjs/logger.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/types/dist-cjs/middleware.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/types/dist-cjs/pagination.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/types/dist-cjs/profile.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/types/dist-cjs/response.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/types/dist-cjs/retry.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/types/dist-cjs/serde.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/types/dist-cjs/shapes.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/types/dist-cjs/signature.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/types/dist-cjs/stream.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/types/dist-cjs/token.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/types/dist-cjs/transfer.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/types/dist-cjs/util.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/types/dist-cjs/waiter.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/types/dist-es/abort.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/types/dist-es/auth.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/types/dist-es/checksum.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/types/dist-es/client.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/types/dist-es/command.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/types/dist-es/credentials.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/types/dist-es/crypto.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/types/dist-es/eventStream.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/types/dist-es/http.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/types/dist-es/identity/AnonymousIdentity.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/types/dist-es/identity/AwsCredentialIdentity.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/types/dist-es/identity/Identity.js: -------------------------------------------------------------------------------- 1 | ; 2 | export {}; 3 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/types/dist-es/identity/LoginIdentity.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/types/dist-es/identity/TokenIdentity.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/types/dist-es/logger.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/types/dist-es/middleware.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/types/dist-es/pagination.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/types/dist-es/profile.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/types/dist-es/response.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/types/dist-es/retry.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/types/dist-es/serde.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/types/dist-es/shapes.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/types/dist-es/signature.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/types/dist-es/stream.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/types/dist-es/token.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/types/dist-es/transfer.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/types/dist-es/util.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/types/dist-es/waiter.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/util-base64/dist-types/ts3.4/fromBase64.browser.d.ts: -------------------------------------------------------------------------------- 1 | export declare const fromBase64: (input: string) => Uint8Array; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/util-base64/dist-types/ts3.4/fromBase64.d.ts: -------------------------------------------------------------------------------- 1 | export declare const fromBase64: (input: string) => Uint8Array; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/util-base64/dist-types/ts3.4/toBase64.browser.d.ts: -------------------------------------------------------------------------------- 1 | export declare function toBase64(input: Uint8Array): string; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/util-base64/dist-types/ts3.4/toBase64.d.ts: -------------------------------------------------------------------------------- 1 | export declare const toBase64: (input: Uint8Array) => string; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/util-body-length-browser/dist-es/index.js: -------------------------------------------------------------------------------- 1 | export * from "./calculateBodyLength"; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/util-body-length-browser/dist-types/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from "./calculateBodyLength"; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/util-body-length-browser/dist-types/ts3.4/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from "./calculateBodyLength"; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/util-body-length-node/dist-es/index.js: -------------------------------------------------------------------------------- 1 | export * from "./calculateBodyLength"; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/util-body-length-node/dist-types/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from "./calculateBodyLength"; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/util-body-length-node/dist-types/ts3.4/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from "./calculateBodyLength"; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/util-config-provider/dist-es/index.js: -------------------------------------------------------------------------------- 1 | export * from "./booleanSelector"; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/util-config-provider/dist-types/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from "./booleanSelector"; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/util-config-provider/dist-types/ts3.4/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from "./booleanSelector"; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/util-defaults-mode-browser/dist-es/index.js: -------------------------------------------------------------------------------- 1 | export * from "./resolveDefaultsModeConfig"; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/util-defaults-mode-browser/dist-types/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from "./resolveDefaultsModeConfig"; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/util-defaults-mode-browser/dist-types/ts3.4/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from "./resolveDefaultsModeConfig"; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/util-defaults-mode-node/dist-es/index.js: -------------------------------------------------------------------------------- 1 | export * from "./resolveDefaultsModeConfig"; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/util-defaults-mode-node/dist-types/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from "./resolveDefaultsModeConfig"; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/util-defaults-mode-node/dist-types/ts3.4/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from "./resolveDefaultsModeConfig"; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/util-endpoints/dist-cjs/types/ErrorRuleObject.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/util-endpoints/dist-cjs/types/RuleSetObject.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/util-endpoints/dist-cjs/types/TreeRuleObject.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/util-endpoints/dist-cjs/types/shared.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/util-endpoints/dist-es/debug/debugId.js: -------------------------------------------------------------------------------- 1 | export const debugId = "endpoints"; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/util-endpoints/dist-es/types/EndpointRuleObject.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/util-endpoints/dist-es/types/ErrorRuleObject.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/util-endpoints/dist-es/types/RuleSetObject.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/util-endpoints/dist-es/types/TreeRuleObject.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/util-endpoints/dist-es/types/shared.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/util-endpoints/dist-es/utils/index.js: -------------------------------------------------------------------------------- 1 | export * from "./evaluateRules"; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/isIpAddress.d.ts: -------------------------------------------------------------------------------- 1 | export declare const isIpAddress: (value: string) => boolean; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/isSet.d.ts: -------------------------------------------------------------------------------- 1 | export declare const isSet: (value: unknown) => boolean; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/utils/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from "./evaluateRules"; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/util-endpoints/dist-types/utils/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from "./evaluateRules"; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/util-middleware/dist-es/index.js: -------------------------------------------------------------------------------- 1 | export * from "./normalizeProvider"; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/util-middleware/dist-types/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from "./normalizeProvider"; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/util-middleware/dist-types/ts3.4/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from "./normalizeProvider"; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/@aws-sdk/util-user-agent-browser/dist-es/configurations.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/accepts/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/accepts/HISTORY.md -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/accepts/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/accepts/LICENSE -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/accepts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/accepts/README.md -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/accepts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/accepts/index.js -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/base64-js/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/base64-js/LICENSE -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/base64-js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/base64-js/index.js -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/bowser/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/bowser/LICENSE -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/bowser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/bowser/README.md -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/bowser/bundled.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/bowser/bundled.js -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/bowser/es5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/bowser/es5.js -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/bowser/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/bowser/index.d.ts -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/bson/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/bson/LICENSE.md -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/bson/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/bson/README.md -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/bson/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/bson/bower.json -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/bson/bson.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/bson/bson.d.ts -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/bson/lib/binary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/bson/lib/binary.js -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/bson/lib/bson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/bson/lib/bson.js -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/bson/lib/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/bson/lib/code.js -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/bson/lib/db_ref.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/bson/lib/db_ref.js -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/bson/lib/double.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/bson/lib/double.js -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/bson/lib/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/bson/lib/error.js -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/bson/lib/int_32.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/bson/lib/int_32.js -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/bson/lib/long.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/bson/lib/long.js -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/bson/lib/map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/bson/lib/map.js -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/bson/lib/regexp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/bson/lib/regexp.js -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/bson/lib/symbol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/bson/lib/symbol.js -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/bson/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/bson/package.json -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/bson/src/binary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/bson/src/binary.ts -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/bson/src/bson.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/bson/src/bson.ts -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/bson/src/code.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/bson/src/code.ts -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/bson/src/db_ref.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/bson/src/db_ref.ts -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/bson/src/double.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/bson/src/double.ts -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/bson/src/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/bson/src/error.ts -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/bson/src/int_32.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/bson/src/int_32.ts -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/bson/src/long.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/bson/src/long.ts -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/bson/src/map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/bson/src/map.ts -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/bson/src/regexp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/bson/src/regexp.ts -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/bson/src/symbol.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/bson/src/symbol.ts -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/buffer/AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/buffer/AUTHORS.md -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/buffer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/buffer/LICENSE -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/buffer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/buffer/README.md -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/buffer/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/buffer/index.d.ts -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/buffer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/buffer/index.js -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/bytes/History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/bytes/History.md -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/bytes/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/bytes/LICENSE -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/bytes/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/bytes/Readme.md -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/bytes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/bytes/index.js -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/bytes/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/bytes/package.json -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/call-bind/.eslintignore: -------------------------------------------------------------------------------- 1 | coverage/ 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/call-bind/.nycrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/call-bind/.nycrc -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/call-bind/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/call-bind/LICENSE -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/call-bind/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/call-bind/index.js -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/cookie-signature/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/cookie/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/cookie/HISTORY.md -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/cookie/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/cookie/LICENSE -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/cookie/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/cookie/README.md -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/cookie/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/cookie/SECURITY.md -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/cookie/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/cookie/index.js -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/debug/.coveralls.yml: -------------------------------------------------------------------------------- 1 | repo_token: SIAeZjKYlHK74rbcFvNHMUzjRiMpflxve 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/debug/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/debug/.eslintrc -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/debug/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/debug/.npmignore -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/debug/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/debug/.travis.yml -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/debug/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/debug/CHANGELOG.md -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/debug/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/debug/LICENSE -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/debug/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/debug/Makefile -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/debug/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/debug/README.md -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/debug/node.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./src/node'); 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/debug/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/debug/package.json -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/debug/src/debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/debug/src/debug.js -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/debug/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/debug/src/index.js -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/debug/src/node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/debug/src/node.js -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/depd/History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/depd/History.md -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/depd/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/depd/LICENSE -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/depd/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/depd/Readme.md -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/depd/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/depd/index.js -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/depd/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/depd/package.json -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/destroy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/destroy/LICENSE -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/destroy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/destroy/README.md -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/destroy/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/destroy/index.js -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/ee-first/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/ee-first/LICENSE -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/ee-first/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/ee-first/README.md -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/ee-first/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/ee-first/index.js -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/encodeurl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/encodeurl/LICENSE -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/encodeurl/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/encodeurl/index.js -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/etag/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/etag/HISTORY.md -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/etag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/etag/LICENSE -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/etag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/etag/README.md -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/etag/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/etag/index.js -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/etag/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/etag/package.json -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/express/History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/express/History.md -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/express/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/express/LICENSE -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/express/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/express/Readme.md -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/express/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/express/index.js -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/fast-xml-parser/src/xmlbuilder/prettifyJs2Xml.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/forwarded/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/forwarded/LICENSE -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/forwarded/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/forwarded/index.js -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/fresh/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/fresh/HISTORY.md -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/fresh/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/fresh/LICENSE -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/fresh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/fresh/README.md -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/fresh/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/fresh/index.js -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/fresh/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/fresh/package.json -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/has-symbols/.nycrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/has-symbols/.nycrc -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/has/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/has/LICENSE-MIT -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/has/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/has/README.md -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/has/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/has/package.json -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/has/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/has/src/index.js -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/has/test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/has/test/index.js -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/iconv-lite/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/iconv-lite/LICENSE -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/ieee754/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/ieee754/LICENSE -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/ieee754/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/ieee754/README.md -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/ieee754/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/ieee754/index.d.ts -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/ieee754/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/ieee754/index.js -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/inherits/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/inherits/LICENSE -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/inherits/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/inherits/README.md -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/ip/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/ip/README.md -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/ip/lib/ip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/ip/lib/ip.js -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/ip/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/ip/package.json -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/ipaddr.js/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/ipaddr.js/LICENSE -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/kareem/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/kareem/LICENSE -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/kareem/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/kareem/README.md -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/kareem/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/kareem/index.js -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/methods/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/methods/HISTORY.md -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/methods/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/methods/LICENSE -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/methods/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/methods/README.md -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/methods/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/methods/index.js -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/mime-db/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/mime-db/HISTORY.md -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/mime-db/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/mime-db/LICENSE -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/mime-db/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/mime-db/README.md -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/mime-db/db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/mime-db/db.json -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/mime-db/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/mime-db/index.js -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/mime-types/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/mime-types/LICENSE -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/mime/.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/mime/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/mime/CHANGELOG.md -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/mime/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/mime/LICENSE -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/mime/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/mime/README.md -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/mime/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/mime/cli.js -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/mime/mime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/mime/mime.js -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/mime/types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/mime/types.json -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/mongoose/lib/drivers/SPEC.md: -------------------------------------------------------------------------------- 1 | 2 | # Driver Spec 3 | 4 | TODO 5 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/mpath/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/mpath/LICENSE -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/mpath/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/mpath/README.md -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/mpath/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/mpath/index.js -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/mpath/test/.eslintrc.yml: -------------------------------------------------------------------------------- 1 | env: 2 | mocha: true 3 | rules: 4 | no-unused-vars: off -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/mquery/.eslintignore: -------------------------------------------------------------------------------- 1 | coverage/ -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/mquery/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/mquery/LICENSE -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/mquery/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/mquery/Makefile -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/mquery/test/.eslintrc.yml: -------------------------------------------------------------------------------- 1 | env: 2 | mocha: true -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/mquery/test/collection/browser.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/mquery/test/collection/mongo.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/ms/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/ms/index.js -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/ms/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/ms/license.md -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/ms/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/ms/package.json -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/ms/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/ms/readme.md -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/object-inspect/util.inspect.js: -------------------------------------------------------------------------------- 1 | module.exports = require('util').inspect; 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/qs/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/qs/.eslintrc -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/qs/.nycrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/qs/.nycrc -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/qs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/qs/CHANGELOG.md -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/qs/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/qs/LICENSE.md -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/qs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/qs/README.md -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/qs/dist/qs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/qs/dist/qs.js -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/qs/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/qs/lib/index.js -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/qs/lib/parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/qs/lib/parse.js -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/qs/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/qs/lib/utils.js -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/qs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/qs/package.json -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/saslprep/.gitattributes: -------------------------------------------------------------------------------- 1 | *.mem binary 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/send/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/send/HISTORY.md -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/send/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/send/LICENSE -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/send/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/send/README.md -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/send/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/send/index.js -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/side-channel/.eslintignore: -------------------------------------------------------------------------------- 1 | coverage/ 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/sift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/sift/README.md -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/sift/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/sift/index.d.ts -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/sift/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/sift/index.js -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/smart-buffer/docs/ROADMAP.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/socks/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/socks/LICENSE -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/socks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/socks/README.md -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/sparse-bitfield/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/strnum/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/strnum/LICENSE -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/tr46/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/tr46/LICENSE.md -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/tr46/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/tr46/README.md -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/tr46/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/tr46/index.js -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/tslib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/tslib/README.md -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/tslib/modules/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/tslib/tslib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/tslib/tslib.js -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/type-is/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/type-is/LICENSE -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/unpipe/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/unpipe/LICENSE -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/unpipe/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/unpipe/index.js -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/uuid/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/uuid/LICENSE.md -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/uuid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/uuid/README.md -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/uuid/dist/bin/uuid: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | require('../uuid-bin'); 3 | -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/uuid/dist/v1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/uuid/dist/v1.js -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/uuid/dist/v3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/uuid/dist/v3.js -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/uuid/dist/v4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/uuid/dist/v4.js -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/uuid/dist/v5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/uuid/dist/v5.js -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/vary/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/vary/HISTORY.md -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/vary/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/vary/LICENSE -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/vary/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/vary/README.md -------------------------------------------------------------------------------- /Server Examples/07-12-2022/node_modules/vary/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/node_modules/vary/index.js -------------------------------------------------------------------------------- /Server Examples/07-12-2022/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/package-lock.json -------------------------------------------------------------------------------- /Server Examples/07-12-2022/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/package.json -------------------------------------------------------------------------------- /Server Examples/07-12-2022/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/07-12-2022/readme.md -------------------------------------------------------------------------------- /Server Examples/17-12-2022/.gitignore: -------------------------------------------------------------------------------- 1 | # dependencies 2 | node_modules -------------------------------------------------------------------------------- /Server Examples/17-12-2022/Frontend Application/hum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/17-12-2022/Frontend Application/hum.png -------------------------------------------------------------------------------- /Server Examples/17-12-2022/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/17-12-2022/index.js -------------------------------------------------------------------------------- /Server Examples/17-12-2022/models/eventsModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/17-12-2022/models/eventsModel.js -------------------------------------------------------------------------------- /Server Examples/17-12-2022/models/usersModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/17-12-2022/models/usersModel.js -------------------------------------------------------------------------------- /Server Examples/17-12-2022/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/17-12-2022/package-lock.json -------------------------------------------------------------------------------- /Server Examples/17-12-2022/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/17-12-2022/package.json -------------------------------------------------------------------------------- /Server Examples/29-11-2022/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/29-11-2022/main.js -------------------------------------------------------------------------------- /Server Examples/30-11-2022/.gitignore: -------------------------------------------------------------------------------- 1 | # dependencies 2 | node_modules -------------------------------------------------------------------------------- /Server Examples/30-11-2022/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/30-11-2022/index.js -------------------------------------------------------------------------------- /Server Examples/30-11-2022/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/30-11-2022/package-lock.json -------------------------------------------------------------------------------- /Server Examples/30-11-2022/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/30-11-2022/package.json -------------------------------------------------------------------------------- /Server Examples/30-11-2022/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Server Examples/30-11-2022/readme.md -------------------------------------------------------------------------------- /Software Serial/Soft_Serial/Soft_Serial.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Software Serial/Soft_Serial/Soft_Serial.ino -------------------------------------------------------------------------------- /Software Serial/Soft_Serial2/Soft_Serial2.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Software Serial/Soft_Serial2/Soft_Serial2.ino -------------------------------------------------------------------------------- /Sound_Sensor/KY-038-Joy-IT.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Sound_Sensor/KY-038-Joy-IT.pdf -------------------------------------------------------------------------------- /Sound_Sensor/Sound_Sensor.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/Sound_Sensor/Sound_Sensor.ino -------------------------------------------------------------------------------- /WebSocket_Client/WebSocket_Client.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/WebSocket_Client/WebSocket_Client.ino -------------------------------------------------------------------------------- /libraries/Adafruit_Sensor-master/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/Adafruit_Sensor-master/.gitignore -------------------------------------------------------------------------------- /libraries/Adafruit_Sensor-master/Adafruit_Sensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/Adafruit_Sensor-master/Adafruit_Sensor.cpp -------------------------------------------------------------------------------- /libraries/Adafruit_Sensor-master/Adafruit_Sensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/Adafruit_Sensor-master/Adafruit_Sensor.h -------------------------------------------------------------------------------- /libraries/Adafruit_Sensor-master/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/Adafruit_Sensor-master/LICENSE.txt -------------------------------------------------------------------------------- /libraries/Adafruit_Sensor-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/Adafruit_Sensor-master/README.md -------------------------------------------------------------------------------- /libraries/Adafruit_Sensor-master/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/Adafruit_Sensor-master/library.properties -------------------------------------------------------------------------------- /libraries/ArduinoJson/ArduinoJson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/ArduinoJson.h -------------------------------------------------------------------------------- /libraries/ArduinoJson/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/ArduinoJson/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/ArduinoJson/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/CONTRIBUTING.md -------------------------------------------------------------------------------- /libraries/ArduinoJson/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/LICENSE.md -------------------------------------------------------------------------------- /libraries/ArduinoJson/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/README.md -------------------------------------------------------------------------------- /libraries/ArduinoJson/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/SUPPORT.md -------------------------------------------------------------------------------- /libraries/ArduinoJson/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/appveyor.yml -------------------------------------------------------------------------------- /libraries/ArduinoJson/banner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/banner.svg -------------------------------------------------------------------------------- /libraries/ArduinoJson/component.mk: -------------------------------------------------------------------------------- 1 | COMPONENT_ADD_INCLUDEDIRS := src 2 | -------------------------------------------------------------------------------- /libraries/ArduinoJson/extras/ArduinoJsonConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/extras/ArduinoJsonConfig.cmake.in -------------------------------------------------------------------------------- /libraries/ArduinoJson/extras/CompileOptions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/extras/CompileOptions.cmake -------------------------------------------------------------------------------- /libraries/ArduinoJson/extras/ci/espidf/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/extras/ci/espidf/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/ArduinoJson/extras/ci/espidf/main/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/extras/ci/espidf/main/main.cpp -------------------------------------------------------------------------------- /libraries/ArduinoJson/extras/ci/particle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/extras/ci/particle.sh -------------------------------------------------------------------------------- /libraries/ArduinoJson/extras/conf_test/avr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/extras/conf_test/avr.cpp -------------------------------------------------------------------------------- /libraries/ArduinoJson/extras/conf_test/esp8266.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/extras/conf_test/esp8266.cpp -------------------------------------------------------------------------------- /libraries/ArduinoJson/extras/conf_test/x64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/extras/conf_test/x64.cpp -------------------------------------------------------------------------------- /libraries/ArduinoJson/extras/conf_test/x86.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/extras/conf_test/x86.cpp -------------------------------------------------------------------------------- /libraries/ArduinoJson/extras/fuzzing/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/extras/fuzzing/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/ArduinoJson/extras/fuzzing/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/extras/fuzzing/Makefile -------------------------------------------------------------------------------- /libraries/ArduinoJson/extras/fuzzing/json_fuzzer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/extras/fuzzing/json_fuzzer.cpp -------------------------------------------------------------------------------- /libraries/ArduinoJson/extras/fuzzing/json_seed_corpus/EmptyArray.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /libraries/ArduinoJson/extras/fuzzing/json_seed_corpus/EmptyObject.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /libraries/ArduinoJson/extras/fuzzing/msgpack_fuzzer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/extras/fuzzing/msgpack_fuzzer.cpp -------------------------------------------------------------------------------- /libraries/ArduinoJson/extras/fuzzing/msgpack_seed_corpus/fixint_positive: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /libraries/ArduinoJson/extras/fuzzing/reproducer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/extras/fuzzing/reproducer.cpp -------------------------------------------------------------------------------- /libraries/ArduinoJson/extras/particle/project.properties: -------------------------------------------------------------------------------- 1 | name=ArduinoJsonCI 2 | -------------------------------------------------------------------------------- /libraries/ArduinoJson/extras/particle/src/smocktest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/extras/particle/src/smocktest.ino -------------------------------------------------------------------------------- /libraries/ArduinoJson/extras/scripts/publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/extras/scripts/publish.sh -------------------------------------------------------------------------------- /libraries/ArduinoJson/extras/scripts/wandbox/publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/extras/scripts/wandbox/publish.sh -------------------------------------------------------------------------------- /libraries/ArduinoJson/extras/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/extras/tests/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/ArduinoJson/extras/tests/Cpp11/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/extras/tests/Cpp11/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/ArduinoJson/extras/tests/Cpp11/issue1120.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/extras/tests/Cpp11/issue1120.cpp -------------------------------------------------------------------------------- /libraries/ArduinoJson/extras/tests/Cpp11/nullptr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/extras/tests/Cpp11/nullptr.cpp -------------------------------------------------------------------------------- /libraries/ArduinoJson/extras/tests/Cpp17/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/extras/tests/Cpp17/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/ArduinoJson/extras/tests/Cpp20/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/extras/tests/Cpp20/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/ArduinoJson/extras/tests/Cpp20/smoke_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/extras/tests/Cpp20/smoke_test.cpp -------------------------------------------------------------------------------- /libraries/ArduinoJson/extras/tests/Helpers/Arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/extras/tests/Helpers/Arduino.h -------------------------------------------------------------------------------- /libraries/ArduinoJson/extras/tests/Helpers/api/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/extras/tests/Helpers/api/Print.h -------------------------------------------------------------------------------- /libraries/ArduinoJson/extras/tests/Helpers/api/Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/extras/tests/Helpers/api/Stream.h -------------------------------------------------------------------------------- /libraries/ArduinoJson/extras/tests/Helpers/api/String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/extras/tests/Helpers/api/String.h -------------------------------------------------------------------------------- /libraries/ArduinoJson/extras/tests/JsonArray/add.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/extras/tests/JsonArray/add.cpp -------------------------------------------------------------------------------- /libraries/ArduinoJson/extras/tests/JsonArray/clear.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/extras/tests/JsonArray/clear.cpp -------------------------------------------------------------------------------- /libraries/ArduinoJson/extras/tests/JsonArray/equals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/extras/tests/JsonArray/equals.cpp -------------------------------------------------------------------------------- /libraries/ArduinoJson/extras/tests/JsonArray/get.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/extras/tests/JsonArray/get.cpp -------------------------------------------------------------------------------- /libraries/ArduinoJson/extras/tests/JsonArray/isNull.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/extras/tests/JsonArray/isNull.cpp -------------------------------------------------------------------------------- /libraries/ArduinoJson/extras/tests/JsonArray/remove.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/extras/tests/JsonArray/remove.cpp -------------------------------------------------------------------------------- /libraries/ArduinoJson/extras/tests/JsonArray/size.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/extras/tests/JsonArray/size.cpp -------------------------------------------------------------------------------- /libraries/ArduinoJson/extras/tests/JsonDocument/add.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/extras/tests/JsonDocument/add.cpp -------------------------------------------------------------------------------- /libraries/ArduinoJson/extras/tests/JsonObject/clear.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/extras/tests/JsonObject/clear.cpp -------------------------------------------------------------------------------- /libraries/ArduinoJson/extras/tests/JsonObject/copy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/extras/tests/JsonObject/copy.cpp -------------------------------------------------------------------------------- /libraries/ArduinoJson/extras/tests/JsonObject/size.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/extras/tests/JsonObject/size.cpp -------------------------------------------------------------------------------- /libraries/ArduinoJson/extras/tests/JsonVariant/add.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/extras/tests/JsonVariant/add.cpp -------------------------------------------------------------------------------- /libraries/ArduinoJson/extras/tests/JsonVariant/as.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/extras/tests/JsonVariant/as.cpp -------------------------------------------------------------------------------- /libraries/ArduinoJson/extras/tests/JsonVariant/copy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/extras/tests/JsonVariant/copy.cpp -------------------------------------------------------------------------------- /libraries/ArduinoJson/extras/tests/JsonVariant/is.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/extras/tests/JsonVariant/is.cpp -------------------------------------------------------------------------------- /libraries/ArduinoJson/extras/tests/JsonVariant/misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/extras/tests/JsonVariant/misc.cpp -------------------------------------------------------------------------------- /libraries/ArduinoJson/extras/tests/JsonVariant/or.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/extras/tests/JsonVariant/or.cpp -------------------------------------------------------------------------------- /libraries/ArduinoJson/extras/tests/JsonVariant/set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/extras/tests/JsonVariant/set.cpp -------------------------------------------------------------------------------- /libraries/ArduinoJson/extras/tests/MemoryPool/clear.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/extras/tests/MemoryPool/clear.cpp -------------------------------------------------------------------------------- /libraries/ArduinoJson/extras/tests/MemoryPool/size.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/extras/tests/MemoryPool/size.cpp -------------------------------------------------------------------------------- /libraries/ArduinoJson/extras/tests/Misc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/extras/tests/Misc/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/ArduinoJson/extras/tests/Misc/FloatParts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/extras/tests/Misc/FloatParts.cpp -------------------------------------------------------------------------------- /libraries/ArduinoJson/extras/tests/Misc/JsonString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/extras/tests/Misc/JsonString.cpp -------------------------------------------------------------------------------- /libraries/ArduinoJson/extras/tests/Misc/Readers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/extras/tests/Misc/Readers.cpp -------------------------------------------------------------------------------- /libraries/ArduinoJson/extras/tests/Misc/TypeTraits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/extras/tests/Misc/TypeTraits.cpp -------------------------------------------------------------------------------- /libraries/ArduinoJson/extras/tests/Misc/Utf16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/extras/tests/Misc/Utf16.cpp -------------------------------------------------------------------------------- /libraries/ArduinoJson/extras/tests/Misc/Utf8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/extras/tests/Misc/Utf8.cpp -------------------------------------------------------------------------------- /libraries/ArduinoJson/extras/tests/Misc/conflicts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/extras/tests/Misc/conflicts.cpp -------------------------------------------------------------------------------- /libraries/ArduinoJson/extras/tests/Misc/deprecated.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/extras/tests/Misc/deprecated.cpp -------------------------------------------------------------------------------- /libraries/ArduinoJson/extras/tests/Misc/printable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/extras/tests/Misc/printable.cpp -------------------------------------------------------------------------------- /libraries/ArduinoJson/extras/tests/Misc/version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/extras/tests/Misc/version.cpp -------------------------------------------------------------------------------- /libraries/ArduinoJson/extras/tests/catch/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/extras/tests/catch/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/ArduinoJson/extras/tests/catch/catch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/extras/tests/catch/catch.cpp -------------------------------------------------------------------------------- /libraries/ArduinoJson/extras/tests/catch/catch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/extras/tests/catch/catch.hpp -------------------------------------------------------------------------------- /libraries/ArduinoJson/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/keywords.txt -------------------------------------------------------------------------------- /libraries/ArduinoJson/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/library.json -------------------------------------------------------------------------------- /libraries/ArduinoJson/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/library.properties -------------------------------------------------------------------------------- /libraries/ArduinoJson/src/ArduinoJson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/src/ArduinoJson.h -------------------------------------------------------------------------------- /libraries/ArduinoJson/src/ArduinoJson.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/src/ArduinoJson.hpp -------------------------------------------------------------------------------- /libraries/ArduinoJson/src/ArduinoJson/Configuration.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/src/ArduinoJson/Configuration.hpp -------------------------------------------------------------------------------- /libraries/ArduinoJson/src/ArduinoJson/Json/Latch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/src/ArduinoJson/Json/Latch.hpp -------------------------------------------------------------------------------- /libraries/ArduinoJson/src/ArduinoJson/Json/Utf16.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/src/ArduinoJson/Json/Utf16.hpp -------------------------------------------------------------------------------- /libraries/ArduinoJson/src/ArduinoJson/Json/Utf8.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/src/ArduinoJson/Json/Utf8.hpp -------------------------------------------------------------------------------- /libraries/ArduinoJson/src/ArduinoJson/Namespace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/src/ArduinoJson/Namespace.hpp -------------------------------------------------------------------------------- /libraries/ArduinoJson/src/ArduinoJson/Numbers/Float.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/src/ArduinoJson/Numbers/Float.hpp -------------------------------------------------------------------------------- /libraries/ArduinoJson/src/ArduinoJson/Object/Pair.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/src/ArduinoJson/Object/Pair.hpp -------------------------------------------------------------------------------- /libraries/ArduinoJson/src/ArduinoJson/compatibility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/src/ArduinoJson/compatibility.hpp -------------------------------------------------------------------------------- /libraries/ArduinoJson/src/ArduinoJson/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/src/ArduinoJson/version.hpp -------------------------------------------------------------------------------- /libraries/ArduinoJson/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/ArduinoJson/src/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/DHT_sensor_library/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/DHT_sensor_library/CONTRIBUTING.md -------------------------------------------------------------------------------- /libraries/DHT_sensor_library/DHT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/DHT_sensor_library/DHT.cpp -------------------------------------------------------------------------------- /libraries/DHT_sensor_library/DHT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/DHT_sensor_library/DHT.h -------------------------------------------------------------------------------- /libraries/DHT_sensor_library/DHT_U.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/DHT_sensor_library/DHT_U.cpp -------------------------------------------------------------------------------- /libraries/DHT_sensor_library/DHT_U.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/DHT_sensor_library/DHT_U.h -------------------------------------------------------------------------------- /libraries/DHT_sensor_library/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/DHT_sensor_library/README.md -------------------------------------------------------------------------------- /libraries/DHT_sensor_library/code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/DHT_sensor_library/code-of-conduct.md -------------------------------------------------------------------------------- /libraries/DHT_sensor_library/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/DHT_sensor_library/keywords.txt -------------------------------------------------------------------------------- /libraries/DHT_sensor_library/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/DHT_sensor_library/library.properties -------------------------------------------------------------------------------- /libraries/DHT_sensor_library/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/DHT_sensor_library/license.txt -------------------------------------------------------------------------------- /libraries/GSM SSLClient/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/GSM SSLClient/LICENSE -------------------------------------------------------------------------------- /libraries/GSM SSLClient/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/GSM SSLClient/README.md -------------------------------------------------------------------------------- /libraries/GSM SSLClient/docs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/GSM SSLClient/docs/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/GSM SSLClient/docs/CODEGUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/GSM SSLClient/docs/CODEGUIDE.md -------------------------------------------------------------------------------- /libraries/GSM SSLClient/docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/GSM SSLClient/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /libraries/GSM SSLClient/docs/FUNCTIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/GSM SSLClient/docs/FUNCTIONS.md -------------------------------------------------------------------------------- /libraries/GSM SSLClient/docs/RSSI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/GSM SSLClient/docs/RSSI.md -------------------------------------------------------------------------------- /libraries/GSM SSLClient/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/GSM SSLClient/library.json -------------------------------------------------------------------------------- /libraries/GSM SSLClient/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/GSM SSLClient/library.properties -------------------------------------------------------------------------------- /libraries/GSM SSLClient/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/GSM SSLClient/platformio.ini -------------------------------------------------------------------------------- /libraries/GSM SSLClient/scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/GSM SSLClient/scripts/README.md -------------------------------------------------------------------------------- /libraries/GSM SSLClient/scripts/compile_pio_examples.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/GSM SSLClient/scripts/compile_pio_examples.sh -------------------------------------------------------------------------------- /libraries/GSM SSLClient/scripts/test_pio_platform.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/GSM SSLClient/scripts/test_pio_platform.sh -------------------------------------------------------------------------------- /libraries/GSM SSLClient/src/SSLClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/GSM SSLClient/src/SSLClient.cpp -------------------------------------------------------------------------------- /libraries/GSM SSLClient/src/SSLClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/GSM SSLClient/src/SSLClient.h -------------------------------------------------------------------------------- /libraries/GSM SSLClient/src/certBundle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/GSM SSLClient/src/certBundle.c -------------------------------------------------------------------------------- /libraries/GSM SSLClient/src/certBundle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/GSM SSLClient/src/certBundle.h -------------------------------------------------------------------------------- /libraries/GSM SSLClient/src/log_.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/GSM SSLClient/src/log_.h -------------------------------------------------------------------------------- /libraries/GSM SSLClient/src/ssl__client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/GSM SSLClient/src/ssl__client.cpp -------------------------------------------------------------------------------- /libraries/GSM SSLClient/src/ssl__client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/GSM SSLClient/src/ssl__client.h -------------------------------------------------------------------------------- /libraries/GSM SSLClient/test/mocks/ESPClass.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/GSM SSLClient/test/mocks/ESPClass.hpp -------------------------------------------------------------------------------- /libraries/GSM SSLClient/test/mocks/MbedTLS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/GSM SSLClient/test/mocks/MbedTLS.h -------------------------------------------------------------------------------- /libraries/GSM SSLClient/test/mocks/TestClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/GSM SSLClient/test/mocks/TestClient.h -------------------------------------------------------------------------------- /libraries/GSM SSLClient/test/mocks/esp32-hal-log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/GSM SSLClient/test/mocks/esp32-hal-log.h -------------------------------------------------------------------------------- /libraries/GSM SSLClient/test/mocks/esp_err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/GSM SSLClient/test/mocks/esp_err.h -------------------------------------------------------------------------------- /libraries/GSM SSLClient/test/mocks/esp_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/GSM SSLClient/test/mocks/esp_system.h -------------------------------------------------------------------------------- /libraries/GSM SSLClient/test/unit_test_private_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/GSM SSLClient/test/unit_test_private_api.cpp -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/LiquidCrystal_I2C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/LiquidCrystal_I2C/LiquidCrystal_I2C.cpp -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/LiquidCrystal_I2C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/LiquidCrystal_I2C/LiquidCrystal_I2C.h -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/LiquidCrystal_I2C.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/LiquidCrystal_I2C/LiquidCrystal_I2C.o -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/LiquidCrystal_I2C/README.md -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/LiquidCrystal_I2C/keywords.txt -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/LiquidCrystal_I2C/library.json -------------------------------------------------------------------------------- /libraries/LiquidCrystal_I2C/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/LiquidCrystal_I2C/library.properties -------------------------------------------------------------------------------- /libraries/PubSubClient/CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/PubSubClient/CHANGES.txt -------------------------------------------------------------------------------- /libraries/PubSubClient/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/PubSubClient/LICENSE.txt -------------------------------------------------------------------------------- /libraries/PubSubClient/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/PubSubClient/README.md -------------------------------------------------------------------------------- /libraries/PubSubClient/examples/mqtt_auth/mqtt_auth.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/PubSubClient/examples/mqtt_auth/mqtt_auth.ino -------------------------------------------------------------------------------- /libraries/PubSubClient/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/PubSubClient/keywords.txt -------------------------------------------------------------------------------- /libraries/PubSubClient/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/PubSubClient/library.json -------------------------------------------------------------------------------- /libraries/PubSubClient/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/PubSubClient/library.properties -------------------------------------------------------------------------------- /libraries/PubSubClient/src/PubSubClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/PubSubClient/src/PubSubClient.cpp -------------------------------------------------------------------------------- /libraries/PubSubClient/src/PubSubClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/PubSubClient/src/PubSubClient.h -------------------------------------------------------------------------------- /libraries/PubSubClient/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/PubSubClient/tests/Makefile -------------------------------------------------------------------------------- /libraries/PubSubClient/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/PubSubClient/tests/README.md -------------------------------------------------------------------------------- /libraries/PubSubClient/tests/src/connect_spec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/PubSubClient/tests/src/connect_spec.cpp -------------------------------------------------------------------------------- /libraries/PubSubClient/tests/src/keepalive_spec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/PubSubClient/tests/src/keepalive_spec.cpp -------------------------------------------------------------------------------- /libraries/PubSubClient/tests/src/lib/Arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/PubSubClient/tests/src/lib/Arduino.h -------------------------------------------------------------------------------- /libraries/PubSubClient/tests/src/lib/BDDTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/PubSubClient/tests/src/lib/BDDTest.cpp -------------------------------------------------------------------------------- /libraries/PubSubClient/tests/src/lib/BDDTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/PubSubClient/tests/src/lib/BDDTest.h -------------------------------------------------------------------------------- /libraries/PubSubClient/tests/src/lib/Buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/PubSubClient/tests/src/lib/Buffer.cpp -------------------------------------------------------------------------------- /libraries/PubSubClient/tests/src/lib/Buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/PubSubClient/tests/src/lib/Buffer.h -------------------------------------------------------------------------------- /libraries/PubSubClient/tests/src/lib/Client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/PubSubClient/tests/src/lib/Client.h -------------------------------------------------------------------------------- /libraries/PubSubClient/tests/src/lib/IPAddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/PubSubClient/tests/src/lib/IPAddress.cpp -------------------------------------------------------------------------------- /libraries/PubSubClient/tests/src/lib/IPAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/PubSubClient/tests/src/lib/IPAddress.h -------------------------------------------------------------------------------- /libraries/PubSubClient/tests/src/lib/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/PubSubClient/tests/src/lib/Print.h -------------------------------------------------------------------------------- /libraries/PubSubClient/tests/src/lib/ShimClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/PubSubClient/tests/src/lib/ShimClient.cpp -------------------------------------------------------------------------------- /libraries/PubSubClient/tests/src/lib/ShimClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/PubSubClient/tests/src/lib/ShimClient.h -------------------------------------------------------------------------------- /libraries/PubSubClient/tests/src/lib/Stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/PubSubClient/tests/src/lib/Stream.cpp -------------------------------------------------------------------------------- /libraries/PubSubClient/tests/src/lib/Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/PubSubClient/tests/src/lib/Stream.h -------------------------------------------------------------------------------- /libraries/PubSubClient/tests/src/lib/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/PubSubClient/tests/src/lib/trace.h -------------------------------------------------------------------------------- /libraries/PubSubClient/tests/src/publish_spec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/PubSubClient/tests/src/publish_spec.cpp -------------------------------------------------------------------------------- /libraries/PubSubClient/tests/src/receive_spec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/PubSubClient/tests/src/receive_spec.cpp -------------------------------------------------------------------------------- /libraries/PubSubClient/tests/src/subscribe_spec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/PubSubClient/tests/src/subscribe_spec.cpp -------------------------------------------------------------------------------- /libraries/PubSubClient/tests/testcases/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/PubSubClient/tests/testcases/mqtt_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/PubSubClient/tests/testcases/mqtt_basic.py -------------------------------------------------------------------------------- /libraries/PubSubClient/tests/testcases/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/PubSubClient/tests/testcases/settings.py -------------------------------------------------------------------------------- /libraries/PubSubClient/tests/testsuite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/PubSubClient/tests/testsuite.py -------------------------------------------------------------------------------- /libraries/TinyGSM/ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/TinyGSM/ChangeLog.md -------------------------------------------------------------------------------- /libraries/TinyGSM/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/TinyGSM/LICENSE -------------------------------------------------------------------------------- /libraries/TinyGSM/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/TinyGSM/Makefile -------------------------------------------------------------------------------- /libraries/TinyGSM/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/TinyGSM/README.md -------------------------------------------------------------------------------- /libraries/TinyGSM/cpplint.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/TinyGSM/cpplint.cfg -------------------------------------------------------------------------------- /libraries/TinyGSM/examples/BlynkClient/BlynkClient.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/TinyGSM/examples/BlynkClient/BlynkClient.ino -------------------------------------------------------------------------------- /libraries/TinyGSM/examples/HttpClient/HttpClient.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/TinyGSM/examples/HttpClient/HttpClient.ino -------------------------------------------------------------------------------- /libraries/TinyGSM/examples/HttpsClient/HttpsClient.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/TinyGSM/examples/HttpsClient/HttpsClient.ino -------------------------------------------------------------------------------- /libraries/TinyGSM/examples/MqttClient/MqttClient.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/TinyGSM/examples/MqttClient/MqttClient.ino -------------------------------------------------------------------------------- /libraries/TinyGSM/examples/WebClient/WebClient.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/TinyGSM/examples/WebClient/WebClient.ino -------------------------------------------------------------------------------- /libraries/TinyGSM/examples/example_dependencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/TinyGSM/examples/example_dependencies.json -------------------------------------------------------------------------------- /libraries/TinyGSM/extras/examples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/TinyGSM/extras/examples.png -------------------------------------------------------------------------------- /libraries/TinyGSM/extras/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/TinyGSM/extras/logo.svg -------------------------------------------------------------------------------- /libraries/TinyGSM/extras/logo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/TinyGSM/extras/logo.txt -------------------------------------------------------------------------------- /libraries/TinyGSM/extras/test_100k.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/TinyGSM/extras/test_100k.bin -------------------------------------------------------------------------------- /libraries/TinyGSM/extras/test_100k.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/TinyGSM/extras/test_100k.hex -------------------------------------------------------------------------------- /libraries/TinyGSM/extras/test_10k.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/TinyGSM/extras/test_10k.bin -------------------------------------------------------------------------------- /libraries/TinyGSM/extras/test_10k.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/TinyGSM/extras/test_10k.hex -------------------------------------------------------------------------------- /libraries/TinyGSM/extras/test_1k.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/TinyGSM/extras/test_1k.bin -------------------------------------------------------------------------------- /libraries/TinyGSM/extras/test_1k.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/TinyGSM/extras/test_1k.hex -------------------------------------------------------------------------------- /libraries/TinyGSM/extras/test_1m.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/TinyGSM/extras/test_1m.bin -------------------------------------------------------------------------------- /libraries/TinyGSM/extras/test_simple.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/TinyGSM/extras/test_simple.txt -------------------------------------------------------------------------------- /libraries/TinyGSM/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/TinyGSM/keywords.txt -------------------------------------------------------------------------------- /libraries/TinyGSM/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/TinyGSM/library.json -------------------------------------------------------------------------------- /libraries/TinyGSM/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/TinyGSM/library.properties -------------------------------------------------------------------------------- /libraries/TinyGSM/src/ArduinoCompat/Client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/TinyGSM/src/ArduinoCompat/Client.h -------------------------------------------------------------------------------- /libraries/TinyGSM/src/ArduinoCompat/IPAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/TinyGSM/src/ArduinoCompat/IPAddress.h -------------------------------------------------------------------------------- /libraries/TinyGSM/src/TinyGSM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/TinyGSM/src/TinyGSM.h -------------------------------------------------------------------------------- /libraries/TinyGSM/src/TinyGsmBattery.tpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/TinyGSM/src/TinyGsmBattery.tpp -------------------------------------------------------------------------------- /libraries/TinyGSM/src/TinyGsmBluetooth.tpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/TinyGSM/src/TinyGsmBluetooth.tpp -------------------------------------------------------------------------------- /libraries/TinyGSM/src/TinyGsmCalling.tpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/TinyGSM/src/TinyGsmCalling.tpp -------------------------------------------------------------------------------- /libraries/TinyGSM/src/TinyGsmClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/TinyGSM/src/TinyGsmClient.h -------------------------------------------------------------------------------- /libraries/TinyGSM/src/TinyGsmClientA6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/TinyGSM/src/TinyGsmClientA6.h -------------------------------------------------------------------------------- /libraries/TinyGSM/src/TinyGsmClientA7672x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/TinyGSM/src/TinyGsmClientA7672x.h -------------------------------------------------------------------------------- /libraries/TinyGSM/src/TinyGsmClientBG96.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/TinyGSM/src/TinyGsmClientBG96.h -------------------------------------------------------------------------------- /libraries/TinyGSM/src/TinyGsmClientESP8266.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/TinyGSM/src/TinyGsmClientESP8266.h -------------------------------------------------------------------------------- /libraries/TinyGSM/src/TinyGsmClientM590.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/TinyGSM/src/TinyGsmClientM590.h -------------------------------------------------------------------------------- /libraries/TinyGSM/src/TinyGsmClientM95.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/TinyGSM/src/TinyGsmClientM95.h -------------------------------------------------------------------------------- /libraries/TinyGSM/src/TinyGsmClientMC60.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/TinyGSM/src/TinyGsmClientMC60.h -------------------------------------------------------------------------------- /libraries/TinyGSM/src/TinyGsmClientSIM5360.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/TinyGSM/src/TinyGsmClientSIM5360.h -------------------------------------------------------------------------------- /libraries/TinyGSM/src/TinyGsmClientSIM7000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/TinyGSM/src/TinyGsmClientSIM7000.h -------------------------------------------------------------------------------- /libraries/TinyGSM/src/TinyGsmClientSIM7000SSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/TinyGSM/src/TinyGsmClientSIM7000SSL.h -------------------------------------------------------------------------------- /libraries/TinyGSM/src/TinyGsmClientSIM7080.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/TinyGSM/src/TinyGsmClientSIM7080.h -------------------------------------------------------------------------------- /libraries/TinyGSM/src/TinyGsmClientSIM70xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/TinyGSM/src/TinyGsmClientSIM70xx.h -------------------------------------------------------------------------------- /libraries/TinyGSM/src/TinyGsmClientSIM7600.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/TinyGSM/src/TinyGsmClientSIM7600.h -------------------------------------------------------------------------------- /libraries/TinyGSM/src/TinyGsmClientSIM800.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/TinyGSM/src/TinyGsmClientSIM800.h -------------------------------------------------------------------------------- /libraries/TinyGSM/src/TinyGsmClientSIM808.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/TinyGSM/src/TinyGsmClientSIM808.h -------------------------------------------------------------------------------- /libraries/TinyGSM/src/TinyGsmClientSaraR4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/TinyGSM/src/TinyGsmClientSaraR4.h -------------------------------------------------------------------------------- /libraries/TinyGSM/src/TinyGsmClientSaraR5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/TinyGSM/src/TinyGsmClientSaraR5.h -------------------------------------------------------------------------------- /libraries/TinyGSM/src/TinyGsmClientSequansMonarch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/TinyGSM/src/TinyGsmClientSequansMonarch.h -------------------------------------------------------------------------------- /libraries/TinyGSM/src/TinyGsmClientUBLOX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/TinyGSM/src/TinyGsmClientUBLOX.h -------------------------------------------------------------------------------- /libraries/TinyGSM/src/TinyGsmClientXBee.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/TinyGSM/src/TinyGsmClientXBee.h -------------------------------------------------------------------------------- /libraries/TinyGSM/src/TinyGsmCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/TinyGSM/src/TinyGsmCommon.h -------------------------------------------------------------------------------- /libraries/TinyGSM/src/TinyGsmFifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/TinyGSM/src/TinyGsmFifo.h -------------------------------------------------------------------------------- /libraries/TinyGSM/src/TinyGsmGPRS.tpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/TinyGSM/src/TinyGsmGPRS.tpp -------------------------------------------------------------------------------- /libraries/TinyGSM/src/TinyGsmGPS.tpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/TinyGSM/src/TinyGsmGPS.tpp -------------------------------------------------------------------------------- /libraries/TinyGSM/src/TinyGsmGSMLocation.tpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/TinyGSM/src/TinyGsmGSMLocation.tpp -------------------------------------------------------------------------------- /libraries/TinyGSM/src/TinyGsmModem.tpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/TinyGSM/src/TinyGsmModem.tpp -------------------------------------------------------------------------------- /libraries/TinyGSM/src/TinyGsmNTP.tpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/TinyGSM/src/TinyGsmNTP.tpp -------------------------------------------------------------------------------- /libraries/TinyGSM/src/TinyGsmSMS.tpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/TinyGSM/src/TinyGsmSMS.tpp -------------------------------------------------------------------------------- /libraries/TinyGSM/src/TinyGsmSSL.tpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/TinyGSM/src/TinyGsmSSL.tpp -------------------------------------------------------------------------------- /libraries/TinyGSM/src/TinyGsmTCP.tpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/TinyGSM/src/TinyGsmTCP.tpp -------------------------------------------------------------------------------- /libraries/TinyGSM/src/TinyGsmTemperature.tpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/TinyGSM/src/TinyGsmTemperature.tpp -------------------------------------------------------------------------------- /libraries/TinyGSM/src/TinyGsmTime.tpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/TinyGSM/src/TinyGsmTime.tpp -------------------------------------------------------------------------------- /libraries/TinyGSM/src/TinyGsmWifi.tpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/TinyGSM/src/TinyGsmWifi.tpp -------------------------------------------------------------------------------- /libraries/TinyGSM/tools/AT_Debug/AT_Debug.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/TinyGSM/tools/AT_Debug/AT_Debug.ino -------------------------------------------------------------------------------- /libraries/TinyGSM/tools/AT_Spy/AT_Spy.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/TinyGSM/tools/AT_Spy/AT_Spy.ino -------------------------------------------------------------------------------- /libraries/TinyGSM/tools/Diagnostics/Diagnostics.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/TinyGSM/tools/Diagnostics/Diagnostics.ino -------------------------------------------------------------------------------- /libraries/TinyGSM/tools/FactoryReset/FactoryReset.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/TinyGSM/tools/FactoryReset/FactoryReset.ino -------------------------------------------------------------------------------- /libraries/TinyGSM/tools/test_build/test_build.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/TinyGSM/tools/test_build/test_build.ino -------------------------------------------------------------------------------- /libraries/WebSockets/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/WebSockets/LICENSE -------------------------------------------------------------------------------- /libraries/WebSockets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/WebSockets/README.md -------------------------------------------------------------------------------- /libraries/WebSockets/examples/esp8266/WebSocketClientOTA/python_ota_server/requirements.txt: -------------------------------------------------------------------------------- 1 | packaging 2 | websockets -------------------------------------------------------------------------------- /libraries/WebSockets/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/WebSockets/library.json -------------------------------------------------------------------------------- /libraries/WebSockets/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/WebSockets/library.properties -------------------------------------------------------------------------------- /libraries/WebSockets/src/SocketIOclient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/WebSockets/src/SocketIOclient.cpp -------------------------------------------------------------------------------- /libraries/WebSockets/src/SocketIOclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/WebSockets/src/SocketIOclient.h -------------------------------------------------------------------------------- /libraries/WebSockets/src/WebSockets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/WebSockets/src/WebSockets.cpp -------------------------------------------------------------------------------- /libraries/WebSockets/src/WebSockets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/WebSockets/src/WebSockets.h -------------------------------------------------------------------------------- /libraries/WebSockets/src/WebSockets4WebServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/WebSockets/src/WebSockets4WebServer.h -------------------------------------------------------------------------------- /libraries/WebSockets/src/WebSocketsClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/WebSockets/src/WebSocketsClient.cpp -------------------------------------------------------------------------------- /libraries/WebSockets/src/WebSocketsClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/WebSockets/src/WebSocketsClient.h -------------------------------------------------------------------------------- /libraries/WebSockets/src/WebSocketsServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/WebSockets/src/WebSocketsServer.cpp -------------------------------------------------------------------------------- /libraries/WebSockets/src/WebSocketsServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/WebSockets/src/WebSocketsServer.h -------------------------------------------------------------------------------- /libraries/WebSockets/src/WebSocketsVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/WebSockets/src/WebSocketsVersion.h -------------------------------------------------------------------------------- /libraries/WebSockets/src/libb64/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/WebSockets/src/libb64/AUTHORS -------------------------------------------------------------------------------- /libraries/WebSockets/src/libb64/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/WebSockets/src/libb64/LICENSE -------------------------------------------------------------------------------- /libraries/WebSockets/src/libb64/cdecode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/WebSockets/src/libb64/cdecode.c -------------------------------------------------------------------------------- /libraries/WebSockets/src/libb64/cdecode_inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/WebSockets/src/libb64/cdecode_inc.h -------------------------------------------------------------------------------- /libraries/WebSockets/src/libb64/cencode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/WebSockets/src/libb64/cencode.c -------------------------------------------------------------------------------- /libraries/WebSockets/src/libb64/cencode_inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/WebSockets/src/libb64/cencode_inc.h -------------------------------------------------------------------------------- /libraries/WebSockets/src/libsha1/libsha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/WebSockets/src/libsha1/libsha1.c -------------------------------------------------------------------------------- /libraries/WebSockets/src/libsha1/libsha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/WebSockets/src/libsha1/libsha1.h -------------------------------------------------------------------------------- /libraries/WebSockets/tests/webSocket.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/WebSockets/tests/webSocket.html -------------------------------------------------------------------------------- /libraries/WebSockets/tests/webSocketServer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/WebSockets/tests/webSocketServer/index.js -------------------------------------------------------------------------------- /libraries/WebSockets/tests/webSocketServer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/WebSockets/tests/webSocketServer/package.json -------------------------------------------------------------------------------- /libraries/WebSockets/travis/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/WebSockets/travis/common.sh -------------------------------------------------------------------------------- /libraries/WebSockets/travis/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/WebSockets/travis/version.py -------------------------------------------------------------------------------- /libraries/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najabhaider96/JPLearning-Coding/HEAD/libraries/readme.txt --------------------------------------------------------------------------------