2021-08-07 05:39:49 +00:00
|
|
|
//
|
|
|
|
// Copyright © 2020 Anticrm Platform Contributors.
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
//
|
|
|
|
|
2022-09-21 08:08:25 +00:00
|
|
|
import core, { coreId } from '@hcengineering/core'
|
2023-11-20 10:01:43 +00:00
|
|
|
import { type IntlString, mergeIds } from '@hcengineering/platform'
|
2021-08-07 05:39:49 +00:00
|
|
|
|
|
|
|
export default mergeIds(coreId, core, {
|
2022-02-23 16:10:11 +00:00
|
|
|
string: {
|
2022-03-18 06:37:49 +00:00
|
|
|
Archived: '' as IntlString,
|
2022-05-24 17:40:37 +00:00
|
|
|
ClassLabel: '' as IntlString,
|
2022-09-14 04:53:48 +00:00
|
|
|
ClassPropertyLabel: '' as IntlString,
|
2024-04-02 07:05:16 +00:00
|
|
|
Blob: '' as IntlString,
|
|
|
|
BlobContentType: '' as IntlString,
|
|
|
|
BlobEtag: '' as IntlString,
|
|
|
|
BlobVersion: '' as IntlString,
|
|
|
|
BlobStorageId: '' as IntlString,
|
|
|
|
BlobSize: '' as IntlString
|
2021-08-07 05:39:49 +00:00
|
|
|
}
|
|
|
|
})
|