@wundergraph/cosmo-connect 0.146.0 → 0.148.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/dist/platform/v1/platform-PlatformService_connectquery.d.ts +61 -15
- package/dist/platform/v1/platform-PlatformService_connectquery.js +61 -15
- package/dist/platform/v1/platform-PlatformService_connectquery.js.map +1 -1
- package/dist/platform/v1/platform_connect.d.ts +47 -13
- package/dist/platform/v1/platform_connect.js +47 -13
- package/dist/platform/v1/platform_connect.js.map +1 -1
- package/dist/platform/v1/platform_pb.d.ts +281 -46
- package/dist/platform/v1/platform_pb.js +399 -42
- package/dist/platform/v1/platform_pb.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
|
@@ -639,6 +639,107 @@ export declare class SubgraphPublishStats extends Message<SubgraphPublishStats>
|
|
|
639
639
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SubgraphPublishStats;
|
|
640
640
|
static equals(a: SubgraphPublishStats | PlainMessage<SubgraphPublishStats> | undefined, b: SubgraphPublishStats | PlainMessage<SubgraphPublishStats> | undefined): boolean;
|
|
641
641
|
}
|
|
642
|
+
/**
|
|
643
|
+
* A single subgraph entry to publish as part of a batch publish request.
|
|
644
|
+
*
|
|
645
|
+
* @generated from message wg.cosmo.platform.v1.PublishSubgraph
|
|
646
|
+
*/
|
|
647
|
+
export declare class PublishSubgraph extends Message<PublishSubgraph> {
|
|
648
|
+
/**
|
|
649
|
+
* The name of the subgraph to publish.
|
|
650
|
+
*
|
|
651
|
+
* @generated from field: string name = 1;
|
|
652
|
+
*/
|
|
653
|
+
name: string;
|
|
654
|
+
/**
|
|
655
|
+
* The schema to publish for the subgraph.
|
|
656
|
+
*
|
|
657
|
+
* @generated from field: string schema = 2;
|
|
658
|
+
*/
|
|
659
|
+
schema: string;
|
|
660
|
+
constructor(data?: PartialMessage<PublishSubgraph>);
|
|
661
|
+
static readonly runtime: typeof proto3;
|
|
662
|
+
static readonly typeName = "wg.cosmo.platform.v1.PublishSubgraph";
|
|
663
|
+
static readonly fields: FieldList;
|
|
664
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): PublishSubgraph;
|
|
665
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): PublishSubgraph;
|
|
666
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): PublishSubgraph;
|
|
667
|
+
static equals(a: PublishSubgraph | PlainMessage<PublishSubgraph> | undefined, b: PublishSubgraph | PlainMessage<PublishSubgraph> | undefined): boolean;
|
|
668
|
+
}
|
|
669
|
+
/**
|
|
670
|
+
* @generated from message wg.cosmo.platform.v1.PublishFederatedSubgraphsRequest
|
|
671
|
+
*/
|
|
672
|
+
export declare class PublishFederatedSubgraphsRequest extends Message<PublishFederatedSubgraphsRequest> {
|
|
673
|
+
/**
|
|
674
|
+
* The namespace all the subgraphs belong to.
|
|
675
|
+
*
|
|
676
|
+
* @generated from field: string namespace = 1;
|
|
677
|
+
*/
|
|
678
|
+
namespace: string;
|
|
679
|
+
/**
|
|
680
|
+
* The subgraphs to publish. Each must already exist in the namespace. Feature subgraphs are detected automatically.
|
|
681
|
+
*
|
|
682
|
+
* @generated from field: repeated wg.cosmo.platform.v1.PublishSubgraph subgraphs = 2;
|
|
683
|
+
*/
|
|
684
|
+
subgraphs: PublishSubgraph[];
|
|
685
|
+
/**
|
|
686
|
+
* @generated from field: optional bool disable_resolvability_validation = 3;
|
|
687
|
+
*/
|
|
688
|
+
disableResolvabilityValidation?: boolean;
|
|
689
|
+
/**
|
|
690
|
+
* Optional limit for the number of errors/warnings returned.
|
|
691
|
+
*
|
|
692
|
+
* @generated from field: optional int32 limit = 4;
|
|
693
|
+
*/
|
|
694
|
+
limit?: number;
|
|
695
|
+
constructor(data?: PartialMessage<PublishFederatedSubgraphsRequest>);
|
|
696
|
+
static readonly runtime: typeof proto3;
|
|
697
|
+
static readonly typeName = "wg.cosmo.platform.v1.PublishFederatedSubgraphsRequest";
|
|
698
|
+
static readonly fields: FieldList;
|
|
699
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): PublishFederatedSubgraphsRequest;
|
|
700
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): PublishFederatedSubgraphsRequest;
|
|
701
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): PublishFederatedSubgraphsRequest;
|
|
702
|
+
static equals(a: PublishFederatedSubgraphsRequest | PlainMessage<PublishFederatedSubgraphsRequest> | undefined, b: PublishFederatedSubgraphsRequest | PlainMessage<PublishFederatedSubgraphsRequest> | undefined): boolean;
|
|
703
|
+
}
|
|
704
|
+
/**
|
|
705
|
+
* @generated from message wg.cosmo.platform.v1.PublishFederatedSubgraphsResponse
|
|
706
|
+
*/
|
|
707
|
+
export declare class PublishFederatedSubgraphsResponse extends Message<PublishFederatedSubgraphsResponse> {
|
|
708
|
+
/**
|
|
709
|
+
* @generated from field: wg.cosmo.platform.v1.Response response = 1;
|
|
710
|
+
*/
|
|
711
|
+
response?: Response;
|
|
712
|
+
/**
|
|
713
|
+
* @generated from field: repeated wg.cosmo.platform.v1.CompositionError compositionErrors = 2;
|
|
714
|
+
*/
|
|
715
|
+
compositionErrors: CompositionError[];
|
|
716
|
+
/**
|
|
717
|
+
* @generated from field: repeated wg.cosmo.platform.v1.DeploymentError deploymentErrors = 3;
|
|
718
|
+
*/
|
|
719
|
+
deploymentErrors: DeploymentError[];
|
|
720
|
+
/**
|
|
721
|
+
* @generated from field: repeated wg.cosmo.platform.v1.CompositionWarning compositionWarnings = 4;
|
|
722
|
+
*/
|
|
723
|
+
compositionWarnings: CompositionWarning[];
|
|
724
|
+
/**
|
|
725
|
+
* @generated from field: optional wg.cosmo.platform.v1.SubgraphPublishStats counts = 5;
|
|
726
|
+
*/
|
|
727
|
+
counts?: SubgraphPublishStats;
|
|
728
|
+
/**
|
|
729
|
+
* The names of the subgraphs whose schema actually changed as a result of this batch publish.
|
|
730
|
+
*
|
|
731
|
+
* @generated from field: repeated string updatedSubgraphNames = 6;
|
|
732
|
+
*/
|
|
733
|
+
updatedSubgraphNames: string[];
|
|
734
|
+
constructor(data?: PartialMessage<PublishFederatedSubgraphsResponse>);
|
|
735
|
+
static readonly runtime: typeof proto3;
|
|
736
|
+
static readonly typeName = "wg.cosmo.platform.v1.PublishFederatedSubgraphsResponse";
|
|
737
|
+
static readonly fields: FieldList;
|
|
738
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): PublishFederatedSubgraphsResponse;
|
|
739
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): PublishFederatedSubgraphsResponse;
|
|
740
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): PublishFederatedSubgraphsResponse;
|
|
741
|
+
static equals(a: PublishFederatedSubgraphsResponse | PlainMessage<PublishFederatedSubgraphsResponse> | undefined, b: PublishFederatedSubgraphsResponse | PlainMessage<PublishFederatedSubgraphsResponse> | undefined): boolean;
|
|
742
|
+
}
|
|
642
743
|
/**
|
|
643
744
|
* @generated from message wg.cosmo.platform.v1.GitInfo
|
|
644
745
|
*/
|
|
@@ -7654,9 +7755,9 @@ export declare class CreateOIDCProviderRequest extends Message<CreateOIDCProvide
|
|
|
7654
7755
|
*/
|
|
7655
7756
|
clientID: string;
|
|
7656
7757
|
/**
|
|
7657
|
-
* @generated from field: string
|
|
7758
|
+
* @generated from field: string clientSecret = 4;
|
|
7658
7759
|
*/
|
|
7659
|
-
|
|
7760
|
+
clientSecret: string;
|
|
7660
7761
|
/**
|
|
7661
7762
|
* @generated from field: repeated wg.cosmo.platform.v1.GroupMapper mappers = 5;
|
|
7662
7763
|
*/
|
|
@@ -12679,9 +12780,9 @@ export declare class GetNamespaceProposalConfigResponse extends Message<GetNames
|
|
|
12679
12780
|
static equals(a: GetNamespaceProposalConfigResponse | PlainMessage<GetNamespaceProposalConfigResponse> | undefined, b: GetNamespaceProposalConfigResponse | PlainMessage<GetNamespaceProposalConfigResponse> | undefined): boolean;
|
|
12680
12781
|
}
|
|
12681
12782
|
/**
|
|
12682
|
-
* @generated from message wg.cosmo.platform.v1.
|
|
12783
|
+
* @generated from message wg.cosmo.platform.v1.NamespaceLoginMethodMapping
|
|
12683
12784
|
*/
|
|
12684
|
-
export declare class
|
|
12785
|
+
export declare class NamespaceLoginMethodMapping extends Message<NamespaceLoginMethodMapping> {
|
|
12685
12786
|
/**
|
|
12686
12787
|
* @generated from field: string namespace_id = 1;
|
|
12687
12788
|
*/
|
|
@@ -12702,66 +12803,66 @@ export declare class NamespaceSSOMapping extends Message<NamespaceSSOMapping> {
|
|
|
12702
12803
|
* @generated from field: bool allow_github_login = 5;
|
|
12703
12804
|
*/
|
|
12704
12805
|
allowGithubLogin: boolean;
|
|
12705
|
-
constructor(data?: PartialMessage<
|
|
12806
|
+
constructor(data?: PartialMessage<NamespaceLoginMethodMapping>);
|
|
12706
12807
|
static readonly runtime: typeof proto3;
|
|
12707
|
-
static readonly typeName = "wg.cosmo.platform.v1.
|
|
12808
|
+
static readonly typeName = "wg.cosmo.platform.v1.NamespaceLoginMethodMapping";
|
|
12708
12809
|
static readonly fields: FieldList;
|
|
12709
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
12710
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
12711
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
12712
|
-
static equals(a:
|
|
12810
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): NamespaceLoginMethodMapping;
|
|
12811
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): NamespaceLoginMethodMapping;
|
|
12812
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): NamespaceLoginMethodMapping;
|
|
12813
|
+
static equals(a: NamespaceLoginMethodMapping | PlainMessage<NamespaceLoginMethodMapping> | undefined, b: NamespaceLoginMethodMapping | PlainMessage<NamespaceLoginMethodMapping> | undefined): boolean;
|
|
12713
12814
|
}
|
|
12714
12815
|
/**
|
|
12715
|
-
* @generated from message wg.cosmo.platform.v1.
|
|
12816
|
+
* @generated from message wg.cosmo.platform.v1.UpdateNamespaceLoginMethodsRequest
|
|
12716
12817
|
*/
|
|
12717
|
-
export declare class
|
|
12818
|
+
export declare class UpdateNamespaceLoginMethodsRequest extends Message<UpdateNamespaceLoginMethodsRequest> {
|
|
12718
12819
|
/**
|
|
12719
|
-
* @generated from field: repeated wg.cosmo.platform.v1.
|
|
12820
|
+
* @generated from field: repeated wg.cosmo.platform.v1.NamespaceLoginMethodMapping mappings = 1;
|
|
12720
12821
|
*/
|
|
12721
|
-
mappings:
|
|
12722
|
-
constructor(data?: PartialMessage<
|
|
12822
|
+
mappings: NamespaceLoginMethodMapping[];
|
|
12823
|
+
constructor(data?: PartialMessage<UpdateNamespaceLoginMethodsRequest>);
|
|
12723
12824
|
static readonly runtime: typeof proto3;
|
|
12724
|
-
static readonly typeName = "wg.cosmo.platform.v1.
|
|
12825
|
+
static readonly typeName = "wg.cosmo.platform.v1.UpdateNamespaceLoginMethodsRequest";
|
|
12725
12826
|
static readonly fields: FieldList;
|
|
12726
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
12727
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
12728
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
12729
|
-
static equals(a:
|
|
12827
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): UpdateNamespaceLoginMethodsRequest;
|
|
12828
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): UpdateNamespaceLoginMethodsRequest;
|
|
12829
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): UpdateNamespaceLoginMethodsRequest;
|
|
12830
|
+
static equals(a: UpdateNamespaceLoginMethodsRequest | PlainMessage<UpdateNamespaceLoginMethodsRequest> | undefined, b: UpdateNamespaceLoginMethodsRequest | PlainMessage<UpdateNamespaceLoginMethodsRequest> | undefined): boolean;
|
|
12730
12831
|
}
|
|
12731
12832
|
/**
|
|
12732
|
-
* @generated from message wg.cosmo.platform.v1.
|
|
12833
|
+
* @generated from message wg.cosmo.platform.v1.UpdateNamespaceLoginMethodsResponse
|
|
12733
12834
|
*/
|
|
12734
|
-
export declare class
|
|
12835
|
+
export declare class UpdateNamespaceLoginMethodsResponse extends Message<UpdateNamespaceLoginMethodsResponse> {
|
|
12735
12836
|
/**
|
|
12736
12837
|
* @generated from field: wg.cosmo.platform.v1.Response response = 1;
|
|
12737
12838
|
*/
|
|
12738
12839
|
response?: Response;
|
|
12739
|
-
constructor(data?: PartialMessage<
|
|
12840
|
+
constructor(data?: PartialMessage<UpdateNamespaceLoginMethodsResponse>);
|
|
12740
12841
|
static readonly runtime: typeof proto3;
|
|
12741
|
-
static readonly typeName = "wg.cosmo.platform.v1.
|
|
12842
|
+
static readonly typeName = "wg.cosmo.platform.v1.UpdateNamespaceLoginMethodsResponse";
|
|
12742
12843
|
static readonly fields: FieldList;
|
|
12743
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
12744
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
12745
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
12746
|
-
static equals(a:
|
|
12844
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): UpdateNamespaceLoginMethodsResponse;
|
|
12845
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): UpdateNamespaceLoginMethodsResponse;
|
|
12846
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): UpdateNamespaceLoginMethodsResponse;
|
|
12847
|
+
static equals(a: UpdateNamespaceLoginMethodsResponse | PlainMessage<UpdateNamespaceLoginMethodsResponse> | undefined, b: UpdateNamespaceLoginMethodsResponse | PlainMessage<UpdateNamespaceLoginMethodsResponse> | undefined): boolean;
|
|
12747
12848
|
}
|
|
12748
12849
|
/**
|
|
12749
|
-
* @generated from message wg.cosmo.platform.v1.
|
|
12850
|
+
* @generated from message wg.cosmo.platform.v1.ListNamespaceLoginMethodsRequest
|
|
12750
12851
|
*/
|
|
12751
|
-
export declare class
|
|
12752
|
-
constructor(data?: PartialMessage<
|
|
12852
|
+
export declare class ListNamespaceLoginMethodsRequest extends Message<ListNamespaceLoginMethodsRequest> {
|
|
12853
|
+
constructor(data?: PartialMessage<ListNamespaceLoginMethodsRequest>);
|
|
12753
12854
|
static readonly runtime: typeof proto3;
|
|
12754
|
-
static readonly typeName = "wg.cosmo.platform.v1.
|
|
12855
|
+
static readonly typeName = "wg.cosmo.platform.v1.ListNamespaceLoginMethodsRequest";
|
|
12755
12856
|
static readonly fields: FieldList;
|
|
12756
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
12757
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
12758
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
12759
|
-
static equals(a:
|
|
12857
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ListNamespaceLoginMethodsRequest;
|
|
12858
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ListNamespaceLoginMethodsRequest;
|
|
12859
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ListNamespaceLoginMethodsRequest;
|
|
12860
|
+
static equals(a: ListNamespaceLoginMethodsRequest | PlainMessage<ListNamespaceLoginMethodsRequest> | undefined, b: ListNamespaceLoginMethodsRequest | PlainMessage<ListNamespaceLoginMethodsRequest> | undefined): boolean;
|
|
12760
12861
|
}
|
|
12761
12862
|
/**
|
|
12762
|
-
* @generated from message wg.cosmo.platform.v1.
|
|
12863
|
+
* @generated from message wg.cosmo.platform.v1.ListNamespaceLoginMethodsResponse
|
|
12763
12864
|
*/
|
|
12764
|
-
export declare class
|
|
12865
|
+
export declare class ListNamespaceLoginMethodsResponse extends Message<ListNamespaceLoginMethodsResponse> {
|
|
12765
12866
|
/**
|
|
12766
12867
|
* @generated from field: wg.cosmo.platform.v1.Response response = 1;
|
|
12767
12868
|
*/
|
|
@@ -12770,17 +12871,151 @@ export declare class ListNamespaceSSOMappingsResponse extends Message<ListNamesp
|
|
|
12770
12871
|
* One entry per namespace that is restricted to specific login methods.
|
|
12771
12872
|
* Namespaces with no mapping (default-open) are omitted.
|
|
12772
12873
|
*
|
|
12773
|
-
* @generated from field: repeated wg.cosmo.platform.v1.
|
|
12874
|
+
* @generated from field: repeated wg.cosmo.platform.v1.NamespaceLoginMethodMapping mappings = 2;
|
|
12875
|
+
*/
|
|
12876
|
+
mappings: NamespaceLoginMethodMapping[];
|
|
12877
|
+
constructor(data?: PartialMessage<ListNamespaceLoginMethodsResponse>);
|
|
12878
|
+
static readonly runtime: typeof proto3;
|
|
12879
|
+
static readonly typeName = "wg.cosmo.platform.v1.ListNamespaceLoginMethodsResponse";
|
|
12880
|
+
static readonly fields: FieldList;
|
|
12881
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ListNamespaceLoginMethodsResponse;
|
|
12882
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ListNamespaceLoginMethodsResponse;
|
|
12883
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ListNamespaceLoginMethodsResponse;
|
|
12884
|
+
static equals(a: ListNamespaceLoginMethodsResponse | PlainMessage<ListNamespaceLoginMethodsResponse> | undefined, b: ListNamespaceLoginMethodsResponse | PlainMessage<ListNamespaceLoginMethodsResponse> | undefined): boolean;
|
|
12885
|
+
}
|
|
12886
|
+
/**
|
|
12887
|
+
* @generated from message wg.cosmo.platform.v1.OrganizationLoginMethods
|
|
12888
|
+
*/
|
|
12889
|
+
export declare class OrganizationLoginMethods extends Message<OrganizationLoginMethods> {
|
|
12890
|
+
/**
|
|
12891
|
+
* @generated from field: repeated string allowed_sso_provider_ids = 1;
|
|
12892
|
+
*/
|
|
12893
|
+
allowedSsoProviderIds: string[];
|
|
12894
|
+
/**
|
|
12895
|
+
* @generated from field: bool allow_password_login = 2;
|
|
12896
|
+
*/
|
|
12897
|
+
allowPasswordLogin: boolean;
|
|
12898
|
+
/**
|
|
12899
|
+
* @generated from field: bool allow_google_login = 3;
|
|
12900
|
+
*/
|
|
12901
|
+
allowGoogleLogin: boolean;
|
|
12902
|
+
/**
|
|
12903
|
+
* @generated from field: bool allow_github_login = 4;
|
|
12904
|
+
*/
|
|
12905
|
+
allowGithubLogin: boolean;
|
|
12906
|
+
/**
|
|
12907
|
+
* Output only. False when the org has no restriction configured (all methods allowed).
|
|
12908
|
+
*
|
|
12909
|
+
* @generated from field: bool is_restricted = 5;
|
|
12910
|
+
*/
|
|
12911
|
+
isRestricted: boolean;
|
|
12912
|
+
constructor(data?: PartialMessage<OrganizationLoginMethods>);
|
|
12913
|
+
static readonly runtime: typeof proto3;
|
|
12914
|
+
static readonly typeName = "wg.cosmo.platform.v1.OrganizationLoginMethods";
|
|
12915
|
+
static readonly fields: FieldList;
|
|
12916
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): OrganizationLoginMethods;
|
|
12917
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): OrganizationLoginMethods;
|
|
12918
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): OrganizationLoginMethods;
|
|
12919
|
+
static equals(a: OrganizationLoginMethods | PlainMessage<OrganizationLoginMethods> | undefined, b: OrganizationLoginMethods | PlainMessage<OrganizationLoginMethods> | undefined): boolean;
|
|
12920
|
+
}
|
|
12921
|
+
/**
|
|
12922
|
+
* @generated from message wg.cosmo.platform.v1.GetOrganizationLoginMethodsRequest
|
|
12923
|
+
*/
|
|
12924
|
+
export declare class GetOrganizationLoginMethodsRequest extends Message<GetOrganizationLoginMethodsRequest> {
|
|
12925
|
+
constructor(data?: PartialMessage<GetOrganizationLoginMethodsRequest>);
|
|
12926
|
+
static readonly runtime: typeof proto3;
|
|
12927
|
+
static readonly typeName = "wg.cosmo.platform.v1.GetOrganizationLoginMethodsRequest";
|
|
12928
|
+
static readonly fields: FieldList;
|
|
12929
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetOrganizationLoginMethodsRequest;
|
|
12930
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetOrganizationLoginMethodsRequest;
|
|
12931
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetOrganizationLoginMethodsRequest;
|
|
12932
|
+
static equals(a: GetOrganizationLoginMethodsRequest | PlainMessage<GetOrganizationLoginMethodsRequest> | undefined, b: GetOrganizationLoginMethodsRequest | PlainMessage<GetOrganizationLoginMethodsRequest> | undefined): boolean;
|
|
12933
|
+
}
|
|
12934
|
+
/**
|
|
12935
|
+
* @generated from message wg.cosmo.platform.v1.GetOrganizationLoginMethodsResponse
|
|
12936
|
+
*/
|
|
12937
|
+
export declare class GetOrganizationLoginMethodsResponse extends Message<GetOrganizationLoginMethodsResponse> {
|
|
12938
|
+
/**
|
|
12939
|
+
* @generated from field: wg.cosmo.platform.v1.Response response = 1;
|
|
12940
|
+
*/
|
|
12941
|
+
response?: Response;
|
|
12942
|
+
/**
|
|
12943
|
+
* @generated from field: wg.cosmo.platform.v1.OrganizationLoginMethods login_methods = 2;
|
|
12944
|
+
*/
|
|
12945
|
+
loginMethods?: OrganizationLoginMethods;
|
|
12946
|
+
constructor(data?: PartialMessage<GetOrganizationLoginMethodsResponse>);
|
|
12947
|
+
static readonly runtime: typeof proto3;
|
|
12948
|
+
static readonly typeName = "wg.cosmo.platform.v1.GetOrganizationLoginMethodsResponse";
|
|
12949
|
+
static readonly fields: FieldList;
|
|
12950
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetOrganizationLoginMethodsResponse;
|
|
12951
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetOrganizationLoginMethodsResponse;
|
|
12952
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetOrganizationLoginMethodsResponse;
|
|
12953
|
+
static equals(a: GetOrganizationLoginMethodsResponse | PlainMessage<GetOrganizationLoginMethodsResponse> | undefined, b: GetOrganizationLoginMethodsResponse | PlainMessage<GetOrganizationLoginMethodsResponse> | undefined): boolean;
|
|
12954
|
+
}
|
|
12955
|
+
/**
|
|
12956
|
+
* @generated from message wg.cosmo.platform.v1.UpdateOrganizationLoginMethodsRequest
|
|
12957
|
+
*/
|
|
12958
|
+
export declare class UpdateOrganizationLoginMethodsRequest extends Message<UpdateOrganizationLoginMethodsRequest> {
|
|
12959
|
+
/**
|
|
12960
|
+
* @generated from field: repeated string allowed_sso_provider_ids = 1;
|
|
12961
|
+
*/
|
|
12962
|
+
allowedSsoProviderIds: string[];
|
|
12963
|
+
/**
|
|
12964
|
+
* @generated from field: bool allow_password_login = 2;
|
|
12965
|
+
*/
|
|
12966
|
+
allowPasswordLogin: boolean;
|
|
12967
|
+
/**
|
|
12968
|
+
* @generated from field: bool allow_google_login = 3;
|
|
12969
|
+
*/
|
|
12970
|
+
allowGoogleLogin: boolean;
|
|
12971
|
+
/**
|
|
12972
|
+
* @generated from field: bool allow_github_login = 4;
|
|
12973
|
+
*/
|
|
12974
|
+
allowGithubLogin: boolean;
|
|
12975
|
+
/**
|
|
12976
|
+
* Set true to confirm that namespace mappings may be altered by this change.
|
|
12977
|
+
* Left false (a preview), if the change would strip methods from existing
|
|
12978
|
+
* namespace mappings the server returns requires_confirmation and makes no changes.
|
|
12979
|
+
*
|
|
12980
|
+
* @generated from field: bool confirm_namespace_changes = 5;
|
|
12981
|
+
*/
|
|
12982
|
+
confirmNamespaceChanges: boolean;
|
|
12983
|
+
constructor(data?: PartialMessage<UpdateOrganizationLoginMethodsRequest>);
|
|
12984
|
+
static readonly runtime: typeof proto3;
|
|
12985
|
+
static readonly typeName = "wg.cosmo.platform.v1.UpdateOrganizationLoginMethodsRequest";
|
|
12986
|
+
static readonly fields: FieldList;
|
|
12987
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): UpdateOrganizationLoginMethodsRequest;
|
|
12988
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): UpdateOrganizationLoginMethodsRequest;
|
|
12989
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): UpdateOrganizationLoginMethodsRequest;
|
|
12990
|
+
static equals(a: UpdateOrganizationLoginMethodsRequest | PlainMessage<UpdateOrganizationLoginMethodsRequest> | undefined, b: UpdateOrganizationLoginMethodsRequest | PlainMessage<UpdateOrganizationLoginMethodsRequest> | undefined): boolean;
|
|
12991
|
+
}
|
|
12992
|
+
/**
|
|
12993
|
+
* @generated from message wg.cosmo.platform.v1.UpdateOrganizationLoginMethodsResponse
|
|
12994
|
+
*/
|
|
12995
|
+
export declare class UpdateOrganizationLoginMethodsResponse extends Message<UpdateOrganizationLoginMethodsResponse> {
|
|
12996
|
+
/**
|
|
12997
|
+
* @generated from field: wg.cosmo.platform.v1.Response response = 1;
|
|
12998
|
+
*/
|
|
12999
|
+
response?: Response;
|
|
13000
|
+
/**
|
|
13001
|
+
* True when the change needs confirmation because it would alter namespace
|
|
13002
|
+
* mappings listed in affected_namespaces. No changes were made in this case.
|
|
13003
|
+
*
|
|
13004
|
+
* @generated from field: bool requires_confirmation = 2;
|
|
13005
|
+
*/
|
|
13006
|
+
requiresConfirmation: boolean;
|
|
13007
|
+
/**
|
|
13008
|
+
* @generated from field: repeated wg.cosmo.platform.v1.Namespace affected_namespaces = 3;
|
|
12774
13009
|
*/
|
|
12775
|
-
|
|
12776
|
-
constructor(data?: PartialMessage<
|
|
13010
|
+
affectedNamespaces: Namespace[];
|
|
13011
|
+
constructor(data?: PartialMessage<UpdateOrganizationLoginMethodsResponse>);
|
|
12777
13012
|
static readonly runtime: typeof proto3;
|
|
12778
|
-
static readonly typeName = "wg.cosmo.platform.v1.
|
|
13013
|
+
static readonly typeName = "wg.cosmo.platform.v1.UpdateOrganizationLoginMethodsResponse";
|
|
12779
13014
|
static readonly fields: FieldList;
|
|
12780
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
12781
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
12782
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
12783
|
-
static equals(a:
|
|
13015
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): UpdateOrganizationLoginMethodsResponse;
|
|
13016
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): UpdateOrganizationLoginMethodsResponse;
|
|
13017
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): UpdateOrganizationLoginMethodsResponse;
|
|
13018
|
+
static equals(a: UpdateOrganizationLoginMethodsResponse | PlainMessage<UpdateOrganizationLoginMethodsResponse> | undefined, b: UpdateOrganizationLoginMethodsResponse | PlainMessage<UpdateOrganizationLoginMethodsResponse> | undefined): boolean;
|
|
12784
13019
|
}
|
|
12785
13020
|
/**
|
|
12786
13021
|
* @generated from message wg.cosmo.platform.v1.GetOperationsRequest
|