2022-04-26 19:32:41 +08:00
|
|
|
|
import { ConnectorType, ConnectorMetadata } from '@logto/connector-types';
|
|
|
|
|
|
|
|
|
|
export const endpoint = 'https://dm.aliyuncs.com/';
|
|
|
|
|
|
|
|
|
|
export const staticConfigs = {
|
|
|
|
|
Format: 'json',
|
|
|
|
|
SignatureMethod: 'HMAC-SHA1',
|
|
|
|
|
SignatureVersion: '1.0',
|
|
|
|
|
Version: '2015-11-23',
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export const defaultMetadata: ConnectorMetadata = {
|
2022-05-24 11:39:44 +08:00
|
|
|
|
id: 'aliyun-direct-mail',
|
2022-05-12 12:17:17 +08:00
|
|
|
|
target: 'aliyun-dm',
|
2022-04-26 19:32:41 +08:00
|
|
|
|
type: ConnectorType.Email,
|
2022-05-12 12:17:17 +08:00
|
|
|
|
platform: null,
|
2022-04-26 19:32:41 +08:00
|
|
|
|
name: {
|
|
|
|
|
en: 'Aliyun Direct Mail',
|
|
|
|
|
'zh-CN': '阿里云邮件推送',
|
2022-07-30 16:48:45 +03:00
|
|
|
|
'tr-TR': 'Aliyun Direct Mail',
|
2022-04-26 19:32:41 +08:00
|
|
|
|
},
|
2022-05-24 13:54:37 +08:00
|
|
|
|
logo: './logo.svg',
|
2022-06-23 11:12:29 +08:00
|
|
|
|
logoDark: null,
|
2022-04-26 19:32:41 +08:00
|
|
|
|
description: {
|
2022-07-18 19:51:17 +08:00
|
|
|
|
en: 'Aliyun provides cloud computing services to online businesses.',
|
2022-07-04 12:20:28 +08:00
|
|
|
|
'zh-CN': '阿里云是全球性的云服务提供商。',
|
2022-07-30 16:48:45 +03:00
|
|
|
|
'tr-TR': 'Aliyun, çevrimiçi işletmelere bulut bilişim hizmetleri sunmaktadır.',
|
2022-04-26 19:32:41 +08:00
|
|
|
|
},
|
2022-06-27 10:00:37 +08:00
|
|
|
|
readme: './README.md',
|
|
|
|
|
configTemplate: './docs/config-template.json',
|
2022-04-26 19:32:41 +08:00
|
|
|
|
};
|