@jbrowse/plugin-authentication 2.11.2 → 2.12.1

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.
@@ -1,105 +1,11 @@
1
1
  import React from 'react';
2
2
  import { UriLocation } from '@jbrowse/core/util/types';
3
3
  import { Instance } from 'mobx-state-tree';
4
+ import { DropboxOAuthInternetAccountConfigModel } from './configSchema';
4
5
  /**
5
6
  * #stateModel DropboxOAuthInternetAccount
6
7
  */
7
- declare const stateModelFactory: (configSchema: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
8
- authEndpoint: {
9
- description: string;
10
- type: string;
11
- defaultValue: string;
12
- };
13
- tokenEndpoint: {
14
- description: string;
15
- type: string;
16
- defaultValue: string;
17
- };
18
- needsPKCE: {
19
- description: string;
20
- type: string; /**
21
- * #getter
22
- * The FileSelector icon for Dropbox
23
- */
24
- defaultValue: boolean;
25
- };
26
- domains: {
27
- description: string;
28
- type: string;
29
- defaultValue: string[];
30
- };
31
- }, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
32
- tokenType: {
33
- description: string;
34
- type: string;
35
- defaultValue: string;
36
- };
37
- authEndpoint: {
38
- description: string;
39
- type: string;
40
- defaultValue: string;
41
- };
42
- tokenEndpoint: {
43
- description: string;
44
- type: string;
45
- defaultValue: string;
46
- };
47
- needsPKCE: {
48
- description: string;
49
- type: string;
50
- defaultValue: boolean;
51
- };
52
- clientId: {
53
- description: string;
54
- type: string;
55
- defaultValue: string;
56
- }; /**
57
- * #method
58
- */
59
- scopes: {
60
- description: string;
61
- type: string;
62
- defaultValue: string;
63
- };
64
- state: {
65
- description: string;
66
- type: string;
67
- defaultValue: string;
68
- };
69
- responseType: {
70
- description: string;
71
- type: string;
72
- defaultValue: string;
73
- };
74
- }, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
75
- name: {
76
- description: string;
77
- type: string;
78
- defaultValue: string;
79
- };
80
- description: {
81
- description: string;
82
- type: string;
83
- defaultValue: string;
84
- };
85
- authHeader: {
86
- description: string;
87
- type: string; /**
88
- * #stateModel DropboxOAuthInternetAccount
89
- */
90
- defaultValue: string;
91
- };
92
- tokenType: {
93
- description: string;
94
- type: string;
95
- defaultValue: string;
96
- };
97
- domains: {
98
- description: string;
99
- type: string;
100
- defaultValue: never[];
101
- };
102
- }, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "internetAccountId">>, undefined>>, undefined>>) => import("mobx-state-tree").IModelType<{
8
+ declare const stateModelFactory: (configSchema: DropboxOAuthInternetAccountConfigModel) => import("mobx-state-tree").IModelType<{
103
9
  id: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
104
10
  type: import("mobx-state-tree").ISimpleType<string>;
105
11
  configuration: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
@@ -156,9 +62,7 @@ declare const stateModelFactory: (configSchema: import("@jbrowse/core/configurat
156
62
  description: string;
157
63
  type: string;
158
64
  defaultValue: string;
159
- }; /**
160
- * #method
161
- */
65
+ };
162
66
  scopes: {
163
67
  description: string;
164
68
  type: string;
@@ -187,9 +91,7 @@ declare const stateModelFactory: (configSchema: import("@jbrowse/core/configurat
187
91
  };
188
92
  authHeader: {
189
93
  description: string;
190
- type: string; /**
191
- * #stateModel DropboxOAuthInternetAccount
192
- */
94
+ type: string;
193
95
  defaultValue: string;
194
96
  };
195
97
  tokenType: {
@@ -224,10 +126,7 @@ declare const stateModelFactory: (configSchema: import("@jbrowse/core/configurat
224
126
  };
225
127
  needsPKCE: {
226
128
  description: string;
227
- type: string; /**
228
- * #getter
229
- * The FileSelector icon for Dropbox
230
- */
129
+ type: string;
231
130
  defaultValue: boolean;
232
131
  };
233
132
  domains: {
@@ -260,9 +159,7 @@ declare const stateModelFactory: (configSchema: import("@jbrowse/core/configurat
260
159
  description: string;
261
160
  type: string;
262
161
  defaultValue: string;
263
- }; /**
264
- * #method
265
- */
162
+ };
266
163
  scopes: {
267
164
  description: string;
268
165
  type: string;
@@ -291,9 +188,7 @@ declare const stateModelFactory: (configSchema: import("@jbrowse/core/configurat
291
188
  };
292
189
  authHeader: {
293
190
  description: string;
294
- type: string; /**
295
- * #stateModel DropboxOAuthInternetAccount
296
- */
191
+ type: string;
297
192
  defaultValue: string;
298
193
  };
299
194
  tokenType: {
@@ -327,23 +222,23 @@ declare const stateModelFactory: (configSchema: import("@jbrowse/core/configurat
327
222
  retrieveToken(): string | null;
328
223
  validateToken(token: string, _loc: UriLocation): Promise<string>;
329
224
  } & {
330
- getToken(location?: UriLocation | undefined): Promise<string>;
225
+ getToken(location?: UriLocation): Promise<string>;
331
226
  } & {
332
227
  addAuthHeaderToInit(init: RequestInit | undefined, token: string): {
333
228
  headers: Headers;
334
- body?: BodyInit | null | undefined;
335
- cache?: RequestCache | undefined;
336
- credentials?: RequestCredentials | undefined;
337
- integrity?: string | undefined;
338
- keepalive?: boolean | undefined;
339
- method?: string | undefined;
340
- mode?: RequestMode | undefined;
341
- priority?: RequestPriority | undefined;
342
- redirect?: RequestRedirect | undefined;
343
- referrer?: string | undefined;
344
- referrerPolicy?: ReferrerPolicy | undefined;
345
- signal?: AbortSignal | null | undefined;
346
- window?: null | undefined;
229
+ body?: BodyInit | null;
230
+ cache?: RequestCache;
231
+ credentials?: RequestCredentials;
232
+ integrity?: string;
233
+ keepalive?: boolean;
234
+ method?: string;
235
+ mode?: RequestMode;
236
+ priority?: RequestPriority;
237
+ redirect?: RequestRedirect;
238
+ referrer?: string;
239
+ referrerPolicy?: ReferrerPolicy;
240
+ signal?: AbortSignal | null;
241
+ window?: null;
347
242
  };
348
243
  getPreAuthorizationInformation(location: UriLocation): Promise<{
349
244
  internetAccountType: string;
@@ -353,7 +248,7 @@ declare const stateModelFactory: (configSchema: import("@jbrowse/core/configurat
353
248
  };
354
249
  }>;
355
250
  } & {
356
- getFetcher(loc?: UriLocation | undefined): (input: RequestInfo, init?: RequestInit | undefined) => Promise<Response>;
251
+ getFetcher(loc?: UriLocation): (input: RequestInfo, init?: RequestInit) => Promise<Response>;
357
252
  } & {
358
253
  openLocation(location: UriLocation): import("@jbrowse/core/util/io").RemoteFileWithRangeCache;
359
254
  } & {
@@ -376,12 +271,12 @@ declare const stateModelFactory: (configSchema: import("@jbrowse/core/configurat
376
271
  } & {
377
272
  addMessageChannel(resolve: (token: string) => void, reject: (error: Error) => void): void;
378
273
  deleteMessageChannel(): void;
379
- finishOAuthWindow(event: MessageEvent<any>, resolve: (token: string) => void, reject: (error: Error) => void): Promise<void>;
274
+ finishOAuthWindow(event: MessageEvent, resolve: (token: string) => void, reject: (error: Error) => void): Promise<void>;
380
275
  useEndpointForAuthorization(resolve: (token: string) => void, reject: (error: Error) => void): Promise<void>;
381
276
  getTokenFromUser(resolve: (token: string) => void, reject: (error: Error) => void): Promise<void>;
382
277
  validateToken(token: string, location: UriLocation): Promise<string>;
383
278
  } & {
384
- getFetcher(loc?: UriLocation | undefined): (input: RequestInfo, init?: RequestInit | undefined) => Promise<Response>;
279
+ getFetcher(loc?: UriLocation): (input: RequestInfo, init?: RequestInit) => Promise<Response>;
385
280
  } & {
386
281
  /**
387
282
  * #getter
@@ -1,39 +1,7 @@
1
- /// <reference types="react" />
2
1
  import { UriLocation } from '@jbrowse/core/util/types';
2
+ import { ExternalTokenInternetAccountConfigModel } from './configSchema';
3
3
  import { Instance } from 'mobx-state-tree';
4
- declare const stateModelFactory: (configSchema: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
5
- validateWithHEAD: {
6
- description: string;
7
- type: string;
8
- defaultValue: boolean;
9
- };
10
- }, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
11
- name: {
12
- description: string;
13
- type: string;
14
- defaultValue: string;
15
- };
16
- description: {
17
- description: string;
18
- type: string;
19
- defaultValue: string;
20
- };
21
- authHeader: {
22
- description: string;
23
- type: string;
24
- defaultValue: string;
25
- };
26
- tokenType: {
27
- description: string;
28
- type: string;
29
- defaultValue: string;
30
- };
31
- domains: {
32
- description: string;
33
- type: string;
34
- defaultValue: never[];
35
- };
36
- }, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "internetAccountId">>, undefined>>) => import("mobx-state-tree").IModelType<{
4
+ declare const stateModelFactory: (configSchema: ExternalTokenInternetAccountConfigModel) => import("mobx-state-tree").IModelType<{
37
5
  id: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
38
6
  type: import("mobx-state-tree").ISimpleType<string>;
39
7
  configuration: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
@@ -118,23 +86,23 @@ declare const stateModelFactory: (configSchema: import("@jbrowse/core/configurat
118
86
  retrieveToken(): string | null;
119
87
  validateToken(token: string, _loc: UriLocation): Promise<string>;
120
88
  } & {
121
- getToken(location?: UriLocation | undefined): Promise<string>;
89
+ getToken(location?: UriLocation): Promise<string>;
122
90
  } & {
123
91
  addAuthHeaderToInit(init: RequestInit | undefined, token: string): {
124
92
  headers: Headers;
125
- body?: BodyInit | null | undefined;
126
- cache?: RequestCache | undefined;
127
- credentials?: RequestCredentials | undefined;
128
- integrity?: string | undefined;
129
- keepalive?: boolean | undefined;
130
- method?: string | undefined;
131
- mode?: RequestMode | undefined;
132
- priority?: RequestPriority | undefined;
133
- redirect?: RequestRedirect | undefined;
134
- referrer?: string | undefined;
135
- referrerPolicy?: ReferrerPolicy | undefined;
136
- signal?: AbortSignal | null | undefined;
137
- window?: null | undefined;
93
+ body?: BodyInit | null;
94
+ cache?: RequestCache;
95
+ credentials?: RequestCredentials;
96
+ integrity?: string;
97
+ keepalive?: boolean;
98
+ method?: string;
99
+ mode?: RequestMode;
100
+ priority?: RequestPriority;
101
+ redirect?: RequestRedirect;
102
+ referrer?: string;
103
+ referrerPolicy?: ReferrerPolicy;
104
+ signal?: AbortSignal | null;
105
+ window?: null;
138
106
  };
139
107
  getPreAuthorizationInformation(location: UriLocation): Promise<{
140
108
  internetAccountType: string;
@@ -144,7 +112,7 @@ declare const stateModelFactory: (configSchema: import("@jbrowse/core/configurat
144
112
  };
145
113
  }>;
146
114
  } & {
147
- getFetcher(loc?: UriLocation | undefined): (input: RequestInfo, init?: RequestInit | undefined) => Promise<Response>;
115
+ getFetcher(loc?: UriLocation): (input: RequestInfo, init?: RequestInit) => Promise<Response>;
148
116
  } & {
149
117
  openLocation(location: UriLocation): import("@jbrowse/core/util/io").RemoteFileWithRangeCache;
150
118
  } & {
@@ -56,9 +56,7 @@ declare const GoogleDriveOAuthConfigSchema: import("@jbrowse/core/configuration/
56
56
  clientId: {
57
57
  description: string;
58
58
  type: string;
59
- defaultValue: string; /**
60
- * #baseConfiguration
61
- */
59
+ defaultValue: string;
62
60
  };
63
61
  scopes: {
64
62
  description: string;
@@ -93,9 +91,7 @@ declare const GoogleDriveOAuthConfigSchema: import("@jbrowse/core/configuration/
93
91
  };
94
92
  tokenType: {
95
93
  description: string;
96
- type: string; /**
97
- * #slot
98
- */
94
+ type: string;
99
95
  defaultValue: string;
100
96
  };
101
97
  domains: {
@@ -106,9 +106,7 @@ export default function stateModelFactory(configSchema: GoogleDriveOAuthInternet
106
106
  domains: {
107
107
  description: string;
108
108
  type: string;
109
- defaultValue: never[]; /**
110
- * #stateModel GoogleDriveOAuthInternetAccount
111
- */
109
+ defaultValue: never[];
112
110
  };
113
111
  }, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "internetAccountId">>, undefined>>;
114
112
  } & {
@@ -205,9 +203,7 @@ export default function stateModelFactory(configSchema: GoogleDriveOAuthInternet
205
203
  domains: {
206
204
  description: string;
207
205
  type: string;
208
- defaultValue: never[]; /**
209
- * #stateModel GoogleDriveOAuthInternetAccount
210
- */
206
+ defaultValue: never[];
211
207
  };
212
208
  }, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "internetAccountId">>, undefined>>, undefined>>;
213
209
  }, {
@@ -230,23 +226,23 @@ export default function stateModelFactory(configSchema: GoogleDriveOAuthInternet
230
226
  retrieveToken(): string | null;
231
227
  validateToken(token: string, _loc: UriLocation): Promise<string>;
232
228
  } & {
233
- getToken(location?: UriLocation | undefined): Promise<string>;
229
+ getToken(location?: UriLocation): Promise<string>;
234
230
  } & {
235
231
  addAuthHeaderToInit(init: RequestInit | undefined, token: string): {
236
232
  headers: Headers;
237
- body?: BodyInit | null | undefined;
238
- cache?: RequestCache | undefined;
239
- credentials?: RequestCredentials | undefined;
240
- integrity?: string | undefined;
241
- keepalive?: boolean | undefined;
242
- method?: string | undefined;
243
- mode?: RequestMode | undefined;
244
- priority?: RequestPriority | undefined;
245
- redirect?: RequestRedirect | undefined;
246
- referrer?: string | undefined;
247
- referrerPolicy?: ReferrerPolicy | undefined;
248
- signal?: AbortSignal | null | undefined;
249
- window?: null | undefined;
233
+ body?: BodyInit | null;
234
+ cache?: RequestCache;
235
+ credentials?: RequestCredentials;
236
+ integrity?: string;
237
+ keepalive?: boolean;
238
+ method?: string;
239
+ mode?: RequestMode;
240
+ priority?: RequestPriority;
241
+ redirect?: RequestRedirect;
242
+ referrer?: string;
243
+ referrerPolicy?: ReferrerPolicy;
244
+ signal?: AbortSignal | null;
245
+ window?: null;
250
246
  };
251
247
  getPreAuthorizationInformation(location: UriLocation): Promise<{
252
248
  internetAccountType: string;
@@ -256,7 +252,7 @@ export default function stateModelFactory(configSchema: GoogleDriveOAuthInternet
256
252
  };
257
253
  }>;
258
254
  } & {
259
- getFetcher(loc?: UriLocation | undefined): (input: RequestInfo, init?: RequestInit | undefined) => Promise<Response>;
255
+ getFetcher(loc?: UriLocation): (input: RequestInfo, init?: RequestInit) => Promise<Response>;
260
256
  } & {
261
257
  openLocation(location: UriLocation): import("@jbrowse/core/util/io").RemoteFileWithRangeCache;
262
258
  } & {
@@ -279,12 +275,12 @@ export default function stateModelFactory(configSchema: GoogleDriveOAuthInternet
279
275
  } & {
280
276
  addMessageChannel(resolve: (token: string) => void, reject: (error: Error) => void): void;
281
277
  deleteMessageChannel(): void;
282
- finishOAuthWindow(event: MessageEvent<any>, resolve: (token: string) => void, reject: (error: Error) => void): Promise<void>;
278
+ finishOAuthWindow(event: MessageEvent, resolve: (token: string) => void, reject: (error: Error) => void): Promise<void>;
283
279
  useEndpointForAuthorization(resolve: (token: string) => void, reject: (error: Error) => void): Promise<void>;
284
280
  getTokenFromUser(resolve: (token: string) => void, reject: (error: Error) => void): Promise<void>;
285
281
  validateToken(token: string, location: UriLocation): Promise<string>;
286
282
  } & {
287
- getFetcher(loc?: UriLocation | undefined): (input: RequestInfo, init?: RequestInit | undefined) => Promise<Response>;
283
+ getFetcher(loc?: UriLocation): (input: RequestInfo, init?: RequestInit) => Promise<Response>;
288
284
  } & {
289
285
  /**
290
286
  * #getter
@@ -1,52 +1,10 @@
1
- /// <reference types="react" />
2
1
  import { UriLocation } from '@jbrowse/core/util/types';
3
2
  import { Instance } from 'mobx-state-tree';
3
+ import { HTTPBasicInternetAccountConfigModel } from './configSchema';
4
4
  /**
5
5
  * #stateModel HTTPBasicInternetAccount
6
6
  */
7
- declare const stateModelFactory: (configSchema: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
8
- tokenType: {
9
- description: string;
10
- type: string;
11
- defaultValue: string;
12
- };
13
- validateWithHEAD: {
14
- description: string;
15
- type: string;
16
- defaultValue: boolean; /**
17
- * #property
18
- */
19
- };
20
- }, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
21
- name: {
22
- description: string;
23
- type: string;
24
- defaultValue: string;
25
- };
26
- description: {
27
- description: string;
28
- type: string;
29
- defaultValue: string;
30
- };
31
- authHeader: {
32
- description: string;
33
- type: string;
34
- defaultValue: string;
35
- };
36
- tokenType: {
37
- description: string;
38
- type: string;
39
- defaultValue: string;
40
- };
41
- domains: {
42
- description: string;
43
- type: string;
44
- /**
45
- * #property
46
- */
47
- defaultValue: never[];
48
- };
49
- }, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "internetAccountId">>, undefined>>) => import("mobx-state-tree").IModelType<{
7
+ declare const stateModelFactory: (configSchema: HTTPBasicInternetAccountConfigModel) => import("mobx-state-tree").IModelType<{
50
8
  id: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
51
9
  type: import("mobx-state-tree").ISimpleType<string>;
52
10
  configuration: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
@@ -54,16 +12,12 @@ declare const stateModelFactory: (configSchema: import("@jbrowse/core/configurat
54
12
  description: string;
55
13
  type: string;
56
14
  defaultValue: string;
57
- }; /**
58
- * #property
59
- */
15
+ };
60
16
  description: {
61
17
  description: string;
62
18
  type: string;
63
19
  defaultValue: string;
64
- }; /**
65
- * #getter
66
- */
20
+ };
67
21
  authHeader: {
68
22
  description: string;
69
23
  type: string;
@@ -97,9 +51,7 @@ declare const stateModelFactory: (configSchema: import("@jbrowse/core/configurat
97
51
  validateWithHEAD: {
98
52
  description: string;
99
53
  type: string;
100
- defaultValue: boolean; /**
101
- * #property
102
- */
54
+ defaultValue: boolean;
103
55
  };
104
56
  }, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
105
57
  name: {
@@ -125,9 +77,6 @@ declare const stateModelFactory: (configSchema: import("@jbrowse/core/configurat
125
77
  domains: {
126
78
  description: string;
127
79
  type: string;
128
- /**
129
- * #property
130
- */
131
80
  defaultValue: never[];
132
81
  };
133
82
  }, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "internetAccountId">>, undefined>>;
@@ -151,23 +100,23 @@ declare const stateModelFactory: (configSchema: import("@jbrowse/core/configurat
151
100
  retrieveToken(): string | null;
152
101
  validateToken(token: string, _loc: UriLocation): Promise<string>;
153
102
  } & {
154
- getToken(location?: UriLocation | undefined): Promise<string>;
103
+ getToken(location?: UriLocation): Promise<string>;
155
104
  } & {
156
105
  addAuthHeaderToInit(init: RequestInit | undefined, token: string): {
157
106
  headers: Headers;
158
- body?: BodyInit | null | undefined;
159
- cache?: RequestCache | undefined;
160
- credentials?: RequestCredentials | undefined;
161
- integrity?: string | undefined;
162
- keepalive?: boolean | undefined;
163
- method?: string | undefined;
164
- mode?: RequestMode | undefined;
165
- priority?: RequestPriority | undefined;
166
- redirect?: RequestRedirect | undefined;
167
- referrer?: string | undefined;
168
- referrerPolicy?: ReferrerPolicy | undefined;
169
- signal?: AbortSignal | null | undefined;
170
- window?: null | undefined;
107
+ body?: BodyInit | null;
108
+ cache?: RequestCache;
109
+ credentials?: RequestCredentials;
110
+ integrity?: string;
111
+ keepalive?: boolean;
112
+ method?: string;
113
+ mode?: RequestMode;
114
+ priority?: RequestPriority;
115
+ redirect?: RequestRedirect;
116
+ referrer?: string;
117
+ referrerPolicy?: ReferrerPolicy;
118
+ signal?: AbortSignal | null;
119
+ window?: null;
171
120
  };
172
121
  getPreAuthorizationInformation(location: UriLocation): Promise<{
173
122
  internetAccountType: string;
@@ -177,7 +126,7 @@ declare const stateModelFactory: (configSchema: import("@jbrowse/core/configurat
177
126
  };
178
127
  }>;
179
128
  } & {
180
- getFetcher(loc?: UriLocation | undefined): (input: RequestInfo, init?: RequestInit | undefined) => Promise<Response>;
129
+ getFetcher(loc?: UriLocation): (input: RequestInfo, init?: RequestInit) => Promise<Response>;
181
130
  } & {
182
131
  openLocation(location: UriLocation): import("@jbrowse/core/util/io").RemoteFileWithRangeCache;
183
132
  } & {
@@ -74,9 +74,7 @@ declare const OAuthConfigSchema: import("@jbrowse/core/configuration/configurati
74
74
  description: string;
75
75
  type: string;
76
76
  defaultValue: string;
77
- }; /**
78
- * #slot
79
- */
77
+ };
80
78
  authHeader: {
81
79
  description: string;
82
80
  type: string;