|
@@ -1704,6 +1704,18 @@ export type EffectHttpApiErrorForbidden = {
|
|
|
_tag: "Forbidden"
|
|
_tag: "Forbidden"
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+export type QuestionNotFoundError = {
|
|
|
|
|
+ _tag: "QuestionNotFoundError"
|
|
|
|
|
+ requestID: string
|
|
|
|
|
+ message: string
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+export type PermissionNotFoundError = {
|
|
|
|
|
+ _tag: "PermissionNotFoundError"
|
|
|
|
|
+ requestID: string
|
|
|
|
|
+ message: string
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
export type ProviderAuthMethod = {
|
|
export type ProviderAuthMethod = {
|
|
|
type: "oauth" | "api"
|
|
type: "oauth" | "api"
|
|
|
label: string
|
|
label: string
|
|
@@ -5717,9 +5729,9 @@ export type QuestionReplyErrors = {
|
|
|
*/
|
|
*/
|
|
|
400: EffectHttpApiErrorBadRequest | InvalidRequestError
|
|
400: EffectHttpApiErrorBadRequest | InvalidRequestError
|
|
|
/**
|
|
/**
|
|
|
- * Not found
|
|
|
|
|
|
|
+ * QuestionNotFoundError
|
|
|
*/
|
|
*/
|
|
|
- 404: NotFoundError
|
|
|
|
|
|
|
+ 404: QuestionNotFoundError
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
export type QuestionReplyError = QuestionReplyErrors[keyof QuestionReplyErrors]
|
|
export type QuestionReplyError = QuestionReplyErrors[keyof QuestionReplyErrors]
|
|
@@ -5751,9 +5763,9 @@ export type QuestionRejectErrors = {
|
|
|
*/
|
|
*/
|
|
|
400: EffectHttpApiErrorBadRequest | InvalidRequestError
|
|
400: EffectHttpApiErrorBadRequest | InvalidRequestError
|
|
|
/**
|
|
/**
|
|
|
- * Not found
|
|
|
|
|
|
|
+ * QuestionNotFoundError
|
|
|
*/
|
|
*/
|
|
|
- 404: NotFoundError
|
|
|
|
|
|
|
+ 404: QuestionNotFoundError
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
export type QuestionRejectError = QuestionRejectErrors[keyof QuestionRejectErrors]
|
|
export type QuestionRejectError = QuestionRejectErrors[keyof QuestionRejectErrors]
|
|
@@ -5816,9 +5828,9 @@ export type PermissionReplyErrors = {
|
|
|
*/
|
|
*/
|
|
|
400: EffectHttpApiErrorBadRequest | InvalidRequestError
|
|
400: EffectHttpApiErrorBadRequest | InvalidRequestError
|
|
|
/**
|
|
/**
|
|
|
- * Not found
|
|
|
|
|
|
|
+ * PermissionNotFoundError
|
|
|
*/
|
|
*/
|
|
|
- 404: NotFoundError
|
|
|
|
|
|
|
+ 404: PermissionNotFoundError
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
export type PermissionReplyError = PermissionReplyErrors[keyof PermissionReplyErrors]
|
|
export type PermissionReplyError = PermissionReplyErrors[keyof PermissionReplyErrors]
|
|
@@ -6916,9 +6928,9 @@ export type PermissionRespondErrors = {
|
|
|
*/
|
|
*/
|
|
|
400: EffectHttpApiErrorBadRequest | InvalidRequestError
|
|
400: EffectHttpApiErrorBadRequest | InvalidRequestError
|
|
|
/**
|
|
/**
|
|
|
- * NotFoundError
|
|
|
|
|
|
|
+ * NotFoundError | PermissionNotFoundError
|
|
|
*/
|
|
*/
|
|
|
- 404: NotFoundError
|
|
|
|
|
|
|
+ 404: NotFoundError | PermissionNotFoundError
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
export type PermissionRespondError = PermissionRespondErrors[keyof PermissionRespondErrors]
|
|
export type PermissionRespondError = PermissionRespondErrors[keyof PermissionRespondErrors]
|