@contrail/entity-types 1.1.55-9 → 1.1.56-1
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/.github/pull_request_template.md +7 -6
- package/.github/workflows/empty.yml +1 -2
- package/.github/workflows/generate-entity-types-docs.yml +1 -1
- package/.prettierrc.yaml +2 -0
- package/.vscode/settings.json +3 -0
- package/README.md +2 -1
- package/lib/app-api-key.d.ts +2 -2
- package/lib/app-extension-definition.d.ts +3 -3
- package/lib/app-extension.d.ts +4 -4
- package/lib/app-org.d.ts +3 -3
- package/lib/app-version.d.ts +5 -5
- package/lib/asset.d.ts +1 -1
- package/lib/client.d.ts +1 -0
- package/lib/client.js +1 -0
- package/lib/content-custom-size.d.ts +1 -1
- package/lib/contentholder-content.d.ts +1 -1
- package/lib/index.d.ts +27 -27
- package/lib/loader.d.ts +8 -11
- package/lib/loader.js +1 -0
- package/lib/org-managed-entity.d.ts +1 -1
- package/lib/org.d.ts +1 -1
- package/lib/project-configuration.d.ts +1 -1
- package/lib/project.d.ts +1 -1
- package/lib/shared-links.d.ts +2 -2
- package/lib/subscription.d.ts +2 -2
- package/lib/type-managed-entity.d.ts +1 -1
- package/lib/user.d.ts +3 -3
- package/lib/workspace-managed-entity.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
## What
|
|
2
|
+
|
|
2
3
|
- [ ] Bugfix
|
|
3
4
|
- [ ] Feature
|
|
4
5
|
- [ ] Enhancement
|
|
5
6
|
|
|
6
|
-
Description:
|
|
7
|
+
Description:
|
|
8
|
+
|
|
7
9
|
<!--
|
|
8
10
|
Describe the functional changes of the PR.
|
|
9
11
|
|
|
@@ -15,16 +17,15 @@ is sufficient.
|
|
|
15
17
|
-->
|
|
16
18
|
|
|
17
19
|
## Why
|
|
18
|
-
|
|
20
|
+
|
|
21
|
+
<!--
|
|
19
22
|
why is this change needed? Same rules as with #What
|
|
20
23
|
-->
|
|
21
24
|
|
|
22
|
-
|
|
23
25
|
## Testing added
|
|
24
|
-
|
|
26
|
+
|
|
27
|
+
<!--
|
|
25
28
|
Describe the testing you added to this PR
|
|
26
29
|
-->
|
|
27
30
|
|
|
28
|
-
|
|
29
31
|
## Link to Jira ticket(s)
|
|
30
|
-
|
package/.prettierrc.yaml
ADDED
package/README.md
CHANGED
package/lib/app-api-key.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { OrgManagedEntity } from
|
|
2
|
-
import { AppOrg } from
|
|
1
|
+
import { OrgManagedEntity } from './org-managed-entity';
|
|
2
|
+
import { AppOrg } from './app-org';
|
|
3
3
|
export interface AppApiKey extends OrgManagedEntity {
|
|
4
4
|
id: string;
|
|
5
5
|
createdOn?: Date;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { App } from
|
|
2
|
-
import { AppVersion } from
|
|
3
|
-
import { BaseManagedEntity } from
|
|
1
|
+
import { App } from './app';
|
|
2
|
+
import { AppVersion } from './app-version';
|
|
3
|
+
import { BaseManagedEntity } from './base-managed-entity';
|
|
4
4
|
export declare enum AppExtensionType {
|
|
5
5
|
DOCUMENT_AUTOMATION = "DOCUMENT_AUTOMATION",
|
|
6
6
|
CONTEXTUAL_ACTION = "CONTEXTUAL_ACTION",
|
package/lib/app-extension.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { App } from
|
|
2
|
-
import { AppExtensionType, AppExtensionUserApps } from
|
|
3
|
-
import { AppVersion } from
|
|
4
|
-
import { OrgManagedEntity } from
|
|
1
|
+
import { App } from './app';
|
|
2
|
+
import { AppExtensionType, AppExtensionUserApps } from './app-extension-definition';
|
|
3
|
+
import { AppVersion } from './app-version';
|
|
4
|
+
import { OrgManagedEntity } from './org-managed-entity';
|
|
5
5
|
export interface AppExtension extends OrgManagedEntity {
|
|
6
6
|
id?: string;
|
|
7
7
|
createdOn?: Date;
|
package/lib/app-org.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { OrgManagedEntity } from
|
|
2
|
-
import { App } from
|
|
3
|
-
import { AppVersion } from
|
|
1
|
+
import { OrgManagedEntity } from './org-managed-entity';
|
|
2
|
+
import { App } from './app';
|
|
3
|
+
import { AppVersion } from './app-version';
|
|
4
4
|
import { AppApiKey } from './app-api-key';
|
|
5
5
|
export declare enum AppOrgStatus {
|
|
6
6
|
INSTALLING = "INSTALLING",
|
package/lib/app-version.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { BaseManagedEntity } from
|
|
2
|
-
import { App } from
|
|
3
|
-
import { AppCodePackage } from
|
|
4
|
-
import { PropertyType } from
|
|
5
|
-
import { AppOrg } from
|
|
1
|
+
import { BaseManagedEntity } from './base-managed-entity';
|
|
2
|
+
import { App } from './app';
|
|
3
|
+
import { AppCodePackage } from './app-code-package';
|
|
4
|
+
import { PropertyType } from './property-type';
|
|
5
|
+
import { AppOrg } from './app-org';
|
|
6
6
|
export declare enum AppVersionStatus {
|
|
7
7
|
PUBLISHING = "PUBLISHING",
|
|
8
8
|
FAILED_PUBLISHING = "FAILED_PUBLISHING",
|
package/lib/asset.d.ts
CHANGED
package/lib/client.d.ts
CHANGED
package/lib/client.js
CHANGED
package/lib/index.d.ts
CHANGED
|
@@ -1,27 +1,27 @@
|
|
|
1
|
-
export * from
|
|
2
|
-
export * from
|
|
3
|
-
export * from
|
|
4
|
-
export * from
|
|
5
|
-
export * from
|
|
6
|
-
export * from
|
|
7
|
-
export * from
|
|
8
|
-
export * from
|
|
9
|
-
export * from
|
|
10
|
-
export * from
|
|
11
|
-
export * from
|
|
12
|
-
export * from
|
|
13
|
-
export * from
|
|
14
|
-
export * from
|
|
15
|
-
export * from
|
|
16
|
-
export * from
|
|
17
|
-
export * from
|
|
18
|
-
export * from
|
|
19
|
-
export * from
|
|
20
|
-
export * from
|
|
21
|
-
export * from
|
|
22
|
-
export * from
|
|
23
|
-
export * from
|
|
24
|
-
export * from
|
|
25
|
-
export * from
|
|
26
|
-
export * from
|
|
27
|
-
export * from
|
|
1
|
+
export * from './app-access-grant';
|
|
2
|
+
export * from './app-api-key';
|
|
3
|
+
export * from './app-code-package';
|
|
4
|
+
export * from './app-org';
|
|
5
|
+
export * from './app-version';
|
|
6
|
+
export * from './app-extension-definition';
|
|
7
|
+
export * from './app-extension';
|
|
8
|
+
export * from './app';
|
|
9
|
+
export * from './asset';
|
|
10
|
+
export * from './base-managed-entity';
|
|
11
|
+
export * from './client';
|
|
12
|
+
export * from './content';
|
|
13
|
+
export * from './contentholder-content';
|
|
14
|
+
export * from './file';
|
|
15
|
+
export * from './item';
|
|
16
|
+
export * from './loader';
|
|
17
|
+
export * from './log-level';
|
|
18
|
+
export * from './org';
|
|
19
|
+
export * from './project-item';
|
|
20
|
+
export * from './project';
|
|
21
|
+
export * from './property-type';
|
|
22
|
+
export * from './org-managed-entity';
|
|
23
|
+
export * from './subscription';
|
|
24
|
+
export * from './shared-links';
|
|
25
|
+
export * from './type-managed-entity';
|
|
26
|
+
export * from './user';
|
|
27
|
+
export * from './workspace-managed-entity';
|
package/lib/loader.d.ts
CHANGED
|
@@ -51,7 +51,9 @@ export interface LoadResult {
|
|
|
51
51
|
assortmentItemsLoadResult?: AssortmentItemsLoadResult;
|
|
52
52
|
transformErrors: any[];
|
|
53
53
|
transformWarnings?: any[];
|
|
54
|
-
|
|
54
|
+
generalErrors?: GeneralIssueDetails[];
|
|
55
|
+
generalWarnings?: GeneralIssueDetails[];
|
|
56
|
+
systemErrors?: GeneralIssueDetails[];
|
|
55
57
|
failureArea?: LoaderFailureArea;
|
|
56
58
|
}
|
|
57
59
|
export interface RowLoadError {
|
|
@@ -85,14 +87,8 @@ export interface ColumnIssueDetails {
|
|
|
85
87
|
export interface GeneralIssueDetails {
|
|
86
88
|
message: string;
|
|
87
89
|
issueType: IssueType;
|
|
88
|
-
issueKey?: string;
|
|
89
90
|
}
|
|
90
|
-
export interface
|
|
91
|
-
errors?: ProcessingIssues[];
|
|
92
|
-
warnings?: ProcessingIssues[];
|
|
93
|
-
globalIssues?: GeneralIssueDetails[];
|
|
94
|
-
}
|
|
95
|
-
export interface ColorLoadResult extends GeneralLoadResult {
|
|
91
|
+
export interface ColorLoadResult {
|
|
96
92
|
colorsCreated: any[];
|
|
97
93
|
colorsUpdated: any[];
|
|
98
94
|
colorsUnchanged: any[];
|
|
@@ -100,7 +96,7 @@ export interface ColorLoadResult extends GeneralLoadResult {
|
|
|
100
96
|
colorsFailedUpdate: RowLoadError[];
|
|
101
97
|
failed: boolean;
|
|
102
98
|
}
|
|
103
|
-
export interface ItemsLoadResult
|
|
99
|
+
export interface ItemsLoadResult {
|
|
104
100
|
itemsCreated: any[];
|
|
105
101
|
itemsUpdated: any[];
|
|
106
102
|
itemsUnchanged: any[];
|
|
@@ -108,7 +104,7 @@ export interface ItemsLoadResult extends GeneralLoadResult {
|
|
|
108
104
|
itemsFailedUpdate: RowLoadError[];
|
|
109
105
|
failed: boolean;
|
|
110
106
|
}
|
|
111
|
-
export interface ProjectItemsLoadResult
|
|
107
|
+
export interface ProjectItemsLoadResult {
|
|
112
108
|
projectItemsCreated: any[];
|
|
113
109
|
projectItemsUpdated: any[];
|
|
114
110
|
projectItemsUnchanged: any[];
|
|
@@ -116,7 +112,7 @@ export interface ProjectItemsLoadResult extends GeneralLoadResult {
|
|
|
116
112
|
projectItemsFailedUpdate: RowLoadError[];
|
|
117
113
|
failed: boolean;
|
|
118
114
|
}
|
|
119
|
-
export interface AssortmentItemsLoadResult
|
|
115
|
+
export interface AssortmentItemsLoadResult {
|
|
120
116
|
assortmentItemsCreated: any[];
|
|
121
117
|
assortmentItemsUpdated: any[];
|
|
122
118
|
assortmentItemsUnchanged: any[];
|
|
@@ -184,5 +180,6 @@ export declare enum LoaderFailureArea {
|
|
|
184
180
|
PARSING_CSV = "PARSING_CSV",
|
|
185
181
|
TRANSFORMING_DATA = "TRANSFORMING_DATA",
|
|
186
182
|
UPLOADING_DATA = "UPLOADING_DATA",
|
|
183
|
+
VALIDATING_DATA = "VALIDATING_DATA",
|
|
187
184
|
NONE = "NONE"
|
|
188
185
|
}
|
package/lib/loader.js
CHANGED
|
@@ -98,5 +98,6 @@ var LoaderFailureArea;
|
|
|
98
98
|
LoaderFailureArea["PARSING_CSV"] = "PARSING_CSV";
|
|
99
99
|
LoaderFailureArea["TRANSFORMING_DATA"] = "TRANSFORMING_DATA";
|
|
100
100
|
LoaderFailureArea["UPLOADING_DATA"] = "UPLOADING_DATA";
|
|
101
|
+
LoaderFailureArea["VALIDATING_DATA"] = "VALIDATING_DATA";
|
|
101
102
|
LoaderFailureArea["NONE"] = "NONE";
|
|
102
103
|
})(LoaderFailureArea = exports.LoaderFailureArea || (exports.LoaderFailureArea = {}));
|
package/lib/org.d.ts
CHANGED
package/lib/project.d.ts
CHANGED
package/lib/shared-links.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { OrgManagedEntity } from
|
|
2
|
-
import { Group, User } from
|
|
1
|
+
import { OrgManagedEntity } from './org-managed-entity';
|
|
2
|
+
import { Group, User } from './user';
|
|
3
3
|
export declare enum SharedLinkAccessLevel {
|
|
4
4
|
RESTRICTED = "RESTRICTED",
|
|
5
5
|
VIEW = "VIEW",
|
package/lib/subscription.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { OrgManagedEntity } from
|
|
2
|
-
import { Group, User } from
|
|
1
|
+
import { OrgManagedEntity } from './org-managed-entity';
|
|
2
|
+
import { Group, User } from './user';
|
|
3
3
|
export declare enum SubscriptionType {
|
|
4
4
|
COMMENT_ON_OWNED = "COMMENT_ON_OWNED",
|
|
5
5
|
COMMENT = "COMMENT",
|
package/lib/user.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { BaseManagedEntity } from
|
|
2
|
-
import { Org } from
|
|
3
|
-
import { OrgManagedEntity } from
|
|
1
|
+
import { BaseManagedEntity } from './base-managed-entity';
|
|
2
|
+
import { Org } from './org';
|
|
3
|
+
import { OrgManagedEntity } from './org-managed-entity';
|
|
4
4
|
export declare enum UserOrgRole {
|
|
5
5
|
admin = "ADMIN",
|
|
6
6
|
member = "MEMBER",
|