confluence.js 1.5.0 → 1.5.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +15 -3
- package/README.md +3 -3
- package/out/api/audit.d.ts +24 -12
- package/out/api/audit.js.map +1 -1
- package/out/api/content.d.ts +18 -12
- package/out/api/content.js.map +1 -1
- package/out/api/contentAttachments.d.ts +14 -8
- package/out/api/contentAttachments.js.map +1 -1
- package/out/api/contentBody.js +2 -4
- package/out/api/contentBody.js.map +1 -1
- package/out/api/contentMacroBody.d.ts +4 -2
- package/out/api/contentMacroBody.js.map +1 -1
- package/out/api/contentRestrictions.d.ts +16 -8
- package/out/api/contentRestrictions.js.map +1 -1
- package/out/api/contentWatches.d.ts +16 -8
- package/out/api/contentWatches.js.map +1 -1
- package/out/api/parameters/convertContentBody.d.ts +16 -2
- package/out/api/relation.d.ts +8 -4
- package/out/api/relation.js.map +1 -1
- package/out/api/settings.d.ts +4 -2
- package/out/api/settings.js.map +1 -1
- package/out/api/space.d.ts +4 -2
- package/out/api/space.js.map +1 -1
- package/out/api/template.d.ts +16 -8
- package/out/api/template.js.map +1 -1
- package/out/clients/baseClient.js +3 -1
- package/out/clients/baseClient.js.map +1 -1
- package/out/clients/serverClient.js.map +1 -1
- package/out/server/audit.js +6 -6
- package/out/server/audit.js.map +1 -1
- package/out/server/content.d.ts +34 -262
- package/out/server/content.js +40 -32
- package/out/server/content.js.map +1 -1
- package/out/server/contentBody.d.ts +2 -12
- package/out/server/contentBody.js +2 -1
- package/out/server/contentBody.js.map +1 -1
- package/out/server/group.js +3 -3
- package/out/server/group.js.map +1 -1
- package/out/server/longTask.js +2 -2
- package/out/server/longTask.js.map +1 -1
- package/out/server/parameters/convertContentBody.d.ts +16 -0
- package/out/server/parameters/updateAttachmentData.d.ts +8 -2
- package/out/server/search.d.ts +2 -22
- package/out/server/search.js +1 -1
- package/out/server/search.js.map +1 -1
- package/out/server/space.d.ts +12 -94
- package/out/server/space.js +14 -14
- package/out/server/space.js.map +1 -1
- package/out/server/user.d.ts +8 -152
- package/out/server/user.js +10 -10
- package/out/server/user.js.map +1 -1
- package/package.json +14 -14
- package/src/api/audit.ts +24 -12
- package/src/api/content.ts +23 -17
- package/src/api/contentAttachments.ts +19 -13
- package/src/api/contentBody.ts +2 -0
- package/src/api/contentMacroBody.ts +4 -2
- package/src/api/contentRestrictions.ts +16 -8
- package/src/api/contentWatches.ts +16 -8
- package/src/api/parameters/convertContentBody.ts +39 -2
- package/src/api/relation.ts +8 -4
- package/src/api/settings.ts +4 -2
- package/src/api/space.ts +4 -2
- package/src/api/template.ts +16 -8
- package/src/clients/baseClient.ts +5 -10
- package/src/clients/client.ts +1 -5
- package/src/clients/serverClient.ts +1 -10
- package/src/server/audit.ts +6 -6
- package/src/server/content.ts +78 -295
- package/src/server/contentBody.ts +4 -13
- package/src/server/group.ts +3 -3
- package/src/server/longTask.ts +2 -2
- package/src/server/parameters/convertContentBody.ts +37 -0
- package/src/server/parameters/updateAttachmentData.ts +7 -3
- package/src/server/search.ts +3 -23
- package/src/server/space.ts +26 -108
- package/src/server/user.ts +18 -162
|
@@ -2,8 +2,21 @@ import { ContentBodyCreate } from '../models';
|
|
|
2
2
|
export interface ConvertContentBody extends ContentBodyCreate {
|
|
3
3
|
/** The name of the target format for the content body. */
|
|
4
4
|
to: string;
|
|
5
|
-
/**
|
|
6
|
-
|
|
5
|
+
/**
|
|
6
|
+
* A multi-value parameter indicating which properties of the content to expand. Expands are dependent on the to
|
|
7
|
+
* conversion format and may be irrelevant for certain conversions (e.g. macroRenderedOutput is redundant when
|
|
8
|
+
* converting to view format).
|
|
9
|
+
*
|
|
10
|
+
* - `webresource` returns JS and CSS resources necessary for displaying nested content in `view` format
|
|
11
|
+
* - `webresource.superbatch.uris.js` returns all common JS dependencies
|
|
12
|
+
* - `webresource.superbatch.uris.css` returns all common CSS dependencies
|
|
13
|
+
* - `webresource.uris.js` returns JS dependencies specific to conversion
|
|
14
|
+
* - `webresource.uris.css` returns CSS dependencies specific to conversion
|
|
15
|
+
* - `embeddedContent` returns metadata for nested content (e.g. page included using page include macro)
|
|
16
|
+
* - `mediaToken` returns JWT token for retrieving attachment data from Media API
|
|
17
|
+
* - `macroRenderedOutput` additionally converts body to view format
|
|
18
|
+
*/
|
|
19
|
+
expand?: 'webresource' | 'webresource.superbatch.uris.js' | 'webresource.superbatch.uris.css' | 'webresource.uris.js' | 'webresource.uris.css' | 'embeddedContent' | 'mediaToken' | 'macroRenderedOutput' | ('webresource' | 'webresource.superbatch.uris.js' | 'webresource.superbatch.uris.css' | 'webresource.uris.js' | 'webresource.uris.css' | 'embeddedContent' | 'mediaToken' | 'macroRenderedOutput')[] | string | string[];
|
|
7
20
|
/**
|
|
8
21
|
* The space key used for resolving embedded content (page includes, files, and links) in the content body. For
|
|
9
22
|
* example, if the source content contains the link `<ac:link><ri:page ri:content-title="Example page" /><ac:link>`
|
|
@@ -26,4 +39,5 @@ export interface ConvertContentBody extends ContentBodyCreate {
|
|
|
26
39
|
* - `version-at-save` renders the embedded content using the version at the time of save.
|
|
27
40
|
*/
|
|
28
41
|
embeddedContentRender?: string;
|
|
42
|
+
additionalProperties?: any[];
|
|
29
43
|
}
|
package/out/api/relation.d.ts
CHANGED
|
@@ -6,7 +6,8 @@ export declare class Relation {
|
|
|
6
6
|
private client;
|
|
7
7
|
constructor(client: Client);
|
|
8
8
|
/**
|
|
9
|
-
* Returns all target entities that have a particular relationship to the source entity. Note, relationships are one
|
|
9
|
+
* Returns all target entities that have a particular relationship to the source entity. Note, relationships are one
|
|
10
|
+
* way.
|
|
10
11
|
*
|
|
11
12
|
* For example, the following method finds all content that the current user has an 'ignore' relationship with: `GET
|
|
12
13
|
* https://your-domain.atlassian.net/wiki/rest/api/relation/ignore/from/user/current/to/content` Note, 'ignore' is an
|
|
@@ -17,7 +18,8 @@ export declare class Relation {
|
|
|
17
18
|
*/
|
|
18
19
|
findTargetFromSource<T = Models.RelationArray>(parameters: Parameters.FindTargetFromSource, callback: Callback<T>): Promise<void>;
|
|
19
20
|
/**
|
|
20
|
-
* Returns all target entities that have a particular relationship to the source entity. Note, relationships are one
|
|
21
|
+
* Returns all target entities that have a particular relationship to the source entity. Note, relationships are one
|
|
22
|
+
* way.
|
|
21
23
|
*
|
|
22
24
|
* For example, the following method finds all content that the current user has an 'ignore' relationship with: `GET
|
|
23
25
|
* https://your-domain.atlassian.net/wiki/rest/api/relation/ignore/from/user/current/to/content` Note, 'ignore' is an
|
|
@@ -98,7 +100,8 @@ export declare class Relation {
|
|
|
98
100
|
*/
|
|
99
101
|
deleteRelationship<T = void>(parameters: Parameters.DeleteRelationship, callback?: never): Promise<T>;
|
|
100
102
|
/**
|
|
101
|
-
* Returns all target entities that have a particular relationship to the source entity. Note, relationships are one
|
|
103
|
+
* Returns all target entities that have a particular relationship to the source entity. Note, relationships are one
|
|
104
|
+
* way.
|
|
102
105
|
*
|
|
103
106
|
* For example, the following method finds all users that have a 'collaborator' relationship to a piece of content
|
|
104
107
|
* with an ID of '1234': `GET
|
|
@@ -110,7 +113,8 @@ export declare class Relation {
|
|
|
110
113
|
*/
|
|
111
114
|
findSourcesForTarget<T = Models.RelationArray>(parameters: Parameters.FindSourcesForTarget, callback: Callback<T>): Promise<void>;
|
|
112
115
|
/**
|
|
113
|
-
* Returns all target entities that have a particular relationship to the source entity. Note, relationships are one
|
|
116
|
+
* Returns all target entities that have a particular relationship to the source entity. Note, relationships are one
|
|
117
|
+
* way.
|
|
114
118
|
*
|
|
115
119
|
* For example, the following method finds all users that have a 'collaborator' relationship to a piece of content
|
|
116
120
|
* with an ID of '1234': `GET
|
package/out/api/relation.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"relation.js","sourceRoot":"","sources":["../../src/api/relation.ts"],"names":[],"mappings":";;;;AAMA,MAAa,QAAQ;IACnB,YAAoB,MAAc;QAAd,WAAM,GAAN,MAAM,CAAQ;IAAG,CAAC;
|
|
1
|
+
{"version":3,"file":"relation.js","sourceRoot":"","sources":["../../src/api/relation.ts"],"names":[],"mappings":";;;;AAMA,MAAa,QAAQ;IACnB,YAAoB,MAAc;QAAd,WAAM,GAAN,MAAM,CAAQ;IAAG,CAAC;IAgChC,oBAAoB,CACxB,UAA2C,EAC3C,QAAsB;;YAEtB,MAAM,MAAM,GAAkB;gBAC5B,GAAG,EAAE,iBAAiB,UAAU,CAAC,YAAY,SAAS,UAAU,CAAC,UAAU,IAAI,UAAU,CAAC,SAAS,OAAO,UAAU,CAAC,UAAU,EAAE;gBACjI,MAAM,EAAE,KAAK;gBACb,MAAM,EAAE;oBACN,YAAY,EAAE,UAAU,CAAC,YAAY;oBACrC,YAAY,EAAE,UAAU,CAAC,YAAY;oBACrC,aAAa,EAAE,UAAU,CAAC,aAAa;oBACvC,aAAa,EAAE,UAAU,CAAC,aAAa;oBACvC,MAAM,EAAE,UAAU,CAAC,MAAM;oBACzB,KAAK,EAAE,UAAU,CAAC,KAAK;oBACvB,KAAK,EAAE,UAAU,CAAC,KAAK;iBACxB;aACF,CAAC;YAEF,OAAO,IAAI,CAAC,MAAM,CAAC,WAAW,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;QACnD,CAAC;KAAA;IASK,eAAe,CACnB,UAAsC,EACtC,QAAsB;;YAEtB,OAAO,IAAI,CAAC,eAAe,CAAC,UAAU,EAAE,QAAS,CAAC,CAAC;QACrD,CAAC;KAAA;IA6BK,eAAe,CACnB,UAAsC,EACtC,QAAsB;;YAEtB,MAAM,MAAM,GAAkB;gBAC5B,GAAG,EAAE,iBAAiB,UAAU,CAAC,YAAY,SAAS,UAAU,CAAC,UAAU,IAAI,UAAU,CAAC,SAAS,OAAO,UAAU,CAAC,UAAU,IAAI,UAAU,CAAC,SAAS,EAAE;gBACzJ,MAAM,EAAE,KAAK;gBACb,MAAM,EAAE;oBACN,YAAY,EAAE,UAAU,CAAC,YAAY;oBACrC,YAAY,EAAE,UAAU,CAAC,YAAY;oBACrC,aAAa,EAAE,UAAU,CAAC,aAAa;oBACvC,aAAa,EAAE,UAAU,CAAC,aAAa;oBACvC,MAAM,EAAE,UAAU,CAAC,MAAM;iBAC1B;aACF,CAAC;YAEF,OAAO,IAAI,CAAC,MAAM,CAAC,WAAW,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;QACnD,CAAC;KAAA;IA8BK,kBAAkB,CACtB,UAAyC,EACzC,QAAsB;;YAEtB,MAAM,MAAM,GAAkB;gBAC5B,GAAG,EAAE,iBAAiB,UAAU,CAAC,YAAY,SAAS,UAAU,CAAC,UAAU,IAAI,UAAU,CAAC,SAAS,OAAO,UAAU,CAAC,UAAU,IAAI,UAAU,CAAC,SAAS,EAAE;gBACzJ,MAAM,EAAE,KAAK;gBACb,MAAM,EAAE;oBACN,YAAY,EAAE,UAAU,CAAC,YAAY;oBACrC,YAAY,EAAE,UAAU,CAAC,YAAY;oBACrC,aAAa,EAAE,UAAU,CAAC,aAAa;oBACvC,aAAa,EAAE,UAAU,CAAC,aAAa;iBACxC;aACF,CAAC;YAEF,OAAO,IAAI,CAAC,MAAM,CAAC,WAAW,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;QACnD,CAAC;KAAA;IAMK,MAAM,CAAW,UAA6B,EAAE,QAAsB;;YAC1E,OAAO,IAAI,CAAC,kBAAkB,CAAC,UAAU,EAAE,QAAS,CAAC,CAAC;QACxD,CAAC;KAAA;IAkBK,kBAAkB,CACtB,UAAyC,EACzC,QAAsB;;YAEtB,MAAM,MAAM,GAAkB;gBAC5B,GAAG,EAAE,iBAAiB,UAAU,CAAC,YAAY,SAAS,UAAU,CAAC,UAAU,IAAI,UAAU,CAAC,SAAS,OAAO,UAAU,CAAC,UAAU,IAAI,UAAU,CAAC,SAAS,EAAE;gBACzJ,MAAM,EAAE,QAAQ;gBAChB,MAAM,EAAE;oBACN,YAAY,EAAE,UAAU,CAAC,YAAY;oBACrC,YAAY,EAAE,UAAU,CAAC,YAAY;oBACrC,aAAa,EAAE,UAAU,CAAC,aAAa;oBACvC,aAAa,EAAE,UAAU,CAAC,aAAa;iBACxC;aACF,CAAC;YAEF,OAAO,IAAI,CAAC,MAAM,CAAC,WAAW,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;QACnD,CAAC;KAAA;IAkCK,oBAAoB,CACxB,UAA2C,EAC3C,QAAsB;;YAEtB,MAAM,MAAM,GAAkB;gBAC5B,GAAG,EAAE,iBAAiB,UAAU,CAAC,YAAY,OAAO,UAAU,CAAC,UAAU,IAAI,UAAU,CAAC,SAAS,SAAS,UAAU,CAAC,UAAU,EAAE;gBACjI,MAAM,EAAE,KAAK;gBACb,MAAM,EAAE;oBACN,YAAY,EAAE,UAAU,CAAC,YAAY;oBACrC,YAAY,EAAE,UAAU,CAAC,YAAY;oBACrC,aAAa,EAAE,UAAU,CAAC,aAAa;oBACvC,aAAa,EAAE,UAAU,CAAC,aAAa;oBACvC,MAAM,EAAE,UAAU,CAAC,MAAM;oBACzB,KAAK,EAAE,UAAU,CAAC,KAAK;oBACvB,KAAK,EAAE,UAAU,CAAC,KAAK;iBACxB;aACF,CAAC;YAEF,OAAO,IAAI,CAAC,MAAM,CAAC,WAAW,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;QACnD,CAAC;KAAA;CACF;AA9PD,4BA8PC"}
|
package/out/api/settings.d.ts
CHANGED
|
@@ -9,7 +9,8 @@ export declare class Settings {
|
|
|
9
9
|
* Returns the look and feel settings for the site or a single space. This includes attributes such as the color
|
|
10
10
|
* scheme, padding, and border radius.
|
|
11
11
|
*
|
|
12
|
-
* The look and feel settings for a space can be inherited from the global look and feel settings or provided by a
|
|
12
|
+
* The look and feel settings for a space can be inherited from the global look and feel settings or provided by a
|
|
13
|
+
* theme.
|
|
13
14
|
*
|
|
14
15
|
* **[Permissions](https://confluence.atlassian.com/x/_AozKw) required**: None
|
|
15
16
|
*/
|
|
@@ -18,7 +19,8 @@ export declare class Settings {
|
|
|
18
19
|
* Returns the look and feel settings for the site or a single space. This includes attributes such as the color
|
|
19
20
|
* scheme, padding, and border radius.
|
|
20
21
|
*
|
|
21
|
-
* The look and feel settings for a space can be inherited from the global look and feel settings or provided by a
|
|
22
|
+
* The look and feel settings for a space can be inherited from the global look and feel settings or provided by a
|
|
23
|
+
* theme.
|
|
22
24
|
*
|
|
23
25
|
* **[Permissions](https://confluence.atlassian.com/x/_AozKw) required**: None
|
|
24
26
|
*/
|
package/out/api/settings.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"settings.js","sourceRoot":"","sources":["../../src/api/settings.ts"],"names":[],"mappings":";;;;AAMA,MAAa,QAAQ;IACnB,YAAoB,MAAc;QAAd,WAAM,GAAN,MAAM,CAAQ;IAAG,CAAC;
|
|
1
|
+
{"version":3,"file":"settings.js","sourceRoot":"","sources":["../../src/api/settings.ts"],"names":[],"mappings":"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"}
|
package/out/api/space.d.ts
CHANGED
|
@@ -50,13 +50,15 @@ export declare class Space {
|
|
|
50
50
|
*/
|
|
51
51
|
createPrivateSpace<T = Models.Space>(parameters?: Parameters.CreatePrivateSpace, callback?: never): Promise<T>;
|
|
52
52
|
/**
|
|
53
|
-
* Returns a space. This includes information like the name, description, and permissions, but not the content in the
|
|
53
|
+
* Returns a space. This includes information like the name, description, and permissions, but not the content in the
|
|
54
|
+
* space.
|
|
54
55
|
*
|
|
55
56
|
* **[Permissions](https://confluence.atlassian.com/x/_AozKw) required**: 'View' permission for the space.
|
|
56
57
|
*/
|
|
57
58
|
getSpace<T = Models.Space>(parameters: Parameters.GetSpace, callback: Callback<T>): Promise<void>;
|
|
58
59
|
/**
|
|
59
|
-
* Returns a space. This includes information like the name, description, and permissions, but not the content in the
|
|
60
|
+
* Returns a space. This includes information like the name, description, and permissions, but not the content in the
|
|
61
|
+
* space.
|
|
60
62
|
*
|
|
61
63
|
* **[Permissions](https://confluence.atlassian.com/x/_AozKw) required**: 'View' permission for the space.
|
|
62
64
|
*/
|
package/out/api/space.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"space.js","sourceRoot":"","sources":["../../src/api/space.ts"],"names":[],"mappings":";;;;AAIA,wDAAqD;AAGrD,MAAa,KAAK;IAChB,YAAoB,MAAc;QAAd,WAAM,GAAN,MAAM,CAAQ;IAAG,CAAC;IAqBhC,SAAS,CAAwB,UAAiC,EAAE,QAAsB;;YAC9F,MAAM,MAAM,GAAkB;gBAC5B,GAAG,EAAE,YAAY;gBACjB,MAAM,EAAE,KAAK;gBACb,MAAM,EAAE;oBACN,QAAQ,EAAE,IAAA,iCAAe,EAAC,UAAU,EAAE,UAAU,aAAV,UAAU,uBAAV,UAAU,CAAE,QAAQ,CAAC;oBAC3D,OAAO,EAAE,UAAU,aAAV,UAAU,uBAAV,UAAU,CAAE,OAAO;oBAC5B,IAAI,EAAE,UAAU,aAAV,UAAU,uBAAV,UAAU,CAAE,IAAI;oBACtB,MAAM,EAAE,UAAU,aAAV,UAAU,uBAAV,UAAU,CAAE,MAAM;oBAC1B,KAAK,EAAE,UAAU,aAAV,UAAU,uBAAV,UAAU,CAAE,KAAK;oBACxB,SAAS,EAAE,UAAU,aAAV,UAAU,uBAAV,UAAU,CAAE,SAAS;oBAChC,gBAAgB,EAAE,UAAU,aAAV,UAAU,uBAAV,UAAU,CAAE,gBAAgB;oBAC9C,KAAK,EAAE,UAAU,aAAV,UAAU,uBAAV,UAAU,CAAE,KAAK;oBACxB,KAAK,EAAE,UAAU,aAAV,UAAU,uBAAV,UAAU,CAAE,KAAK;iBACzB;aACF,CAAC;YAEF,OAAO,IAAI,CAAC,MAAM,CAAC,WAAW,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;QACnD,CAAC;KAAA;IAiBK,WAAW,CAAmB,UAAmC,EAAE,QAAsB;;YAC7F,MAAM,MAAM,GAAkB;gBAC5B,GAAG,EAAE,YAAY;gBACjB,MAAM,EAAE,MAAM;gBACd,IAAI,EAAE;oBACJ,GAAG,EAAE,UAAU,aAAV,UAAU,uBAAV,UAAU,CAAE,GAAG;oBACpB,IAAI,EAAE,UAAU,aAAV,UAAU,uBAAV,UAAU,CAAE,IAAI;oBACtB,WAAW,EAAE,UAAU,aAAV,UAAU,uBAAV,UAAU,CAAE,WAAW;oBACpC,WAAW,EAAE,UAAU,aAAV,UAAU,uBAAV,UAAU,CAAE,WAAW;iBACrC;aACF,CAAC;YAEF,OAAO,IAAI,CAAC,MAAM,CAAC,WAAW,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;QACnD,CAAC;KAAA;IAqBK,kBAAkB,CACtB,UAA0C,EAC1C,QAAsB;;YAEtB,MAAM,MAAM,GAAkB;gBAC5B,GAAG,EAAE,qBAAqB;gBAC1B,MAAM,EAAE,MAAM;gBACd,IAAI,EAAE;oBACJ,GAAG,EAAE,UAAU,aAAV,UAAU,uBAAV,UAAU,CAAE,GAAG;oBACpB,IAAI,EAAE,UAAU,aAAV,UAAU,uBAAV,UAAU,CAAE,IAAI;oBACtB,WAAW,EAAE,UAAU,aAAV,UAAU,uBAAV,UAAU,CAAE,WAAW;oBACpC,WAAW,EAAE,UAAU,aAAV,UAAU,uBAAV,UAAU,CAAE,WAAW;iBACrC;aACF,CAAC;YAEF,OAAO,IAAI,CAAC,MAAM,CAAC,WAAW,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;QACnD,CAAC;KAAA;
|
|
1
|
+
{"version":3,"file":"space.js","sourceRoot":"","sources":["../../src/api/space.ts"],"names":[],"mappings":"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"}
|
package/out/api/template.d.ts
CHANGED
|
@@ -58,17 +58,21 @@ export declare class Template {
|
|
|
58
58
|
*/
|
|
59
59
|
getBlueprintTemplates<T = Models.BlueprintTemplateArray>(parameters?: Parameters.GetBlueprintTemplates, callback?: never): Promise<T>;
|
|
60
60
|
/**
|
|
61
|
-
* Returns all content templates. Use this method to retrieve all global content templates or all content templates in
|
|
61
|
+
* Returns all content templates. Use this method to retrieve all global content templates or all content templates in
|
|
62
|
+
* a space.
|
|
62
63
|
*
|
|
63
64
|
* **[Permissions](https://confluence.atlassian.com/x/_AozKw) required**: 'View' permission for the space to view
|
|
64
|
-
* space templates and permission to access the Confluence site ('Can use' global permission) to view global
|
|
65
|
+
* space templates and permission to access the Confluence site ('Can use' global permission) to view global
|
|
66
|
+
* templates.
|
|
65
67
|
*/
|
|
66
68
|
getContentTemplates<T = Models.ContentTemplateArray>(parameters: Parameters.GetContentTemplates | undefined, callback: Callback<T>): Promise<void>;
|
|
67
69
|
/**
|
|
68
|
-
* Returns all content templates. Use this method to retrieve all global content templates or all content templates in
|
|
70
|
+
* Returns all content templates. Use this method to retrieve all global content templates or all content templates in
|
|
71
|
+
* a space.
|
|
69
72
|
*
|
|
70
73
|
* **[Permissions](https://confluence.atlassian.com/x/_AozKw) required**: 'View' permission for the space to view
|
|
71
|
-
* space templates and permission to access the Confluence site ('Can use' global permission) to view global
|
|
74
|
+
* space templates and permission to access the Confluence site ('Can use' global permission) to view global
|
|
75
|
+
* templates.
|
|
72
76
|
*/
|
|
73
77
|
getContentTemplates<T = Models.ContentTemplateArray>(parameters?: Parameters.GetContentTemplates, callback?: never): Promise<T>;
|
|
74
78
|
/**
|
|
@@ -76,7 +80,8 @@ export declare class Template {
|
|
|
76
80
|
* the template is in, the body of the template, and more.
|
|
77
81
|
*
|
|
78
82
|
* **[Permissions](https://confluence.atlassian.com/x/_AozKw) required**: 'View' permission for the space to view
|
|
79
|
-
* space templates and permission to access the Confluence site ('Can use' global permission) to view global
|
|
83
|
+
* space templates and permission to access the Confluence site ('Can use' global permission) to view global
|
|
84
|
+
* templates.
|
|
80
85
|
*/
|
|
81
86
|
getContentTemplate<T = Models.ContentTemplate>(parameters: Parameters.GetContentTemplate, callback: Callback<T>): Promise<void>;
|
|
82
87
|
/**
|
|
@@ -84,7 +89,8 @@ export declare class Template {
|
|
|
84
89
|
* the template is in, the body of the template, and more.
|
|
85
90
|
*
|
|
86
91
|
* **[Permissions](https://confluence.atlassian.com/x/_AozKw) required**: 'View' permission for the space to view
|
|
87
|
-
* space templates and permission to access the Confluence site ('Can use' global permission) to view global
|
|
92
|
+
* space templates and permission to access the Confluence site ('Can use' global permission) to view global
|
|
93
|
+
* templates.
|
|
88
94
|
*/
|
|
89
95
|
getContentTemplate<T = Models.ContentTemplate>(parameters: Parameters.GetContentTemplate, callback?: never): Promise<T>;
|
|
90
96
|
/**
|
|
@@ -93,7 +99,8 @@ export declare class Template {
|
|
|
93
99
|
* - If the template is a content template, it is deleted.
|
|
94
100
|
* - If the template is a modified space-level blueprint template, it reverts to the template inherited from the
|
|
95
101
|
* global-level blueprint template.
|
|
96
|
-
* - If the template is a modified global-level blueprint template, it reverts to the default global-level blueprint
|
|
102
|
+
* - If the template is a modified global-level blueprint template, it reverts to the default global-level blueprint
|
|
103
|
+
* template.
|
|
97
104
|
*
|
|
98
105
|
* Note, unmodified blueprint templates cannot be deleted.
|
|
99
106
|
*
|
|
@@ -107,7 +114,8 @@ export declare class Template {
|
|
|
107
114
|
* - If the template is a content template, it is deleted.
|
|
108
115
|
* - If the template is a modified space-level blueprint template, it reverts to the template inherited from the
|
|
109
116
|
* global-level blueprint template.
|
|
110
|
-
* - If the template is a modified global-level blueprint template, it reverts to the default global-level blueprint
|
|
117
|
+
* - If the template is a modified global-level blueprint template, it reverts to the default global-level blueprint
|
|
118
|
+
* template.
|
|
111
119
|
*
|
|
112
120
|
* Note, unmodified blueprint templates cannot be deleted.
|
|
113
121
|
*
|
package/out/api/template.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"template.js","sourceRoot":"","sources":["../../src/api/template.ts"],"names":[],"mappings":";;;;AAMA,MAAa,QAAQ;IACnB,YAAoB,MAAc;QAAd,WAAM,GAAN,MAAM,CAAQ;IAAG,CAAC;IAsBhC,qBAAqB,CACzB,UAA6C,EAC7C,QAAsB;;YAEtB,MAAM,MAAM,GAAkB;gBAC5B,GAAG,EAAE,eAAe;gBACpB,MAAM,EAAE,MAAM;gBACd,IAAI,EAAE;oBACJ,IAAI,EAAE,UAAU,aAAV,UAAU,uBAAV,UAAU,CAAE,IAAI;oBACtB,YAAY,EAAE,UAAU,aAAV,UAAU,uBAAV,UAAU,CAAE,YAAY;oBACtC,IAAI,EAAE,UAAU,aAAV,UAAU,uBAAV,UAAU,CAAE,IAAI;oBACtB,WAAW,EAAE,UAAU,aAAV,UAAU,uBAAV,UAAU,CAAE,WAAW;oBACpC,MAAM,EAAE,UAAU,aAAV,UAAU,uBAAV,UAAU,CAAE,MAAM;oBAC1B,KAAK,EAAE,UAAU,aAAV,UAAU,uBAAV,UAAU,CAAE,KAAK;iBACzB;aACF,CAAC;YAEF,OAAO,IAAI,CAAC,MAAM,CAAC,WAAW,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;QACnD,CAAC;KAAA;IAsBK,qBAAqB,CACzB,UAA6C,EAC7C,QAAsB;;YAEtB,MAAM,MAAM,GAAkB;gBAC5B,GAAG,EAAE,eAAe;gBACpB,MAAM,EAAE,KAAK;gBACb,IAAI,EAAE;oBACJ,UAAU,EAAE,UAAU,aAAV,UAAU,uBAAV,UAAU,CAAE,UAAU;oBAClC,IAAI,EAAE,UAAU,aAAV,UAAU,uBAAV,UAAU,CAAE,IAAI;oBACtB,YAAY,EAAE,UAAU,aAAV,UAAU,uBAAV,UAAU,CAAE,YAAY;oBACtC,IAAI,EAAE,UAAU,aAAV,UAAU,uBAAV,UAAU,CAAE,IAAI;oBACtB,WAAW,EAAE,UAAU,aAAV,UAAU,uBAAV,UAAU,CAAE,WAAW;oBACpC,MAAM,EAAE,UAAU,aAAV,UAAU,uBAAV,UAAU,CAAE,MAAM;oBAC1B,KAAK,EAAE,UAAU,aAAV,UAAU,uBAAV,UAAU,CAAE,KAAK;iBACzB;aACF,CAAC;YAEF,OAAO,IAAI,CAAC,MAAM,CAAC,WAAW,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;QACnD,CAAC;KAAA;IAgCK,qBAAqB,CACzB,UAA6C,EAC7C,QAAsB;;YAEtB,MAAM,MAAM,GAAkB;gBAC5B,GAAG,EAAE,yBAAyB;gBAC9B,MAAM,EAAE,KAAK;gBACb,MAAM,EAAE;oBACN,QAAQ,EAAE,UAAU,aAAV,UAAU,uBAAV,UAAU,CAAE,QAAQ;oBAC9B,KAAK,EAAE,UAAU,aAAV,UAAU,uBAAV,UAAU,CAAE,KAAK;oBACxB,KAAK,EAAE,UAAU,aAAV,UAAU,uBAAV,UAAU,CAAE,KAAK;oBACxB,MAAM,EAAE,UAAU,aAAV,UAAU,uBAAV,UAAU,CAAE,MAAM;iBAC3B;aACF,CAAC;YAEF,OAAO,IAAI,CAAC,MAAM,CAAC,WAAW,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;QACnD,CAAC;KAAA;
|
|
1
|
+
{"version":3,"file":"template.js","sourceRoot":"","sources":["../../src/api/template.ts"],"names":[],"mappings":";;;;AAMA,MAAa,QAAQ;IACnB,YAAoB,MAAc;QAAd,WAAM,GAAN,MAAM,CAAQ;IAAG,CAAC;IAsBhC,qBAAqB,CACzB,UAA6C,EAC7C,QAAsB;;YAEtB,MAAM,MAAM,GAAkB;gBAC5B,GAAG,EAAE,eAAe;gBACpB,MAAM,EAAE,MAAM;gBACd,IAAI,EAAE;oBACJ,IAAI,EAAE,UAAU,aAAV,UAAU,uBAAV,UAAU,CAAE,IAAI;oBACtB,YAAY,EAAE,UAAU,aAAV,UAAU,uBAAV,UAAU,CAAE,YAAY;oBACtC,IAAI,EAAE,UAAU,aAAV,UAAU,uBAAV,UAAU,CAAE,IAAI;oBACtB,WAAW,EAAE,UAAU,aAAV,UAAU,uBAAV,UAAU,CAAE,WAAW;oBACpC,MAAM,EAAE,UAAU,aAAV,UAAU,uBAAV,UAAU,CAAE,MAAM;oBAC1B,KAAK,EAAE,UAAU,aAAV,UAAU,uBAAV,UAAU,CAAE,KAAK;iBACzB;aACF,CAAC;YAEF,OAAO,IAAI,CAAC,MAAM,CAAC,WAAW,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;QACnD,CAAC;KAAA;IAsBK,qBAAqB,CACzB,UAA6C,EAC7C,QAAsB;;YAEtB,MAAM,MAAM,GAAkB;gBAC5B,GAAG,EAAE,eAAe;gBACpB,MAAM,EAAE,KAAK;gBACb,IAAI,EAAE;oBACJ,UAAU,EAAE,UAAU,aAAV,UAAU,uBAAV,UAAU,CAAE,UAAU;oBAClC,IAAI,EAAE,UAAU,aAAV,UAAU,uBAAV,UAAU,CAAE,IAAI;oBACtB,YAAY,EAAE,UAAU,aAAV,UAAU,uBAAV,UAAU,CAAE,YAAY;oBACtC,IAAI,EAAE,UAAU,aAAV,UAAU,uBAAV,UAAU,CAAE,IAAI;oBACtB,WAAW,EAAE,UAAU,aAAV,UAAU,uBAAV,UAAU,CAAE,WAAW;oBACpC,MAAM,EAAE,UAAU,aAAV,UAAU,uBAAV,UAAU,CAAE,MAAM;oBAC1B,KAAK,EAAE,UAAU,aAAV,UAAU,uBAAV,UAAU,CAAE,KAAK;iBACzB;aACF,CAAC;YAEF,OAAO,IAAI,CAAC,MAAM,CAAC,WAAW,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;QACnD,CAAC;KAAA;IAgCK,qBAAqB,CACzB,UAA6C,EAC7C,QAAsB;;YAEtB,MAAM,MAAM,GAAkB;gBAC5B,GAAG,EAAE,yBAAyB;gBAC9B,MAAM,EAAE,KAAK;gBACb,MAAM,EAAE;oBACN,QAAQ,EAAE,UAAU,aAAV,UAAU,uBAAV,UAAU,CAAE,QAAQ;oBAC9B,KAAK,EAAE,UAAU,aAAV,UAAU,uBAAV,UAAU,CAAE,KAAK;oBACxB,KAAK,EAAE,UAAU,aAAV,UAAU,uBAAV,UAAU,CAAE,KAAK;oBACxB,MAAM,EAAE,UAAU,aAAV,UAAU,uBAAV,UAAU,CAAE,MAAM;iBAC3B;aACF,CAAC;YAEF,OAAO,IAAI,CAAC,MAAM,CAAC,WAAW,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;QACnD,CAAC;KAAA;IA0BK,mBAAmB,CACvB,UAA2C,EAC3C,QAAsB;;YAEtB,MAAM,MAAM,GAAkB;gBAC5B,GAAG,EAAE,oBAAoB;gBACzB,MAAM,EAAE,KAAK;gBACb,MAAM,EAAE;oBACN,QAAQ,EAAE,UAAU,aAAV,UAAU,uBAAV,UAAU,CAAE,QAAQ;oBAC9B,KAAK,EAAE,UAAU,aAAV,UAAU,uBAAV,UAAU,CAAE,KAAK;oBACxB,KAAK,EAAE,UAAU,aAAV,UAAU,uBAAV,UAAU,CAAE,KAAK;oBACxB,MAAM,EAAE,UAAU,aAAV,UAAU,uBAAV,UAAU,CAAE,MAAM;iBAC3B;aACF,CAAC;YAEF,OAAO,IAAI,CAAC,MAAM,CAAC,WAAW,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;QACnD,CAAC;KAAA;IA0BK,kBAAkB,CACtB,UAAyC,EACzC,QAAsB;;YAEtB,MAAM,MAAM,GAAkB;gBAC5B,GAAG,EAAE,iBAAiB,UAAU,CAAC,iBAAiB,EAAE;gBACpD,MAAM,EAAE,KAAK;aACd,CAAC;YAEF,OAAO,IAAI,CAAC,MAAM,CAAC,WAAW,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;QACnD,CAAC;KAAA;IAgCK,cAAc,CAAW,UAAqC,EAAE,QAAsB;;YAC1F,MAAM,MAAM,GAAkB;gBAC5B,GAAG,EAAE,iBAAiB,UAAU,CAAC,iBAAiB,EAAE;gBACpD,MAAM,EAAE,QAAQ;aACjB,CAAC;YAEF,OAAO,IAAI,CAAC,MAAM,CAAC,WAAW,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;QACnD,CAAC;KAAA;CACF;AAxPD,4BAwPC"}
|
|
@@ -59,7 +59,9 @@ class BaseClient {
|
|
|
59
59
|
if (tslib_1.__classPrivateFieldGet(this, _BaseClient_instance, "f")) {
|
|
60
60
|
return tslib_1.__classPrivateFieldGet(this, _BaseClient_instance, "f");
|
|
61
61
|
}
|
|
62
|
-
tslib_1.__classPrivateFieldSet(this, _BaseClient_instance, axios_1.default.create(Object.assign(Object.assign({ paramsSerializer: this.paramSerializer.bind(this) }, this.config.baseRequestConfig), { baseURL: `${this.config.host}${this.urlSuffix}`, headers: this.removeUndefinedProperties(Object.assign({ [ATLASSIAN_TOKEN_CHECK_FLAG]: this.config.noCheckAtlassianToken
|
|
62
|
+
tslib_1.__classPrivateFieldSet(this, _BaseClient_instance, axios_1.default.create(Object.assign(Object.assign({ paramsSerializer: this.paramSerializer.bind(this) }, this.config.baseRequestConfig), { baseURL: `${this.config.host}${this.urlSuffix}`, headers: this.removeUndefinedProperties(Object.assign({ [ATLASSIAN_TOKEN_CHECK_FLAG]: this.config.noCheckAtlassianToken
|
|
63
|
+
? ATLASSIAN_TOKEN_CHECK_NOCHECK_VALUE
|
|
64
|
+
: undefined }, (_a = this.config.baseRequestConfig) === null || _a === void 0 ? void 0 : _a.headers)) })), "f");
|
|
63
65
|
return tslib_1.__classPrivateFieldGet(this, _BaseClient_instance, "f");
|
|
64
66
|
}
|
|
65
67
|
sendRequest(requestConfig, callback) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"baseClient.js","sourceRoot":"","sources":["../../src/clients/baseClient.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"baseClient.js","sourceRoot":"","sources":["../../src/clients/baseClient.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"serverClient.js","sourceRoot":"","sources":["../../src/clients/serverClient.ts"],"names":[],"mappings":";;;AAAA,6CAA0C;AAC1C,
|
|
1
|
+
{"version":3,"file":"serverClient.js","sourceRoot":"","sources":["../../src/clients/serverClient.ts"],"names":[],"mappings":";;;AAAA,6CAA0C;AAC1C,sCAA8F;AAE9F,MAAa,YAAa,SAAQ,uBAAU;IAA5C;;QACE,cAAS,GAAG,GAAG,CAAC;QAEhB,UAAK,GAAG,IAAI,cAAK,CAAC,IAAI,CAAC,CAAC;QACxB,YAAO,GAAG,IAAI,gBAAO,CAAC,IAAI,CAAC,CAAC;QAC5B,gBAAW,GAAG,IAAI,oBAAW,CAAC,IAAI,CAAC,CAAC;QACpC,UAAK,GAAG,IAAI,cAAK,CAAC,IAAI,CAAC,CAAC;QACxB,aAAQ,GAAG,IAAI,iBAAQ,CAAC,IAAI,CAAC,CAAC;QAC9B,WAAM,GAAG,IAAI,eAAM,CAAC,IAAI,CAAC,CAAC;QAC1B,UAAK,GAAG,IAAI,cAAK,CAAC,IAAI,CAAC,CAAC;QACxB,SAAI,GAAG,IAAI,aAAI,CAAC,IAAI,CAAC,CAAC;IACxB,CAAC;CAAA;AAXD,oCAWC"}
|
package/out/server/audit.js
CHANGED
|
@@ -19,7 +19,7 @@ class Audit {
|
|
|
19
19
|
searchString: parameters === null || parameters === void 0 ? void 0 : parameters.searchString,
|
|
20
20
|
},
|
|
21
21
|
};
|
|
22
|
-
return this.client.sendRequest(config, callback
|
|
22
|
+
return this.client.sendRequest(config, callback);
|
|
23
23
|
});
|
|
24
24
|
}
|
|
25
25
|
createAuditRecord(parameters, callback) {
|
|
@@ -40,7 +40,7 @@ class Audit {
|
|
|
40
40
|
associatedObjects: parameters.associatedObjects,
|
|
41
41
|
},
|
|
42
42
|
};
|
|
43
|
-
return this.client.sendRequest(config, callback
|
|
43
|
+
return this.client.sendRequest(config, callback);
|
|
44
44
|
});
|
|
45
45
|
}
|
|
46
46
|
exportAuditRecords(parameters, callback) {
|
|
@@ -55,7 +55,7 @@ class Audit {
|
|
|
55
55
|
format: parameters === null || parameters === void 0 ? void 0 : parameters.format,
|
|
56
56
|
},
|
|
57
57
|
};
|
|
58
|
-
return this.client.sendRequest(config, callback
|
|
58
|
+
return this.client.sendRequest(config, callback);
|
|
59
59
|
});
|
|
60
60
|
}
|
|
61
61
|
getRetentionPeriod(callback) {
|
|
@@ -64,7 +64,7 @@ class Audit {
|
|
|
64
64
|
url: '/rest/api/audit/retention',
|
|
65
65
|
method: 'GET',
|
|
66
66
|
};
|
|
67
|
-
return this.client.sendRequest(config, callback
|
|
67
|
+
return this.client.sendRequest(config, callback);
|
|
68
68
|
});
|
|
69
69
|
}
|
|
70
70
|
setRetentionPeriod(parameters, callback) {
|
|
@@ -77,7 +77,7 @@ class Audit {
|
|
|
77
77
|
units: parameters.units,
|
|
78
78
|
},
|
|
79
79
|
};
|
|
80
|
-
return this.client.sendRequest(config, callback
|
|
80
|
+
return this.client.sendRequest(config, callback);
|
|
81
81
|
});
|
|
82
82
|
}
|
|
83
83
|
getAuditRecordsForTimePeriod(parameters, callback) {
|
|
@@ -93,7 +93,7 @@ class Audit {
|
|
|
93
93
|
searchString: parameters === null || parameters === void 0 ? void 0 : parameters.searchString,
|
|
94
94
|
},
|
|
95
95
|
};
|
|
96
|
-
return this.client.sendRequest(config, callback
|
|
96
|
+
return this.client.sendRequest(config, callback);
|
|
97
97
|
});
|
|
98
98
|
}
|
|
99
99
|
}
|
package/out/server/audit.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"audit.js","sourceRoot":"","sources":["../../src/server/audit.ts"],"names":[],"mappings":";;;;AAOA,MAAa,KAAK;IAChB,YAAoB,MAAc;QAAd,WAAM,GAAN,MAAM,CAAQ;IAAG,CAAC;IAYhC,eAAe,CACnB,UAAuC,EACvC,QAAsB;;YAEtB,MAAM,MAAM,GAAkB;gBAC5B,GAAG,EAAE,iBAAiB;gBACtB,MAAM,EAAE,KAAK;gBACb,MAAM,EAAE;oBACN,SAAS,EAAE,UAAU,aAAV,UAAU,uBAAV,UAAU,CAAE,SAAS;oBAChC,OAAO,EAAE,UAAU,aAAV,UAAU,uBAAV,UAAU,CAAE,OAAO;oBAC5B,KAAK,EAAE,UAAU,aAAV,UAAU,uBAAV,UAAU,CAAE,KAAK;oBACxB,KAAK,EAAE,UAAU,aAAV,UAAU,uBAAV,UAAU,CAAE,KAAK;oBACxB,YAAY,EAAE,UAAU,aAAV,UAAU,uBAAV,UAAU,CAAE,YAAY;iBACvC;aACF,CAAC;YAEF,OAAO,IAAI,CAAC,MAAM,CAAC,WAAW,CAAC,MAAM,EAAE,QAAQ,
|
|
1
|
+
{"version":3,"file":"audit.js","sourceRoot":"","sources":["../../src/server/audit.ts"],"names":[],"mappings":"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"}
|