Skip to content

Commit ea5e9a3

Browse files
committed
Add build files
1 parent 9d68c6d commit ea5e9a3

6 files changed

Lines changed: 7 additions & 2 deletions

File tree

definition/metadata/IAppInfo.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ export interface IAppInfo {
55
id: string;
66
name: string;
77
nameSlug: string;
8+
updatedAt: Date;
89
version: string;
910
description: string;
1011
requiredApiVersion: string;

definition/metadata/IAppInfo.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

server/AppManager.js

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

server/AppManager.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/server/compiler/AppFabricationFulfillment.spec.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ export class AppFabricationFulfillmentTestFixture {
1616
nameSlug: 'testing-app',
1717
description: 'A Rocket.Chat Application used to test out the various features.',
1818
version: '0.0.8',
19+
updatedAt: new Date(),
1920
requiredApiVersion: '>=0.9.6',
2021
author: {
2122
name: 'Bradley Hilton',

tests/server/misc/DisabledApp.spec.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ export class DisabledAppTestFixture {
1111
nameSlug: 'testing-app',
1212
description: 'A Rocket.Chat Application used to test out the various features.',
1313
version: '0.0.8',
14+
updatedAt: new Date(),
1415
requiredApiVersion: '>=0.9.6',
1516
author: {
1617
name: 'Bradley Hilton',

0 commit comments

Comments
 (0)