@devvit/protos 0.11.17-next-2025-05-29-a6864e710.0 → 0.11.17-next-2025-05-29-56029c461.0

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devvit/protos",
3
- "version": "0.11.17-next-2025-05-29-a6864e710.0",
3
+ "version": "0.11.17-next-2025-05-29-56029c461.0",
4
4
  "license": "BSD-3-Clause",
5
5
  "repository": {
6
6
  "type": "git",
@@ -45,8 +45,8 @@
45
45
  },
46
46
  "devDependencies": {
47
47
  "@ampproject/filesize": "4.3.0",
48
- "@devvit/repo-tools": "0.11.17-next-2025-05-29-a6864e710.0",
49
- "@devvit/tsconfig": "0.11.17-next-2025-05-29-a6864e710.0",
48
+ "@devvit/repo-tools": "0.11.17-next-2025-05-29-56029c461.0",
49
+ "@devvit/tsconfig": "0.11.17-next-2025-05-29-56029c461.0",
50
50
  "@protobuf-ts/plugin": "2.9.3",
51
51
  "@types/long": "4.0.2",
52
52
  "chokidar-cli": "3.0.0",
@@ -80,5 +80,5 @@
80
80
  ]
81
81
  }
82
82
  },
83
- "gitHead": "29dacc427b2be723ace53173f8195e6635721415"
83
+ "gitHead": "5b71a6e7c2128ed851dcc90ec38b6f475fef42b1"
84
84
  }
@@ -2,6 +2,7 @@ syntax = "proto3";
2
2
 
3
3
  package devvit.dev_portal.data_api.admin.audit;
4
4
 
5
+ import "devvit/data/api/admin/v1alpha/organization.proto";
5
6
  import "google/protobuf/timestamp.proto";
6
7
 
7
8
  option go_package = "github.snooguts.net/reddit/reddit-devplatform-monorepo/go-common/generated/protos/types/devvit/devportal/data_api/admin/audit";
@@ -13,6 +14,7 @@ enum AuditLogEventType {
13
14
  DATA_TOKEN_CREATE = 3;
14
15
  DATA_TOKEN_REVOKE = 4;
15
16
  ORGANIZATION_DELETE = 5;
17
+ ORGANIZATION_UPDATE = 6;
16
18
  }
17
19
 
18
20
  message AuditLogEvent {
@@ -27,6 +29,8 @@ message AuditLogEvent {
27
29
  DataSubscriptionCreateAuditLogEventPayload data_subscription_create_payload = 8;
28
30
  DataSubscriptionUpdateAuditLogEventPayload data_subscription_update_payload = 9;
29
31
  DataSubscriptionDeleteAuditLogEventPayload data_subscription_delete_payload = 10;
32
+ OrganizationDeleteAuditLogEventPayload organization_delete_payload = 13;
33
+ OrganizationUpdateAuditLogEventPayload organization_update_payload = 14;
30
34
  }
31
35
  // username of the user who performed the action without the u/ prefix
32
36
  // @example "spez"
@@ -54,6 +58,14 @@ message DataSubscriptionDeleteAuditLogEventPayload {
54
58
  string subscription_id = 1;
55
59
  }
56
60
 
61
+ message OrganizationDeleteAuditLogEventPayload {
62
+ devvit.data.api.admin.v1alpha.Organization organization = 1;
63
+ }
64
+
65
+ message OrganizationUpdateAuditLogEventPayload {
66
+ devvit.data.api.admin.v1alpha.Organization organization = 1;
67
+ }
68
+
57
69
  message GetAuditLogEventsRequest {
58
70
  string organization_name = 1;
59
71
  }