@agravity/private 10.1.6 → 10.2.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/model/models.ts CHANGED
@@ -6,6 +6,7 @@ export * from './agravityUserDto.agravity';
6
6
  export * from './agravityUserOnlineStatus.agravity';
7
7
  export * from './agravityVersion.agravity';
8
8
  export * from './aiAsset.agravity';
9
+ export * from './aiAssetStatus.agravity';
9
10
  export * from './aiFieldGeneration.agravity';
10
11
  export * from './aiModelDeployment.agravity';
11
12
  export * from './aiSettings.agravity';
@@ -54,6 +55,7 @@ export * from './entityTranslations.agravity';
54
55
  export * from './excelExportTableEntity.agravity';
55
56
  export * from './excelImportTableEntity.agravity';
56
57
  export * from './exportFieldDefinition.agravity';
58
+ export * from './feature.agravity';
57
59
  export * from './frontendAppConfig.agravity';
58
60
  export * from './groupAllAppData.agravity';
59
61
  export * from './historyEntry.agravity';
@@ -63,16 +65,18 @@ export * from './httpRequestAvailableExportFieldsInputParameter.agravity';
63
65
  export * from './infoEntitySkillEnhanced.agravity';
64
66
  export * from './metadata.agravity';
65
67
  export * from './moveCollectionBody.agravity';
66
- export * from './notificationSettingDto.agravity';
68
+ export * from './notificationSettingsEntry.agravity';
67
69
  export * from './permissionChange.agravity';
68
70
  export * from './permissionEntity.agravity';
69
71
  export * from './permissionSetting.agravity';
72
+ export * from './permissionToProfileBody.agravity';
70
73
  export * from './portal.agravity';
71
74
  export * from './portalAuthentication.agravity';
72
75
  export * from './portalFields.agravity';
73
76
  export * from './portalLinks.agravity';
74
77
  export * from './portalTheme.agravity';
75
78
  export * from './portalUserContext.agravity';
79
+ export * from './profile.agravity';
76
80
  export * from './publishEntity.agravity';
77
81
  export * from './publishedAsset.agravity';
78
82
  export * from './quickShare.agravity';
@@ -102,7 +106,6 @@ export * from './signalRConnectionInfo.agravity';
102
106
  export * from './staticDefinedList.agravity';
103
107
  export * from './translation.agravity';
104
108
  export * from './translationRequest.agravity';
105
- export * from './uiTutorials.agravity';
106
109
  export * from './versionEntity.agravity';
107
110
  export * from './versionedAsset.agravity';
108
111
  export * from './whereParam.agravity';
@@ -8,11 +8,10 @@
8
8
  * Do not edit the class manually.
9
9
  */
10
10
 
11
- export interface NotificationSettingDto {
11
+ export interface NotificationSettingsEntry {
12
12
  id?: string | null;
13
+ coll_id?: string | null;
13
14
  event_types?: Array<string> | null;
14
15
  frequency?: string | null;
15
- coll_id?: string | null;
16
16
  include_sub_collections?: boolean | null;
17
- pk?: string | null;
18
17
  }
@@ -0,0 +1,14 @@
1
+ /**
2
+ * Agravity OpenAPI Documentation - Private Functions
3
+ *
4
+ * Contact: office@agravity.io
5
+ *
6
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
7
+ * https://openapi-generator.tech
8
+ * Do not edit the class manually.
9
+ */
10
+
11
+ export interface PermissionToProfileBody {
12
+ operation?: string | null;
13
+ permissions?: Array<string> | null;
14
+ }
@@ -0,0 +1,26 @@
1
+ /**
2
+ * Agravity OpenAPI Documentation - Private Functions
3
+ *
4
+ * Contact: office@agravity.io
5
+ *
6
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
7
+ * https://openapi-generator.tech
8
+ * Do not edit the class manually.
9
+ */
10
+
11
+ export interface Profile {
12
+ id?: string | null;
13
+ entity_type?: string | null;
14
+ feature_permissions?: Array<string> | null;
15
+ users_groups?: Array<string> | null;
16
+ name?: string | null;
17
+ description?: string | null;
18
+ add_properties?: { [key: string]: any } | null;
19
+ status?: string | null;
20
+ created_date?: string | null;
21
+ created_by?: string | null;
22
+ modified_date?: string | null;
23
+ modified_by?: string | null;
24
+ pk?: string | null;
25
+ _etag?: string | null;
26
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agravity/private",
3
- "version": "10.1.6",
3
+ "version": "10.2.1",
4
4
  "description": "The Agravity GlobalDAM API which allowes authenticated user to access the Agravity GlobalDAM Backend",
5
5
  "author": "Philipp Losbichler",
6
6
  "repository": {
@@ -1,21 +0,0 @@
1
- /**
2
- * Agravity OpenAPI Documentation - Private Functions
3
- *
4
- * Contact: office@agravity.io
5
- *
6
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
7
- * https://openapi-generator.tech
8
- * Do not edit the class manually.
9
- */
10
-
11
- export interface UiTutorials {
12
- id?: string;
13
- status?: UiTutorials.StatusEnum;
14
- }
15
- export namespace UiTutorials {
16
- export const StatusEnum = {
17
- P: 'P',
18
- F: 'F'
19
- } as const;
20
- export type StatusEnum = (typeof StatusEnum)[keyof typeof StatusEnum];
21
- }