UNPKG

1.33 kBPlain TextView Raw
1/*
2 * Copyright 2018-2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
5 * the License. A copy of the License is located at
6 *
7 * http://aws.amazon.com/apache2.0/
8 *
9 * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
10 * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
11 * and limitations under the License.
12 */
13
14/**
15 * This Symbol is used to reference an internal-only PubSub provider that
16 * is used for AppSync/GraphQL subscriptions in the API category.
17 */
18const hasSymbol =
19 typeof Symbol !== 'undefined' && typeof Symbol.for === 'function';
20
21/**
22 * @deprecated Unused, all usecases have migrated to INTERNAL_AWS_APPSYNC_REALTIME_PUBSUB_PROVIDER
23 */
24export const INTERNAL_AWS_APPSYNC_PUBSUB_PROVIDER = hasSymbol
25 ? Symbol.for('INTERNAL_AWS_APPSYNC_PUBSUB_PROVIDER')
26 : '@@INTERNAL_AWS_APPSYNC_PUBSUB_PROVIDER';
27
28export const INTERNAL_AWS_APPSYNC_REALTIME_PUBSUB_PROVIDER = hasSymbol
29 ? Symbol.for('INTERNAL_AWS_APPSYNC_REALTIME_PUBSUB_PROVIDER')
30 : '@@INTERNAL_AWS_APPSYNC_REALTIME_PUBSUB_PROVIDER';
31
32export const USER_AGENT_HEADER = 'x-amz-user-agent';