Skip to content

Commit 163558f

Browse files
committed
Few increment improvements
1 parent c8e990c commit 163558f

File tree

2 files changed

+14
-8
lines changed

2 files changed

+14
-8
lines changed

src/version3/appMigration.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -43,16 +43,16 @@ export class AppMigration {
4343
}
4444

4545
/**
46-
* Updates the values of multiple entity properties for an object, up to 50 updates per request. This operation is
47-
* for use by Connect apps during app migration.
46+
* Updates the values of multiple entity properties for an object, up to 50 updates per request. This operation is for
47+
* use by Connect apps during app migration.
4848
*/
4949
async updateEntityPropertiesValue<T = unknown>(
5050
parameters: Parameters.UpdateEntityPropertiesValue,
5151
callback: Callback<T>,
5252
): Promise<void>;
5353
/**
54-
* Updates the values of multiple entity properties for an object, up to 50 updates per request. This operation is
55-
* for use by Connect apps during app migration.
54+
* Updates the values of multiple entity properties for an object, up to 50 updates per request. This operation is for
55+
* use by Connect apps during app migration.
5656
*/
5757
async updateEntityPropertiesValue<T = unknown>(
5858
parameters: Parameters.UpdateEntityPropertiesValue,
@@ -77,16 +77,16 @@ export class AppMigration {
7777
}
7878

7979
/**
80-
* Returns configurations for workflow transition rules migrated from server to cloud and owned by the calling
81-
* Connect app.
80+
* Returns configurations for workflow transition rules migrated from server to cloud and owned by the calling Connect
81+
* app.
8282
*/
8383
async workflowRuleSearch<T = Models.WorkflowRulesSearchDetails>(
8484
parameters: Parameters.WorkflowRuleSearch,
8585
callback: Callback<T>,
8686
): Promise<void>;
8787
/**
88-
* Returns configurations for workflow transition rules migrated from server to cloud and owned by the calling
89-
* Connect app.
88+
* Returns configurations for workflow transition rules migrated from server to cloud and owned by the calling Connect
89+
* app.
9090
*/
9191
async workflowRuleSearch<T = Models.WorkflowRulesSearchDetails>(
9292
parameters: Parameters.WorkflowRuleSearch,

src/version3/models/index.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
export * from './jiraExpressionEvaluateContextBean';
2+
export * from './evaluatedJiraExpression';
3+
export * from './configurationsListParameters';
4+
export * from './pageBulkContextualConfiguration';
5+
export * from './workspaceDataPolicy';
6+
export * from './projectDataPolicies';
17
export * from './actorInput';
28
export * from './actorsMap';
39
export * from './addField';

0 commit comments

Comments
 (0)