@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 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
@@ -513,6 +513,7 @@ export interface ListAvatarBordersResponse {
513
513
  items: AvatarBorder[];
514
514
  }
515
515
  export interface UpsertAvatarBorderRequest {
516
+ ownerId?: string | undefined;
516
517
  /** empty = create */
517
518
  id: string;
518
519
  /** required when creating */
package/gen/users.ts CHANGED
@@ -592,6 +592,9 @@ export interface ListAvatarBordersResponse {
592
592
  }
593
593
 
594
594
  export interface UpsertAvatarBorderRequest {
595
+ ownerId?:
596
+ | string
597
+ | undefined;
595
598
  /** empty = create */
596
599
  id: string;
597
600
  /** required when creating */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aepstore-dev/contracts",
3
- "version": "1.108.0",
3
+ "version": "1.108.1",
4
4
  "description": "Protobuf definitions for aepstore microservices",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -34,3 +34,4 @@
34
34
  }
35
35
  }
36
36
 
37
+
@@ -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
@@ -646,6 +646,7 @@ message ListAvatarBordersResponse {
646
646
  }
647
647
 
648
648
  message UpsertAvatarBorderRequest {
649
+ optional string owner_id = 10;
649
650
  string id = 1; // empty = create
650
651
  string code = 2; // required when creating
651
652
  string name = 3;