|
|
|
|
@@ -4306,6 +4306,7 @@ export type GetDeployedConfigQuery = {
|
|
|
|
|
minimumAllowedAppVersion: string;
|
|
|
|
|
subscriptionGatingEnabled: boolean;
|
|
|
|
|
quotaEnforcementEnabled: boolean;
|
|
|
|
|
storageLimitEnforcementEnabled: boolean;
|
|
|
|
|
defaultAndroidRecordingFormat: StreamSegmentTypeEnum;
|
|
|
|
|
bucketUrl: string;
|
|
|
|
|
bannerMessages: Array<{
|
|
|
|
|
@@ -5195,6 +5196,45 @@ export type GetSubscriptionStatusQuery = {
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export type GetResolvedTierQueryVariables = Exact<{ [key: string]: never }>;
|
|
|
|
|
|
|
|
|
|
export type GetResolvedTierQuery = {
|
|
|
|
|
__typename?: "Query";
|
|
|
|
|
getResolvedTier: {
|
|
|
|
|
__typename?: "ResolvedTierGQL";
|
|
|
|
|
tierName: string;
|
|
|
|
|
tierDisplayName: string;
|
|
|
|
|
hasActiveSubscription: boolean;
|
|
|
|
|
entitlementSource?: EntitlementSourceTypeEnum | null;
|
|
|
|
|
entitlementStatus?: string | null;
|
|
|
|
|
entitlementStartsAt?: any | null;
|
|
|
|
|
entitlementEndsAt?: any | null;
|
|
|
|
|
capabilities: Array<string>;
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export type GetStorageStatusQueryVariables = Exact<{ [key: string]: never }>;
|
|
|
|
|
|
|
|
|
|
export type GetStorageStatusQuery = {
|
|
|
|
|
__typename?: "Query";
|
|
|
|
|
getStorageStatus?: {
|
|
|
|
|
__typename?: "StorageStatusGQL";
|
|
|
|
|
userId: number;
|
|
|
|
|
tierName: string;
|
|
|
|
|
retainedStorageUsedBytes: any;
|
|
|
|
|
retainedStorageLimitBytes?: any | null;
|
|
|
|
|
isUnlimited: boolean;
|
|
|
|
|
policyConfigured: boolean;
|
|
|
|
|
remainingStorageBytes?: any | null;
|
|
|
|
|
storageUsageRatio?: number | null;
|
|
|
|
|
isNearLimit: boolean;
|
|
|
|
|
isOverLimit: boolean;
|
|
|
|
|
usageCalculated: boolean;
|
|
|
|
|
usageSource?: string | null;
|
|
|
|
|
lastCalculatedAt?: any | null;
|
|
|
|
|
} | null;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export type GetAppleAppAccountTokenQueryVariables = Exact<{
|
|
|
|
|
[key: string]: never;
|
|
|
|
|
}>;
|
|
|
|
|
@@ -7202,7 +7242,14 @@ export type GetUploadLinkMutation = {
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
| { __typename?: "SegmentAlreadyUploadedErr"; segmentId: number }
|
|
|
|
|
| { __typename?: "StorageLimitExceededErr" }
|
|
|
|
|
| {
|
|
|
|
|
__typename?: "StorageLimitExceededErr";
|
|
|
|
|
reason: string;
|
|
|
|
|
tierName: string;
|
|
|
|
|
retainedStorageUsedBytes: any;
|
|
|
|
|
retainedStorageLimitBytes?: any | null;
|
|
|
|
|
remainingStorageBytes?: any | null;
|
|
|
|
|
}
|
|
|
|
|
| { __typename?: "TooManyInitUploadsErr" }
|
|
|
|
|
| { __typename?: "TooManyProfileImageUploadsErr" };
|
|
|
|
|
}
|
|
|
|
|
@@ -9234,6 +9281,7 @@ export const GetDeployedConfigDocument = gql`
|
|
|
|
|
minimumAllowedAppVersion
|
|
|
|
|
subscriptionGatingEnabled
|
|
|
|
|
quotaEnforcementEnabled
|
|
|
|
|
storageLimitEnforcementEnabled
|
|
|
|
|
bannerMessages {
|
|
|
|
|
color
|
|
|
|
|
dismissible
|
|
|
|
|
@@ -11081,6 +11129,169 @@ export type GetSubscriptionStatusQueryResult = Apollo.QueryResult<
|
|
|
|
|
GetSubscriptionStatusQuery,
|
|
|
|
|
GetSubscriptionStatusQueryVariables
|
|
|
|
|
>;
|
|
|
|
|
export const GetResolvedTierDocument = gql`
|
|
|
|
|
query GetResolvedTier {
|
|
|
|
|
getResolvedTier {
|
|
|
|
|
tierName
|
|
|
|
|
tierDisplayName
|
|
|
|
|
hasActiveSubscription
|
|
|
|
|
entitlementSource
|
|
|
|
|
entitlementStatus
|
|
|
|
|
entitlementStartsAt
|
|
|
|
|
entitlementEndsAt
|
|
|
|
|
capabilities
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
`;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* __useGetResolvedTierQuery__
|
|
|
|
|
*
|
|
|
|
|
* To run a query within a React component, call `useGetResolvedTierQuery` and pass it any options that fit your needs.
|
|
|
|
|
* When your component renders, `useGetResolvedTierQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
|
|
|
* you can use to render your UI.
|
|
|
|
|
*
|
|
|
|
|
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
|
|
|
*
|
|
|
|
|
* @example
|
|
|
|
|
* const { data, loading, error } = useGetResolvedTierQuery({
|
|
|
|
|
* variables: {
|
|
|
|
|
* },
|
|
|
|
|
* });
|
|
|
|
|
*/
|
|
|
|
|
export function useGetResolvedTierQuery(
|
|
|
|
|
baseOptions?: Apollo.QueryHookOptions<
|
|
|
|
|
GetResolvedTierQuery,
|
|
|
|
|
GetResolvedTierQueryVariables
|
|
|
|
|
>,
|
|
|
|
|
) {
|
|
|
|
|
const options = { ...defaultOptions, ...baseOptions };
|
|
|
|
|
return Apollo.useQuery<GetResolvedTierQuery, GetResolvedTierQueryVariables>(
|
|
|
|
|
GetResolvedTierDocument,
|
|
|
|
|
options,
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
export function useGetResolvedTierLazyQuery(
|
|
|
|
|
baseOptions?: Apollo.LazyQueryHookOptions<
|
|
|
|
|
GetResolvedTierQuery,
|
|
|
|
|
GetResolvedTierQueryVariables
|
|
|
|
|
>,
|
|
|
|
|
) {
|
|
|
|
|
const options = { ...defaultOptions, ...baseOptions };
|
|
|
|
|
return Apollo.useLazyQuery<
|
|
|
|
|
GetResolvedTierQuery,
|
|
|
|
|
GetResolvedTierQueryVariables
|
|
|
|
|
>(GetResolvedTierDocument, options);
|
|
|
|
|
}
|
|
|
|
|
export function useGetResolvedTierSuspenseQuery(
|
|
|
|
|
baseOptions?: Apollo.SuspenseQueryHookOptions<
|
|
|
|
|
GetResolvedTierQuery,
|
|
|
|
|
GetResolvedTierQueryVariables
|
|
|
|
|
>,
|
|
|
|
|
) {
|
|
|
|
|
const options = { ...defaultOptions, ...baseOptions };
|
|
|
|
|
return Apollo.useSuspenseQuery<
|
|
|
|
|
GetResolvedTierQuery,
|
|
|
|
|
GetResolvedTierQueryVariables
|
|
|
|
|
>(GetResolvedTierDocument, options);
|
|
|
|
|
}
|
|
|
|
|
export type GetResolvedTierQueryHookResult = ReturnType<
|
|
|
|
|
typeof useGetResolvedTierQuery
|
|
|
|
|
>;
|
|
|
|
|
export type GetResolvedTierLazyQueryHookResult = ReturnType<
|
|
|
|
|
typeof useGetResolvedTierLazyQuery
|
|
|
|
|
>;
|
|
|
|
|
export type GetResolvedTierSuspenseQueryHookResult = ReturnType<
|
|
|
|
|
typeof useGetResolvedTierSuspenseQuery
|
|
|
|
|
>;
|
|
|
|
|
export type GetResolvedTierQueryResult = Apollo.QueryResult<
|
|
|
|
|
GetResolvedTierQuery,
|
|
|
|
|
GetResolvedTierQueryVariables
|
|
|
|
|
>;
|
|
|
|
|
export const GetStorageStatusDocument = gql`
|
|
|
|
|
query GetStorageStatus {
|
|
|
|
|
getStorageStatus {
|
|
|
|
|
userId
|
|
|
|
|
tierName
|
|
|
|
|
retainedStorageUsedBytes
|
|
|
|
|
retainedStorageLimitBytes
|
|
|
|
|
isUnlimited
|
|
|
|
|
policyConfigured
|
|
|
|
|
remainingStorageBytes
|
|
|
|
|
storageUsageRatio
|
|
|
|
|
isNearLimit
|
|
|
|
|
isOverLimit
|
|
|
|
|
usageCalculated
|
|
|
|
|
usageSource
|
|
|
|
|
lastCalculatedAt
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
`;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* __useGetStorageStatusQuery__
|
|
|
|
|
*
|
|
|
|
|
* To run a query within a React component, call `useGetStorageStatusQuery` and pass it any options that fit your needs.
|
|
|
|
|
* When your component renders, `useGetStorageStatusQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
|
|
|
* you can use to render your UI.
|
|
|
|
|
*
|
|
|
|
|
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
|
|
|
*
|
|
|
|
|
* @example
|
|
|
|
|
* const { data, loading, error } = useGetStorageStatusQuery({
|
|
|
|
|
* variables: {
|
|
|
|
|
* },
|
|
|
|
|
* });
|
|
|
|
|
*/
|
|
|
|
|
export function useGetStorageStatusQuery(
|
|
|
|
|
baseOptions?: Apollo.QueryHookOptions<
|
|
|
|
|
GetStorageStatusQuery,
|
|
|
|
|
GetStorageStatusQueryVariables
|
|
|
|
|
>,
|
|
|
|
|
) {
|
|
|
|
|
const options = { ...defaultOptions, ...baseOptions };
|
|
|
|
|
return Apollo.useQuery<GetStorageStatusQuery, GetStorageStatusQueryVariables>(
|
|
|
|
|
GetStorageStatusDocument,
|
|
|
|
|
options,
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
export function useGetStorageStatusLazyQuery(
|
|
|
|
|
baseOptions?: Apollo.LazyQueryHookOptions<
|
|
|
|
|
GetStorageStatusQuery,
|
|
|
|
|
GetStorageStatusQueryVariables
|
|
|
|
|
>,
|
|
|
|
|
) {
|
|
|
|
|
const options = { ...defaultOptions, ...baseOptions };
|
|
|
|
|
return Apollo.useLazyQuery<
|
|
|
|
|
GetStorageStatusQuery,
|
|
|
|
|
GetStorageStatusQueryVariables
|
|
|
|
|
>(GetStorageStatusDocument, options);
|
|
|
|
|
}
|
|
|
|
|
export function useGetStorageStatusSuspenseQuery(
|
|
|
|
|
baseOptions?: Apollo.SuspenseQueryHookOptions<
|
|
|
|
|
GetStorageStatusQuery,
|
|
|
|
|
GetStorageStatusQueryVariables
|
|
|
|
|
>,
|
|
|
|
|
) {
|
|
|
|
|
const options = { ...defaultOptions, ...baseOptions };
|
|
|
|
|
return Apollo.useSuspenseQuery<
|
|
|
|
|
GetStorageStatusQuery,
|
|
|
|
|
GetStorageStatusQueryVariables
|
|
|
|
|
>(GetStorageStatusDocument, options);
|
|
|
|
|
}
|
|
|
|
|
export type GetStorageStatusQueryHookResult = ReturnType<
|
|
|
|
|
typeof useGetStorageStatusQuery
|
|
|
|
|
>;
|
|
|
|
|
export type GetStorageStatusLazyQueryHookResult = ReturnType<
|
|
|
|
|
typeof useGetStorageStatusLazyQuery
|
|
|
|
|
>;
|
|
|
|
|
export type GetStorageStatusSuspenseQueryHookResult = ReturnType<
|
|
|
|
|
typeof useGetStorageStatusSuspenseQuery
|
|
|
|
|
>;
|
|
|
|
|
export type GetStorageStatusQueryResult = Apollo.QueryResult<
|
|
|
|
|
GetStorageStatusQuery,
|
|
|
|
|
GetStorageStatusQueryVariables
|
|
|
|
|
>;
|
|
|
|
|
export const GetAppleAppAccountTokenDocument = gql`
|
|
|
|
|
query GetAppleAppAccountToken {
|
|
|
|
|
getAppleAppAccountToken
|
|
|
|
|
@@ -15441,6 +15652,13 @@ export const GetUploadLinkDocument = gql`
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
... on StorageLimitExceededErr {
|
|
|
|
|
reason
|
|
|
|
|
tierName
|
|
|
|
|
retainedStorageUsedBytes
|
|
|
|
|
retainedStorageLimitBytes
|
|
|
|
|
remainingStorageBytes
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|