@vertracloud/api-types 0.0.41 → 0.1.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.
- package/package.json +1 -1
- package/payloads/v1/index.d.ts +1 -1
- package/payloads/v1/wing.d.ts +10 -1
- package/payloads/v1/wing.js.map +1 -1
- package/rest/v1/index.d.ts +1 -1
- package/rest/v1/wing.d.ts +4 -2
- package/rest/v1/wing.js.map +1 -1
- package/v1.d.ts +2 -2
package/package.json
CHANGED
package/payloads/v1/index.d.ts
CHANGED
|
@@ -8,6 +8,6 @@ export { APIRedeemResponse } from './redeem.js';
|
|
|
8
8
|
export { APIGroupedResourceSnapshots, APIResourceSnapshot, APISnapshotRestoreResponse, ResourceType } from './snapshot.js';
|
|
9
9
|
export { APIStatus, StatusType } from './status.js';
|
|
10
10
|
export { APIUser, APIUserApiKey, APIUserConnection, APIUserInfoResponse, APIUserPlan, APIUserPlanMemory, APIUserSession, APIUserWorkspaceInviteKey } from './user.js';
|
|
11
|
-
export { APIPayloadStatus, WingPayload, WingServiceResult, WingsAppCreateResponse, WingsAppRebuildResponse, WingsContainerMetric, WingsDatabaseCertificate, WingsDatabaseCreateResponse, WingsDatabaseRebuildResponse, WingsDatabaseResetResponse, WingsFileMoveResponse, WingsFileUploadResponse, WingsSnapshotRestoreResponse } from './wing.js';
|
|
11
|
+
export { APIPayloadStatus, WingPayload, WingServiceResult, WingsAppCreateResponse, WingsAppDeployResponse, WingsAppRebuildResponse, WingsContainerMetric, WingsDatabaseCertificate, WingsDatabaseCreateResponse, WingsDatabaseRebuildResponse, WingsDatabaseResetResponse, WingsFileMoveResponse, WingsFileUploadResponse, WingsSnapshotRestoreResponse } from './wing.js';
|
|
12
12
|
export { APIWorkspace, APIWorkspaceInfoResponse, APIWorkspaceMember, APIWorkspaceMemberAdd, APIWorkspaceMemberRoleUpdate, WorkspaceMemberRole } from './workspace.js';
|
|
13
13
|
import '../../common/v1.js';
|
package/payloads/v1/wing.d.ts
CHANGED
|
@@ -50,6 +50,15 @@ interface WingsAppCreateResponse {
|
|
|
50
50
|
vcpus: number;
|
|
51
51
|
auto_restart: boolean;
|
|
52
52
|
created_at: ISODateString;
|
|
53
|
+
missing_dependencies?: string[];
|
|
54
|
+
removed_directories?: string[];
|
|
55
|
+
}
|
|
56
|
+
/**
|
|
57
|
+
* Application container deploy response
|
|
58
|
+
*/
|
|
59
|
+
interface WingsAppDeployResponse {
|
|
60
|
+
missing_dependencies?: string[];
|
|
61
|
+
removed_directories?: string[];
|
|
53
62
|
}
|
|
54
63
|
/**
|
|
55
64
|
* Application container rebuild response
|
|
@@ -121,4 +130,4 @@ interface WingsDatabaseResetResponse {
|
|
|
121
130
|
id: string;
|
|
122
131
|
}
|
|
123
132
|
|
|
124
|
-
export type { APIPayloadStatus, WingPayload, WingServiceResult, WingsAppCreateResponse, WingsAppRebuildResponse, WingsContainerMetric, WingsDatabaseCertificate, WingsDatabaseCreateResponse, WingsDatabaseRebuildResponse, WingsDatabaseResetResponse, WingsFileMoveResponse, WingsFileUploadResponse, WingsSnapshotRestoreResponse };
|
|
133
|
+
export type { APIPayloadStatus, WingPayload, WingServiceResult, WingsAppCreateResponse, WingsAppDeployResponse, WingsAppRebuildResponse, WingsContainerMetric, WingsDatabaseCertificate, WingsDatabaseCreateResponse, WingsDatabaseRebuildResponse, WingsDatabaseResetResponse, WingsFileMoveResponse, WingsFileUploadResponse, WingsSnapshotRestoreResponse };
|
package/payloads/v1/wing.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["wing.ts"],"sourcesContent":["import type { ISODateString } from \"../../common/v1\";\nimport type { ApplicationLanguage } from \"./application\";\n\n/**\n * Wing service response wrapper\n */\nexport type APIPayloadStatus = \"error\" | \"success\";\n\nexport interface WingPayload<T = unknown> {\n\tstatus: APIPayloadStatus;\n\tresponse?: T;\n\tcode?: string;\n}\n\nexport interface WingServiceResult<T = unknown> {\n\tstatus: number;\n\tpayload: WingPayload<T>;\n}\n\n/**\n * Container metrics (shared between apps and databases)\n */\nexport interface WingsContainerMetric {\n\tid: string;\n\tcpu: number;\n\tram: number;\n\tstorage: number;\n\tnetwork_in: number;\n\tnetwork_out: number;\n\tnetwork: { total: string; now: string } | null;\n\tuptime: number;\n\trunning: boolean;\n}\n\n/**\n * Application container creation response\n */\nexport interface WingsAppCreateResponse {\n\tcontainer_id: string;\n\tcontainer_name: string;\n\tenvs: Array<{ key: string; value: string; note?: string }>;\n\tlanguage: ApplicationLanguage;\n\tversion: string;\n\tsubdomain: string;\n\tmax_bandwidth: string;\n\tmemory: number;\n\tvcpus: number;\n\tauto_restart: boolean;\n\tcreated_at: ISODateString;\n}\n\n/**\n * Application container rebuild response\n */\nexport interface WingsAppRebuildResponse {\n\tcontainer_id: string;\n\tcontainer_name: string;\n\tversion: string;\n}\n\n/**\n * Database container creation response\n */\nexport interface WingsDatabaseCreateResponse {\n\tcontainer_id: string;\n\tcontainer_name: string;\n\tsubdomain_full: string;\n\tmax_bandwidth: string;\n\tmemory: number;\n\tvcpus: number;\n\ttype: number;\n\thost: string;\n\tport: number;\n\tstorage: number;\n\tcreated_at: ISODateString;\n}\n\n/**\n * Database container rebuild response\n */\nexport interface WingsDatabaseRebuildResponse {\n\tcontainer_id: string;\n\tcontainer_name: string;\n\ttype: number;\n\thost: string;\n\tport: number;\n\tcreated_at: ISODateString;\n}\n\n/**\n * Database certificate bundle\n */\nexport interface WingsDatabaseCertificate {\n\tcrt: string;\n\tkey: string;\n\tpem: string;\n}\n\n/**\n * File upload response\n */\nexport interface WingsFileUploadResponse {\n\tapp_id: string;\n\tupdated_at: ISODateString;\n}\n\n/**\n * File move response\n */\nexport interface WingsFileMoveResponse {\n\tfrom: string;\n\tto: string;\n}\n\n/**\n * Snapshot restore response\n */\nexport interface WingsSnapshotRestoreResponse {\n\tmessage: string;\n}\n\n/**\n * Database reset response\n */\nexport interface WingsDatabaseResetResponse {\n\tid: string;\n}\n"],"mappings":";;;;;;;;;;;;;;;;AAAA;AAAA;","names":[]}
|
|
1
|
+
{"version":3,"sources":["wing.ts"],"sourcesContent":["import type { ISODateString } from \"../../common/v1\";\nimport type { ApplicationLanguage } from \"./application\";\n\n/**\n * Wing service response wrapper\n */\nexport type APIPayloadStatus = \"error\" | \"success\";\n\nexport interface WingPayload<T = unknown> {\n\tstatus: APIPayloadStatus;\n\tresponse?: T;\n\tcode?: string;\n}\n\nexport interface WingServiceResult<T = unknown> {\n\tstatus: number;\n\tpayload: WingPayload<T>;\n}\n\n/**\n * Container metrics (shared between apps and databases)\n */\nexport interface WingsContainerMetric {\n\tid: string;\n\tcpu: number;\n\tram: number;\n\tstorage: number;\n\tnetwork_in: number;\n\tnetwork_out: number;\n\tnetwork: { total: string; now: string } | null;\n\tuptime: number;\n\trunning: boolean;\n}\n\n/**\n * Application container creation response\n */\nexport interface WingsAppCreateResponse {\n\tcontainer_id: string;\n\tcontainer_name: string;\n\tenvs: Array<{ key: string; value: string; note?: string }>;\n\tlanguage: ApplicationLanguage;\n\tversion: string;\n\tsubdomain: string;\n\tmax_bandwidth: string;\n\tmemory: number;\n\tvcpus: number;\n\tauto_restart: boolean;\n\tcreated_at: ISODateString;\n\tmissing_dependencies?: string[];\n\tremoved_directories?: string[];\n}\n\n/**\n * Application container deploy response\n */\nexport interface WingsAppDeployResponse {\n\tmissing_dependencies?: string[];\n\tremoved_directories?: string[];\n}\n\n/**\n * Application container rebuild response\n */\nexport interface WingsAppRebuildResponse {\n\tcontainer_id: string;\n\tcontainer_name: string;\n\tversion: string;\n}\n\n/**\n * Database container creation response\n */\nexport interface WingsDatabaseCreateResponse {\n\tcontainer_id: string;\n\tcontainer_name: string;\n\tsubdomain_full: string;\n\tmax_bandwidth: string;\n\tmemory: number;\n\tvcpus: number;\n\ttype: number;\n\thost: string;\n\tport: number;\n\tstorage: number;\n\tcreated_at: ISODateString;\n}\n\n/**\n * Database container rebuild response\n */\nexport interface WingsDatabaseRebuildResponse {\n\tcontainer_id: string;\n\tcontainer_name: string;\n\ttype: number;\n\thost: string;\n\tport: number;\n\tcreated_at: ISODateString;\n}\n\n/**\n * Database certificate bundle\n */\nexport interface WingsDatabaseCertificate {\n\tcrt: string;\n\tkey: string;\n\tpem: string;\n}\n\n/**\n * File upload response\n */\nexport interface WingsFileUploadResponse {\n\tapp_id: string;\n\tupdated_at: ISODateString;\n}\n\n/**\n * File move response\n */\nexport interface WingsFileMoveResponse {\n\tfrom: string;\n\tto: string;\n}\n\n/**\n * Snapshot restore response\n */\nexport interface WingsSnapshotRestoreResponse {\n\tmessage: string;\n}\n\n/**\n * Database reset response\n */\nexport interface WingsDatabaseResetResponse {\n\tid: string;\n}\n"],"mappings":";;;;;;;;;;;;;;;;AAAA;AAAA;","names":[]}
|
package/rest/v1/index.d.ts
CHANGED
|
@@ -8,7 +8,7 @@ export { RESTPostAPIRedeemResponse } from './redeem.js';
|
|
|
8
8
|
export { RESTGetAPIGroupedSnapshotsResponse, RESTGetAPISnapshotDownloadResponse, RESTGetAPISnapshotResponse, RESTGetAPISnapshotsResponse, RESTPostAPISnapshotCreateResponse, RESTPostAPISnapshotRestoreResponse } from './snapshot.js';
|
|
9
9
|
export { RESTGetAPIStatusResponse } from './status.js';
|
|
10
10
|
export { RESTGetAPIUserInfoResponse, RESTGetAPIUserSessionsResponse, RESTPostAPIUserDowngradeResponse, RESTPostAPIUserGenerateApiKeyResponse } from './user.js';
|
|
11
|
-
export { WingGetAppDownloadResponse, WingGetAppLogsResponse, WingGetAppStatusResponse, WingGetDatabaseCertificateResponse, WingGetDatabaseStatusResponse, WingPostAppAllStatusResponse, WingPostAppCreateResponse, WingPostAppFileUploadResponse, WingPostAppRebuildResponse, WingPostDatabaseAllStatusResponse, WingPostDatabaseCreateResponse, WingPostDatabaseRebuildResponse, WingPostDatabaseResetCertificateResponse, WingPostDatabaseResetResponse, WingPostSnapshotRestoreResponse } from './wing.js';
|
|
11
|
+
export { WingGetAppDownloadResponse, WingGetAppLogsResponse, WingGetAppStatusResponse, WingGetDatabaseCertificateResponse, WingGetDatabaseStatusResponse, WingPostAppAllStatusResponse, WingPostAppCreateResponse, WingPostAppDeployResponse, WingPostAppFileUploadResponse, WingPostAppRebuildResponse, WingPostDatabaseAllStatusResponse, WingPostDatabaseCreateResponse, WingPostDatabaseRebuildResponse, WingPostDatabaseResetCertificateResponse, WingPostDatabaseResetResponse, WingPostSnapshotRestoreResponse } from './wing.js';
|
|
12
12
|
export { RESTDeleteAPIWorkspaceResponse, RESTGetAPIWorkspaceInfoResponse, RESTGetAPIWorkspaceResponse, RESTGetAPIWorkspacesResponse, RESTPostAPIWorkspaceCreateResponse, RESTPostAPIWorkspaceMemberAddResponse, RESTPutAPIWorkspaceMemberRoleResponse, RESTPutAPIWorkspaceUpdateResponse } from './workspace.js';
|
|
13
13
|
import '../../common/v1.js';
|
|
14
14
|
import '../../payloads/v1/activity.js';
|
package/rest/v1/wing.d.ts
CHANGED
|
@@ -1,9 +1,11 @@
|
|
|
1
|
-
import { WingPayload, WingsAppCreateResponse, WingsAppRebuildResponse, WingsContainerMetric, WingsFileUploadResponse, WingsDatabaseCreateResponse, WingsDatabaseRebuildResponse, WingsDatabaseCertificate, WingsDatabaseResetResponse, WingsSnapshotRestoreResponse } from '../../payloads/v1/wing.js';
|
|
1
|
+
import { WingPayload, WingsAppCreateResponse, WingsAppDeployResponse, WingsAppRebuildResponse, WingsContainerMetric, WingsFileUploadResponse, WingsDatabaseCreateResponse, WingsDatabaseRebuildResponse, WingsDatabaseCertificate, WingsDatabaseResetResponse, WingsSnapshotRestoreResponse } from '../../payloads/v1/wing.js';
|
|
2
2
|
import '../../common/v1.js';
|
|
3
3
|
import '../../payloads/v1/application.js';
|
|
4
4
|
|
|
5
5
|
/** @see Wing: POST /api/v1/apps */
|
|
6
6
|
type WingPostAppCreateResponse = WingPayload<WingsAppCreateResponse>;
|
|
7
|
+
/** @see Wing: POST /api/v1/apps/:app_id/deploy */
|
|
8
|
+
type WingPostAppDeployResponse = WingPayload<WingsAppDeployResponse>;
|
|
7
9
|
/** @see Wing: POST /api/v1/apps/:app_id/rebuild */
|
|
8
10
|
type WingPostAppRebuildResponse = WingPayload<WingsAppRebuildResponse>;
|
|
9
11
|
/** @see Wing: GET /api/v1/apps/:app_id/status */
|
|
@@ -33,4 +35,4 @@ type WingPostDatabaseResetResponse = WingPayload<WingsDatabaseResetResponse>;
|
|
|
33
35
|
/** @see Wing: POST /api/v1/apps/:app_id/snapshots/:snapshot_id/restore */
|
|
34
36
|
type WingPostSnapshotRestoreResponse = WingPayload<WingsSnapshotRestoreResponse>;
|
|
35
37
|
|
|
36
|
-
export type { WingGetAppDownloadResponse, WingGetAppLogsResponse, WingGetAppStatusResponse, WingGetDatabaseCertificateResponse, WingGetDatabaseStatusResponse, WingPostAppAllStatusResponse, WingPostAppCreateResponse, WingPostAppFileUploadResponse, WingPostAppRebuildResponse, WingPostDatabaseAllStatusResponse, WingPostDatabaseCreateResponse, WingPostDatabaseRebuildResponse, WingPostDatabaseResetCertificateResponse, WingPostDatabaseResetResponse, WingPostSnapshotRestoreResponse };
|
|
38
|
+
export type { WingGetAppDownloadResponse, WingGetAppLogsResponse, WingGetAppStatusResponse, WingGetDatabaseCertificateResponse, WingGetDatabaseStatusResponse, WingPostAppAllStatusResponse, WingPostAppCreateResponse, WingPostAppDeployResponse, WingPostAppFileUploadResponse, WingPostAppRebuildResponse, WingPostDatabaseAllStatusResponse, WingPostDatabaseCreateResponse, WingPostDatabaseRebuildResponse, WingPostDatabaseResetCertificateResponse, WingPostDatabaseResetResponse, WingPostSnapshotRestoreResponse };
|
package/rest/v1/wing.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["wing.ts"],"sourcesContent":["import type { WingPayload, WingsAppCreateResponse, WingsAppRebuildResponse, WingsContainerMetric, WingsDatabaseCertificate, WingsDatabaseCreateResponse, WingsDatabaseRebuildResponse, WingsDatabaseResetResponse, WingsFileUploadResponse, WingsSnapshotRestoreResponse } from \"../../v1\";\n\n/** @see Wing: POST /api/v1/apps */\nexport type WingPostAppCreateResponse = WingPayload<WingsAppCreateResponse>;\n\n/** @see Wing: POST /api/v1/apps/:app_id/rebuild */\nexport type WingPostAppRebuildResponse = WingPayload<WingsAppRebuildResponse>;\n\n/** @see Wing: GET /api/v1/apps/:app_id/status */\nexport type WingGetAppStatusResponse = WingPayload<WingsContainerMetric>;\n\n/** @see Wing: POST /api/v1/apps/status */\nexport type WingPostAppAllStatusResponse = WingPayload<WingsContainerMetric[]>;\n\n/** @see Wing: GET /api/v1/apps/:app_id/logs */\nexport type WingGetAppLogsResponse = WingPayload<string>;\n\n/** @see Wing: GET /api/v1/apps/:app_id/download */\nexport type WingGetAppDownloadResponse = WingPayload<string>;\n\n/** @see Wing: POST /api/v1/apps/:app_id/files/upload */\nexport type WingPostAppFileUploadResponse = WingPayload<WingsFileUploadResponse>;\n\n/** @see Wing: POST /api/v1/databases */\nexport type WingPostDatabaseCreateResponse = WingPayload<WingsDatabaseCreateResponse>;\n\n/** @see Wing: POST /api/v1/databases/:db_id/rebuild */\nexport type WingPostDatabaseRebuildResponse = WingPayload<WingsDatabaseRebuildResponse>;\n\n/** @see Wing: GET /api/v1/databases/:db_id/status */\nexport type WingGetDatabaseStatusResponse = WingPayload<WingsContainerMetric>;\n\n/** @see Wing: POST /api/v1/databases/status */\nexport type WingPostDatabaseAllStatusResponse = WingPayload<WingsContainerMetric[]>;\n\n/** @see Wing: GET /api/v1/databases/:db_id/certificate */\nexport type WingGetDatabaseCertificateResponse = WingPayload<WingsDatabaseCertificate>;\n\n/** @see Wing: POST /api/v1/databases/:db_id/certificate/reset */\nexport type WingPostDatabaseResetCertificateResponse = WingPayload<WingsDatabaseCertificate>;\n\n/** @see Wing: POST /api/v1/databases/:db_id/reset */\nexport type WingPostDatabaseResetResponse = WingPayload<WingsDatabaseResetResponse>;\n\n/** @see Wing: POST /api/v1/apps/:app_id/snapshots/:snapshot_id/restore */\nexport type WingPostSnapshotRestoreResponse = WingPayload<WingsSnapshotRestoreResponse>;\n"],"mappings":";;;;;;;;;;;;;;;;AAAA;AAAA;","names":[]}
|
|
1
|
+
{"version":3,"sources":["wing.ts"],"sourcesContent":["import type { WingPayload, WingsAppCreateResponse, WingsAppDeployResponse, WingsAppRebuildResponse, WingsContainerMetric, WingsDatabaseCertificate, WingsDatabaseCreateResponse, WingsDatabaseRebuildResponse, WingsDatabaseResetResponse, WingsFileUploadResponse, WingsSnapshotRestoreResponse } from \"../../v1\";\n\n/** @see Wing: POST /api/v1/apps */\nexport type WingPostAppCreateResponse = WingPayload<WingsAppCreateResponse>;\n\n/** @see Wing: POST /api/v1/apps/:app_id/deploy */\nexport type WingPostAppDeployResponse = WingPayload<WingsAppDeployResponse>;\n\n/** @see Wing: POST /api/v1/apps/:app_id/rebuild */\nexport type WingPostAppRebuildResponse = WingPayload<WingsAppRebuildResponse>;\n\n/** @see Wing: GET /api/v1/apps/:app_id/status */\nexport type WingGetAppStatusResponse = WingPayload<WingsContainerMetric>;\n\n/** @see Wing: POST /api/v1/apps/status */\nexport type WingPostAppAllStatusResponse = WingPayload<WingsContainerMetric[]>;\n\n/** @see Wing: GET /api/v1/apps/:app_id/logs */\nexport type WingGetAppLogsResponse = WingPayload<string>;\n\n/** @see Wing: GET /api/v1/apps/:app_id/download */\nexport type WingGetAppDownloadResponse = WingPayload<string>;\n\n/** @see Wing: POST /api/v1/apps/:app_id/files/upload */\nexport type WingPostAppFileUploadResponse = WingPayload<WingsFileUploadResponse>;\n\n/** @see Wing: POST /api/v1/databases */\nexport type WingPostDatabaseCreateResponse = WingPayload<WingsDatabaseCreateResponse>;\n\n/** @see Wing: POST /api/v1/databases/:db_id/rebuild */\nexport type WingPostDatabaseRebuildResponse = WingPayload<WingsDatabaseRebuildResponse>;\n\n/** @see Wing: GET /api/v1/databases/:db_id/status */\nexport type WingGetDatabaseStatusResponse = WingPayload<WingsContainerMetric>;\n\n/** @see Wing: POST /api/v1/databases/status */\nexport type WingPostDatabaseAllStatusResponse = WingPayload<WingsContainerMetric[]>;\n\n/** @see Wing: GET /api/v1/databases/:db_id/certificate */\nexport type WingGetDatabaseCertificateResponse = WingPayload<WingsDatabaseCertificate>;\n\n/** @see Wing: POST /api/v1/databases/:db_id/certificate/reset */\nexport type WingPostDatabaseResetCertificateResponse = WingPayload<WingsDatabaseCertificate>;\n\n/** @see Wing: POST /api/v1/databases/:db_id/reset */\nexport type WingPostDatabaseResetResponse = WingPayload<WingsDatabaseResetResponse>;\n\n/** @see Wing: POST /api/v1/apps/:app_id/snapshots/:snapshot_id/restore */\nexport type WingPostSnapshotRestoreResponse = WingPayload<WingsSnapshotRestoreResponse>;\n"],"mappings":";;;;;;;;;;;;;;;;AAAA;AAAA;","names":[]}
|
package/v1.d.ts
CHANGED
|
@@ -9,7 +9,7 @@ export { APIRedeemResponse } from './payloads/v1/redeem.js';
|
|
|
9
9
|
export { APIGroupedResourceSnapshots, APIResourceSnapshot, APISnapshotRestoreResponse, ResourceType } from './payloads/v1/snapshot.js';
|
|
10
10
|
export { APIStatus, StatusType } from './payloads/v1/status.js';
|
|
11
11
|
export { APIUser, APIUserApiKey, APIUserConnection, APIUserInfoResponse, APIUserPlan, APIUserPlanMemory, APIUserSession, APIUserWorkspaceInviteKey } from './payloads/v1/user.js';
|
|
12
|
-
export { APIPayloadStatus, WingPayload, WingServiceResult, WingsAppCreateResponse, WingsAppRebuildResponse, WingsContainerMetric, WingsDatabaseCertificate, WingsDatabaseCreateResponse, WingsDatabaseRebuildResponse, WingsDatabaseResetResponse, WingsFileMoveResponse, WingsFileUploadResponse, WingsSnapshotRestoreResponse } from './payloads/v1/wing.js';
|
|
12
|
+
export { APIPayloadStatus, WingPayload, WingServiceResult, WingsAppCreateResponse, WingsAppDeployResponse, WingsAppRebuildResponse, WingsContainerMetric, WingsDatabaseCertificate, WingsDatabaseCreateResponse, WingsDatabaseRebuildResponse, WingsDatabaseResetResponse, WingsFileMoveResponse, WingsFileUploadResponse, WingsSnapshotRestoreResponse } from './payloads/v1/wing.js';
|
|
13
13
|
export { APIWorkspace, APIWorkspaceInfoResponse, APIWorkspaceMember, APIWorkspaceMemberAdd, APIWorkspaceMemberRoleUpdate, WorkspaceMemberRole } from './payloads/v1/workspace.js';
|
|
14
14
|
export { RESTGetAPIActivitiesResponse, RESTGetAPIActivityResponse } from './rest/v1/activity.js';
|
|
15
15
|
export { RESTDeleteAPIApplicationResponse, RESTGetAPIApplicationDeploymentsResponse, RESTGetAPIApplicationDnsRecordsResponse, RESTGetAPIApplicationDownloadResponse, RESTGetAPIApplicationEnvironmentResponse, RESTGetAPIApplicationFileContentResponse, RESTGetAPIApplicationFilesResponse, RESTGetAPIApplicationLogsResponse, RESTGetAPIApplicationMetricsResponse, RESTGetAPIApplicationRealtimeResponse, RESTGetAPIApplicationResponse, RESTGetAPIApplicationRestartResponse, RESTGetAPIApplicationStartResponse, RESTGetAPIApplicationStatusResponse, RESTGetAPIApplicationStatusShortResponse, RESTGetAPIApplicationStopResponse, RESTGetAPIApplicationWebhookUrlResponse, RESTPatchAPIApplicationSubdomainResponse, RESTPostAPIApplicationCreateResponse, RESTPostAPIApplicationCustomDomainResponse, RESTPostAPIApplicationRestartResponse, RESTPostAPIApplicationStartResponse, RESTPostAPIApplicationStopResponse, RESTPostAPIApplicationUpdateConfigResponse } from './rest/v1/application.js';
|
|
@@ -21,6 +21,6 @@ export { RESTPostAPIRedeemResponse } from './rest/v1/redeem.js';
|
|
|
21
21
|
export { RESTGetAPIGroupedSnapshotsResponse, RESTGetAPISnapshotDownloadResponse, RESTGetAPISnapshotResponse, RESTGetAPISnapshotsResponse, RESTPostAPISnapshotCreateResponse, RESTPostAPISnapshotRestoreResponse } from './rest/v1/snapshot.js';
|
|
22
22
|
export { RESTGetAPIStatusResponse } from './rest/v1/status.js';
|
|
23
23
|
export { RESTGetAPIUserInfoResponse, RESTGetAPIUserSessionsResponse, RESTPostAPIUserDowngradeResponse, RESTPostAPIUserGenerateApiKeyResponse } from './rest/v1/user.js';
|
|
24
|
-
export { WingGetAppDownloadResponse, WingGetAppLogsResponse, WingGetAppStatusResponse, WingGetDatabaseCertificateResponse, WingGetDatabaseStatusResponse, WingPostAppAllStatusResponse, WingPostAppCreateResponse, WingPostAppFileUploadResponse, WingPostAppRebuildResponse, WingPostDatabaseAllStatusResponse, WingPostDatabaseCreateResponse, WingPostDatabaseRebuildResponse, WingPostDatabaseResetCertificateResponse, WingPostDatabaseResetResponse, WingPostSnapshotRestoreResponse } from './rest/v1/wing.js';
|
|
24
|
+
export { WingGetAppDownloadResponse, WingGetAppLogsResponse, WingGetAppStatusResponse, WingGetDatabaseCertificateResponse, WingGetDatabaseStatusResponse, WingPostAppAllStatusResponse, WingPostAppCreateResponse, WingPostAppDeployResponse, WingPostAppFileUploadResponse, WingPostAppRebuildResponse, WingPostDatabaseAllStatusResponse, WingPostDatabaseCreateResponse, WingPostDatabaseRebuildResponse, WingPostDatabaseResetCertificateResponse, WingPostDatabaseResetResponse, WingPostSnapshotRestoreResponse } from './rest/v1/wing.js';
|
|
25
25
|
export { RESTDeleteAPIWorkspaceResponse, RESTGetAPIWorkspaceInfoResponse, RESTGetAPIWorkspaceResponse, RESTGetAPIWorkspacesResponse, RESTPostAPIWorkspaceCreateResponse, RESTPostAPIWorkspaceMemberAddResponse, RESTPutAPIWorkspaceMemberRoleResponse, RESTPutAPIWorkspaceUpdateResponse } from './rest/v1/workspace.js';
|
|
26
26
|
export { Brand, Prettify } from './utils.js';
|