@wundergraph/cosmo-connect
Advanced tools
Comparing version 0.75.2 to 0.76.0
@@ -1,2 +0,2 @@ | ||
import { GetConfigRequest, GetConfigResponse, SelfRegisterRequest, SelfRegisterResponse } from "./node_pb.js"; | ||
import { SelfRegisterRequest, SelfRegisterResponse } from "./node_pb.js"; | ||
import { MethodKind } from "@bufbuild/protobuf"; | ||
@@ -10,12 +10,2 @@ /** | ||
/** | ||
* @generated from rpc wg.cosmo.node.v1.NodeService.GetLatestValidRouterConfig | ||
* @deprecated | ||
*/ | ||
readonly getLatestValidRouterConfig: { | ||
readonly name: "GetLatestValidRouterConfig"; | ||
readonly I: typeof GetConfigRequest; | ||
readonly O: typeof GetConfigResponse; | ||
readonly kind: MethodKind.Unary; | ||
}; | ||
/** | ||
* @generated from rpc wg.cosmo.node.v1.NodeService.SelfRegister | ||
@@ -22,0 +12,0 @@ */ |
@@ -5,3 +5,3 @@ // @generated by protoc-gen-connect-es v1.4.0 with parameter "target=ts" | ||
// @ts-nocheck | ||
import { GetConfigRequest, GetConfigResponse, SelfRegisterRequest, SelfRegisterResponse } from "./node_pb.js"; | ||
import { SelfRegisterRequest, SelfRegisterResponse } from "./node_pb.js"; | ||
import { MethodKind } from "@bufbuild/protobuf"; | ||
@@ -15,12 +15,2 @@ /** | ||
/** | ||
* @generated from rpc wg.cosmo.node.v1.NodeService.GetLatestValidRouterConfig | ||
* @deprecated | ||
*/ | ||
getLatestValidRouterConfig: { | ||
name: "GetLatestValidRouterConfig", | ||
I: GetConfigRequest, | ||
O: GetConfigResponse, | ||
kind: MethodKind.Unary, | ||
}, | ||
/** | ||
* @generated from rpc wg.cosmo.node.v1.NodeService.SelfRegister | ||
@@ -27,0 +17,0 @@ */ |
@@ -136,2 +136,46 @@ import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage } from "@bufbuild/protobuf"; | ||
/** | ||
* @generated from message wg.cosmo.node.v1.FeatureFlagRouterExecutionConfigs | ||
*/ | ||
export declare class FeatureFlagRouterExecutionConfigs extends Message<FeatureFlagRouterExecutionConfigs> { | ||
/** | ||
* @generated from field: map<string, wg.cosmo.node.v1.FeatureFlagRouterExecutionConfig> config_by_feature_flag_name = 1; | ||
*/ | ||
configByFeatureFlagName: { | ||
[key: string]: FeatureFlagRouterExecutionConfig; | ||
}; | ||
constructor(data?: PartialMessage<FeatureFlagRouterExecutionConfigs>); | ||
static readonly runtime: typeof proto3; | ||
static readonly typeName = "wg.cosmo.node.v1.FeatureFlagRouterExecutionConfigs"; | ||
static readonly fields: FieldList; | ||
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FeatureFlagRouterExecutionConfigs; | ||
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FeatureFlagRouterExecutionConfigs; | ||
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FeatureFlagRouterExecutionConfigs; | ||
static equals(a: FeatureFlagRouterExecutionConfigs | PlainMessage<FeatureFlagRouterExecutionConfigs> | undefined, b: FeatureFlagRouterExecutionConfigs | PlainMessage<FeatureFlagRouterExecutionConfigs> | undefined): boolean; | ||
} | ||
/** | ||
* @generated from message wg.cosmo.node.v1.FeatureFlagRouterExecutionConfig | ||
*/ | ||
export declare class FeatureFlagRouterExecutionConfig extends Message<FeatureFlagRouterExecutionConfig> { | ||
/** | ||
* @generated from field: wg.cosmo.node.v1.EngineConfiguration engine_config = 1; | ||
*/ | ||
engineConfig?: EngineConfiguration; | ||
/** | ||
* @generated from field: string version = 2; | ||
*/ | ||
version: string; | ||
/** | ||
* @generated from field: repeated wg.cosmo.node.v1.Subgraph subgraphs = 3; | ||
*/ | ||
subgraphs: Subgraph[]; | ||
constructor(data?: PartialMessage<FeatureFlagRouterExecutionConfig>); | ||
static readonly runtime: typeof proto3; | ||
static readonly typeName = "wg.cosmo.node.v1.FeatureFlagRouterExecutionConfig"; | ||
static readonly fields: FieldList; | ||
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FeatureFlagRouterExecutionConfig; | ||
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FeatureFlagRouterExecutionConfig; | ||
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FeatureFlagRouterExecutionConfig; | ||
static equals(a: FeatureFlagRouterExecutionConfig | PlainMessage<FeatureFlagRouterExecutionConfig> | undefined, b: FeatureFlagRouterExecutionConfig | PlainMessage<FeatureFlagRouterExecutionConfig> | undefined): boolean; | ||
} | ||
/** | ||
* @generated from message wg.cosmo.node.v1.RouterConfig | ||
@@ -152,2 +196,8 @@ */ | ||
subgraphs: Subgraph[]; | ||
/** | ||
* The map of feature flag router execution configs requires a wrapper to be non-breaking | ||
* | ||
* @generated from field: optional wg.cosmo.node.v1.FeatureFlagRouterExecutionConfigs feature_flag_configs = 4; | ||
*/ | ||
featureFlagConfigs?: FeatureFlagRouterExecutionConfigs; | ||
constructor(data?: PartialMessage<RouterConfig>); | ||
@@ -207,54 +257,2 @@ static readonly runtime: typeof proto3; | ||
/** | ||
* @generated from message wg.cosmo.node.v1.GetConfigRequest | ||
*/ | ||
export declare class GetConfigRequest extends Message<GetConfigRequest> { | ||
/** | ||
* With the introduction of namespaces, we no longer need the graph name. We keep it for backwards compatibility. | ||
* The FQDN of the graph to get the config for e.g. "wg.production" | ||
* | ||
* @generated from field: string graph_name = 1 [deprecated = true]; | ||
* @deprecated | ||
*/ | ||
graphName: string; | ||
/** | ||
* The version to check for. If the version is not specified, the latest router config version will be returned. | ||
* Otherwise, the version will be used to check if a newer version of the router config is available. | ||
* That allow us to not send the router config if the version is the same. | ||
* | ||
* @generated from field: optional string version = 2; | ||
*/ | ||
version?: string; | ||
constructor(data?: PartialMessage<GetConfigRequest>); | ||
static readonly runtime: typeof proto3; | ||
static readonly typeName = "wg.cosmo.node.v1.GetConfigRequest"; | ||
static readonly fields: FieldList; | ||
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetConfigRequest; | ||
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetConfigRequest; | ||
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetConfigRequest; | ||
static equals(a: GetConfigRequest | PlainMessage<GetConfigRequest> | undefined, b: GetConfigRequest | PlainMessage<GetConfigRequest> | undefined): boolean; | ||
} | ||
/** | ||
* @generated from message wg.cosmo.node.v1.GetConfigResponse | ||
*/ | ||
export declare class GetConfigResponse extends Message<GetConfigResponse> { | ||
/** | ||
* @generated from field: wg.cosmo.node.v1.Response response = 1; | ||
*/ | ||
response?: Response; | ||
/** | ||
* RouterConfig is the router config for the graph. It can be nil when a version is specified and the version is the same as the latest version. | ||
* | ||
* @generated from field: optional wg.cosmo.node.v1.RouterConfig config = 2; | ||
*/ | ||
config?: RouterConfig; | ||
constructor(data?: PartialMessage<GetConfigResponse>); | ||
static readonly runtime: typeof proto3; | ||
static readonly typeName = "wg.cosmo.node.v1.GetConfigResponse"; | ||
static readonly fields: FieldList; | ||
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetConfigResponse; | ||
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetConfigResponse; | ||
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetConfigResponse; | ||
static equals(a: GetConfigResponse | PlainMessage<GetConfigResponse> | undefined, b: GetConfigResponse | PlainMessage<GetConfigResponse> | undefined): boolean; | ||
} | ||
/** | ||
* @generated from message wg.cosmo.node.v1.RegistrationInfo | ||
@@ -261,0 +259,0 @@ */ |
import { MethodKind } from "@bufbuild/protobuf"; | ||
import { GetConfigRequest, GetConfigResponse, SelfRegisterRequest, SelfRegisterResponse } from "./node_pb.js"; | ||
import { SelfRegisterRequest, SelfRegisterResponse } from "./node_pb.js"; | ||
/** | ||
* @generated from rpc wg.cosmo.node.v1.NodeService.GetLatestValidRouterConfig | ||
* @deprecated | ||
*/ | ||
export declare const getLatestValidRouterConfig: { | ||
readonly localName: "getLatestValidRouterConfig"; | ||
readonly name: "GetLatestValidRouterConfig"; | ||
readonly kind: MethodKind.Unary; | ||
readonly I: typeof GetConfigRequest; | ||
readonly O: typeof GetConfigResponse; | ||
readonly service: { | ||
readonly typeName: "wg.cosmo.node.v1.NodeService"; | ||
}; | ||
}; | ||
/** | ||
* @generated from rpc wg.cosmo.node.v1.NodeService.SelfRegister | ||
@@ -19,0 +5,0 @@ */ |
@@ -6,18 +6,4 @@ // @generated by protoc-gen-connect-query v1.4.1 with parameter "target=ts" | ||
import { MethodKind } from "@bufbuild/protobuf"; | ||
import { GetConfigRequest, GetConfigResponse, SelfRegisterRequest, SelfRegisterResponse } from "./node_pb.js"; | ||
import { SelfRegisterRequest, SelfRegisterResponse } from "./node_pb.js"; | ||
/** | ||
* @generated from rpc wg.cosmo.node.v1.NodeService.GetLatestValidRouterConfig | ||
* @deprecated | ||
*/ | ||
export const getLatestValidRouterConfig = { | ||
localName: "getLatestValidRouterConfig", | ||
name: "GetLatestValidRouterConfig", | ||
kind: MethodKind.Unary, | ||
I: GetConfigRequest, | ||
O: GetConfigResponse, | ||
service: { | ||
typeName: "wg.cosmo.node.v1.NodeService" | ||
} | ||
}; | ||
/** | ||
* @generated from rpc wg.cosmo.node.v1.NodeService.SelfRegister | ||
@@ -24,0 +10,0 @@ */ |
@@ -6,5 +6,4 @@ // https://protobuf.dev/programming-guides/style/ | ||
// @ts-nocheck | ||
import { AcceptOrDeclineInvitationRequest, AcceptOrDeclineInvitationResponse, AddReadmeRequest, AddReadmeResponse, AddSubgraphMemberRequest, AddSubgraphMemberResponse, CheckFederatedGraphRequest, CheckFederatedGraphResponse, CheckSubgraphSchemaRequest, CheckSubgraphSchemaResponse, ConfigureNamespaceLintConfigRequest, ConfigureNamespaceLintConfigResponse, CreateAPIKeyRequest, CreateAPIKeyResponse, CreateBillingPortalSessionRequest, CreateBillingPortalSessionResponse, CreateCheckoutSessionRequest, CreateCheckoutSessionResponse, CreateContractRequest, CreateContractResponse, CreateDiscussionRequest, CreateDiscussionResponse, CreateFederatedGraphRequest, CreateFederatedGraphResponse, CreateFederatedGraphTokenRequest, CreateFederatedGraphTokenResponse, CreateFederatedSubgraphRequest, CreateFederatedSubgraphResponse, CreateIntegrationRequest, CreateIntegrationResponse, CreateMonographRequest, CreateMonographResponse, CreateNamespaceRequest, CreateNamespaceResponse, CreateOIDCProviderRequest, CreateOIDCProviderResponse, CreateOperationIgnoreAllOverrideRequest, CreateOperationIgnoreAllOverrideResponse, CreateOperationOverridesRequest, CreateOperationOverridesResponse, CreateOrganizationRequest, CreateOrganizationResponse, CreateOrganizationWebhookConfigRequest, CreateOrganizationWebhookConfigResponse, DeleteAPIKeyRequest, DeleteAPIKeyResponse, DeleteDiscussionCommentRequest, DeleteDiscussionCommentResponse, DeleteFederatedGraphRequest, DeleteFederatedGraphResponse, DeleteFederatedSubgraphRequest, DeleteFederatedSubgraphResponse, DeleteIntegrationRequest, DeleteIntegrationResponse, DeleteMonographRequest, DeleteMonographResponse, DeleteNamespaceRequest, DeleteNamespaceResponse, DeleteOIDCProviderRequest, DeleteOIDCProviderResponse, DeleteOrganizationRequest, DeleteOrganizationResponse, DeleteOrganizationWebhookConfigRequest, DeleteOrganizationWebhookConfigResponse, DeleteRouterTokenRequest, DeleteRouterTokenResponse, EnableLintingForTheNamespaceRequest, EnableLintingForTheNamespaceResponse, FixSubgraphSchemaRequest, FixSubgraphSchemaResponse, ForceCheckSuccessRequest, ForceCheckSuccessResponse, GenerateRouterTokenRequest, GenerateRouterTokenResponse, GetAllDiscussionsRequest, GetAllDiscussionsResponse, GetAllOverridesRequest, GetAllOverridesResponse, GetAnalyticsViewRequest, GetAnalyticsViewResponse, GetAPIKeysRequest, GetAPIKeysResponse, GetAuditLogsRequest, GetAuditLogsResponse, GetBillingPlansRequest, GetBillingPlansResponse, GetChangelogBySchemaVersionRequest, GetChangelogBySchemaVersionResponse, GetCheckOperationsRequest, GetCheckOperationsResponse, GetChecksByFederatedGraphNameRequest, GetChecksByFederatedGraphNameResponse, GetCheckSummaryRequest, GetCheckSummaryResponse, GetClientsRequest, GetClientsResponse, GetCompositionDetailsRequest, GetCompositionDetailsResponse, GetCompositionsRequest, GetCompositionsResponse, GetConfigRequest, GetDashboardAnalyticsViewRequest, GetDashboardAnalyticsViewResponse, GetDiscussionRequest, GetDiscussionResponse, GetDiscussionSchemasRequest, GetDiscussionSchemasResponse, GetFederatedGraphByNameRequest, GetFederatedGraphByNameResponse, GetFederatedGraphChangelogRequest, GetFederatedGraphChangelogResponse, GetFederatedGraphsBySubgraphLabelsRequest, GetFederatedGraphsBySubgraphLabelsResponse, GetFederatedGraphSDLByNameRequest, GetFederatedGraphSDLByNameResponse, GetFederatedGraphsRequest, GetFederatedGraphsResponse, GetFieldUsageRequest, GetFieldUsageResponse, GetGraphMetricsRequest, GetGraphMetricsResponse, GetInvitationsRequest, GetInvitationsResponse, GetLatestSubgraphSDLRequest, GetLatestSubgraphSDLResponse, GetMetricsErrorRateRequest, GetMetricsErrorRateResponse, GetNamespaceLintConfigRequest, GetNamespaceLintConfigResponse, GetNamespacesRequest, GetNamespacesResponse, GetOIDCProviderRequest, GetOIDCProviderResponse, GetOperationContentRequest, GetOperationContentResponse, GetOperationOverridesRequest, GetOperationOverridesResponse, GetOrganizationIntegrationsRequest, GetOrganizationIntegrationsResponse, GetOrganizationMembersRequest, GetOrganizationMembersResponse, GetOrganizationRequestsCountRequest, GetOrganizationRequestsCountResponse, GetOrganizationWebhookConfigsRequest, GetOrganizationWebhookConfigsResponse, GetOrganizationWebhookMetaRequest, GetOrganizationWebhookMetaResponse, GetPendingOrganizationMembersRequest, GetPendingOrganizationMembersResponse, GetPersistedOperationsRequest, GetPersistedOperationsResponse, GetRoutersRequest, GetRoutersResponse, GetRouterTokensRequest, GetRouterTokensResponse, GetSdlBySchemaVersionRequest, GetSdlBySchemaVersionResponse, GetSubgraphByNameRequest, GetSubgraphByNameResponse, GetSubgraphMembersRequest, GetSubgraphMembersResponse, GetSubgraphMetricsErrorRateRequest, GetSubgraphMetricsErrorRateResponse, GetSubgraphMetricsRequest, GetSubgraphMetricsResponse, GetSubgraphSDLFromLatestCompositionRequest, GetSubgraphSDLFromLatestCompositionResponse, GetSubgraphsRequest, GetSubgraphsResponse, GetTraceRequest, GetTraceResponse, GetUserAccessiblePermissionsRequest, GetUserAccessiblePermissionsResponse, GetUserAccessibleResourcesRequest, GetUserAccessibleResourcesResponse, InviteUserRequest, InviteUserResponse, IsGitHubAppInstalledRequest, IsGitHubAppInstalledResponse, IsMemberLimitReachedRequest, IsMemberLimitReachedResponse, LeaveOrganizationRequest, LeaveOrganizationResponse, MigrateFromApolloRequest, MigrateFromApolloResponse, MigrateMonographRequest, MigrateMonographResponse, MoveGraphRequest, MoveGraphResponse, PublishFederatedSubgraphRequest, PublishFederatedSubgraphResponse, PublishMonographRequest, PublishMonographResponse, PublishPersistedOperationsRequest, PublishPersistedOperationsResponse, RemoveInvitationRequest, RemoveInvitationResponse, RemoveOperationIgnoreAllOverrideRequest, RemoveOperationIgnoreAllOverrideResponse, RemoveOperationOverridesRequest, RemoveOperationOverridesResponse, RemoveOrganizationMemberRequest, RemoveOrganizationMemberResponse, RemoveSubgraphMemberRequest, RemoveSubgraphMemberResponse, RenameNamespaceRequest, RenameNamespaceResponse, ReplyToDiscussionRequest, ReplyToDiscussionResponse, SetDiscussionResolutionRequest, SetDiscussionResolutionResponse, UpdateContractRequest, UpdateContractResponse, UpdateDiscussionCommentRequest, UpdateDiscussionCommentResponse, UpdateFeatureSettingsRequest, UpdateFeatureSettingsResponse, UpdateFederatedGraphRequest, UpdateFederatedGraphResponse, UpdateIntegrationConfigRequest, UpdateIntegrationConfigResponse, UpdateMonographRequest, UpdateMonographResponse, UpdateOrganizationDetailsRequest, UpdateOrganizationDetailsResponse, UpdateOrganizationWebhookConfigRequest, UpdateOrganizationWebhookConfigResponse, UpdateOrgMemberRoleRequest, UpdateOrgMemberRoleResponse, UpdateSubgraphRequest, UpdateSubgraphResponse, UpgradePlanRequest, UpgradePlanResponse, WhoAmIRequest, WhoAmIResponse } from "./platform_pb.js"; | ||
import { AcceptOrDeclineInvitationRequest, AcceptOrDeclineInvitationResponse, AddReadmeRequest, AddReadmeResponse, AddSubgraphMemberRequest, AddSubgraphMemberResponse, CheckFederatedGraphRequest, CheckFederatedGraphResponse, CheckSubgraphSchemaRequest, CheckSubgraphSchemaResponse, ConfigureNamespaceLintConfigRequest, ConfigureNamespaceLintConfigResponse, CreateAPIKeyRequest, CreateAPIKeyResponse, CreateBillingPortalSessionRequest, CreateBillingPortalSessionResponse, CreateCheckoutSessionRequest, CreateCheckoutSessionResponse, CreateContractRequest, CreateContractResponse, CreateDiscussionRequest, CreateDiscussionResponse, CreateFeatureFlagRequest, CreateFeatureFlagResponse, CreateFederatedGraphRequest, CreateFederatedGraphResponse, CreateFederatedGraphTokenRequest, CreateFederatedGraphTokenResponse, CreateFederatedSubgraphRequest, CreateFederatedSubgraphResponse, CreateIntegrationRequest, CreateIntegrationResponse, CreateMonographRequest, CreateMonographResponse, CreateNamespaceRequest, CreateNamespaceResponse, CreateOIDCProviderRequest, CreateOIDCProviderResponse, CreateOperationIgnoreAllOverrideRequest, CreateOperationIgnoreAllOverrideResponse, CreateOperationOverridesRequest, CreateOperationOverridesResponse, CreateOrganizationRequest, CreateOrganizationResponse, CreateOrganizationWebhookConfigRequest, CreateOrganizationWebhookConfigResponse, DeleteAPIKeyRequest, DeleteAPIKeyResponse, DeleteDiscussionCommentRequest, DeleteDiscussionCommentResponse, DeleteFeatureFlagRequest, DeleteFeatureFlagResponse, DeleteFederatedGraphRequest, DeleteFederatedGraphResponse, DeleteFederatedSubgraphRequest, DeleteFederatedSubgraphResponse, DeleteIntegrationRequest, DeleteIntegrationResponse, DeleteMonographRequest, DeleteMonographResponse, DeleteNamespaceRequest, DeleteNamespaceResponse, DeleteOIDCProviderRequest, DeleteOIDCProviderResponse, DeleteOrganizationRequest, DeleteOrganizationResponse, DeleteOrganizationWebhookConfigRequest, DeleteOrganizationWebhookConfigResponse, DeleteRouterTokenRequest, DeleteRouterTokenResponse, EnableFeatureFlagRequest, EnableFeatureFlagResponse, EnableLintingForTheNamespaceRequest, EnableLintingForTheNamespaceResponse, FixSubgraphSchemaRequest, FixSubgraphSchemaResponse, ForceCheckSuccessRequest, ForceCheckSuccessResponse, GenerateRouterTokenRequest, GenerateRouterTokenResponse, GetAllDiscussionsRequest, GetAllDiscussionsResponse, GetAllOverridesRequest, GetAllOverridesResponse, GetAnalyticsViewRequest, GetAnalyticsViewResponse, GetAPIKeysRequest, GetAPIKeysResponse, GetAuditLogsRequest, GetAuditLogsResponse, GetBillingPlansRequest, GetBillingPlansResponse, GetChangelogBySchemaVersionRequest, GetChangelogBySchemaVersionResponse, GetCheckOperationsRequest, GetCheckOperationsResponse, GetChecksByFederatedGraphNameRequest, GetChecksByFederatedGraphNameResponse, GetCheckSummaryRequest, GetCheckSummaryResponse, GetClientsRequest, GetClientsResponse, GetCompositionDetailsRequest, GetCompositionDetailsResponse, GetCompositionsRequest, GetCompositionsResponse, GetDashboardAnalyticsViewRequest, GetDashboardAnalyticsViewResponse, GetDiscussionRequest, GetDiscussionResponse, GetDiscussionSchemasRequest, GetDiscussionSchemasResponse, GetFeatureFlagByNameRequest, GetFeatureFlagByNameResponse, GetFeatureFlagsByFederatedGraphRequest, GetFeatureFlagsByFederatedGraphResponse, GetFeatureFlagsRequest, GetFeatureFlagsResponse, GetFeatureSubgraphsByFeatureFlagRequest, GetFeatureSubgraphsByFeatureFlagResponse, GetFeatureSubgraphsRequest, GetFeatureSubgraphsResponse, GetFederatedGraphByNameRequest, GetFederatedGraphByNameResponse, GetFederatedGraphChangelogRequest, GetFederatedGraphChangelogResponse, GetFederatedGraphsBySubgraphLabelsRequest, GetFederatedGraphsBySubgraphLabelsResponse, GetFederatedGraphSDLByNameRequest, GetFederatedGraphSDLByNameResponse, GetFederatedGraphsRequest, GetFederatedGraphsResponse, GetFieldUsageRequest, GetFieldUsageResponse, GetGraphMetricsRequest, GetGraphMetricsResponse, GetInvitationsRequest, GetInvitationsResponse, GetLatestSubgraphSDLRequest, GetLatestSubgraphSDLResponse, GetMetricsErrorRateRequest, GetMetricsErrorRateResponse, GetNamespaceLintConfigRequest, GetNamespaceLintConfigResponse, GetNamespacesRequest, GetNamespacesResponse, GetOIDCProviderRequest, GetOIDCProviderResponse, GetOperationContentRequest, GetOperationContentResponse, GetOperationOverridesRequest, GetOperationOverridesResponse, GetOrganizationIntegrationsRequest, GetOrganizationIntegrationsResponse, GetOrganizationMembersRequest, GetOrganizationMembersResponse, GetOrganizationRequestsCountRequest, GetOrganizationRequestsCountResponse, GetOrganizationWebhookConfigsRequest, GetOrganizationWebhookConfigsResponse, GetOrganizationWebhookMetaRequest, GetOrganizationWebhookMetaResponse, GetPendingOrganizationMembersRequest, GetPendingOrganizationMembersResponse, GetPersistedOperationsRequest, GetPersistedOperationsResponse, GetRoutersRequest, GetRoutersResponse, GetRouterTokensRequest, GetRouterTokensResponse, GetSdlBySchemaVersionRequest, GetSdlBySchemaVersionResponse, GetSubgraphByNameRequest, GetSubgraphByNameResponse, GetSubgraphMembersRequest, GetSubgraphMembersResponse, GetSubgraphMetricsErrorRateRequest, GetSubgraphMetricsErrorRateResponse, GetSubgraphMetricsRequest, GetSubgraphMetricsResponse, GetSubgraphSDLFromLatestCompositionRequest, GetSubgraphSDLFromLatestCompositionResponse, GetSubgraphsRequest, GetSubgraphsResponse, GetTraceRequest, GetTraceResponse, GetUserAccessiblePermissionsRequest, GetUserAccessiblePermissionsResponse, GetUserAccessibleResourcesRequest, GetUserAccessibleResourcesResponse, InviteUserRequest, InviteUserResponse, IsGitHubAppInstalledRequest, IsGitHubAppInstalledResponse, IsMemberLimitReachedRequest, IsMemberLimitReachedResponse, LeaveOrganizationRequest, LeaveOrganizationResponse, MigrateFromApolloRequest, MigrateFromApolloResponse, MigrateMonographRequest, MigrateMonographResponse, MoveGraphRequest, MoveGraphResponse, PublishFederatedSubgraphRequest, PublishFederatedSubgraphResponse, PublishMonographRequest, PublishMonographResponse, PublishPersistedOperationsRequest, PublishPersistedOperationsResponse, RemoveInvitationRequest, RemoveInvitationResponse, RemoveOperationIgnoreAllOverrideRequest, RemoveOperationIgnoreAllOverrideResponse, RemoveOperationOverridesRequest, RemoveOperationOverridesResponse, RemoveOrganizationMemberRequest, RemoveOrganizationMemberResponse, RemoveSubgraphMemberRequest, RemoveSubgraphMemberResponse, RenameNamespaceRequest, RenameNamespaceResponse, ReplyToDiscussionRequest, ReplyToDiscussionResponse, SetDiscussionResolutionRequest, SetDiscussionResolutionResponse, UpdateContractRequest, UpdateContractResponse, UpdateDiscussionCommentRequest, UpdateDiscussionCommentResponse, UpdateFeatureFlagRequest, UpdateFeatureFlagResponse, UpdateFeatureSettingsRequest, UpdateFeatureSettingsResponse, UpdateFederatedGraphRequest, UpdateFederatedGraphResponse, UpdateIntegrationConfigRequest, UpdateIntegrationConfigResponse, UpdateMonographRequest, UpdateMonographResponse, UpdateOrganizationDetailsRequest, UpdateOrganizationDetailsResponse, UpdateOrganizationWebhookConfigRequest, UpdateOrganizationWebhookConfigResponse, UpdateOrgMemberRoleRequest, UpdateOrgMemberRoleResponse, UpdateSubgraphRequest, UpdateSubgraphResponse, UpgradePlanRequest, UpgradePlanResponse, WhoAmIRequest, WhoAmIResponse } from "./platform_pb.js"; | ||
import { MethodIdempotency, MethodKind } from "@bufbuild/protobuf"; | ||
import { GetConfigResponse } from "../../node/v1/node_pb.js"; | ||
/** | ||
@@ -672,13 +671,2 @@ * @generated from service wg.cosmo.platform.v1.PlatformService | ||
/** | ||
* GetLatestValidRouterConfig returns the router config for the federated graph | ||
* | ||
* @generated from rpc wg.cosmo.platform.v1.PlatformService.GetLatestValidRouterConfig | ||
*/ | ||
getLatestValidRouterConfig: { | ||
name: "GetLatestValidRouterConfig", | ||
I: GetConfigRequest, | ||
O: GetConfigResponse, | ||
kind: MethodKind.Unary, | ||
}, | ||
/** | ||
* MigrateFromApollo migrates the graphs from apollo to cosmo | ||
@@ -1135,2 +1123,46 @@ * | ||
/** | ||
* CreateFeatureFlag creates a new feature flag for the selected feature graphs | ||
* | ||
* @generated from rpc wg.cosmo.platform.v1.PlatformService.CreateFeatureFlag | ||
*/ | ||
createFeatureFlag: { | ||
name: "CreateFeatureFlag", | ||
I: CreateFeatureFlagRequest, | ||
O: CreateFeatureFlagResponse, | ||
kind: MethodKind.Unary, | ||
}, | ||
/** | ||
* DeleteFeatureFlag deletes an existing feature flag | ||
* | ||
* @generated from rpc wg.cosmo.platform.v1.PlatformService.DeleteFeatureFlag | ||
*/ | ||
deleteFeatureFlag: { | ||
name: "DeleteFeatureFlag", | ||
I: DeleteFeatureFlagRequest, | ||
O: DeleteFeatureFlagResponse, | ||
kind: MethodKind.Unary, | ||
}, | ||
/** | ||
* UpdateFeatureFlag updates a new feature flag for the selected feature graphs | ||
* | ||
* @generated from rpc wg.cosmo.platform.v1.PlatformService.UpdateFeatureFlag | ||
*/ | ||
updateFeatureFlag: { | ||
name: "UpdateFeatureFlag", | ||
I: UpdateFeatureFlagRequest, | ||
O: UpdateFeatureFlagResponse, | ||
kind: MethodKind.Unary, | ||
}, | ||
/** | ||
* EnableFeatureFlag enables/disables a feature flag | ||
* | ||
* @generated from rpc wg.cosmo.platform.v1.PlatformService.EnableFeatureFlag | ||
*/ | ||
enableFeatureFlag: { | ||
name: "EnableFeatureFlag", | ||
I: EnableFeatureFlagRequest, | ||
O: EnableFeatureFlagResponse, | ||
kind: MethodKind.Unary, | ||
}, | ||
/** | ||
* Analytics | ||
@@ -1257,3 +1289,3 @@ * | ||
/** | ||
* GetNamespaceLintConfig returns the lint config of the organization. | ||
* GetNamespaceLintConfig returns the lint config of the namespace. | ||
* | ||
@@ -1269,3 +1301,58 @@ * @generated from rpc wg.cosmo.platform.v1.PlatformService.GetNamespaceLintConfig | ||
/** | ||
* GetFeatureFlags returns the feature flags of the namespace | ||
* | ||
* @generated from rpc wg.cosmo.platform.v1.PlatformService.GetFeatureFlags | ||
*/ | ||
getFeatureFlags: { | ||
name: "GetFeatureFlags", | ||
I: GetFeatureFlagsRequest, | ||
O: GetFeatureFlagsResponse, | ||
kind: MethodKind.Unary, | ||
}, | ||
/** | ||
* GetFeatureFlagByName returns the feature flag of the namespace | ||
* | ||
* @generated from rpc wg.cosmo.platform.v1.PlatformService.GetFeatureFlagByName | ||
*/ | ||
getFeatureFlagByName: { | ||
name: "GetFeatureFlagByName", | ||
I: GetFeatureFlagByNameRequest, | ||
O: GetFeatureFlagByNameResponse, | ||
kind: MethodKind.Unary, | ||
}, | ||
/** | ||
* GetFeatureSubgraphsByFeatureFlag returns the feature subgraphs of a feature flag | ||
* | ||
* @generated from rpc wg.cosmo.platform.v1.PlatformService.GetFeatureSubgraphsByFeatureFlag | ||
*/ | ||
getFeatureSubgraphsByFeatureFlag: { | ||
name: "GetFeatureSubgraphsByFeatureFlag", | ||
I: GetFeatureSubgraphsByFeatureFlagRequest, | ||
O: GetFeatureSubgraphsByFeatureFlagResponse, | ||
kind: MethodKind.Unary, | ||
}, | ||
/** | ||
* GetFeatureSubgraphs returns the list of feature subgraphs. | ||
* | ||
* @generated from rpc wg.cosmo.platform.v1.PlatformService.GetFeatureSubgraphs | ||
*/ | ||
getFeatureSubgraphs: { | ||
name: "GetFeatureSubgraphs", | ||
I: GetFeatureSubgraphsRequest, | ||
O: GetFeatureSubgraphsResponse, | ||
kind: MethodKind.Unary, | ||
}, | ||
/** | ||
* GetFeatureFlagsByFederatedGraph returns the list of feature flags which match the label matchers of the federated graph. | ||
* | ||
* @generated from rpc wg.cosmo.platform.v1.PlatformService.GetFeatureFlagsByFederatedGraph | ||
*/ | ||
getFeatureFlagsByFederatedGraph: { | ||
name: "GetFeatureFlagsByFederatedGraph", | ||
I: GetFeatureFlagsByFederatedGraphRequest, | ||
O: GetFeatureFlagsByFederatedGraphResponse, | ||
kind: MethodKind.Unary, | ||
}, | ||
/** | ||
* | ||
* Billing | ||
@@ -1272,0 +1359,0 @@ * ----------------------------------------------------------------------------------------------------------------------------- |
{ | ||
"name": "@wundergraph/cosmo-connect", | ||
"version": "0.75.2", | ||
"version": "0.76.0", | ||
"description": "TypeScript Connect client for WunderGraph Cosmo", | ||
@@ -43,3 +43,3 @@ "scripts": { | ||
}, | ||
"gitHead": "34359c7407af7db4696bd43d32ecdf17fd660ad3" | ||
"gitHead": "139204a8d6553596cf0f434df98c8ce1599b7222" | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
1950499
33720