From 3335f16ad1a6ec114058a8b7e6e71c2cae33c33d Mon Sep 17 00:00:00 2001 From: Puyodead1 Date: Thu, 23 Mar 2023 11:01:38 -0400 Subject: applications --- src/util/schemas/responses/ApplicationDetectableResponse.ts | 1 + src/util/schemas/responses/ApplicationEntitlementsResponse.ts | 1 + src/util/schemas/responses/ApplicationSkusResponse.ts | 1 + src/util/schemas/responses/ApplicationsResponse.ts | 3 +++ src/util/schemas/responses/index.ts | 4 ++++ 5 files changed, 10 insertions(+) create mode 100644 src/util/schemas/responses/ApplicationDetectableResponse.ts create mode 100644 src/util/schemas/responses/ApplicationEntitlementsResponse.ts create mode 100644 src/util/schemas/responses/ApplicationSkusResponse.ts create mode 100644 src/util/schemas/responses/ApplicationsResponse.ts (limited to 'src/util') diff --git a/src/util/schemas/responses/ApplicationDetectableResponse.ts b/src/util/schemas/responses/ApplicationDetectableResponse.ts new file mode 100644 index 00000000..958b8d43 --- /dev/null +++ b/src/util/schemas/responses/ApplicationDetectableResponse.ts @@ -0,0 +1 @@ +export type ApplicationDetectableResponse = unknown[]; diff --git a/src/util/schemas/responses/ApplicationEntitlementsResponse.ts b/src/util/schemas/responses/ApplicationEntitlementsResponse.ts new file mode 100644 index 00000000..1d2b349e --- /dev/null +++ b/src/util/schemas/responses/ApplicationEntitlementsResponse.ts @@ -0,0 +1 @@ +export type ApplicationEntitlementsResponse = unknown[]; diff --git a/src/util/schemas/responses/ApplicationSkusResponse.ts b/src/util/schemas/responses/ApplicationSkusResponse.ts new file mode 100644 index 00000000..8d577c92 --- /dev/null +++ b/src/util/schemas/responses/ApplicationSkusResponse.ts @@ -0,0 +1 @@ +export type ApplicationSkusResponse = unknown[]; diff --git a/src/util/schemas/responses/ApplicationsResponse.ts b/src/util/schemas/responses/ApplicationsResponse.ts new file mode 100644 index 00000000..fef3fbde --- /dev/null +++ b/src/util/schemas/responses/ApplicationsResponse.ts @@ -0,0 +1,3 @@ +import { Application } from "../../entities"; + +export type ApplicationsResponse = Application[]; diff --git a/src/util/schemas/responses/index.ts b/src/util/schemas/responses/index.ts index ed91b866..6dde4d24 100644 --- a/src/util/schemas/responses/index.ts +++ b/src/util/schemas/responses/index.ts @@ -1,5 +1,9 @@ export * from "./APIErrorOrCaptchaResponse"; export * from "./APIErrorResponse"; +export * from "./ApplicationDetectableResponse"; +export * from "./ApplicationEntitlementsResponse"; +export * from "./ApplicationSkusResponse"; +export * from "./ApplicationsResponse"; export * from "./BackupCodesChallengeResponse"; export * from "./CaptchaRequiredResponse"; export * from "./GenerateRegistrationTokensResponse"; -- cgit 1.5.1