@eide/foir-proto-ts 0.1.1 → 0.3.2
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/package.json +4 -2
- package/src/configs/v1/configs_pb.d.ts +124 -0
- package/src/configs/v1/configs_pb.js +15 -1
- package/src/identity/v1/identity_connect.d.ts +77 -1
- package/src/identity/v1/identity_connect.js +77 -1
- package/src/identity/v1/identity_pb.d.ts +434 -0
- package/src/identity/v1/identity_pb.js +113 -1
- package/src/records/v1/records_connect.d.ts +12 -1
- package/src/records/v1/records_connect.js +12 -1
- package/src/records/v1/records_pb.d.ts +133 -0
- package/src/records/v1/records_pb.js +40 -19
- package/src/schedules/v1/schedules_connect.d.ts +162 -41
- package/src/schedules/v1/schedules_connect.js +162 -41
- package/src/schedules/v1/schedules_pb.d.ts +909 -140
- package/src/schedules/v1/schedules_pb.js +246 -57
- package/src/segments/v1/segments_pb.d.ts +5 -0
- package/src/segments/v1/segments_pb.js +1 -1
- package/src/settings/v1/settings_connect.d.ts +12 -1
- package/src/settings/v1/settings_connect.js +12 -1
- package/src/settings/v1/settings_pb.d.ts +300 -0
- package/src/settings/v1/settings_pb.js +64 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eide/foir-proto-ts",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"exports": {
|
|
6
6
|
"./analytics/v1/analytics_pb": "./src/analytics/v1/analytics_pb.js",
|
|
@@ -37,7 +37,9 @@
|
|
|
37
37
|
"./workers/v1/workers_pb": "./src/workers/v1/workers_pb.js",
|
|
38
38
|
"./workers/v1/workers_connect": "./src/workers/v1/workers_connect.js"
|
|
39
39
|
},
|
|
40
|
-
"files": [
|
|
40
|
+
"files": [
|
|
41
|
+
"src"
|
|
42
|
+
],
|
|
41
43
|
"scripts": {
|
|
42
44
|
"generate": "npx @bufbuild/buf generate"
|
|
43
45
|
},
|
|
@@ -702,6 +702,23 @@ export declare type ApplyConfigResponse = Message<"configs.v1.ApplyConfigRespons
|
|
|
702
702
|
* @generated from field: configs.v1.Config config = 1;
|
|
703
703
|
*/
|
|
704
704
|
config?: Config;
|
|
705
|
+
|
|
706
|
+
/**
|
|
707
|
+
* @generated from field: configs.v1.ApplyConfigSummary summary = 2;
|
|
708
|
+
*/
|
|
709
|
+
summary?: ApplyConfigSummary;
|
|
710
|
+
|
|
711
|
+
/**
|
|
712
|
+
* Provisioned secrets — only populated on first creation, empty on subsequent pushes.
|
|
713
|
+
*
|
|
714
|
+
* @generated from field: repeated configs.v1.ProvisionedApiKey provisioned_api_keys = 3;
|
|
715
|
+
*/
|
|
716
|
+
provisionedApiKeys: ProvisionedApiKey[];
|
|
717
|
+
|
|
718
|
+
/**
|
|
719
|
+
* @generated from field: optional string webhook_secret = 4;
|
|
720
|
+
*/
|
|
721
|
+
webhookSecret?: string;
|
|
705
722
|
};
|
|
706
723
|
|
|
707
724
|
/**
|
|
@@ -710,6 +727,113 @@ export declare type ApplyConfigResponse = Message<"configs.v1.ApplyConfigRespons
|
|
|
710
727
|
*/
|
|
711
728
|
export declare const ApplyConfigResponseSchema: GenMessage<ApplyConfigResponse>;
|
|
712
729
|
|
|
730
|
+
/**
|
|
731
|
+
* @generated from message configs.v1.ProvisionedApiKey
|
|
732
|
+
*/
|
|
733
|
+
export declare type ProvisionedApiKey = Message<"configs.v1.ProvisionedApiKey"> & {
|
|
734
|
+
/**
|
|
735
|
+
* @generated from field: string name = 1;
|
|
736
|
+
*/
|
|
737
|
+
name: string;
|
|
738
|
+
|
|
739
|
+
/**
|
|
740
|
+
* @generated from field: string key_type = 2;
|
|
741
|
+
*/
|
|
742
|
+
keyType: string;
|
|
743
|
+
|
|
744
|
+
/**
|
|
745
|
+
* @generated from field: string env_var = 3;
|
|
746
|
+
*/
|
|
747
|
+
envVar: string;
|
|
748
|
+
|
|
749
|
+
/**
|
|
750
|
+
* @generated from field: string raw_key = 4;
|
|
751
|
+
*/
|
|
752
|
+
rawKey: string;
|
|
753
|
+
};
|
|
754
|
+
|
|
755
|
+
/**
|
|
756
|
+
* Describes the message configs.v1.ProvisionedApiKey.
|
|
757
|
+
* Use `create(ProvisionedApiKeySchema)` to create a new message.
|
|
758
|
+
*/
|
|
759
|
+
export declare const ProvisionedApiKeySchema: GenMessage<ProvisionedApiKey>;
|
|
760
|
+
|
|
761
|
+
/**
|
|
762
|
+
* @generated from message configs.v1.ApplyConfigSummary
|
|
763
|
+
*/
|
|
764
|
+
export declare type ApplyConfigSummary = Message<"configs.v1.ApplyConfigSummary"> & {
|
|
765
|
+
/**
|
|
766
|
+
* @generated from field: int32 models_created = 1;
|
|
767
|
+
*/
|
|
768
|
+
modelsCreated: number;
|
|
769
|
+
|
|
770
|
+
/**
|
|
771
|
+
* @generated from field: int32 models_updated = 2;
|
|
772
|
+
*/
|
|
773
|
+
modelsUpdated: number;
|
|
774
|
+
|
|
775
|
+
/**
|
|
776
|
+
* @generated from field: int32 operations_created = 3;
|
|
777
|
+
*/
|
|
778
|
+
operationsCreated: number;
|
|
779
|
+
|
|
780
|
+
/**
|
|
781
|
+
* @generated from field: int32 operations_updated = 4;
|
|
782
|
+
*/
|
|
783
|
+
operationsUpdated: number;
|
|
784
|
+
|
|
785
|
+
/**
|
|
786
|
+
* @generated from field: int32 hooks_created = 5;
|
|
787
|
+
*/
|
|
788
|
+
hooksCreated: number;
|
|
789
|
+
|
|
790
|
+
/**
|
|
791
|
+
* @generated from field: int32 hooks_updated = 6;
|
|
792
|
+
*/
|
|
793
|
+
hooksUpdated: number;
|
|
794
|
+
|
|
795
|
+
/**
|
|
796
|
+
* @generated from field: int32 segments_created = 7;
|
|
797
|
+
*/
|
|
798
|
+
segmentsCreated: number;
|
|
799
|
+
|
|
800
|
+
/**
|
|
801
|
+
* @generated from field: int32 segments_updated = 8;
|
|
802
|
+
*/
|
|
803
|
+
segmentsUpdated: number;
|
|
804
|
+
|
|
805
|
+
/**
|
|
806
|
+
* @generated from field: int32 schedules_created = 9;
|
|
807
|
+
*/
|
|
808
|
+
schedulesCreated: number;
|
|
809
|
+
|
|
810
|
+
/**
|
|
811
|
+
* @generated from field: int32 schedules_updated = 10;
|
|
812
|
+
*/
|
|
813
|
+
schedulesUpdated: number;
|
|
814
|
+
|
|
815
|
+
/**
|
|
816
|
+
* @generated from field: int32 auth_providers_created = 11;
|
|
817
|
+
*/
|
|
818
|
+
authProvidersCreated: number;
|
|
819
|
+
|
|
820
|
+
/**
|
|
821
|
+
* @generated from field: int32 auth_providers_updated = 12;
|
|
822
|
+
*/
|
|
823
|
+
authProvidersUpdated: number;
|
|
824
|
+
|
|
825
|
+
/**
|
|
826
|
+
* @generated from field: int32 resources_deleted = 13;
|
|
827
|
+
*/
|
|
828
|
+
resourcesDeleted: number;
|
|
829
|
+
};
|
|
830
|
+
|
|
831
|
+
/**
|
|
832
|
+
* Describes the message configs.v1.ApplyConfigSummary.
|
|
833
|
+
* Use `create(ApplyConfigSummarySchema)` to create a new message.
|
|
834
|
+
*/
|
|
835
|
+
export declare const ApplyConfigSummarySchema: GenMessage<ApplyConfigSummary>;
|
|
836
|
+
|
|
713
837
|
/**
|
|
714
838
|
* @generated from enum configs.v1.ConfigDirection
|
|
715
839
|
*/
|
|
@@ -9,7 +9,7 @@ import { file_google_protobuf_struct, file_google_protobuf_timestamp } from "@bu
|
|
|
9
9
|
* Describes the file configs/v1/configs.proto.
|
|
10
10
|
*/
|
|
11
11
|
export const file_configs_v1_configs = /*@__PURE__*/
|
|
12
|
-
fileDesc("Chhjb25maWdzL3YxL2NvbmZpZ3MucHJvdG8SCmNvbmZpZ3MudjEivwcKBkNvbmZpZxIKCgJpZBgBIAEoCRILCgNrZXkYAiABKAkSEwoLY29uZmlnX3R5cGUYAyABKAkSLgoJZGlyZWN0aW9uGAQgASgOMhsuY29uZmlncy52MS5Db25maWdEaXJlY3Rpb24SDAoEbmFtZRgFIAEoCRIYCgtkZXNjcmlwdGlvbhgGIAEoCUgAiAEBEh4KEWNvbm5lY3Rpb25fZG9tYWluGAogASgJSAGIAQESGgoNY29ubmVjdGlvbl9pZBgLIAEoCUgCiAEBEg8KB2VuYWJsZWQYFCABKAgSEwoLZW52aXJvbm1lbnQYFSABKAkSEwoLc3luY19zdGF0dXMYFiABKAkSMwoNc3luY19tZXRhZGF0YRgXIAEoCzIXLmdvb2dsZS5wcm90b2J1Zi5TdHJ1Y3RIA4gBARIxCgtjcmVkZW50aWFscxgeIAEoCzIXLmdvb2dsZS5wcm90b2J1Zi5TdHJ1Y3RIBIgBARIrCgVvYXV0aBgfIAEoCzIXLmdvb2dsZS5wcm90b2J1Zi5TdHJ1Y3RIBYgBARIuCghmZWF0dXJlcxggIAEoCzIXLmdvb2dsZS5wcm90b2J1Zi5TdHJ1Y3RIBogBARIuCgh3ZWJob29rcxghIAEoCzIXLmdvb2dsZS5wcm90b2J1Zi5TdHJ1Y3RIB4gBARIsCgZjb25maWcYIiABKAsyFy5nb29nbGUucHJvdG9idWYuU3RydWN0SAiIAQESKwoFaG9va3MYIyABKAsyFy5nb29nbGUucHJvdG9idWYuU3RydWN0SAmIAQESEQoJdGVuYW50X2lkGCggASgJEhIKCnByb2plY3RfaWQYKSABKAkSFwoKY3JlYXRlZF9ieRgtIAEoCUgKiAEBEhcKCnVwZGF0ZWRfYnkYLiABKAlIC4gBARIuCgpjcmVhdGVkX2F0GDIgASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcBIuCgp1cGRhdGVkX2F0GDMgASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcEIOCgxfZGVzY3JpcHRpb25CFAoSX2Nvbm5lY3Rpb25fZG9tYWluQhAKDl9jb25uZWN0aW9uX2lkQhAKDl9zeW5jX21ldGFkYXRhQg4KDF9jcmVkZW50aWFsc0IICgZfb2F1dGhCCwoJX2ZlYXR1cmVzQgsKCV93ZWJob29rc0IJCgdfY29uZmlnQggKBl9ob29rc0INCgtfY3JlYXRlZF9ieUINCgtfdXBkYXRlZF9ieSLKAgoJT3BlcmF0aW9uEgoKAmlkGAEgASgJEgsKA2tleRgCIAEoCRIMCgRuYW1lGAMgASgJEhgKC2Rlc2NyaXB0aW9uGAQgASgJSACIAQESEQoEaWNvbhgFIAEoCUgBiAEBEhUKCGNhdGVnb3J5GAYgASgJSAKIAQESEQoJaXNfYWN0aXZlGAcgASgIEhEKCXRlbmFudF9pZBgUIAEoCRIXCgpwcm9qZWN0X2lkGBUgASgJSAOIAQESLgoKY3JlYXRlZF9hdBgyIAEoCzIaLmdvb2dsZS5wcm90b2J1Zi5UaW1lc3RhbXASLgoKdXBkYXRlZF9hdBgzIAEoCzIaLmdvb2dsZS5wcm90b2J1Zi5UaW1lc3RhbXBCDgoMX2Rlc2NyaXB0aW9uQgcKBV9pY29uQgsKCV9jYXRlZ29yeUINCgtfcHJvamVjdF9pZCKgAQoVTGlzdE9wZXJhdGlvbnNSZXF1ZXN0EhUKCGNhdGVnb3J5GAEgASgJSACIAQESFgoJaXNfYWN0aXZlGAIgASgISAGIAQESEwoGc2VhcmNoGAMgASgJSAKIAQESDQoFbGltaXQYCiABKAUSDgoGb2Zmc2V0GAsgASgFQgsKCV9jYXRlZ29yeUIMCgpfaXNfYWN0aXZlQgkKB19zZWFyY2giUgoWTGlzdE9wZXJhdGlvbnNSZXNwb25zZRIpCgpvcGVyYXRpb25zGAEgAygLMhUuY29uZmlncy52MS5PcGVyYXRpb24SDQoFdG90YWwYAiABKAUiHgoQR2V0Q29uZmlnUmVxdWVzdBIKCgJpZBgBIAEoCSI3ChFHZXRDb25maWdSZXNwb25zZRIiCgZjb25maWcYASABKAsyEi5jb25maWdzLnYxLkNvbmZpZyIkChVHZXRDb25maWdCeUtleVJlcXVlc3QSCwoDa2V5GAEgASgJIjwKFkdldENvbmZpZ0J5S2V5UmVzcG9uc2USIgoGY29uZmlnGAEgASgLMhIuY29uZmlncy52MS5Db25maWcifwoSTGlzdENvbmZpZ3NSZXF1ZXN0EhgKC2NvbmZpZ190eXBlGAEgASgJSACIAQESFAoHZW5hYmxlZBgCIAEoCEgBiAEBEg0KBWxpbWl0GAogASgFEg4KBm9mZnNldBgLIAEoBUIOCgxfY29uZmlnX3R5cGVCCgoIX2VuYWJsZWQiSQoTTGlzdENvbmZpZ3NSZXNwb25zZRIjCgdjb25maWdzGAEgAygLMhIuY29uZmlncy52MS5Db25maWcSDQoFdG90YWwYAiABKAUi+
|
|
12
|
+
fileDesc("Chhjb25maWdzL3YxL2NvbmZpZ3MucHJvdG8SCmNvbmZpZ3MudjEivwcKBkNvbmZpZxIKCgJpZBgBIAEoCRILCgNrZXkYAiABKAkSEwoLY29uZmlnX3R5cGUYAyABKAkSLgoJZGlyZWN0aW9uGAQgASgOMhsuY29uZmlncy52MS5Db25maWdEaXJlY3Rpb24SDAoEbmFtZRgFIAEoCRIYCgtkZXNjcmlwdGlvbhgGIAEoCUgAiAEBEh4KEWNvbm5lY3Rpb25fZG9tYWluGAogASgJSAGIAQESGgoNY29ubmVjdGlvbl9pZBgLIAEoCUgCiAEBEg8KB2VuYWJsZWQYFCABKAgSEwoLZW52aXJvbm1lbnQYFSABKAkSEwoLc3luY19zdGF0dXMYFiABKAkSMwoNc3luY19tZXRhZGF0YRgXIAEoCzIXLmdvb2dsZS5wcm90b2J1Zi5TdHJ1Y3RIA4gBARIxCgtjcmVkZW50aWFscxgeIAEoCzIXLmdvb2dsZS5wcm90b2J1Zi5TdHJ1Y3RIBIgBARIrCgVvYXV0aBgfIAEoCzIXLmdvb2dsZS5wcm90b2J1Zi5TdHJ1Y3RIBYgBARIuCghmZWF0dXJlcxggIAEoCzIXLmdvb2dsZS5wcm90b2J1Zi5TdHJ1Y3RIBogBARIuCgh3ZWJob29rcxghIAEoCzIXLmdvb2dsZS5wcm90b2J1Zi5TdHJ1Y3RIB4gBARIsCgZjb25maWcYIiABKAsyFy5nb29nbGUucHJvdG9idWYuU3RydWN0SAiIAQESKwoFaG9va3MYIyABKAsyFy5nb29nbGUucHJvdG9idWYuU3RydWN0SAmIAQESEQoJdGVuYW50X2lkGCggASgJEhIKCnByb2plY3RfaWQYKSABKAkSFwoKY3JlYXRlZF9ieRgtIAEoCUgKiAEBEhcKCnVwZGF0ZWRfYnkYLiABKAlIC4gBARIuCgpjcmVhdGVkX2F0GDIgASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcBIuCgp1cGRhdGVkX2F0GDMgASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcEIOCgxfZGVzY3JpcHRpb25CFAoSX2Nvbm5lY3Rpb25fZG9tYWluQhAKDl9jb25uZWN0aW9uX2lkQhAKDl9zeW5jX21ldGFkYXRhQg4KDF9jcmVkZW50aWFsc0IICgZfb2F1dGhCCwoJX2ZlYXR1cmVzQgsKCV93ZWJob29rc0IJCgdfY29uZmlnQggKBl9ob29rc0INCgtfY3JlYXRlZF9ieUINCgtfdXBkYXRlZF9ieSLKAgoJT3BlcmF0aW9uEgoKAmlkGAEgASgJEgsKA2tleRgCIAEoCRIMCgRuYW1lGAMgASgJEhgKC2Rlc2NyaXB0aW9uGAQgASgJSACIAQESEQoEaWNvbhgFIAEoCUgBiAEBEhUKCGNhdGVnb3J5GAYgASgJSAKIAQESEQoJaXNfYWN0aXZlGAcgASgIEhEKCXRlbmFudF9pZBgUIAEoCRIXCgpwcm9qZWN0X2lkGBUgASgJSAOIAQESLgoKY3JlYXRlZF9hdBgyIAEoCzIaLmdvb2dsZS5wcm90b2J1Zi5UaW1lc3RhbXASLgoKdXBkYXRlZF9hdBgzIAEoCzIaLmdvb2dsZS5wcm90b2J1Zi5UaW1lc3RhbXBCDgoMX2Rlc2NyaXB0aW9uQgcKBV9pY29uQgsKCV9jYXRlZ29yeUINCgtfcHJvamVjdF9pZCKgAQoVTGlzdE9wZXJhdGlvbnNSZXF1ZXN0EhUKCGNhdGVnb3J5GAEgASgJSACIAQESFgoJaXNfYWN0aXZlGAIgASgISAGIAQESEwoGc2VhcmNoGAMgASgJSAKIAQESDQoFbGltaXQYCiABKAUSDgoGb2Zmc2V0GAsgASgFQgsKCV9jYXRlZ29yeUIMCgpfaXNfYWN0aXZlQgkKB19zZWFyY2giUgoWTGlzdE9wZXJhdGlvbnNSZXNwb25zZRIpCgpvcGVyYXRpb25zGAEgAygLMhUuY29uZmlncy52MS5PcGVyYXRpb24SDQoFdG90YWwYAiABKAUiHgoQR2V0Q29uZmlnUmVxdWVzdBIKCgJpZBgBIAEoCSI3ChFHZXRDb25maWdSZXNwb25zZRIiCgZjb25maWcYASABKAsyEi5jb25maWdzLnYxLkNvbmZpZyIkChVHZXRDb25maWdCeUtleVJlcXVlc3QSCwoDa2V5GAEgASgJIjwKFkdldENvbmZpZ0J5S2V5UmVzcG9uc2USIgoGY29uZmlnGAEgASgLMhIuY29uZmlncy52MS5Db25maWcifwoSTGlzdENvbmZpZ3NSZXF1ZXN0EhgKC2NvbmZpZ190eXBlGAEgASgJSACIAQESFAoHZW5hYmxlZBgCIAEoCEgBiAEBEg0KBWxpbWl0GAogASgFEg4KBm9mZnNldBgLIAEoBUIOCgxfY29uZmlnX3R5cGVCCgoIX2VuYWJsZWQiSQoTTGlzdENvbmZpZ3NSZXNwb25zZRIjCgdjb25maWdzGAEgAygLMhIuY29uZmlncy52MS5Db25maWcSDQoFdG90YWwYAiABKAUi+gEKE0NyZWF0ZUNvbmZpZ1JlcXVlc3QSCwoDa2V5GAEgASgJEhMKC2NvbmZpZ190eXBlGAIgASgJEi4KCWRpcmVjdGlvbhgDIAEoDjIbLmNvbmZpZ3MudjEuQ29uZmlnRGlyZWN0aW9uEgwKBG5hbWUYBCABKAkSGAoLZGVzY3JpcHRpb24YBSABKAlIAIgBARIsCgZjb25maWcYBiABKAsyFy5nb29nbGUucHJvdG9idWYuU3RydWN0SAGIAQESFAoHZW5hYmxlZBgHIAEoCEgCiAEBQg4KDF9kZXNjcmlwdGlvbkIJCgdfY29uZmlnQgoKCF9lbmFibGVkIjoKFENyZWF0ZUNvbmZpZ1Jlc3BvbnNlEiIKBmNvbmZpZxgBIAEoCzISLmNvbmZpZ3MudjEuQ29uZmlnIrYCChNVcGRhdGVDb25maWdSZXF1ZXN0EgoKAmlkGAEgASgJEhEKBG5hbWUYAiABKAlIAIgBARIYCgtkZXNjcmlwdGlvbhgDIAEoCUgBiAEBEiwKBmNvbmZpZxgEIAEoCzIXLmdvb2dsZS5wcm90b2J1Zi5TdHJ1Y3RIAogBARIUCgdlbmFibGVkGAUgASgISAOIAQESLgoId2ViaG9va3MYBiABKAsyFy5nb29nbGUucHJvdG9idWYuU3RydWN0SASIAQESKwoFaG9va3MYByABKAsyFy5nb29nbGUucHJvdG9idWYuU3RydWN0SAWIAQFCBwoFX25hbWVCDgoMX2Rlc2NyaXB0aW9uQgkKB19jb25maWdCCgoIX2VuYWJsZWRCCwoJX3dlYmhvb2tzQggKBl9ob29rcyI6ChRVcGRhdGVDb25maWdSZXNwb25zZRIiCgZjb25maWcYASABKAsyEi5jb25maWdzLnYxLkNvbmZpZyIhChNEZWxldGVDb25maWdSZXF1ZXN0EgoKAmlkGAEgASgJIicKFERlbGV0ZUNvbmZpZ1Jlc3BvbnNlEg8KB3N1Y2Nlc3MYASABKAgiwAIKFUVkaXRvckNvbmZpZ1BsYWNlbWVudBIRCgljb25maWdfaWQYASABKAkSEgoKY29uZmlnX2tleRgCIAEoCRIQCgN1cmwYAyABKAlIAIgBARIbCg5hbGxvd2VkX29yaWdpbhgEIAEoCUgBiAEBEhMKBmhlaWdodBgFIAEoBUgCiAEBEhIKBWxhYmVsGAYgASgJSAOIAQESFAoHYXBpX2tleRgHIAEoCUgEiAEBEhQKB2FwaV91cmwYCCABKAlIBYgBARIeChFjb25uZWN0aW9uX2RvbWFpbhgJIAEoCUgGiAEBQgYKBF91cmxCEQoPX2FsbG93ZWRfb3JpZ2luQgkKB19oZWlnaHRCCAoGX2xhYmVsQgoKCF9hcGlfa2V5QgoKCF9hcGlfdXJsQhQKEl9jb25uZWN0aW9uX2RvbWFpbiIsChdHZXRFZGl0b3JDb25maWdzUmVxdWVzdBIRCgltb2RlbF9rZXkYASABKAkiUQoYR2V0RWRpdG9yQ29uZmlnc1Jlc3BvbnNlEjUKCnBsYWNlbWVudHMYASADKAsyIS5jb25maWdzLnYxLkVkaXRvckNvbmZpZ1BsYWNlbWVudCItChhUcmlnZ2VyQ29uZmlnU3luY1JlcXVlc3QSEQoJY29uZmlnX2lkGAEgASgJIiwKGVRyaWdnZXJDb25maWdTeW5jUmVzcG9uc2USDwoHc3VjY2VzcxgBIAEoCCJWChJBcHBseUNvbmZpZ1JlcXVlc3QSEgoKY29uZmlnX2tleRgBIAEoCRIsCgtjb25maWdfZGF0YRgCIAEoCzIXLmdvb2dsZS5wcm90b2J1Zi5TdHJ1Y3Qi1wEKE0FwcGx5Q29uZmlnUmVzcG9uc2USIgoGY29uZmlnGAEgASgLMhIuY29uZmlncy52MS5Db25maWcSLwoHc3VtbWFyeRgCIAEoCzIeLmNvbmZpZ3MudjEuQXBwbHlDb25maWdTdW1tYXJ5EjsKFHByb3Zpc2lvbmVkX2FwaV9rZXlzGAMgAygLMh0uY29uZmlncy52MS5Qcm92aXNpb25lZEFwaUtleRIbCg53ZWJob29rX3NlY3JldBgEIAEoCUgAiAEBQhEKD193ZWJob29rX3NlY3JldCJVChFQcm92aXNpb25lZEFwaUtleRIMCgRuYW1lGAEgASgJEhAKCGtleV90eXBlGAIgASgJEg8KB2Vudl92YXIYAyABKAkSDwoHcmF3X2tleRgEIAEoCSLvAgoSQXBwbHlDb25maWdTdW1tYXJ5EhYKDm1vZGVsc19jcmVhdGVkGAEgASgFEhYKDm1vZGVsc191cGRhdGVkGAIgASgFEhoKEm9wZXJhdGlvbnNfY3JlYXRlZBgDIAEoBRIaChJvcGVyYXRpb25zX3VwZGF0ZWQYBCABKAUSFQoNaG9va3NfY3JlYXRlZBgFIAEoBRIVCg1ob29rc191cGRhdGVkGAYgASgFEhgKEHNlZ21lbnRzX2NyZWF0ZWQYByABKAUSGAoQc2VnbWVudHNfdXBkYXRlZBgIIAEoBRIZChFzY2hlZHVsZXNfY3JlYXRlZBgJIAEoBRIZChFzY2hlZHVsZXNfdXBkYXRlZBgKIAEoBRIeChZhdXRoX3Byb3ZpZGVyc19jcmVhdGVkGAsgASgFEh4KFmF1dGhfcHJvdmlkZXJzX3VwZGF0ZWQYDCABKAUSGQoRcmVzb3VyY2VzX2RlbGV0ZWQYDSABKAUqjgEKD0NvbmZpZ0RpcmVjdGlvbhIgChxDT05GSUdfRElSRUNUSU9OX1VOU1BFQ0lGSUVEEAASGQoVQ09ORklHX0RJUkVDVElPTl9SRUFEEAESGgoWQ09ORklHX0RJUkVDVElPTl9XUklURRACEiIKHkNPTkZJR19ESVJFQ1RJT05fQklESVJFQ1RJT05BTBADMuYGCg5Db25maWdzU2VydmljZRJICglHZXRDb25maWcSHC5jb25maWdzLnYxLkdldENvbmZpZ1JlcXVlc3QaHS5jb25maWdzLnYxLkdldENvbmZpZ1Jlc3BvbnNlElcKDkdldENvbmZpZ0J5S2V5EiEuY29uZmlncy52MS5HZXRDb25maWdCeUtleVJlcXVlc3QaIi5jb25maWdzLnYxLkdldENvbmZpZ0J5S2V5UmVzcG9uc2USTgoLTGlzdENvbmZpZ3MSHi5jb25maWdzLnYxLkxpc3RDb25maWdzUmVxdWVzdBofLmNvbmZpZ3MudjEuTGlzdENvbmZpZ3NSZXNwb25zZRJXCg5MaXN0T3BlcmF0aW9ucxIhLmNvbmZpZ3MudjEuTGlzdE9wZXJhdGlvbnNSZXF1ZXN0GiIuY29uZmlncy52MS5MaXN0T3BlcmF0aW9uc1Jlc3BvbnNlEl0KEEdldEVkaXRvckNvbmZpZ3MSIy5jb25maWdzLnYxLkdldEVkaXRvckNvbmZpZ3NSZXF1ZXN0GiQuY29uZmlncy52MS5HZXRFZGl0b3JDb25maWdzUmVzcG9uc2USUQoMQ3JlYXRlQ29uZmlnEh8uY29uZmlncy52MS5DcmVhdGVDb25maWdSZXF1ZXN0GiAuY29uZmlncy52MS5DcmVhdGVDb25maWdSZXNwb25zZRJRCgxVcGRhdGVDb25maWcSHy5jb25maWdzLnYxLlVwZGF0ZUNvbmZpZ1JlcXVlc3QaIC5jb25maWdzLnYxLlVwZGF0ZUNvbmZpZ1Jlc3BvbnNlElEKDERlbGV0ZUNvbmZpZxIfLmNvbmZpZ3MudjEuRGVsZXRlQ29uZmlnUmVxdWVzdBogLmNvbmZpZ3MudjEuRGVsZXRlQ29uZmlnUmVzcG9uc2USYAoRVHJpZ2dlckNvbmZpZ1N5bmMSJC5jb25maWdzLnYxLlRyaWdnZXJDb25maWdTeW5jUmVxdWVzdBolLmNvbmZpZ3MudjEuVHJpZ2dlckNvbmZpZ1N5bmNSZXNwb25zZRJOCgtBcHBseUNvbmZpZxIeLmNvbmZpZ3MudjEuQXBwbHlDb25maWdSZXF1ZXN0Gh8uY29uZmlncy52MS5BcHBseUNvbmZpZ1Jlc3BvbnNlQjtaOWdpdGh1Yi5jb20vZWlkZXN0dWRpby9mb2lyL2dlbi9wcm90by9jb25maWdzL3YxO2NvbmZpZ3N2MWIGcHJvdG8z", [file_google_protobuf_struct, file_google_protobuf_timestamp]);
|
|
13
13
|
|
|
14
14
|
/**
|
|
15
15
|
* Describes the message configs.v1.Config.
|
|
@@ -172,6 +172,20 @@ export const ApplyConfigRequestSchema = /*@__PURE__*/
|
|
|
172
172
|
export const ApplyConfigResponseSchema = /*@__PURE__*/
|
|
173
173
|
messageDesc(file_configs_v1_configs, 22);
|
|
174
174
|
|
|
175
|
+
/**
|
|
176
|
+
* Describes the message configs.v1.ProvisionedApiKey.
|
|
177
|
+
* Use `create(ProvisionedApiKeySchema)` to create a new message.
|
|
178
|
+
*/
|
|
179
|
+
export const ProvisionedApiKeySchema = /*@__PURE__*/
|
|
180
|
+
messageDesc(file_configs_v1_configs, 23);
|
|
181
|
+
|
|
182
|
+
/**
|
|
183
|
+
* Describes the message configs.v1.ApplyConfigSummary.
|
|
184
|
+
* Use `create(ApplyConfigSummarySchema)` to create a new message.
|
|
185
|
+
*/
|
|
186
|
+
export const ApplyConfigSummarySchema = /*@__PURE__*/
|
|
187
|
+
messageDesc(file_configs_v1_configs, 24);
|
|
188
|
+
|
|
175
189
|
/**
|
|
176
190
|
* Describes the enum configs.v1.ConfigDirection.
|
|
177
191
|
*/
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
// @ts-nocheck
|
|
5
5
|
|
|
6
|
-
import { AcceptInvitationRequest, AcceptInvitationResponse, ActivateTenantRequest, ActivateTenantResponse, CancelTenantRequest, CancelTenantResponse, CheckEmailAvailabilityRequest, CheckEmailAvailabilityResponse, ChurnTenantRequest, ChurnTenantResponse, ClearSessionContextRequest, ClearSessionContextResponse, CompleteAccountSetupRequest, CompleteAccountSetupResponse, CreateAdminUserRequest, CreateAdminUserResponse, CreateApiKeyRequest, CreateApiKeyResponse, CreateAuthProviderRequest, CreateAuthProviderResponse, CreateCustomerRequest, CreateCustomerResponse, CreateInvitationRequest, CreateInvitationResponse, CreateProjectRequest, CreateProjectResponse, CreateSignupSessionRequest, CreateSignupSessionResponse, CreateTenantRequest, CreateTenantResponse, DeleteAuthProviderRequest, DeleteAuthProviderResponse, DeleteCustomerRequest, DeleteCustomerResponse, DeleteProjectRequest, DeleteProjectResponse, DeleteTenantRequest, DeleteTenantResponse, EnabledOAuthProvidersRequest, EnabledOAuthProvidersResponse, GetAdminUserRequest, GetAdminUserResponse, GetApiKeyRequest, GetApiKeyResponse, GetAuthProviderRequest, GetAuthProviderResponse, GetCustomerAuthConfigRequest, GetCustomerAuthConfigResponse, GetCustomerManagementStatusRequest, GetCustomerManagementStatusResponse, GetCustomerRequest, GetCustomerResponse, GetDefaultProjectRequest, GetDefaultProjectResponse, GetInvitationRequest, GetInvitationResponse, GetMeRequest, GetMeResponse, GetProjectRequest, GetProjectResponse, GetSessionContextRequest, GetSessionContextResponse, GetTenantRequest, GetTenantResponse, GrantAccessRequest, GrantAccessResponse, ListAdminUsersRequest, ListAdminUsersResponse, ListApiKeysRequest, ListApiKeysResponse, ListAuthProvidersRequest, ListAuthProvidersResponse, ListCustomersRequest, ListCustomersResponse, ListInvitationsRequest, ListInvitationsResponse, ListMyOAuthConnectionsRequest, ListMyOAuthConnectionsResponse, ListProjectsRequest, ListProjectsResponse, ListTenantsRequest, ListTenantsResponse, LoginRequest, LoginResponse, LoginWithOTPRequest, LoginWithOTPResponse, LogoutRequest, LogoutResponse, MarkTenantPastDueRequest, MarkTenantPastDueResponse, MintServiceTokenRequest, MintServiceTokenResponse, ReactivateTenantRequest, ReactivateTenantResponse, RefreshTokenRequest, RefreshTokenResponse, RegisterRequest, RegisterResponse, RequestOTPRequest, RequestOTPResponse, RequestPasswordResetRequest, RequestPasswordResetResponse, ResendInvitationRequest, ResendInvitationResponse, ResendVerificationEmailRequest, ResendVerificationEmailResponse, ResetPasswordRequest, ResetPasswordResponse, RevokeAccessRequest, RevokeAccessResponse, RevokeApiKeyRequest, RevokeApiKeyResponse, RevokeInvitationRequest, RevokeInvitationResponse, RotateApiKeyRequest, RotateApiKeyResponse, SendEmailVerificationCodeRequest, SendEmailVerificationCodeResponse, SetDefaultProjectRequest, SetDefaultProjectResponse, SuspendCustomerRequest, SuspendCustomerResponse, SuspendTenantAccountRequest, SuspendTenantAccountResponse, SwitchProjectRequest, SwitchProjectResponse, SwitchTenantRequest, SwitchTenantResponse, UnlinkOAuthProviderRequest, UnlinkOAuthProviderResponse, UpdateAdminUserRequest, UpdateAdminUserResponse, UpdateApiKeyRequest, UpdateApiKeyResponse, UpdateAuthProviderRequest, UpdateAuthProviderResponse, UpdateCustomerRequest, UpdateCustomerResponse, UpdateMyProfileRequest, UpdateMyProfileResponse, UpdatePasswordRequest, UpdatePasswordResponse, UpdateProjectRequest, UpdateProjectResponse, UpdateTenantRequest, UpdateTenantResponse, ValidateInvitationRequest, ValidateInvitationResponse, VerifyCustomerTokenRequest, VerifyCustomerTokenResponse, VerifyEmailCodeRequest, VerifyEmailCodeResponse, VerifyEmailRequest, VerifyEmailResponse } from "./identity_pbjs";
|
|
6
|
+
import { AcceptInvitationRequest, AcceptInvitationResponse, ActivateTenantRequest, ActivateTenantResponse, CancelTenantRequest, CancelTenantResponse, CheckEmailAvailabilityRequest, CheckEmailAvailabilityResponse, ChurnTenantRequest, ChurnTenantResponse, ClearSessionContextRequest, ClearSessionContextResponse, CompleteAccountSetupRequest, CompleteAccountSetupResponse, CreateAdminUserRequest, CreateAdminUserResponse, CreateApiKeyRequest, CreateApiKeyResponse, CreateAuthProviderRequest, CreateAuthProviderResponse, CreateCustomerRequest, CreateCustomerResponse, CreateInvitationRequest, CreateInvitationResponse, CreateProjectRequest, CreateProjectResponse, CreateSignupSessionRequest, CreateSignupSessionResponse, CreateTenantRequest, CreateTenantResponse, CustomerLoginRequest, CustomerLoginResponse, CustomerRefreshTokenRequest, CustomerRefreshTokenResponse, CustomerRegisterRequest, CustomerRegisterResponse, CustomerRequestOTPRequest, CustomerRequestOTPResponse, CustomerRequestPasswordResetRequest, CustomerRequestPasswordResetResponse, CustomerResetPasswordRequest, CustomerResetPasswordResponse, CustomerVerifyOTPRequest, CustomerVerifyOTPResponse, DeleteAuthProviderRequest, DeleteAuthProviderResponse, DeleteCustomerRequest, DeleteCustomerResponse, DeleteProjectRequest, DeleteProjectResponse, DeleteTenantRequest, DeleteTenantResponse, EnabledOAuthProvidersRequest, EnabledOAuthProvidersResponse, GetAdminUserRequest, GetAdminUserResponse, GetApiKeyRequest, GetApiKeyResponse, GetAuthProviderRequest, GetAuthProviderResponse, GetCustomerAuthConfigRequest, GetCustomerAuthConfigResponse, GetCustomerManagementStatusRequest, GetCustomerManagementStatusResponse, GetCustomerRequest, GetCustomerResponse, GetDefaultProjectRequest, GetDefaultProjectResponse, GetInvitationRequest, GetInvitationResponse, GetMeRequest, GetMeResponse, GetProjectRequest, GetProjectResponse, GetSessionContextRequest, GetSessionContextResponse, GetTenantRequest, GetTenantResponse, GrantAccessRequest, GrantAccessResponse, ListAdminUsersRequest, ListAdminUsersResponse, ListApiKeysRequest, ListApiKeysResponse, ListAuthProvidersRequest, ListAuthProvidersResponse, ListCustomersRequest, ListCustomersResponse, ListInvitationsRequest, ListInvitationsResponse, ListMyOAuthConnectionsRequest, ListMyOAuthConnectionsResponse, ListProjectsRequest, ListProjectsResponse, ListTenantsRequest, ListTenantsResponse, LoginRequest, LoginResponse, LoginWithOTPRequest, LoginWithOTPResponse, LogoutRequest, LogoutResponse, MarkTenantPastDueRequest, MarkTenantPastDueResponse, MintServiceTokenRequest, MintServiceTokenResponse, ReactivateTenantRequest, ReactivateTenantResponse, RefreshTokenRequest, RefreshTokenResponse, RegisterRequest, RegisterResponse, RequestOTPRequest, RequestOTPResponse, RequestPasswordResetRequest, RequestPasswordResetResponse, ResendInvitationRequest, ResendInvitationResponse, ResendVerificationEmailRequest, ResendVerificationEmailResponse, ResetPasswordRequest, ResetPasswordResponse, RevokeAccessRequest, RevokeAccessResponse, RevokeApiKeyRequest, RevokeApiKeyResponse, RevokeInvitationRequest, RevokeInvitationResponse, RotateApiKeyRequest, RotateApiKeyResponse, SendEmailVerificationCodeRequest, SendEmailVerificationCodeResponse, SetDefaultProjectRequest, SetDefaultProjectResponse, SuspendCustomerRequest, SuspendCustomerResponse, SuspendTenantAccountRequest, SuspendTenantAccountResponse, SwitchProjectRequest, SwitchProjectResponse, SwitchTenantRequest, SwitchTenantResponse, UnlinkOAuthProviderRequest, UnlinkOAuthProviderResponse, UpdateAdminUserRequest, UpdateAdminUserResponse, UpdateApiKeyRequest, UpdateApiKeyResponse, UpdateAuthProviderRequest, UpdateAuthProviderResponse, UpdateCustomerRequest, UpdateCustomerResponse, UpdateMyProfileRequest, UpdateMyProfileResponse, UpdatePasswordRequest, UpdatePasswordResponse, UpdateProjectRequest, UpdateProjectResponse, UpdateTenantRequest, UpdateTenantResponse, ValidateApiKeyRequest, ValidateApiKeyResponse, ValidateInvitationRequest, ValidateInvitationResponse, VerifyCustomerTokenRequest, VerifyCustomerTokenResponse, VerifyEmailCodeRequest, VerifyEmailCodeResponse, VerifyEmailRequest, VerifyEmailResponse } from "./identity_pbjs";
|
|
7
7
|
import { MethodKind } from "@bufbuild/protobuf";
|
|
8
8
|
|
|
9
9
|
/**
|
|
@@ -733,6 +733,82 @@ export declare const IdentityService: {
|
|
|
733
733
|
readonly O: typeof GetCustomerManagementStatusResponse,
|
|
734
734
|
readonly kind: MethodKind.Unary,
|
|
735
735
|
},
|
|
736
|
+
/**
|
|
737
|
+
* API Key Validation.
|
|
738
|
+
*
|
|
739
|
+
* @generated from rpc identity.v1.IdentityService.ValidateApiKey
|
|
740
|
+
*/
|
|
741
|
+
readonly validateApiKey: {
|
|
742
|
+
readonly name: "ValidateApiKey",
|
|
743
|
+
readonly I: typeof ValidateApiKeyRequest,
|
|
744
|
+
readonly O: typeof ValidateApiKeyResponse,
|
|
745
|
+
readonly kind: MethodKind.Unary,
|
|
746
|
+
},
|
|
747
|
+
/**
|
|
748
|
+
* Public-facing Customer Auth.
|
|
749
|
+
*
|
|
750
|
+
* @generated from rpc identity.v1.IdentityService.CustomerLogin
|
|
751
|
+
*/
|
|
752
|
+
readonly customerLogin: {
|
|
753
|
+
readonly name: "CustomerLogin",
|
|
754
|
+
readonly I: typeof CustomerLoginRequest,
|
|
755
|
+
readonly O: typeof CustomerLoginResponse,
|
|
756
|
+
readonly kind: MethodKind.Unary,
|
|
757
|
+
},
|
|
758
|
+
/**
|
|
759
|
+
* @generated from rpc identity.v1.IdentityService.CustomerRegister
|
|
760
|
+
*/
|
|
761
|
+
readonly customerRegister: {
|
|
762
|
+
readonly name: "CustomerRegister",
|
|
763
|
+
readonly I: typeof CustomerRegisterRequest,
|
|
764
|
+
readonly O: typeof CustomerRegisterResponse,
|
|
765
|
+
readonly kind: MethodKind.Unary,
|
|
766
|
+
},
|
|
767
|
+
/**
|
|
768
|
+
* @generated from rpc identity.v1.IdentityService.CustomerRefreshToken
|
|
769
|
+
*/
|
|
770
|
+
readonly customerRefreshToken: {
|
|
771
|
+
readonly name: "CustomerRefreshToken",
|
|
772
|
+
readonly I: typeof CustomerRefreshTokenRequest,
|
|
773
|
+
readonly O: typeof CustomerRefreshTokenResponse,
|
|
774
|
+
readonly kind: MethodKind.Unary,
|
|
775
|
+
},
|
|
776
|
+
/**
|
|
777
|
+
* @generated from rpc identity.v1.IdentityService.CustomerRequestOTP
|
|
778
|
+
*/
|
|
779
|
+
readonly customerRequestOTP: {
|
|
780
|
+
readonly name: "CustomerRequestOTP",
|
|
781
|
+
readonly I: typeof CustomerRequestOTPRequest,
|
|
782
|
+
readonly O: typeof CustomerRequestOTPResponse,
|
|
783
|
+
readonly kind: MethodKind.Unary,
|
|
784
|
+
},
|
|
785
|
+
/**
|
|
786
|
+
* @generated from rpc identity.v1.IdentityService.CustomerVerifyOTP
|
|
787
|
+
*/
|
|
788
|
+
readonly customerVerifyOTP: {
|
|
789
|
+
readonly name: "CustomerVerifyOTP",
|
|
790
|
+
readonly I: typeof CustomerVerifyOTPRequest,
|
|
791
|
+
readonly O: typeof CustomerVerifyOTPResponse,
|
|
792
|
+
readonly kind: MethodKind.Unary,
|
|
793
|
+
},
|
|
794
|
+
/**
|
|
795
|
+
* @generated from rpc identity.v1.IdentityService.CustomerRequestPasswordReset
|
|
796
|
+
*/
|
|
797
|
+
readonly customerRequestPasswordReset: {
|
|
798
|
+
readonly name: "CustomerRequestPasswordReset",
|
|
799
|
+
readonly I: typeof CustomerRequestPasswordResetRequest,
|
|
800
|
+
readonly O: typeof CustomerRequestPasswordResetResponse,
|
|
801
|
+
readonly kind: MethodKind.Unary,
|
|
802
|
+
},
|
|
803
|
+
/**
|
|
804
|
+
* @generated from rpc identity.v1.IdentityService.CustomerResetPassword
|
|
805
|
+
*/
|
|
806
|
+
readonly customerResetPassword: {
|
|
807
|
+
readonly name: "CustomerResetPassword",
|
|
808
|
+
readonly I: typeof CustomerResetPasswordRequest,
|
|
809
|
+
readonly O: typeof CustomerResetPasswordResponse,
|
|
810
|
+
readonly kind: MethodKind.Unary,
|
|
811
|
+
},
|
|
736
812
|
}
|
|
737
813
|
};
|
|
738
814
|
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
// @ts-nocheck
|
|
5
5
|
|
|
6
|
-
import { AcceptInvitationRequest, AcceptInvitationResponse, ActivateTenantRequest, ActivateTenantResponse, CancelTenantRequest, CancelTenantResponse, CheckEmailAvailabilityRequest, CheckEmailAvailabilityResponse, ChurnTenantRequest, ChurnTenantResponse, ClearSessionContextRequest, ClearSessionContextResponse, CompleteAccountSetupRequest, CompleteAccountSetupResponse, CreateAdminUserRequest, CreateAdminUserResponse, CreateApiKeyRequest, CreateApiKeyResponse, CreateAuthProviderRequest, CreateAuthProviderResponse, CreateCustomerRequest, CreateCustomerResponse, CreateInvitationRequest, CreateInvitationResponse, CreateProjectRequest, CreateProjectResponse, CreateSignupSessionRequest, CreateSignupSessionResponse, CreateTenantRequest, CreateTenantResponse, DeleteAuthProviderRequest, DeleteAuthProviderResponse, DeleteCustomerRequest, DeleteCustomerResponse, DeleteProjectRequest, DeleteProjectResponse, DeleteTenantRequest, DeleteTenantResponse, EnabledOAuthProvidersRequest, EnabledOAuthProvidersResponse, GetAdminUserRequest, GetAdminUserResponse, GetApiKeyRequest, GetApiKeyResponse, GetAuthProviderRequest, GetAuthProviderResponse, GetCustomerAuthConfigRequest, GetCustomerAuthConfigResponse, GetCustomerManagementStatusRequest, GetCustomerManagementStatusResponse, GetCustomerRequest, GetCustomerResponse, GetDefaultProjectRequest, GetDefaultProjectResponse, GetInvitationRequest, GetInvitationResponse, GetMeRequest, GetMeResponse, GetProjectRequest, GetProjectResponse, GetSessionContextRequest, GetSessionContextResponse, GetTenantRequest, GetTenantResponse, GrantAccessRequest, GrantAccessResponse, ListAdminUsersRequest, ListAdminUsersResponse, ListApiKeysRequest, ListApiKeysResponse, ListAuthProvidersRequest, ListAuthProvidersResponse, ListCustomersRequest, ListCustomersResponse, ListInvitationsRequest, ListInvitationsResponse, ListMyOAuthConnectionsRequest, ListMyOAuthConnectionsResponse, ListProjectsRequest, ListProjectsResponse, ListTenantsRequest, ListTenantsResponse, LoginRequest, LoginResponse, LoginWithOTPRequest, LoginWithOTPResponse, LogoutRequest, LogoutResponse, MarkTenantPastDueRequest, MarkTenantPastDueResponse, MintServiceTokenRequest, MintServiceTokenResponse, ReactivateTenantRequest, ReactivateTenantResponse, RefreshTokenRequest, RefreshTokenResponse, RegisterRequest, RegisterResponse, RequestOTPRequest, RequestOTPResponse, RequestPasswordResetRequest, RequestPasswordResetResponse, ResendInvitationRequest, ResendInvitationResponse, ResendVerificationEmailRequest, ResendVerificationEmailResponse, ResetPasswordRequest, ResetPasswordResponse, RevokeAccessRequest, RevokeAccessResponse, RevokeApiKeyRequest, RevokeApiKeyResponse, RevokeInvitationRequest, RevokeInvitationResponse, RotateApiKeyRequest, RotateApiKeyResponse, SendEmailVerificationCodeRequest, SendEmailVerificationCodeResponse, SetDefaultProjectRequest, SetDefaultProjectResponse, SuspendCustomerRequest, SuspendCustomerResponse, SuspendTenantAccountRequest, SuspendTenantAccountResponse, SwitchProjectRequest, SwitchProjectResponse, SwitchTenantRequest, SwitchTenantResponse, UnlinkOAuthProviderRequest, UnlinkOAuthProviderResponse, UpdateAdminUserRequest, UpdateAdminUserResponse, UpdateApiKeyRequest, UpdateApiKeyResponse, UpdateAuthProviderRequest, UpdateAuthProviderResponse, UpdateCustomerRequest, UpdateCustomerResponse, UpdateMyProfileRequest, UpdateMyProfileResponse, UpdatePasswordRequest, UpdatePasswordResponse, UpdateProjectRequest, UpdateProjectResponse, UpdateTenantRequest, UpdateTenantResponse, ValidateInvitationRequest, ValidateInvitationResponse, VerifyCustomerTokenRequest, VerifyCustomerTokenResponse, VerifyEmailCodeRequest, VerifyEmailCodeResponse, VerifyEmailRequest, VerifyEmailResponse } from "./identity_pbjs";
|
|
6
|
+
import { AcceptInvitationRequest, AcceptInvitationResponse, ActivateTenantRequest, ActivateTenantResponse, CancelTenantRequest, CancelTenantResponse, CheckEmailAvailabilityRequest, CheckEmailAvailabilityResponse, ChurnTenantRequest, ChurnTenantResponse, ClearSessionContextRequest, ClearSessionContextResponse, CompleteAccountSetupRequest, CompleteAccountSetupResponse, CreateAdminUserRequest, CreateAdminUserResponse, CreateApiKeyRequest, CreateApiKeyResponse, CreateAuthProviderRequest, CreateAuthProviderResponse, CreateCustomerRequest, CreateCustomerResponse, CreateInvitationRequest, CreateInvitationResponse, CreateProjectRequest, CreateProjectResponse, CreateSignupSessionRequest, CreateSignupSessionResponse, CreateTenantRequest, CreateTenantResponse, CustomerLoginRequest, CustomerLoginResponse, CustomerRefreshTokenRequest, CustomerRefreshTokenResponse, CustomerRegisterRequest, CustomerRegisterResponse, CustomerRequestOTPRequest, CustomerRequestOTPResponse, CustomerRequestPasswordResetRequest, CustomerRequestPasswordResetResponse, CustomerResetPasswordRequest, CustomerResetPasswordResponse, CustomerVerifyOTPRequest, CustomerVerifyOTPResponse, DeleteAuthProviderRequest, DeleteAuthProviderResponse, DeleteCustomerRequest, DeleteCustomerResponse, DeleteProjectRequest, DeleteProjectResponse, DeleteTenantRequest, DeleteTenantResponse, EnabledOAuthProvidersRequest, EnabledOAuthProvidersResponse, GetAdminUserRequest, GetAdminUserResponse, GetApiKeyRequest, GetApiKeyResponse, GetAuthProviderRequest, GetAuthProviderResponse, GetCustomerAuthConfigRequest, GetCustomerAuthConfigResponse, GetCustomerManagementStatusRequest, GetCustomerManagementStatusResponse, GetCustomerRequest, GetCustomerResponse, GetDefaultProjectRequest, GetDefaultProjectResponse, GetInvitationRequest, GetInvitationResponse, GetMeRequest, GetMeResponse, GetProjectRequest, GetProjectResponse, GetSessionContextRequest, GetSessionContextResponse, GetTenantRequest, GetTenantResponse, GrantAccessRequest, GrantAccessResponse, ListAdminUsersRequest, ListAdminUsersResponse, ListApiKeysRequest, ListApiKeysResponse, ListAuthProvidersRequest, ListAuthProvidersResponse, ListCustomersRequest, ListCustomersResponse, ListInvitationsRequest, ListInvitationsResponse, ListMyOAuthConnectionsRequest, ListMyOAuthConnectionsResponse, ListProjectsRequest, ListProjectsResponse, ListTenantsRequest, ListTenantsResponse, LoginRequest, LoginResponse, LoginWithOTPRequest, LoginWithOTPResponse, LogoutRequest, LogoutResponse, MarkTenantPastDueRequest, MarkTenantPastDueResponse, MintServiceTokenRequest, MintServiceTokenResponse, ReactivateTenantRequest, ReactivateTenantResponse, RefreshTokenRequest, RefreshTokenResponse, RegisterRequest, RegisterResponse, RequestOTPRequest, RequestOTPResponse, RequestPasswordResetRequest, RequestPasswordResetResponse, ResendInvitationRequest, ResendInvitationResponse, ResendVerificationEmailRequest, ResendVerificationEmailResponse, ResetPasswordRequest, ResetPasswordResponse, RevokeAccessRequest, RevokeAccessResponse, RevokeApiKeyRequest, RevokeApiKeyResponse, RevokeInvitationRequest, RevokeInvitationResponse, RotateApiKeyRequest, RotateApiKeyResponse, SendEmailVerificationCodeRequest, SendEmailVerificationCodeResponse, SetDefaultProjectRequest, SetDefaultProjectResponse, SuspendCustomerRequest, SuspendCustomerResponse, SuspendTenantAccountRequest, SuspendTenantAccountResponse, SwitchProjectRequest, SwitchProjectResponse, SwitchTenantRequest, SwitchTenantResponse, UnlinkOAuthProviderRequest, UnlinkOAuthProviderResponse, UpdateAdminUserRequest, UpdateAdminUserResponse, UpdateApiKeyRequest, UpdateApiKeyResponse, UpdateAuthProviderRequest, UpdateAuthProviderResponse, UpdateCustomerRequest, UpdateCustomerResponse, UpdateMyProfileRequest, UpdateMyProfileResponse, UpdatePasswordRequest, UpdatePasswordResponse, UpdateProjectRequest, UpdateProjectResponse, UpdateTenantRequest, UpdateTenantResponse, ValidateApiKeyRequest, ValidateApiKeyResponse, ValidateInvitationRequest, ValidateInvitationResponse, VerifyCustomerTokenRequest, VerifyCustomerTokenResponse, VerifyEmailCodeRequest, VerifyEmailCodeResponse, VerifyEmailRequest, VerifyEmailResponse } from "./identity_pbjs";
|
|
7
7
|
import { MethodKind } from "@bufbuild/protobuf";
|
|
8
8
|
|
|
9
9
|
/**
|
|
@@ -733,6 +733,82 @@ export const IdentityService = {
|
|
|
733
733
|
O: GetCustomerManagementStatusResponse,
|
|
734
734
|
kind: MethodKind.Unary,
|
|
735
735
|
},
|
|
736
|
+
/**
|
|
737
|
+
* API Key Validation.
|
|
738
|
+
*
|
|
739
|
+
* @generated from rpc identity.v1.IdentityService.ValidateApiKey
|
|
740
|
+
*/
|
|
741
|
+
validateApiKey: {
|
|
742
|
+
name: "ValidateApiKey",
|
|
743
|
+
I: ValidateApiKeyRequest,
|
|
744
|
+
O: ValidateApiKeyResponse,
|
|
745
|
+
kind: MethodKind.Unary,
|
|
746
|
+
},
|
|
747
|
+
/**
|
|
748
|
+
* Public-facing Customer Auth.
|
|
749
|
+
*
|
|
750
|
+
* @generated from rpc identity.v1.IdentityService.CustomerLogin
|
|
751
|
+
*/
|
|
752
|
+
customerLogin: {
|
|
753
|
+
name: "CustomerLogin",
|
|
754
|
+
I: CustomerLoginRequest,
|
|
755
|
+
O: CustomerLoginResponse,
|
|
756
|
+
kind: MethodKind.Unary,
|
|
757
|
+
},
|
|
758
|
+
/**
|
|
759
|
+
* @generated from rpc identity.v1.IdentityService.CustomerRegister
|
|
760
|
+
*/
|
|
761
|
+
customerRegister: {
|
|
762
|
+
name: "CustomerRegister",
|
|
763
|
+
I: CustomerRegisterRequest,
|
|
764
|
+
O: CustomerRegisterResponse,
|
|
765
|
+
kind: MethodKind.Unary,
|
|
766
|
+
},
|
|
767
|
+
/**
|
|
768
|
+
* @generated from rpc identity.v1.IdentityService.CustomerRefreshToken
|
|
769
|
+
*/
|
|
770
|
+
customerRefreshToken: {
|
|
771
|
+
name: "CustomerRefreshToken",
|
|
772
|
+
I: CustomerRefreshTokenRequest,
|
|
773
|
+
O: CustomerRefreshTokenResponse,
|
|
774
|
+
kind: MethodKind.Unary,
|
|
775
|
+
},
|
|
776
|
+
/**
|
|
777
|
+
* @generated from rpc identity.v1.IdentityService.CustomerRequestOTP
|
|
778
|
+
*/
|
|
779
|
+
customerRequestOTP: {
|
|
780
|
+
name: "CustomerRequestOTP",
|
|
781
|
+
I: CustomerRequestOTPRequest,
|
|
782
|
+
O: CustomerRequestOTPResponse,
|
|
783
|
+
kind: MethodKind.Unary,
|
|
784
|
+
},
|
|
785
|
+
/**
|
|
786
|
+
* @generated from rpc identity.v1.IdentityService.CustomerVerifyOTP
|
|
787
|
+
*/
|
|
788
|
+
customerVerifyOTP: {
|
|
789
|
+
name: "CustomerVerifyOTP",
|
|
790
|
+
I: CustomerVerifyOTPRequest,
|
|
791
|
+
O: CustomerVerifyOTPResponse,
|
|
792
|
+
kind: MethodKind.Unary,
|
|
793
|
+
},
|
|
794
|
+
/**
|
|
795
|
+
* @generated from rpc identity.v1.IdentityService.CustomerRequestPasswordReset
|
|
796
|
+
*/
|
|
797
|
+
customerRequestPasswordReset: {
|
|
798
|
+
name: "CustomerRequestPasswordReset",
|
|
799
|
+
I: CustomerRequestPasswordResetRequest,
|
|
800
|
+
O: CustomerRequestPasswordResetResponse,
|
|
801
|
+
kind: MethodKind.Unary,
|
|
802
|
+
},
|
|
803
|
+
/**
|
|
804
|
+
* @generated from rpc identity.v1.IdentityService.CustomerResetPassword
|
|
805
|
+
*/
|
|
806
|
+
customerResetPassword: {
|
|
807
|
+
name: "CustomerResetPassword",
|
|
808
|
+
I: CustomerResetPasswordRequest,
|
|
809
|
+
O: CustomerResetPasswordResponse,
|
|
810
|
+
kind: MethodKind.Unary,
|
|
811
|
+
},
|
|
736
812
|
}
|
|
737
813
|
};
|
|
738
814
|
|