diff --git a/api/application/ContinuableInfo.d.ts b/api/application/ContinuableInfo.d.ts index 91868cb801a5db60646359c973d0da9188fe45bc..d086ef513b7c0ece3f8e69d1330ba753ebc797a1 100644 --- a/api/application/ContinuableInfo.d.ts +++ b/api/application/ContinuableInfo.d.ts @@ -25,20 +25,37 @@ export interface ContinuableInfo { /** * Indicates the original deviceId to continue mission. * - * @type {string} + * @type { string } * @syscap SystemCapability.Ability.AbilityRuntime.Mission * @systemapi Hide this for inner system user. * @since 10 */ srcDeviceId: string; - /** - * Indicates bundle name. + * Indicates the bundle name of the destination to continue. * - * @type {string} + * @type { string } * @syscap SystemCapability.Ability.AbilityRuntime.Mission * @systemapi Hide this for inner system user. * @since 10 */ bundleName: string; + /** + * Indicates the original bundle name to continue mission. + * + * @type { ?string } + * @syscap SystemCapability.Ability.AbilityRuntime.Mission + * @systemapi Hide this for inner system user. + * @since 12 + */ + srcBundleName?: string; + /** + * Indicates continue type. + * + * @type { ?string } + * @syscap SystemCapability.Ability.AbilityRuntime.Mission + * @systemapi Hide this for inner system user. + * @since 12 + */ + continueType?: string; } \ No newline at end of file diff --git a/api/application/ContinueMissionInfo.d.ts b/api/application/ContinueMissionInfo.d.ts index 591966b12e456e48866d516ea7edcbba3ca8f1fc..2467bd35b15249a12bd25f6dbbd9279d485d1f93 100644 --- a/api/application/ContinueMissionInfo.d.ts +++ b/api/application/ContinueMissionInfo.d.ts @@ -41,7 +41,7 @@ export interface ContinueMissionInfo { */ dstDeviceId: string; /** - * Indicates the bundle to continue. + * Indicates the bundle name of the destination to continue. * * @type { string } * @syscap SystemCapability.Ability.AbilityRuntime.Mission @@ -49,6 +49,24 @@ export interface ContinueMissionInfo { * @since 10 */ bundleName: string; + /** + * Indicates the original bundle name to continue mission. + * + * @type { ?string } + * @syscap SystemCapability.Ability.AbilityRuntime.Mission + * @systemapi Hide this for inner system user. + * @since 12 + */ + srcBundleName?: string; + /** + * Indicates continue type. + * + * @type { ?string } + * @syscap SystemCapability.Ability.AbilityRuntime.Mission + * @systemapi Hide this for inner system user. + * @since 12 + */ + continueType?: string; /** * Indicates the extended param. *