@valiantys/atlassian-app-frontend 3.0.0-alpha-22 → 3.0.0-alpha-24
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/atlassian/shared/frontend-ui-remote-adapter/src/lib/oauth-fetch-invoke-remote/index.cjs.js +1 -1
- package/atlassian/shared/frontend-ui-remote-adapter/src/lib/oauth-fetch-invoke-remote/index.es.js +7 -15
- package/atlassian-app/index.d.ts +2 -8
- package/atlassian-app-custom-ui/index.d.ts +2 -8
- package/atlassian-app-test/index.d.ts +2 -8
- package/package.json +2 -2
- package/shared/util-fetch/src/lib/shared-util-fetch/index.cjs.js +2 -2
- package/shared/util-fetch/src/lib/shared-util-fetch/index.es.js +34 -27
- package/ui-iframe/atlassian-app-frontend-ui-iframe.api.json +1 -1
- package/ui-iframe/atlassian-app-frontend.api.md +0 -1
- package/ui-iframe/index.d.ts +1 -0
- package/ui-remote-adapter/atlassian-app-frontend-ui-remote-adapter.api.json +4 -121
- package/ui-remote-adapter/atlassian-app-frontend.api.md +2 -12
- package/ui-remote-adapter/index.d.ts +2 -8
- package/util-atlassian-product-fetch/atlassian-app-frontend-util-atlassian-product-fetch.api.json +87 -5
- package/util-atlassian-product-fetch/atlassian-app-frontend.api.md +9 -1
- package/util-atlassian-product-fetch/index.d.ts +6 -1
package/atlassian/shared/frontend-ui-remote-adapter/src/lib/oauth-fetch-invoke-remote/index.cjs.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const r=require("../../../../../../shared/util-fetch/src/lib/shared-util-fetch/index.cjs.js");function h(o,t){return async e=>{const a=`${o}${e.path}`,d=t?r.addAuthHeader(t,e.headers||{}):e.headers;return r.jsonFetch(a,e.method,d,e.body,"json",{returnMetadata:!0})}}exports.oauthFetchInvokeRemote=h;
|
package/atlassian/shared/frontend-ui-remote-adapter/src/lib/oauth-fetch-invoke-remote/index.es.js
CHANGED
|
@@ -1,20 +1,12 @@
|
|
|
1
|
-
import { addAuthHeader as
|
|
2
|
-
function
|
|
1
|
+
import { jsonFetch as d, addAuthHeader as h } from "../../../../../../shared/util-fetch/src/lib/shared-util-fetch/index.es.js";
|
|
2
|
+
function c(t, r) {
|
|
3
3
|
return async (e) => {
|
|
4
|
-
const
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}), r = {};
|
|
9
|
-
return o.headers.forEach((a, h) => {
|
|
10
|
-
r[h] = a;
|
|
11
|
-
}), {
|
|
12
|
-
body: await o.json(),
|
|
13
|
-
headers: r,
|
|
14
|
-
status: o.status
|
|
15
|
-
};
|
|
4
|
+
const o = `${t}${e.path}`, a = r ? h(r, e.headers || {}) : e.headers;
|
|
5
|
+
return d(o, e.method, a, e.body, "json", {
|
|
6
|
+
returnMetadata: !0
|
|
7
|
+
});
|
|
16
8
|
};
|
|
17
9
|
}
|
|
18
10
|
export {
|
|
19
|
-
|
|
11
|
+
c as oauthFetchInvokeRemote
|
|
20
12
|
};
|
package/atlassian-app/index.d.ts
CHANGED
|
@@ -86,18 +86,12 @@ export declare type AtlassianAppStandaloneOauthConfig = OAuthProviderProps & {
|
|
|
86
86
|
|
|
87
87
|
declare type AtlassianOAuthScopes = 'read:me' | 'read:jira-user' | 'read:jira-work' | 'write:jira-work' | 'read:servicedesk-request' | 'write:servicedesk-request' | 'read:cmdb-schema:jira' | 'write:cmdb-schema:jira' | 'read:cmdb-type:jira' | 'write:cmdb-type:jira' | 'read:cmdb-object:jira' | 'write:cmdb-object:jira' | 'delete:cmdb-object:jira' | 'read:cmdb-attribute:jira' | 'write:cmdb-attribute:jira' | 'read:cmdb-icon:jira';
|
|
88
88
|
|
|
89
|
-
declare
|
|
90
|
-
body?: T;
|
|
91
|
-
headers?: Record<string, string>;
|
|
92
|
-
status: number;
|
|
93
|
-
}
|
|
94
|
-
|
|
95
|
-
declare type InvokeRemoteSignature = <T, U>(input: {
|
|
89
|
+
declare type InvokeRemoteSignature = <U>(input: {
|
|
96
90
|
path: string;
|
|
97
91
|
method: 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH';
|
|
98
92
|
headers?: Record<string, string>;
|
|
99
93
|
body?: U;
|
|
100
|
-
}) => Promise<
|
|
94
|
+
}) => Promise<Record<string, unknown> | void>;
|
|
101
95
|
|
|
102
96
|
export declare const IS_STANDALONE: boolean;
|
|
103
97
|
|
|
@@ -10,17 +10,11 @@ declare interface AtlassianAppForgeProps {
|
|
|
10
10
|
useAtlasKitFlags?: boolean;
|
|
11
11
|
}
|
|
12
12
|
|
|
13
|
-
declare
|
|
14
|
-
body?: T;
|
|
15
|
-
headers?: Record<string, string>;
|
|
16
|
-
status: number;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
declare type InvokeRemoteSignature = <T, U>(input: {
|
|
13
|
+
declare type InvokeRemoteSignature = <U>(input: {
|
|
20
14
|
path: string;
|
|
21
15
|
method: 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH';
|
|
22
16
|
headers?: Record<string, string>;
|
|
23
17
|
body?: U;
|
|
24
|
-
}) => Promise<
|
|
18
|
+
}) => Promise<Record<string, unknown> | void>;
|
|
25
19
|
|
|
26
20
|
export { }
|
|
@@ -51,18 +51,12 @@ declare type InvokePayload = {
|
|
|
51
51
|
[key in number | string]: unknown;
|
|
52
52
|
};
|
|
53
53
|
|
|
54
|
-
declare
|
|
55
|
-
body?: T;
|
|
56
|
-
headers?: Record<string, string>;
|
|
57
|
-
status: number;
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
declare type InvokeRemoteSignature = <T, U>(input: {
|
|
54
|
+
declare type InvokeRemoteSignature = <U>(input: {
|
|
61
55
|
path: string;
|
|
62
56
|
method: 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH';
|
|
63
57
|
headers?: Record<string, string>;
|
|
64
58
|
body?: U;
|
|
65
|
-
}) => Promise<
|
|
59
|
+
}) => Promise<Record<string, unknown> | void>;
|
|
66
60
|
|
|
67
61
|
declare type InvokeSignature = <T = unknown, U = InvokePayload, A extends string = string>(action: A, data?: U) => Promise<T>;
|
|
68
62
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@valiantys/atlassian-app-frontend",
|
|
3
|
-
"version": "3.0.0-alpha-
|
|
3
|
+
"version": "3.0.0-alpha-24",
|
|
4
4
|
"description": "This library provides an Atlassian Forge Custom UI wrapper component that handles all the setup necessary to support an app that can run deployed or in standalone mode",
|
|
5
5
|
"exports": {
|
|
6
6
|
"./atlassian-app": {
|
|
@@ -183,7 +183,7 @@
|
|
|
183
183
|
"@atlaskit/select": "^20.6.0",
|
|
184
184
|
"@atlaskit/spinner": "^18.0.4",
|
|
185
185
|
"@atlaskit/tokens": "^4.9.0",
|
|
186
|
-
"@forge/bridge": "^
|
|
186
|
+
"@forge/bridge": "^5.7.0",
|
|
187
187
|
"react": "^18.3.1",
|
|
188
188
|
"react-dom": "^18.3.1",
|
|
189
189
|
"react-router-dom": "^6.26.2"
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});class
|
|
2
|
-
${
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});class l extends Error{constructor(t,e,a=t){super(a),this.statusText=t,this.statusCode=e,this.statusCode=e,this.statusText=t}toJSON(){return{statusCode:this.statusCode,statusText:this.statusText}}}function u(s,t){const e={Authorization:s.startsWith("Bearer ")?s:`Bearer ${s}`};return t?{...t,...e}:e}async function w(s,t,e){const a=u(s,e.headers||{});return fetch(t,{...e,headers:a})}async function A(s,t,e,a,n="json",o={}){return f(t,e,u(s,o),a,n)}async function f(s,t,e,a,n="json",o){const d=typeof o=="string"?{includeCredentials:o}:o??{},j={...e,Accept:n==="json"?"application/json":"text/html","Content-Type":n==="json"?"application/json":"text/html"},x=a?JSON.stringify(a):void 0,r=await fetch(s,{method:t,headers:j,body:x,credentials:d.includeCredentials});let c;if(r.ok){if(t==="DELETE"||r.status===204?c=void 0:n==="text"?c=await r.text():c=await r.json(),d.returnMetadata){const i={};return r.headers.forEach((h,y)=>{i[y]=h}),{body:c,headers:i}}return c}else{let i="";try{i=await r.text()}catch{}const h=`${r.status} ${r.statusText} - ${t} ${s}
|
|
2
|
+
${i}`;throw console.error(h),new l(r.statusText,r.status,h)}}exports.FetchError=l;exports.addAuthHeader=u;exports.bearerAuthFetch=A;exports.bearerAuthFetchRaw=w;exports.jsonFetch=f;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
class
|
|
1
|
+
class j extends Error {
|
|
2
2
|
constructor(t, e, a = t) {
|
|
3
3
|
super(a), this.statusText = t, this.statusCode = e, this.statusCode = e, this.statusText = t;
|
|
4
4
|
}
|
|
@@ -9,56 +9,63 @@ class f extends Error {
|
|
|
9
9
|
};
|
|
10
10
|
}
|
|
11
11
|
}
|
|
12
|
-
function
|
|
12
|
+
function d(s, t) {
|
|
13
13
|
const e = {
|
|
14
14
|
Authorization: s.startsWith("Bearer ") ? s : `Bearer ${s}`
|
|
15
15
|
};
|
|
16
16
|
return t ? { ...t, ...e } : e;
|
|
17
17
|
}
|
|
18
|
-
async function
|
|
19
|
-
const a =
|
|
18
|
+
async function p(s, t, e) {
|
|
19
|
+
const a = d(
|
|
20
20
|
s,
|
|
21
21
|
e.headers || {}
|
|
22
22
|
);
|
|
23
23
|
return fetch(t, { ...e, headers: a });
|
|
24
24
|
}
|
|
25
|
-
async function
|
|
26
|
-
return
|
|
25
|
+
async function w(s, t, e, a, n = "json", o = {}) {
|
|
26
|
+
return y(
|
|
27
27
|
t,
|
|
28
28
|
e,
|
|
29
|
-
|
|
29
|
+
d(s, o),
|
|
30
30
|
a,
|
|
31
31
|
n
|
|
32
32
|
);
|
|
33
33
|
}
|
|
34
|
-
async function
|
|
35
|
-
const h = {
|
|
36
|
-
...e
|
|
34
|
+
async function y(s, t, e, a, n = "json", o) {
|
|
35
|
+
const h = typeof o == "string" ? { includeCredentials: o } : o ?? {}, f = {
|
|
36
|
+
...e,
|
|
37
37
|
Accept: n === "json" ? "application/json" : "text/html",
|
|
38
38
|
"Content-Type": n === "json" ? "application/json" : "text/html"
|
|
39
|
-
},
|
|
39
|
+
}, l = a ? JSON.stringify(a) : void 0, r = await fetch(s, {
|
|
40
40
|
method: t,
|
|
41
|
-
headers:
|
|
42
|
-
body:
|
|
43
|
-
credentials:
|
|
41
|
+
headers: f,
|
|
42
|
+
body: l,
|
|
43
|
+
credentials: h.includeCredentials
|
|
44
44
|
});
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
45
|
+
let c;
|
|
46
|
+
if (r.ok) {
|
|
47
|
+
if (t === "DELETE" || r.status === 204 ? c = void 0 : n === "text" ? c = await r.text() : c = await r.json(), h.returnMetadata) {
|
|
48
|
+
const i = {};
|
|
49
|
+
return r.headers.forEach((u, x) => {
|
|
50
|
+
i[x] = u;
|
|
51
|
+
}), { body: c, headers: i };
|
|
52
|
+
}
|
|
53
|
+
return c;
|
|
54
|
+
} else {
|
|
55
|
+
let i = "";
|
|
49
56
|
try {
|
|
50
|
-
|
|
57
|
+
i = await r.text();
|
|
51
58
|
} catch {
|
|
52
59
|
}
|
|
53
|
-
const
|
|
54
|
-
${
|
|
55
|
-
throw console.error(
|
|
60
|
+
const u = `${r.status} ${r.statusText} - ${t} ${s}
|
|
61
|
+
${i}`;
|
|
62
|
+
throw console.error(u), new j(r.statusText, r.status, u);
|
|
56
63
|
}
|
|
57
64
|
}
|
|
58
65
|
export {
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
66
|
+
j as FetchError,
|
|
67
|
+
d as addAuthHeader,
|
|
68
|
+
w as bearerAuthFetch,
|
|
69
|
+
p as bearerAuthFetchRaw,
|
|
70
|
+
y as jsonFetch
|
|
64
71
|
};
|
|
@@ -498,7 +498,7 @@
|
|
|
498
498
|
{
|
|
499
499
|
"kind": "PropertySignature",
|
|
500
500
|
"canonicalReference": "@valiantys/atlassian-app-frontend!IframeWrapperRef#reloadContentWindow:member",
|
|
501
|
-
"docComment": "",
|
|
501
|
+
"docComment": "/**\n * reload will only work in a same-origin frame *\n */\n",
|
|
502
502
|
"excerptTokens": [
|
|
503
503
|
{
|
|
504
504
|
"kind": "Content",
|
package/ui-iframe/index.d.ts
CHANGED
|
@@ -172,123 +172,6 @@
|
|
|
172
172
|
"name": "",
|
|
173
173
|
"preserveMemberOrder": false,
|
|
174
174
|
"members": [
|
|
175
|
-
{
|
|
176
|
-
"kind": "Interface",
|
|
177
|
-
"canonicalReference": "@valiantys/atlassian-app-frontend!InvokeRemoteResponse:interface",
|
|
178
|
-
"docComment": "",
|
|
179
|
-
"excerptTokens": [
|
|
180
|
-
{
|
|
181
|
-
"kind": "Content",
|
|
182
|
-
"text": "export interface InvokeRemoteResponse<T> "
|
|
183
|
-
}
|
|
184
|
-
],
|
|
185
|
-
"fileUrlPath": "../../shared/frontend-ui-remote-adapter/src/lib/remote-adapter.d.ts",
|
|
186
|
-
"releaseTag": "Public",
|
|
187
|
-
"typeParameters": [
|
|
188
|
-
{
|
|
189
|
-
"typeParameterName": "T",
|
|
190
|
-
"constraintTokenRange": {
|
|
191
|
-
"startIndex": 0,
|
|
192
|
-
"endIndex": 0
|
|
193
|
-
},
|
|
194
|
-
"defaultTypeTokenRange": {
|
|
195
|
-
"startIndex": 0,
|
|
196
|
-
"endIndex": 0
|
|
197
|
-
}
|
|
198
|
-
}
|
|
199
|
-
],
|
|
200
|
-
"name": "InvokeRemoteResponse",
|
|
201
|
-
"preserveMemberOrder": false,
|
|
202
|
-
"members": [
|
|
203
|
-
{
|
|
204
|
-
"kind": "PropertySignature",
|
|
205
|
-
"canonicalReference": "@valiantys/atlassian-app-frontend!InvokeRemoteResponse#body:member",
|
|
206
|
-
"docComment": "",
|
|
207
|
-
"excerptTokens": [
|
|
208
|
-
{
|
|
209
|
-
"kind": "Content",
|
|
210
|
-
"text": "body?: "
|
|
211
|
-
},
|
|
212
|
-
{
|
|
213
|
-
"kind": "Content",
|
|
214
|
-
"text": "T"
|
|
215
|
-
},
|
|
216
|
-
{
|
|
217
|
-
"kind": "Content",
|
|
218
|
-
"text": ";"
|
|
219
|
-
}
|
|
220
|
-
],
|
|
221
|
-
"isReadonly": false,
|
|
222
|
-
"isOptional": true,
|
|
223
|
-
"releaseTag": "Public",
|
|
224
|
-
"name": "body",
|
|
225
|
-
"propertyTypeTokenRange": {
|
|
226
|
-
"startIndex": 1,
|
|
227
|
-
"endIndex": 2
|
|
228
|
-
}
|
|
229
|
-
},
|
|
230
|
-
{
|
|
231
|
-
"kind": "PropertySignature",
|
|
232
|
-
"canonicalReference": "@valiantys/atlassian-app-frontend!InvokeRemoteResponse#headers:member",
|
|
233
|
-
"docComment": "",
|
|
234
|
-
"excerptTokens": [
|
|
235
|
-
{
|
|
236
|
-
"kind": "Content",
|
|
237
|
-
"text": "headers?: "
|
|
238
|
-
},
|
|
239
|
-
{
|
|
240
|
-
"kind": "Reference",
|
|
241
|
-
"text": "Record",
|
|
242
|
-
"canonicalReference": "!Record:type"
|
|
243
|
-
},
|
|
244
|
-
{
|
|
245
|
-
"kind": "Content",
|
|
246
|
-
"text": "<string, string>"
|
|
247
|
-
},
|
|
248
|
-
{
|
|
249
|
-
"kind": "Content",
|
|
250
|
-
"text": ";"
|
|
251
|
-
}
|
|
252
|
-
],
|
|
253
|
-
"isReadonly": false,
|
|
254
|
-
"isOptional": true,
|
|
255
|
-
"releaseTag": "Public",
|
|
256
|
-
"name": "headers",
|
|
257
|
-
"propertyTypeTokenRange": {
|
|
258
|
-
"startIndex": 1,
|
|
259
|
-
"endIndex": 3
|
|
260
|
-
}
|
|
261
|
-
},
|
|
262
|
-
{
|
|
263
|
-
"kind": "PropertySignature",
|
|
264
|
-
"canonicalReference": "@valiantys/atlassian-app-frontend!InvokeRemoteResponse#status:member",
|
|
265
|
-
"docComment": "",
|
|
266
|
-
"excerptTokens": [
|
|
267
|
-
{
|
|
268
|
-
"kind": "Content",
|
|
269
|
-
"text": "status: "
|
|
270
|
-
},
|
|
271
|
-
{
|
|
272
|
-
"kind": "Content",
|
|
273
|
-
"text": "number"
|
|
274
|
-
},
|
|
275
|
-
{
|
|
276
|
-
"kind": "Content",
|
|
277
|
-
"text": ";"
|
|
278
|
-
}
|
|
279
|
-
],
|
|
280
|
-
"isReadonly": false,
|
|
281
|
-
"isOptional": false,
|
|
282
|
-
"releaseTag": "Public",
|
|
283
|
-
"name": "status",
|
|
284
|
-
"propertyTypeTokenRange": {
|
|
285
|
-
"startIndex": 1,
|
|
286
|
-
"endIndex": 2
|
|
287
|
-
}
|
|
288
|
-
}
|
|
289
|
-
],
|
|
290
|
-
"extendsTokenRanges": []
|
|
291
|
-
},
|
|
292
175
|
{
|
|
293
176
|
"kind": "TypeAlias",
|
|
294
177
|
"canonicalReference": "@valiantys/atlassian-app-frontend!InvokeRemoteSignature:type",
|
|
@@ -300,7 +183,7 @@
|
|
|
300
183
|
},
|
|
301
184
|
{
|
|
302
185
|
"kind": "Content",
|
|
303
|
-
"text": "<
|
|
186
|
+
"text": "<U>(input: {\n path: string;\n method: 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH';\n headers?: "
|
|
304
187
|
},
|
|
305
188
|
{
|
|
306
189
|
"kind": "Reference",
|
|
@@ -322,12 +205,12 @@
|
|
|
322
205
|
},
|
|
323
206
|
{
|
|
324
207
|
"kind": "Reference",
|
|
325
|
-
"text": "
|
|
326
|
-
"canonicalReference": "
|
|
208
|
+
"text": "Record",
|
|
209
|
+
"canonicalReference": "!Record:type"
|
|
327
210
|
},
|
|
328
211
|
{
|
|
329
212
|
"kind": "Content",
|
|
330
|
-
"text": "<
|
|
213
|
+
"text": "<string, unknown> | void>"
|
|
331
214
|
},
|
|
332
215
|
{
|
|
333
216
|
"kind": "Content",
|
|
@@ -8,22 +8,12 @@ import { JSX as JSX_2 } from 'react/jsx-runtime';
|
|
|
8
8
|
import { ReactNode } from 'react';
|
|
9
9
|
|
|
10
10
|
// @public (undocumented)
|
|
11
|
-
export
|
|
12
|
-
// (undocumented)
|
|
13
|
-
body?: T;
|
|
14
|
-
// (undocumented)
|
|
15
|
-
headers?: Record<string, string>;
|
|
16
|
-
// (undocumented)
|
|
17
|
-
status: number;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
// @public (undocumented)
|
|
21
|
-
export type InvokeRemoteSignature = <T, U>(input: {
|
|
11
|
+
export type InvokeRemoteSignature = <U>(input: {
|
|
22
12
|
path: string;
|
|
23
13
|
method: 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH';
|
|
24
14
|
headers?: Record<string, string>;
|
|
25
15
|
body?: U;
|
|
26
|
-
}) => Promise<
|
|
16
|
+
}) => Promise<Record<string, unknown> | void>;
|
|
27
17
|
|
|
28
18
|
// @public (undocumented)
|
|
29
19
|
export function oauthFetchInvokeRemote(baseUrl: string, authToken?: string): InvokeRemoteSignature;
|
|
@@ -1,18 +1,12 @@
|
|
|
1
1
|
import { JSX as JSX_2 } from 'react/jsx-runtime';
|
|
2
2
|
import { ReactNode } from 'react';
|
|
3
3
|
|
|
4
|
-
export declare
|
|
5
|
-
body?: T;
|
|
6
|
-
headers?: Record<string, string>;
|
|
7
|
-
status: number;
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
export declare type InvokeRemoteSignature = <T, U>(input: {
|
|
4
|
+
export declare type InvokeRemoteSignature = <U>(input: {
|
|
11
5
|
path: string;
|
|
12
6
|
method: 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH';
|
|
13
7
|
headers?: Record<string, string>;
|
|
14
8
|
body?: U;
|
|
15
|
-
}) => Promise<
|
|
9
|
+
}) => Promise<Record<string, unknown> | void>;
|
|
16
10
|
|
|
17
11
|
export declare function oauthFetchInvokeRemote(baseUrl: string, authToken?: string): InvokeRemoteSignature;
|
|
18
12
|
|
package/util-atlassian-product-fetch/atlassian-app-frontend-util-atlassian-product-fetch.api.json
CHANGED
|
@@ -1284,13 +1284,22 @@
|
|
|
1284
1284
|
},
|
|
1285
1285
|
{
|
|
1286
1286
|
"kind": "Content",
|
|
1287
|
-
"text": ",
|
|
1287
|
+
"text": ", options?: "
|
|
1288
1288
|
},
|
|
1289
1289
|
{
|
|
1290
1290
|
"kind": "Reference",
|
|
1291
1291
|
"text": "RequestCredentials",
|
|
1292
1292
|
"canonicalReference": "!RequestCredentials:type"
|
|
1293
1293
|
},
|
|
1294
|
+
{
|
|
1295
|
+
"kind": "Content",
|
|
1296
|
+
"text": " | "
|
|
1297
|
+
},
|
|
1298
|
+
{
|
|
1299
|
+
"kind": "Reference",
|
|
1300
|
+
"text": "JsonFetchOptions",
|
|
1301
|
+
"canonicalReference": "@valiantys/atlassian-app-frontend!JsonFetchOptions:interface"
|
|
1302
|
+
},
|
|
1294
1303
|
{
|
|
1295
1304
|
"kind": "Content",
|
|
1296
1305
|
"text": "): "
|
|
@@ -1311,8 +1320,8 @@
|
|
|
1311
1320
|
],
|
|
1312
1321
|
"fileUrlPath": "../../../shared/util-fetch/src/lib/shared-util-fetch.d.ts",
|
|
1313
1322
|
"returnTypeTokenRange": {
|
|
1314
|
-
"startIndex":
|
|
1315
|
-
"endIndex":
|
|
1323
|
+
"startIndex": 19,
|
|
1324
|
+
"endIndex": 21
|
|
1316
1325
|
},
|
|
1317
1326
|
"releaseTag": "Public",
|
|
1318
1327
|
"overloadIndex": 1,
|
|
@@ -1358,10 +1367,10 @@
|
|
|
1358
1367
|
"isOptional": true
|
|
1359
1368
|
},
|
|
1360
1369
|
{
|
|
1361
|
-
"parameterName": "
|
|
1370
|
+
"parameterName": "options",
|
|
1362
1371
|
"parameterTypeTokenRange": {
|
|
1363
1372
|
"startIndex": 15,
|
|
1364
|
-
"endIndex":
|
|
1373
|
+
"endIndex": 18
|
|
1365
1374
|
},
|
|
1366
1375
|
"isOptional": true
|
|
1367
1376
|
}
|
|
@@ -1392,6 +1401,79 @@
|
|
|
1392
1401
|
],
|
|
1393
1402
|
"name": "jsonFetch"
|
|
1394
1403
|
},
|
|
1404
|
+
{
|
|
1405
|
+
"kind": "Interface",
|
|
1406
|
+
"canonicalReference": "@valiantys/atlassian-app-frontend!JsonFetchOptions:interface",
|
|
1407
|
+
"docComment": "",
|
|
1408
|
+
"excerptTokens": [
|
|
1409
|
+
{
|
|
1410
|
+
"kind": "Content",
|
|
1411
|
+
"text": "export interface JsonFetchOptions "
|
|
1412
|
+
}
|
|
1413
|
+
],
|
|
1414
|
+
"fileUrlPath": "../../../shared/util-fetch/src/lib/shared-util-fetch.d.ts",
|
|
1415
|
+
"releaseTag": "Public",
|
|
1416
|
+
"name": "JsonFetchOptions",
|
|
1417
|
+
"preserveMemberOrder": false,
|
|
1418
|
+
"members": [
|
|
1419
|
+
{
|
|
1420
|
+
"kind": "PropertySignature",
|
|
1421
|
+
"canonicalReference": "@valiantys/atlassian-app-frontend!JsonFetchOptions#includeCredentials:member",
|
|
1422
|
+
"docComment": "",
|
|
1423
|
+
"excerptTokens": [
|
|
1424
|
+
{
|
|
1425
|
+
"kind": "Content",
|
|
1426
|
+
"text": "includeCredentials?: "
|
|
1427
|
+
},
|
|
1428
|
+
{
|
|
1429
|
+
"kind": "Reference",
|
|
1430
|
+
"text": "RequestCredentials",
|
|
1431
|
+
"canonicalReference": "!RequestCredentials:type"
|
|
1432
|
+
},
|
|
1433
|
+
{
|
|
1434
|
+
"kind": "Content",
|
|
1435
|
+
"text": ";"
|
|
1436
|
+
}
|
|
1437
|
+
],
|
|
1438
|
+
"isReadonly": false,
|
|
1439
|
+
"isOptional": true,
|
|
1440
|
+
"releaseTag": "Public",
|
|
1441
|
+
"name": "includeCredentials",
|
|
1442
|
+
"propertyTypeTokenRange": {
|
|
1443
|
+
"startIndex": 1,
|
|
1444
|
+
"endIndex": 2
|
|
1445
|
+
}
|
|
1446
|
+
},
|
|
1447
|
+
{
|
|
1448
|
+
"kind": "PropertySignature",
|
|
1449
|
+
"canonicalReference": "@valiantys/atlassian-app-frontend!JsonFetchOptions#returnMetadata:member",
|
|
1450
|
+
"docComment": "",
|
|
1451
|
+
"excerptTokens": [
|
|
1452
|
+
{
|
|
1453
|
+
"kind": "Content",
|
|
1454
|
+
"text": "returnMetadata?: "
|
|
1455
|
+
},
|
|
1456
|
+
{
|
|
1457
|
+
"kind": "Content",
|
|
1458
|
+
"text": "boolean"
|
|
1459
|
+
},
|
|
1460
|
+
{
|
|
1461
|
+
"kind": "Content",
|
|
1462
|
+
"text": ";"
|
|
1463
|
+
}
|
|
1464
|
+
],
|
|
1465
|
+
"isReadonly": false,
|
|
1466
|
+
"isOptional": true,
|
|
1467
|
+
"releaseTag": "Public",
|
|
1468
|
+
"name": "returnMetadata",
|
|
1469
|
+
"propertyTypeTokenRange": {
|
|
1470
|
+
"startIndex": 1,
|
|
1471
|
+
"endIndex": 2
|
|
1472
|
+
}
|
|
1473
|
+
}
|
|
1474
|
+
],
|
|
1475
|
+
"extendsTokenRanges": []
|
|
1476
|
+
},
|
|
1395
1477
|
{
|
|
1396
1478
|
"kind": "Interface",
|
|
1397
1479
|
"canonicalReference": "@valiantys/atlassian-app-frontend!PagedResponseValues:interface",
|
|
@@ -78,7 +78,15 @@ export type FetchRoute = {
|
|
|
78
78
|
export type FetchSignature = <T>(request: FetchRequest, body?: any) => Promise<T>;
|
|
79
79
|
|
|
80
80
|
// @public (undocumented)
|
|
81
|
-
export function jsonFetch<T, U = Record<string, unknown>>(url: string, method: FetchMethod, headers?: Record<string, string>, body?: U, responseType?: 'json' | 'text',
|
|
81
|
+
export function jsonFetch<T, U = Record<string, unknown>>(url: string, method: FetchMethod, headers?: Record<string, string>, body?: U, responseType?: 'json' | 'text', options?: RequestCredentials | JsonFetchOptions): Promise<T>;
|
|
82
|
+
|
|
83
|
+
// @public (undocumented)
|
|
84
|
+
export interface JsonFetchOptions {
|
|
85
|
+
// (undocumented)
|
|
86
|
+
includeCredentials?: RequestCredentials;
|
|
87
|
+
// (undocumented)
|
|
88
|
+
returnMetadata?: boolean;
|
|
89
|
+
}
|
|
82
90
|
|
|
83
91
|
// @public (undocumented)
|
|
84
92
|
export interface PagedResponseValues<T> {
|
|
@@ -46,7 +46,12 @@ export declare type FetchRoute = {
|
|
|
46
46
|
|
|
47
47
|
export declare type FetchSignature = <T>(request: FetchRequest, body?: any) => Promise<T>;
|
|
48
48
|
|
|
49
|
-
export declare function jsonFetch<T, U = Record<string, unknown>>(url: string, method: FetchMethod, headers?: Record<string, string>, body?: U, responseType?: 'json' | 'text',
|
|
49
|
+
export declare function jsonFetch<T, U = Record<string, unknown>>(url: string, method: FetchMethod, headers?: Record<string, string>, body?: U, responseType?: 'json' | 'text', options?: RequestCredentials | JsonFetchOptions): Promise<T>;
|
|
50
|
+
|
|
51
|
+
export declare interface JsonFetchOptions {
|
|
52
|
+
includeCredentials?: RequestCredentials;
|
|
53
|
+
returnMetadata?: boolean;
|
|
54
|
+
}
|
|
50
55
|
|
|
51
56
|
export declare interface PagedResponseValues<T> {
|
|
52
57
|
startAt: number;
|