2022-03-28 08:05:22 +00:00
|
|
|
//
|
|
|
|
// Copyright © 2020, 2021 Anticrm Platform Contributors.
|
|
|
|
// Copyright © 2021, 2022 Hardcore Engineering Inc.
|
|
|
|
//
|
|
|
|
// Licensed under the Eclipse Public License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License. You may
|
|
|
|
// obtain a copy of the License at https://www.eclipse.org/legal/epl-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
//
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
//
|
|
|
|
|
2024-08-06 08:27:42 +00:00
|
|
|
import { Metadata, Plugin, Resource, plugin } from '@hcengineering/platform'
|
2023-12-21 08:51:14 +00:00
|
|
|
import { ObjectDDParticipantFunc, TriggerFunc } from '@hcengineering/server-core'
|
2024-08-06 08:27:42 +00:00
|
|
|
import { NotificationProviderFunc, TypeMatchFunc } from '@hcengineering/server-notification'
|
2024-02-05 08:47:52 +00:00
|
|
|
import { TemplateFieldServerFunc } from '@hcengineering/server-templates'
|
2022-03-28 08:05:22 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @public
|
|
|
|
*/
|
|
|
|
export const serverTelegramId = 'server-telegram' as Plugin
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @public
|
|
|
|
*/
|
|
|
|
export default plugin(serverTelegramId, {
|
2024-08-06 08:27:42 +00:00
|
|
|
metadata: {
|
|
|
|
BotUrl: '' as Metadata<string>
|
|
|
|
},
|
2022-05-06 17:45:59 +00:00
|
|
|
trigger: {
|
|
|
|
OnMessageCreate: '' as Resource<TriggerFunc>
|
|
|
|
},
|
2022-03-28 08:05:22 +00:00
|
|
|
function: {
|
2024-08-19 05:41:31 +00:00
|
|
|
IsIncomingMessageTypeMatch: '' as TypeMatchFunc,
|
2024-02-05 08:47:52 +00:00
|
|
|
FindMessages: '' as Resource<ObjectDDParticipantFunc>,
|
|
|
|
GetCurrentEmployeeTG: '' as Resource<TemplateFieldServerFunc>,
|
2024-08-06 08:27:42 +00:00
|
|
|
GetIntegrationOwnerTG: '' as Resource<TemplateFieldServerFunc>,
|
|
|
|
SendTelegramNotifications: '' as Resource<NotificationProviderFunc>
|
2022-03-28 08:05:22 +00:00
|
|
|
}
|
|
|
|
})
|