mirror of
https://github.com/zitadel/zitadel.git
synced 2025-10-08 19:21:32 +00:00

Moves UserService, SessionService, SettingsService and OIDCService to beta state. This includes gRPC and HTTP path changes.
14 lines
330 B
Protocol Buffer
14 lines
330 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package zitadel.settings.v2beta;
|
|
|
|
option go_package = "github.com/zitadel/zitadel/pkg/grpc/settings/v2beta;settings";
|
|
|
|
import "protoc-gen-openapiv2/options/annotations.proto";
|
|
|
|
enum ResourceOwnerType {
|
|
RESOURCE_OWNER_TYPE_UNSPECIFIED = 0;
|
|
RESOURCE_OWNER_TYPE_INSTANCE = 1;
|
|
RESOURCE_OWNER_TYPE_ORG = 2;
|
|
}
|