@accrescent/console-client-sdk-angular 0.9.0 → 0.11.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.
@@ -34,11 +34,14 @@ type Http = Message<"google.api.Http"> & {
34
34
  */
35
35
  fullyDecodeReservedExpansion: boolean;
36
36
  };
37
+ type HttpValid = Http;
37
38
  /**
38
39
  * Describes the message google.api.Http.
39
40
  * Use `create(HttpSchema)` to create a new message.
40
41
  */
41
- declare const HttpSchema: GenMessage<Http>;
42
+ declare const HttpSchema: GenMessage<Http, {
43
+ validType: HttpValid;
44
+ }>;
42
45
  /**
43
46
  * gRPC Transcoding
44
47
  *
@@ -411,11 +414,14 @@ type HttpRule = Message<"google.api.HttpRule"> & {
411
414
  */
412
415
  additionalBindings: HttpRule[];
413
416
  };
417
+ type HttpRuleValid = HttpRule;
414
418
  /**
415
419
  * Describes the message google.api.HttpRule.
416
420
  * Use `create(HttpRuleSchema)` to create a new message.
417
421
  */
418
- declare const HttpRuleSchema: GenMessage<HttpRule>;
422
+ declare const HttpRuleSchema: GenMessage<HttpRule, {
423
+ validType: HttpRuleValid;
424
+ }>;
419
425
  /**
420
426
  * A custom pattern is used for defining custom HTTP verb.
421
427
  *
@@ -435,11 +441,14 @@ type CustomHttpPattern = Message<"google.api.CustomHttpPattern"> & {
435
441
  */
436
442
  path: string;
437
443
  };
444
+ type CustomHttpPatternValid = CustomHttpPattern;
438
445
  /**
439
446
  * Describes the message google.api.CustomHttpPattern.
440
447
  * Use `create(CustomHttpPatternSchema)` to create a new message.
441
448
  */
442
- declare const CustomHttpPatternSchema: GenMessage<CustomHttpPattern>;
449
+ declare const CustomHttpPatternSchema: GenMessage<CustomHttpPattern, {
450
+ validType: CustomHttpPatternValid;
451
+ }>;
443
452
 
444
453
  /**
445
454
  * Describes the file google/api/annotations.proto.
@@ -569,11 +578,14 @@ type CommonLanguageSettings = Message<"google.api.CommonLanguageSettings"> & {
569
578
  */
570
579
  selectiveGapicGeneration?: SelectiveGapicGeneration;
571
580
  };
581
+ type CommonLanguageSettingsValid = CommonLanguageSettings;
572
582
  /**
573
583
  * Describes the message google.api.CommonLanguageSettings.
574
584
  * Use `create(CommonLanguageSettingsSchema)` to create a new message.
575
585
  */
576
- declare const CommonLanguageSettingsSchema: GenMessage<CommonLanguageSettings>;
586
+ declare const CommonLanguageSettingsSchema: GenMessage<CommonLanguageSettings, {
587
+ validType: CommonLanguageSettingsValid;
588
+ }>;
577
589
  /**
578
590
  * Details about how and where to publish client libraries.
579
591
  *
@@ -650,11 +662,14 @@ type ClientLibrarySettings = Message<"google.api.ClientLibrarySettings"> & {
650
662
  */
651
663
  goSettings?: GoSettings;
652
664
  };
665
+ type ClientLibrarySettingsValid = ClientLibrarySettings;
653
666
  /**
654
667
  * Describes the message google.api.ClientLibrarySettings.
655
668
  * Use `create(ClientLibrarySettingsSchema)` to create a new message.
656
669
  */
657
- declare const ClientLibrarySettingsSchema: GenMessage<ClientLibrarySettings>;
670
+ declare const ClientLibrarySettingsSchema: GenMessage<ClientLibrarySettings, {
671
+ validType: ClientLibrarySettingsValid;
672
+ }>;
658
673
  /**
659
674
  * This message configures the settings for publishing [Google Cloud Client
660
675
  * libraries](https://cloud.google.com/apis/docs/cloud-client-libraries)
@@ -741,11 +756,14 @@ type Publishing = Message<"google.api.Publishing"> & {
741
756
  */
742
757
  restReferenceDocumentationUri: string;
743
758
  };
759
+ type PublishingValid = Publishing;
744
760
  /**
745
761
  * Describes the message google.api.Publishing.
746
762
  * Use `create(PublishingSchema)` to create a new message.
747
763
  */
748
- declare const PublishingSchema: GenMessage<Publishing>;
764
+ declare const PublishingSchema: GenMessage<Publishing, {
765
+ validType: PublishingValid;
766
+ }>;
749
767
  /**
750
768
  * Settings for Java client libraries.
751
769
  *
@@ -796,11 +814,14 @@ type JavaSettings = Message<"google.api.JavaSettings"> & {
796
814
  */
797
815
  common?: CommonLanguageSettings;
798
816
  };
817
+ type JavaSettingsValid = JavaSettings;
799
818
  /**
800
819
  * Describes the message google.api.JavaSettings.
801
820
  * Use `create(JavaSettingsSchema)` to create a new message.
802
821
  */
803
- declare const JavaSettingsSchema: GenMessage<JavaSettings>;
822
+ declare const JavaSettingsSchema: GenMessage<JavaSettings, {
823
+ validType: JavaSettingsValid;
824
+ }>;
804
825
  /**
805
826
  * Settings for C++ client libraries.
806
827
  *
@@ -814,11 +835,14 @@ type CppSettings = Message<"google.api.CppSettings"> & {
814
835
  */
815
836
  common?: CommonLanguageSettings;
816
837
  };
838
+ type CppSettingsValid = CppSettings;
817
839
  /**
818
840
  * Describes the message google.api.CppSettings.
819
841
  * Use `create(CppSettingsSchema)` to create a new message.
820
842
  */
821
- declare const CppSettingsSchema: GenMessage<CppSettings>;
843
+ declare const CppSettingsSchema: GenMessage<CppSettings, {
844
+ validType: CppSettingsValid;
845
+ }>;
822
846
  /**
823
847
  * Settings for Php client libraries.
824
848
  *
@@ -832,11 +856,14 @@ type PhpSettings = Message<"google.api.PhpSettings"> & {
832
856
  */
833
857
  common?: CommonLanguageSettings;
834
858
  };
859
+ type PhpSettingsValid = PhpSettings;
835
860
  /**
836
861
  * Describes the message google.api.PhpSettings.
837
862
  * Use `create(PhpSettingsSchema)` to create a new message.
838
863
  */
839
- declare const PhpSettingsSchema: GenMessage<PhpSettings>;
864
+ declare const PhpSettingsSchema: GenMessage<PhpSettings, {
865
+ validType: PhpSettingsValid;
866
+ }>;
840
867
  /**
841
868
  * Settings for Python client libraries.
842
869
  *
@@ -856,11 +883,14 @@ type PythonSettings = Message<"google.api.PythonSettings"> & {
856
883
  */
857
884
  experimentalFeatures?: PythonSettings_ExperimentalFeatures;
858
885
  };
886
+ type PythonSettingsValid = PythonSettings;
859
887
  /**
860
888
  * Describes the message google.api.PythonSettings.
861
889
  * Use `create(PythonSettingsSchema)` to create a new message.
862
890
  */
863
- declare const PythonSettingsSchema: GenMessage<PythonSettings>;
891
+ declare const PythonSettingsSchema: GenMessage<PythonSettings, {
892
+ validType: PythonSettingsValid;
893
+ }>;
864
894
  /**
865
895
  * Experimental features to be included during client library generation.
866
896
  * These fields will be deprecated once the feature graduates and is enabled
@@ -897,11 +927,14 @@ type PythonSettings_ExperimentalFeatures = Message<"google.api.PythonSettings.Ex
897
927
  */
898
928
  unversionedPackageDisabled: boolean;
899
929
  };
930
+ type PythonSettings_ExperimentalFeaturesValid = PythonSettings_ExperimentalFeatures;
900
931
  /**
901
932
  * Describes the message google.api.PythonSettings.ExperimentalFeatures.
902
933
  * Use `create(PythonSettings_ExperimentalFeaturesSchema)` to create a new message.
903
934
  */
904
- declare const PythonSettings_ExperimentalFeaturesSchema: GenMessage<PythonSettings_ExperimentalFeatures>;
935
+ declare const PythonSettings_ExperimentalFeaturesSchema: GenMessage<PythonSettings_ExperimentalFeatures, {
936
+ validType: PythonSettings_ExperimentalFeaturesValid;
937
+ }>;
905
938
  /**
906
939
  * Settings for Node client libraries.
907
940
  *
@@ -915,11 +948,14 @@ type NodeSettings = Message<"google.api.NodeSettings"> & {
915
948
  */
916
949
  common?: CommonLanguageSettings;
917
950
  };
951
+ type NodeSettingsValid = NodeSettings;
918
952
  /**
919
953
  * Describes the message google.api.NodeSettings.
920
954
  * Use `create(NodeSettingsSchema)` to create a new message.
921
955
  */
922
- declare const NodeSettingsSchema: GenMessage<NodeSettings>;
956
+ declare const NodeSettingsSchema: GenMessage<NodeSettings, {
957
+ validType: NodeSettingsValid;
958
+ }>;
923
959
  /**
924
960
  * Settings for Dotnet client libraries.
925
961
  *
@@ -982,11 +1018,14 @@ type DotnetSettings = Message<"google.api.DotnetSettings"> & {
982
1018
  */
983
1019
  handwrittenSignatures: string[];
984
1020
  };
1021
+ type DotnetSettingsValid = DotnetSettings;
985
1022
  /**
986
1023
  * Describes the message google.api.DotnetSettings.
987
1024
  * Use `create(DotnetSettingsSchema)` to create a new message.
988
1025
  */
989
- declare const DotnetSettingsSchema: GenMessage<DotnetSettings>;
1026
+ declare const DotnetSettingsSchema: GenMessage<DotnetSettings, {
1027
+ validType: DotnetSettingsValid;
1028
+ }>;
990
1029
  /**
991
1030
  * Settings for Ruby client libraries.
992
1031
  *
@@ -1000,11 +1039,14 @@ type RubySettings = Message<"google.api.RubySettings"> & {
1000
1039
  */
1001
1040
  common?: CommonLanguageSettings;
1002
1041
  };
1042
+ type RubySettingsValid = RubySettings;
1003
1043
  /**
1004
1044
  * Describes the message google.api.RubySettings.
1005
1045
  * Use `create(RubySettingsSchema)` to create a new message.
1006
1046
  */
1007
- declare const RubySettingsSchema: GenMessage<RubySettings>;
1047
+ declare const RubySettingsSchema: GenMessage<RubySettings, {
1048
+ validType: RubySettingsValid;
1049
+ }>;
1008
1050
  /**
1009
1051
  * Settings for Go client libraries.
1010
1052
  *
@@ -1033,11 +1075,14 @@ type GoSettings = Message<"google.api.GoSettings"> & {
1033
1075
  [key: string]: string;
1034
1076
  };
1035
1077
  };
1078
+ type GoSettingsValid = GoSettings;
1036
1079
  /**
1037
1080
  * Describes the message google.api.GoSettings.
1038
1081
  * Use `create(GoSettingsSchema)` to create a new message.
1039
1082
  */
1040
- declare const GoSettingsSchema: GenMessage<GoSettings>;
1083
+ declare const GoSettingsSchema: GenMessage<GoSettings, {
1084
+ validType: GoSettingsValid;
1085
+ }>;
1041
1086
  /**
1042
1087
  * Describes the generator configuration for a method.
1043
1088
  *
@@ -1094,11 +1139,14 @@ type MethodSettings = Message<"google.api.MethodSettings"> & {
1094
1139
  */
1095
1140
  autoPopulatedFields: string[];
1096
1141
  };
1142
+ type MethodSettingsValid = MethodSettings;
1097
1143
  /**
1098
1144
  * Describes the message google.api.MethodSettings.
1099
1145
  * Use `create(MethodSettingsSchema)` to create a new message.
1100
1146
  */
1101
- declare const MethodSettingsSchema: GenMessage<MethodSettings>;
1147
+ declare const MethodSettingsSchema: GenMessage<MethodSettings, {
1148
+ validType: MethodSettingsValid;
1149
+ }>;
1102
1150
  /**
1103
1151
  * Describes settings to use when generating API methods that use the
1104
1152
  * long-running operation pattern.
@@ -1139,11 +1187,14 @@ type MethodSettings_LongRunning = Message<"google.api.MethodSettings.LongRunning
1139
1187
  */
1140
1188
  totalPollTimeout?: Duration;
1141
1189
  };
1190
+ type MethodSettings_LongRunningValid = MethodSettings_LongRunning;
1142
1191
  /**
1143
1192
  * Describes the message google.api.MethodSettings.LongRunning.
1144
1193
  * Use `create(MethodSettings_LongRunningSchema)` to create a new message.
1145
1194
  */
1146
- declare const MethodSettings_LongRunningSchema: GenMessage<MethodSettings_LongRunning>;
1195
+ declare const MethodSettings_LongRunningSchema: GenMessage<MethodSettings_LongRunning, {
1196
+ validType: MethodSettings_LongRunningValid;
1197
+ }>;
1147
1198
  /**
1148
1199
  * This message is used to configure the generation of a subset of the RPCs in
1149
1200
  * a service for client libraries.
@@ -1170,11 +1221,14 @@ type SelectiveGapicGeneration = Message<"google.api.SelectiveGapicGeneration"> &
1170
1221
  */
1171
1222
  generateOmittedAsInternal: boolean;
1172
1223
  };
1224
+ type SelectiveGapicGenerationValid = SelectiveGapicGeneration;
1173
1225
  /**
1174
1226
  * Describes the message google.api.SelectiveGapicGeneration.
1175
1227
  * Use `create(SelectiveGapicGenerationSchema)` to create a new message.
1176
1228
  */
1177
- declare const SelectiveGapicGenerationSchema: GenMessage<SelectiveGapicGeneration>;
1229
+ declare const SelectiveGapicGenerationSchema: GenMessage<SelectiveGapicGeneration, {
1230
+ validType: SelectiveGapicGenerationValid;
1231
+ }>;
1178
1232
  /**
1179
1233
  * The organization for which the client libraries are being published.
1180
1234
  * Affects the url where generated docs are published, etc.
@@ -1486,4 +1540,4 @@ declare const FieldBehaviorSchema: GenEnum<FieldBehavior>;
1486
1540
  declare const field_behavior: GenExtension<FieldOptions, FieldBehavior[]>;
1487
1541
 
1488
1542
  export { ClientLibraryDestination, ClientLibraryDestinationSchema, ClientLibraryOrganization, ClientLibraryOrganizationSchema, ClientLibrarySettingsSchema, CommonLanguageSettingsSchema, CppSettingsSchema, CustomHttpPatternSchema, DotnetSettingsSchema, FieldBehavior, FieldBehaviorSchema, GoSettingsSchema, HttpRuleSchema, HttpSchema, JavaSettingsSchema, LaunchStage, LaunchStageSchema, MethodSettingsSchema, MethodSettings_LongRunningSchema, NodeSettingsSchema, PhpSettingsSchema, PublishingSchema, PythonSettingsSchema, PythonSettings_ExperimentalFeaturesSchema, RubySettingsSchema, SelectiveGapicGenerationSchema, api_version, default_host, field_behavior, file_google_api_annotations, file_google_api_client, file_google_api_field_behavior, file_google_api_http, file_google_api_launch_stage, http, method_signature, oauth_scopes };
1489
- export type { ClientLibrarySettings, CommonLanguageSettings, CppSettings, CustomHttpPattern, DotnetSettings, GoSettings, Http, HttpRule, JavaSettings, MethodSettings, MethodSettings_LongRunning, NodeSettings, PhpSettings, Publishing, PythonSettings, PythonSettings_ExperimentalFeatures, RubySettings, SelectiveGapicGeneration };
1543
+ export type { ClientLibrarySettings, ClientLibrarySettingsValid, CommonLanguageSettings, CommonLanguageSettingsValid, CppSettings, CppSettingsValid, CustomHttpPattern, CustomHttpPatternValid, DotnetSettings, DotnetSettingsValid, GoSettings, GoSettingsValid, Http, HttpRule, HttpRuleValid, HttpValid, JavaSettings, JavaSettingsValid, MethodSettings, MethodSettingsValid, MethodSettings_LongRunning, MethodSettings_LongRunningValid, NodeSettings, NodeSettingsValid, PhpSettings, PhpSettingsValid, Publishing, PublishingValid, PythonSettings, PythonSettingsValid, PythonSettings_ExperimentalFeatures, PythonSettings_ExperimentalFeaturesValid, RubySettings, RubySettingsValid, SelectiveGapicGeneration, SelectiveGapicGenerationValid };
@@ -75,11 +75,14 @@ type Operation = Message<"google.longrunning.Operation"> & {
75
75
  value?: undefined;
76
76
  };
77
77
  };
78
+ type OperationValid = Operation;
78
79
  /**
79
80
  * Describes the message google.longrunning.Operation.
80
81
  * Use `create(OperationSchema)` to create a new message.
81
82
  */
82
- declare const OperationSchema: GenMessage<Operation>;
83
+ declare const OperationSchema: GenMessage<Operation, {
84
+ validType: OperationValid;
85
+ }>;
83
86
  /**
84
87
  * The request message for
85
88
  * [Operations.GetOperation][google.longrunning.Operations.GetOperation].
@@ -94,11 +97,14 @@ type GetOperationRequest = Message<"google.longrunning.GetOperationRequest"> & {
94
97
  */
95
98
  name: string;
96
99
  };
100
+ type GetOperationRequestValid = GetOperationRequest;
97
101
  /**
98
102
  * Describes the message google.longrunning.GetOperationRequest.
99
103
  * Use `create(GetOperationRequestSchema)` to create a new message.
100
104
  */
101
- declare const GetOperationRequestSchema: GenMessage<GetOperationRequest>;
105
+ declare const GetOperationRequestSchema: GenMessage<GetOperationRequest, {
106
+ validType: GetOperationRequestValid;
107
+ }>;
102
108
  /**
103
109
  * The request message for
104
110
  * [Operations.ListOperations][google.longrunning.Operations.ListOperations].
@@ -146,11 +152,14 @@ type ListOperationsRequest = Message<"google.longrunning.ListOperationsRequest">
146
152
  */
147
153
  returnPartialSuccess: boolean;
148
154
  };
155
+ type ListOperationsRequestValid = ListOperationsRequest;
149
156
  /**
150
157
  * Describes the message google.longrunning.ListOperationsRequest.
151
158
  * Use `create(ListOperationsRequestSchema)` to create a new message.
152
159
  */
153
- declare const ListOperationsRequestSchema: GenMessage<ListOperationsRequest>;
160
+ declare const ListOperationsRequestSchema: GenMessage<ListOperationsRequest, {
161
+ validType: ListOperationsRequestValid;
162
+ }>;
154
163
  /**
155
164
  * The response message for
156
165
  * [Operations.ListOperations][google.longrunning.Operations.ListOperations].
@@ -180,11 +189,14 @@ type ListOperationsResponse = Message<"google.longrunning.ListOperationsResponse
180
189
  */
181
190
  unreachable: string[];
182
191
  };
192
+ type ListOperationsResponseValid = ListOperationsResponse;
183
193
  /**
184
194
  * Describes the message google.longrunning.ListOperationsResponse.
185
195
  * Use `create(ListOperationsResponseSchema)` to create a new message.
186
196
  */
187
- declare const ListOperationsResponseSchema: GenMessage<ListOperationsResponse>;
197
+ declare const ListOperationsResponseSchema: GenMessage<ListOperationsResponse, {
198
+ validType: ListOperationsResponseValid;
199
+ }>;
188
200
  /**
189
201
  * The request message for
190
202
  * [Operations.CancelOperation][google.longrunning.Operations.CancelOperation].
@@ -199,11 +211,14 @@ type CancelOperationRequest = Message<"google.longrunning.CancelOperationRequest
199
211
  */
200
212
  name: string;
201
213
  };
214
+ type CancelOperationRequestValid = CancelOperationRequest;
202
215
  /**
203
216
  * Describes the message google.longrunning.CancelOperationRequest.
204
217
  * Use `create(CancelOperationRequestSchema)` to create a new message.
205
218
  */
206
- declare const CancelOperationRequestSchema: GenMessage<CancelOperationRequest>;
219
+ declare const CancelOperationRequestSchema: GenMessage<CancelOperationRequest, {
220
+ validType: CancelOperationRequestValid;
221
+ }>;
207
222
  /**
208
223
  * The request message for
209
224
  * [Operations.DeleteOperation][google.longrunning.Operations.DeleteOperation].
@@ -218,11 +233,14 @@ type DeleteOperationRequest = Message<"google.longrunning.DeleteOperationRequest
218
233
  */
219
234
  name: string;
220
235
  };
236
+ type DeleteOperationRequestValid = DeleteOperationRequest;
221
237
  /**
222
238
  * Describes the message google.longrunning.DeleteOperationRequest.
223
239
  * Use `create(DeleteOperationRequestSchema)` to create a new message.
224
240
  */
225
- declare const DeleteOperationRequestSchema: GenMessage<DeleteOperationRequest>;
241
+ declare const DeleteOperationRequestSchema: GenMessage<DeleteOperationRequest, {
242
+ validType: DeleteOperationRequestValid;
243
+ }>;
226
244
  /**
227
245
  * The request message for
228
246
  * [Operations.WaitOperation][google.longrunning.Operations.WaitOperation].
@@ -245,11 +263,14 @@ type WaitOperationRequest = Message<"google.longrunning.WaitOperationRequest"> &
245
263
  */
246
264
  timeout?: Duration;
247
265
  };
266
+ type WaitOperationRequestValid = WaitOperationRequest;
248
267
  /**
249
268
  * Describes the message google.longrunning.WaitOperationRequest.
250
269
  * Use `create(WaitOperationRequestSchema)` to create a new message.
251
270
  */
252
- declare const WaitOperationRequestSchema: GenMessage<WaitOperationRequest>;
271
+ declare const WaitOperationRequestSchema: GenMessage<WaitOperationRequest, {
272
+ validType: WaitOperationRequestValid;
273
+ }>;
253
274
  /**
254
275
  * A message representing the message types used by a long-running operation.
255
276
  *
@@ -291,11 +312,14 @@ type OperationInfo = Message<"google.longrunning.OperationInfo"> & {
291
312
  */
292
313
  metadataType: string;
293
314
  };
315
+ type OperationInfoValid = OperationInfo;
294
316
  /**
295
317
  * Describes the message google.longrunning.OperationInfo.
296
318
  * Use `create(OperationInfoSchema)` to create a new message.
297
319
  */
298
- declare const OperationInfoSchema: GenMessage<OperationInfo>;
320
+ declare const OperationInfoSchema: GenMessage<OperationInfo, {
321
+ validType: OperationInfoValid;
322
+ }>;
299
323
  /**
300
324
  * Manages long-running operations with an API service.
301
325
  *
@@ -398,4 +422,4 @@ declare const Operations: GenService<{
398
422
  declare const operation_info: GenExtension<MethodOptions, OperationInfo>;
399
423
 
400
424
  export { CancelOperationRequestSchema, DeleteOperationRequestSchema, GetOperationRequestSchema, ListOperationsRequestSchema, ListOperationsResponseSchema, OperationInfoSchema, OperationSchema, Operations, WaitOperationRequestSchema, file_google_longrunning_operations, operation_info };
401
- export type { CancelOperationRequest, DeleteOperationRequest, GetOperationRequest, ListOperationsRequest, ListOperationsResponse, Operation, OperationInfo, WaitOperationRequest };
425
+ export type { CancelOperationRequest, CancelOperationRequestValid, DeleteOperationRequest, DeleteOperationRequestValid, GetOperationRequest, GetOperationRequestValid, ListOperationsRequest, ListOperationsRequestValid, ListOperationsResponse, ListOperationsResponseValid, Operation, OperationInfo, OperationInfoValid, OperationValid, WaitOperationRequest, WaitOperationRequestValid };
@@ -42,11 +42,14 @@ type Status = Message<"google.rpc.Status"> & {
42
42
  */
43
43
  details: Any[];
44
44
  };
45
+ type StatusValid = Status;
45
46
  /**
46
47
  * Describes the message google.rpc.Status.
47
48
  * Use `create(StatusSchema)` to create a new message.
48
49
  */
49
- declare const StatusSchema: GenMessage<Status>;
50
+ declare const StatusSchema: GenMessage<Status, {
51
+ validType: StatusValid;
52
+ }>;
50
53
 
51
54
  export { StatusSchema, file_google_rpc_status };
52
- export type { Status };
55
+ export type { Status, StatusValid };