mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-05 13:02:54 +00:00
fix: rebase cleanup
fix: rebase cleanup fix: rebase cleanup
This commit is contained in:
@@ -1,24 +1,16 @@
|
||||
# [1.1.0](https://gitlab.com/openstapps/core/compare/v1.0.1...v1.1.0) (2023-05-19)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* add certification thing ([fd63fb7](https://gitlab.com/openstapps/core/commit/fd63fb764f882a87b8da3c5fb27701a090469df2))
|
||||
|
||||
|
||||
- add certification thing ([fd63fb7](https://gitlab.com/openstapps/core/commit/fd63fb764f882a87b8da3c5fb27701a090469df2))
|
||||
|
||||
## [1.0.1](https://gitlab.com/openstapps/core/compare/v1.0.0...v1.0.1) (2023-04-28)
|
||||
|
||||
|
||||
|
||||
# [1.0.0](https://gitlab.com/openstapps/core/compare/v0.75.0...v1.0.0) (2023-04-28)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* support ES 8.4 via mapping generator ([afcc73f](https://gitlab.com/openstapps/core/commit/afcc73f3da856a76a613d939a759cf1cd701a2c5))
|
||||
|
||||
|
||||
- support ES 8.4 via mapping generator ([afcc73f](https://gitlab.com/openstapps/core/commit/afcc73f3da856a76a613d939a759cf1cd701a2c5))
|
||||
|
||||
# [0.75.0](https://gitlab.com/openstapps/core/compare/v0.74.0...v0.75.0) (2023-02-28)
|
||||
|
||||
|
||||
@@ -23,7 +23,11 @@ import {SCAssessment, SCAssessmentMeta, SCAssessmentWithoutReferences} from './t
|
||||
import {SCBook, SCBookMeta, SCBookWithoutReferences} from './things/book.js';
|
||||
import {SCBuilding, SCBuildingMeta, SCBuildingWithoutReferences} from './things/building.js';
|
||||
import {SCCatalog, SCCatalogMeta, SCCatalogWithoutReferences} from './things/catalog.js';
|
||||
import {SCCertification, SCCertificationMeta, SCCertificationWithoutReferences} from './things/certification';
|
||||
import {
|
||||
SCCertification,
|
||||
SCCertificationMeta,
|
||||
SCCertificationWithoutReferences,
|
||||
} from './things/certification.js';
|
||||
import {SCContactPoint, SCContactPointMeta, SCContactPointWithoutReferences} from './things/contact-point.js';
|
||||
import {
|
||||
SCCourseOfStudy,
|
||||
|
||||
@@ -12,16 +12,16 @@
|
||||
* You should have received a copy of the GNU General Public License along with
|
||||
* this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
import {SCMetaTranslations, SCTranslations} from '../general/i18n';
|
||||
import {SCThing, SCThingMeta, SCThingType} from './abstract/thing';
|
||||
import {SCMetaTranslations, SCTranslations} from '../general/i18n.js';
|
||||
import {SCThing, SCThingMeta, SCThingType} from './abstract/thing.js';
|
||||
import {
|
||||
SCThingWithCategories,
|
||||
SCThingWithCategoriesSpecificValues,
|
||||
SCThingWithCategoriesTranslatableProperties,
|
||||
SCThingWithCategoriesWithoutReferences,
|
||||
SCThingWithCategoriesWithoutReferencesMeta,
|
||||
} from './abstract/thing-with-categories';
|
||||
import {SCOrganizationWithoutReferences} from './organization';
|
||||
} from './abstract/thing-with-categories.js';
|
||||
import {SCOrganizationWithoutReferences} from './organization.js';
|
||||
|
||||
export interface SCCertificationWithoutReferences
|
||||
extends SCThingWithCategoriesWithoutReferences<
|
||||
|
||||
@@ -13,7 +13,6 @@
|
||||
* You should have received a copy of the GNU General Public License along with
|
||||
* this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
import {SCMultiSearchResponse} from '../src/index.js';
|
||||
import {expect} from 'chai';
|
||||
import {
|
||||
isBulkResponse,
|
||||
@@ -26,11 +25,7 @@ import {bulkResponse} from './dummy/bulk-response.js';
|
||||
import {dishWithTranslation} from './dummy/dish-with-translation.js';
|
||||
import {dishWithTranslationSearchResponse} from './dummy/dish-with-translation-search-response.js';
|
||||
import {notADish} from './dummy/not-a-dish.js';
|
||||
import {SCBulkResponse} from '../src/protocol/routes/bulk-request.js';
|
||||
import {SCSearchResponse} from '../src/protocol/routes/search.js';
|
||||
import {SCMultiSearchResponse} from '../src/protocol/routes/search-multi.js';
|
||||
import {SCThingOriginType, SCThingType} from '../src/things/abstract/thing.js';
|
||||
import {SCDish} from '../src/things/dish.js';
|
||||
import {SCMultiSearchResponse} from '../src/index.js';
|
||||
|
||||
describe('Guards', function () {
|
||||
this.timeout(10_000);
|
||||
|
||||
@@ -12,7 +12,6 @@
|
||||
* You should have received a copy of the GNU General Public License along with
|
||||
* this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
import {slow, suite, test, timeout} from '@testdeck/mocha';
|
||||
import {expect} from 'chai';
|
||||
import {SCBulkRoute} from '../src/index.js';
|
||||
import {SCBulkAddRoute} from '../src/index.js';
|
||||
|
||||
@@ -12,7 +12,6 @@
|
||||
* You should have received a copy of the GNU General Public License along with
|
||||
* this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
import {slow, suite, test, timeout} from '@testdeck/mocha';
|
||||
import {expect} from 'chai';
|
||||
import clone from 'rfdc';
|
||||
import {SCThingRemoteOrigin} from '../src/index.js';
|
||||
|
||||
Reference in New Issue
Block a user