Skip to content

Commit 0596f05

Browse files
committed
Change preview wording to coming soon
1 parent 79c74ac commit 0596f05

3 files changed

Lines changed: 9 additions & 9 deletions

File tree

packages/api/src/activities/message/message.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ export interface IMessageActivity extends IActivity<'message'> {
100100
/**
101101
* get all quoted reply entities from this message
102102
*
103-
* @experimental This API is in preview and may change in the future.
103+
* @experimental This API is coming soon and may change in the future.
104104
* Diagnostic: ExperimentalTeamsQuotedReplies
105105
*/
106106
getQuotedMessages(): QuotedReplyEntity[];
@@ -374,7 +374,7 @@ export class MessageActivity extends Activity<'message'> implements IMessageActi
374374
/**
375375
* get all quoted reply entities from this message
376376
*
377-
* @experimental This API is in preview and may change in the future.
377+
* @experimental This API is coming soon and may change in the future.
378378
* Diagnostic: ExperimentalTeamsQuotedReplies
379379
*/
380380
getQuotedMessages(): QuotedReplyEntity[] {
@@ -409,7 +409,7 @@ export class MessageActivity extends Activity<'message'> implements IMessageActi
409409
* @param isTargeted - If true, marks this as a targeted message visible only to the recipient
410410
* @returns this instance for chaining
411411
*
412-
* @experimental This API is in preview and may change in the future.
412+
* @experimental This API is coming soon and may change in the future.
413413
* Diagnostic: ExperimentalTeamsTargeted
414414
*/
415415
withRecipient(account: Account, isTargeted: boolean = false): this {
@@ -425,7 +425,7 @@ export class MessageActivity extends Activity<'message'> implements IMessageActi
425425
* @param text - Optional text, appended to the quoted message placeholder
426426
* @returns this instance for chaining
427427
*
428-
* @experimental This API is in preview and may change in the future.
428+
* @experimental This API is coming soon and may change in the future.
429429
* Diagnostic: ExperimentalTeamsQuotedReplies
430430
*/
431431
addQuote(messageId: string, text?: string): this {
@@ -448,7 +448,7 @@ export class MessageActivity extends Activity<'message'> implements IMessageActi
448448
* before existing text. Used by reply()/quote() for quote-above-response.
449449
* @param messageId - The IC3 message ID of the message to quote
450450
*
451-
* @experimental This API is in preview and may change in the future.
451+
* @experimental This API is coming soon and may change in the future.
452452
* Diagnostic: ExperimentalTeamsQuotedReplies
453453
*/
454454
prependQuote(messageId: string): this {

packages/api/src/models/entity/quoted-reply-entity.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* Data for a quoted reply entity.
33
*
4-
* @experimental This API is in preview and may change in the future.
4+
* @experimental This API is coming soon and may change in the future.
55
* Diagnostic: ExperimentalTeamsQuotedReplies
66
*/
77
export type QuotedReplyData = {
@@ -45,7 +45,7 @@ export type QuotedReplyData = {
4545
/**
4646
* Entity containing quoted reply information.
4747
*
48-
* @experimental This API is in preview and may change in the future.
48+
* @experimental This API is coming soon and may change in the future.
4949
* Diagnostic: ExperimentalTeamsQuotedReplies
5050
*/
5151
export type QuotedReplyEntity = {

packages/apps/src/contexts/activity.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ export interface IBaseActivityContext<T extends Activity = Activity, TExtraCtx e
174174
* @param messageId the ID of the message to quote
175175
* @param activity activity to send
176176
*
177-
* @experimental This API is in preview and may change in the future.
177+
* @experimental This API is coming soon and may change in the future.
178178
* Diagnostic: ExperimentalTeamsQuotedReplies
179179
*/
180180
quote: (messageId: string, activity: ActivityLike) => Promise<SentActivity>;
@@ -269,7 +269,7 @@ export class ActivityContext<T extends Activity = Activity, TExtraCtx extends {}
269269
* @param messageId - The ID of the message to quote
270270
* @param activity - The activity to send — a quote placeholder for messageId will be prepended to its text
271271
*
272-
* @experimental This API is in preview and may change in the future.
272+
* @experimental This API is coming soon and may change in the future.
273273
* Diagnostic: ExperimentalTeamsQuotedReplies
274274
*/
275275
async quote(messageId: string, activity: ActivityLike) {

0 commit comments

Comments
 (0)