🚀 Socket Launch Week Day 5:Introducing Repository Access Permissions and Custom Roles.Learn more
Sign In

@microsoft/teams.cards

Package Overview
Dependencies
Maintainers
5
Versions
41
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@microsoft/teams.cards - npm Package Compare versions

Comparing version
2.0.6
to
2.0.7
+3
dist/utilities/index.d.mts
export { SubmitData } from './submit-data.mjs';
export { OpenDialogData } from './open-dialog-data.mjs';
import '../core.mjs';
export { SubmitData } from './submit-data.js';
export { OpenDialogData } from './open-dialog-data.js';
import '../core.js';
'use strict';
var submitData = require('./submit-data');
var openDialogData = require('./open-dialog-data');
Object.keys(submitData).forEach(function (k) {
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
enumerable: true,
get: function () { return submitData[k]; }
});
});
Object.keys(openDialogData).forEach(function (k) {
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
enumerable: true,
get: function () { return openDialogData[k]; }
});
});
//# sourceMappingURL=index.js.map
//# sourceMappingURL=index.js.map
{"version":3,"sources":[],"names":[],"mappings":"","file":"index.js","sourcesContent":[]}
export * from './submit-data';
export * from './open-dialog-data';
//# sourceMappingURL=index.mjs.map
//# sourceMappingURL=index.mjs.map
{"version":3,"sources":[],"names":[],"mappings":"","file":"index.mjs","sourcesContent":[]}
import { SubmitActionData } from '../core.mjs';
/**
* Convenience class for creating the data payload to open a dialog
* from an Action.Submit.
*
* Abstracts away the `msteams: { type: 'task/fetch' }` protocol detail
* and sets a reserved `dialog_id` field for handler routing.
*
* @example
* ```ts
* new SubmitAction().withData(new OpenDialogData('simple_form'))
* ```
*/
declare class OpenDialogData extends SubmitActionData {
constructor(dialogId: string, extraData?: Record<string, unknown>);
}
export { OpenDialogData };
import { SubmitActionData } from '../core.js';
/**
* Convenience class for creating the data payload to open a dialog
* from an Action.Submit.
*
* Abstracts away the `msteams: { type: 'task/fetch' }` protocol detail
* and sets a reserved `dialog_id` field for handler routing.
*
* @example
* ```ts
* new SubmitAction().withData(new OpenDialogData('simple_form'))
* ```
*/
declare class OpenDialogData extends SubmitActionData {
constructor(dialogId: string, extraData?: Record<string, unknown>);
}
export { OpenDialogData };
'use strict';
var core = require('../core');
const RESERVED_KEYWORD = "dialog_id";
class OpenDialogData extends core.SubmitActionData {
constructor(dialogId, extraData) {
super({ msteams: new core.TaskFetchSubmitActionData() });
if (extraData) {
Object.assign(this, extraData);
}
this[RESERVED_KEYWORD] = dialogId;
}
}
exports.OpenDialogData = OpenDialogData;
//# sourceMappingURL=open-dialog-data.js.map
//# sourceMappingURL=open-dialog-data.js.map
{"version":3,"sources":["../../src/utilities/open-dialog-data.ts"],"names":["SubmitActionData","TaskFetchSubmitActionData"],"mappings":";;;;AAEA,MAAM,gBAAA,GAAmB,WAAA;AAclB,MAAM,uBAAuBA,qBAAA,CAAiB;AAAA,EACnD,WAAA,CAAY,UAAkB,SAAA,EAAqC;AACjE,IAAA,KAAA,CAAM,EAAE,OAAA,EAAS,IAAIC,8BAAA,IAA6B,CAAA;AAClD,IAAA,IAAI,SAAA,EAAW;AACb,MAAA,MAAA,CAAO,MAAA,CAAO,MAAM,SAAS,CAAA;AAAA,IAC/B;AACA,IAAA,IAAA,CAAK,gBAAgB,CAAA,GAAI,QAAA;AAAA,EAC3B;AACF","file":"open-dialog-data.js","sourcesContent":["import { SubmitActionData, TaskFetchSubmitActionData } from '../core';\n\nconst RESERVED_KEYWORD = 'dialog_id';\n\n/**\n * Convenience class for creating the data payload to open a dialog\n * from an Action.Submit.\n *\n * Abstracts away the `msteams: { type: 'task/fetch' }` protocol detail\n * and sets a reserved `dialog_id` field for handler routing.\n *\n * @example\n * ```ts\n * new SubmitAction().withData(new OpenDialogData('simple_form'))\n * ```\n */\nexport class OpenDialogData extends SubmitActionData {\n constructor(dialogId: string, extraData?: Record<string, unknown>) {\n super({ msteams: new TaskFetchSubmitActionData() });\n if (extraData) {\n Object.assign(this, extraData);\n }\n this[RESERVED_KEYWORD] = dialogId;\n }\n}\n"]}
import { SubmitActionData, TaskFetchSubmitActionData } from '../core';
const RESERVED_KEYWORD = "dialog_id";
class OpenDialogData extends SubmitActionData {
constructor(dialogId, extraData) {
super({ msteams: new TaskFetchSubmitActionData() });
if (extraData) {
Object.assign(this, extraData);
}
this[RESERVED_KEYWORD] = dialogId;
}
}
export { OpenDialogData };
//# sourceMappingURL=open-dialog-data.mjs.map
//# sourceMappingURL=open-dialog-data.mjs.map
{"version":3,"sources":["../../src/utilities/open-dialog-data.ts"],"names":[],"mappings":";;AAEA,MAAM,gBAAA,GAAmB,WAAA;AAclB,MAAM,uBAAuB,gBAAA,CAAiB;AAAA,EACnD,WAAA,CAAY,UAAkB,SAAA,EAAqC;AACjE,IAAA,KAAA,CAAM,EAAE,OAAA,EAAS,IAAI,yBAAA,IAA6B,CAAA;AAClD,IAAA,IAAI,SAAA,EAAW;AACb,MAAA,MAAA,CAAO,MAAA,CAAO,MAAM,SAAS,CAAA;AAAA,IAC/B;AACA,IAAA,IAAA,CAAK,gBAAgB,CAAA,GAAI,QAAA;AAAA,EAC3B;AACF","file":"open-dialog-data.mjs","sourcesContent":["import { SubmitActionData, TaskFetchSubmitActionData } from '../core';\n\nconst RESERVED_KEYWORD = 'dialog_id';\n\n/**\n * Convenience class for creating the data payload to open a dialog\n * from an Action.Submit.\n *\n * Abstracts away the `msteams: { type: 'task/fetch' }` protocol detail\n * and sets a reserved `dialog_id` field for handler routing.\n *\n * @example\n * ```ts\n * new SubmitAction().withData(new OpenDialogData('simple_form'))\n * ```\n */\nexport class OpenDialogData extends SubmitActionData {\n constructor(dialogId: string, extraData?: Record<string, unknown>) {\n super({ msteams: new TaskFetchSubmitActionData() });\n if (extraData) {\n Object.assign(this, extraData);\n }\n this[RESERVED_KEYWORD] = dialogId;\n }\n}\n"]}
import { SubmitActionData } from '../core.mjs';
/**
* Utility class for creating submit data with action-based routing.
*
* Extends the generated `SubmitActionData` with a convenience constructor
* that accepts an `action` identifier for handler routing.
*
* @example
* ```ts
* new SubmitAction().withData(new SubmitData('save_profile', { entity_id: '12345' }))
* ```
*/
declare class SubmitData extends SubmitActionData {
constructor(action: string, extraData?: Record<string, unknown>);
}
export { SubmitData };
import { SubmitActionData } from '../core.js';
/**
* Utility class for creating submit data with action-based routing.
*
* Extends the generated `SubmitActionData` with a convenience constructor
* that accepts an `action` identifier for handler routing.
*
* @example
* ```ts
* new SubmitAction().withData(new SubmitData('save_profile', { entity_id: '12345' }))
* ```
*/
declare class SubmitData extends SubmitActionData {
constructor(action: string, extraData?: Record<string, unknown>);
}
export { SubmitData };
'use strict';
var core = require('../core');
const RESERVED_KEYWORD = "action";
class SubmitData extends core.SubmitActionData {
constructor(action, extraData) {
super();
if (extraData) {
Object.assign(this, extraData);
}
this[RESERVED_KEYWORD] = action;
}
}
exports.SubmitData = SubmitData;
//# sourceMappingURL=submit-data.js.map
//# sourceMappingURL=submit-data.js.map
{"version":3,"sources":["../../src/utilities/submit-data.ts"],"names":["SubmitActionData"],"mappings":";;;;AAEA,MAAM,gBAAA,GAAmB,QAAA;AAalB,MAAM,mBAAmBA,qBAAA,CAAiB;AAAA,EAC/C,WAAA,CAAY,QAAgB,SAAA,EAAqC;AAC/D,IAAA,KAAA,EAAM;AACN,IAAA,IAAI,SAAA,EAAW;AACb,MAAA,MAAA,CAAO,MAAA,CAAO,MAAM,SAAS,CAAA;AAAA,IAC/B;AACA,IAAA,IAAA,CAAK,gBAAgB,CAAA,GAAI,MAAA;AAAA,EAC3B;AACF","file":"submit-data.js","sourcesContent":["import { SubmitActionData } from '../core';\n\nconst RESERVED_KEYWORD = 'action';\n\n/**\n * Utility class for creating submit data with action-based routing.\n *\n * Extends the generated `SubmitActionData` with a convenience constructor\n * that accepts an `action` identifier for handler routing.\n *\n * @example\n * ```ts\n * new SubmitAction().withData(new SubmitData('save_profile', { entity_id: '12345' }))\n * ```\n */\nexport class SubmitData extends SubmitActionData {\n constructor(action: string, extraData?: Record<string, unknown>) {\n super();\n if (extraData) {\n Object.assign(this, extraData);\n }\n this[RESERVED_KEYWORD] = action;\n }\n}\n"]}
import { SubmitActionData } from '../core';
const RESERVED_KEYWORD = "action";
class SubmitData extends SubmitActionData {
constructor(action, extraData) {
super();
if (extraData) {
Object.assign(this, extraData);
}
this[RESERVED_KEYWORD] = action;
}
}
export { SubmitData };
//# sourceMappingURL=submit-data.mjs.map
//# sourceMappingURL=submit-data.mjs.map
{"version":3,"sources":["../../src/utilities/submit-data.ts"],"names":[],"mappings":";;AAEA,MAAM,gBAAA,GAAmB,QAAA;AAalB,MAAM,mBAAmB,gBAAA,CAAiB;AAAA,EAC/C,WAAA,CAAY,QAAgB,SAAA,EAAqC;AAC/D,IAAA,KAAA,EAAM;AACN,IAAA,IAAI,SAAA,EAAW;AACb,MAAA,MAAA,CAAO,MAAA,CAAO,MAAM,SAAS,CAAA;AAAA,IAC/B;AACA,IAAA,IAAA,CAAK,gBAAgB,CAAA,GAAI,MAAA;AAAA,EAC3B;AACF","file":"submit-data.mjs","sourcesContent":["import { SubmitActionData } from '../core';\n\nconst RESERVED_KEYWORD = 'action';\n\n/**\n * Utility class for creating submit data with action-based routing.\n *\n * Extends the generated `SubmitActionData` with a convenience constructor\n * that accepts an `action` identifier for handler routing.\n *\n * @example\n * ```ts\n * new SubmitAction().withData(new SubmitData('save_profile', { entity_id: '12345' }))\n * ```\n */\nexport class SubmitData extends SubmitActionData {\n constructor(action: string, extraData?: Record<string, unknown>) {\n super();\n if (extraData) {\n Object.assign(this, extraData);\n }\n this[RESERVED_KEYWORD] = action;\n }\n}\n"]}
+1
-2

@@ -6,5 +6,4 @@ export { IIMBackAction, IIMBackData, IMBackAction, IMBackActionOptions, IMBackData } from './submit/im-back.mjs';

export { ITaskFetchAction, ITaskFetchData, TaskFetchAction, TaskFetchActionOptions, TaskFetchData, TaskFetchDataValues } from './submit/task-fetch.mjs';
export { CollabStageAction, CollabStageActionOptions, CollabStageData, CollabStageValueData, ICollabStageAction, ICollabStageData, ICollabStageValueData } from './submit/collab-stage.mjs';
export { CollabStageAction, CollabStageActionOptions, ICollabStageAction } from './submit/collab-stage.mjs';
import '../core.mjs';
import './submit/ms-teams-data.mjs';
import '../common/tab-info.mjs';

@@ -6,5 +6,4 @@ export { IIMBackAction, IIMBackData, IMBackAction, IMBackActionOptions, IMBackData } from './submit/im-back.js';

export { ITaskFetchAction, ITaskFetchData, TaskFetchAction, TaskFetchActionOptions, TaskFetchData, TaskFetchDataValues } from './submit/task-fetch.js';
export { CollabStageAction, CollabStageActionOptions, CollabStageData, CollabStageValueData, ICollabStageAction, ICollabStageData, ICollabStageValueData } from './submit/collab-stage.js';
export { CollabStageAction, CollabStageActionOptions, ICollabStageAction } from './submit/collab-stage.js';
import '../core.js';
import './submit/ms-teams-data.js';
import '../common/tab-info.js';

@@ -1,7 +0,5 @@

import { ITabInfo } from '../../common/tab-info.mjs';
import { SubmitAction, ISubmitAction, SubmitActionOptions } from '../../core.mjs';
import { MSTeamsData } from './ms-teams-data.mjs';
import { SubmitAction, ISubmitAction, ISubmitActionData, ITabInfo, SubmitActionOptions, IInvokeSubmitActionData } from '../../core.mjs';
type CollabStageActionOptions = SubmitActionOptions & {
data: MSTeamsData<ICollabStageData>;
data: ISubmitActionData;
};

@@ -13,5 +11,5 @@ /**

/**
* Initial data that input fields will be combined with. These are essentially ‘hidden’ properties.
* Initial data that input fields will be combined with. These are essentially 'hidden' properties.
*/
data: MSTeamsData<ICollabStageData>;
data: ISubmitActionData;
}

@@ -23,53 +21,11 @@ /**

/**
* Initial data that input fields will be combined with. These are essentially ‘hidden’ properties.
* Initial data that input fields will be combined with. These are essentially 'hidden' properties.
*/
data: MSTeamsData<ICollabStageData>;
data: ISubmitActionData;
constructor(tab?: ITabInfo, options?: SubmitActionOptions);
static from(options: CollabStageActionOptions): CollabStageAction;
withData(value: ICollabStageData): this;
withData(value: IInvokeSubmitActionData): this;
withValue(value: ITabInfo): this;
}
/**
* Contains the Adaptive Card action data in {@link CollabStageAction}.
*/
interface ICollabStageData {
type: 'invoke';
/**
* Set the value to send with the invoke
*/
value?: ICollabStageValueData;
}
/**
* Contains the Adaptive Card action data in {@link CollabStageAction}.
*/
declare class CollabStageData implements ICollabStageData {
type: 'invoke';
/**
* Set the value to send with the invoke
*/
value?: ICollabStageValueData;
constructor(value?: ICollabStageValueData);
}
/**
* Contains the Adaptive Card action value data in {@link CollabStageActionData}.
*/
interface ICollabStageValueData {
type: 'tab/tabInfoAction';
/**
* Information about the iFrame content, rendered in the collab stage popout window.
*/
tabInfo: ITabInfo;
}
/**
* Contains the Adaptive Card action value data in {@link CollabStageActionData}.
*/
declare class CollabStageValueData implements ICollabStageValueData {
type: 'tab/tabInfoAction';
/**
* Information about the iFrame content, rendered in the collab stage popout window.
*/
tabInfo: ITabInfo;
constructor(tab: ITabInfo);
}
export { CollabStageAction, type CollabStageActionOptions, CollabStageData, CollabStageValueData, type ICollabStageAction, type ICollabStageData, type ICollabStageValueData };
export { CollabStageAction, type CollabStageActionOptions, type ICollabStageAction };

@@ -1,7 +0,5 @@

import { ITabInfo } from '../../common/tab-info.js';
import { SubmitAction, ISubmitAction, SubmitActionOptions } from '../../core.js';
import { MSTeamsData } from './ms-teams-data.js';
import { SubmitAction, ISubmitAction, ISubmitActionData, ITabInfo, SubmitActionOptions, IInvokeSubmitActionData } from '../../core.js';
type CollabStageActionOptions = SubmitActionOptions & {
data: MSTeamsData<ICollabStageData>;
data: ISubmitActionData;
};

@@ -13,5 +11,5 @@ /**

/**
* Initial data that input fields will be combined with. These are essentially ‘hidden’ properties.
* Initial data that input fields will be combined with. These are essentially 'hidden' properties.
*/
data: MSTeamsData<ICollabStageData>;
data: ISubmitActionData;
}

@@ -23,53 +21,11 @@ /**

/**
* Initial data that input fields will be combined with. These are essentially ‘hidden’ properties.
* Initial data that input fields will be combined with. These are essentially 'hidden' properties.
*/
data: MSTeamsData<ICollabStageData>;
data: ISubmitActionData;
constructor(tab?: ITabInfo, options?: SubmitActionOptions);
static from(options: CollabStageActionOptions): CollabStageAction;
withData(value: ICollabStageData): this;
withData(value: IInvokeSubmitActionData): this;
withValue(value: ITabInfo): this;
}
/**
* Contains the Adaptive Card action data in {@link CollabStageAction}.
*/
interface ICollabStageData {
type: 'invoke';
/**
* Set the value to send with the invoke
*/
value?: ICollabStageValueData;
}
/**
* Contains the Adaptive Card action data in {@link CollabStageAction}.
*/
declare class CollabStageData implements ICollabStageData {
type: 'invoke';
/**
* Set the value to send with the invoke
*/
value?: ICollabStageValueData;
constructor(value?: ICollabStageValueData);
}
/**
* Contains the Adaptive Card action value data in {@link CollabStageActionData}.
*/
interface ICollabStageValueData {
type: 'tab/tabInfoAction';
/**
* Information about the iFrame content, rendered in the collab stage popout window.
*/
tabInfo: ITabInfo;
}
/**
* Contains the Adaptive Card action value data in {@link CollabStageActionData}.
*/
declare class CollabStageValueData implements ICollabStageValueData {
type: 'tab/tabInfoAction';
/**
* Information about the iFrame content, rendered in the collab stage popout window.
*/
tabInfo: ITabInfo;
constructor(tab: ITabInfo);
}
export { CollabStageAction, type CollabStageActionOptions, CollabStageData, CollabStageValueData, type ICollabStageAction, type ICollabStageData, type ICollabStageValueData };
export { CollabStageAction, type CollabStageActionOptions, type ICollabStageAction };

@@ -7,3 +7,3 @@ 'use strict';

/**
* Initial data that input fields will be combined with. These are essentially ‘hidden’ properties.
* Initial data that input fields will be combined with. These are essentially 'hidden' properties.
*/

@@ -14,51 +14,28 @@ data;

Object.assign(this, options);
this.data = {
msteams: {
type: "invoke",
value: tab ? {
type: "tab/tabInfoAction",
tabInfo: tab
} : void 0
}
};
this.data = new core.SubmitActionData({
msteams: new core.InvokeSubmitActionData(
tab ? new core.CollabStageInvokeDataValue({ tabInfo: tab }) : void 0
)
});
}
static from(options) {
return new CollabStageAction(options.data.msteams.value?.tabInfo, options);
const msteams = options.data.msteams;
const value = msteams?.value;
return new CollabStageAction(value?.tabInfo, options);
}
withData(value) {
super.withData({ msteams: value });
super.withData(new core.SubmitActionData({ msteams: value }));
return this;
}
withValue(value) {
this.data.msteams.value = new CollabStageValueData(value);
const msteams = this.data.msteams;
if (msteams) {
msteams.value = new core.CollabStageInvokeDataValue({ tabInfo: value });
}
return this;
}
}
class CollabStageData {
type;
/**
* Set the value to send with the invoke
*/
value;
constructor(value) {
this.type = "invoke";
this.value = value;
}
}
class CollabStageValueData {
type;
/**
* Information about the iFrame content, rendered in the collab stage popout window.
*/
tabInfo;
constructor(tab) {
this.type = "tab/tabInfoAction";
this.tabInfo = tab;
}
}
exports.CollabStageAction = CollabStageAction;
exports.CollabStageData = CollabStageData;
exports.CollabStageValueData = CollabStageValueData;
//# sourceMappingURL=collab-stage.js.map
//# sourceMappingURL=collab-stage.js.map

@@ -1,1 +0,1 @@

{"version":3,"sources":["../../../src/actions/submit/collab-stage.ts"],"names":["SubmitAction"],"mappings":";;;;AAuBO,MAAM,0BAA0BA,iBAAA,CAA2C;AAAA;AAAA;AAAA;AAAA,EAIhF,IAAA;AAAA,EAEA,WAAA,CAAY,GAAA,EAAgB,OAAA,GAA+B,EAAC,EAAG;AAC7D,IAAA,KAAA,CAAM,OAAO,CAAA;AACb,IAAA,MAAA,CAAO,MAAA,CAAO,MAAM,OAAO,CAAA;AAC3B,IAAA,IAAA,CAAK,IAAA,GAAO;AAAA,MACV,OAAA,EAAS;AAAA,QACP,IAAA,EAAM,QAAA;AAAA,QACN,OAAO,GAAA,GACH;AAAA,UACE,IAAA,EAAM,mBAAA;AAAA,UACN,OAAA,EAAS;AAAA,SACX,GACA;AAAA;AACN,KACF;AAAA,EACF;AAAA,EAEA,OAAO,KAAK,OAAA,EAAmC;AAC7C,IAAA,OAAO,IAAI,iBAAA,CAAkB,OAAA,CAAQ,KAAK,OAAA,CAAQ,KAAA,EAAO,SAAS,OAAO,CAAA;AAAA,EAC3E;AAAA,EAEA,SAAS,KAAA,EAAyB;AAChC,IAAA,KAAA,CAAM,QAAA,CAAS,EAAE,OAAA,EAAS,KAAA,EAAO,CAAA;AACjC,IAAA,OAAO,IAAA;AAAA,EACT;AAAA,EAEA,UAAU,KAAA,EAAiB;AACzB,IAAA,IAAA,CAAK,IAAA,CAAK,OAAA,CAAQ,KAAA,GAAQ,IAAI,qBAAqB,KAAK,CAAA;AACxD,IAAA,OAAO,IAAA;AAAA,EACT;AACF;AAiBO,MAAM,eAAA,CAA4C;AAAA,EACvD,IAAA;AAAA;AAAA;AAAA;AAAA,EAKA,KAAA;AAAA,EAEA,YAAY,KAAA,EAA+B;AACzC,IAAA,IAAA,CAAK,IAAA,GAAO,QAAA;AACZ,IAAA,IAAA,CAAK,KAAA,GAAQ,KAAA;AAAA,EACf;AACF;AAiBO,MAAM,oBAAA,CAAsD;AAAA,EACjE,IAAA;AAAA;AAAA;AAAA;AAAA,EAKA,OAAA;AAAA,EAEA,YAAY,GAAA,EAAe;AACzB,IAAA,IAAA,CAAK,IAAA,GAAO,mBAAA;AACZ,IAAA,IAAA,CAAK,OAAA,GAAU,GAAA;AAAA,EACjB;AACF","file":"collab-stage.js","sourcesContent":["import { ITabInfo } from '../../common';\n\nimport { ISubmitAction, SubmitAction, SubmitActionOptions } from '../../core';\n\nimport { MSTeamsData } from './ms-teams-data';\n\nexport type CollabStageActionOptions = SubmitActionOptions & {\n data: MSTeamsData<ICollabStageData>;\n};\n\n/**\n * Adaptive Card action response type for the {@link CollabStageAction} function.\n */\nexport interface ICollabStageAction extends ISubmitAction {\n /**\n * Initial data that input fields will be combined with. These are essentially ‘hidden’ properties.\n */\n data: MSTeamsData<ICollabStageData>;\n}\n\n/**\n * Adaptive Card action that opens a collab stage popout window.\n */\nexport class CollabStageAction extends SubmitAction implements ICollabStageAction {\n /**\n * Initial data that input fields will be combined with. These are essentially ‘hidden’ properties.\n */\n data: MSTeamsData<ICollabStageData>;\n\n constructor(tab?: ITabInfo, options: SubmitActionOptions = {}) {\n super(options);\n Object.assign(this, options);\n this.data = {\n msteams: {\n type: 'invoke',\n value: tab\n ? {\n type: 'tab/tabInfoAction',\n tabInfo: tab,\n }\n : undefined,\n },\n };\n }\n\n static from(options: CollabStageActionOptions) {\n return new CollabStageAction(options.data.msteams.value?.tabInfo, options);\n }\n\n withData(value: ICollabStageData) {\n super.withData({ msteams: value });\n return this;\n }\n\n withValue(value: ITabInfo) {\n this.data.msteams.value = new CollabStageValueData(value);\n return this;\n }\n}\n\n/**\n * Contains the Adaptive Card action data in {@link CollabStageAction}.\n */\nexport interface ICollabStageData {\n type: 'invoke';\n\n /**\n * Set the value to send with the invoke\n */\n value?: ICollabStageValueData;\n}\n\n/**\n * Contains the Adaptive Card action data in {@link CollabStageAction}.\n */\nexport class CollabStageData implements ICollabStageData {\n type: 'invoke';\n\n /**\n * Set the value to send with the invoke\n */\n value?: ICollabStageValueData;\n\n constructor(value?: ICollabStageValueData) {\n this.type = 'invoke';\n this.value = value;\n }\n}\n\n/**\n * Contains the Adaptive Card action value data in {@link CollabStageActionData}.\n */\nexport interface ICollabStageValueData {\n type: 'tab/tabInfoAction';\n\n /**\n * Information about the iFrame content, rendered in the collab stage popout window.\n */\n tabInfo: ITabInfo;\n}\n\n/**\n * Contains the Adaptive Card action value data in {@link CollabStageActionData}.\n */\nexport class CollabStageValueData implements ICollabStageValueData {\n type: 'tab/tabInfoAction';\n\n /**\n * Information about the iFrame content, rendered in the collab stage popout window.\n */\n tabInfo: ITabInfo;\n\n constructor(tab: ITabInfo) {\n this.type = 'tab/tabInfoAction';\n this.tabInfo = tab;\n }\n}\n"]}
{"version":3,"sources":["../../../src/actions/submit/collab-stage.ts"],"names":["SubmitAction","SubmitActionData","InvokeSubmitActionData","CollabStageInvokeDataValue"],"mappings":";;;;AA8BO,MAAM,0BAA0BA,iBAAA,CAA2C;AAAA;AAAA;AAAA;AAAA,EAIhF,IAAA;AAAA,EAEA,WAAA,CAAY,GAAA,EAAgB,OAAA,GAA+B,EAAC,EAAG;AAC7D,IAAA,KAAA,CAAM,OAAO,CAAA;AACb,IAAA,MAAA,CAAO,MAAA,CAAO,MAAM,OAAO,CAAA;AAC3B,IAAA,IAAA,CAAK,IAAA,GAAO,IAAIC,qBAAA,CAAiB;AAAA,MAC/B,SAAS,IAAIC,2BAAA;AAAA,QACX,MACI,IAAIC,+BAAA,CAA2B,EAAE,OAAA,EAAS,GAAA,EAAK,CAAA,GAC/C;AAAA;AACN,KACD,CAAA;AAAA,EACH;AAAA,EAEA,OAAO,KAAK,OAAA,EAAmC;AAC7C,IAAA,MAAM,OAAA,GAAU,QAAQ,IAAA,CAAK,OAAA;AAC7B,IAAA,MAAM,QAAQ,OAAA,EAAS,KAAA;AACvB,IAAA,OAAO,IAAI,iBAAA,CAAkB,KAAA,EAAO,OAAA,EAAS,OAAO,CAAA;AAAA,EACtD;AAAA,EAEA,SAAS,KAAA,EAAgC;AACvC,IAAA,KAAA,CAAM,SAAS,IAAIF,qBAAA,CAAiB,EAAE,OAAA,EAAS,KAAA,EAAO,CAAC,CAAA;AACvD,IAAA,OAAO,IAAA;AAAA,EACT;AAAA,EAEA,UAAU,KAAA,EAAiB;AACzB,IAAA,MAAM,OAAA,GAAU,KAAK,IAAA,CAAK,OAAA;AAC1B,IAAA,IAAI,OAAA,EAAS;AACX,MAAA,OAAA,CAAQ,QAAQ,IAAIE,+BAAA,CAA2B,EAAE,OAAA,EAAS,OAAO,CAAA;AAAA,IACnE;AACA,IAAA,OAAO,IAAA;AAAA,EACT;AACF","file":"collab-stage.js","sourcesContent":["import {\n CollabStageInvokeDataValue,\n ICollabStageInvokeDataValue,\n IInvokeSubmitActionData,\n InvokeSubmitActionData,\n ISubmitAction,\n ISubmitActionData,\n ITabInfo,\n SubmitAction,\n SubmitActionData,\n SubmitActionOptions,\n} from '../../core';\n\nexport type CollabStageActionOptions = SubmitActionOptions & {\n data: ISubmitActionData;\n};\n\n/**\n * Adaptive Card action response type for the {@link CollabStageAction} function.\n */\nexport interface ICollabStageAction extends ISubmitAction {\n /**\n * Initial data that input fields will be combined with. These are essentially 'hidden' properties.\n */\n data: ISubmitActionData;\n}\n\n/**\n * Adaptive Card action that opens a collab stage popout window.\n */\nexport class CollabStageAction extends SubmitAction implements ICollabStageAction {\n /**\n * Initial data that input fields will be combined with. These are essentially 'hidden' properties.\n */\n data: ISubmitActionData;\n\n constructor(tab?: ITabInfo, options: SubmitActionOptions = {}) {\n super(options);\n Object.assign(this, options);\n this.data = new SubmitActionData({\n msteams: new InvokeSubmitActionData(\n tab\n ? new CollabStageInvokeDataValue({ tabInfo: tab })\n : undefined,\n ),\n });\n }\n\n static from(options: CollabStageActionOptions) {\n const msteams = options.data.msteams as IInvokeSubmitActionData | undefined;\n const value = msteams?.value as ICollabStageInvokeDataValue | undefined;\n return new CollabStageAction(value?.tabInfo, options);\n }\n\n withData(value: IInvokeSubmitActionData) {\n super.withData(new SubmitActionData({ msteams: value }));\n return this;\n }\n\n withValue(value: ITabInfo) {\n const msteams = this.data.msteams as IInvokeSubmitActionData | undefined;\n if (msteams) {\n msteams.value = new CollabStageInvokeDataValue({ tabInfo: value });\n }\n return this;\n }\n}\n"]}

@@ -1,6 +0,6 @@

import { SubmitAction } from '../../core';
import { SubmitAction, SubmitActionData, InvokeSubmitActionData, CollabStageInvokeDataValue } from '../../core';
class CollabStageAction extends SubmitAction {
/**
* Initial data that input fields will be combined with. These are essentially ‘hidden’ properties.
* Initial data that input fields will be combined with. These are essentially 'hidden' properties.
*/

@@ -11,49 +11,28 @@ data;

Object.assign(this, options);
this.data = {
msteams: {
type: "invoke",
value: tab ? {
type: "tab/tabInfoAction",
tabInfo: tab
} : void 0
}
};
this.data = new SubmitActionData({
msteams: new InvokeSubmitActionData(
tab ? new CollabStageInvokeDataValue({ tabInfo: tab }) : void 0
)
});
}
static from(options) {
return new CollabStageAction(options.data.msteams.value?.tabInfo, options);
const msteams = options.data.msteams;
const value = msteams?.value;
return new CollabStageAction(value?.tabInfo, options);
}
withData(value) {
super.withData({ msteams: value });
super.withData(new SubmitActionData({ msteams: value }));
return this;
}
withValue(value) {
this.data.msteams.value = new CollabStageValueData(value);
const msteams = this.data.msteams;
if (msteams) {
msteams.value = new CollabStageInvokeDataValue({ tabInfo: value });
}
return this;
}
}
class CollabStageData {
type;
/**
* Set the value to send with the invoke
*/
value;
constructor(value) {
this.type = "invoke";
this.value = value;
}
}
class CollabStageValueData {
type;
/**
* Information about the iFrame content, rendered in the collab stage popout window.
*/
tabInfo;
constructor(tab) {
this.type = "tab/tabInfoAction";
this.tabInfo = tab;
}
}
export { CollabStageAction, CollabStageData, CollabStageValueData };
export { CollabStageAction };
//# sourceMappingURL=collab-stage.mjs.map
//# sourceMappingURL=collab-stage.mjs.map

@@ -1,1 +0,1 @@

{"version":3,"sources":["../../../src/actions/submit/collab-stage.ts"],"names":[],"mappings":";;AAuBO,MAAM,0BAA0B,YAAA,CAA2C;AAAA;AAAA;AAAA;AAAA,EAIhF,IAAA;AAAA,EAEA,WAAA,CAAY,GAAA,EAAgB,OAAA,GAA+B,EAAC,EAAG;AAC7D,IAAA,KAAA,CAAM,OAAO,CAAA;AACb,IAAA,MAAA,CAAO,MAAA,CAAO,MAAM,OAAO,CAAA;AAC3B,IAAA,IAAA,CAAK,IAAA,GAAO;AAAA,MACV,OAAA,EAAS;AAAA,QACP,IAAA,EAAM,QAAA;AAAA,QACN,OAAO,GAAA,GACH;AAAA,UACE,IAAA,EAAM,mBAAA;AAAA,UACN,OAAA,EAAS;AAAA,SACX,GACA;AAAA;AACN,KACF;AAAA,EACF;AAAA,EAEA,OAAO,KAAK,OAAA,EAAmC;AAC7C,IAAA,OAAO,IAAI,iBAAA,CAAkB,OAAA,CAAQ,KAAK,OAAA,CAAQ,KAAA,EAAO,SAAS,OAAO,CAAA;AAAA,EAC3E;AAAA,EAEA,SAAS,KAAA,EAAyB;AAChC,IAAA,KAAA,CAAM,QAAA,CAAS,EAAE,OAAA,EAAS,KAAA,EAAO,CAAA;AACjC,IAAA,OAAO,IAAA;AAAA,EACT;AAAA,EAEA,UAAU,KAAA,EAAiB;AACzB,IAAA,IAAA,CAAK,IAAA,CAAK,OAAA,CAAQ,KAAA,GAAQ,IAAI,qBAAqB,KAAK,CAAA;AACxD,IAAA,OAAO,IAAA;AAAA,EACT;AACF;AAiBO,MAAM,eAAA,CAA4C;AAAA,EACvD,IAAA;AAAA;AAAA;AAAA;AAAA,EAKA,KAAA;AAAA,EAEA,YAAY,KAAA,EAA+B;AACzC,IAAA,IAAA,CAAK,IAAA,GAAO,QAAA;AACZ,IAAA,IAAA,CAAK,KAAA,GAAQ,KAAA;AAAA,EACf;AACF;AAiBO,MAAM,oBAAA,CAAsD;AAAA,EACjE,IAAA;AAAA;AAAA;AAAA;AAAA,EAKA,OAAA;AAAA,EAEA,YAAY,GAAA,EAAe;AACzB,IAAA,IAAA,CAAK,IAAA,GAAO,mBAAA;AACZ,IAAA,IAAA,CAAK,OAAA,GAAU,GAAA;AAAA,EACjB;AACF","file":"collab-stage.mjs","sourcesContent":["import { ITabInfo } from '../../common';\n\nimport { ISubmitAction, SubmitAction, SubmitActionOptions } from '../../core';\n\nimport { MSTeamsData } from './ms-teams-data';\n\nexport type CollabStageActionOptions = SubmitActionOptions & {\n data: MSTeamsData<ICollabStageData>;\n};\n\n/**\n * Adaptive Card action response type for the {@link CollabStageAction} function.\n */\nexport interface ICollabStageAction extends ISubmitAction {\n /**\n * Initial data that input fields will be combined with. These are essentially ‘hidden’ properties.\n */\n data: MSTeamsData<ICollabStageData>;\n}\n\n/**\n * Adaptive Card action that opens a collab stage popout window.\n */\nexport class CollabStageAction extends SubmitAction implements ICollabStageAction {\n /**\n * Initial data that input fields will be combined with. These are essentially ‘hidden’ properties.\n */\n data: MSTeamsData<ICollabStageData>;\n\n constructor(tab?: ITabInfo, options: SubmitActionOptions = {}) {\n super(options);\n Object.assign(this, options);\n this.data = {\n msteams: {\n type: 'invoke',\n value: tab\n ? {\n type: 'tab/tabInfoAction',\n tabInfo: tab,\n }\n : undefined,\n },\n };\n }\n\n static from(options: CollabStageActionOptions) {\n return new CollabStageAction(options.data.msteams.value?.tabInfo, options);\n }\n\n withData(value: ICollabStageData) {\n super.withData({ msteams: value });\n return this;\n }\n\n withValue(value: ITabInfo) {\n this.data.msteams.value = new CollabStageValueData(value);\n return this;\n }\n}\n\n/**\n * Contains the Adaptive Card action data in {@link CollabStageAction}.\n */\nexport interface ICollabStageData {\n type: 'invoke';\n\n /**\n * Set the value to send with the invoke\n */\n value?: ICollabStageValueData;\n}\n\n/**\n * Contains the Adaptive Card action data in {@link CollabStageAction}.\n */\nexport class CollabStageData implements ICollabStageData {\n type: 'invoke';\n\n /**\n * Set the value to send with the invoke\n */\n value?: ICollabStageValueData;\n\n constructor(value?: ICollabStageValueData) {\n this.type = 'invoke';\n this.value = value;\n }\n}\n\n/**\n * Contains the Adaptive Card action value data in {@link CollabStageActionData}.\n */\nexport interface ICollabStageValueData {\n type: 'tab/tabInfoAction';\n\n /**\n * Information about the iFrame content, rendered in the collab stage popout window.\n */\n tabInfo: ITabInfo;\n}\n\n/**\n * Contains the Adaptive Card action value data in {@link CollabStageActionData}.\n */\nexport class CollabStageValueData implements ICollabStageValueData {\n type: 'tab/tabInfoAction';\n\n /**\n * Information about the iFrame content, rendered in the collab stage popout window.\n */\n tabInfo: ITabInfo;\n\n constructor(tab: ITabInfo) {\n this.type = 'tab/tabInfoAction';\n this.tabInfo = tab;\n }\n}\n"]}
{"version":3,"sources":["../../../src/actions/submit/collab-stage.ts"],"names":[],"mappings":";;AA8BO,MAAM,0BAA0B,YAAA,CAA2C;AAAA;AAAA;AAAA;AAAA,EAIhF,IAAA;AAAA,EAEA,WAAA,CAAY,GAAA,EAAgB,OAAA,GAA+B,EAAC,EAAG;AAC7D,IAAA,KAAA,CAAM,OAAO,CAAA;AACb,IAAA,MAAA,CAAO,MAAA,CAAO,MAAM,OAAO,CAAA;AAC3B,IAAA,IAAA,CAAK,IAAA,GAAO,IAAI,gBAAA,CAAiB;AAAA,MAC/B,SAAS,IAAI,sBAAA;AAAA,QACX,MACI,IAAI,0BAAA,CAA2B,EAAE,OAAA,EAAS,GAAA,EAAK,CAAA,GAC/C;AAAA;AACN,KACD,CAAA;AAAA,EACH;AAAA,EAEA,OAAO,KAAK,OAAA,EAAmC;AAC7C,IAAA,MAAM,OAAA,GAAU,QAAQ,IAAA,CAAK,OAAA;AAC7B,IAAA,MAAM,QAAQ,OAAA,EAAS,KAAA;AACvB,IAAA,OAAO,IAAI,iBAAA,CAAkB,KAAA,EAAO,OAAA,EAAS,OAAO,CAAA;AAAA,EACtD;AAAA,EAEA,SAAS,KAAA,EAAgC;AACvC,IAAA,KAAA,CAAM,SAAS,IAAI,gBAAA,CAAiB,EAAE,OAAA,EAAS,KAAA,EAAO,CAAC,CAAA;AACvD,IAAA,OAAO,IAAA;AAAA,EACT;AAAA,EAEA,UAAU,KAAA,EAAiB;AACzB,IAAA,MAAM,OAAA,GAAU,KAAK,IAAA,CAAK,OAAA;AAC1B,IAAA,IAAI,OAAA,EAAS;AACX,MAAA,OAAA,CAAQ,QAAQ,IAAI,0BAAA,CAA2B,EAAE,OAAA,EAAS,OAAO,CAAA;AAAA,IACnE;AACA,IAAA,OAAO,IAAA;AAAA,EACT;AACF","file":"collab-stage.mjs","sourcesContent":["import {\n CollabStageInvokeDataValue,\n ICollabStageInvokeDataValue,\n IInvokeSubmitActionData,\n InvokeSubmitActionData,\n ISubmitAction,\n ISubmitActionData,\n ITabInfo,\n SubmitAction,\n SubmitActionData,\n SubmitActionOptions,\n} from '../../core';\n\nexport type CollabStageActionOptions = SubmitActionOptions & {\n data: ISubmitActionData;\n};\n\n/**\n * Adaptive Card action response type for the {@link CollabStageAction} function.\n */\nexport interface ICollabStageAction extends ISubmitAction {\n /**\n * Initial data that input fields will be combined with. These are essentially 'hidden' properties.\n */\n data: ISubmitActionData;\n}\n\n/**\n * Adaptive Card action that opens a collab stage popout window.\n */\nexport class CollabStageAction extends SubmitAction implements ICollabStageAction {\n /**\n * Initial data that input fields will be combined with. These are essentially 'hidden' properties.\n */\n data: ISubmitActionData;\n\n constructor(tab?: ITabInfo, options: SubmitActionOptions = {}) {\n super(options);\n Object.assign(this, options);\n this.data = new SubmitActionData({\n msteams: new InvokeSubmitActionData(\n tab\n ? new CollabStageInvokeDataValue({ tabInfo: tab })\n : undefined,\n ),\n });\n }\n\n static from(options: CollabStageActionOptions) {\n const msteams = options.data.msteams as IInvokeSubmitActionData | undefined;\n const value = msteams?.value as ICollabStageInvokeDataValue | undefined;\n return new CollabStageAction(value?.tabInfo, options);\n }\n\n withData(value: IInvokeSubmitActionData) {\n super.withData(new SubmitActionData({ msteams: value }));\n return this;\n }\n\n withValue(value: ITabInfo) {\n const msteams = this.data.msteams as IInvokeSubmitActionData | undefined;\n if (msteams) {\n msteams.value = new CollabStageInvokeDataValue({ tabInfo: value });\n }\n return this;\n }\n}\n"]}

@@ -7,2 +7,5 @@ import { ISubmitAction, SubmitAction, SubmitActionOptions } from '../../core.mjs';

};
/**
* @deprecated This type is deprecated. Please use {@link IImBackSubmitActionData} instead. This will be removed in a future version of the SDK.
*/
interface IIMBackAction extends ISubmitAction {

@@ -14,2 +17,5 @@ /**

}
/**
* @deprecated This class is deprecated. Please use {@link ImBackSubmitActionData} instead. This will be removed in a future version of the SDK.
*/
declare class IMBackAction extends SubmitAction implements IIMBackAction {

@@ -25,2 +31,5 @@ /**

}
/**
* @deprecated This type is deprecated. Please use {@link IImBackSubmitActionData} instead. This will be removed in a future version of the SDK.
*/
interface IIMBackData {

@@ -33,2 +42,5 @@ type: 'imBack';

}
/**
* @deprecated This class is deprecated. Please use {@link ImBackSubmitActionData} instead. This will be removed in a future version of the SDK.
*/
declare class IMBackData implements IIMBackData {

@@ -35,0 +47,0 @@ type: 'imBack';

@@ -7,2 +7,5 @@ import { ISubmitAction, SubmitAction, SubmitActionOptions } from '../../core.js';

};
/**
* @deprecated This type is deprecated. Please use {@link IImBackSubmitActionData} instead. This will be removed in a future version of the SDK.
*/
interface IIMBackAction extends ISubmitAction {

@@ -14,2 +17,5 @@ /**

}
/**
* @deprecated This class is deprecated. Please use {@link ImBackSubmitActionData} instead. This will be removed in a future version of the SDK.
*/
declare class IMBackAction extends SubmitAction implements IIMBackAction {

@@ -25,2 +31,5 @@ /**

}
/**
* @deprecated This type is deprecated. Please use {@link IImBackSubmitActionData} instead. This will be removed in a future version of the SDK.
*/
interface IIMBackData {

@@ -33,2 +42,5 @@ type: 'imBack';

}
/**
* @deprecated This class is deprecated. Please use {@link ImBackSubmitActionData} instead. This will be removed in a future version of the SDK.
*/
declare class IMBackData implements IIMBackData {

@@ -35,0 +47,0 @@ type: 'imBack';

@@ -1,1 +0,1 @@

{"version":3,"sources":["../../../src/actions/submit/im-back.ts"],"names":["SubmitAction"],"mappings":";;;;AAaO,MAAM,qBAAqBA,iBAAA,CAAsC;AAAA;AAAA;AAAA;AAAA,EAItE,IAAA;AAAA,EAEA,WAAA,CAAY,KAAA,EAAe,OAAA,GAA+B,EAAC,EAAG;AAC5D,IAAA,KAAA,CAAM,OAAO,CAAA;AACb,IAAA,MAAA,CAAO,MAAA,CAAO,MAAM,OAAO,CAAA;AAC3B,IAAA,IAAA,CAAK,OAAO,EAAE,OAAA,EAAS,IAAI,UAAA,CAAW,KAAK,CAAA,EAAE;AAAA,EAC/C;AAAA,EAEA,OAAO,KAAK,OAAA,EAA8B;AACxC,IAAA,OAAO,IAAI,YAAA,CAAa,OAAA,CAAQ,IAAA,CAAK,OAAA,CAAQ,OAAO,OAAO,CAAA;AAAA,EAC7D;AAAA,EAEA,SAAS,KAAA,EAAoB;AAC3B,IAAA,KAAA,CAAM,QAAA,CAAS,EAAE,OAAA,EAAS,KAAA,EAAO,CAAA;AACjC,IAAA,OAAO,IAAA;AAAA,EACT;AAAA,EAEA,UAAU,KAAA,EAAe;AACvB,IAAA,IAAA,CAAK,IAAA,CAAK,QAAQ,KAAA,GAAQ,KAAA;AAC1B,IAAA,OAAO,IAAA;AAAA,EACT;AACF;AAWO,MAAM,UAAA,CAAkC;AAAA,EAC7C,IAAA;AAAA;AAAA;AAAA;AAAA,EAKA,KAAA;AAAA,EAEA,YAAY,KAAA,EAAe;AACzB,IAAA,IAAA,CAAK,IAAA,GAAO,QAAA;AACZ,IAAA,IAAA,CAAK,KAAA,GAAQ,KAAA;AAAA,EACf;AACF","file":"im-back.js","sourcesContent":["import { ISubmitAction, SubmitAction, SubmitActionOptions } from '../../core';\n\nimport { MSTeamsData } from './ms-teams-data';\n\nexport type IMBackActionOptions = SubmitActionOptions & { data: MSTeamsData<IIMBackData> };\n\nexport interface IIMBackAction extends ISubmitAction {\n /**\n * Initial data that input fields will be combined with. These are essentially ‘hidden’ properties.\n */\n data: MSTeamsData<IIMBackData>;\n}\n\nexport class IMBackAction extends SubmitAction implements IIMBackAction {\n /**\n * Initial data that input fields will be combined with. These are essentially ‘hidden’ properties.\n */\n data: MSTeamsData<IIMBackData>;\n\n constructor(value: string, options: SubmitActionOptions = {}) {\n super(options);\n Object.assign(this, options);\n this.data = { msteams: new IMBackData(value) };\n }\n\n static from(options: IMBackActionOptions) {\n return new IMBackAction(options.data.msteams.value, options);\n }\n\n withData(value: IIMBackData) {\n super.withData({ msteams: value });\n return this;\n }\n\n withValue(value: string) {\n this.data.msteams.value = value;\n return this;\n }\n}\n\nexport interface IIMBackData {\n type: 'imBack';\n\n /**\n * String that needs to be echoed back in the chat.\n */\n value: string;\n}\n\nexport class IMBackData implements IIMBackData {\n type: 'imBack';\n\n /**\n * String that needs to be echoed back in the chat.\n */\n value: string;\n\n constructor(value: string) {\n this.type = 'imBack';\n this.value = value;\n }\n}\n"]}
{"version":3,"sources":["../../../src/actions/submit/im-back.ts"],"names":["SubmitAction"],"mappings":";;;;AAmBO,MAAM,qBAAqBA,iBAAA,CAAsC;AAAA;AAAA;AAAA;AAAA,EAItE,IAAA;AAAA,EAEA,WAAA,CAAY,KAAA,EAAe,OAAA,GAA+B,EAAC,EAAG;AAC5D,IAAA,KAAA,CAAM,OAAO,CAAA;AACb,IAAA,MAAA,CAAO,MAAA,CAAO,MAAM,OAAO,CAAA;AAC3B,IAAA,IAAA,CAAK,OAAO,EAAE,OAAA,EAAS,IAAI,UAAA,CAAW,KAAK,CAAA,EAAE;AAAA,EAC/C;AAAA,EAEA,OAAO,KAAK,OAAA,EAA8B;AACxC,IAAA,OAAO,IAAI,YAAA,CAAa,OAAA,CAAQ,IAAA,CAAK,OAAA,CAAQ,OAAO,OAAO,CAAA;AAAA,EAC7D;AAAA,EAEA,SAAS,KAAA,EAAoB;AAC3B,IAAA,KAAA,CAAM,QAAA,CAAS,EAAE,OAAA,EAAS,KAAA,EAAO,CAAA;AACjC,IAAA,OAAO,IAAA;AAAA,EACT;AAAA,EAEA,UAAU,KAAA,EAAe;AACvB,IAAA,IAAA,CAAK,IAAA,CAAK,QAAQ,KAAA,GAAQ,KAAA;AAC1B,IAAA,OAAO,IAAA;AAAA,EACT;AACF;AAiBO,MAAM,UAAA,CAAkC;AAAA,EAC7C,IAAA;AAAA;AAAA;AAAA;AAAA,EAKA,KAAA;AAAA,EAEA,YAAY,KAAA,EAAe;AACzB,IAAA,IAAA,CAAK,IAAA,GAAO,QAAA;AACZ,IAAA,IAAA,CAAK,KAAA,GAAQ,KAAA;AAAA,EACf;AACF","file":"im-back.js","sourcesContent":["import { ISubmitAction, SubmitAction, SubmitActionOptions } from '../../core';\n\nimport { MSTeamsData } from './ms-teams-data';\n\nexport type IMBackActionOptions = SubmitActionOptions & { data: MSTeamsData<IIMBackData> };\n\n/**\n * @deprecated This type is deprecated. Please use {@link IImBackSubmitActionData} instead. This will be removed in a future version of the SDK.\n */\nexport interface IIMBackAction extends ISubmitAction {\n /**\n * Initial data that input fields will be combined with. These are essentially ‘hidden’ properties.\n */\n data: MSTeamsData<IIMBackData>;\n}\n\n/**\n * @deprecated This class is deprecated. Please use {@link ImBackSubmitActionData} instead. This will be removed in a future version of the SDK.\n */\nexport class IMBackAction extends SubmitAction implements IIMBackAction {\n /**\n * Initial data that input fields will be combined with. These are essentially ‘hidden’ properties.\n */\n data: MSTeamsData<IIMBackData>;\n\n constructor(value: string, options: SubmitActionOptions = {}) {\n super(options);\n Object.assign(this, options);\n this.data = { msteams: new IMBackData(value) };\n }\n\n static from(options: IMBackActionOptions) {\n return new IMBackAction(options.data.msteams.value, options);\n }\n\n withData(value: IIMBackData) {\n super.withData({ msteams: value });\n return this;\n }\n\n withValue(value: string) {\n this.data.msteams.value = value;\n return this;\n }\n}\n\n/**\n * @deprecated This type is deprecated. Please use {@link IImBackSubmitActionData} instead. This will be removed in a future version of the SDK.\n */\nexport interface IIMBackData {\n type: 'imBack';\n\n /**\n * String that needs to be echoed back in the chat.\n */\n value: string;\n}\n\n/**\n * @deprecated This class is deprecated. Please use {@link ImBackSubmitActionData} instead. This will be removed in a future version of the SDK.\n */\nexport class IMBackData implements IIMBackData {\n type: 'imBack';\n\n /**\n * String that needs to be echoed back in the chat.\n */\n value: string;\n\n constructor(value: string) {\n this.type = 'imBack';\n this.value = value;\n }\n}\n"]}

@@ -1,1 +0,1 @@

{"version":3,"sources":["../../../src/actions/submit/im-back.ts"],"names":[],"mappings":";;AAaO,MAAM,qBAAqB,YAAA,CAAsC;AAAA;AAAA;AAAA;AAAA,EAItE,IAAA;AAAA,EAEA,WAAA,CAAY,KAAA,EAAe,OAAA,GAA+B,EAAC,EAAG;AAC5D,IAAA,KAAA,CAAM,OAAO,CAAA;AACb,IAAA,MAAA,CAAO,MAAA,CAAO,MAAM,OAAO,CAAA;AAC3B,IAAA,IAAA,CAAK,OAAO,EAAE,OAAA,EAAS,IAAI,UAAA,CAAW,KAAK,CAAA,EAAE;AAAA,EAC/C;AAAA,EAEA,OAAO,KAAK,OAAA,EAA8B;AACxC,IAAA,OAAO,IAAI,YAAA,CAAa,OAAA,CAAQ,IAAA,CAAK,OAAA,CAAQ,OAAO,OAAO,CAAA;AAAA,EAC7D;AAAA,EAEA,SAAS,KAAA,EAAoB;AAC3B,IAAA,KAAA,CAAM,QAAA,CAAS,EAAE,OAAA,EAAS,KAAA,EAAO,CAAA;AACjC,IAAA,OAAO,IAAA;AAAA,EACT;AAAA,EAEA,UAAU,KAAA,EAAe;AACvB,IAAA,IAAA,CAAK,IAAA,CAAK,QAAQ,KAAA,GAAQ,KAAA;AAC1B,IAAA,OAAO,IAAA;AAAA,EACT;AACF;AAWO,MAAM,UAAA,CAAkC;AAAA,EAC7C,IAAA;AAAA;AAAA;AAAA;AAAA,EAKA,KAAA;AAAA,EAEA,YAAY,KAAA,EAAe;AACzB,IAAA,IAAA,CAAK,IAAA,GAAO,QAAA;AACZ,IAAA,IAAA,CAAK,KAAA,GAAQ,KAAA;AAAA,EACf;AACF","file":"im-back.mjs","sourcesContent":["import { ISubmitAction, SubmitAction, SubmitActionOptions } from '../../core';\n\nimport { MSTeamsData } from './ms-teams-data';\n\nexport type IMBackActionOptions = SubmitActionOptions & { data: MSTeamsData<IIMBackData> };\n\nexport interface IIMBackAction extends ISubmitAction {\n /**\n * Initial data that input fields will be combined with. These are essentially ‘hidden’ properties.\n */\n data: MSTeamsData<IIMBackData>;\n}\n\nexport class IMBackAction extends SubmitAction implements IIMBackAction {\n /**\n * Initial data that input fields will be combined with. These are essentially ‘hidden’ properties.\n */\n data: MSTeamsData<IIMBackData>;\n\n constructor(value: string, options: SubmitActionOptions = {}) {\n super(options);\n Object.assign(this, options);\n this.data = { msteams: new IMBackData(value) };\n }\n\n static from(options: IMBackActionOptions) {\n return new IMBackAction(options.data.msteams.value, options);\n }\n\n withData(value: IIMBackData) {\n super.withData({ msteams: value });\n return this;\n }\n\n withValue(value: string) {\n this.data.msteams.value = value;\n return this;\n }\n}\n\nexport interface IIMBackData {\n type: 'imBack';\n\n /**\n * String that needs to be echoed back in the chat.\n */\n value: string;\n}\n\nexport class IMBackData implements IIMBackData {\n type: 'imBack';\n\n /**\n * String that needs to be echoed back in the chat.\n */\n value: string;\n\n constructor(value: string) {\n this.type = 'imBack';\n this.value = value;\n }\n}\n"]}
{"version":3,"sources":["../../../src/actions/submit/im-back.ts"],"names":[],"mappings":";;AAmBO,MAAM,qBAAqB,YAAA,CAAsC;AAAA;AAAA;AAAA;AAAA,EAItE,IAAA;AAAA,EAEA,WAAA,CAAY,KAAA,EAAe,OAAA,GAA+B,EAAC,EAAG;AAC5D,IAAA,KAAA,CAAM,OAAO,CAAA;AACb,IAAA,MAAA,CAAO,MAAA,CAAO,MAAM,OAAO,CAAA;AAC3B,IAAA,IAAA,CAAK,OAAO,EAAE,OAAA,EAAS,IAAI,UAAA,CAAW,KAAK,CAAA,EAAE;AAAA,EAC/C;AAAA,EAEA,OAAO,KAAK,OAAA,EAA8B;AACxC,IAAA,OAAO,IAAI,YAAA,CAAa,OAAA,CAAQ,IAAA,CAAK,OAAA,CAAQ,OAAO,OAAO,CAAA;AAAA,EAC7D;AAAA,EAEA,SAAS,KAAA,EAAoB;AAC3B,IAAA,KAAA,CAAM,QAAA,CAAS,EAAE,OAAA,EAAS,KAAA,EAAO,CAAA;AACjC,IAAA,OAAO,IAAA;AAAA,EACT;AAAA,EAEA,UAAU,KAAA,EAAe;AACvB,IAAA,IAAA,CAAK,IAAA,CAAK,QAAQ,KAAA,GAAQ,KAAA;AAC1B,IAAA,OAAO,IAAA;AAAA,EACT;AACF;AAiBO,MAAM,UAAA,CAAkC;AAAA,EAC7C,IAAA;AAAA;AAAA;AAAA;AAAA,EAKA,KAAA;AAAA,EAEA,YAAY,KAAA,EAAe;AACzB,IAAA,IAAA,CAAK,IAAA,GAAO,QAAA;AACZ,IAAA,IAAA,CAAK,KAAA,GAAQ,KAAA;AAAA,EACf;AACF","file":"im-back.mjs","sourcesContent":["import { ISubmitAction, SubmitAction, SubmitActionOptions } from '../../core';\n\nimport { MSTeamsData } from './ms-teams-data';\n\nexport type IMBackActionOptions = SubmitActionOptions & { data: MSTeamsData<IIMBackData> };\n\n/**\n * @deprecated This type is deprecated. Please use {@link IImBackSubmitActionData} instead. This will be removed in a future version of the SDK.\n */\nexport interface IIMBackAction extends ISubmitAction {\n /**\n * Initial data that input fields will be combined with. These are essentially ‘hidden’ properties.\n */\n data: MSTeamsData<IIMBackData>;\n}\n\n/**\n * @deprecated This class is deprecated. Please use {@link ImBackSubmitActionData} instead. This will be removed in a future version of the SDK.\n */\nexport class IMBackAction extends SubmitAction implements IIMBackAction {\n /**\n * Initial data that input fields will be combined with. These are essentially ‘hidden’ properties.\n */\n data: MSTeamsData<IIMBackData>;\n\n constructor(value: string, options: SubmitActionOptions = {}) {\n super(options);\n Object.assign(this, options);\n this.data = { msteams: new IMBackData(value) };\n }\n\n static from(options: IMBackActionOptions) {\n return new IMBackAction(options.data.msteams.value, options);\n }\n\n withData(value: IIMBackData) {\n super.withData({ msteams: value });\n return this;\n }\n\n withValue(value: string) {\n this.data.msteams.value = value;\n return this;\n }\n}\n\n/**\n * @deprecated This type is deprecated. Please use {@link IImBackSubmitActionData} instead. This will be removed in a future version of the SDK.\n */\nexport interface IIMBackData {\n type: 'imBack';\n\n /**\n * String that needs to be echoed back in the chat.\n */\n value: string;\n}\n\n/**\n * @deprecated This class is deprecated. Please use {@link ImBackSubmitActionData} instead. This will be removed in a future version of the SDK.\n */\nexport class IMBackData implements IIMBackData {\n type: 'imBack';\n\n /**\n * String that needs to be echoed back in the chat.\n */\n value: string;\n\n constructor(value: string) {\n this.type = 'imBack';\n this.value = value;\n }\n}\n"]}

@@ -6,5 +6,4 @@ export { IIMBackAction, IIMBackData, IMBackAction, IMBackActionOptions, IMBackData } from './im-back.mjs';

export { ITaskFetchAction, ITaskFetchData, TaskFetchAction, TaskFetchActionOptions, TaskFetchData, TaskFetchDataValues } from './task-fetch.mjs';
export { CollabStageAction, CollabStageActionOptions, CollabStageData, CollabStageValueData, ICollabStageAction, ICollabStageData, ICollabStageValueData } from './collab-stage.mjs';
export { CollabStageAction, CollabStageActionOptions, ICollabStageAction } from './collab-stage.mjs';
import '../../core.mjs';
import '../../common/tab-info.mjs';
import './ms-teams-data.mjs';

@@ -6,5 +6,4 @@ export { IIMBackAction, IIMBackData, IMBackAction, IMBackActionOptions, IMBackData } from './im-back.js';

export { ITaskFetchAction, ITaskFetchData, TaskFetchAction, TaskFetchActionOptions, TaskFetchData, TaskFetchDataValues } from './task-fetch.js';
export { CollabStageAction, CollabStageActionOptions, CollabStageData, CollabStageValueData, ICollabStageAction, ICollabStageData, ICollabStageValueData } from './collab-stage.js';
export { CollabStageAction, CollabStageActionOptions, ICollabStageAction } from './collab-stage.js';
import '../../core.js';
import '../../common/tab-info.js';
import './ms-teams-data.js';

@@ -7,2 +7,5 @@ import { ISubmitAction, SubmitAction, SubmitActionOptions } from '../../core.mjs';

};
/**
* @deprecated This type is deprecated. Please use {@link IInvokeSubmitActionData} instead. This will be removed in a future version of the SDK.
*/
interface IInvokeAction extends ISubmitAction {

@@ -14,2 +17,5 @@ /**

}
/**
* @deprecated This class is deprecated. Please use {@link InvokeSubmitActionData} instead. This will be removed in a future version of the SDK.
*/
declare class InvokeAction extends SubmitAction implements IInvokeAction {

@@ -25,2 +31,5 @@ /**

}
/**
* @deprecated This type is deprecated. Please use {@link IInvokeSubmitActionData} instead. This will be removed in a future version of the SDK.
*/
interface IInvokeData {

@@ -33,2 +42,5 @@ type: 'invoke';

}
/**
* @deprecated This class is deprecated. Please use {@link InvokeSubmitActionData} instead. This will be removed in a future version of the SDK.
*/
declare class InvokeData implements IInvokeData {

@@ -35,0 +47,0 @@ type: 'invoke';

@@ -7,2 +7,5 @@ import { ISubmitAction, SubmitAction, SubmitActionOptions } from '../../core.js';

};
/**
* @deprecated This type is deprecated. Please use {@link IInvokeSubmitActionData} instead. This will be removed in a future version of the SDK.
*/
interface IInvokeAction extends ISubmitAction {

@@ -14,2 +17,5 @@ /**

}
/**
* @deprecated This class is deprecated. Please use {@link InvokeSubmitActionData} instead. This will be removed in a future version of the SDK.
*/
declare class InvokeAction extends SubmitAction implements IInvokeAction {

@@ -25,2 +31,5 @@ /**

}
/**
* @deprecated This type is deprecated. Please use {@link IInvokeSubmitActionData} instead. This will be removed in a future version of the SDK.
*/
interface IInvokeData {

@@ -33,2 +42,5 @@ type: 'invoke';

}
/**
* @deprecated This class is deprecated. Please use {@link InvokeSubmitActionData} instead. This will be removed in a future version of the SDK.
*/
declare class InvokeData implements IInvokeData {

@@ -35,0 +47,0 @@ type: 'invoke';

@@ -1,1 +0,1 @@

{"version":3,"sources":["../../../src/actions/submit/invoke.ts"],"names":["SubmitAction"],"mappings":";;;;AAaO,MAAM,qBAAqBA,iBAAA,CAAsC;AAAA;AAAA;AAAA;AAAA,EAItE,IAAA;AAAA,EAEA,WAAA,CAAY,KAAA,EAAa,OAAA,GAA+B,EAAC,EAAG;AAC1D,IAAA,KAAA,CAAM,OAAO,CAAA;AACb,IAAA,MAAA,CAAO,MAAA,CAAO,MAAM,OAAO,CAAA;AAC3B,IAAA,IAAA,CAAK,OAAO,EAAE,OAAA,EAAS,IAAI,UAAA,CAAW,KAAK,CAAA,EAAE;AAAA,EAC/C;AAAA,EAEA,OAAO,KAAK,OAAA,EAA8B;AACxC,IAAA,OAAO,IAAI,YAAA,CAAa,OAAA,CAAQ,IAAA,CAAK,OAAA,CAAQ,OAAO,OAAO,CAAA;AAAA,EAC7D;AAAA,EAEA,SAAS,KAAA,EAAoB;AAC3B,IAAA,KAAA,CAAM,QAAA,CAAS,EAAE,OAAA,EAAS,KAAA,EAAO,CAAA;AACjC,IAAA,OAAO,IAAA;AAAA,EACT;AAAA,EAEA,UAAU,KAAA,EAAY;AACpB,IAAA,IAAA,CAAK,IAAA,CAAK,QAAQ,KAAA,GAAQ,KAAA;AAC1B,IAAA,OAAO,IAAA;AAAA,EACT;AACF;AAWO,MAAM,UAAA,CAAkC;AAAA,EAC7C,IAAA;AAAA;AAAA;AAAA;AAAA,EAKA,KAAA;AAAA,EAEA,YAAY,KAAA,EAAa;AACvB,IAAA,IAAA,CAAK,IAAA,GAAO,QAAA;AACZ,IAAA,IAAA,CAAK,KAAA,GAAQ,KAAA;AAAA,EACf;AACF","file":"invoke.js","sourcesContent":["import { ISubmitAction, SubmitAction, SubmitActionOptions } from '../../core';\n\nimport { MSTeamsData } from './ms-teams-data';\n\nexport type InvokeActionOptions = SubmitActionOptions & { data: MSTeamsData<IInvokeData> };\n\nexport interface IInvokeAction extends ISubmitAction {\n /**\n * Initial data that input fields will be combined with. These are essentially ‘hidden’ properties.\n */\n data: MSTeamsData<IInvokeData>;\n}\n\nexport class InvokeAction extends SubmitAction implements IInvokeAction {\n /**\n * Initial data that input fields will be combined with. These are essentially ‘hidden’ properties.\n */\n data: MSTeamsData<IInvokeData>;\n\n constructor(value?: any, options: SubmitActionOptions = {}) {\n super(options);\n Object.assign(this, options);\n this.data = { msteams: new InvokeData(value) };\n }\n\n static from(options: InvokeActionOptions) {\n return new InvokeAction(options.data.msteams.value, options);\n }\n\n withData(value: IInvokeData) {\n super.withData({ msteams: value });\n return this;\n }\n\n withValue(value: any) {\n this.data.msteams.value = value;\n return this;\n }\n}\n\nexport interface IInvokeData {\n type: 'invoke';\n\n /**\n * Set the value to send with the invoke\n */\n value?: any;\n}\n\nexport class InvokeData implements IInvokeData {\n type: 'invoke';\n\n /**\n * Set the value to send with the invoke\n */\n value?: any;\n\n constructor(value?: any) {\n this.type = 'invoke';\n this.value = value;\n }\n}\n"]}
{"version":3,"sources":["../../../src/actions/submit/invoke.ts"],"names":["SubmitAction"],"mappings":";;;;AAmBO,MAAM,qBAAqBA,iBAAA,CAAsC;AAAA;AAAA;AAAA;AAAA,EAItE,IAAA;AAAA,EAEA,WAAA,CAAY,KAAA,EAAa,OAAA,GAA+B,EAAC,EAAG;AAC1D,IAAA,KAAA,CAAM,OAAO,CAAA;AACb,IAAA,MAAA,CAAO,MAAA,CAAO,MAAM,OAAO,CAAA;AAC3B,IAAA,IAAA,CAAK,OAAO,EAAE,OAAA,EAAS,IAAI,UAAA,CAAW,KAAK,CAAA,EAAE;AAAA,EAC/C;AAAA,EAEA,OAAO,KAAK,OAAA,EAA8B;AACxC,IAAA,OAAO,IAAI,YAAA,CAAa,OAAA,CAAQ,IAAA,CAAK,OAAA,CAAQ,OAAO,OAAO,CAAA;AAAA,EAC7D;AAAA,EAEA,SAAS,KAAA,EAAoB;AAC3B,IAAA,KAAA,CAAM,QAAA,CAAS,EAAE,OAAA,EAAS,KAAA,EAAO,CAAA;AACjC,IAAA,OAAO,IAAA;AAAA,EACT;AAAA,EAEA,UAAU,KAAA,EAAY;AACpB,IAAA,IAAA,CAAK,IAAA,CAAK,QAAQ,KAAA,GAAQ,KAAA;AAC1B,IAAA,OAAO,IAAA;AAAA,EACT;AACF;AAiBO,MAAM,UAAA,CAAkC;AAAA,EAC7C,IAAA;AAAA;AAAA;AAAA;AAAA,EAKA,KAAA;AAAA,EAEA,YAAY,KAAA,EAAa;AACvB,IAAA,IAAA,CAAK,IAAA,GAAO,QAAA;AACZ,IAAA,IAAA,CAAK,KAAA,GAAQ,KAAA;AAAA,EACf;AACF","file":"invoke.js","sourcesContent":["import { ISubmitAction, SubmitAction, SubmitActionOptions } from '../../core';\n\nimport { MSTeamsData } from './ms-teams-data';\n\nexport type InvokeActionOptions = SubmitActionOptions & { data: MSTeamsData<IInvokeData> };\n\n/**\n * @deprecated This type is deprecated. Please use {@link IInvokeSubmitActionData} instead. This will be removed in a future version of the SDK.\n */\nexport interface IInvokeAction extends ISubmitAction {\n /**\n * Initial data that input fields will be combined with. These are essentially ‘hidden’ properties.\n */\n data: MSTeamsData<IInvokeData>;\n}\n\n/**\n * @deprecated This class is deprecated. Please use {@link InvokeSubmitActionData} instead. This will be removed in a future version of the SDK.\n */\nexport class InvokeAction extends SubmitAction implements IInvokeAction {\n /**\n * Initial data that input fields will be combined with. These are essentially ‘hidden’ properties.\n */\n data: MSTeamsData<IInvokeData>;\n\n constructor(value?: any, options: SubmitActionOptions = {}) {\n super(options);\n Object.assign(this, options);\n this.data = { msteams: new InvokeData(value) };\n }\n\n static from(options: InvokeActionOptions) {\n return new InvokeAction(options.data.msteams.value, options);\n }\n\n withData(value: IInvokeData) {\n super.withData({ msteams: value });\n return this;\n }\n\n withValue(value: any) {\n this.data.msteams.value = value;\n return this;\n }\n}\n\n/**\n * @deprecated This type is deprecated. Please use {@link IInvokeSubmitActionData} instead. This will be removed in a future version of the SDK.\n */\nexport interface IInvokeData {\n type: 'invoke';\n\n /**\n * Set the value to send with the invoke\n */\n value?: any;\n}\n\n/**\n * @deprecated This class is deprecated. Please use {@link InvokeSubmitActionData} instead. This will be removed in a future version of the SDK.\n */\nexport class InvokeData implements IInvokeData {\n type: 'invoke';\n\n /**\n * Set the value to send with the invoke\n */\n value?: any;\n\n constructor(value?: any) {\n this.type = 'invoke';\n this.value = value;\n }\n}\n"]}

@@ -1,1 +0,1 @@

{"version":3,"sources":["../../../src/actions/submit/invoke.ts"],"names":[],"mappings":";;AAaO,MAAM,qBAAqB,YAAA,CAAsC;AAAA;AAAA;AAAA;AAAA,EAItE,IAAA;AAAA,EAEA,WAAA,CAAY,KAAA,EAAa,OAAA,GAA+B,EAAC,EAAG;AAC1D,IAAA,KAAA,CAAM,OAAO,CAAA;AACb,IAAA,MAAA,CAAO,MAAA,CAAO,MAAM,OAAO,CAAA;AAC3B,IAAA,IAAA,CAAK,OAAO,EAAE,OAAA,EAAS,IAAI,UAAA,CAAW,KAAK,CAAA,EAAE;AAAA,EAC/C;AAAA,EAEA,OAAO,KAAK,OAAA,EAA8B;AACxC,IAAA,OAAO,IAAI,YAAA,CAAa,OAAA,CAAQ,IAAA,CAAK,OAAA,CAAQ,OAAO,OAAO,CAAA;AAAA,EAC7D;AAAA,EAEA,SAAS,KAAA,EAAoB;AAC3B,IAAA,KAAA,CAAM,QAAA,CAAS,EAAE,OAAA,EAAS,KAAA,EAAO,CAAA;AACjC,IAAA,OAAO,IAAA;AAAA,EACT;AAAA,EAEA,UAAU,KAAA,EAAY;AACpB,IAAA,IAAA,CAAK,IAAA,CAAK,QAAQ,KAAA,GAAQ,KAAA;AAC1B,IAAA,OAAO,IAAA;AAAA,EACT;AACF;AAWO,MAAM,UAAA,CAAkC;AAAA,EAC7C,IAAA;AAAA;AAAA;AAAA;AAAA,EAKA,KAAA;AAAA,EAEA,YAAY,KAAA,EAAa;AACvB,IAAA,IAAA,CAAK,IAAA,GAAO,QAAA;AACZ,IAAA,IAAA,CAAK,KAAA,GAAQ,KAAA;AAAA,EACf;AACF","file":"invoke.mjs","sourcesContent":["import { ISubmitAction, SubmitAction, SubmitActionOptions } from '../../core';\n\nimport { MSTeamsData } from './ms-teams-data';\n\nexport type InvokeActionOptions = SubmitActionOptions & { data: MSTeamsData<IInvokeData> };\n\nexport interface IInvokeAction extends ISubmitAction {\n /**\n * Initial data that input fields will be combined with. These are essentially ‘hidden’ properties.\n */\n data: MSTeamsData<IInvokeData>;\n}\n\nexport class InvokeAction extends SubmitAction implements IInvokeAction {\n /**\n * Initial data that input fields will be combined with. These are essentially ‘hidden’ properties.\n */\n data: MSTeamsData<IInvokeData>;\n\n constructor(value?: any, options: SubmitActionOptions = {}) {\n super(options);\n Object.assign(this, options);\n this.data = { msteams: new InvokeData(value) };\n }\n\n static from(options: InvokeActionOptions) {\n return new InvokeAction(options.data.msteams.value, options);\n }\n\n withData(value: IInvokeData) {\n super.withData({ msteams: value });\n return this;\n }\n\n withValue(value: any) {\n this.data.msteams.value = value;\n return this;\n }\n}\n\nexport interface IInvokeData {\n type: 'invoke';\n\n /**\n * Set the value to send with the invoke\n */\n value?: any;\n}\n\nexport class InvokeData implements IInvokeData {\n type: 'invoke';\n\n /**\n * Set the value to send with the invoke\n */\n value?: any;\n\n constructor(value?: any) {\n this.type = 'invoke';\n this.value = value;\n }\n}\n"]}
{"version":3,"sources":["../../../src/actions/submit/invoke.ts"],"names":[],"mappings":";;AAmBO,MAAM,qBAAqB,YAAA,CAAsC;AAAA;AAAA;AAAA;AAAA,EAItE,IAAA;AAAA,EAEA,WAAA,CAAY,KAAA,EAAa,OAAA,GAA+B,EAAC,EAAG;AAC1D,IAAA,KAAA,CAAM,OAAO,CAAA;AACb,IAAA,MAAA,CAAO,MAAA,CAAO,MAAM,OAAO,CAAA;AAC3B,IAAA,IAAA,CAAK,OAAO,EAAE,OAAA,EAAS,IAAI,UAAA,CAAW,KAAK,CAAA,EAAE;AAAA,EAC/C;AAAA,EAEA,OAAO,KAAK,OAAA,EAA8B;AACxC,IAAA,OAAO,IAAI,YAAA,CAAa,OAAA,CAAQ,IAAA,CAAK,OAAA,CAAQ,OAAO,OAAO,CAAA;AAAA,EAC7D;AAAA,EAEA,SAAS,KAAA,EAAoB;AAC3B,IAAA,KAAA,CAAM,QAAA,CAAS,EAAE,OAAA,EAAS,KAAA,EAAO,CAAA;AACjC,IAAA,OAAO,IAAA;AAAA,EACT;AAAA,EAEA,UAAU,KAAA,EAAY;AACpB,IAAA,IAAA,CAAK,IAAA,CAAK,QAAQ,KAAA,GAAQ,KAAA;AAC1B,IAAA,OAAO,IAAA;AAAA,EACT;AACF;AAiBO,MAAM,UAAA,CAAkC;AAAA,EAC7C,IAAA;AAAA;AAAA;AAAA;AAAA,EAKA,KAAA;AAAA,EAEA,YAAY,KAAA,EAAa;AACvB,IAAA,IAAA,CAAK,IAAA,GAAO,QAAA;AACZ,IAAA,IAAA,CAAK,KAAA,GAAQ,KAAA;AAAA,EACf;AACF","file":"invoke.mjs","sourcesContent":["import { ISubmitAction, SubmitAction, SubmitActionOptions } from '../../core';\n\nimport { MSTeamsData } from './ms-teams-data';\n\nexport type InvokeActionOptions = SubmitActionOptions & { data: MSTeamsData<IInvokeData> };\n\n/**\n * @deprecated This type is deprecated. Please use {@link IInvokeSubmitActionData} instead. This will be removed in a future version of the SDK.\n */\nexport interface IInvokeAction extends ISubmitAction {\n /**\n * Initial data that input fields will be combined with. These are essentially ‘hidden’ properties.\n */\n data: MSTeamsData<IInvokeData>;\n}\n\n/**\n * @deprecated This class is deprecated. Please use {@link InvokeSubmitActionData} instead. This will be removed in a future version of the SDK.\n */\nexport class InvokeAction extends SubmitAction implements IInvokeAction {\n /**\n * Initial data that input fields will be combined with. These are essentially ‘hidden’ properties.\n */\n data: MSTeamsData<IInvokeData>;\n\n constructor(value?: any, options: SubmitActionOptions = {}) {\n super(options);\n Object.assign(this, options);\n this.data = { msteams: new InvokeData(value) };\n }\n\n static from(options: InvokeActionOptions) {\n return new InvokeAction(options.data.msteams.value, options);\n }\n\n withData(value: IInvokeData) {\n super.withData({ msteams: value });\n return this;\n }\n\n withValue(value: any) {\n this.data.msteams.value = value;\n return this;\n }\n}\n\n/**\n * @deprecated This type is deprecated. Please use {@link IInvokeSubmitActionData} instead. This will be removed in a future version of the SDK.\n */\nexport interface IInvokeData {\n type: 'invoke';\n\n /**\n * Set the value to send with the invoke\n */\n value?: any;\n}\n\n/**\n * @deprecated This class is deprecated. Please use {@link InvokeSubmitActionData} instead. This will be removed in a future version of the SDK.\n */\nexport class InvokeData implements IInvokeData {\n type: 'invoke';\n\n /**\n * Set the value to send with the invoke\n */\n value?: any;\n\n constructor(value?: any) {\n this.type = 'invoke';\n this.value = value;\n }\n}\n"]}

@@ -7,2 +7,5 @@ import { ISubmitAction, SubmitAction, SubmitActionOptions } from '../../core.mjs';

};
/**
* @deprecated This type is deprecated. Please use {@link IMessageBackSubmitActionData} instead. This will be removed in a future version of the SDK.
*/
interface IMessageBackAction extends ISubmitAction {

@@ -14,2 +17,5 @@ /**

}
/**
* @deprecated This class is deprecated. Please use {@link MessageBackSubmitActionData} instead. This will be removed in a future version of the SDK.
*/
declare class MessageBackAction extends SubmitAction implements IMessageBackAction {

@@ -24,2 +30,5 @@ /**

}
/**
* @deprecated This type is deprecated. Please use {@link IMessageBackSubmitActionData} instead. This will be removed in a future version of the SDK.
*/
interface IMessageBackData {

@@ -42,2 +51,5 @@ type: 'messageBack';

}
/**
* @deprecated This class is deprecated. Please use {@link MessageBackSubmitActionData} instead. This will be removed in a future version of the SDK.
*/
declare class MessageBackData implements IMessageBackData {

@@ -44,0 +56,0 @@ type: 'messageBack';

@@ -7,2 +7,5 @@ import { ISubmitAction, SubmitAction, SubmitActionOptions } from '../../core.js';

};
/**
* @deprecated This type is deprecated. Please use {@link IMessageBackSubmitActionData} instead. This will be removed in a future version of the SDK.
*/
interface IMessageBackAction extends ISubmitAction {

@@ -14,2 +17,5 @@ /**

}
/**
* @deprecated This class is deprecated. Please use {@link MessageBackSubmitActionData} instead. This will be removed in a future version of the SDK.
*/
declare class MessageBackAction extends SubmitAction implements IMessageBackAction {

@@ -24,2 +30,5 @@ /**

}
/**
* @deprecated This type is deprecated. Please use {@link IMessageBackSubmitActionData} instead. This will be removed in a future version of the SDK.
*/
interface IMessageBackData {

@@ -42,2 +51,5 @@ type: 'messageBack';

}
/**
* @deprecated This class is deprecated. Please use {@link MessageBackSubmitActionData} instead. This will be removed in a future version of the SDK.
*/
declare class MessageBackData implements IMessageBackData {

@@ -44,0 +56,0 @@ type: 'messageBack';

@@ -1,1 +0,1 @@

{"version":3,"sources":["../../../src/actions/submit/message-back.ts"],"names":["SubmitAction"],"mappings":";;;;AAeO,MAAM,0BAA0BA,iBAAA,CAA2C;AAAA;AAAA;AAAA;AAAA,EAIhF,IAAA;AAAA,EAEA,WAAA,CAAY,IAAA,EAAwB,OAAA,GAA+B,EAAC,EAAG;AACrE,IAAA,KAAA,CAAM,OAAO,CAAA;AACb,IAAA,MAAA,CAAO,MAAA,CAAO,MAAM,OAAO,CAAA;AAC3B,IAAA,IAAA,CAAK,IAAA,GAAO;AAAA,MACV,OAAA,EAAS,IAAI,eAAA,CAAgB,IAAA,CAAK,MAAM,IAAA,CAAK,KAAA,EAAO,KAAK,WAAW;AAAA,KACtE;AAAA,EACF;AAAA,EAEA,OAAO,KAAK,OAAA,EAAmC;AAC7C,IAAA,OAAO,IAAI,iBAAA,CAAkB,OAAA,CAAQ,IAAA,CAAK,SAAS,OAAO,CAAA;AAAA,EAC5D;AAAA,EAEA,SAAS,KAAA,EAAyB;AAChC,IAAA,KAAA,CAAM,QAAA,CAAS,EAAE,OAAA,EAAS,KAAA,EAAO,CAAA;AACjC,IAAA,OAAO,IAAA;AAAA,EACT;AACF;AAuBO,MAAM,eAAA,CAA4C;AAAA,EACvD,IAAA;AAAA;AAAA;AAAA;AAAA,EAKA,IAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAMA,WAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAMA,KAAA;AAAA,EAEA,WAAA,CAAY,IAAA,EAAc,KAAA,EAAe,WAAA,EAAsB;AAC7D,IAAA,IAAA,CAAK,IAAA,GAAO,aAAA;AACZ,IAAA,IAAA,CAAK,IAAA,GAAO,IAAA;AACZ,IAAA,IAAA,CAAK,KAAA,GAAQ,KAAA;AACb,IAAA,IAAA,CAAK,WAAA,GAAc,WAAA;AAAA,EACrB;AAAA,EAEA,gBAAgB,KAAA,EAAe;AAC7B,IAAA,IAAA,CAAK,WAAA,GAAc,KAAA;AACnB,IAAA,OAAO,IAAA;AAAA,EACT;AACF","file":"message-back.js","sourcesContent":["import { ISubmitAction, SubmitAction, SubmitActionOptions } from '../../core';\n\nimport { MSTeamsData } from './ms-teams-data';\n\nexport type MessageBackActionOptions = SubmitActionOptions & {\n data: MSTeamsData<IMessageBackData>;\n};\n\nexport interface IMessageBackAction extends ISubmitAction {\n /**\n * Initial data that input fields will be combined with. These are essentially ‘hidden’ properties.\n */\n data: MSTeamsData<IMessageBackData>;\n}\n\nexport class MessageBackAction extends SubmitAction implements IMessageBackAction {\n /**\n * Initial data that input fields will be combined with. These are essentially ‘hidden’ properties.\n */\n data: MSTeamsData<IMessageBackData>;\n\n constructor(data: IMessageBackData, options: SubmitActionOptions = {}) {\n super(options);\n Object.assign(this, options);\n this.data = {\n msteams: new MessageBackData(data.text, data.value, data.displayText),\n };\n }\n\n static from(options: MessageBackActionOptions) {\n return new MessageBackAction(options.data.msteams, options);\n }\n\n withData(value: IMessageBackData) {\n super.withData({ msteams: value });\n return this;\n }\n}\n\nexport interface IMessageBackData {\n type: 'messageBack';\n\n /**\n * Sent to your bot when the action is performed.\n */\n text: string;\n\n /**\n * Used by the user in the chat stream when the action is performed.\n * This text isn't sent to your bot.\n */\n displayText?: string;\n\n /**\n * Sent to your bot when the action is performed. You can encode context\n * for the action, such as unique identifiers or a `JSON` object.\n */\n value: string;\n}\n\nexport class MessageBackData implements IMessageBackData {\n type: 'messageBack';\n\n /**\n * Sent to your bot when the action is performed.\n */\n text: string;\n\n /**\n * Used by the user in the chat stream when the action is performed.\n * This text isn't sent to your bot.\n */\n displayText?: string;\n\n /**\n * Sent to your bot when the action is performed. You can encode context\n * for the action, such as unique identifiers or a `JSON` object.\n */\n value: string;\n\n constructor(text: string, value: string, displayText?: string) {\n this.type = 'messageBack';\n this.text = text;\n this.value = value;\n this.displayText = displayText;\n }\n\n withDisplayText(value: string) {\n this.displayText = value;\n return this;\n }\n}\n"]}
{"version":3,"sources":["../../../src/actions/submit/message-back.ts"],"names":["SubmitAction"],"mappings":";;;;AAqBO,MAAM,0BAA0BA,iBAAA,CAA2C;AAAA;AAAA;AAAA;AAAA,EAIhF,IAAA;AAAA,EAEA,WAAA,CAAY,IAAA,EAAwB,OAAA,GAA+B,EAAC,EAAG;AACrE,IAAA,KAAA,CAAM,OAAO,CAAA;AACb,IAAA,MAAA,CAAO,MAAA,CAAO,MAAM,OAAO,CAAA;AAC3B,IAAA,IAAA,CAAK,IAAA,GAAO;AAAA,MACV,OAAA,EAAS,IAAI,eAAA,CAAgB,IAAA,CAAK,MAAM,IAAA,CAAK,KAAA,EAAO,KAAK,WAAW;AAAA,KACtE;AAAA,EACF;AAAA,EAEA,OAAO,KAAK,OAAA,EAAmC;AAC7C,IAAA,OAAO,IAAI,iBAAA,CAAkB,OAAA,CAAQ,IAAA,CAAK,SAAS,OAAO,CAAA;AAAA,EAC5D;AAAA,EAEA,SAAS,KAAA,EAAyB;AAChC,IAAA,KAAA,CAAM,QAAA,CAAS,EAAE,OAAA,EAAS,KAAA,EAAO,CAAA;AACjC,IAAA,OAAO,IAAA;AAAA,EACT;AACF;AA6BO,MAAM,eAAA,CAA4C;AAAA,EACvD,IAAA;AAAA;AAAA;AAAA;AAAA,EAKA,IAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAMA,WAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAMA,KAAA;AAAA,EAEA,WAAA,CAAY,IAAA,EAAc,KAAA,EAAe,WAAA,EAAsB;AAC7D,IAAA,IAAA,CAAK,IAAA,GAAO,aAAA;AACZ,IAAA,IAAA,CAAK,IAAA,GAAO,IAAA;AACZ,IAAA,IAAA,CAAK,KAAA,GAAQ,KAAA;AACb,IAAA,IAAA,CAAK,WAAA,GAAc,WAAA;AAAA,EACrB;AAAA,EAEA,gBAAgB,KAAA,EAAe;AAC7B,IAAA,IAAA,CAAK,WAAA,GAAc,KAAA;AACnB,IAAA,OAAO,IAAA;AAAA,EACT;AACF","file":"message-back.js","sourcesContent":["import { ISubmitAction, SubmitAction, SubmitActionOptions } from '../../core';\n\nimport { MSTeamsData } from './ms-teams-data';\n\nexport type MessageBackActionOptions = SubmitActionOptions & {\n data: MSTeamsData<IMessageBackData>;\n};\n\n/**\n * @deprecated This type is deprecated. Please use {@link IMessageBackSubmitActionData} instead. This will be removed in a future version of the SDK.\n */\nexport interface IMessageBackAction extends ISubmitAction {\n /**\n * Initial data that input fields will be combined with. These are essentially ‘hidden’ properties.\n */\n data: MSTeamsData<IMessageBackData>;\n}\n\n/**\n * @deprecated This class is deprecated. Please use {@link MessageBackSubmitActionData} instead. This will be removed in a future version of the SDK.\n */\nexport class MessageBackAction extends SubmitAction implements IMessageBackAction {\n /**\n * Initial data that input fields will be combined with. These are essentially ‘hidden’ properties.\n */\n data: MSTeamsData<IMessageBackData>;\n\n constructor(data: IMessageBackData, options: SubmitActionOptions = {}) {\n super(options);\n Object.assign(this, options);\n this.data = {\n msteams: new MessageBackData(data.text, data.value, data.displayText),\n };\n }\n\n static from(options: MessageBackActionOptions) {\n return new MessageBackAction(options.data.msteams, options);\n }\n\n withData(value: IMessageBackData) {\n super.withData({ msteams: value });\n return this;\n }\n}\n\n/**\n * @deprecated This type is deprecated. Please use {@link IMessageBackSubmitActionData} instead. This will be removed in a future version of the SDK.\n */\nexport interface IMessageBackData {\n type: 'messageBack';\n\n /**\n * Sent to your bot when the action is performed.\n */\n text: string;\n\n /**\n * Used by the user in the chat stream when the action is performed.\n * This text isn't sent to your bot.\n */\n displayText?: string;\n\n /**\n * Sent to your bot when the action is performed. You can encode context\n * for the action, such as unique identifiers or a `JSON` object.\n */\n value: string;\n}\n\n/**\n * @deprecated This class is deprecated. Please use {@link MessageBackSubmitActionData} instead. This will be removed in a future version of the SDK.\n */\nexport class MessageBackData implements IMessageBackData {\n type: 'messageBack';\n\n /**\n * Sent to your bot when the action is performed.\n */\n text: string;\n\n /**\n * Used by the user in the chat stream when the action is performed.\n * This text isn't sent to your bot.\n */\n displayText?: string;\n\n /**\n * Sent to your bot when the action is performed. You can encode context\n * for the action, such as unique identifiers or a `JSON` object.\n */\n value: string;\n\n constructor(text: string, value: string, displayText?: string) {\n this.type = 'messageBack';\n this.text = text;\n this.value = value;\n this.displayText = displayText;\n }\n\n withDisplayText(value: string) {\n this.displayText = value;\n return this;\n }\n}\n"]}

@@ -1,1 +0,1 @@

{"version":3,"sources":["../../../src/actions/submit/message-back.ts"],"names":[],"mappings":";;AAeO,MAAM,0BAA0B,YAAA,CAA2C;AAAA;AAAA;AAAA;AAAA,EAIhF,IAAA;AAAA,EAEA,WAAA,CAAY,IAAA,EAAwB,OAAA,GAA+B,EAAC,EAAG;AACrE,IAAA,KAAA,CAAM,OAAO,CAAA;AACb,IAAA,MAAA,CAAO,MAAA,CAAO,MAAM,OAAO,CAAA;AAC3B,IAAA,IAAA,CAAK,IAAA,GAAO;AAAA,MACV,OAAA,EAAS,IAAI,eAAA,CAAgB,IAAA,CAAK,MAAM,IAAA,CAAK,KAAA,EAAO,KAAK,WAAW;AAAA,KACtE;AAAA,EACF;AAAA,EAEA,OAAO,KAAK,OAAA,EAAmC;AAC7C,IAAA,OAAO,IAAI,iBAAA,CAAkB,OAAA,CAAQ,IAAA,CAAK,SAAS,OAAO,CAAA;AAAA,EAC5D;AAAA,EAEA,SAAS,KAAA,EAAyB;AAChC,IAAA,KAAA,CAAM,QAAA,CAAS,EAAE,OAAA,EAAS,KAAA,EAAO,CAAA;AACjC,IAAA,OAAO,IAAA;AAAA,EACT;AACF;AAuBO,MAAM,eAAA,CAA4C;AAAA,EACvD,IAAA;AAAA;AAAA;AAAA;AAAA,EAKA,IAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAMA,WAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAMA,KAAA;AAAA,EAEA,WAAA,CAAY,IAAA,EAAc,KAAA,EAAe,WAAA,EAAsB;AAC7D,IAAA,IAAA,CAAK,IAAA,GAAO,aAAA;AACZ,IAAA,IAAA,CAAK,IAAA,GAAO,IAAA;AACZ,IAAA,IAAA,CAAK,KAAA,GAAQ,KAAA;AACb,IAAA,IAAA,CAAK,WAAA,GAAc,WAAA;AAAA,EACrB;AAAA,EAEA,gBAAgB,KAAA,EAAe;AAC7B,IAAA,IAAA,CAAK,WAAA,GAAc,KAAA;AACnB,IAAA,OAAO,IAAA;AAAA,EACT;AACF","file":"message-back.mjs","sourcesContent":["import { ISubmitAction, SubmitAction, SubmitActionOptions } from '../../core';\n\nimport { MSTeamsData } from './ms-teams-data';\n\nexport type MessageBackActionOptions = SubmitActionOptions & {\n data: MSTeamsData<IMessageBackData>;\n};\n\nexport interface IMessageBackAction extends ISubmitAction {\n /**\n * Initial data that input fields will be combined with. These are essentially ‘hidden’ properties.\n */\n data: MSTeamsData<IMessageBackData>;\n}\n\nexport class MessageBackAction extends SubmitAction implements IMessageBackAction {\n /**\n * Initial data that input fields will be combined with. These are essentially ‘hidden’ properties.\n */\n data: MSTeamsData<IMessageBackData>;\n\n constructor(data: IMessageBackData, options: SubmitActionOptions = {}) {\n super(options);\n Object.assign(this, options);\n this.data = {\n msteams: new MessageBackData(data.text, data.value, data.displayText),\n };\n }\n\n static from(options: MessageBackActionOptions) {\n return new MessageBackAction(options.data.msteams, options);\n }\n\n withData(value: IMessageBackData) {\n super.withData({ msteams: value });\n return this;\n }\n}\n\nexport interface IMessageBackData {\n type: 'messageBack';\n\n /**\n * Sent to your bot when the action is performed.\n */\n text: string;\n\n /**\n * Used by the user in the chat stream when the action is performed.\n * This text isn't sent to your bot.\n */\n displayText?: string;\n\n /**\n * Sent to your bot when the action is performed. You can encode context\n * for the action, such as unique identifiers or a `JSON` object.\n */\n value: string;\n}\n\nexport class MessageBackData implements IMessageBackData {\n type: 'messageBack';\n\n /**\n * Sent to your bot when the action is performed.\n */\n text: string;\n\n /**\n * Used by the user in the chat stream when the action is performed.\n * This text isn't sent to your bot.\n */\n displayText?: string;\n\n /**\n * Sent to your bot when the action is performed. You can encode context\n * for the action, such as unique identifiers or a `JSON` object.\n */\n value: string;\n\n constructor(text: string, value: string, displayText?: string) {\n this.type = 'messageBack';\n this.text = text;\n this.value = value;\n this.displayText = displayText;\n }\n\n withDisplayText(value: string) {\n this.displayText = value;\n return this;\n }\n}\n"]}
{"version":3,"sources":["../../../src/actions/submit/message-back.ts"],"names":[],"mappings":";;AAqBO,MAAM,0BAA0B,YAAA,CAA2C;AAAA;AAAA;AAAA;AAAA,EAIhF,IAAA;AAAA,EAEA,WAAA,CAAY,IAAA,EAAwB,OAAA,GAA+B,EAAC,EAAG;AACrE,IAAA,KAAA,CAAM,OAAO,CAAA;AACb,IAAA,MAAA,CAAO,MAAA,CAAO,MAAM,OAAO,CAAA;AAC3B,IAAA,IAAA,CAAK,IAAA,GAAO;AAAA,MACV,OAAA,EAAS,IAAI,eAAA,CAAgB,IAAA,CAAK,MAAM,IAAA,CAAK,KAAA,EAAO,KAAK,WAAW;AAAA,KACtE;AAAA,EACF;AAAA,EAEA,OAAO,KAAK,OAAA,EAAmC;AAC7C,IAAA,OAAO,IAAI,iBAAA,CAAkB,OAAA,CAAQ,IAAA,CAAK,SAAS,OAAO,CAAA;AAAA,EAC5D;AAAA,EAEA,SAAS,KAAA,EAAyB;AAChC,IAAA,KAAA,CAAM,QAAA,CAAS,EAAE,OAAA,EAAS,KAAA,EAAO,CAAA;AACjC,IAAA,OAAO,IAAA;AAAA,EACT;AACF;AA6BO,MAAM,eAAA,CAA4C;AAAA,EACvD,IAAA;AAAA;AAAA;AAAA;AAAA,EAKA,IAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAMA,WAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAMA,KAAA;AAAA,EAEA,WAAA,CAAY,IAAA,EAAc,KAAA,EAAe,WAAA,EAAsB;AAC7D,IAAA,IAAA,CAAK,IAAA,GAAO,aAAA;AACZ,IAAA,IAAA,CAAK,IAAA,GAAO,IAAA;AACZ,IAAA,IAAA,CAAK,KAAA,GAAQ,KAAA;AACb,IAAA,IAAA,CAAK,WAAA,GAAc,WAAA;AAAA,EACrB;AAAA,EAEA,gBAAgB,KAAA,EAAe;AAC7B,IAAA,IAAA,CAAK,WAAA,GAAc,KAAA;AACnB,IAAA,OAAO,IAAA;AAAA,EACT;AACF","file":"message-back.mjs","sourcesContent":["import { ISubmitAction, SubmitAction, SubmitActionOptions } from '../../core';\n\nimport { MSTeamsData } from './ms-teams-data';\n\nexport type MessageBackActionOptions = SubmitActionOptions & {\n data: MSTeamsData<IMessageBackData>;\n};\n\n/**\n * @deprecated This type is deprecated. Please use {@link IMessageBackSubmitActionData} instead. This will be removed in a future version of the SDK.\n */\nexport interface IMessageBackAction extends ISubmitAction {\n /**\n * Initial data that input fields will be combined with. These are essentially ‘hidden’ properties.\n */\n data: MSTeamsData<IMessageBackData>;\n}\n\n/**\n * @deprecated This class is deprecated. Please use {@link MessageBackSubmitActionData} instead. This will be removed in a future version of the SDK.\n */\nexport class MessageBackAction extends SubmitAction implements IMessageBackAction {\n /**\n * Initial data that input fields will be combined with. These are essentially ‘hidden’ properties.\n */\n data: MSTeamsData<IMessageBackData>;\n\n constructor(data: IMessageBackData, options: SubmitActionOptions = {}) {\n super(options);\n Object.assign(this, options);\n this.data = {\n msteams: new MessageBackData(data.text, data.value, data.displayText),\n };\n }\n\n static from(options: MessageBackActionOptions) {\n return new MessageBackAction(options.data.msteams, options);\n }\n\n withData(value: IMessageBackData) {\n super.withData({ msteams: value });\n return this;\n }\n}\n\n/**\n * @deprecated This type is deprecated. Please use {@link IMessageBackSubmitActionData} instead. This will be removed in a future version of the SDK.\n */\nexport interface IMessageBackData {\n type: 'messageBack';\n\n /**\n * Sent to your bot when the action is performed.\n */\n text: string;\n\n /**\n * Used by the user in the chat stream when the action is performed.\n * This text isn't sent to your bot.\n */\n displayText?: string;\n\n /**\n * Sent to your bot when the action is performed. You can encode context\n * for the action, such as unique identifiers or a `JSON` object.\n */\n value: string;\n}\n\n/**\n * @deprecated This class is deprecated. Please use {@link MessageBackSubmitActionData} instead. This will be removed in a future version of the SDK.\n */\nexport class MessageBackData implements IMessageBackData {\n type: 'messageBack';\n\n /**\n * Sent to your bot when the action is performed.\n */\n text: string;\n\n /**\n * Used by the user in the chat stream when the action is performed.\n * This text isn't sent to your bot.\n */\n displayText?: string;\n\n /**\n * Sent to your bot when the action is performed. You can encode context\n * for the action, such as unique identifiers or a `JSON` object.\n */\n value: string;\n\n constructor(text: string, value: string, displayText?: string) {\n this.type = 'messageBack';\n this.text = text;\n this.value = value;\n this.displayText = displayText;\n }\n\n withDisplayText(value: string) {\n this.displayText = value;\n return this;\n }\n}\n"]}

@@ -7,2 +7,5 @@ import { ISubmitAction, SubmitAction, SubmitActionOptions } from '../../core.mjs';

};
/**
* @deprecated This type is deprecated. Please use {@link ISigninSubmitActionData} instead. This will be removed in a future version of the SDK.
*/
interface ISignInAction extends ISubmitAction {

@@ -14,2 +17,5 @@ /**

}
/**
* @deprecated This class is deprecated. Please use {@link SigninSubmitActionData} instead. This will be removed in a future version of the SDK.
*/
declare class SignInAction extends SubmitAction implements ISignInAction {

@@ -25,2 +31,5 @@ /**

}
/**
* @deprecated This type is deprecated. Please use {@link ISigninSubmitActionData} instead. This will be removed in a future version of the SDK.
*/
interface ISignInData {

@@ -33,2 +42,5 @@ type: 'signin';

}
/**
* @deprecated This class is deprecated. Please use {@link SigninSubmitActionData} instead. This will be removed in a future version of the SDK.
*/
declare class SignInData implements ISignInData {

@@ -35,0 +47,0 @@ type: 'signin';

@@ -7,2 +7,5 @@ import { ISubmitAction, SubmitAction, SubmitActionOptions } from '../../core.js';

};
/**
* @deprecated This type is deprecated. Please use {@link ISigninSubmitActionData} instead. This will be removed in a future version of the SDK.
*/
interface ISignInAction extends ISubmitAction {

@@ -14,2 +17,5 @@ /**

}
/**
* @deprecated This class is deprecated. Please use {@link SigninSubmitActionData} instead. This will be removed in a future version of the SDK.
*/
declare class SignInAction extends SubmitAction implements ISignInAction {

@@ -25,2 +31,5 @@ /**

}
/**
* @deprecated This type is deprecated. Please use {@link ISigninSubmitActionData} instead. This will be removed in a future version of the SDK.
*/
interface ISignInData {

@@ -33,2 +42,5 @@ type: 'signin';

}
/**
* @deprecated This class is deprecated. Please use {@link SigninSubmitActionData} instead. This will be removed in a future version of the SDK.
*/
declare class SignInData implements ISignInData {

@@ -35,0 +47,0 @@ type: 'signin';

@@ -1,1 +0,1 @@

{"version":3,"sources":["../../../src/actions/submit/sign-in.ts"],"names":["SubmitAction"],"mappings":";;;;AAaO,MAAM,qBAAqBA,iBAAA,CAAsC;AAAA;AAAA;AAAA;AAAA,EAItE,IAAA;AAAA,EAEA,WAAA,CAAY,KAAA,EAAe,OAAA,GAA+B,EAAC,EAAG;AAC5D,IAAA,KAAA,CAAM,OAAO,CAAA;AACb,IAAA,MAAA,CAAO,MAAA,CAAO,MAAM,OAAO,CAAA;AAC3B,IAAA,IAAA,CAAK,OAAO,EAAE,OAAA,EAAS,IAAI,UAAA,CAAW,KAAK,CAAA,EAAE;AAAA,EAC/C;AAAA,EAEA,OAAO,KAAK,OAAA,EAA8B;AACxC,IAAA,OAAO,IAAI,YAAA,CAAa,OAAA,CAAQ,IAAA,CAAK,OAAA,CAAQ,OAAO,OAAO,CAAA;AAAA,EAC7D;AAAA,EAEA,SAAS,KAAA,EAAoB;AAC3B,IAAA,KAAA,CAAM,QAAA,CAAS,EAAE,OAAA,EAAS,KAAA,EAAO,CAAA;AACjC,IAAA,OAAO,IAAA;AAAA,EACT;AAAA,EAEA,UAAU,KAAA,EAAe;AACvB,IAAA,IAAA,CAAK,IAAA,CAAK,QAAQ,KAAA,GAAQ,KAAA;AAC1B,IAAA,OAAO,IAAA;AAAA,EACT;AACF;AAWO,MAAM,UAAA,CAAkC;AAAA,EAC7C,IAAA;AAAA;AAAA;AAAA;AAAA,EAKA,KAAA;AAAA,EAEA,YAAY,KAAA,EAAe;AACzB,IAAA,IAAA,CAAK,IAAA,GAAO,QAAA;AACZ,IAAA,IAAA,CAAK,KAAA,GAAQ,KAAA;AAAA,EACf;AACF","file":"sign-in.js","sourcesContent":["import { ISubmitAction, SubmitAction, SubmitActionOptions } from '../../core';\n\nimport { MSTeamsData } from './ms-teams-data';\n\nexport type SignInActionOptions = SubmitActionOptions & { data: MSTeamsData<ISignInData> };\n\nexport interface ISignInAction extends ISubmitAction {\n /**\n * Initial data that input fields will be combined with. These are essentially ‘hidden’ properties.\n */\n data: MSTeamsData<ISignInData>;\n}\n\nexport class SignInAction extends SubmitAction implements ISignInAction {\n /**\n * Initial data that input fields will be combined with. These are essentially ‘hidden’ properties.\n */\n data: MSTeamsData<ISignInData>;\n\n constructor(value: string, options: SubmitActionOptions = {}) {\n super(options);\n Object.assign(this, options);\n this.data = { msteams: new SignInData(value) };\n }\n\n static from(options: SignInActionOptions) {\n return new SignInAction(options.data.msteams.value, options);\n }\n\n withData(value: ISignInData) {\n super.withData({ msteams: value });\n return this;\n }\n\n withValue(value: string) {\n this.data.msteams.value = value;\n return this;\n }\n}\n\nexport interface ISignInData {\n type: 'signin';\n\n /**\n * Set to the `URL` where you want to redirect.\n */\n value: string;\n}\n\nexport class SignInData implements ISignInData {\n type: 'signin';\n\n /**\n * Set to the `URL` where you want to redirect.\n */\n value: string;\n\n constructor(value: string) {\n this.type = 'signin';\n this.value = value;\n }\n}\n"]}
{"version":3,"sources":["../../../src/actions/submit/sign-in.ts"],"names":["SubmitAction"],"mappings":";;;;AAmBO,MAAM,qBAAqBA,iBAAA,CAAsC;AAAA;AAAA;AAAA;AAAA,EAItE,IAAA;AAAA,EAEA,WAAA,CAAY,KAAA,EAAe,OAAA,GAA+B,EAAC,EAAG;AAC5D,IAAA,KAAA,CAAM,OAAO,CAAA;AACb,IAAA,MAAA,CAAO,MAAA,CAAO,MAAM,OAAO,CAAA;AAC3B,IAAA,IAAA,CAAK,OAAO,EAAE,OAAA,EAAS,IAAI,UAAA,CAAW,KAAK,CAAA,EAAE;AAAA,EAC/C;AAAA,EAEA,OAAO,KAAK,OAAA,EAA8B;AACxC,IAAA,OAAO,IAAI,YAAA,CAAa,OAAA,CAAQ,IAAA,CAAK,OAAA,CAAQ,OAAO,OAAO,CAAA;AAAA,EAC7D;AAAA,EAEA,SAAS,KAAA,EAAoB;AAC3B,IAAA,KAAA,CAAM,QAAA,CAAS,EAAE,OAAA,EAAS,KAAA,EAAO,CAAA;AACjC,IAAA,OAAO,IAAA;AAAA,EACT;AAAA,EAEA,UAAU,KAAA,EAAe;AACvB,IAAA,IAAA,CAAK,IAAA,CAAK,QAAQ,KAAA,GAAQ,KAAA;AAC1B,IAAA,OAAO,IAAA;AAAA,EACT;AACF;AAiBO,MAAM,UAAA,CAAkC;AAAA,EAC7C,IAAA;AAAA;AAAA;AAAA;AAAA,EAKA,KAAA;AAAA,EAEA,YAAY,KAAA,EAAe;AACzB,IAAA,IAAA,CAAK,IAAA,GAAO,QAAA;AACZ,IAAA,IAAA,CAAK,KAAA,GAAQ,KAAA;AAAA,EACf;AACF","file":"sign-in.js","sourcesContent":["import { ISubmitAction, SubmitAction, SubmitActionOptions } from '../../core';\n\nimport { MSTeamsData } from './ms-teams-data';\n\nexport type SignInActionOptions = SubmitActionOptions & { data: MSTeamsData<ISignInData> };\n\n/**\n * @deprecated This type is deprecated. Please use {@link ISigninSubmitActionData} instead. This will be removed in a future version of the SDK.\n */\nexport interface ISignInAction extends ISubmitAction {\n /**\n * Initial data that input fields will be combined with. These are essentially ‘hidden’ properties.\n */\n data: MSTeamsData<ISignInData>;\n}\n\n/**\n * @deprecated This class is deprecated. Please use {@link SigninSubmitActionData} instead. This will be removed in a future version of the SDK.\n */\nexport class SignInAction extends SubmitAction implements ISignInAction {\n /**\n * Initial data that input fields will be combined with. These are essentially ‘hidden’ properties.\n */\n data: MSTeamsData<ISignInData>;\n\n constructor(value: string, options: SubmitActionOptions = {}) {\n super(options);\n Object.assign(this, options);\n this.data = { msteams: new SignInData(value) };\n }\n\n static from(options: SignInActionOptions) {\n return new SignInAction(options.data.msteams.value, options);\n }\n\n withData(value: ISignInData) {\n super.withData({ msteams: value });\n return this;\n }\n\n withValue(value: string) {\n this.data.msteams.value = value;\n return this;\n }\n}\n\n/**\n * @deprecated This type is deprecated. Please use {@link ISigninSubmitActionData} instead. This will be removed in a future version of the SDK.\n */\nexport interface ISignInData {\n type: 'signin';\n\n /**\n * Set to the `URL` where you want to redirect.\n */\n value: string;\n}\n\n/**\n * @deprecated This class is deprecated. Please use {@link SigninSubmitActionData} instead. This will be removed in a future version of the SDK.\n */\nexport class SignInData implements ISignInData {\n type: 'signin';\n\n /**\n * Set to the `URL` where you want to redirect.\n */\n value: string;\n\n constructor(value: string) {\n this.type = 'signin';\n this.value = value;\n }\n}\n"]}

@@ -1,1 +0,1 @@

{"version":3,"sources":["../../../src/actions/submit/sign-in.ts"],"names":[],"mappings":";;AAaO,MAAM,qBAAqB,YAAA,CAAsC;AAAA;AAAA;AAAA;AAAA,EAItE,IAAA;AAAA,EAEA,WAAA,CAAY,KAAA,EAAe,OAAA,GAA+B,EAAC,EAAG;AAC5D,IAAA,KAAA,CAAM,OAAO,CAAA;AACb,IAAA,MAAA,CAAO,MAAA,CAAO,MAAM,OAAO,CAAA;AAC3B,IAAA,IAAA,CAAK,OAAO,EAAE,OAAA,EAAS,IAAI,UAAA,CAAW,KAAK,CAAA,EAAE;AAAA,EAC/C;AAAA,EAEA,OAAO,KAAK,OAAA,EAA8B;AACxC,IAAA,OAAO,IAAI,YAAA,CAAa,OAAA,CAAQ,IAAA,CAAK,OAAA,CAAQ,OAAO,OAAO,CAAA;AAAA,EAC7D;AAAA,EAEA,SAAS,KAAA,EAAoB;AAC3B,IAAA,KAAA,CAAM,QAAA,CAAS,EAAE,OAAA,EAAS,KAAA,EAAO,CAAA;AACjC,IAAA,OAAO,IAAA;AAAA,EACT;AAAA,EAEA,UAAU,KAAA,EAAe;AACvB,IAAA,IAAA,CAAK,IAAA,CAAK,QAAQ,KAAA,GAAQ,KAAA;AAC1B,IAAA,OAAO,IAAA;AAAA,EACT;AACF;AAWO,MAAM,UAAA,CAAkC;AAAA,EAC7C,IAAA;AAAA;AAAA;AAAA;AAAA,EAKA,KAAA;AAAA,EAEA,YAAY,KAAA,EAAe;AACzB,IAAA,IAAA,CAAK,IAAA,GAAO,QAAA;AACZ,IAAA,IAAA,CAAK,KAAA,GAAQ,KAAA;AAAA,EACf;AACF","file":"sign-in.mjs","sourcesContent":["import { ISubmitAction, SubmitAction, SubmitActionOptions } from '../../core';\n\nimport { MSTeamsData } from './ms-teams-data';\n\nexport type SignInActionOptions = SubmitActionOptions & { data: MSTeamsData<ISignInData> };\n\nexport interface ISignInAction extends ISubmitAction {\n /**\n * Initial data that input fields will be combined with. These are essentially ‘hidden’ properties.\n */\n data: MSTeamsData<ISignInData>;\n}\n\nexport class SignInAction extends SubmitAction implements ISignInAction {\n /**\n * Initial data that input fields will be combined with. These are essentially ‘hidden’ properties.\n */\n data: MSTeamsData<ISignInData>;\n\n constructor(value: string, options: SubmitActionOptions = {}) {\n super(options);\n Object.assign(this, options);\n this.data = { msteams: new SignInData(value) };\n }\n\n static from(options: SignInActionOptions) {\n return new SignInAction(options.data.msteams.value, options);\n }\n\n withData(value: ISignInData) {\n super.withData({ msteams: value });\n return this;\n }\n\n withValue(value: string) {\n this.data.msteams.value = value;\n return this;\n }\n}\n\nexport interface ISignInData {\n type: 'signin';\n\n /**\n * Set to the `URL` where you want to redirect.\n */\n value: string;\n}\n\nexport class SignInData implements ISignInData {\n type: 'signin';\n\n /**\n * Set to the `URL` where you want to redirect.\n */\n value: string;\n\n constructor(value: string) {\n this.type = 'signin';\n this.value = value;\n }\n}\n"]}
{"version":3,"sources":["../../../src/actions/submit/sign-in.ts"],"names":[],"mappings":";;AAmBO,MAAM,qBAAqB,YAAA,CAAsC;AAAA;AAAA;AAAA;AAAA,EAItE,IAAA;AAAA,EAEA,WAAA,CAAY,KAAA,EAAe,OAAA,GAA+B,EAAC,EAAG;AAC5D,IAAA,KAAA,CAAM,OAAO,CAAA;AACb,IAAA,MAAA,CAAO,MAAA,CAAO,MAAM,OAAO,CAAA;AAC3B,IAAA,IAAA,CAAK,OAAO,EAAE,OAAA,EAAS,IAAI,UAAA,CAAW,KAAK,CAAA,EAAE;AAAA,EAC/C;AAAA,EAEA,OAAO,KAAK,OAAA,EAA8B;AACxC,IAAA,OAAO,IAAI,YAAA,CAAa,OAAA,CAAQ,IAAA,CAAK,OAAA,CAAQ,OAAO,OAAO,CAAA;AAAA,EAC7D;AAAA,EAEA,SAAS,KAAA,EAAoB;AAC3B,IAAA,KAAA,CAAM,QAAA,CAAS,EAAE,OAAA,EAAS,KAAA,EAAO,CAAA;AACjC,IAAA,OAAO,IAAA;AAAA,EACT;AAAA,EAEA,UAAU,KAAA,EAAe;AACvB,IAAA,IAAA,CAAK,IAAA,CAAK,QAAQ,KAAA,GAAQ,KAAA;AAC1B,IAAA,OAAO,IAAA;AAAA,EACT;AACF;AAiBO,MAAM,UAAA,CAAkC;AAAA,EAC7C,IAAA;AAAA;AAAA;AAAA;AAAA,EAKA,KAAA;AAAA,EAEA,YAAY,KAAA,EAAe;AACzB,IAAA,IAAA,CAAK,IAAA,GAAO,QAAA;AACZ,IAAA,IAAA,CAAK,KAAA,GAAQ,KAAA;AAAA,EACf;AACF","file":"sign-in.mjs","sourcesContent":["import { ISubmitAction, SubmitAction, SubmitActionOptions } from '../../core';\n\nimport { MSTeamsData } from './ms-teams-data';\n\nexport type SignInActionOptions = SubmitActionOptions & { data: MSTeamsData<ISignInData> };\n\n/**\n * @deprecated This type is deprecated. Please use {@link ISigninSubmitActionData} instead. This will be removed in a future version of the SDK.\n */\nexport interface ISignInAction extends ISubmitAction {\n /**\n * Initial data that input fields will be combined with. These are essentially ‘hidden’ properties.\n */\n data: MSTeamsData<ISignInData>;\n}\n\n/**\n * @deprecated This class is deprecated. Please use {@link SigninSubmitActionData} instead. This will be removed in a future version of the SDK.\n */\nexport class SignInAction extends SubmitAction implements ISignInAction {\n /**\n * Initial data that input fields will be combined with. These are essentially ‘hidden’ properties.\n */\n data: MSTeamsData<ISignInData>;\n\n constructor(value: string, options: SubmitActionOptions = {}) {\n super(options);\n Object.assign(this, options);\n this.data = { msteams: new SignInData(value) };\n }\n\n static from(options: SignInActionOptions) {\n return new SignInAction(options.data.msteams.value, options);\n }\n\n withData(value: ISignInData) {\n super.withData({ msteams: value });\n return this;\n }\n\n withValue(value: string) {\n this.data.msteams.value = value;\n return this;\n }\n}\n\n/**\n * @deprecated This type is deprecated. Please use {@link ISigninSubmitActionData} instead. This will be removed in a future version of the SDK.\n */\nexport interface ISignInData {\n type: 'signin';\n\n /**\n * Set to the `URL` where you want to redirect.\n */\n value: string;\n}\n\n/**\n * @deprecated This class is deprecated. Please use {@link SigninSubmitActionData} instead. This will be removed in a future version of the SDK.\n */\nexport class SignInData implements ISignInData {\n type: 'signin';\n\n /**\n * Set to the `URL` where you want to redirect.\n */\n value: string;\n\n constructor(value: string) {\n this.type = 'signin';\n this.value = value;\n }\n}\n"]}

@@ -13,2 +13,5 @@ import { ISubmitAction, SubmitAction, SubmitActionOptions } from '../../core.mjs';

};
/**
* @deprecated This type is deprecated. Please use {@link ITaskFetchSubmitActionData} instead. This will be removed in a future version of the SDK.
*/
interface ITaskFetchAction extends ISubmitAction {

@@ -20,2 +23,5 @@ /**

}
/**
* @deprecated This class is deprecated. Please use {@link TaskFetchSubmitActionData} instead. This will be removed in a future version of the SDK.
*/
declare class TaskFetchAction extends SubmitAction implements ITaskFetchAction {

@@ -31,5 +37,11 @@ /**

}
/**
* @deprecated This type is deprecated. Please use {@link ITaskFetchSubmitActionData} instead. This will be removed in a future version of the SDK.
*/
interface ITaskFetchData {
type: 'task/fetch';
}
/**
* @deprecated This class is deprecated. Please use {@link TaskFetchSubmitActionData} instead. This will be removed in a future version of the SDK.
*/
declare class TaskFetchData implements MSTeamsData<ITaskFetchData> {

@@ -36,0 +48,0 @@ msteams: {

@@ -13,2 +13,5 @@ import { ISubmitAction, SubmitAction, SubmitActionOptions } from '../../core.js';

};
/**
* @deprecated This type is deprecated. Please use {@link ITaskFetchSubmitActionData} instead. This will be removed in a future version of the SDK.
*/
interface ITaskFetchAction extends ISubmitAction {

@@ -20,2 +23,5 @@ /**

}
/**
* @deprecated This class is deprecated. Please use {@link TaskFetchSubmitActionData} instead. This will be removed in a future version of the SDK.
*/
declare class TaskFetchAction extends SubmitAction implements ITaskFetchAction {

@@ -31,5 +37,11 @@ /**

}
/**
* @deprecated This type is deprecated. Please use {@link ITaskFetchSubmitActionData} instead. This will be removed in a future version of the SDK.
*/
interface ITaskFetchData {
type: 'task/fetch';
}
/**
* @deprecated This class is deprecated. Please use {@link TaskFetchSubmitActionData} instead. This will be removed in a future version of the SDK.
*/
declare class TaskFetchData implements MSTeamsData<ITaskFetchData> {

@@ -36,0 +48,0 @@ msteams: {

@@ -1,1 +0,1 @@

{"version":3,"sources":["../../../src/actions/submit/task-fetch.ts"],"names":["SubmitAction"],"mappings":";;;;AAoBO,MAAM,wBAAwBA,iBAAA,CAAyC;AAAA;AAAA;AAAA;AAAA,EAI5E,IAAA;AAAA,EAEA,WAAA,CAAY,KAAA,EAA6B,OAAA,GAA+B,EAAC,EAAG;AAC1E,IAAA,KAAA,CAAM,OAAO,CAAA;AACb,IAAA,MAAA,CAAO,MAAA,CAAO,MAAM,OAAO,CAAA;AAC3B,IAAA,IAAA,CAAK,IAAA,GAAO;AAAA,MACV,GAAG,KAAA;AAAA,MACH,OAAA,EAAS;AAAA,QACP,IAAA,EAAM;AAAA;AACR,KACF;AAAA,EACF;AAAA,EAEA,OAAO,KAAK,OAAA,EAAiC;AAC3C,IAAA,OAAO,IAAI,eAAA,CAAgB,OAAA,CAAQ,IAAA,EAAM,OAAO,CAAA;AAAA,EAClD;AAAA,EAEA,SAAS,KAAA,EAAoC;AAC3C,IAAA,IAAA,CAAK,IAAA,GAAO,KAAA;AACZ,IAAA,OAAO,IAAA;AAAA,EACT;AAAA,EAEA,UAAU,KAAA,EAA4B;AACpC,IAAA,KAAA,CAAM,QAAA,CAAS,EAAE,GAAG,IAAA,CAAK,IAAA,EAAM,GAAG,KAAA,EAAO,OAAA,EAAS,EAAE,IAAA,EAAM,YAAA,EAAa,EAAG,CAAA;AAC1E,IAAA,OAAO,IAAA;AAAA,EACT;AACF;AAMO,MAAM,aAAA,CAAqD;AAAA,EAChE,OAAA,GAAU;AAAA,IACR,IAAA,EAAM;AAAA,GACR;AAAA,EAEA,YAAY,IAAA,EAA4B;AAEtC,IAAA,IAAI,IAAA,EAAM;AACR,MAAA,MAAM,EAAE,OAAA,EAAS,GAAG,IAAA,EAAK,GAAI,IAAA;AAC7B,MAAA,MAAA,CAAO,MAAA,CAAO,MAAM,IAAI,CAAA;AAAA,IAC1B;AAAA,EACF;AACF","file":"task-fetch.js","sourcesContent":["import { ISubmitAction, SubmitAction, SubmitActionOptions } from '../../core';\n\nimport { MSTeamsData } from './ms-teams-data';\n\nexport type TaskFetchActionOptions = SubmitActionOptions & { data: MSTeamsData<ITaskFetchData> };\n\nexport type TaskFetchDataValues = {\n [key: string]: any;\n} & {\n /** type is special so we shouldn't allow overriding it */\n type?: never;\n};\n\nexport interface ITaskFetchAction extends ISubmitAction {\n /**\n * Initial data that input fields will be combined with. These are essentially ‘hidden’ properties.\n */\n data: MSTeamsData<ITaskFetchData>;\n}\n\nexport class TaskFetchAction extends SubmitAction implements ITaskFetchAction {\n /**\n * Initial data that input fields will be combined with. These are essentially ‘hidden’ properties.\n */\n data: MSTeamsData<ITaskFetchData>;\n\n constructor(value?: TaskFetchDataValues, options: SubmitActionOptions = {}) {\n super(options);\n Object.assign(this, options);\n this.data = {\n ...value,\n msteams: {\n type: 'task/fetch',\n },\n };\n }\n\n static from(options: TaskFetchActionOptions) {\n return new TaskFetchAction(options.data, options);\n }\n\n withData(value: MSTeamsData<ITaskFetchData>) {\n this.data = value;\n return this;\n }\n\n withValue(value: TaskFetchDataValues) {\n super.withData({ ...this.data, ...value, msteams: { type: 'task/fetch' } });\n return this;\n }\n}\n\nexport interface ITaskFetchData {\n type: 'task/fetch';\n}\n\nexport class TaskFetchData implements MSTeamsData<ITaskFetchData> {\n msteams = {\n type: 'task/fetch' as const,\n };\n\n constructor(data?: TaskFetchDataValues) {\n // omit the msteams property if it exists\n if (data) {\n const { msteams, ...rest } = data;\n Object.assign(this, rest);\n }\n }\n}\n"]}
{"version":3,"sources":["../../../src/actions/submit/task-fetch.ts"],"names":["SubmitAction"],"mappings":";;;;AA0BO,MAAM,wBAAwBA,iBAAA,CAAyC;AAAA;AAAA;AAAA;AAAA,EAI5E,IAAA;AAAA,EAEA,WAAA,CAAY,KAAA,EAA6B,OAAA,GAA+B,EAAC,EAAG;AAC1E,IAAA,KAAA,CAAM,OAAO,CAAA;AACb,IAAA,MAAA,CAAO,MAAA,CAAO,MAAM,OAAO,CAAA;AAC3B,IAAA,IAAA,CAAK,IAAA,GAAO;AAAA,MACV,GAAG,KAAA;AAAA,MACH,OAAA,EAAS;AAAA,QACP,IAAA,EAAM;AAAA;AACR,KACF;AAAA,EACF;AAAA,EAEA,OAAO,KAAK,OAAA,EAAiC;AAC3C,IAAA,OAAO,IAAI,eAAA,CAAgB,OAAA,CAAQ,IAAA,EAAM,OAAO,CAAA;AAAA,EAClD;AAAA,EAEA,SAAS,KAAA,EAAoC;AAC3C,IAAA,IAAA,CAAK,IAAA,GAAO,KAAA;AACZ,IAAA,OAAO,IAAA;AAAA,EACT;AAAA,EAEA,UAAU,KAAA,EAA4B;AACpC,IAAA,KAAA,CAAM,QAAA,CAAS,EAAE,GAAG,IAAA,CAAK,IAAA,EAAM,GAAG,KAAA,EAAO,OAAA,EAAS,EAAE,IAAA,EAAM,YAAA,EAAa,EAAG,CAAA;AAC1E,IAAA,OAAO,IAAA;AAAA,EACT;AACF;AAYO,MAAM,aAAA,CAAqD;AAAA,EAChE,OAAA,GAAU;AAAA,IACR,IAAA,EAAM;AAAA,GACR;AAAA,EAEA,YAAY,IAAA,EAA4B;AAEtC,IAAA,IAAI,IAAA,EAAM;AACR,MAAA,MAAM,EAAE,OAAA,EAAS,GAAG,IAAA,EAAK,GAAI,IAAA;AAC7B,MAAA,MAAA,CAAO,MAAA,CAAO,MAAM,IAAI,CAAA;AAAA,IAC1B;AAAA,EACF;AACF","file":"task-fetch.js","sourcesContent":["import { ISubmitAction, SubmitAction, SubmitActionOptions } from '../../core';\n\nimport { MSTeamsData } from './ms-teams-data';\n\nexport type TaskFetchActionOptions = SubmitActionOptions & { data: MSTeamsData<ITaskFetchData> };\n\nexport type TaskFetchDataValues = {\n [key: string]: any;\n} & {\n /** type is special so we shouldn't allow overriding it */\n type?: never;\n};\n\n/**\n * @deprecated This type is deprecated. Please use {@link ITaskFetchSubmitActionData} instead. This will be removed in a future version of the SDK.\n */\nexport interface ITaskFetchAction extends ISubmitAction {\n /**\n * Initial data that input fields will be combined with. These are essentially ‘hidden’ properties.\n */\n data: MSTeamsData<ITaskFetchData>;\n}\n\n/**\n * @deprecated This class is deprecated. Please use {@link TaskFetchSubmitActionData} instead. This will be removed in a future version of the SDK.\n */\nexport class TaskFetchAction extends SubmitAction implements ITaskFetchAction {\n /**\n * Initial data that input fields will be combined with. These are essentially ‘hidden’ properties.\n */\n data: MSTeamsData<ITaskFetchData>;\n\n constructor(value?: TaskFetchDataValues, options: SubmitActionOptions = {}) {\n super(options);\n Object.assign(this, options);\n this.data = {\n ...value,\n msteams: {\n type: 'task/fetch',\n },\n };\n }\n\n static from(options: TaskFetchActionOptions) {\n return new TaskFetchAction(options.data, options);\n }\n\n withData(value: MSTeamsData<ITaskFetchData>) {\n this.data = value;\n return this;\n }\n\n withValue(value: TaskFetchDataValues) {\n super.withData({ ...this.data, ...value, msteams: { type: 'task/fetch' } });\n return this;\n }\n}\n\n/**\n * @deprecated This type is deprecated. Please use {@link ITaskFetchSubmitActionData} instead. This will be removed in a future version of the SDK.\n */\nexport interface ITaskFetchData {\n type: 'task/fetch';\n}\n\n/**\n * @deprecated This class is deprecated. Please use {@link TaskFetchSubmitActionData} instead. This will be removed in a future version of the SDK.\n */\nexport class TaskFetchData implements MSTeamsData<ITaskFetchData> {\n msteams = {\n type: 'task/fetch' as const,\n };\n\n constructor(data?: TaskFetchDataValues) {\n // omit the msteams property if it exists\n if (data) {\n const { msteams, ...rest } = data;\n Object.assign(this, rest);\n }\n }\n}\n"]}

@@ -1,1 +0,1 @@

{"version":3,"sources":["../../../src/actions/submit/task-fetch.ts"],"names":[],"mappings":";;AAoBO,MAAM,wBAAwB,YAAA,CAAyC;AAAA;AAAA;AAAA;AAAA,EAI5E,IAAA;AAAA,EAEA,WAAA,CAAY,KAAA,EAA6B,OAAA,GAA+B,EAAC,EAAG;AAC1E,IAAA,KAAA,CAAM,OAAO,CAAA;AACb,IAAA,MAAA,CAAO,MAAA,CAAO,MAAM,OAAO,CAAA;AAC3B,IAAA,IAAA,CAAK,IAAA,GAAO;AAAA,MACV,GAAG,KAAA;AAAA,MACH,OAAA,EAAS;AAAA,QACP,IAAA,EAAM;AAAA;AACR,KACF;AAAA,EACF;AAAA,EAEA,OAAO,KAAK,OAAA,EAAiC;AAC3C,IAAA,OAAO,IAAI,eAAA,CAAgB,OAAA,CAAQ,IAAA,EAAM,OAAO,CAAA;AAAA,EAClD;AAAA,EAEA,SAAS,KAAA,EAAoC;AAC3C,IAAA,IAAA,CAAK,IAAA,GAAO,KAAA;AACZ,IAAA,OAAO,IAAA;AAAA,EACT;AAAA,EAEA,UAAU,KAAA,EAA4B;AACpC,IAAA,KAAA,CAAM,QAAA,CAAS,EAAE,GAAG,IAAA,CAAK,IAAA,EAAM,GAAG,KAAA,EAAO,OAAA,EAAS,EAAE,IAAA,EAAM,YAAA,EAAa,EAAG,CAAA;AAC1E,IAAA,OAAO,IAAA;AAAA,EACT;AACF;AAMO,MAAM,aAAA,CAAqD;AAAA,EAChE,OAAA,GAAU;AAAA,IACR,IAAA,EAAM;AAAA,GACR;AAAA,EAEA,YAAY,IAAA,EAA4B;AAEtC,IAAA,IAAI,IAAA,EAAM;AACR,MAAA,MAAM,EAAE,OAAA,EAAS,GAAG,IAAA,EAAK,GAAI,IAAA;AAC7B,MAAA,MAAA,CAAO,MAAA,CAAO,MAAM,IAAI,CAAA;AAAA,IAC1B;AAAA,EACF;AACF","file":"task-fetch.mjs","sourcesContent":["import { ISubmitAction, SubmitAction, SubmitActionOptions } from '../../core';\n\nimport { MSTeamsData } from './ms-teams-data';\n\nexport type TaskFetchActionOptions = SubmitActionOptions & { data: MSTeamsData<ITaskFetchData> };\n\nexport type TaskFetchDataValues = {\n [key: string]: any;\n} & {\n /** type is special so we shouldn't allow overriding it */\n type?: never;\n};\n\nexport interface ITaskFetchAction extends ISubmitAction {\n /**\n * Initial data that input fields will be combined with. These are essentially ‘hidden’ properties.\n */\n data: MSTeamsData<ITaskFetchData>;\n}\n\nexport class TaskFetchAction extends SubmitAction implements ITaskFetchAction {\n /**\n * Initial data that input fields will be combined with. These are essentially ‘hidden’ properties.\n */\n data: MSTeamsData<ITaskFetchData>;\n\n constructor(value?: TaskFetchDataValues, options: SubmitActionOptions = {}) {\n super(options);\n Object.assign(this, options);\n this.data = {\n ...value,\n msteams: {\n type: 'task/fetch',\n },\n };\n }\n\n static from(options: TaskFetchActionOptions) {\n return new TaskFetchAction(options.data, options);\n }\n\n withData(value: MSTeamsData<ITaskFetchData>) {\n this.data = value;\n return this;\n }\n\n withValue(value: TaskFetchDataValues) {\n super.withData({ ...this.data, ...value, msteams: { type: 'task/fetch' } });\n return this;\n }\n}\n\nexport interface ITaskFetchData {\n type: 'task/fetch';\n}\n\nexport class TaskFetchData implements MSTeamsData<ITaskFetchData> {\n msteams = {\n type: 'task/fetch' as const,\n };\n\n constructor(data?: TaskFetchDataValues) {\n // omit the msteams property if it exists\n if (data) {\n const { msteams, ...rest } = data;\n Object.assign(this, rest);\n }\n }\n}\n"]}
{"version":3,"sources":["../../../src/actions/submit/task-fetch.ts"],"names":[],"mappings":";;AA0BO,MAAM,wBAAwB,YAAA,CAAyC;AAAA;AAAA;AAAA;AAAA,EAI5E,IAAA;AAAA,EAEA,WAAA,CAAY,KAAA,EAA6B,OAAA,GAA+B,EAAC,EAAG;AAC1E,IAAA,KAAA,CAAM,OAAO,CAAA;AACb,IAAA,MAAA,CAAO,MAAA,CAAO,MAAM,OAAO,CAAA;AAC3B,IAAA,IAAA,CAAK,IAAA,GAAO;AAAA,MACV,GAAG,KAAA;AAAA,MACH,OAAA,EAAS;AAAA,QACP,IAAA,EAAM;AAAA;AACR,KACF;AAAA,EACF;AAAA,EAEA,OAAO,KAAK,OAAA,EAAiC;AAC3C,IAAA,OAAO,IAAI,eAAA,CAAgB,OAAA,CAAQ,IAAA,EAAM,OAAO,CAAA;AAAA,EAClD;AAAA,EAEA,SAAS,KAAA,EAAoC;AAC3C,IAAA,IAAA,CAAK,IAAA,GAAO,KAAA;AACZ,IAAA,OAAO,IAAA;AAAA,EACT;AAAA,EAEA,UAAU,KAAA,EAA4B;AACpC,IAAA,KAAA,CAAM,QAAA,CAAS,EAAE,GAAG,IAAA,CAAK,IAAA,EAAM,GAAG,KAAA,EAAO,OAAA,EAAS,EAAE,IAAA,EAAM,YAAA,EAAa,EAAG,CAAA;AAC1E,IAAA,OAAO,IAAA;AAAA,EACT;AACF;AAYO,MAAM,aAAA,CAAqD;AAAA,EAChE,OAAA,GAAU;AAAA,IACR,IAAA,EAAM;AAAA,GACR;AAAA,EAEA,YAAY,IAAA,EAA4B;AAEtC,IAAA,IAAI,IAAA,EAAM;AACR,MAAA,MAAM,EAAE,OAAA,EAAS,GAAG,IAAA,EAAK,GAAI,IAAA;AAC7B,MAAA,MAAA,CAAO,MAAA,CAAO,MAAM,IAAI,CAAA;AAAA,IAC1B;AAAA,EACF;AACF","file":"task-fetch.mjs","sourcesContent":["import { ISubmitAction, SubmitAction, SubmitActionOptions } from '../../core';\n\nimport { MSTeamsData } from './ms-teams-data';\n\nexport type TaskFetchActionOptions = SubmitActionOptions & { data: MSTeamsData<ITaskFetchData> };\n\nexport type TaskFetchDataValues = {\n [key: string]: any;\n} & {\n /** type is special so we shouldn't allow overriding it */\n type?: never;\n};\n\n/**\n * @deprecated This type is deprecated. Please use {@link ITaskFetchSubmitActionData} instead. This will be removed in a future version of the SDK.\n */\nexport interface ITaskFetchAction extends ISubmitAction {\n /**\n * Initial data that input fields will be combined with. These are essentially ‘hidden’ properties.\n */\n data: MSTeamsData<ITaskFetchData>;\n}\n\n/**\n * @deprecated This class is deprecated. Please use {@link TaskFetchSubmitActionData} instead. This will be removed in a future version of the SDK.\n */\nexport class TaskFetchAction extends SubmitAction implements ITaskFetchAction {\n /**\n * Initial data that input fields will be combined with. These are essentially ‘hidden’ properties.\n */\n data: MSTeamsData<ITaskFetchData>;\n\n constructor(value?: TaskFetchDataValues, options: SubmitActionOptions = {}) {\n super(options);\n Object.assign(this, options);\n this.data = {\n ...value,\n msteams: {\n type: 'task/fetch',\n },\n };\n }\n\n static from(options: TaskFetchActionOptions) {\n return new TaskFetchAction(options.data, options);\n }\n\n withData(value: MSTeamsData<ITaskFetchData>) {\n this.data = value;\n return this;\n }\n\n withValue(value: TaskFetchDataValues) {\n super.withData({ ...this.data, ...value, msteams: { type: 'task/fetch' } });\n return this;\n }\n}\n\n/**\n * @deprecated This type is deprecated. Please use {@link ITaskFetchSubmitActionData} instead. This will be removed in a future version of the SDK.\n */\nexport interface ITaskFetchData {\n type: 'task/fetch';\n}\n\n/**\n * @deprecated This class is deprecated. Please use {@link TaskFetchSubmitActionData} instead. This will be removed in a future version of the SDK.\n */\nexport class TaskFetchData implements MSTeamsData<ITaskFetchData> {\n msteams = {\n type: 'task/fetch' as const,\n };\n\n constructor(data?: TaskFetchDataValues) {\n // omit the msteams property if it exists\n if (data) {\n const { msteams, ...rest } = data;\n Object.assign(this, rest);\n }\n }\n}\n"]}

@@ -1,2 +0,2 @@

export { ActionArray, ActionMode, ActionSet, ActionSetOptions, ActionStyle, AdaptiveCard, AdaptiveCardOptions, AreaGridLayout, AreaGridLayoutOptions, AuthCardButton, AuthCardButtonOptions, Authentication, AuthenticationOptions, BackgroundImage, BackgroundImageOptions, Badge, BadgeAppearance, BadgeIconPosition, BadgeOptions, BadgeShape, BadgeSize, BadgeStyle, BarChartDataValue, BarChartDataValueOptions, CalendarEventAttendee, CalendarEventAttendeeOptions, CalendarEventProperties, CalendarEventPropertiesOptions, CaptionSource, CaptionSourceOptions, CardAction, CardElement, CardElementArray, CardMetadata, CardMetadataOptions, Carousel, CarouselOptions, CarouselPage, CarouselPageAnimation, CarouselPageOptions, ChartColor, ChartColorSet, Choice, ChoiceOptions, ChoiceSetInput, ChoiceSetInputOptions, CodeBlock, CodeBlockOptions, Column, ColumnArray, ColumnDefinition, ColumnDefinitionOptions, ColumnOptions, ColumnSet, ColumnSetOptions, ComEventMicrosoftGraphComponent, ComEventMicrosoftGraphComponentOptions, ComFileMicrosoftGraphComponent, ComFileMicrosoftGraphComponentOptions, ComResourceMicrosoftGraphComponent, ComResourceMicrosoftGraphComponentOptions, ComUserMicrosoftGraphComponent, ComUserMicrosoftGraphComponentOptions, ComUsersMicrosoftGraphComponent, ComUsersMicrosoftGraphComponentOptions, CompoundButton, CompoundButtonOptions, Container, ContainerOptions, ContainerStyle, DateInput, DateInputOptions, DonutChart, DonutChartData, DonutChartDataOptions, DonutChartOptions, ElementHeight, ExecuteAction, ExecuteActionOptions, Fact, FactOptions, FactSet, FactSetOptions, FallbackAction, FallbackElement, FileProperties, FilePropertiesOptions, FillMode, FlowLayout, FlowLayoutItemFit, FlowLayoutOptions, FontType, GaugeChart, GaugeChartLegend, GaugeChartLegendOptions, GaugeChartOptions, GaugeChartValueFormat, GridArea, GridAreaOptions, GroupedVerticalBarChart, GroupedVerticalBarChartData, GroupedVerticalBarChartDataOptions, GroupedVerticalBarChartOptions, HorizontalAlignment, HorizontalBarChart, HorizontalBarChartDataValue, HorizontalBarChartDataValueOptions, HorizontalBarChartDisplayMode, HorizontalBarChartOptions, HostCapabilities, IActionSet, IAdaptiveCard, IAreaGridLayout, IAuthCardButton, IAuthentication, IBackgroundImage, IBadge, IBarChartDataValue, ICalendarEventAttendee, ICalendarEventProperties, ICaptionSource, ICardMetadata, ICarousel, ICarouselPage, IChoice, IChoiceSetInput, ICodeBlock, IColumn, IColumnDefinition, IColumnSet, IComEventMicrosoftGraphComponent, IComFileMicrosoftGraphComponent, IComResourceMicrosoftGraphComponent, IComUserMicrosoftGraphComponent, IComUsersMicrosoftGraphComponent, ICompoundButton, IContainer, IDateInput, IDonutChart, IDonutChartData, IExecuteAction, IFact, IFactSet, IFileProperties, IFlowLayout, IGaugeChart, IGaugeChartLegend, IGridArea, IGroupedVerticalBarChart, IGroupedVerticalBarChartData, IHorizontalBarChart, IHorizontalBarChartDataValue, IHostCapabilities, IIcon, IIconInfo, IImage, IImageSet, ILineChart, ILineChartData, ILineChartValue, IMedia, IMediaSource, IMention, IMentionedEntity, INumberInput, IOpenUrlAction, IPersonaProperties, IPersonaSetProperties, IPieChart, IQueryData, IRating, IRatingInput, IRefreshDefinition, IResetInputsAction, IResourceProperties, IResourceVisualization, IRichTextBlock, IShowCardAction, IStackLayout, IStackedHorizontalBarChart, IStackedHorizontalBarChartData, IStackedHorizontalBarChartDataPoint, ISubmitAction, ITable, ITableCell, ITableRow, ITargetElement, ITeamsCardProperties, ITeamsImageProperties, ITeamsSubmitActionFeedback, ITeamsSubmitActionProperties, ITextBlock, ITextInput, ITextRun, ITimeInput, IToggleInput, IToggleVisibilityAction, ITokenExchangeResource, IVerticalBarChart, IVerticalBarChartDataValue, Icon, IconInfo, IconInfoOptions, IconName, IconOptions, IconSize, IconStyle, Image, ImageOptions, ImageSet, ImageSetOptions, ImageSize, ImageStyle, InputTextStyle, LineChart, LineChartData, LineChartDataOptions, LineChartOptions, LineChartValue, LineChartValueOptions, Media, MediaOptions, MediaSource, MediaSourceOptions, Mention, MentionOptions, MentionType, MentionedEntity, MentionedEntityOptions, NumberInput, NumberInputOptions, OpenUrlAction, OpenUrlActionOptions, PersonaProperties, PersonaPropertiesOptions, PersonaSetProperties, PersonaSetPropertiesOptions, PieChart, PieChartOptions, QueryData, QueryDataOptions, Rating, RatingColor, RatingInput, RatingInputOptions, RatingOptions, RatingSize, RatingStyle, RefreshDefinition, RefreshDefinitionOptions, ResetInputsAction, ResetInputsActionOptions, ResourceProperties, ResourcePropertiesOptions, ResourceVisualization, ResourceVisualizationOptions, RichTextBlock, RichTextBlockInlineArray, RichTextBlockOptions, ShowCardAction, ShowCardActionOptions, Size, Spacing, StackLayout, StackLayoutOptions, StackedHorizontalBarChart, StackedHorizontalBarChartData, StackedHorizontalBarChartDataOptions, StackedHorizontalBarChartDataPoint, StackedHorizontalBarChartDataPointOptions, StackedHorizontalBarChartOptions, SubmitAction, SubmitActionOptions, Table, TableCell, TableCellArray, TableCellOptions, TableOptions, TableRow, TableRowArray, TableRowOptions, TargetElement, TargetElementOptions, TargetWidth, TeamsCardProperties, TeamsCardPropertiesOptions, TeamsImageProperties, TeamsImagePropertiesOptions, TeamsSubmitActionFeedback, TeamsSubmitActionFeedbackOptions, TeamsSubmitActionProperties, TeamsSubmitActionPropertiesOptions, TextBlock, TextBlockOptions, TextColor, TextInput, TextInputOptions, TextRun, TextRunOptions, TextSize, TextWeight, TimeInput, TimeInputOptions, ToggleInput, ToggleInputOptions, ToggleVisibilityAction, ToggleVisibilityActionOptions, TokenExchangeResource, TokenExchangeResourceOptions, VerticalAlignment, VerticalBarChart, VerticalBarChartDataValue, VerticalBarChartDataValueOptions, VerticalBarChartOptions, isActionSet, isAdaptiveCard, isAreaGridLayout, isBadge, isCarousel, isCarouselPage, isChoiceSetInput, isCodeBlock, isColumn, isColumnSet, isComEventMicrosoftGraphComponent, isComFileMicrosoftGraphComponent, isComResourceMicrosoftGraphComponent, isComUserMicrosoftGraphComponent, isComUsersMicrosoftGraphComponent, isCompoundButton, isContainer, isDateInput, isDonutChart, isExecuteAction, isFactSet, isFlowLayout, isGaugeChart, isGroupedVerticalBarChart, isHorizontalBarChart, isIcon, isImage, isImageSet, isLineChart, isMedia, isMention, isNumberInput, isOpenUrlAction, isPieChart, isQueryData, isRating, isRatingInput, isResetInputsAction, isRichTextBlock, isShowCardAction, isStackLayout, isStackedHorizontalBarChart, isSubmitAction, isTable, isTableCell, isTableRow, isTextBlock, isTextInput, isTextRun, isTimeInput, isToggleInput, isToggleVisibilityAction, isVerticalBarChart } from './core.mjs';
export { Action, ActionArray, ActionMode, ActionSet, ActionSetOptions, ActionStyle, AdaptiveCard, AdaptiveCardOptions, AreaGridLayout, AreaGridLayoutOptions, AssociatedInputs, AuthCardButton, AuthCardButtonOptions, Authentication, AuthenticationOptions, BackgroundImage, BackgroundImageOptions, Badge, BadgeAppearance, BadgeIconPosition, BadgeOptions, BadgeShape, BadgeSize, BadgeStyle, BarChartDataValue, BarChartDataValueOptions, CalendarEventAttendee, CalendarEventAttendeeOptions, CalendarEventProperties, CalendarEventPropertiesOptions, CaptionSource, CaptionSourceOptions, CardElement, CardElementArray, CardMetadata, CardMetadataOptions, Carousel, CarouselOptions, CarouselPage, CarouselPageAnimation, CarouselPageOptions, ChartColor, ChartColorSet, Choice, ChoiceOptions, ChoiceSetInput, ChoiceSetInputOptions, ChoiceSetInputStyle, CodeBlock, CodeBlockOptions, CodeLanguage, CollabStageInvokeDataValue, CollabStageInvokeDataValueOptions, Column, ColumnArray, ColumnDefinition, ColumnDefinitionOptions, ColumnOptions, ColumnSet, ColumnSetOptions, ComEventMicrosoftGraphComponent, ComEventMicrosoftGraphComponentOptions, ComFileMicrosoftGraphComponent, ComFileMicrosoftGraphComponentOptions, ComResourceMicrosoftGraphComponent, ComResourceMicrosoftGraphComponentOptions, ComUserMicrosoftGraphComponent, ComUserMicrosoftGraphComponentOptions, ComUsersMicrosoftGraphComponent, ComUsersMicrosoftGraphComponentOptions, CompoundButton, CompoundButtonOptions, Container, ContainerOptions, ContainerStyle, DateInput, DateInputOptions, DonutChart, DonutChartData, DonutChartDataOptions, DonutChartOptions, DonutThickness, ElementHeight, ExecuteAction, ExecuteActionOptions, Fact, FactOptions, FactSet, FactSetOptions, FallbackAction, FallbackElement, FileProperties, FilePropertiesOptions, FillMode, FlowLayout, FlowLayoutItemFit, FlowLayoutOptions, FontType, GaugeChart, GaugeChartLegend, GaugeChartLegendOptions, GaugeChartOptions, GaugeChartValueFormat, GridArea, GridAreaOptions, GroupedVerticalBarChart, GroupedVerticalBarChartData, GroupedVerticalBarChartDataOptions, GroupedVerticalBarChartOptions, HorizontalAlignment, HorizontalBarChart, HorizontalBarChartDataValue, HorizontalBarChartDataValueOptions, HorizontalBarChartDisplayMode, HorizontalBarChartOptions, HostCapabilities, HostCapabilitiesOptions, IActionSet, IAdaptiveCard, IAreaGridLayout, IAuthCardButton, IAuthentication, IBackgroundImage, IBadge, IBarChartDataValue, ICalendarEventAttendee, ICalendarEventProperties, ICaptionSource, ICardMetadata, ICarousel, ICarouselPage, IChoice, IChoiceSetInput, ICodeBlock, ICollabStageInvokeDataValue, IColumn, IColumnDefinition, IColumnSet, IComEventMicrosoftGraphComponent, IComFileMicrosoftGraphComponent, IComResourceMicrosoftGraphComponent, IComUserMicrosoftGraphComponent, IComUsersMicrosoftGraphComponent, ICompoundButton, IContainer, IDateInput, IDonutChart, IDonutChartData, IExecuteAction, IFact, IFactSet, IFileProperties, IFlowLayout, IGaugeChart, IGaugeChartLegend, IGridArea, IGroupedVerticalBarChart, IGroupedVerticalBarChartData, IHorizontalBarChart, IHorizontalBarChartDataValue, IHostCapabilities, IIcon, IIconInfo, IIconRun, IImBackSubmitActionData, IImage, IImageRun, IImageSet, IInsertImageAction, IInvokeSubmitActionData, ILineChart, ILineChartData, ILineChartValue, IMedia, IMediaSource, IMention, IMentionedEntity, IMessageBackSubmitActionData, INumberInput, IOpenUrlAction, IOpenUrlDialogAction, IPersonaProperties, IPersonaSetProperties, IPieChart, IPopoverAction, IProgressBar, IProgressRing, IQueryData, IRating, IRatingInput, IRefreshDefinition, IResetInputsAction, IResourceProperties, IResourceVisualization, IResources, IRichTextBlock, IShowCardAction, ISigninSubmitActionData, IStackLayout, IStackedHorizontalBarChart, IStackedHorizontalBarChartData, IStackedHorizontalBarChartDataPoint, IStringResource, ISubmitAction, ISubmitActionData, ITabInfo, ITable, ITableCell, ITableRow, ITargetElement, ITaskFetchSubmitActionData, ITeamsCardProperties, ITeamsImageProperties, ITeamsSubmitActionFeedback, ITeamsSubmitActionProperties, ITextBlock, ITextInput, ITextRun, IThemedUrl, ITimeInput, IToggleInput, IToggleVisibilityAction, ITokenExchangeResource, IVerticalBarChart, IVerticalBarChartDataValue, Icon, IconInfo, IconInfoOptions, IconName, IconOptions, IconRun, IconRunOptions, IconSize, IconStyle, ImBackSubmitActionData, ImBackSubmitActionDataOptions, Image, ImageFitMode, ImageInsertPosition, ImageOptions, ImageRun, ImageRunOptions, ImageSet, ImageSetOptions, ImageSize, ImageStyle, InputTextStyle, InsertImageAction, InsertImageActionOptions, InvokeSubmitActionData, InvokeSubmitActionDataOptions, LineChart, LineChartData, LineChartDataOptions, LineChartOptions, LineChartValue, LineChartValueOptions, Media, MediaOptions, MediaSource, MediaSourceOptions, Mention, MentionOptions, MentionType, MentionedEntity, MentionedEntityOptions, MenuActionArray, MessageBackSubmitActionData, MessageBackSubmitActionDataOptions, NumberInput, NumberInputOptions, OpenUrlAction, OpenUrlActionOptions, OpenUrlDialogAction, OpenUrlDialogActionOptions, PersonaDisplayStyle, PersonaIconStyle, PersonaProperties, PersonaPropertiesOptions, PersonaSetProperties, PersonaSetPropertiesOptions, PieChart, PieChartOptions, PopoverAction, PopoverActionOptions, PopoverPosition, ProgressBar, ProgressBarColor, ProgressBarOptions, ProgressRing, ProgressRingLabelPosition, ProgressRingOptions, ProgressRingSize, QueryData, QueryDataOptions, Rating, RatingColor, RatingInput, RatingInputOptions, RatingOptions, RatingSize, RatingStyle, RefreshDefinition, RefreshDefinitionOptions, ResetInputsAction, ResetInputsActionOptions, ResourceProperties, ResourcePropertiesOptions, ResourceVisualization, ResourceVisualizationOptions, Resources, ResourcesOptions, RichTextBlock, RichTextBlockInlineArray, RichTextBlockOptions, ShowCardAction, ShowCardActionOptions, SigninSubmitActionData, SigninSubmitActionDataOptions, Size, Spacing, StackLayout, StackLayoutOptions, StackedHorizontalBarChart, StackedHorizontalBarChartData, StackedHorizontalBarChartDataOptions, StackedHorizontalBarChartDataPoint, StackedHorizontalBarChartDataPointOptions, StackedHorizontalBarChartOptions, StringResource, StringResourceOptions, SubmitAction, SubmitActionData, SubmitActionDataOptions, SubmitActionOptions, TabInfo, TabInfoOptions, Table, TableCell, TableCellArray, TableCellOptions, TableOptions, TableRow, TableRowArray, TableRowOptions, TargetElement, TargetElementOptions, TargetWidth, TaskFetchSubmitActionData, TaskFetchSubmitActionDataOptions, TeamsCardProperties, TeamsCardPropertiesOptions, TeamsCardWidth, TeamsImageProperties, TeamsImagePropertiesOptions, TeamsSubmitActionFeedback, TeamsSubmitActionFeedbackOptions, TeamsSubmitActionProperties, TeamsSubmitActionPropertiesOptions, TextBlock, TextBlockOptions, TextBlockStyle, TextColor, TextInput, TextInputOptions, TextRun, TextRunOptions, TextSize, TextWeight, ThemeName, ThemedUrl, ThemedUrlOptions, TimeInput, TimeInputOptions, ToggleInput, ToggleInputOptions, ToggleVisibilityAction, ToggleVisibilityActionOptions, TokenExchangeResource, TokenExchangeResourceOptions, Version, VerticalAlignment, VerticalBarChart, VerticalBarChartDataValue, VerticalBarChartDataValueOptions, VerticalBarChartOptions, isActionSet, isAdaptiveCard, isAreaGridLayout, isBadge, isCarousel, isCarouselPage, isChoiceSetInput, isCodeBlock, isCollabStageInvokeDataValue, isColumn, isColumnSet, isComEventMicrosoftGraphComponent, isComFileMicrosoftGraphComponent, isComResourceMicrosoftGraphComponent, isComUserMicrosoftGraphComponent, isComUsersMicrosoftGraphComponent, isCompoundButton, isContainer, isDateInput, isDonutChart, isExecuteAction, isFactSet, isFlowLayout, isGaugeChart, isGroupedVerticalBarChart, isHorizontalBarChart, isIcon, isIconRun, isImBackSubmitActionData, isImage, isImageRun, isImageSet, isInsertImageAction, isInvokeSubmitActionData, isLineChart, isMedia, isMention, isMessageBackSubmitActionData, isNumberInput, isOpenUrlAction, isOpenUrlDialogAction, isPieChart, isPopoverAction, isProgressBar, isProgressRing, isQueryData, isRating, isRatingInput, isResetInputsAction, isRichTextBlock, isShowCardAction, isSigninSubmitActionData, isStackLayout, isStackedHorizontalBarChart, isSubmitAction, isTable, isTableCell, isTableRow, isTaskFetchSubmitActionData, isTextBlock, isTextInput, isTextRun, isTimeInput, isToggleInput, isToggleVisibilityAction, isVerticalBarChart } from './core.mjs';
export { IIMBackAction, IIMBackData, IMBackAction, IMBackActionOptions, IMBackData } from './actions/submit/im-back.mjs';

@@ -7,4 +7,5 @@ export { IInvokeAction, IInvokeData, InvokeAction, InvokeActionOptions, InvokeData } from './actions/submit/invoke.mjs';

export { ITaskFetchAction, ITaskFetchData, TaskFetchAction, TaskFetchActionOptions, TaskFetchData, TaskFetchDataValues } from './actions/submit/task-fetch.mjs';
export { CollabStageAction, CollabStageActionOptions, CollabStageData, CollabStageValueData, ICollabStageAction, ICollabStageData, ICollabStageValueData } from './actions/submit/collab-stage.mjs';
export { ITabInfo } from './common/tab-info.mjs';
export { CollabStageAction, CollabStageActionOptions, ICollabStageAction } from './actions/submit/collab-stage.mjs';
export { SubmitData } from './utilities/submit-data.mjs';
export { OpenDialogData } from './utilities/open-dialog-data.mjs';
import './actions/submit/ms-teams-data.mjs';

@@ -1,2 +0,2 @@

export { ActionArray, ActionMode, ActionSet, ActionSetOptions, ActionStyle, AdaptiveCard, AdaptiveCardOptions, AreaGridLayout, AreaGridLayoutOptions, AuthCardButton, AuthCardButtonOptions, Authentication, AuthenticationOptions, BackgroundImage, BackgroundImageOptions, Badge, BadgeAppearance, BadgeIconPosition, BadgeOptions, BadgeShape, BadgeSize, BadgeStyle, BarChartDataValue, BarChartDataValueOptions, CalendarEventAttendee, CalendarEventAttendeeOptions, CalendarEventProperties, CalendarEventPropertiesOptions, CaptionSource, CaptionSourceOptions, CardAction, CardElement, CardElementArray, CardMetadata, CardMetadataOptions, Carousel, CarouselOptions, CarouselPage, CarouselPageAnimation, CarouselPageOptions, ChartColor, ChartColorSet, Choice, ChoiceOptions, ChoiceSetInput, ChoiceSetInputOptions, CodeBlock, CodeBlockOptions, Column, ColumnArray, ColumnDefinition, ColumnDefinitionOptions, ColumnOptions, ColumnSet, ColumnSetOptions, ComEventMicrosoftGraphComponent, ComEventMicrosoftGraphComponentOptions, ComFileMicrosoftGraphComponent, ComFileMicrosoftGraphComponentOptions, ComResourceMicrosoftGraphComponent, ComResourceMicrosoftGraphComponentOptions, ComUserMicrosoftGraphComponent, ComUserMicrosoftGraphComponentOptions, ComUsersMicrosoftGraphComponent, ComUsersMicrosoftGraphComponentOptions, CompoundButton, CompoundButtonOptions, Container, ContainerOptions, ContainerStyle, DateInput, DateInputOptions, DonutChart, DonutChartData, DonutChartDataOptions, DonutChartOptions, ElementHeight, ExecuteAction, ExecuteActionOptions, Fact, FactOptions, FactSet, FactSetOptions, FallbackAction, FallbackElement, FileProperties, FilePropertiesOptions, FillMode, FlowLayout, FlowLayoutItemFit, FlowLayoutOptions, FontType, GaugeChart, GaugeChartLegend, GaugeChartLegendOptions, GaugeChartOptions, GaugeChartValueFormat, GridArea, GridAreaOptions, GroupedVerticalBarChart, GroupedVerticalBarChartData, GroupedVerticalBarChartDataOptions, GroupedVerticalBarChartOptions, HorizontalAlignment, HorizontalBarChart, HorizontalBarChartDataValue, HorizontalBarChartDataValueOptions, HorizontalBarChartDisplayMode, HorizontalBarChartOptions, HostCapabilities, IActionSet, IAdaptiveCard, IAreaGridLayout, IAuthCardButton, IAuthentication, IBackgroundImage, IBadge, IBarChartDataValue, ICalendarEventAttendee, ICalendarEventProperties, ICaptionSource, ICardMetadata, ICarousel, ICarouselPage, IChoice, IChoiceSetInput, ICodeBlock, IColumn, IColumnDefinition, IColumnSet, IComEventMicrosoftGraphComponent, IComFileMicrosoftGraphComponent, IComResourceMicrosoftGraphComponent, IComUserMicrosoftGraphComponent, IComUsersMicrosoftGraphComponent, ICompoundButton, IContainer, IDateInput, IDonutChart, IDonutChartData, IExecuteAction, IFact, IFactSet, IFileProperties, IFlowLayout, IGaugeChart, IGaugeChartLegend, IGridArea, IGroupedVerticalBarChart, IGroupedVerticalBarChartData, IHorizontalBarChart, IHorizontalBarChartDataValue, IHostCapabilities, IIcon, IIconInfo, IImage, IImageSet, ILineChart, ILineChartData, ILineChartValue, IMedia, IMediaSource, IMention, IMentionedEntity, INumberInput, IOpenUrlAction, IPersonaProperties, IPersonaSetProperties, IPieChart, IQueryData, IRating, IRatingInput, IRefreshDefinition, IResetInputsAction, IResourceProperties, IResourceVisualization, IRichTextBlock, IShowCardAction, IStackLayout, IStackedHorizontalBarChart, IStackedHorizontalBarChartData, IStackedHorizontalBarChartDataPoint, ISubmitAction, ITable, ITableCell, ITableRow, ITargetElement, ITeamsCardProperties, ITeamsImageProperties, ITeamsSubmitActionFeedback, ITeamsSubmitActionProperties, ITextBlock, ITextInput, ITextRun, ITimeInput, IToggleInput, IToggleVisibilityAction, ITokenExchangeResource, IVerticalBarChart, IVerticalBarChartDataValue, Icon, IconInfo, IconInfoOptions, IconName, IconOptions, IconSize, IconStyle, Image, ImageOptions, ImageSet, ImageSetOptions, ImageSize, ImageStyle, InputTextStyle, LineChart, LineChartData, LineChartDataOptions, LineChartOptions, LineChartValue, LineChartValueOptions, Media, MediaOptions, MediaSource, MediaSourceOptions, Mention, MentionOptions, MentionType, MentionedEntity, MentionedEntityOptions, NumberInput, NumberInputOptions, OpenUrlAction, OpenUrlActionOptions, PersonaProperties, PersonaPropertiesOptions, PersonaSetProperties, PersonaSetPropertiesOptions, PieChart, PieChartOptions, QueryData, QueryDataOptions, Rating, RatingColor, RatingInput, RatingInputOptions, RatingOptions, RatingSize, RatingStyle, RefreshDefinition, RefreshDefinitionOptions, ResetInputsAction, ResetInputsActionOptions, ResourceProperties, ResourcePropertiesOptions, ResourceVisualization, ResourceVisualizationOptions, RichTextBlock, RichTextBlockInlineArray, RichTextBlockOptions, ShowCardAction, ShowCardActionOptions, Size, Spacing, StackLayout, StackLayoutOptions, StackedHorizontalBarChart, StackedHorizontalBarChartData, StackedHorizontalBarChartDataOptions, StackedHorizontalBarChartDataPoint, StackedHorizontalBarChartDataPointOptions, StackedHorizontalBarChartOptions, SubmitAction, SubmitActionOptions, Table, TableCell, TableCellArray, TableCellOptions, TableOptions, TableRow, TableRowArray, TableRowOptions, TargetElement, TargetElementOptions, TargetWidth, TeamsCardProperties, TeamsCardPropertiesOptions, TeamsImageProperties, TeamsImagePropertiesOptions, TeamsSubmitActionFeedback, TeamsSubmitActionFeedbackOptions, TeamsSubmitActionProperties, TeamsSubmitActionPropertiesOptions, TextBlock, TextBlockOptions, TextColor, TextInput, TextInputOptions, TextRun, TextRunOptions, TextSize, TextWeight, TimeInput, TimeInputOptions, ToggleInput, ToggleInputOptions, ToggleVisibilityAction, ToggleVisibilityActionOptions, TokenExchangeResource, TokenExchangeResourceOptions, VerticalAlignment, VerticalBarChart, VerticalBarChartDataValue, VerticalBarChartDataValueOptions, VerticalBarChartOptions, isActionSet, isAdaptiveCard, isAreaGridLayout, isBadge, isCarousel, isCarouselPage, isChoiceSetInput, isCodeBlock, isColumn, isColumnSet, isComEventMicrosoftGraphComponent, isComFileMicrosoftGraphComponent, isComResourceMicrosoftGraphComponent, isComUserMicrosoftGraphComponent, isComUsersMicrosoftGraphComponent, isCompoundButton, isContainer, isDateInput, isDonutChart, isExecuteAction, isFactSet, isFlowLayout, isGaugeChart, isGroupedVerticalBarChart, isHorizontalBarChart, isIcon, isImage, isImageSet, isLineChart, isMedia, isMention, isNumberInput, isOpenUrlAction, isPieChart, isQueryData, isRating, isRatingInput, isResetInputsAction, isRichTextBlock, isShowCardAction, isStackLayout, isStackedHorizontalBarChart, isSubmitAction, isTable, isTableCell, isTableRow, isTextBlock, isTextInput, isTextRun, isTimeInput, isToggleInput, isToggleVisibilityAction, isVerticalBarChart } from './core.js';
export { Action, ActionArray, ActionMode, ActionSet, ActionSetOptions, ActionStyle, AdaptiveCard, AdaptiveCardOptions, AreaGridLayout, AreaGridLayoutOptions, AssociatedInputs, AuthCardButton, AuthCardButtonOptions, Authentication, AuthenticationOptions, BackgroundImage, BackgroundImageOptions, Badge, BadgeAppearance, BadgeIconPosition, BadgeOptions, BadgeShape, BadgeSize, BadgeStyle, BarChartDataValue, BarChartDataValueOptions, CalendarEventAttendee, CalendarEventAttendeeOptions, CalendarEventProperties, CalendarEventPropertiesOptions, CaptionSource, CaptionSourceOptions, CardElement, CardElementArray, CardMetadata, CardMetadataOptions, Carousel, CarouselOptions, CarouselPage, CarouselPageAnimation, CarouselPageOptions, ChartColor, ChartColorSet, Choice, ChoiceOptions, ChoiceSetInput, ChoiceSetInputOptions, ChoiceSetInputStyle, CodeBlock, CodeBlockOptions, CodeLanguage, CollabStageInvokeDataValue, CollabStageInvokeDataValueOptions, Column, ColumnArray, ColumnDefinition, ColumnDefinitionOptions, ColumnOptions, ColumnSet, ColumnSetOptions, ComEventMicrosoftGraphComponent, ComEventMicrosoftGraphComponentOptions, ComFileMicrosoftGraphComponent, ComFileMicrosoftGraphComponentOptions, ComResourceMicrosoftGraphComponent, ComResourceMicrosoftGraphComponentOptions, ComUserMicrosoftGraphComponent, ComUserMicrosoftGraphComponentOptions, ComUsersMicrosoftGraphComponent, ComUsersMicrosoftGraphComponentOptions, CompoundButton, CompoundButtonOptions, Container, ContainerOptions, ContainerStyle, DateInput, DateInputOptions, DonutChart, DonutChartData, DonutChartDataOptions, DonutChartOptions, DonutThickness, ElementHeight, ExecuteAction, ExecuteActionOptions, Fact, FactOptions, FactSet, FactSetOptions, FallbackAction, FallbackElement, FileProperties, FilePropertiesOptions, FillMode, FlowLayout, FlowLayoutItemFit, FlowLayoutOptions, FontType, GaugeChart, GaugeChartLegend, GaugeChartLegendOptions, GaugeChartOptions, GaugeChartValueFormat, GridArea, GridAreaOptions, GroupedVerticalBarChart, GroupedVerticalBarChartData, GroupedVerticalBarChartDataOptions, GroupedVerticalBarChartOptions, HorizontalAlignment, HorizontalBarChart, HorizontalBarChartDataValue, HorizontalBarChartDataValueOptions, HorizontalBarChartDisplayMode, HorizontalBarChartOptions, HostCapabilities, HostCapabilitiesOptions, IActionSet, IAdaptiveCard, IAreaGridLayout, IAuthCardButton, IAuthentication, IBackgroundImage, IBadge, IBarChartDataValue, ICalendarEventAttendee, ICalendarEventProperties, ICaptionSource, ICardMetadata, ICarousel, ICarouselPage, IChoice, IChoiceSetInput, ICodeBlock, ICollabStageInvokeDataValue, IColumn, IColumnDefinition, IColumnSet, IComEventMicrosoftGraphComponent, IComFileMicrosoftGraphComponent, IComResourceMicrosoftGraphComponent, IComUserMicrosoftGraphComponent, IComUsersMicrosoftGraphComponent, ICompoundButton, IContainer, IDateInput, IDonutChart, IDonutChartData, IExecuteAction, IFact, IFactSet, IFileProperties, IFlowLayout, IGaugeChart, IGaugeChartLegend, IGridArea, IGroupedVerticalBarChart, IGroupedVerticalBarChartData, IHorizontalBarChart, IHorizontalBarChartDataValue, IHostCapabilities, IIcon, IIconInfo, IIconRun, IImBackSubmitActionData, IImage, IImageRun, IImageSet, IInsertImageAction, IInvokeSubmitActionData, ILineChart, ILineChartData, ILineChartValue, IMedia, IMediaSource, IMention, IMentionedEntity, IMessageBackSubmitActionData, INumberInput, IOpenUrlAction, IOpenUrlDialogAction, IPersonaProperties, IPersonaSetProperties, IPieChart, IPopoverAction, IProgressBar, IProgressRing, IQueryData, IRating, IRatingInput, IRefreshDefinition, IResetInputsAction, IResourceProperties, IResourceVisualization, IResources, IRichTextBlock, IShowCardAction, ISigninSubmitActionData, IStackLayout, IStackedHorizontalBarChart, IStackedHorizontalBarChartData, IStackedHorizontalBarChartDataPoint, IStringResource, ISubmitAction, ISubmitActionData, ITabInfo, ITable, ITableCell, ITableRow, ITargetElement, ITaskFetchSubmitActionData, ITeamsCardProperties, ITeamsImageProperties, ITeamsSubmitActionFeedback, ITeamsSubmitActionProperties, ITextBlock, ITextInput, ITextRun, IThemedUrl, ITimeInput, IToggleInput, IToggleVisibilityAction, ITokenExchangeResource, IVerticalBarChart, IVerticalBarChartDataValue, Icon, IconInfo, IconInfoOptions, IconName, IconOptions, IconRun, IconRunOptions, IconSize, IconStyle, ImBackSubmitActionData, ImBackSubmitActionDataOptions, Image, ImageFitMode, ImageInsertPosition, ImageOptions, ImageRun, ImageRunOptions, ImageSet, ImageSetOptions, ImageSize, ImageStyle, InputTextStyle, InsertImageAction, InsertImageActionOptions, InvokeSubmitActionData, InvokeSubmitActionDataOptions, LineChart, LineChartData, LineChartDataOptions, LineChartOptions, LineChartValue, LineChartValueOptions, Media, MediaOptions, MediaSource, MediaSourceOptions, Mention, MentionOptions, MentionType, MentionedEntity, MentionedEntityOptions, MenuActionArray, MessageBackSubmitActionData, MessageBackSubmitActionDataOptions, NumberInput, NumberInputOptions, OpenUrlAction, OpenUrlActionOptions, OpenUrlDialogAction, OpenUrlDialogActionOptions, PersonaDisplayStyle, PersonaIconStyle, PersonaProperties, PersonaPropertiesOptions, PersonaSetProperties, PersonaSetPropertiesOptions, PieChart, PieChartOptions, PopoverAction, PopoverActionOptions, PopoverPosition, ProgressBar, ProgressBarColor, ProgressBarOptions, ProgressRing, ProgressRingLabelPosition, ProgressRingOptions, ProgressRingSize, QueryData, QueryDataOptions, Rating, RatingColor, RatingInput, RatingInputOptions, RatingOptions, RatingSize, RatingStyle, RefreshDefinition, RefreshDefinitionOptions, ResetInputsAction, ResetInputsActionOptions, ResourceProperties, ResourcePropertiesOptions, ResourceVisualization, ResourceVisualizationOptions, Resources, ResourcesOptions, RichTextBlock, RichTextBlockInlineArray, RichTextBlockOptions, ShowCardAction, ShowCardActionOptions, SigninSubmitActionData, SigninSubmitActionDataOptions, Size, Spacing, StackLayout, StackLayoutOptions, StackedHorizontalBarChart, StackedHorizontalBarChartData, StackedHorizontalBarChartDataOptions, StackedHorizontalBarChartDataPoint, StackedHorizontalBarChartDataPointOptions, StackedHorizontalBarChartOptions, StringResource, StringResourceOptions, SubmitAction, SubmitActionData, SubmitActionDataOptions, SubmitActionOptions, TabInfo, TabInfoOptions, Table, TableCell, TableCellArray, TableCellOptions, TableOptions, TableRow, TableRowArray, TableRowOptions, TargetElement, TargetElementOptions, TargetWidth, TaskFetchSubmitActionData, TaskFetchSubmitActionDataOptions, TeamsCardProperties, TeamsCardPropertiesOptions, TeamsCardWidth, TeamsImageProperties, TeamsImagePropertiesOptions, TeamsSubmitActionFeedback, TeamsSubmitActionFeedbackOptions, TeamsSubmitActionProperties, TeamsSubmitActionPropertiesOptions, TextBlock, TextBlockOptions, TextBlockStyle, TextColor, TextInput, TextInputOptions, TextRun, TextRunOptions, TextSize, TextWeight, ThemeName, ThemedUrl, ThemedUrlOptions, TimeInput, TimeInputOptions, ToggleInput, ToggleInputOptions, ToggleVisibilityAction, ToggleVisibilityActionOptions, TokenExchangeResource, TokenExchangeResourceOptions, Version, VerticalAlignment, VerticalBarChart, VerticalBarChartDataValue, VerticalBarChartDataValueOptions, VerticalBarChartOptions, isActionSet, isAdaptiveCard, isAreaGridLayout, isBadge, isCarousel, isCarouselPage, isChoiceSetInput, isCodeBlock, isCollabStageInvokeDataValue, isColumn, isColumnSet, isComEventMicrosoftGraphComponent, isComFileMicrosoftGraphComponent, isComResourceMicrosoftGraphComponent, isComUserMicrosoftGraphComponent, isComUsersMicrosoftGraphComponent, isCompoundButton, isContainer, isDateInput, isDonutChart, isExecuteAction, isFactSet, isFlowLayout, isGaugeChart, isGroupedVerticalBarChart, isHorizontalBarChart, isIcon, isIconRun, isImBackSubmitActionData, isImage, isImageRun, isImageSet, isInsertImageAction, isInvokeSubmitActionData, isLineChart, isMedia, isMention, isMessageBackSubmitActionData, isNumberInput, isOpenUrlAction, isOpenUrlDialogAction, isPieChart, isPopoverAction, isProgressBar, isProgressRing, isQueryData, isRating, isRatingInput, isResetInputsAction, isRichTextBlock, isShowCardAction, isSigninSubmitActionData, isStackLayout, isStackedHorizontalBarChart, isSubmitAction, isTable, isTableCell, isTableRow, isTaskFetchSubmitActionData, isTextBlock, isTextInput, isTextRun, isTimeInput, isToggleInput, isToggleVisibilityAction, isVerticalBarChart } from './core.js';
export { IIMBackAction, IIMBackData, IMBackAction, IMBackActionOptions, IMBackData } from './actions/submit/im-back.js';

@@ -7,4 +7,5 @@ export { IInvokeAction, IInvokeData, InvokeAction, InvokeActionOptions, InvokeData } from './actions/submit/invoke.js';

export { ITaskFetchAction, ITaskFetchData, TaskFetchAction, TaskFetchActionOptions, TaskFetchData, TaskFetchDataValues } from './actions/submit/task-fetch.js';
export { CollabStageAction, CollabStageActionOptions, CollabStageData, CollabStageValueData, ICollabStageAction, ICollabStageData, ICollabStageValueData } from './actions/submit/collab-stage.js';
export { ITabInfo } from './common/tab-info.js';
export { CollabStageAction, CollabStageActionOptions, ICollabStageAction } from './actions/submit/collab-stage.js';
export { SubmitData } from './utilities/submit-data.js';
export { OpenDialogData } from './utilities/open-dialog-data.js';
import './actions/submit/ms-teams-data.js';

@@ -5,3 +5,3 @@ 'use strict';

var actions = require('./actions');
var common = require('./common');
var utilities = require('./utilities');

@@ -22,6 +22,6 @@

});
Object.keys(common).forEach(function (k) {
Object.keys(utilities).forEach(function (k) {
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
enumerable: true,
get: function () { return common[k]; }
get: function () { return utilities[k]; }
});

@@ -28,0 +28,0 @@ });

export * from './core';
export * from './actions';
export * from './common';
export * from './utilities';
//# sourceMappingURL=index.mjs.map
//# sourceMappingURL=index.mjs.map
{
"name": "@microsoft/teams.cards",
"version": "2.0.6",
"version": "2.0.7",
"license": "MIT",

@@ -38,3 +38,3 @@ "main": "./dist/index.js",

"devDependencies": {
"@microsoft/teams.config": "2.0.6",
"@microsoft/teams.config": "2.0.7",
"@types/jest": "^29.5.12",

@@ -41,0 +41,0 @@ "jest": "^29.7.0",

export { ITabInfo } from './tab-info.mjs';
export { ITabInfo } from './tab-info.js';
'use strict';
var tabInfo = require('./tab-info');
Object.keys(tabInfo).forEach(function (k) {
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
enumerable: true,
get: function () { return tabInfo[k]; }
});
});
//# sourceMappingURL=index.js.map
//# sourceMappingURL=index.js.map
{"version":3,"sources":[],"names":[],"mappings":"","file":"index.js","sourcesContent":[]}
export * from './tab-info';
//# sourceMappingURL=index.mjs.map
//# sourceMappingURL=index.mjs.map
{"version":3,"sources":[],"names":[],"mappings":"","file":"index.mjs","sourcesContent":[]}
/**
* Information about the content to embed in an iFrame.
*/
interface ITabInfo {
/**
* The URL to open in an iFrame.
*/
contentUrl: string;
/**
* Optional. Website URL to the content, allowing users to open this content in the browser (if they prefer).
*/
websiteUrl?: string;
/**
* Name for the content. This will be displayed as the title of the window hosting the iFrame.
*/
name: string;
/**
* Unique entity id for this content (e.g., random UUID).
*/
entityId: string;
}
export type { ITabInfo };
/**
* Information about the content to embed in an iFrame.
*/
interface ITabInfo {
/**
* The URL to open in an iFrame.
*/
contentUrl: string;
/**
* Optional. Website URL to the content, allowing users to open this content in the browser (if they prefer).
*/
websiteUrl?: string;
/**
* Name for the content. This will be displayed as the title of the window hosting the iFrame.
*/
name: string;
/**
* Unique entity id for this content (e.g., random UUID).
*/
entityId: string;
}
export type { ITabInfo };
'use strict';
//# sourceMappingURL=tab-info.js.map
//# sourceMappingURL=tab-info.js.map
{"version":3,"sources":[],"names":[],"mappings":"","file":"tab-info.js"}
//# sourceMappingURL=tab-info.mjs.map
//# sourceMappingURL=tab-info.mjs.map
{"version":3,"sources":[],"names":[],"mappings":"","file":"tab-info.mjs"}

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display