@umbraco-deploy/backoffice 18.0.0 → 18.1.0-rc1
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/types/compare/conditions/compare.condition.d.ts +2 -11
- package/types/compare/conditions/types.d.ts +8 -0
- package/types/compare/modal/compare-modal.element.d.ts +2 -0
- package/types/core/components/error/error.element.d.ts +2 -0
- package/types/core/components/no-nodes.element.d.ts +2 -0
- package/types/core/components/work-complete/work-complete.element.d.ts +3 -0
- package/types/core/conditions/base.condition.d.ts +3 -8
- package/types/core/conditions/entity-type.condition.d.ts +2 -13
- package/types/core/conditions/index.d.ts +1 -0
- package/types/core/conditions/types.d.ts +13 -0
- package/types/core/context/deploy.context.d.ts +1 -1
- package/types/core/context/signalr.context.d.ts +1 -0
- package/types/core/lang/en.d.ts +3 -3
- package/types/core/modal/error-modal.element.d.ts +1 -0
- package/types/core/modal/no-nodes-modal.element.d.ts +1 -0
- package/types/core/modal/progress-modal.element.d.ts +3 -0
- package/types/core/util.d.ts +5 -0
- package/types/environments/components/content-flow/content-flow.element.d.ts +1 -0
- package/types/export/actions/manifests.d.ts +8 -0
- package/types/export/conditions/tree-export.condition.d.ts +2 -11
- package/types/export/conditions/types.d.ts +8 -0
- package/types/export/manifests.d.ts +8 -0
- package/types/exports.d.ts +4 -7
- package/types/generated/index.d.ts +1 -1
- package/types/generated/sdk.gen.d.ts +10 -1
- package/types/generated/types.gen.d.ts +168 -0
- package/types/overview/views/export/export-workspace-view.element.d.ts +2 -0
- package/types/overview/views/import/import-workspace-view.element.d.ts +2 -0
- package/types/overview/views/transfer/transfer-workspace-view.element.d.ts +3 -0
- package/types/restore/conditions/environment-restore.condition.d.ts +2 -11
- package/types/restore/conditions/partial-restore.condition.d.ts +2 -11
- package/types/restore/conditions/tree-restore.condition.d.ts +2 -11
- package/types/restore/conditions/types.d.ts +12 -0
- package/types/restore/modal/partial-restore-modal.element.d.ts +1 -0
- package/types/restore/modal/restore-modal.element.d.ts +2 -1
- package/types/settings/entities.d.ts +1 -1
- package/types/settings/management.repository.d.ts +1 -3
- package/types/settings/management.server.data.d.ts +0 -6
- package/types/settings/operation.repository.d.ts +11 -0
- package/types/settings/workspaces/configuration/views/configuration-overview-view.element.d.ts +1 -0
- package/types/settings/workspaces/schema/views/schema-overview-view.element.d.ts +1 -0
- package/types/settings/workspaces/status/views/deploy-operation.element.d.ts +0 -1
- package/types/settings/workspaces/status/views/deploy-status.element.d.ts +1 -0
- package/types/settings/workspaces/status/views/download-artifacts.element.d.ts +1 -0
- package/types/transfer/conditions/queue.condition.d.ts +2 -11
- package/types/transfer/conditions/transfer-now.condition.d.ts +2 -11
- package/types/transfer/conditions/types.d.ts +10 -0
package/package.json
CHANGED
|
@@ -1,20 +1,11 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { DeployCompareConditionConfig } from "./types.js";
|
|
2
2
|
import { DeployConditionBase, type DeployExtensionCondition } from "../../core/index.ts";
|
|
3
|
-
import type { UmbConditionConfigBase, UmbConditionControllerArguments } from "@umbraco-cms/backoffice/extension-api";
|
|
4
|
-
import type { UmbControllerHost } from "@umbraco-cms/backoffice/controller-api";
|
|
5
|
-
export type DeployCompareConditionConfig = UmbConditionConfigBase<typeof DEPLOY_COMPARE_CONDITION_ALIAS>;
|
|
6
3
|
/**
|
|
7
4
|
* Permitted is true when one of allowDeployOptions and allowRestore options is true.
|
|
8
5
|
* The user must also have permission to queue or partial restore,
|
|
9
6
|
* this is checked in the manifest condition based on the user permissions.
|
|
10
7
|
*/
|
|
11
8
|
export declare class DeployCompareCondition extends DeployConditionBase<DeployCompareConditionConfig> implements DeployExtensionCondition {
|
|
12
|
-
|
|
13
|
-
evaluate(): Promise<void>;
|
|
9
|
+
evaluate(): void;
|
|
14
10
|
}
|
|
15
11
|
export default DeployCompareCondition;
|
|
16
|
-
declare global {
|
|
17
|
-
interface UmbExtensionConditionConfigMap {
|
|
18
|
-
DeployCompareConditionConfig: DeployCompareConditionConfig;
|
|
19
|
-
}
|
|
20
|
-
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { DEPLOY_COMPARE_CONDITION_ALIAS } from "./constants.js";
|
|
2
|
+
import type { UmbConditionConfigBase } from "@umbraco-cms/backoffice/extension-api";
|
|
3
|
+
export type DeployCompareConditionConfig = UmbConditionConfigBase<typeof DEPLOY_COMPARE_CONDITION_ALIAS>;
|
|
4
|
+
declare global {
|
|
5
|
+
interface UmbExtensionConditionConfigMap {
|
|
6
|
+
DeployCompareConditionConfig: DeployCompareConditionConfig;
|
|
7
|
+
}
|
|
8
|
+
}
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import type { DeployCompareModalData } from "./compare-modal.token.js";
|
|
2
2
|
import { UmbModalBaseElement } from "@umbraco-cms/backoffice/modal";
|
|
3
|
+
import "../components/compare-table.element.js";
|
|
4
|
+
import "../../environments/components/environment-select/environment-select.element.js";
|
|
3
5
|
declare const elementName = "deploy-compare-modal";
|
|
4
6
|
export declare class DeployCompareModalElement extends UmbModalBaseElement<DeployCompareModalData> {
|
|
5
7
|
#private;
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import type { DeployProgressModel } from "../../entities.js";
|
|
2
2
|
import { LitElement } from "@umbraco-cms/backoffice/external/lit";
|
|
3
|
+
import "./error-types/index.js";
|
|
4
|
+
import "../error-detail/error-detail.element.js";
|
|
3
5
|
declare const elementName = "deploy-error";
|
|
4
6
|
declare const DeployErrorElement_base: import("@umbraco-cms/backoffice/extension-api").HTMLElementConstructor<import("@umbraco-cms/backoffice/element-api").UmbElement> & typeof LitElement;
|
|
5
7
|
export declare class DeployErrorElement extends DeployErrorElement_base {
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import type { DeployProgressModel } from "../entities.js";
|
|
2
2
|
import { LitElement } from "@umbraco-cms/backoffice/external/lit";
|
|
3
3
|
import type { ClientConfigurationInfoModel } from "../../generated/index.ts";
|
|
4
|
+
import "./error/error.element.js";
|
|
5
|
+
import "./work-progress/work-progress.element.js";
|
|
4
6
|
declare const elementName = "deploy-no-nodes";
|
|
5
7
|
declare const DeployNoNodesElement_base: import("@umbraco-cms/backoffice/extension-api").HTMLElementConstructor<import("@umbraco-cms/backoffice/element-api").UmbElement> & typeof LitElement;
|
|
6
8
|
export declare class DeployNoNodesElement extends DeployNoNodesElement_base {
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import type { MismatchDetailsModel } from "../../entities.js";
|
|
2
2
|
import { UmbLitElement } from "@umbraco-cms/backoffice/lit-element";
|
|
3
|
+
import "../error-detail/error-detail.element.js";
|
|
3
4
|
declare const elementName = "deploy-work-complete";
|
|
4
5
|
export declare class DeployWorkCompleteElement extends UmbLitElement {
|
|
5
6
|
#private;
|
|
@@ -7,6 +8,8 @@ export declare class DeployWorkCompleteElement extends UmbLitElement {
|
|
|
7
8
|
description?: string;
|
|
8
9
|
timestamp?: string;
|
|
9
10
|
mismatches?: Array<MismatchDetailsModel>;
|
|
11
|
+
trace?: string;
|
|
12
|
+
private _showDetails;
|
|
10
13
|
render(): import("lit-html").TemplateResult<1>;
|
|
11
14
|
static styles: import("lit").CSSResult[];
|
|
12
15
|
}
|
|
@@ -2,21 +2,16 @@ import type { DeployRegisteredEntity } from "../entities.js";
|
|
|
2
2
|
import type { UmbConditionConfigBase, UmbConditionControllerArguments, UmbExtensionCondition } from "@umbraco-cms/backoffice/extension-api";
|
|
3
3
|
import { UmbConditionBase } from "@umbraco-cms/backoffice/extension-registry";
|
|
4
4
|
import type { UmbControllerHost } from "@umbraco-cms/backoffice/controller-api";
|
|
5
|
-
import type { UmbEntityUnique } from "@umbraco-cms/backoffice/entity";
|
|
6
|
-
import type { ClientConfigurationModel } from "../../generated/index.ts";
|
|
7
5
|
export interface DeployExtensionCondition extends UmbExtensionCondition {
|
|
8
|
-
evaluate():
|
|
6
|
+
evaluate(): void;
|
|
9
7
|
}
|
|
10
|
-
export declare class DeployConditionBase<ConditionConfigType extends UmbConditionConfigBase> extends UmbConditionBase<ConditionConfigType> implements UmbExtensionCondition {
|
|
8
|
+
export declare abstract class DeployConditionBase<ConditionConfigType extends UmbConditionConfigBase> extends UmbConditionBase<ConditionConfigType> implements UmbExtensionCondition {
|
|
11
9
|
#private;
|
|
12
|
-
clientConfig?: ClientConfigurationModel;
|
|
13
|
-
isRoot: boolean;
|
|
14
|
-
unique: UmbEntityUnique | undefined;
|
|
15
10
|
entity?: DeployRegisteredEntity;
|
|
16
11
|
allowDeployOptions: boolean;
|
|
17
12
|
allowRestoreOptions: boolean;
|
|
13
|
+
abstract evaluate(): void;
|
|
18
14
|
constructor(host: UmbControllerHost, args: UmbConditionControllerArguments<ConditionConfigType>);
|
|
19
15
|
get entityType(): string;
|
|
20
16
|
set entityType(value: string | undefined);
|
|
21
|
-
init(): Promise<void>;
|
|
22
17
|
}
|
|
@@ -1,13 +1,7 @@
|
|
|
1
|
-
import type {
|
|
2
|
-
import type {
|
|
1
|
+
import type { DeployEntityTypeConditionConfig } from "./types.js";
|
|
2
|
+
import type { UmbConditionControllerArguments, UmbExtensionCondition } from "@umbraco-cms/backoffice/extension-api";
|
|
3
3
|
import { UmbConditionBase } from "@umbraco-cms/backoffice/extension-registry";
|
|
4
4
|
import type { UmbControllerHost } from "@umbraco-cms/backoffice/controller-api";
|
|
5
|
-
export type DeployEntityTypeConditionConfig = UmbConditionConfigBase<typeof DEPLOY_ENTITYTYPE_CONDITION_ALIAS> & {
|
|
6
|
-
forEntityTypes?: {
|
|
7
|
-
[key: string]: Array<"default" | UmbExtensionConditionConfigMap[keyof UmbExtensionConditionConfigMap]>;
|
|
8
|
-
};
|
|
9
|
-
default: Array<UmbExtensionConditionConfigMap[keyof UmbExtensionConditionConfigMap]>;
|
|
10
|
-
};
|
|
11
5
|
export declare class DeployEntityTypeCondition extends UmbConditionBase<DeployEntityTypeConditionConfig> implements UmbExtensionCondition {
|
|
12
6
|
#private;
|
|
13
7
|
constructor(host: UmbControllerHost, args: UmbConditionControllerArguments<DeployEntityTypeConditionConfig>);
|
|
@@ -15,8 +9,3 @@ export declare class DeployEntityTypeCondition extends UmbConditionBase<DeployEn
|
|
|
15
9
|
destroy(): void;
|
|
16
10
|
}
|
|
17
11
|
export default DeployEntityTypeCondition;
|
|
18
|
-
declare global {
|
|
19
|
-
interface UmbExtensionConditionConfigMap {
|
|
20
|
-
DeployEntityTypeConditionConfig: DeployEntityTypeConditionConfig;
|
|
21
|
-
}
|
|
22
|
-
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { DEPLOY_ENTITYTYPE_CONDITION_ALIAS } from "./constants.js";
|
|
2
|
+
import type { UmbConditionConfigBase } from "@umbraco-cms/backoffice/extension-api";
|
|
3
|
+
export type DeployEntityTypeConditionConfig = UmbConditionConfigBase<typeof DEPLOY_ENTITYTYPE_CONDITION_ALIAS> & {
|
|
4
|
+
forEntityTypes?: {
|
|
5
|
+
[key: string]: Array<"default" | UmbExtensionConditionConfigMap[keyof UmbExtensionConditionConfigMap]>;
|
|
6
|
+
};
|
|
7
|
+
default: Array<UmbExtensionConditionConfigMap[keyof UmbExtensionConditionConfigMap]>;
|
|
8
|
+
};
|
|
9
|
+
declare global {
|
|
10
|
+
interface UmbExtensionConditionConfigMap {
|
|
11
|
+
DeployEntityTypeConditionConfig: DeployEntityTypeConditionConfig;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
@@ -13,6 +13,6 @@ export declare class DeployContext extends UmbControllerBase {
|
|
|
13
13
|
environments(): Array<DeployEnvironmentInfoModel>;
|
|
14
14
|
restoreEnvironments(): import("../../generated/index.ts").WorkspaceInfoModel[];
|
|
15
15
|
getEnvironment(unique: string | UmbEntityUnique): import("../../generated/index.ts").WorkspaceInfoModel | undefined;
|
|
16
|
-
getRegisteredEntity(value: string): DeployRegisteredEntity | undefined;
|
|
16
|
+
getRegisteredEntity(value: string | null | undefined): DeployRegisteredEntity | undefined;
|
|
17
17
|
setActiveView(viewAlias: string): void;
|
|
18
18
|
}
|
|
@@ -8,6 +8,7 @@ export declare class DeploySignalRContext extends UmbControllerBase {
|
|
|
8
8
|
readonly restoreSessionUpdate: import("rxjs").Observable<SessionUpdatedModel | null>;
|
|
9
9
|
readonly diskReadSessionUpdate: import("rxjs").Observable<SessionUpdatedModel | null>;
|
|
10
10
|
sessionId?: string;
|
|
11
|
+
getSessionUpdates(sessionId?: string): Array<SessionUpdatedModel>;
|
|
11
12
|
hostConnected(): Promise<void>;
|
|
12
13
|
hostDisconnected(): void;
|
|
13
14
|
getDeployClientId(): string | null;
|
package/types/core/lang/en.d.ts
CHANGED
|
@@ -253,6 +253,7 @@ declare const _default: {
|
|
|
253
253
|
includingDescendants: string;
|
|
254
254
|
withoutDescendants: string;
|
|
255
255
|
alreadyQueued: string;
|
|
256
|
+
viewDetails: string;
|
|
256
257
|
};
|
|
257
258
|
deploy_dashboard_environments: {
|
|
258
259
|
add: string;
|
|
@@ -274,9 +275,7 @@ declare const _default: {
|
|
|
274
275
|
removeFromQueue: string;
|
|
275
276
|
setupProject: string;
|
|
276
277
|
transferTo: string;
|
|
277
|
-
trialExpiresIn: string;
|
|
278
278
|
troubleshooting: string;
|
|
279
|
-
upgradeNow: (expired: boolean) => "Trial expired - upgrade now" | "Upgrade now";
|
|
280
279
|
viewWebsite: string;
|
|
281
280
|
workLocally: string;
|
|
282
281
|
};
|
|
@@ -304,6 +303,8 @@ declare const _default: {
|
|
|
304
303
|
exportSchemaDescription: string;
|
|
305
304
|
label: string;
|
|
306
305
|
numberOfArchiveFiles: string;
|
|
306
|
+
operationCompleteDescription: string;
|
|
307
|
+
operationProgressDescription: string;
|
|
307
308
|
operationTime: string;
|
|
308
309
|
readMore: string;
|
|
309
310
|
refreshStatus: string;
|
|
@@ -324,7 +325,6 @@ declare const _default: {
|
|
|
324
325
|
verifySchemaConfirmation: string;
|
|
325
326
|
verifySchemaDescription: string;
|
|
326
327
|
version: string;
|
|
327
|
-
viewDetails: string;
|
|
328
328
|
};
|
|
329
329
|
};
|
|
330
330
|
export default _default;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import type { DeployQueueErrorModalData } from "./error-modal.token.js";
|
|
2
2
|
import { UmbModalBaseElement } from "@umbraco-cms/backoffice/modal";
|
|
3
|
+
import "../components/error/error.element.js";
|
|
3
4
|
declare const elementName = "deploy-queue-error-modal";
|
|
4
5
|
export declare class DeployQueueErrorModalElement extends UmbModalBaseElement<DeployQueueErrorModalData> {
|
|
5
6
|
#private;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { UmbModalBaseElement } from "@umbraco-cms/backoffice/modal";
|
|
2
|
+
import "../components/no-nodes.element.js";
|
|
2
3
|
declare const elementName = "deploy-nonodes-modal";
|
|
3
4
|
export declare class DeployNoNodesModalElement extends UmbModalBaseElement {
|
|
4
5
|
render(): import("lit-html").TemplateResult<1>;
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import type { DeployProgressModalData } from "./progress-modal.token.js";
|
|
2
2
|
import { UmbModalBaseElement } from "@umbraco-cms/backoffice/modal";
|
|
3
|
+
import "../components/work-progress/work-progress.element.js";
|
|
4
|
+
import "../components/work-complete/work-complete.element.js";
|
|
5
|
+
import "../components/error/error.element.js";
|
|
3
6
|
declare const elementName = "deploy-progress-modal";
|
|
4
7
|
export declare class DeployProgressModalElement extends UmbModalBaseElement<DeployProgressModalData> {
|
|
5
8
|
#private;
|
package/types/core/util.d.ts
CHANGED
|
@@ -10,6 +10,11 @@ export declare function appendLog(log: string, args: {
|
|
|
10
10
|
comment?: string;
|
|
11
11
|
log: string;
|
|
12
12
|
}): string;
|
|
13
|
+
/**
|
|
14
|
+
* The work item log and progress comments end up in markup that is rendered with unsafeHTML, so
|
|
15
|
+
* anything originating from content (entity names, exception messages) has to be encoded first.
|
|
16
|
+
*/
|
|
17
|
+
export declare function escapeHtml(value: string): string;
|
|
13
18
|
export declare function filterLog(log: string): string;
|
|
14
19
|
/**
|
|
15
20
|
* Parse the entity type from the UDI.
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import type { DeployEnvironmentInfoModel } from "../../../core/index.ts";
|
|
2
2
|
import { UmbLitElement } from "@umbraco-cms/backoffice/lit-element";
|
|
3
|
+
import "../environment/environment.element.js";
|
|
3
4
|
declare const elementName = "deploy-content-flow";
|
|
4
5
|
export declare class DeployContentFlowElement extends UmbLitElement {
|
|
5
6
|
#private;
|
|
@@ -21,6 +21,14 @@ export declare const manifests: ({
|
|
|
21
21
|
alias: string;
|
|
22
22
|
allOf: string[];
|
|
23
23
|
}[];
|
|
24
|
+
element: {
|
|
25
|
+
alias: string;
|
|
26
|
+
allOf: string[];
|
|
27
|
+
}[];
|
|
28
|
+
"element-folder": {
|
|
29
|
+
alias: string;
|
|
30
|
+
allOf: string[];
|
|
31
|
+
}[];
|
|
24
32
|
};
|
|
25
33
|
default: {
|
|
26
34
|
alias: string;
|
|
@@ -1,18 +1,9 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { DeployTreeExportConditionConfig } from "./types.js";
|
|
2
2
|
import { DeployConditionBase, type DeployExtensionCondition } from "../../core/index.ts";
|
|
3
|
-
import type { UmbConditionConfigBase, UmbConditionControllerArguments } from "@umbraco-cms/backoffice/extension-api";
|
|
4
|
-
import type { UmbControllerHost } from "@umbraco-cms/backoffice/controller-api";
|
|
5
|
-
export type DeployTreeExportConditionConfig = UmbConditionConfigBase<typeof DEPLOY_TREE_EXPORT_CONDITION_ALIAS>;
|
|
6
3
|
/**
|
|
7
4
|
* Permitted when the entity supports import/export actions.
|
|
8
5
|
*/
|
|
9
6
|
export declare class DeployTreeExportCondition extends DeployConditionBase<DeployTreeExportConditionConfig> implements DeployExtensionCondition {
|
|
10
|
-
|
|
11
|
-
evaluate(): Promise<void>;
|
|
7
|
+
evaluate(): void;
|
|
12
8
|
}
|
|
13
9
|
export default DeployTreeExportCondition;
|
|
14
|
-
declare global {
|
|
15
|
-
interface UmbExtensionConditionConfigMap {
|
|
16
|
-
DeployTreeExportConditionConfig: DeployTreeExportConditionConfig;
|
|
17
|
-
}
|
|
18
|
-
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { DEPLOY_TREE_EXPORT_CONDITION_ALIAS } from "./constants.js";
|
|
2
|
+
import type { UmbConditionConfigBase } from "@umbraco-cms/backoffice/extension-api";
|
|
3
|
+
export type DeployTreeExportConditionConfig = UmbConditionConfigBase<typeof DEPLOY_TREE_EXPORT_CONDITION_ALIAS>;
|
|
4
|
+
declare global {
|
|
5
|
+
interface UmbExtensionConditionConfigMap {
|
|
6
|
+
DeployTreeExportConditionConfig: DeployTreeExportConditionConfig;
|
|
7
|
+
}
|
|
8
|
+
}
|
|
@@ -21,6 +21,14 @@ export declare const manifests: ({
|
|
|
21
21
|
alias: string;
|
|
22
22
|
allOf: string[];
|
|
23
23
|
}[];
|
|
24
|
+
element: {
|
|
25
|
+
alias: string;
|
|
26
|
+
allOf: string[];
|
|
27
|
+
}[];
|
|
28
|
+
"element-folder": {
|
|
29
|
+
alias: string;
|
|
30
|
+
allOf: string[];
|
|
31
|
+
}[];
|
|
24
32
|
};
|
|
25
33
|
default: {
|
|
26
34
|
alias: string;
|
package/types/exports.d.ts
CHANGED
|
@@ -3,16 +3,13 @@ export type { ManifestDeployEntityTypeMapping } from "./core/entity-actions/enti
|
|
|
3
3
|
export { DeployEntityActionBase } from "./core/entity-actions/base.action.js";
|
|
4
4
|
export { DEPLOY_ENTITYTYPE_CONDITION_ALIAS, type DeployEntityTypeConditionConfig, } from "./core/conditions/index.js";
|
|
5
5
|
export { DEPLOY_COMPARE_CONDITION_ALIAS } from "./compare/conditions/constants.js";
|
|
6
|
-
export type { DeployCompareConditionConfig } from "./compare/conditions/
|
|
6
|
+
export type { DeployCompareConditionConfig } from "./compare/conditions/types.js";
|
|
7
7
|
export { DEPLOY_TREE_EXPORT_CONDITION_ALIAS } from "./export/conditions/constants.js";
|
|
8
|
-
export type { DeployTreeExportConditionConfig } from "./export/conditions/
|
|
8
|
+
export type { DeployTreeExportConditionConfig } from "./export/conditions/types.js";
|
|
9
9
|
export { DEPLOY_QUEUE_CONDITION_ALIAS, DEPLOY_TRANSFER_NOW_CONDITION_ALIAS, } from "./transfer/conditions/constants.js";
|
|
10
|
-
export type { DeployQueueConditionConfig } from "./transfer/conditions/
|
|
11
|
-
export type { DeployTransferNowConditionConfig } from "./transfer/conditions/transfer-now.condition.js";
|
|
10
|
+
export type { DeployQueueConditionConfig, DeployTransferNowConditionConfig, } from "./transfer/conditions/types.js";
|
|
12
11
|
export { DEPLOY_ENVIRONMENT_RESTORE_CONDITION_ALIAS, DEPLOY_TREE_RESTORE_CONDITION_ALIAS, DEPLOY_PARTIAL_RESTORE_CONDITION_ALIAS, } from "./restore/conditions/constants.js";
|
|
13
|
-
export type { DeployEnvironmentRestoreConditionConfig } from "./restore/conditions/
|
|
14
|
-
export type { DeployTreeRestoreConditionConfig } from "./restore/conditions/tree-restore.condition.js";
|
|
15
|
-
export type { DeployPartialRestoreConditionConfig } from "./restore/conditions/partial-restore.condition.js";
|
|
12
|
+
export type { DeployEnvironmentRestoreConditionConfig, DeployTreeRestoreConditionConfig, DeployPartialRestoreConditionConfig, } from "./restore/conditions/types.js";
|
|
16
13
|
export { DEPLOY_CONTEXT } from "./core/context/deploy.context-token.js";
|
|
17
14
|
export type { DeployContext } from "./core/context/deploy.context.js";
|
|
18
15
|
export type { DeployRegisteredEntity } from "./core/entities.js";
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
export { client, type CreateClientConfig } from './client.gen';
|
|
2
2
|
export { ConfigurationDetailService, ContentService, DeployArtifactsService, DeployService, EntityService, ExportService, ImportService, ManagementDashboardService, NoNodesService, OperationsService, type Options, QueueService, RestoreService, SchemaService, StatusService, TreeService, UdiService } from './sdk.gen';
|
|
3
|
-
export { type AddToQueueModel, type ClientConfigurationInfoModel, type ClientConfigurationInfoModelBase, type ClientConfigurationInfoModelUmbracoCloudClientConfigurationInfoModel, type ClientConfigurationModel, type ClientOptions, type ConfigurationModel, type ContentComparisonModel, type ContentSummaryContainerModel, type ContentSummaryModel, type ContentSummaryPropertyModel, type DashboardModel, type DeleteExportModel, type DeleteSchemaFileData, type DeleteSchemaFileErrors, type DeleteSchemaFileResponse, type DeleteSchemaFileResponses, type DeleteSchemaItemData, type DeleteSchemaItemError, type DeleteSchemaItemErrors, type DeleteSchemaItemResponse, type DeleteSchemaItemResponses, type DeployEntityTypeCategoriesModel, type DeployItemModel, type DeployModel, type DeployRegisteredEntityTypeDetailOptionsModel, type EntityTagHeaderValue, type ExportModel, type FileStreamResult, type GetArtifactsData, type GetArtifactsErrors, type GetArtifactsResponse, type GetArtifactsResponses, type GetComparisonModel, type GetConfigurationClientData, type GetConfigurationClientErrors, type GetConfigurationClientResponse, type GetConfigurationClientResponses, type GetConfigurationDetailsData, type GetConfigurationDetailsErrors, type GetConfigurationDetailsResponse, type GetConfigurationDetailsResponses, type GetDashboardData, type GetDashboardErrors, type GetDashboardResponse, type GetDashboardResponses, type GetEntityNameData, type GetEntityNameErrors, type GetEntityNameResponse, type GetEntityNameResponses, type GetExportData, type GetExportErrors, type GetExportResponse, type GetExportResponses, type GetNoNodesCheckMarkersData, type GetNoNodesCheckMarkersErrors, type GetNoNodesCheckMarkersResponse, type GetNoNodesCheckMarkersResponses, type GetOperationDetailFailedData, type GetOperationDetailFailedErrors, type GetOperationDetailFailedResponse, type GetOperationDetailFailedResponses, type GetQueueData, type GetQueueErrors, type GetQueueResponse, type GetQueueResponses, type GetSchemaData, type GetSchemaErrors, type GetSchemaKeyData, type GetSchemaKeyErrors, type GetSchemaKeyResponse, type GetSchemaKeyResponses, type GetSchemaResponse, type GetSchemaResponses, type GetStatusBusyData, type GetStatusBusyErrors, type GetStatusBusyResponses, type GetStatusLicenseData, type GetStatusLicenseErrors, type GetStatusLicenseResponse, type GetStatusLicenseResponses, type GetTreeExternalContentData, type GetTreeExternalContentErrors, type GetTreeExternalContentResponse, type GetTreeExternalContentResponses, type GetTreeExternalEntityData, type GetTreeExternalEntityErrors, type GetTreeExternalEntityResponse, type GetTreeExternalEntityResponses, type GetTreeExternalMediaData, type GetTreeExternalMediaErrors, type GetTreeExternalMediaResponse, type GetTreeExternalMediaResponses, type GetUdiRangeModel, type HeartbeatModel, type ImportModel, type ImportOnStartupConfigurationModel, type InstantDeployModel, type LicenseStatusResponseModel, type ListExportModel, type MarkersExistDetailModel, type PagedViewModelOfRemoteEntityTreeItemResponseModel, type PartialRestoreModel, type PartialRestoreNodeModel, type PermissionToExportDetailModel, type PermissionToTransferDetailModel, type PhysicalFileResult, type PostContentData, type PostContentErrors, type PostContentResponse, type PostContentResponses, type PostDeployData, type PostDeployErrors, type PostDeployInstantData, type PostDeployInstantErrors, type PostDeployInstantResponse, type PostDeployInstantResponses, type PostDeployResponse, type PostDeployResponses, type PostEntityExportData, type PostEntityExportErrors, type PostEntityExportResponse, type PostEntityExportResponses, type PostEntityTransferData, type PostEntityTransferErrors, type PostEntityTransferResponse, type PostEntityTransferResponses, type PostEntityTreeDetailData, type PostEntityTreeDetailErrors, type PostEntityTreeDetailResponse, type PostEntityTreeDetailResponses, type PostExportData, type PostExportDeleteData, type PostExportDeleteErrors, type PostExportDeleteResponses, type PostExportErrors, type PostExportListData, type PostExportListErrors, type PostExportListResponse, type PostExportListResponses, type PostExportQueueData, type PostExportQueueErrors, type PostExportQueueResponse, type PostExportQueueResponses, type PostExportResponse, type PostExportResponses, type PostExportTreeData, type PostExportTreeErrors, type PostExportTreeResponse, type PostExportTreeResponses, type PostImportData, type PostImportErrors, type PostImportResponse, type PostImportResponses, type PostNoNodesCreateDiskReadTriggerData, type PostNoNodesCreateDiskReadTriggerErrors, type PostNoNodesCreateDiskReadTriggerResponses, type PostOperationData, type PostOperationError, type PostOperationErrors, type PostOperationResponse, type PostOperationResponses, type PostQueueAddData, type PostQueueAddErrors, type PostQueueAddResponse, type PostQueueAddResponses, type PostQueueClearData, type PostQueueClearErrors, type PostQueueClearResponses, type PostQueueRemoveData, type PostQueueRemoveErrors, type PostQueueRemoveResponses, type PostRestoreData, type PostRestoreErrors, type PostRestoreNoNodesData, type PostRestoreNoNodesErrors, type PostRestoreNoNodesResponse, type PostRestoreNoNodesResponses, type PostRestorePartialData, type PostRestorePartialErrors, type PostRestorePartialResponse, type PostRestorePartialResponses, type PostRestoreResponse, type PostRestoreResponses, type PostRestoreTreeData, type PostRestoreTreeErrors, type PostRestoreTreeResponse, type PostRestoreTreeResponses, type PostSchemaFileData, type PostSchemaFileError, type PostSchemaFileErrors, type PostSchemaFileResponse, type PostSchemaFileResponses, type PostSchemaItemData, type PostSchemaItemError, type PostSchemaItemErrors, type PostSchemaItemResponse, type PostSchemaItemResponses, type PostStatusStatusData, type PostStatusStatusErrors, type PostStatusStatusResponse, type PostStatusStatusResponses, type PostUdiData, type PostUdiErrors, type PostUdiResponse, type PostUdiResponses, type QueueExportModel, type RemoteEntityTreeItemResponseModel, type RemoteTreeDetailModel, type RemoveFromQueueModel, type RestoreModel, type SchemaComparisonDetailModel, type SchemaComparisonForEntityModel, type SessionActionRequestModel, type SessionUpdatedModel, type StatusDetailModel, type StatusModel, type Stream, type StringSegment, type SuspensionsConfigurationModel, type TreeExportModel, type TreeRestoreModel, type TriggerOperationCommandModel, type Udi, type WorkItemDetailModel, type WorkspaceInfoModel, WorkStatusModel } from './types.gen';
|
|
3
|
+
export { type AddToQueueModel, type ClientConfigurationInfoModel, type ClientConfigurationInfoModelBase, type ClientConfigurationInfoModelUmbracoCloudClientConfigurationInfoModel, type ClientConfigurationModel, type ClientOptions, type ConfigurationModel, type ContentComparisonModel, type ContentSummaryContainerModel, type ContentSummaryModel, type ContentSummaryPropertyModel, type DashboardModel, type DeleteExportModel, type DeleteSchemaFileData, type DeleteSchemaFileErrors, type DeleteSchemaFileResponse, type DeleteSchemaFileResponses, type DeleteSchemaItemData, type DeleteSchemaItemError, type DeleteSchemaItemErrors, type DeleteSchemaItemResponse, type DeleteSchemaItemResponses, type DeployEntityTypeCategoriesModel, type DeployItemModel, type DeployModel, type DeployRegisteredEntityTypeDetailOptionsModel, type EntityTagHeaderValue, type ExportModel, type FileStreamResult, type GetArtifactsData, type GetArtifactsErrors, type GetArtifactsResponse, type GetArtifactsResponses, type GetComparisonModel, type GetConfigurationClientData, type GetConfigurationClientErrors, type GetConfigurationClientResponse, type GetConfigurationClientResponses, type GetConfigurationDetailsData, type GetConfigurationDetailsErrors, type GetConfigurationDetailsResponse, type GetConfigurationDetailsResponses, type GetDashboardData, type GetDashboardErrors, type GetDashboardResponse, type GetDashboardResponses, type GetEntityNameData, type GetEntityNameErrors, type GetEntityNameResponse, type GetEntityNameResponses, type GetExportData, type GetExportErrors, type GetExportResponse, type GetExportResponses, type GetNoNodesCheckMarkersData, type GetNoNodesCheckMarkersErrors, type GetNoNodesCheckMarkersResponse, type GetNoNodesCheckMarkersResponses, type GetOperationDetailFailedData, type GetOperationDetailFailedErrors, type GetOperationDetailFailedResponse, type GetOperationDetailFailedResponses, type GetQueueData, type GetQueueErrors, type GetQueueResponse, type GetQueueResponses, type GetSchemaData, type GetSchemaErrors, type GetSchemaKeyData, type GetSchemaKeyErrors, type GetSchemaKeyResponse, type GetSchemaKeyResponses, type GetSchemaResponse, type GetSchemaResponses, type GetStatusBusyData, type GetStatusBusyErrors, type GetStatusBusyResponses, type GetStatusLicenseData, type GetStatusLicenseErrors, type GetStatusLicenseResponse, type GetStatusLicenseResponses, type GetTreeExternalContentData, type GetTreeExternalContentErrors, type GetTreeExternalContentResponse, type GetTreeExternalContentResponses, type GetTreeExternalEntityData, type GetTreeExternalEntityErrors, type GetTreeExternalEntityResponse, type GetTreeExternalEntityResponses, type GetTreeExternalMediaData, type GetTreeExternalMediaErrors, type GetTreeExternalMediaResponse, type GetTreeExternalMediaResponses, type GetUdiRangeModel, type HeartbeatModel, type ImportModel, type ImportOnStartupConfigurationModel, type InstantDeployModel, type LicenseStatusResponseModel, type ListExportModel, type MarkersExistDetailModel, type PagedViewModelOfRemoteEntityTreeItemResponseModel, type PartialRestoreModel, type PartialRestoreNodeModel, type PermissionToExportDetailModel, type PermissionToTransferDetailModel, type PhysicalFileResult, type PostContentData, type PostContentErrors, type PostContentResponse, type PostContentResponses, type PostDeployData, type PostDeployErrors, type PostDeployInstantData, type PostDeployInstantErrors, type PostDeployInstantResponse, type PostDeployInstantResponses, type PostDeployResponse, type PostDeployResponses, type PostEntityExportData, type PostEntityExportErrors, type PostEntityExportResponse, type PostEntityExportResponses, type PostEntityTransferData, type PostEntityTransferErrors, type PostEntityTransferResponse, type PostEntityTransferResponses, type PostEntityTreeDetailData, type PostEntityTreeDetailErrors, type PostEntityTreeDetailResponse, type PostEntityTreeDetailResponses, type PostExportData, type PostExportDeleteData, type PostExportDeleteErrors, type PostExportDeleteResponses, type PostExportErrors, type PostExportListData, type PostExportListErrors, type PostExportListResponse, type PostExportListResponses, type PostExportQueueData, type PostExportQueueErrors, type PostExportQueueResponse, type PostExportQueueResponses, type PostExportResponse, type PostExportResponses, type PostExportTreeData, type PostExportTreeErrors, type PostExportTreeResponse, type PostExportTreeResponses, type PostImportData, type PostImportErrors, type PostImportResponse, type PostImportResponses, type PostNoNodesCreateDiskReadTriggerData, type PostNoNodesCreateDiskReadTriggerErrors, type PostNoNodesCreateDiskReadTriggerResponses, type PostOperationCleanSchemaData, type PostOperationCleanSchemaErrors, type PostOperationCleanSchemaResponse, type PostOperationCleanSchemaResponses, type PostOperationClearSignaturesData, type PostOperationClearSignaturesErrors, type PostOperationClearSignaturesResponse, type PostOperationClearSignaturesResponses, type PostOperationData, type PostOperationDeleteExportArchivesData, type PostOperationDeleteExportArchivesErrors, type PostOperationDeleteExportArchivesResponse, type PostOperationDeleteExportArchivesResponses, type PostOperationDeploySchemaData, type PostOperationDeploySchemaErrors, type PostOperationDeploySchemaResponse, type PostOperationDeploySchemaResponses, type PostOperationError, type PostOperationErrors, type PostOperationExportSchemaData, type PostOperationExportSchemaErrors, type PostOperationExportSchemaResponse, type PostOperationExportSchemaResponses, type PostOperationResponse, type PostOperationResponses, type PostOperationSetSignaturesData, type PostOperationSetSignaturesErrors, type PostOperationSetSignaturesResponse, type PostOperationSetSignaturesResponses, type PostQueueAddData, type PostQueueAddErrors, type PostQueueAddResponse, type PostQueueAddResponses, type PostQueueClearData, type PostQueueClearErrors, type PostQueueClearResponses, type PostQueueRemoveData, type PostQueueRemoveErrors, type PostQueueRemoveResponses, type PostRestoreData, type PostRestoreErrors, type PostRestoreNoNodesData, type PostRestoreNoNodesErrors, type PostRestoreNoNodesResponse, type PostRestoreNoNodesResponses, type PostRestorePartialData, type PostRestorePartialErrors, type PostRestorePartialResponse, type PostRestorePartialResponses, type PostRestoreResponse, type PostRestoreResponses, type PostRestoreTreeData, type PostRestoreTreeErrors, type PostRestoreTreeResponse, type PostRestoreTreeResponses, type PostSchemaFileData, type PostSchemaFileError, type PostSchemaFileErrors, type PostSchemaFileResponse, type PostSchemaFileResponses, type PostSchemaItemData, type PostSchemaItemError, type PostSchemaItemErrors, type PostSchemaItemResponse, type PostSchemaItemResponses, type PostStatusStatusData, type PostStatusStatusErrors, type PostStatusStatusResponse, type PostStatusStatusResponses, type PostUdiData, type PostUdiErrors, type PostUdiResponse, type PostUdiResponses, type QueueExportModel, type RemoteEntityTreeItemResponseModel, type RemoteTreeDetailModel, type RemoveFromQueueModel, type RestoreModel, type SchemaComparisonDetailModel, type SchemaComparisonForEntityModel, type SessionActionRequestModel, type SessionUpdatedModel, type StatusDetailModel, type StatusModel, type Stream, type StringSegment, type SuspensionsConfigurationModel, type TreeExportModel, type TreeRestoreModel, type TriggerOperationCommandModel, type Udi, type WorkItemDetailModel, type WorkspaceInfoModel, WorkStatusModel } from './types.gen';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { Client, ClientMeta, Options as Options2, RequestResult, TDataShape } from './client';
|
|
2
|
-
import type { DeleteSchemaFileData, DeleteSchemaFileErrors, DeleteSchemaFileResponses, DeleteSchemaItemData, DeleteSchemaItemErrors, DeleteSchemaItemResponses, GetArtifactsData, GetArtifactsErrors, GetArtifactsResponses, GetConfigurationClientData, GetConfigurationClientErrors, GetConfigurationClientResponses, GetConfigurationDetailsData, GetConfigurationDetailsErrors, GetConfigurationDetailsResponses, GetDashboardData, GetDashboardErrors, GetDashboardResponses, GetEntityNameData, GetEntityNameErrors, GetEntityNameResponses, GetExportData, GetExportErrors, GetExportResponses, GetNoNodesCheckMarkersData, GetNoNodesCheckMarkersErrors, GetNoNodesCheckMarkersResponses, GetOperationDetailFailedData, GetOperationDetailFailedErrors, GetOperationDetailFailedResponses, GetQueueData, GetQueueErrors, GetQueueResponses, GetSchemaData, GetSchemaErrors, GetSchemaKeyData, GetSchemaKeyErrors, GetSchemaKeyResponses, GetSchemaResponses, GetStatusBusyData, GetStatusBusyErrors, GetStatusBusyResponses, GetStatusLicenseData, GetStatusLicenseErrors, GetStatusLicenseResponses, GetTreeExternalContentData, GetTreeExternalContentErrors, GetTreeExternalContentResponses, GetTreeExternalEntityData, GetTreeExternalEntityErrors, GetTreeExternalEntityResponses, GetTreeExternalMediaData, GetTreeExternalMediaErrors, GetTreeExternalMediaResponses, PostContentData, PostContentErrors, PostContentResponses, PostDeployData, PostDeployErrors, PostDeployInstantData, PostDeployInstantErrors, PostDeployInstantResponses, PostDeployResponses, PostEntityExportData, PostEntityExportErrors, PostEntityExportResponses, PostEntityTransferData, PostEntityTransferErrors, PostEntityTransferResponses, PostEntityTreeDetailData, PostEntityTreeDetailErrors, PostEntityTreeDetailResponses, PostExportData, PostExportDeleteData, PostExportDeleteErrors, PostExportDeleteResponses, PostExportErrors, PostExportListData, PostExportListErrors, PostExportListResponses, PostExportQueueData, PostExportQueueErrors, PostExportQueueResponses, PostExportResponses, PostExportTreeData, PostExportTreeErrors, PostExportTreeResponses, PostImportData, PostImportErrors, PostImportResponses, PostNoNodesCreateDiskReadTriggerData, PostNoNodesCreateDiskReadTriggerErrors, PostNoNodesCreateDiskReadTriggerResponses, PostOperationData, PostOperationErrors, PostOperationResponses, PostQueueAddData, PostQueueAddErrors, PostQueueAddResponses, PostQueueClearData, PostQueueClearErrors, PostQueueClearResponses, PostQueueRemoveData, PostQueueRemoveErrors, PostQueueRemoveResponses, PostRestoreData, PostRestoreErrors, PostRestoreNoNodesData, PostRestoreNoNodesErrors, PostRestoreNoNodesResponses, PostRestorePartialData, PostRestorePartialErrors, PostRestorePartialResponses, PostRestoreResponses, PostRestoreTreeData, PostRestoreTreeErrors, PostRestoreTreeResponses, PostSchemaFileData, PostSchemaFileErrors, PostSchemaFileResponses, PostSchemaItemData, PostSchemaItemErrors, PostSchemaItemResponses, PostStatusStatusData, PostStatusStatusErrors, PostStatusStatusResponses, PostUdiData, PostUdiErrors, PostUdiResponses } from './types.gen';
|
|
2
|
+
import type { DeleteSchemaFileData, DeleteSchemaFileErrors, DeleteSchemaFileResponses, DeleteSchemaItemData, DeleteSchemaItemErrors, DeleteSchemaItemResponses, GetArtifactsData, GetArtifactsErrors, GetArtifactsResponses, GetConfigurationClientData, GetConfigurationClientErrors, GetConfigurationClientResponses, GetConfigurationDetailsData, GetConfigurationDetailsErrors, GetConfigurationDetailsResponses, GetDashboardData, GetDashboardErrors, GetDashboardResponses, GetEntityNameData, GetEntityNameErrors, GetEntityNameResponses, GetExportData, GetExportErrors, GetExportResponses, GetNoNodesCheckMarkersData, GetNoNodesCheckMarkersErrors, GetNoNodesCheckMarkersResponses, GetOperationDetailFailedData, GetOperationDetailFailedErrors, GetOperationDetailFailedResponses, GetQueueData, GetQueueErrors, GetQueueResponses, GetSchemaData, GetSchemaErrors, GetSchemaKeyData, GetSchemaKeyErrors, GetSchemaKeyResponses, GetSchemaResponses, GetStatusBusyData, GetStatusBusyErrors, GetStatusBusyResponses, GetStatusLicenseData, GetStatusLicenseErrors, GetStatusLicenseResponses, GetTreeExternalContentData, GetTreeExternalContentErrors, GetTreeExternalContentResponses, GetTreeExternalEntityData, GetTreeExternalEntityErrors, GetTreeExternalEntityResponses, GetTreeExternalMediaData, GetTreeExternalMediaErrors, GetTreeExternalMediaResponses, PostContentData, PostContentErrors, PostContentResponses, PostDeployData, PostDeployErrors, PostDeployInstantData, PostDeployInstantErrors, PostDeployInstantResponses, PostDeployResponses, PostEntityExportData, PostEntityExportErrors, PostEntityExportResponses, PostEntityTransferData, PostEntityTransferErrors, PostEntityTransferResponses, PostEntityTreeDetailData, PostEntityTreeDetailErrors, PostEntityTreeDetailResponses, PostExportData, PostExportDeleteData, PostExportDeleteErrors, PostExportDeleteResponses, PostExportErrors, PostExportListData, PostExportListErrors, PostExportListResponses, PostExportQueueData, PostExportQueueErrors, PostExportQueueResponses, PostExportResponses, PostExportTreeData, PostExportTreeErrors, PostExportTreeResponses, PostImportData, PostImportErrors, PostImportResponses, PostNoNodesCreateDiskReadTriggerData, PostNoNodesCreateDiskReadTriggerErrors, PostNoNodesCreateDiskReadTriggerResponses, PostOperationCleanSchemaData, PostOperationCleanSchemaErrors, PostOperationCleanSchemaResponses, PostOperationClearSignaturesData, PostOperationClearSignaturesErrors, PostOperationClearSignaturesResponses, PostOperationData, PostOperationDeleteExportArchivesData, PostOperationDeleteExportArchivesErrors, PostOperationDeleteExportArchivesResponses, PostOperationDeploySchemaData, PostOperationDeploySchemaErrors, PostOperationDeploySchemaResponses, PostOperationErrors, PostOperationExportSchemaData, PostOperationExportSchemaErrors, PostOperationExportSchemaResponses, PostOperationResponses, PostOperationSetSignaturesData, PostOperationSetSignaturesErrors, PostOperationSetSignaturesResponses, PostQueueAddData, PostQueueAddErrors, PostQueueAddResponses, PostQueueClearData, PostQueueClearErrors, PostQueueClearResponses, PostQueueRemoveData, PostQueueRemoveErrors, PostQueueRemoveResponses, PostRestoreData, PostRestoreErrors, PostRestoreNoNodesData, PostRestoreNoNodesErrors, PostRestoreNoNodesResponses, PostRestorePartialData, PostRestorePartialErrors, PostRestorePartialResponses, PostRestoreResponses, PostRestoreTreeData, PostRestoreTreeErrors, PostRestoreTreeResponses, PostSchemaFileData, PostSchemaFileErrors, PostSchemaFileResponses, PostSchemaItemData, PostSchemaItemErrors, PostSchemaItemResponses, PostStatusStatusData, PostStatusStatusErrors, PostStatusStatusResponses, PostUdiData, PostUdiErrors, PostUdiResponses } from './types.gen';
|
|
3
3
|
export type Options<TData extends TDataShape = TDataShape, ThrowOnError extends boolean = boolean, TResponse = unknown> = Options2<TData, ThrowOnError, TResponse> & {
|
|
4
4
|
/**
|
|
5
5
|
* You can provide a client instance returned by `createClient()` instead of
|
|
@@ -52,8 +52,17 @@ export declare class NoNodesService {
|
|
|
52
52
|
static postNoNodesCreateDiskReadTrigger<ThrowOnError extends boolean = true>(options?: Options<PostNoNodesCreateDiskReadTriggerData, ThrowOnError>): RequestResult<PostNoNodesCreateDiskReadTriggerResponses, PostNoNodesCreateDiskReadTriggerErrors, ThrowOnError>;
|
|
53
53
|
}
|
|
54
54
|
export declare class OperationsService {
|
|
55
|
+
/**
|
|
56
|
+
* @deprecated
|
|
57
|
+
*/
|
|
55
58
|
static postOperation<ThrowOnError extends boolean = true>(options: Options<PostOperationData, ThrowOnError>): RequestResult<PostOperationResponses, PostOperationErrors, ThrowOnError>;
|
|
59
|
+
static postOperationCleanSchema<ThrowOnError extends boolean = true>(options?: Options<PostOperationCleanSchemaData, ThrowOnError>): RequestResult<PostOperationCleanSchemaResponses, PostOperationCleanSchemaErrors, ThrowOnError>;
|
|
60
|
+
static postOperationClearSignatures<ThrowOnError extends boolean = true>(options?: Options<PostOperationClearSignaturesData, ThrowOnError>): RequestResult<PostOperationClearSignaturesResponses, PostOperationClearSignaturesErrors, ThrowOnError>;
|
|
61
|
+
static postOperationDeleteExportArchives<ThrowOnError extends boolean = true>(options?: Options<PostOperationDeleteExportArchivesData, ThrowOnError>): RequestResult<PostOperationDeleteExportArchivesResponses, PostOperationDeleteExportArchivesErrors, ThrowOnError>;
|
|
62
|
+
static postOperationDeploySchema<ThrowOnError extends boolean = true>(options?: Options<PostOperationDeploySchemaData, ThrowOnError>): RequestResult<PostOperationDeploySchemaResponses, PostOperationDeploySchemaErrors, ThrowOnError>;
|
|
56
63
|
static getOperationDetailFailed<ThrowOnError extends boolean = true>(options?: Options<GetOperationDetailFailedData, ThrowOnError>): RequestResult<GetOperationDetailFailedResponses, GetOperationDetailFailedErrors, ThrowOnError>;
|
|
64
|
+
static postOperationExportSchema<ThrowOnError extends boolean = true>(options?: Options<PostOperationExportSchemaData, ThrowOnError>): RequestResult<PostOperationExportSchemaResponses, PostOperationExportSchemaErrors, ThrowOnError>;
|
|
65
|
+
static postOperationSetSignatures<ThrowOnError extends boolean = true>(options?: Options<PostOperationSetSignaturesData, ThrowOnError>): RequestResult<PostOperationSetSignaturesResponses, PostOperationSetSignaturesErrors, ThrowOnError>;
|
|
57
66
|
}
|
|
58
67
|
export declare class QueueService {
|
|
59
68
|
static getQueue<ThrowOnError extends boolean = true>(options?: Options<GetQueueData, ThrowOnError>): RequestResult<GetQueueResponses, GetQueueErrors, ThrowOnError>;
|
|
@@ -23,7 +23,13 @@ export type ClientConfigurationInfoModelBase = {
|
|
|
23
23
|
workspaces?: Array<WorkspaceInfoModel>;
|
|
24
24
|
};
|
|
25
25
|
export type ClientConfigurationInfoModelUmbracoCloudClientConfigurationInfoModel = {
|
|
26
|
+
/**
|
|
27
|
+
* @deprecated
|
|
28
|
+
*/
|
|
26
29
|
isTrial: boolean;
|
|
30
|
+
/**
|
|
31
|
+
* @deprecated
|
|
32
|
+
*/
|
|
27
33
|
trialExpireInDays: number;
|
|
28
34
|
projectName: string;
|
|
29
35
|
projectId: string;
|
|
@@ -824,6 +830,114 @@ export type PostOperationResponses = {
|
|
|
824
830
|
200: string;
|
|
825
831
|
};
|
|
826
832
|
export type PostOperationResponse = PostOperationResponses[keyof PostOperationResponses];
|
|
833
|
+
export type PostOperationCleanSchemaData = {
|
|
834
|
+
body?: never;
|
|
835
|
+
path?: never;
|
|
836
|
+
query?: never;
|
|
837
|
+
url: '/umbraco/deploy/management/api/v1/operation/clean-schema';
|
|
838
|
+
};
|
|
839
|
+
export type PostOperationCleanSchemaErrors = {
|
|
840
|
+
/**
|
|
841
|
+
* The resource is protected and requires an authentication token
|
|
842
|
+
*/
|
|
843
|
+
401: unknown;
|
|
844
|
+
/**
|
|
845
|
+
* Conflict
|
|
846
|
+
*/
|
|
847
|
+
409: unknown;
|
|
848
|
+
/**
|
|
849
|
+
* Service Unavailable
|
|
850
|
+
*/
|
|
851
|
+
503: unknown;
|
|
852
|
+
};
|
|
853
|
+
export type PostOperationCleanSchemaResponses = {
|
|
854
|
+
/**
|
|
855
|
+
* OK
|
|
856
|
+
*/
|
|
857
|
+
200: WorkItemDetailModel;
|
|
858
|
+
};
|
|
859
|
+
export type PostOperationCleanSchemaResponse = PostOperationCleanSchemaResponses[keyof PostOperationCleanSchemaResponses];
|
|
860
|
+
export type PostOperationClearSignaturesData = {
|
|
861
|
+
body?: never;
|
|
862
|
+
path?: never;
|
|
863
|
+
query?: never;
|
|
864
|
+
url: '/umbraco/deploy/management/api/v1/operation/clear-signatures';
|
|
865
|
+
};
|
|
866
|
+
export type PostOperationClearSignaturesErrors = {
|
|
867
|
+
/**
|
|
868
|
+
* The resource is protected and requires an authentication token
|
|
869
|
+
*/
|
|
870
|
+
401: unknown;
|
|
871
|
+
/**
|
|
872
|
+
* Conflict
|
|
873
|
+
*/
|
|
874
|
+
409: unknown;
|
|
875
|
+
/**
|
|
876
|
+
* Service Unavailable
|
|
877
|
+
*/
|
|
878
|
+
503: unknown;
|
|
879
|
+
};
|
|
880
|
+
export type PostOperationClearSignaturesResponses = {
|
|
881
|
+
/**
|
|
882
|
+
* OK
|
|
883
|
+
*/
|
|
884
|
+
200: WorkItemDetailModel;
|
|
885
|
+
};
|
|
886
|
+
export type PostOperationClearSignaturesResponse = PostOperationClearSignaturesResponses[keyof PostOperationClearSignaturesResponses];
|
|
887
|
+
export type PostOperationDeleteExportArchivesData = {
|
|
888
|
+
body?: never;
|
|
889
|
+
path?: never;
|
|
890
|
+
query?: never;
|
|
891
|
+
url: '/umbraco/deploy/management/api/v1/operation/delete-export-archives';
|
|
892
|
+
};
|
|
893
|
+
export type PostOperationDeleteExportArchivesErrors = {
|
|
894
|
+
/**
|
|
895
|
+
* The resource is protected and requires an authentication token
|
|
896
|
+
*/
|
|
897
|
+
401: unknown;
|
|
898
|
+
/**
|
|
899
|
+
* Conflict
|
|
900
|
+
*/
|
|
901
|
+
409: unknown;
|
|
902
|
+
/**
|
|
903
|
+
* Service Unavailable
|
|
904
|
+
*/
|
|
905
|
+
503: unknown;
|
|
906
|
+
};
|
|
907
|
+
export type PostOperationDeleteExportArchivesResponses = {
|
|
908
|
+
/**
|
|
909
|
+
* OK
|
|
910
|
+
*/
|
|
911
|
+
200: WorkItemDetailModel;
|
|
912
|
+
};
|
|
913
|
+
export type PostOperationDeleteExportArchivesResponse = PostOperationDeleteExportArchivesResponses[keyof PostOperationDeleteExportArchivesResponses];
|
|
914
|
+
export type PostOperationDeploySchemaData = {
|
|
915
|
+
body?: never;
|
|
916
|
+
path?: never;
|
|
917
|
+
query?: never;
|
|
918
|
+
url: '/umbraco/deploy/management/api/v1/operation/deploy-schema';
|
|
919
|
+
};
|
|
920
|
+
export type PostOperationDeploySchemaErrors = {
|
|
921
|
+
/**
|
|
922
|
+
* The resource is protected and requires an authentication token
|
|
923
|
+
*/
|
|
924
|
+
401: unknown;
|
|
925
|
+
/**
|
|
926
|
+
* Conflict
|
|
927
|
+
*/
|
|
928
|
+
409: unknown;
|
|
929
|
+
/**
|
|
930
|
+
* Service Unavailable
|
|
931
|
+
*/
|
|
932
|
+
503: unknown;
|
|
933
|
+
};
|
|
934
|
+
export type PostOperationDeploySchemaResponses = {
|
|
935
|
+
/**
|
|
936
|
+
* OK
|
|
937
|
+
*/
|
|
938
|
+
200: WorkItemDetailModel;
|
|
939
|
+
};
|
|
940
|
+
export type PostOperationDeploySchemaResponse = PostOperationDeploySchemaResponses[keyof PostOperationDeploySchemaResponses];
|
|
827
941
|
export type GetOperationDetailFailedData = {
|
|
828
942
|
body?: never;
|
|
829
943
|
path?: never;
|
|
@@ -843,6 +957,60 @@ export type GetOperationDetailFailedResponses = {
|
|
|
843
957
|
200: string;
|
|
844
958
|
};
|
|
845
959
|
export type GetOperationDetailFailedResponse = GetOperationDetailFailedResponses[keyof GetOperationDetailFailedResponses];
|
|
960
|
+
export type PostOperationExportSchemaData = {
|
|
961
|
+
body?: never;
|
|
962
|
+
path?: never;
|
|
963
|
+
query?: never;
|
|
964
|
+
url: '/umbraco/deploy/management/api/v1/operation/export-schema';
|
|
965
|
+
};
|
|
966
|
+
export type PostOperationExportSchemaErrors = {
|
|
967
|
+
/**
|
|
968
|
+
* The resource is protected and requires an authentication token
|
|
969
|
+
*/
|
|
970
|
+
401: unknown;
|
|
971
|
+
/**
|
|
972
|
+
* Conflict
|
|
973
|
+
*/
|
|
974
|
+
409: unknown;
|
|
975
|
+
/**
|
|
976
|
+
* Service Unavailable
|
|
977
|
+
*/
|
|
978
|
+
503: unknown;
|
|
979
|
+
};
|
|
980
|
+
export type PostOperationExportSchemaResponses = {
|
|
981
|
+
/**
|
|
982
|
+
* OK
|
|
983
|
+
*/
|
|
984
|
+
200: WorkItemDetailModel;
|
|
985
|
+
};
|
|
986
|
+
export type PostOperationExportSchemaResponse = PostOperationExportSchemaResponses[keyof PostOperationExportSchemaResponses];
|
|
987
|
+
export type PostOperationSetSignaturesData = {
|
|
988
|
+
body?: never;
|
|
989
|
+
path?: never;
|
|
990
|
+
query?: never;
|
|
991
|
+
url: '/umbraco/deploy/management/api/v1/operation/set-signatures';
|
|
992
|
+
};
|
|
993
|
+
export type PostOperationSetSignaturesErrors = {
|
|
994
|
+
/**
|
|
995
|
+
* The resource is protected and requires an authentication token
|
|
996
|
+
*/
|
|
997
|
+
401: unknown;
|
|
998
|
+
/**
|
|
999
|
+
* Conflict
|
|
1000
|
+
*/
|
|
1001
|
+
409: unknown;
|
|
1002
|
+
/**
|
|
1003
|
+
* Service Unavailable
|
|
1004
|
+
*/
|
|
1005
|
+
503: unknown;
|
|
1006
|
+
};
|
|
1007
|
+
export type PostOperationSetSignaturesResponses = {
|
|
1008
|
+
/**
|
|
1009
|
+
* OK
|
|
1010
|
+
*/
|
|
1011
|
+
200: WorkItemDetailModel;
|
|
1012
|
+
};
|
|
1013
|
+
export type PostOperationSetSignaturesResponse = PostOperationSetSignaturesResponses[keyof PostOperationSetSignaturesResponses];
|
|
846
1014
|
export type GetQueueData = {
|
|
847
1015
|
body?: never;
|
|
848
1016
|
path?: never;
|
|
@@ -2,6 +2,8 @@ import { type ExportQueueState, type DeployExportQueueManagerContext } from "../
|
|
|
2
2
|
import { DeployQueueWorkspaceViewBaseElement } from "../../../core/index.ts";
|
|
3
3
|
import type { DeployQueueModel } from "../../../core/index.ts";
|
|
4
4
|
import "../../deploy-queue-item.element.js";
|
|
5
|
+
import "../../../core/queue/empty-state.element.js";
|
|
6
|
+
import "../../../core/queue/queue-progress.element.js";
|
|
5
7
|
declare const elementName = "deploy-overview-workspace-view-export";
|
|
6
8
|
export declare class DeployOverviewWorkspaceViewExportElement extends DeployQueueWorkspaceViewBaseElement<ExportQueueState, DeployQueueModel, DeployExportQueueManagerContext> {
|
|
7
9
|
#private;
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import { type DeployImportQueueManagerContext, type ImportQueueState } from "../../../import/index.ts";
|
|
2
2
|
import { DeployWorkOperationWorkspaceViewBaseElement } from "../../../core/index.ts";
|
|
3
3
|
import "./input-upload-field.element.js";
|
|
4
|
+
import "../../deploy-queue-item.element.js";
|
|
5
|
+
import "../../../core/queue/queue-progress.element.js";
|
|
4
6
|
declare const elementName = "deploy-overview-workspace-view-import";
|
|
5
7
|
export declare class DeployOverviewWorkspaceViewImportElement extends DeployWorkOperationWorkspaceViewBaseElement<ImportQueueState, DeployImportQueueManagerContext> {
|
|
6
8
|
#private;
|
|
@@ -2,6 +2,9 @@ import { type TransferQueueState, type DeployTransferQueueManagerContext } from
|
|
|
2
2
|
import type { DeployItemModel } from "../../../generated/index.ts";
|
|
3
3
|
import { DeployQueueWorkspaceViewBaseElement } from "../../../core/index.ts";
|
|
4
4
|
import "../../deploy-queue-item.element.js";
|
|
5
|
+
import "../../../environments/components/content-flow/content-flow.element.js";
|
|
6
|
+
import "../../../core/queue/empty-state.element.js";
|
|
7
|
+
import "../../../core/queue/queue-progress.element.js";
|
|
5
8
|
declare const elementName = "deploy-overview-workspace-view-transfer";
|
|
6
9
|
export declare class DeployOverviewWorkspaceViewTransferElement extends DeployQueueWorkspaceViewBaseElement<TransferQueueState, DeployItemModel, DeployTransferQueueManagerContext> {
|
|
7
10
|
#private;
|
|
@@ -1,19 +1,10 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { DeployEnvironmentRestoreConditionConfig } from "./types.js";
|
|
2
2
|
import { DeployConditionBase, type DeployExtensionCondition } from "../../core/index.ts";
|
|
3
|
-
import type { UmbConditionConfigBase, UmbConditionControllerArguments } from "@umbraco-cms/backoffice/extension-api";
|
|
4
|
-
import type { UmbControllerHost } from "@umbraco-cms/backoffice/controller-api";
|
|
5
|
-
export type DeployEnvironmentRestoreConditionConfig = UmbConditionConfigBase<typeof DEPLOY_ENVIRONMENT_RESTORE_CONDITION_ALIAS>;
|
|
6
3
|
/**
|
|
7
4
|
* Permitted is true when allowRestoreOptions is true, and the entity is content or media.
|
|
8
5
|
* Content or media check is managed by the manifest where we set the permitted entity types.
|
|
9
6
|
*/
|
|
10
7
|
export declare class DeployEnvironmentRestoreCondition extends DeployConditionBase<DeployEnvironmentRestoreConditionConfig> implements DeployExtensionCondition {
|
|
11
|
-
|
|
12
|
-
evaluate(): Promise<void>;
|
|
8
|
+
evaluate(): void;
|
|
13
9
|
}
|
|
14
10
|
export default DeployEnvironmentRestoreCondition;
|
|
15
|
-
declare global {
|
|
16
|
-
interface UmbExtensionConditionConfigMap {
|
|
17
|
-
DeployEnvironmentRestoreConditionConfig: DeployEnvironmentRestoreConditionConfig;
|
|
18
|
-
}
|
|
19
|
-
}
|
|
@@ -1,18 +1,9 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { DeployPartialRestoreConditionConfig } from "./types.js";
|
|
2
2
|
import { DeployConditionBase, type DeployExtensionCondition } from "../../core/index.ts";
|
|
3
|
-
import type { UmbConditionConfigBase, UmbConditionControllerArguments } from "@umbraco-cms/backoffice/extension-api";
|
|
4
|
-
import type { UmbControllerHost } from "@umbraco-cms/backoffice/controller-api";
|
|
5
|
-
export type DeployPartialRestoreConditionConfig = UmbConditionConfigBase<typeof DEPLOY_PARTIAL_RESTORE_CONDITION_ALIAS>;
|
|
6
3
|
/**
|
|
7
4
|
* Permitted when the environment allows restore options and the entity supports partial restore.
|
|
8
5
|
*/
|
|
9
6
|
export declare class DeployPartialRestoreCondition extends DeployConditionBase<DeployPartialRestoreConditionConfig> implements DeployExtensionCondition {
|
|
10
|
-
|
|
11
|
-
evaluate(): Promise<void>;
|
|
7
|
+
evaluate(): void;
|
|
12
8
|
}
|
|
13
9
|
export default DeployPartialRestoreCondition;
|
|
14
|
-
declare global {
|
|
15
|
-
interface UmbExtensionConditionConfigMap {
|
|
16
|
-
DeployPartialRestoreConditionConfig: DeployPartialRestoreConditionConfig;
|
|
17
|
-
}
|
|
18
|
-
}
|
|
@@ -1,18 +1,9 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { DeployTreeRestoreConditionConfig } from "./types.js";
|
|
2
2
|
import { DeployConditionBase, type DeployExtensionCondition } from "../../core/index.ts";
|
|
3
|
-
import type { UmbConditionConfigBase, UmbConditionControllerArguments } from "@umbraco-cms/backoffice/extension-api";
|
|
4
|
-
import type { UmbControllerHost } from "@umbraco-cms/backoffice/controller-api";
|
|
5
|
-
export type DeployTreeRestoreConditionConfig = UmbConditionConfigBase<typeof DEPLOY_TREE_RESTORE_CONDITION_ALIAS>;
|
|
6
3
|
/**
|
|
7
4
|
* Permitted when the environment allows restore options and the entity supports restore.
|
|
8
5
|
*/
|
|
9
6
|
export declare class DeployTreeRestoreCondition extends DeployConditionBase<DeployTreeRestoreConditionConfig> implements DeployExtensionCondition {
|
|
10
|
-
|
|
11
|
-
evaluate(): Promise<void>;
|
|
7
|
+
evaluate(): void;
|
|
12
8
|
}
|
|
13
9
|
export default DeployTreeRestoreCondition;
|
|
14
|
-
declare global {
|
|
15
|
-
interface UmbExtensionConditionConfigMap {
|
|
16
|
-
DeployTreeRestoreConditionConfig: DeployTreeRestoreConditionConfig;
|
|
17
|
-
}
|
|
18
|
-
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import type { DEPLOY_ENVIRONMENT_RESTORE_CONDITION_ALIAS, DEPLOY_PARTIAL_RESTORE_CONDITION_ALIAS, DEPLOY_TREE_RESTORE_CONDITION_ALIAS } from "./constants.js";
|
|
2
|
+
import type { UmbConditionConfigBase } from "@umbraco-cms/backoffice/extension-api";
|
|
3
|
+
export type DeployEnvironmentRestoreConditionConfig = UmbConditionConfigBase<typeof DEPLOY_ENVIRONMENT_RESTORE_CONDITION_ALIAS>;
|
|
4
|
+
export type DeployPartialRestoreConditionConfig = UmbConditionConfigBase<typeof DEPLOY_PARTIAL_RESTORE_CONDITION_ALIAS>;
|
|
5
|
+
export type DeployTreeRestoreConditionConfig = UmbConditionConfigBase<typeof DEPLOY_TREE_RESTORE_CONDITION_ALIAS>;
|
|
6
|
+
declare global {
|
|
7
|
+
interface UmbExtensionConditionConfigMap {
|
|
8
|
+
DeployEnvironmentRestoreConditionConfig: DeployEnvironmentRestoreConditionConfig;
|
|
9
|
+
DeployPartialRestoreConditionConfig: DeployPartialRestoreConditionConfig;
|
|
10
|
+
DeployTreeRestoreConditionConfig: DeployTreeRestoreConditionConfig;
|
|
11
|
+
}
|
|
12
|
+
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import type { DeployRestoreModalData, DeployRestoreModalValue } from "./restore-modal.token.js";
|
|
2
2
|
import { UmbModalBaseElement } from "@umbraco-cms/backoffice/modal";
|
|
3
|
+
import "../../environments/components/environment-select/environment-select.element.js";
|
|
3
4
|
declare const elementName = "deploy-partial-restore-modal";
|
|
4
5
|
export declare class DeployPartialRestoreModalElement extends UmbModalBaseElement<DeployRestoreModalData, DeployRestoreModalValue> {
|
|
5
6
|
#private;
|
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
import type { DeployRestoreModalData, DeployRestoreModalValue } from "./restore-modal.token.js";
|
|
2
2
|
import { UmbModalBaseElement } from "@umbraco-cms/backoffice/modal";
|
|
3
|
+
import "../../environments/components/environment-select/environment-select.element.js";
|
|
3
4
|
declare const elementName = "deploy-restore-modal";
|
|
4
5
|
export declare class DeployRestoreModalElement extends UmbModalBaseElement<DeployRestoreModalData, DeployRestoreModalValue> {
|
|
5
6
|
#private;
|
|
6
7
|
private _restoreEnvironment?;
|
|
7
8
|
private _allowIgnoreDependencies;
|
|
8
9
|
private _ignoreDependencies;
|
|
9
|
-
connectedCallback():
|
|
10
|
+
connectedCallback(): void;
|
|
10
11
|
render(): import("lit-html").TemplateResult<1>;
|
|
11
12
|
static styles: import("lit").CSSResult[];
|
|
12
13
|
}
|
|
@@ -8,4 +8,4 @@ export interface DeployOperationModel {
|
|
|
8
8
|
visible?: boolean;
|
|
9
9
|
descriptionArgs?: Array<number | string>;
|
|
10
10
|
}
|
|
11
|
-
export type DeployOperationType = "
|
|
11
|
+
export type DeployOperationType = "deploySchema" | "exportSchema" | "cleanSchema" | "clearSignatures" | "setSignatures" | "deleteExportArchives";
|
|
@@ -1,10 +1,8 @@
|
|
|
1
1
|
import { UmbControllerBase } from "@umbraco-cms/backoffice/class-api";
|
|
2
2
|
import type { UmbControllerHost } from "@umbraco-cms/backoffice/controller-api";
|
|
3
|
-
import type { TriggerOperationCommandModel } from "../generated/index.ts";
|
|
4
3
|
export declare class DeployManagementRepository extends UmbControllerBase {
|
|
5
4
|
#private;
|
|
6
5
|
constructor(host: UmbControllerHost);
|
|
7
|
-
getDashboard(): Promise<import("../generated/
|
|
6
|
+
getDashboard(): Promise<import("../generated/types.gen.js").DashboardModel>;
|
|
8
7
|
getFailedOperationDetail(): Promise<string>;
|
|
9
|
-
triggerOperation(operation: TriggerOperationCommandModel): Promise<string>;
|
|
10
8
|
}
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import type { UmbControllerHost } from "@umbraco-cms/backoffice/controller-api";
|
|
2
|
-
import type { TriggerOperationCommandModel } from "../generated/index.ts";
|
|
3
2
|
export declare class DeployManagementServerDataSource {
|
|
4
3
|
#private;
|
|
5
4
|
constructor(host: UmbControllerHost);
|
|
@@ -13,9 +12,4 @@ export declare class DeployManagementServerDataSource {
|
|
|
13
12
|
request: Request;
|
|
14
13
|
response: Response;
|
|
15
14
|
}>>;
|
|
16
|
-
triggerOperation(operation: TriggerOperationCommandModel): Promise<import("@umbraco-cms/backoffice/resources").UmbApiResponse<{
|
|
17
|
-
data: string;
|
|
18
|
-
request: Request;
|
|
19
|
-
response: Response;
|
|
20
|
-
}>>;
|
|
21
15
|
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import type { DeployOperationType } from "./entities.js";
|
|
2
|
+
import { DeployRepositoryBase } from "../core/index.ts";
|
|
3
|
+
export declare class DeployOperationRepository extends DeployRepositoryBase {
|
|
4
|
+
start(operation: DeployOperationType): Promise<import("../generated/index.ts").WorkItemDetailModel | import("@umbraco-cms/backoffice/resources").UmbApiError>;
|
|
5
|
+
deploySchema(): Promise<import("../generated/index.ts").WorkItemDetailModel | import("@umbraco-cms/backoffice/resources").UmbApiError>;
|
|
6
|
+
exportSchema(): Promise<import("../generated/index.ts").WorkItemDetailModel | import("@umbraco-cms/backoffice/resources").UmbApiError>;
|
|
7
|
+
cleanSchema(): Promise<import("../generated/index.ts").WorkItemDetailModel | import("@umbraco-cms/backoffice/resources").UmbApiError>;
|
|
8
|
+
clearSignatures(): Promise<import("../generated/index.ts").WorkItemDetailModel | import("@umbraco-cms/backoffice/resources").UmbApiError>;
|
|
9
|
+
setSignatures(): Promise<import("../generated/index.ts").WorkItemDetailModel | import("@umbraco-cms/backoffice/resources").UmbApiError>;
|
|
10
|
+
deleteExportArchives(): Promise<import("../generated/index.ts").WorkItemDetailModel | import("@umbraco-cms/backoffice/resources").UmbApiError>;
|
|
11
|
+
}
|
package/types/settings/workspaces/configuration/views/configuration-overview-view.element.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { DeploySettingsWorkspaceViewElement } from "../../deploy-settings-workspace-view.element.js";
|
|
2
2
|
import type { ConfigurationModel } from "../../../../generated/index.ts";
|
|
3
3
|
export * from "./details.element.js";
|
|
4
|
+
import "../../configuration-layout.element.js";
|
|
4
5
|
declare const elementName = "deploy-configuration-overview-view";
|
|
5
6
|
export declare class DeployConfigurationOverviewViewElement extends DeploySettingsWorkspaceViewElement {
|
|
6
7
|
#private;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { DeploySettingsWorkspaceViewElement } from "../../deploy-settings-workspace-view.element.js";
|
|
2
2
|
export * from "./schema-comparison-boolean-column-layout.element.js";
|
|
3
|
+
import "../entity-actions-table-column-view.element.js";
|
|
3
4
|
declare const elementName = "deploy-schema-overview-view";
|
|
4
5
|
export declare class DeploySchemaOverviewViewElement extends DeploySettingsWorkspaceViewElement {
|
|
5
6
|
#private;
|
|
@@ -7,7 +7,6 @@ export declare class DeployOperationElement extends UUIBoxElement {
|
|
|
7
7
|
set host(value: UmbControllerHost | undefined);
|
|
8
8
|
set model(value: DeployOperationModel | undefined);
|
|
9
9
|
get model(): DeployOperationModel | undefined;
|
|
10
|
-
message?: string;
|
|
11
10
|
render(): import("lit-html").TemplateResult<1>;
|
|
12
11
|
static styles: import("lit").CSSResult[];
|
|
13
12
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import type { ConfigurationModel, DashboardModel } from "../../../../generated/index.ts";
|
|
2
2
|
import { UmbLitElement } from "@umbraco-cms/backoffice/lit-element";
|
|
3
|
+
import "../../../../core/components/error-detail/error-detail.element.js";
|
|
3
4
|
declare const elementName = "deploy-status";
|
|
4
5
|
export declare class DeployStatusElement extends UmbLitElement {
|
|
5
6
|
#private;
|
|
@@ -1,18 +1,9 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { DeployQueueConditionConfig } from "./types.js";
|
|
2
2
|
import { DeployConditionBase, type DeployExtensionCondition } from "../../core/index.ts";
|
|
3
|
-
import type { UmbConditionConfigBase, UmbConditionControllerArguments } from "@umbraco-cms/backoffice/extension-api";
|
|
4
|
-
import type { UmbControllerHost } from "@umbraco-cms/backoffice/controller-api";
|
|
5
|
-
export type DeployQueueConditionConfig = UmbConditionConfigBase<typeof DEPLOY_QUEUE_CONDITION_ALIAS>;
|
|
6
3
|
/**
|
|
7
4
|
* Permitted when the environment allows deploy options and the entity supports queue for transfer.
|
|
8
5
|
*/
|
|
9
6
|
export declare class DeployQueueCondition extends DeployConditionBase<DeployQueueConditionConfig> implements DeployExtensionCondition {
|
|
10
|
-
|
|
11
|
-
evaluate(): Promise<void>;
|
|
7
|
+
evaluate(): void;
|
|
12
8
|
}
|
|
13
9
|
export default DeployQueueCondition;
|
|
14
|
-
declare global {
|
|
15
|
-
interface UmbExtensionConditionConfigMap {
|
|
16
|
-
DeployQueueConditionConfig: DeployQueueConditionConfig;
|
|
17
|
-
}
|
|
18
|
-
}
|
|
@@ -1,18 +1,9 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { DeployTransferNowConditionConfig } from "./types.js";
|
|
2
2
|
import { DeployConditionBase, type DeployExtensionCondition } from "../../core/index.ts";
|
|
3
|
-
import type { UmbConditionConfigBase, UmbConditionControllerArguments } from "@umbraco-cms/backoffice/extension-api";
|
|
4
|
-
import type { UmbControllerHost } from "@umbraco-cms/backoffice/controller-api";
|
|
5
|
-
export type DeployTransferNowConditionConfig = UmbConditionConfigBase<typeof DEPLOY_TRANSFER_NOW_CONDITION_ALIAS>;
|
|
6
3
|
/**
|
|
7
4
|
* Permitted when the environment allows deploy options and the entity supports queue for transfer.
|
|
8
5
|
*/
|
|
9
6
|
export declare class DeployTransferNowCondition extends DeployConditionBase<DeployTransferNowConditionConfig> implements DeployExtensionCondition {
|
|
10
|
-
|
|
11
|
-
evaluate(): Promise<void>;
|
|
7
|
+
evaluate(): void;
|
|
12
8
|
}
|
|
13
9
|
export default DeployTransferNowCondition;
|
|
14
|
-
declare global {
|
|
15
|
-
interface UmbExtensionConditionConfigMap {
|
|
16
|
-
DeployTransferNowConditionConfig: DeployTransferNowConditionConfig;
|
|
17
|
-
}
|
|
18
|
-
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { DEPLOY_QUEUE_CONDITION_ALIAS, DEPLOY_TRANSFER_NOW_CONDITION_ALIAS } from "./constants.js";
|
|
2
|
+
import type { UmbConditionConfigBase } from "@umbraco-cms/backoffice/extension-api";
|
|
3
|
+
export type DeployQueueConditionConfig = UmbConditionConfigBase<typeof DEPLOY_QUEUE_CONDITION_ALIAS>;
|
|
4
|
+
export type DeployTransferNowConditionConfig = UmbConditionConfigBase<typeof DEPLOY_TRANSFER_NOW_CONDITION_ALIAS>;
|
|
5
|
+
declare global {
|
|
6
|
+
interface UmbExtensionConditionConfigMap {
|
|
7
|
+
DeployQueueConditionConfig: DeployQueueConditionConfig;
|
|
8
|
+
DeployTransferNowConditionConfig: DeployTransferNowConditionConfig;
|
|
9
|
+
}
|
|
10
|
+
}
|