File tree 3 files changed +10
-16
lines changed
packages/data-connect/test
3 files changed +10
-16
lines changed Original file line number Diff line number Diff line change @@ -62,23 +62,23 @@ export type DataConnectErrorCode = 'other' | 'already-initialized' | 'not-initia
62
62
// @public
63
63
export class DataConnectOperationError extends DataConnectError {
64
64
/* Excluded from this release type: name */
65
- readonly response: DataConnectOperationResponse ;
65
+ readonly response: DataConnectOperationFailureResponse ;
66
66
}
67
67
68
68
// @public (undocumented)
69
- export interface DataConnectOperationErrorInfo {
69
+ export interface DataConnectOperationFailureResponse {
70
70
// (undocumented)
71
- readonly message : string ;
71
+ readonly data ? : Record < string , unknown > | null ;
72
72
// (undocumented)
73
- readonly path : Array < string | number > ;
73
+ readonly errors : DataConnectOperationFailureResponseErrorInfo [] ;
74
74
}
75
75
76
76
// @public (undocumented)
77
- export interface DataConnectOperationResponse {
77
+ export interface DataConnectOperationFailureResponseErrorInfo {
78
78
// (undocumented)
79
- readonly data ? : Record < string , unknown > | null ;
79
+ readonly message : string ;
80
80
// (undocumented)
81
- readonly errors : DataConnectOperationErrorInfo [] ;
81
+ readonly path : Array < string | number > ;
82
82
}
83
83
84
84
// @public
Original file line number Diff line number Diff line change 1
1
connectorId : " tests"
2
2
authMode : " PUBLIC"
3
3
generate :
4
- javascriptSdk :
5
- outputDir : " ./gen/web"
6
- package : " @test-app/tests"
4
+ javascriptSdk :
5
+ outputDir : " ./gen/web"
6
+ package : " @test-app/tests"
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments