@aepstore-dev/contracts 1.108.0 → 1.108.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/gen/taxonomy.d.ts +5 -0
- package/gen/taxonomy.ts +7 -0
- package/gen/users.d.ts +1 -0
- package/gen/users.ts +3 -0
- package/package.json +2 -1
- package/proto/taxonomy.proto +9 -4
- package/proto/users.proto +1 -0
package/gen/taxonomy.d.ts
CHANGED
|
@@ -47,11 +47,13 @@ export interface CategoryResponse {
|
|
|
47
47
|
category: Category | undefined;
|
|
48
48
|
}
|
|
49
49
|
export interface CreateApplicationRequest {
|
|
50
|
+
ownerId?: string | undefined;
|
|
50
51
|
name: string;
|
|
51
52
|
description: string;
|
|
52
53
|
iconUrl: string;
|
|
53
54
|
}
|
|
54
55
|
export interface UpdateApplicationRequest {
|
|
56
|
+
ownerId?: string | undefined;
|
|
55
57
|
id: string;
|
|
56
58
|
/** optional — empty keeps current */
|
|
57
59
|
name: string;
|
|
@@ -64,11 +66,14 @@ export interface ApplicationResponse {
|
|
|
64
66
|
application: Application | undefined;
|
|
65
67
|
}
|
|
66
68
|
export interface CreateIconUploadUrlRequest {
|
|
69
|
+
ownerId?: string | undefined;
|
|
67
70
|
fileName: string;
|
|
68
71
|
/** e.g. image/svg+xml */
|
|
69
72
|
mimeType: string;
|
|
70
73
|
}
|
|
71
74
|
export interface IconUploadUrlResponse {
|
|
75
|
+
sessionId?: string | undefined;
|
|
76
|
+
status?: string | undefined;
|
|
72
77
|
/** presigned PUT URL — client uploads the SVG bytes here */
|
|
73
78
|
uploadUrl: string;
|
|
74
79
|
/** final public URL to store as Application.iconUrl */
|
package/gen/taxonomy.ts
CHANGED
|
@@ -67,12 +67,14 @@ export interface CategoryResponse {
|
|
|
67
67
|
}
|
|
68
68
|
|
|
69
69
|
export interface CreateApplicationRequest {
|
|
70
|
+
ownerId?: string | undefined;
|
|
70
71
|
name: string;
|
|
71
72
|
description: string;
|
|
72
73
|
iconUrl: string;
|
|
73
74
|
}
|
|
74
75
|
|
|
75
76
|
export interface UpdateApplicationRequest {
|
|
77
|
+
ownerId?: string | undefined;
|
|
76
78
|
id: string;
|
|
77
79
|
/** optional — empty keeps current */
|
|
78
80
|
name: string;
|
|
@@ -87,12 +89,17 @@ export interface ApplicationResponse {
|
|
|
87
89
|
}
|
|
88
90
|
|
|
89
91
|
export interface CreateIconUploadUrlRequest {
|
|
92
|
+
ownerId?: string | undefined;
|
|
90
93
|
fileName: string;
|
|
91
94
|
/** e.g. image/svg+xml */
|
|
92
95
|
mimeType: string;
|
|
93
96
|
}
|
|
94
97
|
|
|
95
98
|
export interface IconUploadUrlResponse {
|
|
99
|
+
sessionId?: string | undefined;
|
|
100
|
+
status?:
|
|
101
|
+
| string
|
|
102
|
+
| undefined;
|
|
96
103
|
/** presigned PUT URL — client uploads the SVG bytes here */
|
|
97
104
|
uploadUrl: string;
|
|
98
105
|
/** final public URL to store as Application.iconUrl */
|
package/gen/users.d.ts
CHANGED
package/gen/users.ts
CHANGED
package/package.json
CHANGED
package/proto/taxonomy.proto
CHANGED
|
@@ -75,13 +75,15 @@ message CategoryResponse {
|
|
|
75
75
|
Category category = 1;
|
|
76
76
|
}
|
|
77
77
|
|
|
78
|
-
message CreateApplicationRequest {
|
|
78
|
+
message CreateApplicationRequest {
|
|
79
|
+
optional string owner_id = 4;
|
|
79
80
|
string name = 1;
|
|
80
81
|
string description = 2;
|
|
81
82
|
string icon_url = 3;
|
|
82
83
|
}
|
|
83
84
|
|
|
84
|
-
message UpdateApplicationRequest {
|
|
85
|
+
message UpdateApplicationRequest {
|
|
86
|
+
optional string owner_id = 5;
|
|
85
87
|
string id = 1;
|
|
86
88
|
string name = 2; // optional — empty keeps current
|
|
87
89
|
string description = 3; // optional
|
|
@@ -92,12 +94,15 @@ message ApplicationResponse {
|
|
|
92
94
|
Application application = 1;
|
|
93
95
|
}
|
|
94
96
|
|
|
95
|
-
message CreateIconUploadUrlRequest {
|
|
97
|
+
message CreateIconUploadUrlRequest {
|
|
98
|
+
optional string owner_id = 3;
|
|
96
99
|
string file_name = 1;
|
|
97
100
|
string mime_type = 2; // e.g. image/svg+xml
|
|
98
101
|
}
|
|
99
102
|
|
|
100
|
-
message IconUploadUrlResponse {
|
|
103
|
+
message IconUploadUrlResponse {
|
|
104
|
+
optional string session_id = 5;
|
|
105
|
+
optional string status = 6;
|
|
101
106
|
string upload_url = 1; // presigned PUT URL — client uploads the SVG bytes here
|
|
102
107
|
string icon_url = 2; // final public URL to store as Application.iconUrl
|
|
103
108
|
string file_key = 3;
|
package/proto/users.proto
CHANGED