File tree Expand file tree Collapse file tree 3 files changed +40
-2
lines changed Expand file tree Collapse file tree 3 files changed +40
-2
lines changed Original file line number Diff line number Diff line change @@ -459,7 +459,7 @@ export declare type TelemetryUsageEvent = CommonTelemetryProperties & {
459
459
/**
460
460
* Schema of features usage common across SDKs
461
461
*/
462
- export declare type TelemetryCommonFeaturesUsage = SetTrackingConsent | StopSession | StartView | SetViewContext | SetViewContextProperty | SetViewName | GetViewContext | AddAction | AddError | GetGlobalContext | SetGlobalContext | SetGlobalContextProperty | RemoveGlobalContextProperty | ClearGlobalContext | GetUser | SetUser | SetUserProperty | RemoveUserProperty | ClearUser | GetAccount | SetAccount | SetAccountProperty | RemoveAccountProperty | ClearAccount | AddFeatureFlagEvaluation ;
462
+ export declare type TelemetryCommonFeaturesUsage = SetTrackingConsent | StopSession | StartView | SetViewContext | SetViewContextProperty | SetViewName | GetViewContext | AddAction | AddError | GetGlobalContext | SetGlobalContext | SetGlobalContextProperty | RemoveGlobalContextProperty | ClearGlobalContext | GetUser | SetUser | SetUserProperty | RemoveUserProperty | ClearUser | GetAccount | SetAccount | SetAccountProperty | RemoveAccountProperty | ClearAccount | AddFeatureFlagEvaluation | AddOperationStepVital ;
463
463
/**
464
464
* Schema of browser specific features usage
465
465
*/
@@ -770,6 +770,17 @@ export interface AddFeatureFlagEvaluation {
770
770
feature : 'add-feature-flag-evaluation' ;
771
771
[ k : string ] : unknown ;
772
772
}
773
+ export interface AddOperationStepVital {
774
+ /**
775
+ * addOperationStepVital API
776
+ */
777
+ feature : 'add-operation-step-vital' ;
778
+ /**
779
+ * Feature operations action type
780
+ */
781
+ action_type : 'start' | 'succeed' | 'fail' ;
782
+ [ k : string ] : unknown ;
783
+ }
773
784
export interface StartSessionReplayRecording {
774
785
/**
775
786
* startSessionReplayRecording API
Original file line number Diff line number Diff line change @@ -459,7 +459,7 @@ export declare type TelemetryUsageEvent = CommonTelemetryProperties & {
459
459
/**
460
460
* Schema of features usage common across SDKs
461
461
*/
462
- export declare type TelemetryCommonFeaturesUsage = SetTrackingConsent | StopSession | StartView | SetViewContext | SetViewContextProperty | SetViewName | GetViewContext | AddAction | AddError | GetGlobalContext | SetGlobalContext | SetGlobalContextProperty | RemoveGlobalContextProperty | ClearGlobalContext | GetUser | SetUser | SetUserProperty | RemoveUserProperty | ClearUser | GetAccount | SetAccount | SetAccountProperty | RemoveAccountProperty | ClearAccount | AddFeatureFlagEvaluation ;
462
+ export declare type TelemetryCommonFeaturesUsage = SetTrackingConsent | StopSession | StartView | SetViewContext | SetViewContextProperty | SetViewName | GetViewContext | AddAction | AddError | GetGlobalContext | SetGlobalContext | SetGlobalContextProperty | RemoveGlobalContextProperty | ClearGlobalContext | GetUser | SetUser | SetUserProperty | RemoveUserProperty | ClearUser | GetAccount | SetAccount | SetAccountProperty | RemoveAccountProperty | ClearAccount | AddFeatureFlagEvaluation | AddOperationStepVital ;
463
463
/**
464
464
* Schema of browser specific features usage
465
465
*/
@@ -770,6 +770,17 @@ export interface AddFeatureFlagEvaluation {
770
770
feature : 'add-feature-flag-evaluation' ;
771
771
[ k : string ] : unknown ;
772
772
}
773
+ export interface AddOperationStepVital {
774
+ /**
775
+ * addOperationStepVital API
776
+ */
777
+ feature : 'add-operation-step-vital' ;
778
+ /**
779
+ * Feature operations action type
780
+ */
781
+ action_type : 'start' | 'succeed' | 'fail' ;
782
+ [ k : string ] : unknown ;
783
+ }
773
784
export interface StartSessionReplayRecording {
774
785
/**
775
786
* startSessionReplayRecording API
Original file line number Diff line number Diff line change 284
284
"const" : " add-feature-flag-evaluation"
285
285
}
286
286
}
287
+ },
288
+ {
289
+ "required" : [" feature" , " action_type" ],
290
+ "title" : " AddOperationStepVital" ,
291
+ "properties" : {
292
+ "feature" : {
293
+ "type" : " string" ,
294
+ "description" : " addOperationStepVital API" ,
295
+ "const" : " add-operation-step-vital"
296
+ },
297
+ "action_type" : {
298
+ "type" : " string" ,
299
+ "description" : " Feature operations action type" ,
300
+ "enum" : [" start" , " succeed" , " fail" ]
301
+ }
302
+ }
287
303
}
288
304
]
289
305
}
You can’t perform that action at this time.
0 commit comments