@wundergraph/cosmo-connect 0.25.0 → 0.27.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.
@@ -6002,6 +6002,259 @@ export class IsGitHubAppInstalledResponse extends Message {
6002
6002
  return proto3.util.equals(IsGitHubAppInstalledResponse, a, b);
6003
6003
  }
6004
6004
  }
6005
+ /**
6006
+ * @generated from message wg.cosmo.platform.v1.GroupMapper
6007
+ */
6008
+ export class GroupMapper extends Message {
6009
+ /**
6010
+ * @generated from field: string role = 1;
6011
+ */
6012
+ role = "";
6013
+ /**
6014
+ * @generated from field: string ssoGroup = 2;
6015
+ */
6016
+ ssoGroup = "";
6017
+ constructor(data) {
6018
+ super();
6019
+ proto3.util.initPartial(data, this);
6020
+ }
6021
+ static runtime = proto3;
6022
+ static typeName = "wg.cosmo.platform.v1.GroupMapper";
6023
+ static fields = proto3.util.newFieldList(() => [
6024
+ { no: 1, name: "role", kind: "scalar", T: 9 /* ScalarType.STRING */ },
6025
+ { no: 2, name: "ssoGroup", kind: "scalar", T: 9 /* ScalarType.STRING */ },
6026
+ ]);
6027
+ static fromBinary(bytes, options) {
6028
+ return new GroupMapper().fromBinary(bytes, options);
6029
+ }
6030
+ static fromJson(jsonValue, options) {
6031
+ return new GroupMapper().fromJson(jsonValue, options);
6032
+ }
6033
+ static fromJsonString(jsonString, options) {
6034
+ return new GroupMapper().fromJsonString(jsonString, options);
6035
+ }
6036
+ static equals(a, b) {
6037
+ return proto3.util.equals(GroupMapper, a, b);
6038
+ }
6039
+ }
6040
+ /**
6041
+ * @generated from message wg.cosmo.platform.v1.CreateOIDCProviderRequest
6042
+ */
6043
+ export class CreateOIDCProviderRequest extends Message {
6044
+ /**
6045
+ * @generated from field: string name = 1;
6046
+ */
6047
+ name = "";
6048
+ /**
6049
+ * @generated from field: string discoveryEndpoint = 2;
6050
+ */
6051
+ discoveryEndpoint = "";
6052
+ /**
6053
+ * @generated from field: string clientID = 3;
6054
+ */
6055
+ clientID = "";
6056
+ /**
6057
+ * @generated from field: string clientSecrect = 4;
6058
+ */
6059
+ clientSecrect = "";
6060
+ /**
6061
+ * @generated from field: repeated wg.cosmo.platform.v1.GroupMapper mappers = 5;
6062
+ */
6063
+ mappers = [];
6064
+ constructor(data) {
6065
+ super();
6066
+ proto3.util.initPartial(data, this);
6067
+ }
6068
+ static runtime = proto3;
6069
+ static typeName = "wg.cosmo.platform.v1.CreateOIDCProviderRequest";
6070
+ static fields = proto3.util.newFieldList(() => [
6071
+ { no: 1, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
6072
+ { no: 2, name: "discoveryEndpoint", kind: "scalar", T: 9 /* ScalarType.STRING */ },
6073
+ { no: 3, name: "clientID", kind: "scalar", T: 9 /* ScalarType.STRING */ },
6074
+ { no: 4, name: "clientSecrect", kind: "scalar", T: 9 /* ScalarType.STRING */ },
6075
+ { no: 5, name: "mappers", kind: "message", T: GroupMapper, repeated: true },
6076
+ ]);
6077
+ static fromBinary(bytes, options) {
6078
+ return new CreateOIDCProviderRequest().fromBinary(bytes, options);
6079
+ }
6080
+ static fromJson(jsonValue, options) {
6081
+ return new CreateOIDCProviderRequest().fromJson(jsonValue, options);
6082
+ }
6083
+ static fromJsonString(jsonString, options) {
6084
+ return new CreateOIDCProviderRequest().fromJsonString(jsonString, options);
6085
+ }
6086
+ static equals(a, b) {
6087
+ return proto3.util.equals(CreateOIDCProviderRequest, a, b);
6088
+ }
6089
+ }
6090
+ /**
6091
+ * @generated from message wg.cosmo.platform.v1.CreateOIDCProviderResponse
6092
+ */
6093
+ export class CreateOIDCProviderResponse extends Message {
6094
+ /**
6095
+ * @generated from field: wg.cosmo.platform.v1.Response response = 1;
6096
+ */
6097
+ response;
6098
+ /**
6099
+ * @generated from field: string signInURL = 2;
6100
+ */
6101
+ signInURL = "";
6102
+ /**
6103
+ * @generated from field: string signOutURL = 3;
6104
+ */
6105
+ signOutURL = "";
6106
+ /**
6107
+ * @generated from field: string loginURL = 4;
6108
+ */
6109
+ loginURL = "";
6110
+ constructor(data) {
6111
+ super();
6112
+ proto3.util.initPartial(data, this);
6113
+ }
6114
+ static runtime = proto3;
6115
+ static typeName = "wg.cosmo.platform.v1.CreateOIDCProviderResponse";
6116
+ static fields = proto3.util.newFieldList(() => [
6117
+ { no: 1, name: "response", kind: "message", T: Response },
6118
+ { no: 2, name: "signInURL", kind: "scalar", T: 9 /* ScalarType.STRING */ },
6119
+ { no: 3, name: "signOutURL", kind: "scalar", T: 9 /* ScalarType.STRING */ },
6120
+ { no: 4, name: "loginURL", kind: "scalar", T: 9 /* ScalarType.STRING */ },
6121
+ ]);
6122
+ static fromBinary(bytes, options) {
6123
+ return new CreateOIDCProviderResponse().fromBinary(bytes, options);
6124
+ }
6125
+ static fromJson(jsonValue, options) {
6126
+ return new CreateOIDCProviderResponse().fromJson(jsonValue, options);
6127
+ }
6128
+ static fromJsonString(jsonString, options) {
6129
+ return new CreateOIDCProviderResponse().fromJsonString(jsonString, options);
6130
+ }
6131
+ static equals(a, b) {
6132
+ return proto3.util.equals(CreateOIDCProviderResponse, a, b);
6133
+ }
6134
+ }
6135
+ /**
6136
+ * @generated from message wg.cosmo.platform.v1.GetOIDCProviderRequest
6137
+ */
6138
+ export class GetOIDCProviderRequest extends Message {
6139
+ constructor(data) {
6140
+ super();
6141
+ proto3.util.initPartial(data, this);
6142
+ }
6143
+ static runtime = proto3;
6144
+ static typeName = "wg.cosmo.platform.v1.GetOIDCProviderRequest";
6145
+ static fields = proto3.util.newFieldList(() => []);
6146
+ static fromBinary(bytes, options) {
6147
+ return new GetOIDCProviderRequest().fromBinary(bytes, options);
6148
+ }
6149
+ static fromJson(jsonValue, options) {
6150
+ return new GetOIDCProviderRequest().fromJson(jsonValue, options);
6151
+ }
6152
+ static fromJsonString(jsonString, options) {
6153
+ return new GetOIDCProviderRequest().fromJsonString(jsonString, options);
6154
+ }
6155
+ static equals(a, b) {
6156
+ return proto3.util.equals(GetOIDCProviderRequest, a, b);
6157
+ }
6158
+ }
6159
+ /**
6160
+ * @generated from message wg.cosmo.platform.v1.GetOIDCProviderResponse
6161
+ */
6162
+ export class GetOIDCProviderResponse extends Message {
6163
+ /**
6164
+ * @generated from field: wg.cosmo.platform.v1.Response response = 1;
6165
+ */
6166
+ response;
6167
+ /**
6168
+ * @generated from field: string name = 2;
6169
+ */
6170
+ name = "";
6171
+ /**
6172
+ * @generated from field: string endpoint = 3;
6173
+ */
6174
+ endpoint = "";
6175
+ /**
6176
+ * @generated from field: string loginURL = 4;
6177
+ */
6178
+ loginURL = "";
6179
+ constructor(data) {
6180
+ super();
6181
+ proto3.util.initPartial(data, this);
6182
+ }
6183
+ static runtime = proto3;
6184
+ static typeName = "wg.cosmo.platform.v1.GetOIDCProviderResponse";
6185
+ static fields = proto3.util.newFieldList(() => [
6186
+ { no: 1, name: "response", kind: "message", T: Response },
6187
+ { no: 2, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
6188
+ { no: 3, name: "endpoint", kind: "scalar", T: 9 /* ScalarType.STRING */ },
6189
+ { no: 4, name: "loginURL", kind: "scalar", T: 9 /* ScalarType.STRING */ },
6190
+ ]);
6191
+ static fromBinary(bytes, options) {
6192
+ return new GetOIDCProviderResponse().fromBinary(bytes, options);
6193
+ }
6194
+ static fromJson(jsonValue, options) {
6195
+ return new GetOIDCProviderResponse().fromJson(jsonValue, options);
6196
+ }
6197
+ static fromJsonString(jsonString, options) {
6198
+ return new GetOIDCProviderResponse().fromJsonString(jsonString, options);
6199
+ }
6200
+ static equals(a, b) {
6201
+ return proto3.util.equals(GetOIDCProviderResponse, a, b);
6202
+ }
6203
+ }
6204
+ /**
6205
+ * @generated from message wg.cosmo.platform.v1.DeleteOIDCProviderRequest
6206
+ */
6207
+ export class DeleteOIDCProviderRequest extends Message {
6208
+ constructor(data) {
6209
+ super();
6210
+ proto3.util.initPartial(data, this);
6211
+ }
6212
+ static runtime = proto3;
6213
+ static typeName = "wg.cosmo.platform.v1.DeleteOIDCProviderRequest";
6214
+ static fields = proto3.util.newFieldList(() => []);
6215
+ static fromBinary(bytes, options) {
6216
+ return new DeleteOIDCProviderRequest().fromBinary(bytes, options);
6217
+ }
6218
+ static fromJson(jsonValue, options) {
6219
+ return new DeleteOIDCProviderRequest().fromJson(jsonValue, options);
6220
+ }
6221
+ static fromJsonString(jsonString, options) {
6222
+ return new DeleteOIDCProviderRequest().fromJsonString(jsonString, options);
6223
+ }
6224
+ static equals(a, b) {
6225
+ return proto3.util.equals(DeleteOIDCProviderRequest, a, b);
6226
+ }
6227
+ }
6228
+ /**
6229
+ * @generated from message wg.cosmo.platform.v1.DeleteOIDCProviderResponse
6230
+ */
6231
+ export class DeleteOIDCProviderResponse extends Message {
6232
+ /**
6233
+ * @generated from field: wg.cosmo.platform.v1.Response response = 1;
6234
+ */
6235
+ response;
6236
+ constructor(data) {
6237
+ super();
6238
+ proto3.util.initPartial(data, this);
6239
+ }
6240
+ static runtime = proto3;
6241
+ static typeName = "wg.cosmo.platform.v1.DeleteOIDCProviderResponse";
6242
+ static fields = proto3.util.newFieldList(() => [
6243
+ { no: 1, name: "response", kind: "message", T: Response },
6244
+ ]);
6245
+ static fromBinary(bytes, options) {
6246
+ return new DeleteOIDCProviderResponse().fromBinary(bytes, options);
6247
+ }
6248
+ static fromJson(jsonValue, options) {
6249
+ return new DeleteOIDCProviderResponse().fromJson(jsonValue, options);
6250
+ }
6251
+ static fromJsonString(jsonString, options) {
6252
+ return new DeleteOIDCProviderResponse().fromJsonString(jsonString, options);
6253
+ }
6254
+ static equals(a, b) {
6255
+ return proto3.util.equals(DeleteOIDCProviderResponse, a, b);
6256
+ }
6257
+ }
6005
6258
  /**
6006
6259
  * @generated from message wg.cosmo.platform.v1.GetFieldUsageRequest
6007
6260
  */