@scalekit-sdk/node 1.0.10 → 1.0.12
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/README.md +11 -0
- package/buf.gen.yaml +2 -1
- package/lib/core.js +1 -1
- package/lib/core.js.map +1 -1
- package/lib/passwordless.d.ts +55 -0
- package/lib/passwordless.js +111 -0
- package/lib/passwordless.js.map +1 -0
- package/lib/pkg/grpc/scalekit/v1/auth/passwordless_connect.d.ts +37 -0
- package/lib/pkg/grpc/scalekit/v1/auth/passwordless_connect.js +45 -0
- package/lib/pkg/grpc/scalekit/v1/auth/passwordless_connect.js.map +1 -0
- package/lib/pkg/grpc/scalekit/v1/auth/passwordless_pb.d.ts +184 -0
- package/lib/pkg/grpc/scalekit/v1/auth/passwordless_pb.js +245 -0
- package/lib/pkg/grpc/scalekit/v1/auth/passwordless_pb.js.map +1 -0
- package/lib/pkg/grpc/scalekit/v1/connections/connections_connect.d.ts +28 -1
- package/lib/pkg/grpc/scalekit/v1/connections/connections_connect.js +27 -0
- package/lib/pkg/grpc/scalekit/v1/connections/connections_connect.js.map +1 -1
- package/lib/pkg/grpc/scalekit/v1/connections/connections_pb.d.ts +349 -3
- package/lib/pkg/grpc/scalekit/v1/connections/connections_pb.js +406 -1
- package/lib/pkg/grpc/scalekit/v1/connections/connections_pb.js.map +1 -1
- package/lib/pkg/grpc/scalekit/v1/directories/directories_connect.d.ts +38 -2
- package/lib/pkg/grpc/scalekit/v1/directories/directories_connect.js +36 -0
- package/lib/pkg/grpc/scalekit/v1/directories/directories_connect.js.map +1 -1
- package/lib/pkg/grpc/scalekit/v1/directories/directories_pb.d.ts +152 -3
- package/lib/pkg/grpc/scalekit/v1/directories/directories_pb.js +234 -3
- package/lib/pkg/grpc/scalekit/v1/directories/directories_pb.js.map +1 -1
- package/lib/pkg/grpc/scalekit/v1/domains/domains_connect.d.ts +11 -2
- package/lib/pkg/grpc/scalekit/v1/domains/domains_connect.js +9 -0
- package/lib/pkg/grpc/scalekit/v1/domains/domains_connect.js.map +1 -1
- package/lib/pkg/grpc/scalekit/v1/domains/domains_pb.d.ts +36 -0
- package/lib/pkg/grpc/scalekit/v1/domains/domains_pb.js +38 -1
- package/lib/pkg/grpc/scalekit/v1/domains/domains_pb.js.map +1 -1
- package/lib/pkg/grpc/scalekit/v1/options/options_pb.d.ts +6 -2
- package/lib/pkg/grpc/scalekit/v1/options/options_pb.js +7 -2
- package/lib/pkg/grpc/scalekit/v1/options/options_pb.js.map +1 -1
- package/lib/pkg/grpc/scalekit/v1/organizations/organizations_connect.d.ts +37 -1
- package/lib/pkg/grpc/scalekit/v1/organizations/organizations_connect.js +36 -0
- package/lib/pkg/grpc/scalekit/v1/organizations/organizations_connect.js.map +1 -1
- package/lib/pkg/grpc/scalekit/v1/organizations/organizations_pb.d.ts +233 -10
- package/lib/pkg/grpc/scalekit/v1/organizations/organizations_pb.js +325 -7
- package/lib/pkg/grpc/scalekit/v1/organizations/organizations_pb.js.map +1 -1
- package/lib/scalekit.d.ts +2 -0
- package/lib/scalekit.js +2 -0
- package/lib/scalekit.js.map +1 -1
- package/package.json +1 -1
- package/src/core.ts +1 -1
- package/src/passwordless.ts +135 -0
- package/src/pkg/grpc/scalekit/v1/auth/passwordless_connect.ts +44 -0
- package/src/pkg/grpc/scalekit/v1/auth/passwordless_pb.ts +330 -0
- package/src/pkg/grpc/scalekit/v1/connections/connections_connect.ts +28 -1
- package/src/pkg/grpc/scalekit/v1/connections/connections_pb.ts +598 -1
- package/src/pkg/grpc/scalekit/v1/directories/directories_connect.ts +38 -2
- package/src/pkg/grpc/scalekit/v1/directories/directories_pb.ts +283 -2
- package/src/pkg/grpc/scalekit/v1/domains/domains_connect.ts +11 -2
- package/src/pkg/grpc/scalekit/v1/domains/domains_pb.ts +56 -0
- package/src/pkg/grpc/scalekit/v1/options/options_pb.ts +8 -2
- package/src/pkg/grpc/scalekit/v1/organizations/organizations_connect.ts +37 -1
- package/src/pkg/grpc/scalekit/v1/organizations/organizations_pb.ts +435 -11
- package/src/scalekit.ts +6 -0
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage } from "@bufbuild/protobuf";
|
|
2
2
|
import { Message, proto3, Timestamp } from "@bufbuild/protobuf";
|
|
3
|
+
/**
|
|
4
|
+
* @generated from enum scalekit.v1.connections.CodeChallengeType
|
|
5
|
+
*/
|
|
6
|
+
export declare enum CodeChallengeType {
|
|
7
|
+
/**
|
|
8
|
+
* @generated from enum value: CODE_CHALLENGE_TYPE_UNSPECIFIED = 0;
|
|
9
|
+
*/
|
|
10
|
+
CODE_CHALLENGE_TYPE_UNSPECIFIED = 0,
|
|
11
|
+
/**
|
|
12
|
+
* @generated from enum value: NUMERIC = 1;
|
|
13
|
+
*/
|
|
14
|
+
NUMERIC = 1,
|
|
15
|
+
/**
|
|
16
|
+
* @generated from enum value: ALPHANUMERIC = 2;
|
|
17
|
+
*/
|
|
18
|
+
ALPHANUMERIC = 2
|
|
19
|
+
}
|
|
3
20
|
/**
|
|
4
21
|
* @generated from enum scalekit.v1.connections.ConfigurationType
|
|
5
22
|
*/
|
|
@@ -42,6 +59,44 @@ export declare enum NameIdFormat {
|
|
|
42
59
|
*/
|
|
43
60
|
PERSISTENT = 4
|
|
44
61
|
}
|
|
62
|
+
/**
|
|
63
|
+
* @generated from enum scalekit.v1.connections.PasswordlessType
|
|
64
|
+
*/
|
|
65
|
+
export declare enum PasswordlessType {
|
|
66
|
+
/**
|
|
67
|
+
* @generated from enum value: PasswordlessType_UNSPECIFIED = 0;
|
|
68
|
+
*/
|
|
69
|
+
PasswordlessType_UNSPECIFIED = 0,
|
|
70
|
+
/**
|
|
71
|
+
* @generated from enum value: LINK = 1;
|
|
72
|
+
*/
|
|
73
|
+
LINK = 1,
|
|
74
|
+
/**
|
|
75
|
+
* @generated from enum value: OTP = 2;
|
|
76
|
+
*/
|
|
77
|
+
OTP = 2,
|
|
78
|
+
/**
|
|
79
|
+
* @generated from enum value: LINK_OTP = 3;
|
|
80
|
+
*/
|
|
81
|
+
LINK_OTP = 3
|
|
82
|
+
}
|
|
83
|
+
/**
|
|
84
|
+
* @generated from enum scalekit.v1.connections.TestResultStatus
|
|
85
|
+
*/
|
|
86
|
+
export declare enum TestResultStatus {
|
|
87
|
+
/**
|
|
88
|
+
* @generated from enum value: PENDING = 0;
|
|
89
|
+
*/
|
|
90
|
+
PENDING = 0,
|
|
91
|
+
/**
|
|
92
|
+
* @generated from enum value: SUCCESS = 1;
|
|
93
|
+
*/
|
|
94
|
+
SUCCESS = 1,
|
|
95
|
+
/**
|
|
96
|
+
* @generated from enum value: FAILURE = 2;
|
|
97
|
+
*/
|
|
98
|
+
FAILURE = 2
|
|
99
|
+
}
|
|
45
100
|
/**
|
|
46
101
|
* enums all
|
|
47
102
|
*
|
|
@@ -67,7 +122,11 @@ export declare enum SAMLSigningOptions {
|
|
|
67
122
|
/**
|
|
68
123
|
* @generated from enum value: SAML_RESPONSE_ASSERTION_SIGNING = 4;
|
|
69
124
|
*/
|
|
70
|
-
SAML_RESPONSE_ASSERTION_SIGNING = 4
|
|
125
|
+
SAML_RESPONSE_ASSERTION_SIGNING = 4,
|
|
126
|
+
/**
|
|
127
|
+
* @generated from enum value: SAML_RESPONSE_OR_ASSERTION_SIGNING = 5;
|
|
128
|
+
*/
|
|
129
|
+
SAML_RESPONSE_OR_ASSERTION_SIGNING = 5
|
|
71
130
|
}
|
|
72
131
|
/**
|
|
73
132
|
* @generated from enum scalekit.v1.connections.RequestBinding
|
|
@@ -155,7 +214,11 @@ export declare enum ConnectionType {
|
|
|
155
214
|
/**
|
|
156
215
|
* @generated from enum value: OAUTH = 4;
|
|
157
216
|
*/
|
|
158
|
-
OAUTH = 4
|
|
217
|
+
OAUTH = 4,
|
|
218
|
+
/**
|
|
219
|
+
* @generated from enum value: PASSWORDLESS = 5;
|
|
220
|
+
*/
|
|
221
|
+
PASSWORDLESS = 5
|
|
159
222
|
}
|
|
160
223
|
/**
|
|
161
224
|
* @generated from enum scalekit.v1.connections.ConnectionStatus
|
|
@@ -233,7 +296,23 @@ export declare enum ConnectionProvider {
|
|
|
233
296
|
/**
|
|
234
297
|
* @generated from enum value: SALESFORCE = 12;
|
|
235
298
|
*/
|
|
236
|
-
SALESFORCE = 12
|
|
299
|
+
SALESFORCE = 12,
|
|
300
|
+
/**
|
|
301
|
+
* @generated from enum value: MICROSOFT = 13;
|
|
302
|
+
*/
|
|
303
|
+
MICROSOFT = 13,
|
|
304
|
+
/**
|
|
305
|
+
* @generated from enum value: IDP_SIMULATOR = 14;
|
|
306
|
+
*/
|
|
307
|
+
IDP_SIMULATOR = 14,
|
|
308
|
+
/**
|
|
309
|
+
* @generated from enum value: SCALEKIT = 15;
|
|
310
|
+
*/
|
|
311
|
+
SCALEKIT = 15,
|
|
312
|
+
/**
|
|
313
|
+
* @generated from enum value: ADFS = 16;
|
|
314
|
+
*/
|
|
315
|
+
ADFS = 16
|
|
237
316
|
}
|
|
238
317
|
/**
|
|
239
318
|
* @generated from message scalekit.v1.connections.GetProvidersRequest
|
|
@@ -428,6 +507,12 @@ export declare class Connection extends Message<Connection> {
|
|
|
428
507
|
*/
|
|
429
508
|
value: OAuthConnectionConfig;
|
|
430
509
|
case: "oauthConfig";
|
|
510
|
+
} | {
|
|
511
|
+
/**
|
|
512
|
+
* @generated from field: scalekit.v1.connections.PasswordLessConfig passwordless_config = 22;
|
|
513
|
+
*/
|
|
514
|
+
value: PasswordLessConfig;
|
|
515
|
+
case: "passwordlessConfig";
|
|
431
516
|
} | {
|
|
432
517
|
case: undefined;
|
|
433
518
|
value?: undefined;
|
|
@@ -559,6 +644,12 @@ export declare class UpdateConnection extends Message<UpdateConnection> {
|
|
|
559
644
|
*/
|
|
560
645
|
value: OAuthConnectionConfig;
|
|
561
646
|
case: "oauthConfig";
|
|
647
|
+
} | {
|
|
648
|
+
/**
|
|
649
|
+
* @generated from field: scalekit.v1.connections.PasswordLessConfig passwordless_config = 20;
|
|
650
|
+
*/
|
|
651
|
+
value: PasswordLessConfig;
|
|
652
|
+
case: "passwordlessConfig";
|
|
562
653
|
} | {
|
|
563
654
|
case: undefined;
|
|
564
655
|
value?: undefined;
|
|
@@ -760,6 +851,14 @@ export declare class ListConnection extends Message<ListConnection> {
|
|
|
760
851
|
* @generated from field: string ui_button_title = 7;
|
|
761
852
|
*/
|
|
762
853
|
uiButtonTitle: string;
|
|
854
|
+
/**
|
|
855
|
+
* @generated from field: repeated string domains = 8;
|
|
856
|
+
*/
|
|
857
|
+
domains: string[];
|
|
858
|
+
/**
|
|
859
|
+
* @generated from field: string organization_name = 9;
|
|
860
|
+
*/
|
|
861
|
+
organizationName: string;
|
|
763
862
|
constructor(data?: PartialMessage<ListConnection>);
|
|
764
863
|
static readonly runtime: typeof proto3;
|
|
765
864
|
static readonly typeName = "scalekit.v1.connections.ListConnection";
|
|
@@ -769,6 +868,122 @@ export declare class ListConnection extends Message<ListConnection> {
|
|
|
769
868
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ListConnection;
|
|
770
869
|
static equals(a: ListConnection | PlainMessage<ListConnection> | undefined, b: ListConnection | PlainMessage<ListConnection> | undefined): boolean;
|
|
771
870
|
}
|
|
871
|
+
/**
|
|
872
|
+
* @generated from message scalekit.v1.connections.ListOrganizationConnectionsRequest
|
|
873
|
+
*/
|
|
874
|
+
export declare class ListOrganizationConnectionsRequest extends Message<ListOrganizationConnectionsRequest> {
|
|
875
|
+
/**
|
|
876
|
+
* @generated from field: uint32 page_size = 1;
|
|
877
|
+
*/
|
|
878
|
+
pageSize: number;
|
|
879
|
+
/**
|
|
880
|
+
* @generated from field: string page_token = 2;
|
|
881
|
+
*/
|
|
882
|
+
pageToken: string;
|
|
883
|
+
constructor(data?: PartialMessage<ListOrganizationConnectionsRequest>);
|
|
884
|
+
static readonly runtime: typeof proto3;
|
|
885
|
+
static readonly typeName = "scalekit.v1.connections.ListOrganizationConnectionsRequest";
|
|
886
|
+
static readonly fields: FieldList;
|
|
887
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ListOrganizationConnectionsRequest;
|
|
888
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ListOrganizationConnectionsRequest;
|
|
889
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ListOrganizationConnectionsRequest;
|
|
890
|
+
static equals(a: ListOrganizationConnectionsRequest | PlainMessage<ListOrganizationConnectionsRequest> | undefined, b: ListOrganizationConnectionsRequest | PlainMessage<ListOrganizationConnectionsRequest> | undefined): boolean;
|
|
891
|
+
}
|
|
892
|
+
/**
|
|
893
|
+
* @generated from message scalekit.v1.connections.ListOrganizationConnectionsResponse
|
|
894
|
+
*/
|
|
895
|
+
export declare class ListOrganizationConnectionsResponse extends Message<ListOrganizationConnectionsResponse> {
|
|
896
|
+
/**
|
|
897
|
+
* @generated from field: string next_page_token = 1;
|
|
898
|
+
*/
|
|
899
|
+
nextPageToken: string;
|
|
900
|
+
/**
|
|
901
|
+
* @generated from field: uint32 total_size = 2;
|
|
902
|
+
*/
|
|
903
|
+
totalSize: number;
|
|
904
|
+
/**
|
|
905
|
+
* @generated from field: string prev_page_token = 3;
|
|
906
|
+
*/
|
|
907
|
+
prevPageToken: string;
|
|
908
|
+
/**
|
|
909
|
+
* @generated from field: repeated scalekit.v1.connections.ListConnection connections = 4;
|
|
910
|
+
*/
|
|
911
|
+
connections: ListConnection[];
|
|
912
|
+
constructor(data?: PartialMessage<ListOrganizationConnectionsResponse>);
|
|
913
|
+
static readonly runtime: typeof proto3;
|
|
914
|
+
static readonly typeName = "scalekit.v1.connections.ListOrganizationConnectionsResponse";
|
|
915
|
+
static readonly fields: FieldList;
|
|
916
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ListOrganizationConnectionsResponse;
|
|
917
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ListOrganizationConnectionsResponse;
|
|
918
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ListOrganizationConnectionsResponse;
|
|
919
|
+
static equals(a: ListOrganizationConnectionsResponse | PlainMessage<ListOrganizationConnectionsResponse> | undefined, b: ListOrganizationConnectionsResponse | PlainMessage<ListOrganizationConnectionsResponse> | undefined): boolean;
|
|
920
|
+
}
|
|
921
|
+
/**
|
|
922
|
+
* @generated from message scalekit.v1.connections.SearchOrganizationConnectionsRequest
|
|
923
|
+
*/
|
|
924
|
+
export declare class SearchOrganizationConnectionsRequest extends Message<SearchOrganizationConnectionsRequest> {
|
|
925
|
+
/**
|
|
926
|
+
* @generated from field: optional string query = 1;
|
|
927
|
+
*/
|
|
928
|
+
query?: string;
|
|
929
|
+
/**
|
|
930
|
+
* @generated from field: optional scalekit.v1.connections.ConnectionProvider provider = 2;
|
|
931
|
+
*/
|
|
932
|
+
provider?: ConnectionProvider;
|
|
933
|
+
/**
|
|
934
|
+
* @generated from field: optional scalekit.v1.connections.ConnectionStatus status = 3;
|
|
935
|
+
*/
|
|
936
|
+
status?: ConnectionStatus;
|
|
937
|
+
/**
|
|
938
|
+
* @generated from field: optional scalekit.v1.connections.ConnectionType connection_type = 4;
|
|
939
|
+
*/
|
|
940
|
+
connectionType?: ConnectionType;
|
|
941
|
+
/**
|
|
942
|
+
* @generated from field: uint32 page_size = 5;
|
|
943
|
+
*/
|
|
944
|
+
pageSize: number;
|
|
945
|
+
/**
|
|
946
|
+
* @generated from field: string page_token = 6;
|
|
947
|
+
*/
|
|
948
|
+
pageToken: string;
|
|
949
|
+
constructor(data?: PartialMessage<SearchOrganizationConnectionsRequest>);
|
|
950
|
+
static readonly runtime: typeof proto3;
|
|
951
|
+
static readonly typeName = "scalekit.v1.connections.SearchOrganizationConnectionsRequest";
|
|
952
|
+
static readonly fields: FieldList;
|
|
953
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SearchOrganizationConnectionsRequest;
|
|
954
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SearchOrganizationConnectionsRequest;
|
|
955
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SearchOrganizationConnectionsRequest;
|
|
956
|
+
static equals(a: SearchOrganizationConnectionsRequest | PlainMessage<SearchOrganizationConnectionsRequest> | undefined, b: SearchOrganizationConnectionsRequest | PlainMessage<SearchOrganizationConnectionsRequest> | undefined): boolean;
|
|
957
|
+
}
|
|
958
|
+
/**
|
|
959
|
+
* @generated from message scalekit.v1.connections.SearchOrganizationConnectionsResponse
|
|
960
|
+
*/
|
|
961
|
+
export declare class SearchOrganizationConnectionsResponse extends Message<SearchOrganizationConnectionsResponse> {
|
|
962
|
+
/**
|
|
963
|
+
* @generated from field: string next_page_token = 1;
|
|
964
|
+
*/
|
|
965
|
+
nextPageToken: string;
|
|
966
|
+
/**
|
|
967
|
+
* @generated from field: uint32 total_size = 2;
|
|
968
|
+
*/
|
|
969
|
+
totalSize: number;
|
|
970
|
+
/**
|
|
971
|
+
* @generated from field: string prev_page_token = 3;
|
|
972
|
+
*/
|
|
973
|
+
prevPageToken: string;
|
|
974
|
+
/**
|
|
975
|
+
* @generated from field: repeated scalekit.v1.connections.ListConnection connections = 4;
|
|
976
|
+
*/
|
|
977
|
+
connections: ListConnection[];
|
|
978
|
+
constructor(data?: PartialMessage<SearchOrganizationConnectionsResponse>);
|
|
979
|
+
static readonly runtime: typeof proto3;
|
|
980
|
+
static readonly typeName = "scalekit.v1.connections.SearchOrganizationConnectionsResponse";
|
|
981
|
+
static readonly fields: FieldList;
|
|
982
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SearchOrganizationConnectionsResponse;
|
|
983
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SearchOrganizationConnectionsResponse;
|
|
984
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SearchOrganizationConnectionsResponse;
|
|
985
|
+
static equals(a: SearchOrganizationConnectionsResponse | PlainMessage<SearchOrganizationConnectionsResponse> | undefined, b: SearchOrganizationConnectionsResponse | PlainMessage<SearchOrganizationConnectionsResponse> | undefined): boolean;
|
|
986
|
+
}
|
|
772
987
|
/**
|
|
773
988
|
* @generated from message scalekit.v1.connections.ToggleEnvironmentConnectionRequest
|
|
774
989
|
*/
|
|
@@ -880,6 +1095,18 @@ export declare class OIDCConnectionConfig extends Message<OIDCConnectionConfig>
|
|
|
880
1095
|
* @generated from field: google.protobuf.BoolValue pkce_enabled = 13;
|
|
881
1096
|
*/
|
|
882
1097
|
pkceEnabled?: boolean;
|
|
1098
|
+
/**
|
|
1099
|
+
* @generated from field: google.protobuf.BoolValue idp_logout_required = 14;
|
|
1100
|
+
*/
|
|
1101
|
+
idpLogoutRequired?: boolean;
|
|
1102
|
+
/**
|
|
1103
|
+
* @generated from field: google.protobuf.StringValue post_logout_redirect_uri = 15;
|
|
1104
|
+
*/
|
|
1105
|
+
postLogoutRedirectUri?: string;
|
|
1106
|
+
/**
|
|
1107
|
+
* @generated from field: google.protobuf.StringValue backchannel_logout_redirect_uri = 16;
|
|
1108
|
+
*/
|
|
1109
|
+
backchannelLogoutRedirectUri?: string;
|
|
883
1110
|
constructor(data?: PartialMessage<OIDCConnectionConfig>);
|
|
884
1111
|
static readonly runtime: typeof proto3;
|
|
885
1112
|
static readonly typeName = "scalekit.v1.connections.OIDCConnectionConfig";
|
|
@@ -925,6 +1152,14 @@ export declare class OAuthConnectionConfig extends Message<OAuthConnectionConfig
|
|
|
925
1152
|
* @generated from field: google.protobuf.BoolValue pkce_enabled = 13;
|
|
926
1153
|
*/
|
|
927
1154
|
pkceEnabled?: boolean;
|
|
1155
|
+
/**
|
|
1156
|
+
* @generated from field: google.protobuf.StringValue prompt = 14;
|
|
1157
|
+
*/
|
|
1158
|
+
prompt?: string;
|
|
1159
|
+
/**
|
|
1160
|
+
* @generated from field: google.protobuf.BoolValue use_platform_creds = 15;
|
|
1161
|
+
*/
|
|
1162
|
+
usePlatformCreds?: boolean;
|
|
928
1163
|
constructor(data?: PartialMessage<OAuthConnectionConfig>);
|
|
929
1164
|
static readonly runtime: typeof proto3;
|
|
930
1165
|
static readonly typeName = "scalekit.v1.connections.OAuthConnectionConfig";
|
|
@@ -934,6 +1169,43 @@ export declare class OAuthConnectionConfig extends Message<OAuthConnectionConfig
|
|
|
934
1169
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): OAuthConnectionConfig;
|
|
935
1170
|
static equals(a: OAuthConnectionConfig | PlainMessage<OAuthConnectionConfig> | undefined, b: OAuthConnectionConfig | PlainMessage<OAuthConnectionConfig> | undefined): boolean;
|
|
936
1171
|
}
|
|
1172
|
+
/**
|
|
1173
|
+
* @generated from message scalekit.v1.connections.PasswordLessConfig
|
|
1174
|
+
*/
|
|
1175
|
+
export declare class PasswordLessConfig extends Message<PasswordLessConfig> {
|
|
1176
|
+
/**
|
|
1177
|
+
* @generated from field: scalekit.v1.connections.PasswordlessType type = 1;
|
|
1178
|
+
*/
|
|
1179
|
+
type: PasswordlessType;
|
|
1180
|
+
/**
|
|
1181
|
+
* @generated from field: optional google.protobuf.UInt32Value frequency = 2;
|
|
1182
|
+
*/
|
|
1183
|
+
frequency?: number;
|
|
1184
|
+
/**
|
|
1185
|
+
* @generated from field: optional google.protobuf.UInt32Value validity = 3;
|
|
1186
|
+
*/
|
|
1187
|
+
validity?: number;
|
|
1188
|
+
/**
|
|
1189
|
+
* @generated from field: optional google.protobuf.BoolValue enforce_same_browser_origin = 4;
|
|
1190
|
+
*/
|
|
1191
|
+
enforceSameBrowserOrigin?: boolean;
|
|
1192
|
+
/**
|
|
1193
|
+
* @generated from field: optional google.protobuf.UInt32Value code_challenge_length = 5;
|
|
1194
|
+
*/
|
|
1195
|
+
codeChallengeLength?: number;
|
|
1196
|
+
/**
|
|
1197
|
+
* @generated from field: optional scalekit.v1.connections.CodeChallengeType code_challenge_type = 6;
|
|
1198
|
+
*/
|
|
1199
|
+
codeChallengeType?: CodeChallengeType;
|
|
1200
|
+
constructor(data?: PartialMessage<PasswordLessConfig>);
|
|
1201
|
+
static readonly runtime: typeof proto3;
|
|
1202
|
+
static readonly typeName = "scalekit.v1.connections.PasswordLessConfig";
|
|
1203
|
+
static readonly fields: FieldList;
|
|
1204
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): PasswordLessConfig;
|
|
1205
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): PasswordLessConfig;
|
|
1206
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): PasswordLessConfig;
|
|
1207
|
+
static equals(a: PasswordLessConfig | PlainMessage<PasswordLessConfig> | undefined, b: PasswordLessConfig | PlainMessage<PasswordLessConfig> | undefined): boolean;
|
|
1208
|
+
}
|
|
937
1209
|
/**
|
|
938
1210
|
* @generated from message scalekit.v1.connections.SAMLConnectionConfigRequest
|
|
939
1211
|
*/
|
|
@@ -994,6 +1266,14 @@ export declare class SAMLConnectionConfigRequest extends Message<SAMLConnectionC
|
|
|
994
1266
|
* @generated from field: google.protobuf.BoolValue want_request_signed = 17;
|
|
995
1267
|
*/
|
|
996
1268
|
wantRequestSigned?: boolean;
|
|
1269
|
+
/**
|
|
1270
|
+
* @generated from field: google.protobuf.StringValue certificate_id = 18;
|
|
1271
|
+
*/
|
|
1272
|
+
certificateId?: string;
|
|
1273
|
+
/**
|
|
1274
|
+
* @generated from field: google.protobuf.BoolValue idp_slo_required = 19;
|
|
1275
|
+
*/
|
|
1276
|
+
idpSloRequired?: boolean;
|
|
997
1277
|
constructor(data?: PartialMessage<SAMLConnectionConfigRequest>);
|
|
998
1278
|
static readonly runtime: typeof proto3;
|
|
999
1279
|
static readonly typeName = "scalekit.v1.connections.SAMLConnectionConfigRequest";
|
|
@@ -1079,6 +1359,18 @@ export declare class SAMLConnectionConfigResponse extends Message<SAMLConnection
|
|
|
1079
1359
|
* @generated from field: google.protobuf.BoolValue want_request_signed = 18;
|
|
1080
1360
|
*/
|
|
1081
1361
|
wantRequestSigned?: boolean;
|
|
1362
|
+
/**
|
|
1363
|
+
* @generated from field: google.protobuf.StringValue certificate_id = 19;
|
|
1364
|
+
*/
|
|
1365
|
+
certificateId?: string;
|
|
1366
|
+
/**
|
|
1367
|
+
* @generated from field: google.protobuf.BoolValue idp_slo_required = 20;
|
|
1368
|
+
*/
|
|
1369
|
+
idpSloRequired?: boolean;
|
|
1370
|
+
/**
|
|
1371
|
+
* @generated from field: google.protobuf.StringValue sp_slo_url = 21;
|
|
1372
|
+
*/
|
|
1373
|
+
spSloUrl?: string;
|
|
1082
1374
|
constructor(data?: PartialMessage<SAMLConnectionConfigResponse>);
|
|
1083
1375
|
static readonly runtime: typeof proto3;
|
|
1084
1376
|
static readonly typeName = "scalekit.v1.connections.SAMLConnectionConfigResponse";
|
|
@@ -1330,6 +1622,60 @@ export declare class GetSAMLCertificateDetailsResponse extends Message<GetSAMLCe
|
|
|
1330
1622
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetSAMLCertificateDetailsResponse;
|
|
1331
1623
|
static equals(a: GetSAMLCertificateDetailsResponse | PlainMessage<GetSAMLCertificateDetailsResponse> | undefined, b: GetSAMLCertificateDetailsResponse | PlainMessage<GetSAMLCertificateDetailsResponse> | undefined): boolean;
|
|
1332
1624
|
}
|
|
1625
|
+
/**
|
|
1626
|
+
* @generated from message scalekit.v1.connections.GetConnectionTestResultRequest
|
|
1627
|
+
*/
|
|
1628
|
+
export declare class GetConnectionTestResultRequest extends Message<GetConnectionTestResultRequest> {
|
|
1629
|
+
/**
|
|
1630
|
+
* @generated from field: string connection_id = 1;
|
|
1631
|
+
*/
|
|
1632
|
+
connectionId: string;
|
|
1633
|
+
/**
|
|
1634
|
+
* @generated from field: string test_request_id = 2;
|
|
1635
|
+
*/
|
|
1636
|
+
testRequestId: string;
|
|
1637
|
+
constructor(data?: PartialMessage<GetConnectionTestResultRequest>);
|
|
1638
|
+
static readonly runtime: typeof proto3;
|
|
1639
|
+
static readonly typeName = "scalekit.v1.connections.GetConnectionTestResultRequest";
|
|
1640
|
+
static readonly fields: FieldList;
|
|
1641
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetConnectionTestResultRequest;
|
|
1642
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetConnectionTestResultRequest;
|
|
1643
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetConnectionTestResultRequest;
|
|
1644
|
+
static equals(a: GetConnectionTestResultRequest | PlainMessage<GetConnectionTestResultRequest> | undefined, b: GetConnectionTestResultRequest | PlainMessage<GetConnectionTestResultRequest> | undefined): boolean;
|
|
1645
|
+
}
|
|
1646
|
+
/**
|
|
1647
|
+
* @generated from message scalekit.v1.connections.GetConnectionTestResultResponse
|
|
1648
|
+
*/
|
|
1649
|
+
export declare class GetConnectionTestResultResponse extends Message<GetConnectionTestResultResponse> {
|
|
1650
|
+
/**
|
|
1651
|
+
* @generated from field: scalekit.v1.connections.TestResultStatus status = 1;
|
|
1652
|
+
*/
|
|
1653
|
+
status: TestResultStatus;
|
|
1654
|
+
/**
|
|
1655
|
+
* @generated from field: optional string user_info = 2;
|
|
1656
|
+
*/
|
|
1657
|
+
userInfo?: string;
|
|
1658
|
+
/**
|
|
1659
|
+
* @generated from field: optional string error = 3;
|
|
1660
|
+
*/
|
|
1661
|
+
error?: string;
|
|
1662
|
+
/**
|
|
1663
|
+
* @generated from field: optional string error_description = 4;
|
|
1664
|
+
*/
|
|
1665
|
+
errorDescription?: string;
|
|
1666
|
+
/**
|
|
1667
|
+
* @generated from field: optional string error_details = 5;
|
|
1668
|
+
*/
|
|
1669
|
+
errorDetails?: string;
|
|
1670
|
+
constructor(data?: PartialMessage<GetConnectionTestResultResponse>);
|
|
1671
|
+
static readonly runtime: typeof proto3;
|
|
1672
|
+
static readonly typeName = "scalekit.v1.connections.GetConnectionTestResultResponse";
|
|
1673
|
+
static readonly fields: FieldList;
|
|
1674
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetConnectionTestResultResponse;
|
|
1675
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetConnectionTestResultResponse;
|
|
1676
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetConnectionTestResultResponse;
|
|
1677
|
+
static equals(a: GetConnectionTestResultResponse | PlainMessage<GetConnectionTestResultResponse> | undefined, b: GetConnectionTestResultResponse | PlainMessage<GetConnectionTestResultResponse> | undefined): boolean;
|
|
1678
|
+
}
|
|
1333
1679
|
/**
|
|
1334
1680
|
* @generated from message scalekit.v1.connections.PasswordConnectionConfig
|
|
1335
1681
|
*/
|