@aws-amplify/pubsub 5.5.6-api-v6-models.b3abc9b.0 → 6.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (150) hide show
  1. package/iot/packages.json +7 -0
  2. package/lib/Providers/AWSIot.d.ts +10 -0
  3. package/lib/Providers/AWSIot.js +34 -0
  4. package/lib/Providers/{MqttOverWSProvider.d.ts → MqttOverWS.d.ts} +16 -16
  5. package/lib/Providers/MqttOverWS.js +274 -0
  6. package/lib/Providers/PubSub.d.ts +11 -0
  7. package/lib/Providers/PubSub.js +19 -0
  8. package/lib/Providers/constants.d.ts +1 -1
  9. package/lib/Providers/constants.js +3 -4
  10. package/lib/Providers/index.d.ts +3 -4
  11. package/lib/Providers/index.js +8 -10
  12. package/lib/clients/iot.d.ts +1 -0
  13. package/lib/clients/iot.js +7 -0
  14. package/lib/clients/mqtt.d.ts +1 -0
  15. package/lib/clients/mqtt.js +7 -0
  16. package/lib/index.d.ts +2 -2
  17. package/lib/index.js +7 -11
  18. package/lib/tsconfig.tsbuildinfo +1 -0
  19. package/lib/types/PubSub.d.ts +21 -3
  20. package/lib/types/PubSub.js +1 -1
  21. package/lib/types/index.d.ts +0 -1
  22. package/lib/types/index.js +5 -3
  23. package/lib/utils/ConnectionStateMonitor.d.ts +5 -5
  24. package/lib/utils/ConnectionStateMonitor.js +52 -64
  25. package/lib/utils/ReachabilityMonitor/index.d.ts +1 -3
  26. package/lib/utils/ReachabilityMonitor/index.js +4 -3
  27. package/lib/utils/ReachabilityMonitor/index.native.d.ts +1 -3
  28. package/lib/utils/ReachabilityMonitor/index.native.js +7 -8
  29. package/lib/utils/ReconnectionMonitor.d.ts +1 -1
  30. package/lib/utils/ReconnectionMonitor.js +21 -25
  31. package/lib-esm/Providers/AWSIot.d.ts +10 -0
  32. package/lib-esm/Providers/AWSIot.js +30 -0
  33. package/lib-esm/Providers/{MqttOverWSProvider.d.ts → MqttOverWS.d.ts} +16 -16
  34. package/lib-esm/Providers/MqttOverWS.js +268 -0
  35. package/lib-esm/Providers/PubSub.d.ts +11 -0
  36. package/lib-esm/Providers/PubSub.js +15 -0
  37. package/lib-esm/Providers/constants.d.ts +1 -1
  38. package/lib-esm/Providers/constants.js +11 -14
  39. package/lib-esm/Providers/index.d.ts +3 -4
  40. package/lib-esm/Providers/index.js +3 -5
  41. package/lib-esm/clients/iot.d.ts +1 -0
  42. package/{src/internals/index.ts → lib-esm/clients/iot.js} +1 -1
  43. package/lib-esm/clients/mqtt.d.ts +1 -0
  44. package/lib-esm/{internals/index.js → clients/mqtt.js} +1 -2
  45. package/lib-esm/index.d.ts +2 -2
  46. package/lib-esm/index.js +2 -3
  47. package/lib-esm/tsconfig.tsbuildinfo +1 -0
  48. package/lib-esm/types/PubSub.d.ts +21 -3
  49. package/lib-esm/types/PubSub.js +0 -1
  50. package/lib-esm/types/index.d.ts +0 -1
  51. package/lib-esm/types/index.js +2 -1
  52. package/lib-esm/utils/ConnectionStateMonitor.d.ts +5 -5
  53. package/lib-esm/utils/ConnectionStateMonitor.js +50 -64
  54. package/lib-esm/utils/ReachabilityMonitor/index.d.ts +1 -3
  55. package/lib-esm/utils/ReachabilityMonitor/index.js +2 -3
  56. package/lib-esm/utils/ReachabilityMonitor/index.native.d.ts +1 -3
  57. package/lib-esm/utils/ReachabilityMonitor/index.native.js +2 -5
  58. package/lib-esm/utils/ReconnectionMonitor.d.ts +1 -1
  59. package/lib-esm/utils/ReconnectionMonitor.js +19 -25
  60. package/mqtt/packages.json +7 -0
  61. package/package.json +146 -126
  62. package/src/Providers/{AWSIotProvider.ts → AWSIot.ts} +17 -15
  63. package/src/Providers/{MqttOverWSProvider.ts → MqttOverWS.ts} +38 -50
  64. package/src/Providers/PubSub.ts +40 -0
  65. package/src/Providers/constants.ts +2 -6
  66. package/src/Providers/index.ts +3 -12
  67. package/src/clients/iot.ts +4 -0
  68. package/src/clients/mqtt.ts +7 -0
  69. package/src/index.ts +3 -12
  70. package/src/types/PubSub.ts +28 -5
  71. package/src/types/index.ts +0 -1
  72. package/src/utils/ConnectionStateMonitor.ts +17 -13
  73. package/src/utils/ReachabilityMonitor/index.native.ts +2 -1
  74. package/src/utils/ReachabilityMonitor/index.ts +1 -1
  75. package/src/utils/ReconnectionMonitor.ts +1 -1
  76. package/internals/package.json +0 -8
  77. package/lib/.tsbuildinfo +0 -3
  78. package/lib/Providers/AWSAppSyncRealTimeProvider/index.d.ts +0 -77
  79. package/lib/Providers/AWSAppSyncRealTimeProvider/index.js +0 -856
  80. package/lib/Providers/AWSAppSyncRealTimeProvider/index.js.map +0 -1
  81. package/lib/Providers/AWSIotProvider.d.ts +0 -11
  82. package/lib/Providers/AWSIotProvider.js +0 -53
  83. package/lib/Providers/AWSIotProvider.js.map +0 -1
  84. package/lib/Providers/MqttOverWSProvider.js +0 -396
  85. package/lib/Providers/MqttOverWSProvider.js.map +0 -1
  86. package/lib/Providers/PubSubProvider.d.ts +0 -15
  87. package/lib/Providers/PubSubProvider.js +0 -28
  88. package/lib/Providers/PubSubProvider.js.map +0 -1
  89. package/lib/Providers/constants.js.map +0 -1
  90. package/lib/Providers/index.js.map +0 -1
  91. package/lib/PubSub.d.ts +0 -13
  92. package/lib/PubSub.js +0 -22
  93. package/lib/PubSub.js.map +0 -1
  94. package/lib/index.js.map +0 -1
  95. package/lib/internals/InternalPubSub.d.ts +0 -50
  96. package/lib/internals/InternalPubSub.js +0 -136
  97. package/lib/internals/InternalPubSub.js.map +0 -1
  98. package/lib/internals/index.d.ts +0 -1
  99. package/lib/internals/index.js +0 -8
  100. package/lib/internals/index.js.map +0 -1
  101. package/lib/types/Provider.d.ts +0 -18
  102. package/lib/types/Provider.js +0 -3
  103. package/lib/types/Provider.js.map +0 -1
  104. package/lib/types/PubSub.js.map +0 -1
  105. package/lib/types/index.js.map +0 -1
  106. package/lib/utils/ConnectionStateMonitor.js.map +0 -1
  107. package/lib/utils/ReachabilityMonitor/index.js.map +0 -1
  108. package/lib/utils/ReachabilityMonitor/index.native.js.map +0 -1
  109. package/lib/utils/ReconnectionMonitor.js.map +0 -1
  110. package/lib/vendor/paho-mqtt.d.ts +0 -2
  111. package/lib/vendor/paho-mqtt.js.map +0 -1
  112. package/lib-esm/.tsbuildinfo +0 -3
  113. package/lib-esm/Providers/AWSAppSyncRealTimeProvider/index.d.ts +0 -77
  114. package/lib-esm/Providers/AWSAppSyncRealTimeProvider/index.js +0 -854
  115. package/lib-esm/Providers/AWSAppSyncRealTimeProvider/index.js.map +0 -1
  116. package/lib-esm/Providers/AWSIotProvider.d.ts +0 -11
  117. package/lib-esm/Providers/AWSIotProvider.js +0 -51
  118. package/lib-esm/Providers/AWSIotProvider.js.map +0 -1
  119. package/lib-esm/Providers/MqttOverWSProvider.js +0 -393
  120. package/lib-esm/Providers/MqttOverWSProvider.js.map +0 -1
  121. package/lib-esm/Providers/PubSubProvider.d.ts +0 -15
  122. package/lib-esm/Providers/PubSubProvider.js +0 -26
  123. package/lib-esm/Providers/PubSubProvider.js.map +0 -1
  124. package/lib-esm/Providers/constants.js.map +0 -1
  125. package/lib-esm/Providers/index.js.map +0 -1
  126. package/lib-esm/PubSub.d.ts +0 -13
  127. package/lib-esm/PubSub.js +0 -20
  128. package/lib-esm/PubSub.js.map +0 -1
  129. package/lib-esm/index.js.map +0 -1
  130. package/lib-esm/internals/InternalPubSub.d.ts +0 -50
  131. package/lib-esm/internals/InternalPubSub.js +0 -134
  132. package/lib-esm/internals/InternalPubSub.js.map +0 -1
  133. package/lib-esm/internals/index.d.ts +0 -1
  134. package/lib-esm/internals/index.js.map +0 -1
  135. package/lib-esm/types/Provider.d.ts +0 -18
  136. package/lib-esm/types/Provider.js +0 -1
  137. package/lib-esm/types/Provider.js.map +0 -1
  138. package/lib-esm/types/PubSub.js.map +0 -1
  139. package/lib-esm/types/index.js.map +0 -1
  140. package/lib-esm/utils/ConnectionStateMonitor.js.map +0 -1
  141. package/lib-esm/utils/ReachabilityMonitor/index.js.map +0 -1
  142. package/lib-esm/utils/ReachabilityMonitor/index.native.js.map +0 -1
  143. package/lib-esm/utils/ReconnectionMonitor.js.map +0 -1
  144. package/lib-esm/vendor/paho-mqtt.d.ts +0 -2
  145. package/lib-esm/vendor/paho-mqtt.js.map +0 -1
  146. package/src/Providers/AWSAppSyncRealTimeProvider/index.ts +0 -1049
  147. package/src/Providers/PubSubProvider.ts +0 -53
  148. package/src/PubSub.ts +0 -33
  149. package/src/internals/InternalPubSub.ts +0 -185
  150. package/src/types/Provider.ts +0 -37
@@ -0,0 +1 @@
1
+ {"program":{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.dom.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/tslib/tslib.d.ts","../../core/lib-esm/utils/WordArray.d.ts","../../core/lib-esm/utils/generateRandomString.d.ts","../../core/lib-esm/utils/getClientInfo/getClientInfo.d.ts","../../core/lib-esm/utils/getClientInfo/index.d.ts","../../core/lib-esm/utils/isBrowser.d.ts","../../core/lib-esm/utils/isWebWorker.d.ts","../../core/lib-esm/utils/retry/NonRetryableError.d.ts","../../core/lib-esm/utils/retry/isNonRetryableError.d.ts","../../core/lib-esm/types/core.d.ts","../../core/lib-esm/types/errors.d.ts","../../core/lib-esm/types/logging.d.ts","../../core/lib-esm/types/storage.d.ts","../../core/lib-esm/types/index.d.ts","../../core/lib-esm/utils/retry/jitteredBackoff.d.ts","../../core/lib-esm/utils/retry/jitteredExponentialRetry.d.ts","../../core/lib-esm/utils/retry/retry.d.ts","../../core/lib-esm/utils/retry/index.d.ts","../../core/lib-esm/utils/urlSafeDecode.d.ts","../../core/lib-esm/utils/urlSafeEncode.d.ts","../../core/lib-esm/utils/deepFreeze.d.ts","../../core/lib-esm/utils/index.d.ts","../../core/lib-esm/clients/endpoints/getDnsSuffix.d.ts","../../core/lib-esm/clients/endpoints/index.d.ts","../../core/lib-esm/clients/types/core.d.ts","../../core/lib-esm/clients/types/http.d.ts","../../core/lib-esm/clients/handlers/fetch.d.ts","../../core/lib-esm/clients/middleware/retry/middleware.d.ts","../../core/lib-esm/clients/middleware/retry/jitteredBackoff.d.ts","../../../node_modules/@smithy/types/dist-types/abort.d.ts","../../../node_modules/@smithy/types/dist-types/auth.d.ts","../../../node_modules/@types/events/index.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/base.d.ts","../../../node_modules/@types/node/index.d.ts","../../../node_modules/@smithy/types/dist-types/transform/exact.d.ts","../../../node_modules/@smithy/types/dist-types/externals-check/browser-externals-check.d.ts","../../../node_modules/@smithy/types/dist-types/blob/blob-payload-input-types.d.ts","../../../node_modules/@smithy/types/dist-types/crypto.d.ts","../../../node_modules/@smithy/types/dist-types/checksum.d.ts","../../../node_modules/@smithy/types/dist-types/endpoint.d.ts","../../../node_modules/@smithy/types/dist-types/logger.d.ts","../../../node_modules/@smithy/types/dist-types/uri.d.ts","../../../node_modules/@smithy/types/dist-types/http.d.ts","../../../node_modules/@smithy/types/dist-types/response.d.ts","../../../node_modules/@smithy/types/dist-types/util.d.ts","../../../node_modules/@smithy/types/dist-types/middleware.d.ts","../../../node_modules/@smithy/types/dist-types/command.d.ts","../../../node_modules/@smithy/types/dist-types/client.d.ts","../../../node_modules/@smithy/types/dist-types/connection/config.d.ts","../../../node_modules/@smithy/types/dist-types/transfer.d.ts","../../../node_modules/@smithy/types/dist-types/connection/manager.d.ts","../../../node_modules/@smithy/types/dist-types/connection/pool.d.ts","../../../node_modules/@smithy/types/dist-types/connection/index.d.ts","../../../node_modules/@smithy/types/dist-types/eventStream.d.ts","../../../node_modules/@smithy/types/dist-types/encode.d.ts","../../../node_modules/@smithy/types/dist-types/endpoints/shared.d.ts","../../../node_modules/@smithy/types/dist-types/endpoints/EndpointRuleObject.d.ts","../../../node_modules/@smithy/types/dist-types/endpoints/ErrorRuleObject.d.ts","../../../node_modules/@smithy/types/dist-types/endpoints/TreeRuleObject.d.ts","../../../node_modules/@smithy/types/dist-types/endpoints/RuleSetObject.d.ts","../../../node_modules/@smithy/types/dist-types/endpoints/index.d.ts","../../../node_modules/@smithy/types/dist-types/extensions/checksum.d.ts","../../../node_modules/@smithy/types/dist-types/extensions/defaultClientConfiguration.d.ts","../../../node_modules/@smithy/types/dist-types/retry.d.ts","../../../node_modules/@smithy/types/dist-types/extensions/retry.d.ts","../../../node_modules/@smithy/types/dist-types/extensions/defaultExtensionConfiguration.d.ts","../../../node_modules/@smithy/types/dist-types/extensions/index.d.ts","../../../node_modules/@smithy/types/dist-types/identity/identity.d.ts","../../../node_modules/@smithy/types/dist-types/identity/awsCredentialIdentity.d.ts","../../../node_modules/@smithy/types/dist-types/identity/index.d.ts","../../../node_modules/@smithy/types/dist-types/pagination.d.ts","../../../node_modules/@smithy/types/dist-types/profile.d.ts","../../../node_modules/@smithy/types/dist-types/serde.d.ts","../../../node_modules/@smithy/types/dist-types/shapes.d.ts","../../../node_modules/@smithy/types/dist-types/signature.d.ts","../../../node_modules/@smithy/types/dist-types/stream.d.ts","../../../node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-common-types.d.ts","../../../node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-input-types.d.ts","../../../node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-output-types.d.ts","../../../node_modules/@smithy/types/dist-types/transform/type-transform.d.ts","../../../node_modules/@smithy/types/dist-types/transform/client-method-transforms.d.ts","../../../node_modules/@smithy/types/dist-types/transform/client-payload-blob-type-narrow.d.ts","../../../node_modules/@smithy/types/dist-types/waiter.d.ts","../../../node_modules/@smithy/types/dist-types/index.d.ts","../../../node_modules/@aws-sdk/types/dist-types/abort.d.ts","../../../node_modules/@aws-sdk/types/dist-types/auth.d.ts","../../../node_modules/@aws-sdk/types/dist-types/blob/blob-types.d.ts","../../../node_modules/@aws-sdk/types/dist-types/checksum.d.ts","../../../node_modules/@aws-sdk/types/dist-types/client.d.ts","../../../node_modules/@aws-sdk/types/dist-types/command.d.ts","../../../node_modules/@aws-sdk/types/dist-types/connection.d.ts","../../../node_modules/@aws-sdk/types/dist-types/identity/Identity.d.ts","../../../node_modules/@aws-sdk/types/dist-types/identity/AnonymousIdentity.d.ts","../../../node_modules/@aws-sdk/types/dist-types/identity/AwsCredentialIdentity.d.ts","../../../node_modules/@aws-sdk/types/dist-types/identity/LoginIdentity.d.ts","../../../node_modules/@aws-sdk/types/dist-types/identity/TokenIdentity.d.ts","../../../node_modules/@aws-sdk/types/dist-types/identity/index.d.ts","../../../node_modules/@aws-sdk/types/dist-types/util.d.ts","../../../node_modules/@aws-sdk/types/dist-types/credentials.d.ts","../../../node_modules/@aws-sdk/types/dist-types/crypto.d.ts","../../../node_modules/@aws-sdk/types/dist-types/dns.d.ts","../../../node_modules/@aws-sdk/types/dist-types/encode.d.ts","../../../node_modules/@aws-sdk/types/dist-types/endpoint.d.ts","../../../node_modules/@aws-sdk/types/dist-types/eventStream.d.ts","../../../node_modules/@aws-sdk/types/dist-types/http.d.ts","../../../node_modules/@aws-sdk/types/dist-types/logger.d.ts","../../../node_modules/@aws-sdk/types/dist-types/middleware.d.ts","../../../node_modules/@aws-sdk/types/dist-types/pagination.d.ts","../../../node_modules/@aws-sdk/types/dist-types/profile.d.ts","../../../node_modules/@aws-sdk/types/dist-types/request.d.ts","../../../node_modules/@aws-sdk/types/dist-types/response.d.ts","../../../node_modules/@aws-sdk/types/dist-types/retry.d.ts","../../../node_modules/@aws-sdk/types/dist-types/serde.d.ts","../../../node_modules/@aws-sdk/types/dist-types/shapes.d.ts","../../../node_modules/@aws-sdk/types/dist-types/signature.d.ts","../../../node_modules/@aws-sdk/types/dist-types/stream.d.ts","../../../node_modules/@aws-sdk/types/dist-types/token.d.ts","../../../node_modules/@aws-sdk/types/dist-types/transfer.d.ts","../../../node_modules/@aws-sdk/types/dist-types/uri.d.ts","../../../node_modules/@aws-sdk/types/dist-types/waiter.d.ts","../../../node_modules/@aws-sdk/types/dist-types/index.d.ts","../../core/lib-esm/clients/types/aws.d.ts","../../core/lib-esm/clients/types/index.d.ts","../../core/lib-esm/clients/middleware/retry/defaultRetryDecider.d.ts","../../core/lib-esm/clients/middleware/retry/index.d.ts","../../core/lib-esm/clients/middleware/userAgent/middleware.d.ts","../../core/lib-esm/clients/middleware/userAgent/index.d.ts","../../core/lib-esm/clients/handlers/unauthenticated.d.ts","../../core/lib-esm/clients/middleware/signing/middleware.d.ts","../../core/lib-esm/clients/middleware/signing/index.d.ts","../../core/lib-esm/clients/handlers/authenticated.d.ts","../../core/lib-esm/clients/middleware/signing/signer/signatureV4/types/signer.d.ts","../../core/lib-esm/clients/middleware/signing/signer/signatureV4/signRequest.d.ts","../../core/lib-esm/clients/middleware/signing/signer/signatureV4/types/index.d.ts","../../core/lib-esm/clients/middleware/signing/signer/signatureV4/presignUrl.d.ts","../../core/lib-esm/clients/middleware/signing/signer/signatureV4/constants.d.ts","../../core/lib-esm/clients/middleware/signing/signer/signatureV4/utils/getHashedPayload.d.ts","../../core/lib-esm/clients/middleware/signing/signer/signatureV4/index.d.ts","../../core/lib-esm/clients/middleware/signing/utils/extendedEncodeURIComponent.d.ts","../../core/lib-esm/clients/serde/responseInfo.d.ts","../../core/lib-esm/clients/serde/json.d.ts","../../core/lib-esm/clients/serde/index.d.ts","../../core/lib-esm/clients/utils/memoization.d.ts","../../core/lib-esm/clients/index.d.ts","../../core/lib-esm/singleton/API/types.d.ts","../../core/lib-esm/providers/pinpoint/types/errors.d.ts","../../core/lib-esm/singleton/Auth/types.d.ts","../../core/lib-esm/providers/pinpoint/types/pinpoint.d.ts","../../core/lib-esm/providers/pinpoint/types/index.d.ts","../../core/lib-esm/providers/kinesis/types/kinesis.d.ts","../../core/lib-esm/providers/kinesis/types/index.d.ts","../../core/lib-esm/providers/kinesis-firehose/types/kinesis-firehose.d.ts","../../core/lib-esm/providers/kinesis-firehose/types/index.d.ts","../../core/lib-esm/providers/personalize/types/personalize.d.ts","../../core/lib-esm/providers/personalize/types/index.d.ts","../../core/lib-esm/singleton/Analytics/types.d.ts","../../core/lib-esm/singleton/Geo/types.d.ts","../../core/lib-esm/singleton/Predictions/types.d.ts","../../core/lib-esm/singleton/Storage/types.d.ts","../../core/lib-esm/singleton/Notifications/InAppMessaging/types.d.ts","../../core/lib-esm/singleton/Notifications/PushNotification/types.d.ts","../../core/lib-esm/singleton/Notifications/types.d.ts","../../core/lib-esm/singleton/Interactions/types.d.ts","../../core/lib-esm/singleton/types.d.ts","../../core/lib-esm/parseAWSExports.d.ts","../../core/lib-esm/utils/amplifyUuid/polyfill.d.ts","../../core/lib-esm/utils/amplifyUuid/index.d.ts","../../core/lib-esm/utils/amplifyUrl/polyfill.d.ts","../../core/lib-esm/utils/amplifyUrl/index.d.ts","../../core/lib-esm/singleton/Auth/utils/index.d.ts","../../core/lib-esm/singleton/Auth/index.d.ts","../../core/lib-esm/Signer/Signer.d.ts","../../core/lib-esm/Signer/index.d.ts","../../core/lib-esm/Platform/types.d.ts","../../core/lib-esm/Platform/index.d.ts","../../core/lib-esm/Platform/customUserAgent.d.ts","../../core/lib-esm/errors/AmplifyError.d.ts","../../core/lib-esm/errors/createAssertionFunction.d.ts","../../core/lib-esm/errors/PlatformNotSupportedError.d.ts","../../core/lib-esm/errors/errorHelpers.d.ts","../../core/lib-esm/errors/index.d.ts","../../core/lib-esm/BackgroundProcessManager/types.d.ts","../../core/lib-esm/BackgroundProcessManager/BackgroundProcessManager.d.ts","../../core/lib-esm/BackgroundProcessManager/index.d.ts","../../core/lib-esm/Mutex/types.d.ts","../../core/lib-esm/Mutex/Mutex.d.ts","../../core/lib-esm/Mutex/index.d.ts","../../../node_modules/rxjs/dist/types/internal/Subscription.d.ts","../../../node_modules/rxjs/dist/types/internal/Subscriber.d.ts","../../../node_modules/rxjs/dist/types/internal/Operator.d.ts","../../../node_modules/rxjs/dist/types/internal/Observable.d.ts","../../../node_modules/rxjs/dist/types/internal/types.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/audit.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/auditTime.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/buffer.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/bufferCount.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/bufferTime.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/bufferToggle.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/bufferWhen.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/catchError.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/combineLatestAll.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/combineAll.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/combineLatest.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/combineLatestWith.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/concat.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/concatAll.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/concatMap.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/concatMapTo.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/concatWith.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/connect.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/count.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/debounce.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/debounceTime.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/defaultIfEmpty.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/delay.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/delayWhen.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/dematerialize.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/distinct.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/distinctUntilChanged.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/distinctUntilKeyChanged.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/elementAt.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/endWith.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/every.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/exhaustAll.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/exhaust.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/exhaustMap.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/expand.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/filter.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/finalize.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/find.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/findIndex.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/first.d.ts","../../../node_modules/rxjs/dist/types/internal/Subject.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/groupBy.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/ignoreElements.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/isEmpty.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/last.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/map.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/mapTo.d.ts","../../../node_modules/rxjs/dist/types/internal/Notification.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/materialize.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/max.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/merge.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/mergeAll.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/mergeMap.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/flatMap.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/mergeMapTo.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/mergeScan.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/mergeWith.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/min.d.ts","../../../node_modules/rxjs/dist/types/internal/observable/ConnectableObservable.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/multicast.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/observeOn.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/onErrorResumeNextWith.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/pairwise.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/partition.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/pluck.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/publish.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/publishBehavior.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/publishLast.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/publishReplay.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/race.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/raceWith.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/reduce.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/repeat.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/repeatWhen.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/retry.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/retryWhen.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/refCount.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/sample.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/sampleTime.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/scan.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/sequenceEqual.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/share.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/shareReplay.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/single.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/skip.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/skipLast.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/skipUntil.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/skipWhile.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/startWith.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/subscribeOn.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/switchAll.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/switchMap.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/switchMapTo.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/switchScan.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/take.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/takeLast.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/takeUntil.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/takeWhile.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/tap.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/throttle.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/throttleTime.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/throwIfEmpty.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/timeInterval.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/timeout.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/timeoutWith.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/timestamp.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/toArray.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/window.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/windowCount.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/windowTime.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/windowToggle.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/windowWhen.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/withLatestFrom.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/zip.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/zipAll.d.ts","../../../node_modules/rxjs/dist/types/internal/operators/zipWith.d.ts","../../../node_modules/rxjs/dist/types/operators/index.d.ts","../../../node_modules/rxjs/dist/types/internal/scheduler/Action.d.ts","../../../node_modules/rxjs/dist/types/internal/Scheduler.d.ts","../../../node_modules/rxjs/dist/types/internal/testing/TestMessage.d.ts","../../../node_modules/rxjs/dist/types/internal/testing/SubscriptionLog.d.ts","../../../node_modules/rxjs/dist/types/internal/testing/SubscriptionLoggable.d.ts","../../../node_modules/rxjs/dist/types/internal/testing/ColdObservable.d.ts","../../../node_modules/rxjs/dist/types/internal/testing/HotObservable.d.ts","../../../node_modules/rxjs/dist/types/internal/scheduler/AsyncScheduler.d.ts","../../../node_modules/rxjs/dist/types/internal/scheduler/timerHandle.d.ts","../../../node_modules/rxjs/dist/types/internal/scheduler/AsyncAction.d.ts","../../../node_modules/rxjs/dist/types/internal/scheduler/VirtualTimeScheduler.d.ts","../../../node_modules/rxjs/dist/types/internal/testing/TestScheduler.d.ts","../../../node_modules/rxjs/dist/types/testing/index.d.ts","../../../node_modules/rxjs/dist/types/internal/symbol/observable.d.ts","../../../node_modules/rxjs/dist/types/internal/observable/dom/animationFrames.d.ts","../../../node_modules/rxjs/dist/types/internal/BehaviorSubject.d.ts","../../../node_modules/rxjs/dist/types/internal/ReplaySubject.d.ts","../../../node_modules/rxjs/dist/types/internal/AsyncSubject.d.ts","../../../node_modules/rxjs/dist/types/internal/scheduler/AsapScheduler.d.ts","../../../node_modules/rxjs/dist/types/internal/scheduler/asap.d.ts","../../../node_modules/rxjs/dist/types/internal/scheduler/async.d.ts","../../../node_modules/rxjs/dist/types/internal/scheduler/QueueScheduler.d.ts","../../../node_modules/rxjs/dist/types/internal/scheduler/queue.d.ts","../../../node_modules/rxjs/dist/types/internal/scheduler/AnimationFrameScheduler.d.ts","../../../node_modules/rxjs/dist/types/internal/scheduler/animationFrame.d.ts","../../../node_modules/rxjs/dist/types/internal/util/identity.d.ts","../../../node_modules/rxjs/dist/types/internal/util/pipe.d.ts","../../../node_modules/rxjs/dist/types/internal/util/noop.d.ts","../../../node_modules/rxjs/dist/types/internal/util/isObservable.d.ts","../../../node_modules/rxjs/dist/types/internal/lastValueFrom.d.ts","../../../node_modules/rxjs/dist/types/internal/firstValueFrom.d.ts","../../../node_modules/rxjs/dist/types/internal/util/ArgumentOutOfRangeError.d.ts","../../../node_modules/rxjs/dist/types/internal/util/EmptyError.d.ts","../../../node_modules/rxjs/dist/types/internal/util/NotFoundError.d.ts","../../../node_modules/rxjs/dist/types/internal/util/ObjectUnsubscribedError.d.ts","../../../node_modules/rxjs/dist/types/internal/util/SequenceError.d.ts","../../../node_modules/rxjs/dist/types/internal/util/UnsubscriptionError.d.ts","../../../node_modules/rxjs/dist/types/internal/observable/bindCallback.d.ts","../../../node_modules/rxjs/dist/types/internal/observable/bindNodeCallback.d.ts","../../../node_modules/rxjs/dist/types/internal/AnyCatcher.d.ts","../../../node_modules/rxjs/dist/types/internal/observable/combineLatest.d.ts","../../../node_modules/rxjs/dist/types/internal/observable/concat.d.ts","../../../node_modules/rxjs/dist/types/internal/observable/connectable.d.ts","../../../node_modules/rxjs/dist/types/internal/observable/defer.d.ts","../../../node_modules/rxjs/dist/types/internal/observable/empty.d.ts","../../../node_modules/rxjs/dist/types/internal/observable/forkJoin.d.ts","../../../node_modules/rxjs/dist/types/internal/observable/from.d.ts","../../../node_modules/rxjs/dist/types/internal/observable/fromEvent.d.ts","../../../node_modules/rxjs/dist/types/internal/observable/fromEventPattern.d.ts","../../../node_modules/rxjs/dist/types/internal/observable/generate.d.ts","../../../node_modules/rxjs/dist/types/internal/observable/iif.d.ts","../../../node_modules/rxjs/dist/types/internal/observable/interval.d.ts","../../../node_modules/rxjs/dist/types/internal/observable/merge.d.ts","../../../node_modules/rxjs/dist/types/internal/observable/never.d.ts","../../../node_modules/rxjs/dist/types/internal/observable/of.d.ts","../../../node_modules/rxjs/dist/types/internal/observable/onErrorResumeNext.d.ts","../../../node_modules/rxjs/dist/types/internal/observable/pairs.d.ts","../../../node_modules/rxjs/dist/types/internal/observable/partition.d.ts","../../../node_modules/rxjs/dist/types/internal/observable/race.d.ts","../../../node_modules/rxjs/dist/types/internal/observable/range.d.ts","../../../node_modules/rxjs/dist/types/internal/observable/throwError.d.ts","../../../node_modules/rxjs/dist/types/internal/observable/timer.d.ts","../../../node_modules/rxjs/dist/types/internal/observable/using.d.ts","../../../node_modules/rxjs/dist/types/internal/observable/zip.d.ts","../../../node_modules/rxjs/dist/types/internal/scheduled/scheduled.d.ts","../../../node_modules/rxjs/dist/types/internal/config.d.ts","../../../node_modules/rxjs/dist/types/index.d.ts","../../core/lib-esm/Reachability/types.d.ts","../../core/lib-esm/Reachability/Reachability.d.ts","../../core/lib-esm/Reachability/index.d.ts","../../core/lib-esm/constants.d.ts","../../core/lib-esm/singleton/Amplify.d.ts","../../core/lib-esm/singleton/apis/internal/fetchAuthSession.d.ts","../../core/lib-esm/Hub/types/AuthTypes.d.ts","../../core/lib-esm/Hub/types/HubTypes.d.ts","../../core/lib-esm/Hub/types/index.d.ts","../../core/lib-esm/Hub/index.d.ts","../../core/lib-esm/utils/convert/types.d.ts","../../core/lib-esm/utils/convert/base64/base64Decoder.d.ts","../../core/lib-esm/utils/convert/base64/base64Encoder.d.ts","../../core/lib-esm/utils/convert/index.d.ts","../../core/lib-esm/utils/globalHelpers/index.d.ts","../../core/lib-esm/utils/cryptoSecureRandomInt.d.ts","../../core/lib-esm/utils/sessionListener/types.d.ts","../../core/lib-esm/utils/sessionListener/SessionListener.d.ts","../../core/lib-esm/utils/sessionListener/constants.d.ts","../../core/lib-esm/utils/sessionListener/index.d.ts","../../core/lib-esm/libraryUtils.d.ts","../src/Providers/constants.ts","../src/types/PubSub.ts","../src/types/index.ts","../../core/lib-esm/singleton/apis/fetchAuthSession.d.ts","../../core/lib-esm/singleton/apis/clearCredentials.d.ts","../../core/lib-esm/singleton/index.d.ts","../../core/lib-esm/awsClients/cognitoIdentity/types.d.ts","../../core/lib-esm/awsClients/cognitoIdentity/getId.d.ts","../../core/lib-esm/awsClients/cognitoIdentity/getCredentialsForIdentity.d.ts","../../core/lib-esm/awsClients/cognitoIdentity/index.d.ts","../../core/lib-esm/storage/KeyValueStorage.d.ts","../../core/lib-esm/storage/DefaultStorage.d.ts","../../core/lib-esm/storage/SessionStorage.d.ts","../../core/lib-esm/storage/CookieStorage.d.ts","../../core/lib-esm/storage/index.d.ts","../../core/lib-esm/singleton/Cache/types.d.ts","../../core/lib-esm/Cache/types/cache.d.ts","../../core/lib-esm/Cache/types/index.d.ts","../../core/lib-esm/Cache/StorageCacheCommon.d.ts","../../core/lib-esm/Cache/StorageCache.d.ts","../../core/lib-esm/Cache/index.d.ts","../../core/lib-esm/I18n/types.d.ts","../../core/lib-esm/I18n/index.d.ts","../../core/lib-esm/Logger/logger-interface.d.ts","../../core/lib-esm/Logger/ConsoleLogger.d.ts","../../core/lib-esm/Logger/index.d.ts","../../core/lib-esm/ServiceWorker/ServiceWorker.d.ts","../../core/lib-esm/ServiceWorker/index.d.ts","../../core/lib-esm/index.d.ts","../src/Providers/PubSub.ts","../src/utils/ReachabilityMonitor/index.ts","../src/utils/ConnectionStateMonitor.ts","../src/utils/ReconnectionMonitor.ts","../src/Providers/MqttOverWS.ts","../src/Providers/AWSIot.ts","../src/Providers/index.ts","../src/clients/iot.ts","../src/index.ts","../src/clients/mqtt.ts","../../../node_modules/@react-native-community/netinfo/lib/typescript/src/internal/deprecatedTypes.d.ts","../../../node_modules/@react-native-community/netinfo/lib/typescript/src/internal/types.d.ts","../../../node_modules/@react-native-community/netinfo/lib/typescript/src/index.d.ts","../src/utils/ReachabilityMonitor/index.native.ts"],"fileInfos":[{"version":"6a6b471e7e43e15ef6f8fe617a22ce4ecb0e34efa6c3dfcfe7cebd392bcca9d2","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","dc48272d7c333ccf58034c0026162576b7d50ea0e69c3b9292f803fc20720fd5","27147504487dc1159369da4f4da8a26406364624fa9bc3db632f7d94a5bae2c3","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7",{"version":"fcd3ecc9f764f06f4d5c467677f4f117f6abf49dee6716283aa204ff1162498b","affectsGlobalScope":true},{"version":"9a60b92bca4c1257db03b349d58e63e4868cfc0d1c8d0ba60c2dbc63f4e6c9f6","affectsGlobalScope":true},{"version":"f296963760430fb65b4e5d91f0ed770a91c6e77455bacf8fa23a1501654ede0e","affectsGlobalScope":true},{"version":"5114a95689b63f96b957e00216bc04baf9e1a1782aa4d8ee7e5e9acbf768e301","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"ab22100fdd0d24cfc2cc59d0a00fc8cf449830d9c4030dc54390a46bd562e929","affectsGlobalScope":true},{"version":"f7bd636ae3a4623c503359ada74510c4005df5b36de7f23e1db8a5c543fd176b","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"0c20f4d2358eb679e4ae8a4432bdd96c857a2960fd6800b21ec4008ec59d60ea","affectsGlobalScope":true},{"version":"36ae84ccc0633f7c0787bc6108386c8b773e95d3b052d9464a99cd9b8795fbec","affectsGlobalScope":true},{"version":"82d0d8e269b9eeac02c3bd1c9e884e85d483fcb2cd168bccd6bc54df663da031","affectsGlobalScope":true},{"version":"b8deab98702588840be73d67f02412a2d45a417a3c097b2e96f7f3a42ac483d1","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"376d554d042fb409cb55b5cbaf0b2b4b7e669619493c5d18d5fa8bd67273f82a","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"c4138a3dd7cd6cf1f363ca0f905554e8d81b45844feea17786cdf1626cb8ea06","affectsGlobalScope":true},{"version":"6ff3e2452b055d8f0ec026511c6582b55d935675af67cdb67dd1dc671e8065df","affectsGlobalScope":true},{"version":"03de17b810f426a2f47396b0b99b53a82c1b60e9cba7a7edda47f9bb077882f4","affectsGlobalScope":true},{"version":"8184c6ddf48f0c98429326b428478ecc6143c27f79b79e85740f17e6feb090f1","affectsGlobalScope":true},{"version":"261c4d2cf86ac5a89ad3fb3fafed74cbb6f2f7c1d139b0540933df567d64a6ca","affectsGlobalScope":true},{"version":"6af1425e9973f4924fca986636ac19a0cf9909a7e0d9d3009c349e6244e957b6","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"15a630d6817718a2ddd7088c4f83e4673fde19fa992d2eae2cf51132a302a5d3","affectsGlobalScope":true},{"version":"ac17a97f816d53d9dd79b0d235e1c0ed54a8cc6a0677e9a3d61efb480b2a3e4e","affectsGlobalScope":true},{"version":"189c0703923150aa30673fa3de411346d727cc44a11c75d05d7cf9ef095daa22","affectsGlobalScope":true},{"version":"95f22ce5f9dbcfc757ff850e7326a1ba1bc69806f1e70f48caefa824819d6f4f","affectsGlobalScope":true},"7a1971efcba559ea9002ada4c4e3c925004fb67a755300d53b5edf9399354900","bc5e4afbdc45e455dbfbb2de699b9edddeb3aaae648d8ca47e0d83ae77265b35","965d3c681888cb11242d0c6e581d8d96c2050cce857bb426f5d20279881f58b6","09280a6f39a849696a42ab7acdcb3c7ebd28756c3da854985bb8fceb5a0319d8","2bcd44be15c2c35a5f55a63acca549ff659b55ef6cdb2d156a0b00e1fcb7a9a0","f8f7be1a3ea4eabf62152bed3454fd4333db3b0dd5d3817aba4f2e84906b2966","ce66d05398aa5f9860cb4232e11868d9aa1816a8708cbcbe6cfda9962a01c206","2b3878d0c705fa48adfbccb085e0cc53e16d2d805e87f4ddcf426ca47184719c","7bd64811ef685cbb38d65cb871fbcf98b6766874edb0b615740e4553e53cf6a1","6e0ec1c9c4f3c3919a9df1da7d53c85eb7c139e05e7e7c17759c26f0da3e9ade","3d35893374b0983270d630013d7fd929ca3e9c014d40f16165714cf044f15550","93435d0cb12c02ea8de08c8d58e1bba2badb01f9c94bcfab450308a3dba84a97","62fb62d6e03c94e6269a4f1a64077f97ac65265af075f3554708616f86968b9c","e4e57c7707a3fcd8f9e05b019f657731c14ee6eac1e1c4b8658e64874b4389ca","91e28956b2fc5b31802fa56dd4f09b0253a17c624ab8ba8a355bfa0fb8927c62","5b9cc52d39740896170628ac30013c4f98550a1b1d603e5a999f3acc9d35fe7f","e41e92680cb44f63d10154beab94a970abe6d4514eb6431980ee7e3cca1577c7","ce63614464f5571d8289b08eaffe3cd1aeb610b23843fa013d5ec2728a968164","58e23a02eda734d857999afb1002846daa36a901eb15a10c539908997828a428","31a05fad225399a8c63927d477b2aaaf16358ea3ec5ed4686e40260fd3529515","69a20d01adbf40afcac686c94b931cc49694f64d0f5e445fca40be7c18800942","ab537aeb8d8e7a2829f6c735c23086ad8df4dc8d0a6af97880b5200dbcae9ba2","68947051891fb1dde45efbcc0f562b501658b16f5140d2899c6ffd5746c6a2cc","75b8b33bb1945e875e0d09fea6a6de04f0bd6bb1239d3841683a42118c00e7ed","622028afad3e12a65acced3c75ae7726bf56d49c199ec3607be2564fca27aac3","1c4fdf9ba0d187c61e19d216ab3a3ba297b1c9b2a5a68367b1d8e7c070520c8e","9e6390c460ca50e0b768107f2be5a14f3da4adb6e775ada0f239d2b3be5732c5","0a219ea8ec306caaf53a291af13ce0241f36c98dbfe4657728107efeae95ce51","7de5baa4b52a643d2740398148968188c6a254a17aaa46c706c94452fc8c4f86","c55ae709f94155174ff63647edd2a7e3acbd02a2909aa2541569e8b8bac9fc40","dccbb9e0b7e4c3585234775219e1c2d9dc43e717a84c56941bfc7523d4bceca0","93d28b4eb12c68fccc1f2fc04a4ef83ea3b2a03b18055d3bf29cab267aa7042e","7e49dbf1543b3ee54853ade4c5e9fa460b6a4eca967efe6bf943e0c505d087ed",{"version":"4450cc7b485b116b876cfe3e57d82b76464d6aee1ecefe0bf5ffc03ad9f13cf7","affectsGlobalScope":true},"9f0963be7caec23db8944f66bacb623a7bc7391520125845087241a270e9b3ce","a1b36a1f91a54daf2e89e12b834fa41fb7338bc044d1f08a80817efc93c99ee5","8bb4a5b632dd5a868f3271750895cb61b0e20cff82032d87e89288faee8dd6e2","0c1aabfd9fb1818afb2e798f91f669edafce59cd7e3423d25b1cfccfaaf2c403","017de6fdabea79015d493bf71e56cbbff092525253c1d76003b3d58280cd82a0","ab9ea2596cb7800bd79d1526930c785606ec4f439c275adbca5adc1ddf87747d","5d514a639cfd3ffd8af8094fc05ea4e8d276946d0069ebff273d6a07ec4f8abd","4d2b263907b8c03c5b2df90e6c1f166e9da85bd87bf439683f150afc91fce7e7","c70e38e0f30b7c0542af9aa7e0324a23dd2b0c1a64e078296653d1d3b36fa248","d12680e217215b37094868d491d00196e80f270ce47e5a4bc50269945ae5554d","396c2c14fa408707235d761a965bd84ce3d4fc3117c3b9f1404d6987d98a30d6","5866f85b79bae844211df93770e10e68298d934f2aed751e7a5cdf9ab59f76dc","1f53da827cb8980a5517a6de877e6f2d76a64e4d2818f2ae48aa3ae92462a042","aee8faa433dde04beedb779b3329456a286a966462d666c138c19113ce78c79e","b7e9c39f7edd1ecd2c3d73b753213a0834144d82ac2a67230c1d291d25430a2e","4e693235d606287d6b5a4e7d572f190862b93ea4a28df8a63fc328aa8becdc9d","e58d1ea2fc84c9c03742b4f56449b7d4602c8c4deb4f0e57c619bab35bbbbf81","d82bc1f8fe8eef55aa741373da68b80a8503228c9aa0ec46bdd38fd7e0c02a18","d7c7f8a461326507d90d0888efff0c4011a5e69eb08ccb990232aa22334e4dd6","5af5ebe8c9b84f667cd047cfcf1942d53e3b369dbd63fbea2a189bbf381146c6","27deb39ac0921db739b503407dc9aa93a546b015c06738bc8b66bdf0ae593c7c","eff5b8bdfe94c0a174484a6de01e802fb66f99f8737a20e4fba4df05c2f24cea","52fa3a4f47e30ef266dbda3b69821fe5811be4faad2b266586090d8b4806342e","5cb6f9ea4a097094fe624c3513111292690e39e83167a412f8912807be71ca65","fa461c83b2adc6b33997a95335d19723bddd4d7aaff41cac6f9f817e3c3ae730","d9eed4a308aeb32babee0600d21c3a3ba8452c89e8a4916e5460b45da147c33c","fc9bdd9b3d8fb59c913cb3b8dea0d79b38dfe9331ef07e1c6dc6bf363f061ad6","e647d13de80e1b6b4e1d94363ea6f5f8f77dfb95d562748b488a7248af25aabf","0c3c4ce6a1884610c99306719f59174d81808c69393c30119f9c2aef0449a2cb","219a25474e58a8161b242776856ec5f6960839b63e74809445e51cadbfc18096","16a6f76f6507cc76012cfd3954136a41a58db595231c2f9bfaf35eca6b25346c","bef94eba81ae2c09059c0d9abdb1ae1b7090314f70550f3c8cd5d7ead4a4f212","48b787ad458be9b524fa5fdfef34f68798074132d4b8cfe6a6fe9c2bf334c532","37280465f8f9b2ea21d490979952b18b7f4d1f0d8fab2d627618fb2cfa1828e3","07863eea4f350458f803714350e43947f7f73d1d67a9ddf747017065d36b073a","9252778562c2587c88775bf9e8a474a2ac51d562fff90b0ab240b51d0248f16d","a57e2e11a5c279edfa86c59c822e2cbaad9776b9ad90b3936815fec0dcb5d18e","29a99d2e57b3e08a997cbc2397bdb251441a545306a74b95ffedc5f03d9bc6b7","5ae003688265a1547bbcb344bf0e26cb994149ac2c032756718e9039302dfac8","c5f2cdab01270375da7f5c3ae12157d529938533f0145fa0df91735a96cc1a65","53522a2c33f9196ef05e72118a009c6ae717265e5b0eac3ee6bdc8305e8dde2e","9da2c58a27fdce871c2eac09d5172b04248bb86ada9b0d10e8b3dfa8470b8dd3","5c317403752871838140f70879b09509e37422e92e7364b4363c7b179310ee44","7b270dc53f35dd0b44bfa619ad4d351fffd512e14053c3688323ed007eda3f6d","6d4e928f232ade7221cffc6e4332ec935baa176415c9bf5d12111bb883a247d2","e86ad029224d4f2af3e188be8b5e9badf8c7083247572069bac7bd2193131fc7","057cac07c7bc5abdcfba44325fcea4906dff7919a3d7d82d4ec40f8b4c90cf2f","38aa389acf91d77db5a4f8e26e713ed53dc832ed5573def9cd20acd9ba97c1fe","e56784be93954f1f86d4dd3ac61b4c9727e75864baf123a1b584b970baed4ba0","b9115605f72b65a662723020b2a1eb696c375a5803d6b401dc01fcbfe49ece90","f1afe721e73e468fa292f5fe9ed48955fc6c53ef8b62e9783446b563e0b66fc4","a54f60678f44415d01a810ca27244e04b4dde3d9b6d9492874262f1a95e56c7d","84058607d19ac1fdef225a04832d7480478808c094cbaedbceda150fa87c7e25","415d60633cf542e700dc0d6d5d320b31052efbdc519fcd8b6b30a1f992ef6d5c","901c640dced9243875645e850705362cb0a9a7f2eea1a82bb95ed53d162f38dd","ebb0d92294fe20f62a07925ce590a93012d6323a6c77ddce92b7743fa1e9dd20","b499f398b4405b9f073b99ad853e47a6394ae6e1b7397c5d2f19c23a4081f213","ef2cbb05dee40c0167de4e459b9da523844707ab4b3b32e40090c649ad5616e9","068a22b89ecc0bed7182e79724a3d4d3d05daacfe3b6e6d3fd2fa3d063d94f44","3f2009badf85a479d3659a735e40607d9f00f23606a0626ae28db3da90b8bf52","fd80c03dca7c1c9b56d6845c3b94c67bf082b72e7e0108a2dfd2c0dec03fb53f","d32b5a3d39b581f0330bd05a5ef577173bd1d51166a7fff43b633f0cc8020071","d97766e9af30de9f96c7a5e8d7d6b3e39a269b8bd011083bd3745be7bd532b13","363dd28f6a218239fbd45bbcc37202ad6a9a40b533b3e208e030137fa8037b03","c6986e90cf95cf639f7f55d8ca49c7aaf0d561d47e6d70ab6879e40f73518c8d","fa2a8e2cc0bde051290d89f15a7b8f4db16d71cf67892be2bf4fca8cc2c3b338","1518707348d7bd6154e30d49487ba92d47b6bd9a32d320cd8e602b59700b5317","ede55f9bac348427d5b32a45ad7a24cc6297354289076d50c68f1692add61bce","d53a7e00791305f0bd04ea6e4d7ea9850ccc3538877f070f55308b3222f0a793","4ea5b45c6693288bb66b2007041a950a9d2fe765e376738377ba445950e927f6","7f25e826bfabe77a159a5fec52af069c13378d0a09d2712c6373ff904ba55d4b","c30b346ad7f4df2f7659f5b3aff4c5c490a1f4654e31c44c839292c930199649","48f1a1b9f15770d9a64b51c596f9569f262fc7e67d7767595068a69539d32939","a83a104129a183f71c203f3a680486abe808895917c4c8380b312161e17b84db","64269ed536e2647e12239481e8287509f9ee029cbb11169793796519cc37ecd4","c06fd8688dd064796b41170733bba3dcacfaf7e711045859364f4f778263fc7b","b0a8bf71fea54a788588c181c0bffbdd2c49904075a7c9cb8c98a3106ad6aa6d","434c5a40f2d5defeede46ae03fb07ed8b8c1d65e10412abd700291b24953c578","c5a6184688526f9cf53e3c9f216beb2123165bfa1ffcbfc7b1c3a925d031abf7",{"version":"cd548f9fcd3cebe99b5ba91ae0ec61c3eae50bed9bc3cfd29d42dcfc201b68b5","affectsGlobalScope":true},"14a8ec10f9faf6e0baff58391578250a51e19d2e14abcc6fc239edb0fb4df7c5","81b0cf8cd66ae6736fd5496c5bbb9e19759713e29c9ed414b00350bd13d89d70","4992afbc8b2cb81e0053d989514a87d1e6c68cc7dedfe71f4b6e1ba35e29b77a","f15480150f26caaccf7680a61c410a07bd4c765eedc6cbdca71f7bca1c241c32","1c390420d6e444195fd814cb9dc2d9ca65e86eb2df9c1e14ff328098e1dc48ae","ec8b45e83323be47c740f3b573760a6f444964d19bbe20d34e3bca4b0304b3ad","ab8b86168ceb965a16e6fc39989b601c0857e1fd3fd63ff8289230163b114171","25a6f013a17350c81854e5a62c01aa24841e2219d5d95da5946890d3d8cbdcdf","0da837840ba21f91b1f9c3c8450cc4f81510b38005ac42c2cd0da4a37e414740","552f15c117a4c13bdd11903a0de928e29dcda845a6aaf9fc5388a26304b96233","1d44cf66f6aaadd2f192a95b1af1270142a6d966b5b4641136060d79b40cdfa6","db515f15908f421edac14e77743e2583d1adc5ff005d051d9013b24e575f0aa3","ddf752b71b7c4c1b09c20cabdd2712305c7c7e815d02a720a7c45f465f9f5578","5ded46b22f516dc8f0f8eeb8bd89130f1a0ad9eef8dfdb8f1cd6849be7ebef90","74bb817a79884249a393466dda60df28f2d2c7a583facba4012ef1d27fb9d4d4","e5392016ff99b5f6a53fb57816e13fea7482f71f7bf9d7ca493a15013db46e2f","8f15d54abeeef93a0d41ce96f659078b9f3ba3eb7cf193fc00682f2ff780931c","c36b9847b1c3f8b837c3a2501b1d2f2605d5dcc3730d59bb22eaecd3b894b0cf","404bb2400a069a39f90d792aeb656b86b33365053fa90d45992b1eb12740f316","38492c28c947539347d0c4677eeddc9ec13e9eb4fb2eb7d29cbf6b8cf38aaacb","4a09f82cf471f95f2d392dd33a598ada3a0987e9f8efff160883d004ea4f08bc","aada70df37b186d7f870362533ff395098fdae80a5ab19ed9c41dfe1285aa364","a19e34d8a2f1470c3e353e8d366e7d9e835d19dd78a3122114c5fe52e5a79a60","7949d810d38b5358244cd86e80f0d840cad62caac4a4b3a6a75c6dab78ae29a8","e6dfc1705e93a5d648527d304e4cf0463902d442a64566e3262e7ffba4e38af4","ea22dd065a3ee61e8f5fc53b4f2275e809a09a3f58b98bb66f8fc07050100892","ff1eab0e4b697c10256786b2d62f47a88ae33c3cea17864f13e6f7bf4137c810","bc8e1ef35172e1b9c46cb39e262c0c4c5839732e75c3bf8b4c3a10fe8a6dec97","190ce538265abf5fb250db8d335bce7665eab997ce16a218a189c2978a7a8b8a","2e62ed413051bfbf3978d1f3cde446dbc6fbee5e7a425820d4692dd6cc74563d","8b4034aca6f85bd65594e19eaa642b37fa9f4741f9026ca3ab739c84eb61a1be","4ecc094dec85754a5d7b518b2d38478eececc0114dd546570b0162d8f723e016","95abdbf021481c53794a3bd150db5574b83338085f78f1d7aa554e1fea26d461","d870ef185bd9e57959c1f3c2ff2cca2d1543243fb4878e52133dae9f92d90385","4cc17e63b37005257a65505022260d187220e3aa1953ce1658667361a68b0728","9192d7d0b94661bf5076dfc22a6bb30d0af8f775530092a06ec0ce671a51ee9b","394858539364c0851650d893728a3acc75c83377560f9ed9d9892f9a8f7b98da","346f46738659ad5a6975ce42ec89c76a1ee362e145c6f4251f57a6db11594c16","8b3a38635593c02dd11469aa99f95690f6fdd03420b6d5e48fc58259e3eaa7d6","1ee990513d8962dbe6706a80195eb0c03002939755151f3788df9dd359fdfc27","2f5e4893fde1a6847ee316a7f9995547358ff1902c33d085073af78f5b73bb9c","93423211853e84f94c106169a9c18b695136928967398c33c70a24a8123b09b6","d7de69076d1a10a1c430842efff47efd02ce2f337e05d83095db9819e9795677","0496344cca8596e5fcfbcf489ea39fd6ea82a4d6a010f968685edf5b4f6c2533","6b4d2feae3805d4b377b0fe3c5c43fd5681d8f5f0939d634eaa28571f3c39e07","9b1f66012e58888f1bd2f5b8b749784d7d592ad7d5ac48972511e2e942161e96","ee9f33d464c617286d9d10d95ae291234dc1a312668adedbf01d5bf781fa0d48","7feb152d0f919dab420e67a56ac9ee787ba568a0a08d38fd51bab8af8f05fa38","d62b916d820b8c130bf1fac10b43576e54fd7adf63535ef4f74e85c73cf59cb2","2d7a0242ee0f800cc80aca2e29dabb43a39cad63c1994fe5240995e1c3592863","762172ab5f8b42e8823b1387c98057bd38d1dd04d2c304a9dc2ef8216791db09","9c2b50924961e9da2c7ced6ea9b1119ff68297217345c6bfd74dc927beb07a78","e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","9283fca3fb1628d68f760102d209afd47c87c0922644d00560411ce72c77698c","e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","e583638a5ee0c9e5aa25c46ef2aa6c79b573630b920273bc86624ba57a65eb9e","5de129155f3c75bb698d6e12b2617d6f5e5ecdcf23bcd42d09d3156d987361b9","702d32653e4f248e6abac940c03a9f1ab1cf87bbde61493e1a491648cc7f73bf","688eae655079382ee52b7e9fc923bf9747040a05d6d0f8a3a7a1f630e8e103dd","272253df8f67ca7faf3c05a52c92851034882c09d6f404a2c4a6dec317940f3d","3e5e8b1f742f40b3da3ad4139fa503ed4a8786b43577e977faefbd84df68b92d","52470c64ff42d847d24be31b19aff4d39c4a74b2073de6cc7fb95545ef8d87a5","6b5766c22829e2866d50a84bc68beb8047609244fd927167a778e6f38d94786a","2e6a34ee0f4ddd21d21c2a1d66e05c872a8a0d395458f5621a1d94a6ae841d84","9d7ba343fa2f243cf57a2c6881e68b13b040da24d2d89f8fba9e043ce758e5fe","ce2b6886b9d0d9884ea0ab60ec8a5f26ba52cec5ad37fbfd211557676c536b7a","17e5be106e8201da8f694d884ed480c7e6f5cfef1c5eec2d030c4079b59a81b1","5e7312dd7e8e4e83b6aedab4411f3a9672f3d7a8830373bbf883efd88bdf9101","96fd6a3af9052317073ea05d18fbe0eaceab07802a431606e6eced76035d8559","75601b5ff88dcfb389a5255e82fb338b25ae1306c96b31d845450a6c80e8fb3c","9baeae6e37a1834d593606a35eeac39c04648caad7cbe5b176d07f099e38b755","42c8ff6c9ac064fc8c62b019e2b598d0827593a3d3228e4ddee8ede9445b3719","a6718bdddf277c1af12e8627166fe8b231e3ccf93e594f42fc955e85a3424dff","7533c7dd5ed799b4c100ad5d58cdd628edbf24bbe33a839e4ff65c24d3f17c62","ecf5cb089ea438f2545e04b6c52828c68d0b0f4bfaa661986faf36da273e9892","95444fb6292d5e2f7050d7021383b719c0252bf5f88854973977db9e3e3d8006","241bd4add06f06f0699dcd58f3b334718d85e3045d9e9d4fa556f11f4d1569c1","06540a9f3f2f88375ada0b89712de1c4310f7398d821c4c10ab5c6477dafb4bc",{"version":"de2d3120ed0989dbc776de71e6c0e8a6b4bf1935760cf468ff9d0e9986ef4c09","affectsGlobalScope":true},"b8bff8a60af0173430b18d9c3e5c443eaa3c515617210c0c7b3d2e1743c19ecb","97bdf234f5db52085d99c6842db560bca133f8a0413ff76bf830f5f38f088ce3","a76ebdf2579e68e4cfe618269c47e5a12a4e045c2805ed7f7ab37af8daa6b091","b493ff8a5175cbbb4e6e8bcfa9506c08f5a7318b2278365cfca3b397c9710ebc","e59d36b7b6e8ba2dd36d032a5f5c279d2460968c8b4e691ca384f118fb09b52a","e96885c0684c9042ec72a9a43ef977f6b4b4a2728f4b9e737edcbaa0c74e5bf6","303ee143a869e8f605e7b1d12be6c7269d4cab90d230caba792495be595d4f56","89e061244da3fc21b7330f4bd32f47c1813dd4d7f1dc3d0883d88943f035b993","e46558c2e04d06207b080138678020448e7fc201f3d69c2601b0d1456105f29a","71549375db52b1163411dba383b5f4618bdf35dc57fa327a1c7d135cf9bf67d1","7e6b2d61d6215a4e82ea75bc31a80ebb8ad0c2b37a60c10c70dd671e8d9d6d5d","78bea05df2896083cca28ed75784dde46d4b194984e8fc559123b56873580a23","5dd04ced37b7ea09f29d277db11f160df7fd73ba8b9dba86cb25552e0653a637","f74b81712e06605677ae1f061600201c425430151f95b5ef4d04387ad7617e6a","9a72847fcf4ac937e352d40810f7b7aec7422d9178451148296cf1aa19467620","3ae18f60e0b96fa1e025059b7d25b3247ba4dcb5f4372f6d6e67ce2adac74eac","2b9260f44a2e071450ae82c110f5dc8f330c9e5c3e85567ed97248330f2bf639","4f196e13684186bda6f5115fc4677a87cf84a0c9c4fc17b8f51e0984f3697b6d","61419f2c5822b28c1ea483258437c1faab87d00c6f84481aa22afb3380d8e9a4","64479aee03812264e421c0bf5104a953ca7b02740ba80090aead1330d0effe91","a5eb4835ab561c140ffc4634bb039387d5d0cceebb86918f1696c7ac156d26fd","c5570e504be103e255d80c60b56c367bf45d502ca52ee35c55dec882f6563b5c","4252b852dd791305da39f6e1242694c2e560d5e46f9bb26e2aca77252057c026","0520b5093712c10c6ef23b5fea2f833bf5481771977112500045e5ea7e8e2b69","5c3cf26654cf762ac4d7fd7b83f09acfe08eef88d2d6983b9a5a423cb4004ca3","e60fa19cf7911c1623b891155d7eb6b7e844e9afdf5738e3b46f3b687730a2bd","b1fd72ff2bb0ba91bb588f3e5329f8fc884eb859794f1c4657a2bfa122ae54d0","6cf42a4f3cfec648545925d43afaa8bb364ac10a839ffed88249da109361b275","ba13c7d46a560f3d4df8ffb1110e2bbec5801449af3b1240a718514b5576156e","6df52b70d7f7702202f672541a5f4a424d478ee5be51a9d37b8ccbe1dbf3c0f2","0ca7f997e9a4d8985e842b7c882e521b6f63233c4086e9fe79dd7a9dc4742b5e","91046b5c6b55d3b194c81fd4df52f687736fad3095e9d103ead92bb64dc160ee","db5704fdad56c74dfc5941283c1182ed471bd17598209d3ac4a49faa72e43cfc","758e8e89559b02b81bc0f8fd395b17ad5aff75490c862cbe369bb1a3d1577c40","2ee64342c077b1868f1834c063f575063051edd6e2964257d34aad032d6b657c","6f6b4b3d670b6a5f0e24ea001c1b3d36453c539195e875687950a178f1730fa7","05c4e2a992bb83066a3a648bad1c310cecd4d0628d7e19545bb107ac9596103a","b48b83a86dd9cfe36f8776b3ff52fcd45b0e043c0538dc4a4b149ba45fe367b9","792de5c062444bd2ee0413fb766e57e03cce7cdaebbfc52fc0c7c8e95069c96b","a79e3e81094c7a04a885bad9b049c519aace53300fb8a0fe4f26727cb5a746ce","dd6c3362aaaec60be028b4ba292806da8e7020eef7255c7414ce4a5c3a7138ef","8a4e89564d8ea66ad87ee3762e07540f9f0656a62043c910d819b4746fc429c5","b9011d99942889a0f95e120d06b698c628b0b6fdc3e6b7ecb459b97ed7d5bcc6","4d639cbbcc2f8f9ce6d55d5d503830d6c2556251df332dc5255d75af53c8a0e7","cdb48277f600ab5f429ecf1c5ea046683bc6b9f73f3deab9a100adac4b34969c","75be84956a29040a1afbe864c0a7a369dfdb739380072484eff153905ef867ee","b06b4adc2ae03331a92abd1b19af8eb91ec2bf8541747ee355887a167d53145e","3114b315cd0687aad8b57cff36f9c8c51f5b1bc6254f1b1e8446ae583d8e2474","0d417c15c5c635384d5f1819cc253a540fe786cc3fda32f6a2ae266671506a21","af733cb878419f3012f0d4df36f918a69ba38d73f3232ba1ab46ef9ede6cb29c","cb59317243a11379a101eb2f27b9df1022674c3df1df0727360a0a3f963f523b","0a01b0b5a9e87d04737084731212106add30f63ec640169f1462ba2e44b6b3a8","06b8a7d46195b6b3980e523ef59746702fd210b71681a83a5cf73799623621f9","860e4405959f646c101b8005a191298b2381af8f33716dc5f42097e4620608f8","f7e32adf714b8f25d3c1783473abec3f2e82d5724538d8dcf6f51baaaff1ca7a","e07d62a8a9a3bb65433a62e9bbf400c6bfd2df4de60652af4d738303ee3670a1","bfbf80f9cd4558af2d7b2006065340aaaced15947d590045253ded50aabb9bc5","851e8d57d6dd17c71e9fa0319abd20ab2feb3fb674d0801611a09b7a25fd281c","c3bd2b94e4298f81743d92945b80e9b56c1cdfb2bef43c149b7106a2491b1fc9","a246cce57f558f9ebaffd55c1e5673da44ea603b4da3b2b47eb88915d30a9181","d993eacc103c5a065227153c9aae8acea3a4322fe1a169ee7c70b77015bf0bb2","fc2b03d0c042aa1627406e753a26a1eaad01b3c496510a78016822ef8d456bb6","063c7ebbe756f0155a8b453f410ca6b76ffa1bbc1048735bcaf9c7c81a1ce35f","748e79252a7f476f8f28923612d7696b214e270cc909bc685afefaac8f052af0","9669075ac38ce36b638b290ba468233980d9f38bdc62f0519213b2fd3e2552ec","4d123de012c24e2f373925100be73d50517ac490f9ed3578ac82d0168bfbd303","656c9af789629aa36b39092bee3757034009620439d9a39912f587538033ce28","3ac3f4bdb8c0905d4c3035d6f7fb20118c21e8a17bee46d3735195b0c2a9f39f","1f453e6798ed29c86f703e9b41662640d4f2e61337007f27ac1c616f20093f69","af43b7871ff21c62bf1a54ec5c488e31a8d3408d5b51ff2e9f8581b6c55f2fc7","70550511d25cbb0b6a64dcac7fffc3c1397fd4cbeb6b23ccc7f9b794ab8a6954","af0fbf08386603a62f2a78c42d998c90353b1f1d22e05a384545f7accf881e0a","c3f32a185cd27ac232d3428a8d9b362c3f7b4892a58adaaa022828a7dcd13eed","3139c3e5e09251feec7a87f457084bee383717f3626a7f1459d053db2f34eb76","4888fd2bcfee9a0ce89d0df860d233e0cee8ee9c479b6bd5a5d5f9aae98342fe","3be870c8e17ec14f1c18fc248f5d2c4669e576404744ff5c63e6dafcf05b97ea","56654d2c5923598384e71cb808fac2818ca3f07dd23bb018988a39d5e64f268b","8b6719d3b9e65863da5390cb26994602c10a315aa16e7d70778a63fee6c4c079","6ab380571d87bd1d6f644fb6ab7837239d54b59f07dc84347b1341f866194214","547d3c406a21b30e2b78629ecc0b2ddaf652d9e0bdb2d59ceebce5612906df33","b3a4f9385279443c3a5568ec914a9492b59a723386161fd5ef0619d9f8982f97","3fe66aba4fbe0c3ba196a4f9ed2a776fe99dc4d1567a558fb11693e9fcc4e6ed","140eef237c7db06fc5adcb5df434ee21e81ee3a6fd57e1a75b8b3750aa2df2d8","0944ec553e4744efae790c68807a461720cff9f3977d4911ac0d918a17c9dd99","7c9ed7ffdc6f843ab69e5b2a3e7f667b050dd8d24d0052db81e35480f6d4e15d","7c7d9e116fe51100ff766703e6b5e4424f51ad8977fe474ddd8d0959aa6de257","af70a2567e586be0083df3938b6a6792e6821363d8ef559ad8d721a33a5bcdaf","006cff3a8bcb92d77953f49a94cd7d5272fef4ab488b9052ef82b6a1260d870b","7d44bfdc8ee5e9af70738ff652c622ae3ad81815e63ab49bdc593d34cb3a68e5","339814517abd4dbc7b5f013dfd3b5e37ef0ea914a8bbe65413ecffd668792bc6","34d5bc0a6958967ec237c99f980155b5145b76e6eb927c9ffc57d8680326b5d8","9eae79b70c9d8288032cbe1b21d0941f6bd4f315e14786b2c1d10bccc634e897","18ce015ed308ea469b13b17f99ce53bbb97975855b2a09b86c052eefa4aa013a","5a931bc4106194e474be141e0bc1046629510dc95b9a0e4b02a3783847222965","5e5f371bf23d5ced2212a5ff56675aefbd0c9b3f4d4fdda1b6123ac6e28f058c","907c17ad5a05eecb29b42b36cc8fec6437be27cc4986bb3a218e4f74f606911c","3656f0584d5a7ee0d0f2cc2b9cffbb43af92e80186b2ce160ebd4421d1506655","a726ad2d0a98bfffbe8bc1cd2d90b6d831638c0adc750ce73103a471eb9a891c","f44c0c8ce58d3dacac016607a1a90e5342d830ea84c48d2e571408087ae55894","75a315a098e630e734d9bc932d9841b64b30f7a349a20cf4717bf93044eff113","9131d95e32b3d4611d4046a613e022637348f6cebfe68230d4e81b691e4761a1","b03aa292cfdcd4edc3af00a7dbd71136dd067ec70a7536b655b82f4dd444e857","90f690a1c5fcb4c2d19c80fea05c8ab590d8f6534c4c296d70af6293ede67366","be95e987818530082c43909be722a838315a0fc5deb6043de0a76f5221cbad24","9ed5b799c50467b0c9f81ddf544b6bcda3e34d92076d6cab183c84511e45c39f","b4fa87cc1833839e51c49f20de71230e259c15b2c9c3e89e4814acc1d1ef10de","e90ac9e4ac0326faa1bc39f37af38ace0f9d4a655cd6d147713c653139cf4928","ea27110249d12e072956473a86fd1965df8e1be985f3b686b4e277afefdde584","1f6058d60eaa8825f59d4b76bbf6cc0e6ad9770948be58de68587b0931da00cc","5666075052877fe2fdddd5b16de03168076cf0f03fbca5c1d4a3b8f43cba570c","50100b1a91f61d81ca3329a98e64b7f05cddc5e3cb26b3411adc137c9c631aca","11aceaee5663b4ed597544567d6e6a5a94b66857d7ebd62a9875ea061018cd2c","6e30d0b5a1441d831d19fe02300ab3d83726abd5141cbcc0e2993fa0efd33db4","423f28126b2fc8d8d6fa558035309000a1297ed24473c595b7dec52e5c7ebae5","fb30734f82083d4790775dae393cd004924ebcbfde49849d9430bf0f0229dd16","2c92b04a7a4a1cd9501e1be338bf435738964130fb2ad5bd6c339ee41224ac4c","c5c5f0157b41833180419dacfbd2bcce78fb1a51c136bd4bcba5249864d8b9b5","669b754ec246dd7471e19b655b73bda6c2ca5bb7ccb1a4dff44a9ae45b6a716a","4bb6035e906946163ecfaec982389d0247ceeac6bdee7f1d07c03d9c224db3aa","8a44b424edee7bb17dc35a558cc15f92555f14a0441205613e0e50452ab3a602","24a00d0f98b799e6f628373249ece352b328089c3383b5606214357e9107e7d5","33637e3bc64edd2075d4071c55d60b32bdb0d243652977c66c964021b6fc8066","0f0ad9f14dedfdca37260931fac1edf0f6b951c629e84027255512f06a6ebc4c","16ad86c48bf950f5a480dc812b64225ca4a071827d3d18ffc5ec1ae176399e36","8cbf55a11ff59fd2b8e39a4aa08e25c5ddce46e3af0ed71fb51610607a13c505","d5bc4544938741f5daf8f3a339bfbf0d880da9e89e79f44a6383aaf056fe0159","c82857a876075e665bbcc78213abfe9e9b0206d502379576d7abd481ade3a569","4f71d883ed6f398ba8fe11fcd003b44bb5f220f840b3eac3c395ad91304e4620","5229c3934f58413f34f1b26c01323c93a5a65a2d9f2a565f216590dfbed1fe32","9fd7466b77020847dbc9d2165829796bf7ea00895b2520ff3752ffdcff53564b","fbfc12d54a4488c2eb166ed63bab0fb34413e97069af273210cf39da5280c8d6","85a84240002b7cf577cec637167f0383409d086e3c4443852ca248fc6e16711e","4c754b03f36ff35fc539f9ebb5f024adbb73ec2d3e4bfb35b385a05abb36a50e","59507446213e73654d6979f3b82dadc4efb0ed177425ae052d96a3f5a5be0d35","a914be97ca7a5be670d1545fc0691ac3fbabd023d7d084b338f6934349798a1f","8f62cbd3afbd6a07bb8c934294b6bfbe437021b89e53a4da7de2648ecfc7af25","62c3621d34fb2567c17a2c4b89914ebefbfbd1b1b875b070391a7d4f722e55dc","c05ac811542e0b59cb9c2e8f60e983461f0b0e39cea93e320fad447ff8e474f3","8e7a5b8f867b99cc8763c0b024068fb58e09f7da2c4810c12833e1ca6eb11c4f","132351cbd8437a463757d3510258d0fa98fd3ebef336f56d6f359cf3e177a3ce","df877050b04c29b9f8409aa10278d586825f511f0841d1ec41b6554f8362092b","33d1888c3c27d3180b7fd20bac84e97ecad94b49830d5dd306f9e770213027d1","ee942c58036a0de88505ffd7c129f86125b783888288c2389330168677d6347f","a3f317d500c30ea56d41501632cdcc376dae6d24770563a5e59c039e1c2a08ec","eb21ddc3a8136a12e69176531197def71dc28ffaf357b74d4bf83407bd845991","0c1651a159995dfa784c57b4ea9944f16bdf8d924ed2d8b3db5c25d25749a343","aaa13958e03409d72e179b5d7f6ec5c6cc666b7be14773ae7b6b5ee4921e52db","0a86e049843ad02977a94bb9cdfec287a6c5a0a4b6b5391a6648b1a122072c5a","87437ca9dabab3a41d483441696ff9220a19e713f58e0b6a99f1731af10776d7","26c5dfa9aa4e6428f4bb7d14cbf72917ace69f738fa92480b9749eebce933370","8e94328e7ca1a7a517d1aa3c569eac0f6a44f67473f6e22c2c4aff5f9f4a9b38","d604d413aff031f4bfbdae1560e54ebf503d374464d76d50a2c6ded4df525712","299f0af797897d77685d606502be72846b3d1f0dc6a2d8c964e9ea3ccbacf5bc","12bfd290936824373edda13f48a4094adee93239b9a73432db603127881a300d","340ceb3ea308f8e98264988a663640e567c553b8d6dc7d5e43a8f3b64f780374","c5a769564e530fba3ec696d0a5cff1709b9095a0bdf5b0826d940d2fc9786413","7124ef724c3fc833a17896f2d994c368230a8d4b235baed39aa8037db31de54f","5de1c0759a76e7710f76899dcae601386424eab11fb2efaf190f2b0f09c3d3d3","9c5ee8f7e581f045b6be979f062a61bf076d362bf89c7f966b993a23424e8b0d","1a11df987948a86aa1ec4867907c59bdf431f13ed2270444bf47f788a5c7f92d","3c97b5ea66276cf463525a6aa9d5bb086bf5e05beac70a0597cda2575503b57b","b756781cd40d465da57d1fc6a442c34ae61fe8c802d752aace24f6a43fedacee","0fe76167c87289ea094e01616dcbab795c11b56bad23e1ef8aba9aa37e93432a","3a45029dba46b1f091e8dc4d784e7be970e209cd7d4ff02bd15270a98a9ba24b","032c1581f921f8874cf42966f27fd04afcabbb7878fa708a8251cac5415a2a06","69c68ed9652842ce4b8e495d63d2cd425862104c9fb7661f72e7aa8a9ef836f8","a31383256374723b47d8b5497a9558bbbcf95bcecfb586a36caf7bfd3693eb0e","06f62a14599a68bcde148d1efd60c2e52e8fa540cc7dcfa4477af132bb3de271","64aa66c7458cbfd0f48f88070b08c2f66ae94aba099dac981f17c2322d147c06","11f19ce32d21222419cecab448fa335017ebebf4f9e5457c4fa9df42fa2dcca7","2e8ee2cbb5e9159764e2189cf5547aebd0e6b0d9a64d479397bb051cd1991744","1b0471d75f5adb7f545c1a97c02a0f825851b95fe6e069ac6ecaa461b8bb321d","1d157c31a02b1e5cca9bc495b3d8d39f4b42b409da79f863fb953fbe3c7d4884","07baaceaec03d88a4b78cb0651b25f1ae0322ac1aa0b555ae3749a79a41cba86","619a132f634b4ebe5b4b4179ea5870f62f2cb09916a25957bff17b408de8b56d","f60fa446a397eb1aead9c4e568faf2df8068b4d0306ebc075fb4be16ed26b741","f3cb784be4d9e91f966a0b5052a098d9b53b0af0d341f690585b0cc05c6ca412","350f63439f8fe2e06c97368ddc7fb6d6c676d54f59520966f7dbbe6a4586014e","eba613b9b357ac8c50a925fa31dc7e65ff3b95a07efbaa684b624f143d8d34ba","9814545517193cf51127d7fbdc3b7335688206ec04ee3a46bba2ee036bd0dcac","0f6199602df09bdb12b95b5434f5d7474b1490d2cd8cc036364ab3ba6fd24263","c8ca7fd9ec7a3ec82185bfc8213e4a7f63ae748fd6fced931741d23ef4ea3c0f","5c6a8a3c2a8d059f0592d4eab59b062210a1c871117968b10797dee36d991ef7","ad77fd25ece8e09247040826a777dc181f974d28257c9cd5acb4921b51967bd8","8f01a2397707e5683bbf3890dfe802f2292ccbebc7885503d30846a362cd470e","a41b9fc0a95f2557d23142c60aa2f28367141f82b445d7f2aa43a8eca702b5b3","e96a3899d6a553bec4c0056fd980b5748bf77d778c2df7609fae98e1631f8102","9d2228fefba1d27d3018534615d38c1dac33a6afe09fd4130650932f49994350","d3ccd5d88854c2e61a186e5032ca91168c633bc4a327688a6cdb6caf5aa74aaf","e02f9f6928bd974cc18803419ecc30e12dc39fb3c4383eaa897bf8d868135ef1","a04a1debf29ca7be5a11859eca422ede0355a7ffac49027843c21a1566aacc2a","9a23afdd036a23560984aeeec5dbdfc3ddd3e50bd8ca87929fca3d0a13292148","2b57988ad287ad13fd9abceb983fe2e8d16906d0abb910696de8da426e8002a2","d93031677bd533b0d737b02da0f81a7135139631ed9f453455f50061cc40181d","36735fec2ee36f693b86536097c6d60acfe2cb32c4e45233e32b846caac8e009","e588e792c210acf976bf8932e38db532cab4c5498cd5a7db39dc7158f0c94a60","2e89a9439c6586ebdb916e01419ce7d5c0e692f3971240d85da135a4fc3d5de7","d548942428ddd9584fe656d7d9a94998f18fe5996fdb75a3ba6034ac7265a21a","92395e3e6898e201a167d96559042af069933f1a96662305bdc01fda3627bfbf","2a6faacb3d8b41430c82eea9b480c548d5a714154897d9450ae2109d910bd724","3eb29fe3517a6419a6e2714ff35ddcbf2a9b28f25d366a06f66596154ea1dc40","8e4d32325135c680f916d32c4b34a0c364b3b58c8b5eb8e6ae1d272809740b6b","6180c552b315823294a11e45aaa42b86c79d749e0dcdd981efda053e4e752e75","1a9624c46a3b64dc2615a8ffa78bdbe28aae8e2de0cabfcd9ba2b9eea6501e39","e3ab3cb9ced9d2a6a6610e70822121137437cce3c18ff8db351670fed9c37a6b",{"version":"a907fcadca748c384160130a150ff269e95410027038f212e447218f04b038fa","signature":"888190b2548f170af317703f5bfc31b93d618d71a49b295d8062ae17aca48444"},{"version":"ee486c3d6c5981a96e493e6ad80fab44f90e432e9e4c617aa730f128f286e233","signature":"cf44854e141d32d146752db413e4b467f93688871b791c9f3f07430db6328ef5"},{"version":"9ce362e600d08161881ab4e3e9bea618044a9dc63bff3bb827e79d6cc9a9d86c","signature":"35b6d71285ba1c733f8d889d0f24a118aee4da15740f3582dc5657386447ab4b"},"df1a1f23d18a3dac758a03f4f8f6a3d14e83fb78a45431d15e6833fb53ed8055","21fa3aaad5d8cbfa85395e4eae75972ab8333020b001b4585f4b8ec81994e2f5","87e852324ee3c69c24b13c17a0b9f320d8e3d8eb1d49669ad1d7774b45058265","4e44566ddea6053606d02c098cfa08ab23167a3baf7fce6a752a94b970096245","3e5cd2a8a891168a187a4ecdbd2243f033decfe405a9c33f5cb97d8d9eb8de38","cfd34f8e799409e01fdc5c2a99a19a4eace31e6009d86eef831989a94f59a642","3d818456cf9b63583e99c67aebccca8b5ec05675316048507fa5eefb2abd3123","35587060a6244e9b10629024cd12ab34ab7e874379a9761e61aca06847981fec","56cd67ee37e8b99f38be9096472df3defcef640fca4ae8cb68c495d105b68aeb","54adf87084900e062a22a02e0e2b3bb9c862ce3b0af04af452cc2cac1539f58c","15a3d1c6f23a3c7015c3d718bd8ddaffe9de21e5f4baf57998a188ce36698eb3","09f8c424b8d8394a44bf731306d0022eef5f9b18845cb796da2cc4d4d49b5795","bcc28b438afa3aa02efe07bfefe080cb1f5fbb8d1525371c5a689b1dda2b5831","ef4138bc245bc4ed576257593d7624aada0d052689a8f9055fc1606d8085ca6d","7dfb21383ef84018d895d0ab84f0a10c1cfdadc8857d3c585d9f95949ff66812","ec11a94b59bffdfcced93fc1d524a3b792f4dfe146b80f58d40afb65deee4e6f","70efed279d4a33bd6474e1b565de48d3721d078ac48e35db4b515067f26f03ec","2a311097017321ade6eb04b9e12b53e4a51cb07fa37b6ead35ac832b33ad27d3","5067e5e3fd2990550510443981e456d48c85dd04669b1ac98246fe7e1de8dd76","3cdc09269c30f50499132846639d826e03fb74007685505c5f0ce9691f627f75","31dcc0a044f6ec34e633f24d50a68af9b28fce321ac88f91398ac0d5b95569f5","9339629f426a34250a332e83c468c433a401139eee914790c55d2518320417d9","2a9dd23cd43596eeda1866c1086fbcf2cdb4abf17994bc8a6b9656fe8062b4cb","b0e330349eae981f3a980231098a9617358aa39d024c16e23d2300ebdf1bcd92","fbf60648061688363789fe5933399ce8fcf8832c7ea9237746e29e0b0b7bedaf","e1fd77a7ff2b25a4b4f01c191b41216c9e429e65d5f329e00bcd04f78c877244",{"version":"fb0e908d49960f82520eb721c4584fbf90863c0dad5daee85d797710decbff44","signature":"3911157f41a7cf237c270e874ccfb02f6bb358e373f2d9c867c1ff0c096c3756"},{"version":"981a97515bee7dcfd58b5e987fe6191b8971e0d39fcb2800f3cf98a21db8688a","signature":"85f64883b34592331ee84288566fd98281e8bfdcfe5b1b4a1a044e1c0b745d9f"},{"version":"30afe717a1694bed802f7c77e62da6b807e4356e2a30c38e8a46af7d1996c9f9","signature":"9742f1e5496dfc3ad24759f63a1d54136fdfb0d501cdd7c78e5b612785846cf4"},{"version":"b48f440af4e45a6ee921536cdc5846c7b717270d46e9a26b07e1a082906d4391","signature":"b0afc2803af9e818fad28464e4e62ee1b255d282f8f19ba8a2459b7bab4d789e"},{"version":"9bd4322a4ef6cd2f0e7775841ab2b4bedd2e587f0223fbd7964903c096345e58","signature":"9669492b45422cef8fff1c64d6c919de3d5649198c27c65dafc2aef60e60f09f"},{"version":"27044b6b032eae8a79273f27c466a219dfdc172cf2589b923db3c205856e862d","signature":"872f05bd4bc2ac2f810dd6250a9002056bbdc8359f12d8ec7e34cccc0a7d8b42"},{"version":"33fd97df370dd0f2490ed4224e1ae51dffdb91241395df1e59abefcd45a495f4","signature":"8d94f925852cd6d2e5c91fa9778b37a12682e31e59bdf83800f6722d769a222c"},{"version":"7b50e26959c0dc0cfc525567bbf48274fe01b8f89b376abf6b0b4d2a5c367a43","signature":"c284c9efae661ce6611f5a7c929c64d3ba1a97aba5becd671d07ca38dc5be84c"},{"version":"270e81bbfe8a6082d3e2f223b96c0d1536e363f23bad8ccf04b36ec76d3f3af2","signature":"dff2e9154ad80bfa82d1875a2c28b5382ac4f1ef7e4bfdf382bb7b1b9dfbcd57"},{"version":"ce92f3adc8dffe8f8b6b10a371bb89495e743442b3ac601643b43934c37f6372","signature":"b687144f76458631b623005b7f341c4ff99ea8aabb6a5749ee15828da69da71d"},"d79ea0d39b65db0b578cb474e22766187aa1ad0560c77b0a6eab783a3830630f","756274d529c558a1a1398f490c3b0ef940e6e506cbc3ca570b25e3fa27c6dd7c","1fc824b170a9eb02028c6603503db9f520e3d7bd1afedffe015069a87ab6fb69",{"version":"5130a740b94e0730335fb2b5072ea43bf08c9efc32ec1d34e454c46fb3a72791","signature":"85f64883b34592331ee84288566fd98281e8bfdcfe5b1b4a1a044e1c0b745d9f"}],"root":[[435,437],[464,473],477],"options":{"declaration":true,"downlevelIteration":true,"esModuleInterop":true,"importHelpers":true,"module":1,"noEmitOnError":true,"noImplicitAny":true,"outDir":"./","skipLibCheck":true,"strict":true,"target":7},"fileIdsList":[[70,71,121],[70,71,134,135],[70,71],[70,71,129],[70,71,129,130,131,132,133],[70,71,122,123,124,125,126,127,128,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157],[70,71,474,475],[70,71,73],[70,71,75],[70,71,81,82,83,84],[70,71,81,83],[70,71,86,88,89],[70,71,86,87],[70,71,91],[67,70,71],[70,71,77,93],[70,71,93],[70,71,96],[70,71,93,94,95],[70,71,93,94,95,96,97],[70,71,78],[70,71,80,81,83],[70,71,75,76],[70,71,99],[70,71,99,102],[70,71,99,100,102,103],[70,71,82,101],[70,71,72],[66,70,71,79],[70,71,105],[70,71,105,106],[66,67,70,71,74,75,76,77,78,79,80,81,82,83,84,85,87,90,91,92,98,101,104,107,108,109,110,111,112,113,114,115,116,117,119,120],[67,70,71,77,78,82],[70,71,85],[70,71,80,82,87],[70,71,80,81],[70,71,80,91],[70,71,75,76,82],[70,71,73,110],[70,71,81,84,116,117],[70,71,80,85,110,115,117,118],[70,71,80],[66,70,71],[69,70,71],[70],[70,71,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,241,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,281,282,283,284,285,286,287,288,289,290,291,292,294,295,296,297,298,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,344,345,346,348,357,359,360,361,362,363,364,366,367,369,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412],[70,71,270],[70,71,228,229],[70,71,225,226,227,229],[70,71,226,229],[70,71,229,270],[70,71,225,229,347],[70,71,227,228,229],[70,71,225,229],[70,71,229],[70,71,228],[70,71,225,228,270],[70,71,226,228,229,386],[70,71,228,229,386],[70,71,228,394],[70,71,226,228,229],[70,71,238],[70,71,261],[70,71,282],[70,71,228,229,270],[70,71,229,277],[70,71,228,229,270,288],[70,71,228,229,288],[70,71,229,329],[70,71,225,229,348],[70,71,354,356],[70,71,225,229,347,354,355],[70,71,347,348,356],[70,71,354],[70,71,225,229,354,355,356],[70,71,370],[70,71,365],[70,71,368],[70,71,226,228,348,349,350,351],[70,71,270,348,349,350,351],[70,71,348,350],[70,71,228,349,350,352,353,357],[70,71,225,228],[70,71,229,372],[70,71,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,271,272,273,274,275,276,278,279,280,281,282,283,284,285,286,287,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345],[70,71,358],[70,71,219],[70,71,220],[70,71,452,453],[50,70,71,452],[70,71,454],[70,71,450],[70,71,451],[70,71,422],[70,71,420],[70,71,420,421],[70,71,456],[50,70,71,458],[70,71,459],[50,70,71],[70,71,222],[70,71,223],[70,71,211],[70,71,158,211],[70,71,413,414],[70,71,415],[70,71,461],[70,71,209],[70,71,181,441],[70,71,442,443],[70,71,158],[59,70,71],[70,71,160,162,164,167],[61,62,70,71],[70,71,160,162,164],[60,63,70,71,160,162,164,165,167,168,173,175,176,179,180],[70,71,160],[64,65,70,71,161],[64,70,71],[61,70,71],[70,71,166],[70,71,170,171,172,173,174],[70,71,171],[70,71,160,169],[70,71,169],[70,71,163],[70,71,177,178],[62,70,71,158],[61,62,70,71,158],[61,62,70,71,159],[47,70,71],[70,71,214],[50,70,71,214],[70,71,214,215,216,217],[50,70,71,184,201,422,423,440,444,449,452,455,457,460,462],[38,50,58,70,71,182,184,201,202,204,206,207,208,210,211,212,213,218,221,224,416,417,419,423,427,428,429,430,433],[70,71,201],[70,71,189],[70,71,187],[70,71,191],[70,71,183,185],[50,70,71,184],[70,71,181],[70,71,201,208],[70,71,186,188,190,192],[70,71,184],[70,71,186],[70,71,197,198],[70,71,184,418],[70,71,418,438,439],[70,71,182,184,193,194,195,196,199,200],[70,71,445],[70,71,445,446,447,448],[46,47,48,49,70,71],[70,71,424],[70,71,425,426],[40,70,71],[39,41,42,43,54,55,56,57,70,71],[44,45,51,52,53,70,71],[44,70,71],[70,71,430],[70,71,431,432],[37,70,71,434,463,468],[37,70,71,413,434,435,436,463,464,466,467],[37,70,71,413,436,463],[37,70,71,434],[37,70,71,464,468,469],[37,70,71,470],[37,70,71,435,437,470,471],[37,70,71,413],[37,70,71,436],[37,70,71,413,436,465],[37,70,71,434,476],[37,70,71,413,435],[468],[413,436,464],[413,436],[434],[464,468,469],[470],[435,437,470,471],[413],[436],[413,414]],"referencedMap":[[122,1],[123,1],[124,1],[125,1],[126,1],[127,1],[128,1],[136,2],[137,1],[138,3],[139,1],[140,1],[141,1],[142,1],[130,4],[131,1],[129,1],[132,4],[133,4],[134,5],[158,6],[143,1],[144,1],[145,1],[146,1],[147,3],[148,1],[149,1],[150,1],[151,1],[152,1],[153,1],[154,2],[155,1],[156,1],[135,1],[157,1],[476,7],[474,3],[475,3],[66,3],[67,3],[74,8],[76,9],[85,10],[84,11],[86,3],[90,12],[88,13],[89,3],[75,3],[92,14],[77,15],[94,16],[95,17],[97,18],[96,19],[98,20],[93,21],[91,22],[99,23],[100,24],[103,25],[104,26],[102,27],[73,28],[80,29],[106,30],[105,3],[107,31],[121,32],[78,3],[83,33],[108,34],[109,3],[81,3],[101,3],[110,35],[111,36],[112,37],[113,38],[114,8],[115,8],[116,39],[87,3],[118,40],[119,41],[72,3],[117,3],[79,42],[82,22],[120,43],[68,3],[70,44],[71,45],[69,3],[413,46],[386,3],[364,47],[362,47],[277,48],[228,49],[227,50],[363,51],[348,52],[270,53],[226,54],[225,55],[412,50],[377,56],[376,56],[288,57],[384,48],[385,48],[387,58],[388,48],[389,55],[390,48],[361,48],[391,48],[392,59],[393,48],[394,56],[395,60],[396,48],[397,48],[398,48],[399,48],[400,56],[401,48],[402,48],[403,48],[404,48],[405,61],[406,48],[407,48],[408,48],[409,48],[410,48],[230,55],[231,55],[232,55],[233,55],[234,55],[235,55],[236,55],[237,48],[239,62],[240,55],[238,55],[241,55],[242,55],[243,55],[244,55],[245,55],[246,55],[247,48],[248,55],[249,55],[250,55],[251,55],[252,55],[253,48],[254,55],[255,55],[256,55],[257,55],[258,55],[259,55],[260,48],[262,63],[261,55],[263,55],[264,55],[265,55],[266,55],[267,61],[268,48],[269,48],[283,64],[271,65],[272,55],[273,55],[274,48],[275,55],[276,55],[278,66],[279,55],[280,55],[281,55],[282,55],[284,55],[285,55],[286,55],[287,55],[289,67],[290,55],[291,55],[292,55],[293,48],[294,55],[295,68],[296,68],[297,68],[298,48],[299,55],[300,55],[301,55],[306,55],[302,55],[303,48],[304,55],[305,48],[307,55],[308,55],[309,55],[310,55],[311,55],[312,55],[313,48],[314,55],[315,55],[316,55],[317,55],[318,55],[319,55],[320,55],[321,55],[322,55],[323,55],[324,55],[325,55],[326,55],[327,55],[328,55],[329,55],[330,69],[331,55],[332,55],[333,55],[334,55],[335,55],[336,55],[337,48],[338,48],[339,48],[340,48],[341,48],[342,55],[343,55],[344,55],[345,55],[411,48],[347,70],[370,71],[365,71],[356,72],[354,73],[368,74],[357,75],[371,76],[366,77],[367,74],[369,78],[355,3],[360,3],[352,79],[353,80],[350,3],[351,81],[349,55],[358,82],[229,83],[378,3],[379,3],[380,3],[381,3],[382,3],[383,3],[372,3],[375,56],[374,3],[373,84],[346,85],[359,86],[37,3],[220,87],[221,88],[219,3],[454,89],[453,90],[455,91],[451,92],[452,93],[423,94],[420,3],[421,95],[422,96],[457,97],[456,3],[459,98],[460,99],[458,100],[223,101],[224,102],[222,3],[213,103],[212,104],[211,3],[415,105],[416,106],[414,3],[461,3],[462,107],[209,3],[210,108],[443,109],[442,109],[444,110],[441,111],[59,3],[60,112],[168,113],[63,114],[165,115],[181,116],[161,117],[162,118],[65,119],[64,120],[167,121],[166,117],[173,3],[175,122],[172,123],[170,124],[171,125],[169,117],[174,117],[176,3],[164,126],[163,114],[179,127],[178,117],[177,128],[159,129],[61,3],[62,120],[160,130],[180,3],[417,3],[214,131],[216,132],[215,133],[217,100],[218,134],[463,135],[434,136],[202,137],[190,138],[189,3],[188,139],[187,3],[192,140],[191,3],[183,3],[186,141],[185,142],[182,143],[418,144],[193,145],[208,146],[184,3],[207,146],[450,3],[194,3],[200,3],[197,147],[198,147],[199,148],[195,3],[196,3],[439,3],[438,146],[419,149],[440,150],[201,151],[448,100],[446,152],[445,100],[447,152],[449,153],[46,3],[47,3],[50,154],[48,3],[49,3],[38,3],[206,3],[205,3],[204,3],[203,3],[425,155],[426,155],[427,156],[424,3],[429,3],[57,3],[39,3],[40,3],[41,157],[428,3],[58,158],[42,3],[43,3],[44,3],[54,159],[45,160],[51,100],[52,3],[53,100],[431,161],[432,3],[433,162],[430,3],[55,3],[56,3],[35,3],[36,3],[7,3],[8,3],[10,3],[9,3],[2,3],[11,3],[12,3],[13,3],[14,3],[15,3],[16,3],[17,3],[18,3],[3,3],[4,3],[22,3],[19,3],[20,3],[21,3],[23,3],[24,3],[25,3],[5,3],[26,3],[27,3],[28,3],[29,3],[6,3],[33,3],[30,3],[31,3],[32,3],[34,3],[1,3],[469,163],[468,164],[464,165],[435,166],[470,167],[471,168],[473,168],[472,169],[436,170],[437,171],[466,172],[477,173],[465,166],[467,174]],"exportedModulesMap":[[122,1],[123,1],[124,1],[125,1],[126,1],[127,1],[128,1],[136,2],[137,1],[138,3],[139,1],[140,1],[141,1],[142,1],[130,4],[131,1],[129,1],[132,4],[133,4],[134,5],[158,6],[143,1],[144,1],[145,1],[146,1],[147,3],[148,1],[149,1],[150,1],[151,1],[152,1],[153,1],[154,2],[155,1],[156,1],[135,1],[157,1],[476,7],[474,3],[475,3],[66,3],[67,3],[74,8],[76,9],[85,10],[84,11],[86,3],[90,12],[88,13],[89,3],[75,3],[92,14],[77,15],[94,16],[95,17],[97,18],[96,19],[98,20],[93,21],[91,22],[99,23],[100,24],[103,25],[104,26],[102,27],[73,28],[80,29],[106,30],[105,3],[107,31],[121,32],[78,3],[83,33],[108,34],[109,3],[81,3],[101,3],[110,35],[111,36],[112,37],[113,38],[114,8],[115,8],[116,39],[87,3],[118,40],[119,41],[72,3],[117,3],[79,42],[82,22],[120,43],[68,3],[70,44],[71,45],[69,3],[413,46],[386,3],[364,47],[362,47],[277,48],[228,49],[227,50],[363,51],[348,52],[270,53],[226,54],[225,55],[412,50],[377,56],[376,56],[288,57],[384,48],[385,48],[387,58],[388,48],[389,55],[390,48],[361,48],[391,48],[392,59],[393,48],[394,56],[395,60],[396,48],[397,48],[398,48],[399,48],[400,56],[401,48],[402,48],[403,48],[404,48],[405,61],[406,48],[407,48],[408,48],[409,48],[410,48],[230,55],[231,55],[232,55],[233,55],[234,55],[235,55],[236,55],[237,48],[239,62],[240,55],[238,55],[241,55],[242,55],[243,55],[244,55],[245,55],[246,55],[247,48],[248,55],[249,55],[250,55],[251,55],[252,55],[253,48],[254,55],[255,55],[256,55],[257,55],[258,55],[259,55],[260,48],[262,63],[261,55],[263,55],[264,55],[265,55],[266,55],[267,61],[268,48],[269,48],[283,64],[271,65],[272,55],[273,55],[274,48],[275,55],[276,55],[278,66],[279,55],[280,55],[281,55],[282,55],[284,55],[285,55],[286,55],[287,55],[289,67],[290,55],[291,55],[292,55],[293,48],[294,55],[295,68],[296,68],[297,68],[298,48],[299,55],[300,55],[301,55],[306,55],[302,55],[303,48],[304,55],[305,48],[307,55],[308,55],[309,55],[310,55],[311,55],[312,55],[313,48],[314,55],[315,55],[316,55],[317,55],[318,55],[319,55],[320,55],[321,55],[322,55],[323,55],[324,55],[325,55],[326,55],[327,55],[328,55],[329,55],[330,69],[331,55],[332,55],[333,55],[334,55],[335,55],[336,55],[337,48],[338,48],[339,48],[340,48],[341,48],[342,55],[343,55],[344,55],[345,55],[411,48],[347,70],[370,71],[365,71],[356,72],[354,73],[368,74],[357,75],[371,76],[366,77],[367,74],[369,78],[355,3],[360,3],[352,79],[353,80],[350,3],[351,81],[349,55],[358,82],[229,83],[378,3],[379,3],[380,3],[381,3],[382,3],[383,3],[372,3],[375,56],[374,3],[373,84],[346,85],[359,86],[37,3],[220,87],[221,88],[219,3],[454,89],[453,90],[455,91],[451,92],[452,93],[423,94],[420,3],[421,95],[422,96],[457,97],[456,3],[459,98],[460,99],[458,100],[223,101],[224,102],[222,3],[213,103],[212,104],[211,3],[415,105],[416,106],[414,3],[461,3],[462,107],[209,3],[210,108],[443,109],[442,109],[444,110],[441,111],[59,3],[60,112],[168,113],[63,114],[165,115],[181,116],[161,117],[162,118],[65,119],[64,120],[167,121],[166,117],[173,3],[175,122],[172,123],[170,124],[171,125],[169,117],[174,117],[176,3],[164,126],[163,114],[179,127],[178,117],[177,128],[159,129],[61,3],[62,120],[160,130],[180,3],[417,3],[214,131],[216,132],[215,133],[217,100],[218,134],[463,135],[434,136],[202,137],[190,138],[189,3],[188,139],[187,3],[192,140],[191,3],[183,3],[186,141],[185,142],[182,143],[418,144],[193,145],[208,146],[184,3],[207,146],[450,3],[194,3],[200,3],[197,147],[198,147],[199,148],[195,3],[196,3],[439,3],[438,146],[419,149],[440,150],[201,151],[448,100],[446,152],[445,100],[447,152],[449,153],[46,3],[47,3],[50,154],[48,3],[49,3],[38,3],[206,3],[205,3],[204,3],[203,3],[425,155],[426,155],[427,156],[424,3],[429,3],[57,3],[39,3],[40,3],[41,157],[428,3],[58,158],[42,3],[43,3],[44,3],[54,159],[45,160],[51,100],[52,3],[53,100],[431,161],[432,3],[433,162],[430,3],[55,3],[56,3],[35,3],[36,3],[7,3],[8,3],[10,3],[9,3],[2,3],[11,3],[12,3],[13,3],[14,3],[15,3],[16,3],[17,3],[18,3],[3,3],[4,3],[22,3],[19,3],[20,3],[21,3],[23,3],[24,3],[25,3],[5,3],[26,3],[27,3],[28,3],[29,3],[6,3],[33,3],[30,3],[31,3],[32,3],[34,3],[1,3],[469,175],[468,176],[464,177],[435,178],[470,179],[471,180],[473,180],[472,181],[436,182],[437,183],[466,177],[477,184],[465,184],[467,182]],"semanticDiagnosticsPerFile":[122,123,124,125,126,127,128,136,137,138,139,140,141,142,130,131,129,132,133,134,158,143,144,145,146,147,148,149,150,151,152,153,154,155,156,135,157,476,474,475,66,67,74,76,85,84,86,90,88,89,75,92,77,94,95,97,96,98,93,91,99,100,103,104,102,73,80,106,105,107,121,78,83,108,109,81,101,110,111,112,113,114,115,116,87,118,119,72,117,79,82,120,68,70,71,69,413,386,364,362,277,228,227,363,348,270,226,225,412,377,376,288,384,385,387,388,389,390,361,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,230,231,232,233,234,235,236,237,239,240,238,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,262,261,263,264,265,266,267,268,269,283,271,272,273,274,275,276,278,279,280,281,282,284,285,286,287,289,290,291,292,293,294,295,296,297,298,299,300,301,306,302,303,304,305,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,411,347,370,365,356,354,368,357,371,366,367,369,355,360,352,353,350,351,349,358,229,378,379,380,381,382,383,372,375,374,373,346,359,37,220,221,219,454,453,455,451,452,423,420,421,422,457,456,459,460,458,223,224,222,213,212,211,415,416,414,461,462,209,210,443,442,444,441,59,60,168,63,165,181,161,162,65,64,167,166,173,175,172,170,171,169,174,176,164,163,179,178,177,159,61,62,160,180,417,214,216,215,217,218,463,434,202,190,189,188,187,192,191,183,186,185,182,418,193,208,184,207,450,194,200,197,198,199,195,196,439,438,419,440,201,448,446,445,447,449,46,47,50,48,49,38,206,205,204,203,425,426,427,424,429,57,39,40,41,428,58,42,43,44,54,45,51,52,53,431,432,433,430,55,56,35,36,7,8,10,9,2,11,12,13,14,15,16,17,18,3,4,22,19,20,21,23,24,25,5,26,27,28,29,6,33,30,31,32,34,1,469,468,464,435,470,471,473,472,436,437,466,477,465,467]},"version":"5.0.2"}
@@ -1,4 +1,4 @@
1
- import { ZenObservable } from 'zen-observable-ts';
1
+ import { Observer, Observable } from 'rxjs';
2
2
  export interface SubscriptionObserver<T> {
3
3
  closed: boolean;
4
4
  next(value: T): void;
@@ -23,5 +23,23 @@ export declare enum ConnectionState {
23
23
  Disconnected = "Disconnected",
24
24
  ConnectedPendingKeepAlive = "ConnectedPendingKeepAlive"
25
25
  }
26
- export declare type PubSubContent = Record<string, unknown> | string;
27
- export declare type PubSubContentObserver = ZenObservable.SubscriptionObserver<PubSubContent>;
26
+ export type PubSubContent = Record<string, unknown>;
27
+ export type PubSubContentObserver = Observer<PubSubContent>;
28
+ export interface PubSubOptions {
29
+ [key: string]: any;
30
+ provider?: string | symbol;
31
+ }
32
+ export interface PubSubBase {
33
+ configure(config: Record<string, unknown>): Record<string, unknown>;
34
+ publish(input: PublishInput): void;
35
+ subscribe(input: SubscribeInput): Observable<PubSubContent>;
36
+ }
37
+ export type PublishInput = {
38
+ topics: string[] | string;
39
+ message: PubSubContent;
40
+ options?: PubSubOptions;
41
+ };
42
+ export type SubscribeInput = {
43
+ topics: string[] | string;
44
+ options?: PubSubOptions;
45
+ };
@@ -1,5 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ConnectionState = exports.CONTROL_MSG = void 0;
3
4
  var CONTROL_MSG;
4
5
  (function (CONTROL_MSG) {
5
6
  CONTROL_MSG["CONNECTION_CLOSED"] = "Connection closed";
@@ -44,4 +45,3 @@ var ConnectionState;
44
45
  */
45
46
  ConnectionState["ConnectedPendingKeepAlive"] = "ConnectedPendingKeepAlive";
46
47
  })(ConnectionState = exports.ConnectionState || (exports.ConnectionState = {}));
47
- //# sourceMappingURL=PubSub.js.map
@@ -1,2 +1 @@
1
- export * from './Provider';
2
1
  export { SubscriptionObserver, CONTROL_MSG, ConnectionState } from './PubSub';
@@ -1,6 +1,8 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ConnectionState = exports.CONTROL_MSG = void 0;
4
+ // Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
5
+ // SPDX-License-Identifier: Apache-2.0
3
6
  var PubSub_1 = require("./PubSub");
4
- exports.CONTROL_MSG = PubSub_1.CONTROL_MSG;
5
- exports.ConnectionState = PubSub_1.ConnectionState;
6
- //# sourceMappingURL=index.js.map
7
+ Object.defineProperty(exports, "CONTROL_MSG", { enumerable: true, get: function () { return PubSub_1.CONTROL_MSG; } });
8
+ Object.defineProperty(exports, "ConnectionState", { enumerable: true, get: function () { return PubSub_1.ConnectionState; } });
@@ -1,8 +1,8 @@
1
- import Observable from 'zen-observable-ts';
1
+ import { Observable } from 'rxjs';
2
2
  import { ConnectionState } from '../types/PubSub';
3
- declare type LinkedConnectionState = 'connected' | 'disconnected';
4
- declare type LinkedHealthState = 'healthy' | 'unhealthy';
5
- declare type LinkedConnectionStates = {
3
+ type LinkedConnectionState = 'connected' | 'disconnected';
4
+ type LinkedHealthState = 'healthy' | 'unhealthy';
5
+ type LinkedConnectionStates = {
6
6
  networkState: LinkedConnectionState;
7
7
  connectionState: LinkedConnectionState | 'connecting';
8
8
  intendedConnectionState: LinkedConnectionState;
@@ -17,7 +17,7 @@ export declare class ConnectionStateMonitor {
17
17
  */
18
18
  private _linkedConnectionState;
19
19
  private _linkedConnectionStateObservable;
20
- private _linkedConnectionStateObserver;
20
+ private _linkedConnectionStateObserver?;
21
21
  private _networkMonitoringSubscription?;
22
22
  private _initialNetworkStateSubscription?;
23
23
  constructor();
@@ -2,10 +2,10 @@
2
2
  // Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3
3
  // SPDX-License-Identifier: Apache-2.0
4
4
  Object.defineProperty(exports, "__esModule", { value: true });
5
- var tslib_1 = require("tslib");
6
- var zen_observable_ts_1 = tslib_1.__importDefault(require("zen-observable-ts"));
7
- var PubSub_1 = require("../types/PubSub");
8
- var ReachabilityMonitor_1 = require("./ReachabilityMonitor");
5
+ exports.ConnectionStateMonitor = exports.CONNECTION_CHANGE = void 0;
6
+ const rxjs_1 = require("rxjs");
7
+ const PubSub_1 = require("../types/PubSub");
8
+ const ReachabilityMonitor_1 = require("./ReachabilityMonitor");
9
9
  exports.CONNECTION_CHANGE = {
10
10
  KEEP_ALIVE_MISSED: { keepAliveState: 'unhealthy' },
11
11
  KEEP_ALIVE: { keepAliveState: 'healthy' },
@@ -23,9 +23,8 @@ exports.CONNECTION_CHANGE = {
23
23
  ONLINE: { networkState: 'connected' },
24
24
  OFFLINE: { networkState: 'disconnected' },
25
25
  };
26
- var ConnectionStateMonitor = /** @class */ (function () {
27
- function ConnectionStateMonitor() {
28
- var _this = this;
26
+ class ConnectionStateMonitor {
27
+ constructor() {
29
28
  this._networkMonitoringSubscription = undefined;
30
29
  this._linkedConnectionState = {
31
30
  networkState: 'connected',
@@ -34,72 +33,61 @@ var ConnectionStateMonitor = /** @class */ (function () {
34
33
  keepAliveState: 'healthy',
35
34
  };
36
35
  // Attempt to update the state with the current actual network state
37
- this._initialNetworkStateSubscription = ReachabilityMonitor_1.ReachabilityMonitor().subscribe(function (_a) {
38
- var online = _a.online;
39
- var _b;
40
- _this.record(online ? exports.CONNECTION_CHANGE.ONLINE : exports.CONNECTION_CHANGE.OFFLINE);
41
- (_b = _this._initialNetworkStateSubscription) === null || _b === void 0 ? void 0 : _b.unsubscribe();
36
+ this._initialNetworkStateSubscription = (0, ReachabilityMonitor_1.ReachabilityMonitor)().subscribe(({ online }) => {
37
+ this.record(online ? exports.CONNECTION_CHANGE.ONLINE : exports.CONNECTION_CHANGE.OFFLINE);
38
+ this._initialNetworkStateSubscription?.unsubscribe();
42
39
  });
43
40
  this._linkedConnectionStateObservable =
44
- new zen_observable_ts_1.default(function (connectionStateObserver) {
45
- connectionStateObserver.next(_this._linkedConnectionState);
46
- _this._linkedConnectionStateObserver = connectionStateObserver;
41
+ new rxjs_1.Observable(connectionStateObserver => {
42
+ connectionStateObserver.next(this._linkedConnectionState);
43
+ this._linkedConnectionStateObserver = connectionStateObserver;
47
44
  });
48
45
  }
49
46
  /**
50
47
  * Turn network state monitoring on if it isn't on already
51
48
  */
52
- ConnectionStateMonitor.prototype.enableNetworkMonitoring = function () {
53
- var _this = this;
54
- var _a;
49
+ enableNetworkMonitoring() {
55
50
  // If no initial network state was discovered, stop trying
56
- (_a = this._initialNetworkStateSubscription) === null || _a === void 0 ? void 0 : _a.unsubscribe();
51
+ this._initialNetworkStateSubscription?.unsubscribe();
57
52
  // Maintain the network state based on the reachability monitor
58
53
  if (this._networkMonitoringSubscription === undefined) {
59
- this._networkMonitoringSubscription = ReachabilityMonitor_1.ReachabilityMonitor().subscribe(function (_a) {
60
- var online = _a.online;
61
- _this.record(online ? exports.CONNECTION_CHANGE.ONLINE : exports.CONNECTION_CHANGE.OFFLINE);
54
+ this._networkMonitoringSubscription = (0, ReachabilityMonitor_1.ReachabilityMonitor)().subscribe(({ online }) => {
55
+ this.record(online ? exports.CONNECTION_CHANGE.ONLINE : exports.CONNECTION_CHANGE.OFFLINE);
62
56
  });
63
57
  }
64
- };
58
+ }
65
59
  /**
66
60
  * Turn network state monitoring off if it isn't off already
67
61
  */
68
- ConnectionStateMonitor.prototype.disableNetworkMonitoring = function () {
69
- var _a;
70
- (_a = this._networkMonitoringSubscription) === null || _a === void 0 ? void 0 : _a.unsubscribe();
62
+ disableNetworkMonitoring() {
63
+ this._networkMonitoringSubscription?.unsubscribe();
71
64
  this._networkMonitoringSubscription = undefined;
72
- };
73
- Object.defineProperty(ConnectionStateMonitor.prototype, "connectionStateObservable", {
74
- /**
75
- * Get the observable that allows us to monitor the connection state
76
- *
77
- * @returns {Observable<ConnectionState>} - The observable that emits ConnectionState updates
78
- */
79
- get: function () {
80
- var _this = this;
81
- var previous;
82
- // The linked state aggregates state changes to any of the network, connection,
83
- // intendedConnection and keepAliveHealth. Some states will change these independent
84
- // states without changing the overall connection state.
85
- // After translating from linked states to ConnectionState, then remove any duplicates
86
- return this._linkedConnectionStateObservable
87
- .map(function (value) {
88
- return _this.connectionStatesTranslator(value);
89
- })
90
- .filter(function (current) {
91
- var toInclude = current !== previous;
92
- previous = current;
93
- return toInclude;
94
- });
95
- },
96
- enumerable: true,
97
- configurable: true
98
- });
65
+ }
66
+ /**
67
+ * Get the observable that allows us to monitor the connection state
68
+ *
69
+ * @returns {Observable<ConnectionState>} - The observable that emits ConnectionState updates
70
+ */
71
+ get connectionStateObservable() {
72
+ let previous;
73
+ // The linked state aggregates state changes to any of the network, connection,
74
+ // intendedConnection and keepAliveHealth. Some states will change these independent
75
+ // states without changing the overall connection state.
76
+ // After translating from linked states to ConnectionState, then remove any duplicates
77
+ return this._linkedConnectionStateObservable
78
+ .pipe((0, rxjs_1.map)(value => {
79
+ return this.connectionStatesTranslator(value);
80
+ }))
81
+ .pipe((0, rxjs_1.filter)(current => {
82
+ const toInclude = current !== previous;
83
+ previous = current;
84
+ return toInclude;
85
+ }));
86
+ }
99
87
  /*
100
88
  * Updates local connection state and emits the full state to the observer.
101
89
  */
102
- ConnectionStateMonitor.prototype.record = function (statusUpdates) {
90
+ record(statusUpdates) {
103
91
  // Maintain the network monitor
104
92
  if (statusUpdates.intendedConnectionState === 'connected') {
105
93
  this.enableNetworkMonitoring();
@@ -108,15 +96,17 @@ var ConnectionStateMonitor = /** @class */ (function () {
108
96
  this.disableNetworkMonitoring();
109
97
  }
110
98
  // Maintain the socket state
111
- var newSocketStatus = tslib_1.__assign(tslib_1.__assign({}, this._linkedConnectionState), statusUpdates);
112
- this._linkedConnectionState = tslib_1.__assign({}, newSocketStatus);
113
- this._linkedConnectionStateObserver.next(this._linkedConnectionState);
114
- };
99
+ const newSocketStatus = {
100
+ ...this._linkedConnectionState,
101
+ ...statusUpdates,
102
+ };
103
+ this._linkedConnectionState = { ...newSocketStatus };
104
+ this._linkedConnectionStateObserver?.next(this._linkedConnectionState);
105
+ }
115
106
  /*
116
107
  * Translate the ConnectionState structure into a specific ConnectionState string literal union
117
108
  */
118
- ConnectionStateMonitor.prototype.connectionStatesTranslator = function (_a) {
119
- var connectionState = _a.connectionState, networkState = _a.networkState, intendedConnectionState = _a.intendedConnectionState, keepAliveState = _a.keepAliveState;
109
+ connectionStatesTranslator({ connectionState, networkState, intendedConnectionState, keepAliveState, }) {
120
110
  if (connectionState === 'connected' && networkState === 'disconnected')
121
111
  return PubSub_1.ConnectionState.ConnectedPendingNetwork;
122
112
  if (connectionState === 'connected' &&
@@ -137,8 +127,6 @@ var ConnectionStateMonitor = /** @class */ (function () {
137
127
  if (connectionState === 'disconnected')
138
128
  return PubSub_1.ConnectionState.Disconnected;
139
129
  return PubSub_1.ConnectionState.Connected;
140
- };
141
- return ConnectionStateMonitor;
142
- }());
130
+ }
131
+ }
143
132
  exports.ConnectionStateMonitor = ConnectionStateMonitor;
144
- //# sourceMappingURL=ConnectionStateMonitor.js.map
@@ -1,3 +1 @@
1
- export declare const ReachabilityMonitor: () => import("zen-observable-ts").default<{
2
- online: boolean;
3
- }>;
1
+ export declare const ReachabilityMonitor: () => import("rxjs").Observable<import("@aws-amplify/core/lib-esm/Reachability/types").NetworkStatus>;
@@ -1,7 +1,8 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ReachabilityMonitor = void 0;
3
4
  // Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
4
5
  // SPDX-License-Identifier: Apache-2.0
5
- var core_1 = require("@aws-amplify/core");
6
- exports.ReachabilityMonitor = function () { return new core_1.Reachability().networkMonitor(); };
7
- //# sourceMappingURL=index.js.map
6
+ const utils_1 = require("@aws-amplify/core/internals/utils");
7
+ const ReachabilityMonitor = () => new utils_1.Reachability().networkMonitor();
8
+ exports.ReachabilityMonitor = ReachabilityMonitor;
@@ -1,3 +1 @@
1
- export declare const ReachabilityMonitor: () => import("zen-observable-ts").default<{
2
- online: boolean;
3
- }>;
1
+ export declare const ReachabilityMonitor: () => import("rxjs").Observable<import("@aws-amplify/core/lib-esm/Reachability/types").NetworkStatus>;
@@ -1,11 +1,10 @@
1
1
  "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- var tslib_1 = require("tslib");
4
2
  // Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
5
3
  // SPDX-License-Identifier: Apache-2.0
6
- var core_1 = require("@aws-amplify/core");
7
- var netinfo_1 = tslib_1.__importDefault(require("@react-native-community/netinfo"));
8
- exports.ReachabilityMonitor = function () {
9
- return new core_1.Reachability().networkMonitor(netinfo_1.default);
10
- };
11
- //# sourceMappingURL=index.native.js.map
4
+ Object.defineProperty(exports, "__esModule", { value: true });
5
+ exports.ReachabilityMonitor = void 0;
6
+ const tslib_1 = require("tslib");
7
+ const utils_1 = require("@aws-amplify/core/internals/utils");
8
+ const netinfo_1 = tslib_1.__importDefault(require("@react-native-community/netinfo"));
9
+ const ReachabilityMonitor = () => new utils_1.Reachability().networkMonitor(netinfo_1.default);
10
+ exports.ReachabilityMonitor = ReachabilityMonitor;
@@ -1,4 +1,4 @@
1
- import { Observer } from 'zen-observable-ts';
1
+ import { Observer } from 'rxjs';
2
2
  export declare enum ReconnectEvent {
3
3
  START_RECONNECT = "START_RECONNECT",
4
4
  HALT_RECONNECT = "HALT_RECONNECT"