Compare commits
3 Commits
cc4ecaff5d
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
| b6adae4949 | |||
| 459e89d8b8 | |||
| fa2ff19572 |
233
src/index.tsx
233
src/index.tsx
@@ -300,6 +300,7 @@ export type DeployedConfigGql = {
|
|||||||
firebase: Scalars["Boolean"]["output"];
|
firebase: Scalars["Boolean"]["output"];
|
||||||
minimumAllowedAppVersion: Scalars["String"]["output"];
|
minimumAllowedAppVersion: Scalars["String"]["output"];
|
||||||
quotaEnforcementEnabled: Scalars["Boolean"]["output"];
|
quotaEnforcementEnabled: Scalars["Boolean"]["output"];
|
||||||
|
storageLimitEnforcementEnabled: Scalars["Boolean"]["output"];
|
||||||
subscriptionGatingEnabled: Scalars["Boolean"]["output"];
|
subscriptionGatingEnabled: Scalars["Boolean"]["output"];
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -2287,7 +2288,7 @@ export type GetShotsResult = {
|
|||||||
|
|
||||||
export type GetUploadLinkErrors = {
|
export type GetUploadLinkErrors = {
|
||||||
__typename?: "GetUploadLinkErrors";
|
__typename?: "GetUploadLinkErrors";
|
||||||
error: MustHaveSetForUploadLinkErrSegmentAlreadyUploadedErrProcessingFailedErrNoInitForChunkedUploadErrTooManyProfileImageUploadsErrInitUploadAlreadyCompletedErrTooManyInitUploadsErr;
|
error: MustHaveSetForUploadLinkErrSegmentAlreadyUploadedErrProcessingFailedErrNoInitForChunkedUploadErrTooManyProfileImageUploadsErrInitUploadAlreadyCompletedErrTooManyInitUploadsErrStorageLimitExceededErr;
|
||||||
};
|
};
|
||||||
|
|
||||||
export type GetUploadLinkReturn = {
|
export type GetUploadLinkReturn = {
|
||||||
@@ -2391,13 +2392,14 @@ export type MustHaveSetForUploadLinkErr = {
|
|||||||
resolution?: Maybe<Scalars["Boolean"]["output"]>;
|
resolution?: Maybe<Scalars["Boolean"]["output"]>;
|
||||||
};
|
};
|
||||||
|
|
||||||
export type MustHaveSetForUploadLinkErrSegmentAlreadyUploadedErrProcessingFailedErrNoInitForChunkedUploadErrTooManyProfileImageUploadsErrInitUploadAlreadyCompletedErrTooManyInitUploadsErr =
|
export type MustHaveSetForUploadLinkErrSegmentAlreadyUploadedErrProcessingFailedErrNoInitForChunkedUploadErrTooManyProfileImageUploadsErrInitUploadAlreadyCompletedErrTooManyInitUploadsErrStorageLimitExceededErr =
|
||||||
|
|
||||||
| InitUploadAlreadyCompletedErr
|
| InitUploadAlreadyCompletedErr
|
||||||
| MustHaveSetForUploadLinkErr
|
| MustHaveSetForUploadLinkErr
|
||||||
| NoInitForChunkedUploadErr
|
| NoInitForChunkedUploadErr
|
||||||
| ProcessingFailedErr
|
| ProcessingFailedErr
|
||||||
| SegmentAlreadyUploadedErr
|
| SegmentAlreadyUploadedErr
|
||||||
|
| StorageLimitExceededErr
|
||||||
| TooManyInitUploadsErr
|
| TooManyInitUploadsErr
|
||||||
| TooManyProfileImageUploadsErr;
|
| TooManyProfileImageUploadsErr;
|
||||||
|
|
||||||
@@ -3410,6 +3412,15 @@ export enum SpinTypeEnum {
|
|||||||
Unknown = "UNKNOWN",
|
Unknown = "UNKNOWN",
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export type StorageLimitExceededErr = {
|
||||||
|
__typename?: "StorageLimitExceededErr";
|
||||||
|
reason: Scalars["String"]["output"];
|
||||||
|
remainingStorageBytes?: Maybe<Scalars["BigInt"]["output"]>;
|
||||||
|
retainedStorageLimitBytes?: Maybe<Scalars["BigInt"]["output"]>;
|
||||||
|
retainedStorageUsedBytes: Scalars["BigInt"]["output"];
|
||||||
|
tierName: Scalars["String"]["output"];
|
||||||
|
};
|
||||||
|
|
||||||
export type StorageStatusGql = {
|
export type StorageStatusGql = {
|
||||||
__typename?: "StorageStatusGQL";
|
__typename?: "StorageStatusGQL";
|
||||||
isNearLimit: Scalars["Boolean"]["output"];
|
isNearLimit: Scalars["Boolean"]["output"];
|
||||||
@@ -5184,45 +5195,6 @@ 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<{
|
export type GetAppleAppAccountTokenQueryVariables = Exact<{
|
||||||
[key: string]: never;
|
[key: string]: never;
|
||||||
}>;
|
}>;
|
||||||
@@ -7230,6 +7202,7 @@ export type GetUploadLinkMutation = {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
| { __typename?: "SegmentAlreadyUploadedErr"; segmentId: number }
|
| { __typename?: "SegmentAlreadyUploadedErr"; segmentId: number }
|
||||||
|
| { __typename?: "StorageLimitExceededErr" }
|
||||||
| { __typename?: "TooManyInitUploadsErr" }
|
| { __typename?: "TooManyInitUploadsErr" }
|
||||||
| { __typename?: "TooManyProfileImageUploadsErr" };
|
| { __typename?: "TooManyProfileImageUploadsErr" };
|
||||||
}
|
}
|
||||||
@@ -7272,6 +7245,14 @@ export type GetHlsInitUploadLinkMutation = {
|
|||||||
}
|
}
|
||||||
| { __typename?: "ProcessingFailedErr" }
|
| { __typename?: "ProcessingFailedErr" }
|
||||||
| { __typename?: "SegmentAlreadyUploadedErr" }
|
| { __typename?: "SegmentAlreadyUploadedErr" }
|
||||||
|
| {
|
||||||
|
__typename?: "StorageLimitExceededErr";
|
||||||
|
reason: string;
|
||||||
|
tierName: string;
|
||||||
|
retainedStorageUsedBytes: any;
|
||||||
|
retainedStorageLimitBytes?: any | null;
|
||||||
|
remainingStorageBytes?: any | null;
|
||||||
|
}
|
||||||
| { __typename?: "TooManyInitUploadsErr"; linksRequested: number }
|
| { __typename?: "TooManyInitUploadsErr"; linksRequested: number }
|
||||||
| { __typename?: "TooManyProfileImageUploadsErr" };
|
| { __typename?: "TooManyProfileImageUploadsErr" };
|
||||||
}
|
}
|
||||||
@@ -11100,169 +11081,6 @@ export type GetSubscriptionStatusQueryResult = Apollo.QueryResult<
|
|||||||
GetSubscriptionStatusQuery,
|
GetSubscriptionStatusQuery,
|
||||||
GetSubscriptionStatusQueryVariables
|
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`
|
export const GetAppleAppAccountTokenDocument = gql`
|
||||||
query GetAppleAppAccountToken {
|
query GetAppleAppAccountToken {
|
||||||
getAppleAppAccountToken
|
getAppleAppAccountToken
|
||||||
@@ -15698,6 +15516,13 @@ export const GetHlsInitUploadLinkDocument = gql`
|
|||||||
... on TooManyInitUploadsErr {
|
... on TooManyInitUploadsErr {
|
||||||
linksRequested
|
linksRequested
|
||||||
}
|
}
|
||||||
|
... on StorageLimitExceededErr {
|
||||||
|
reason
|
||||||
|
tierName
|
||||||
|
retainedStorageUsedBytes
|
||||||
|
retainedStorageLimitBytes
|
||||||
|
remainingStorageBytes
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -67,37 +67,6 @@ query GetSubscriptionStatus {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
query GetResolvedTier {
|
|
||||||
getResolvedTier {
|
|
||||||
tierName
|
|
||||||
tierDisplayName
|
|
||||||
hasActiveSubscription
|
|
||||||
entitlementSource
|
|
||||||
entitlementStatus
|
|
||||||
entitlementStartsAt
|
|
||||||
entitlementEndsAt
|
|
||||||
capabilities
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
query GetStorageStatus {
|
|
||||||
getStorageStatus {
|
|
||||||
userId
|
|
||||||
tierName
|
|
||||||
retainedStorageUsedBytes
|
|
||||||
retainedStorageLimitBytes
|
|
||||||
isUnlimited
|
|
||||||
policyConfigured
|
|
||||||
remainingStorageBytes
|
|
||||||
storageUsageRatio
|
|
||||||
isNearLimit
|
|
||||||
isOverLimit
|
|
||||||
usageCalculated
|
|
||||||
usageSource
|
|
||||||
lastCalculatedAt
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
query GetAppleAppAccountToken {
|
query GetAppleAppAccountToken {
|
||||||
getAppleAppAccountToken
|
getAppleAppAccountToken
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -67,6 +67,13 @@ mutation GetHlsInitUploadLink($videoId: Int!) {
|
|||||||
... on TooManyInitUploadsErr {
|
... on TooManyInitUploadsErr {
|
||||||
linksRequested
|
linksRequested
|
||||||
}
|
}
|
||||||
|
... on StorageLimitExceededErr {
|
||||||
|
reason
|
||||||
|
tierName
|
||||||
|
retainedStorageUsedBytes
|
||||||
|
retainedStorageLimitBytes
|
||||||
|
remainingStorageBytes
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -714,6 +714,7 @@ type DeployedConfigGQL {
|
|||||||
minimumAllowedAppVersion: String!
|
minimumAllowedAppVersion: String!
|
||||||
subscriptionGatingEnabled: Boolean!
|
subscriptionGatingEnabled: Boolean!
|
||||||
quotaEnforcementEnabled: Boolean!
|
quotaEnforcementEnabled: Boolean!
|
||||||
|
storageLimitEnforcementEnabled: Boolean!
|
||||||
bannerMessages: [BannerGQL!]!
|
bannerMessages: [BannerGQL!]!
|
||||||
defaultAndroidRecordingFormat: StreamSegmentTypeEnum!
|
defaultAndroidRecordingFormat: StreamSegmentTypeEnum!
|
||||||
bucketUrl: String!
|
bucketUrl: String!
|
||||||
@@ -1525,10 +1526,10 @@ type GetUploadLinkReturn {
|
|||||||
union UploadLinkGetUploadLinkErrors = UploadLink | GetUploadLinkErrors
|
union UploadLinkGetUploadLinkErrors = UploadLink | GetUploadLinkErrors
|
||||||
|
|
||||||
type GetUploadLinkErrors {
|
type GetUploadLinkErrors {
|
||||||
error: MustHaveSetForUploadLinkErrSegmentAlreadyUploadedErrProcessingFailedErrNoInitForChunkedUploadErrTooManyProfileImageUploadsErrInitUploadAlreadyCompletedErrTooManyInitUploadsErr!
|
error: MustHaveSetForUploadLinkErrSegmentAlreadyUploadedErrProcessingFailedErrNoInitForChunkedUploadErrTooManyProfileImageUploadsErrInitUploadAlreadyCompletedErrTooManyInitUploadsErrStorageLimitExceededErr!
|
||||||
}
|
}
|
||||||
|
|
||||||
union MustHaveSetForUploadLinkErrSegmentAlreadyUploadedErrProcessingFailedErrNoInitForChunkedUploadErrTooManyProfileImageUploadsErrInitUploadAlreadyCompletedErrTooManyInitUploadsErr =
|
union MustHaveSetForUploadLinkErrSegmentAlreadyUploadedErrProcessingFailedErrNoInitForChunkedUploadErrTooManyProfileImageUploadsErrInitUploadAlreadyCompletedErrTooManyInitUploadsErrStorageLimitExceededErr =
|
||||||
MustHaveSetForUploadLinkErr
|
MustHaveSetForUploadLinkErr
|
||||||
| SegmentAlreadyUploadedErr
|
| SegmentAlreadyUploadedErr
|
||||||
| ProcessingFailedErr
|
| ProcessingFailedErr
|
||||||
@@ -1536,6 +1537,7 @@ union MustHaveSetForUploadLinkErrSegmentAlreadyUploadedErrProcessingFailedErrNoI
|
|||||||
| TooManyProfileImageUploadsErr
|
| TooManyProfileImageUploadsErr
|
||||||
| InitUploadAlreadyCompletedErr
|
| InitUploadAlreadyCompletedErr
|
||||||
| TooManyInitUploadsErr
|
| TooManyInitUploadsErr
|
||||||
|
| StorageLimitExceededErr
|
||||||
|
|
||||||
type MustHaveSetForUploadLinkErr {
|
type MustHaveSetForUploadLinkErr {
|
||||||
resolution: Boolean
|
resolution: Boolean
|
||||||
@@ -1561,3 +1563,11 @@ type InitUploadAlreadyCompletedErr {
|
|||||||
type TooManyInitUploadsErr {
|
type TooManyInitUploadsErr {
|
||||||
linksRequested: Int!
|
linksRequested: Int!
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type StorageLimitExceededErr {
|
||||||
|
reason: String!
|
||||||
|
tierName: String!
|
||||||
|
retainedStorageUsedBytes: BigInt!
|
||||||
|
retainedStorageLimitBytes: BigInt
|
||||||
|
remainingStorageBytes: BigInt
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user