@boxyhq/saml-jackson 1.37.0 → 1.37.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.
- package/dist/controller/api.d.ts +521 -474
- package/dist/controller/api.js +521 -474
- package/dist/controller/api.js.map +1 -1
- package/dist/controller/oauth.d.ts +88 -87
- package/dist/controller/oauth.js +146 -101
- package/dist/controller/oauth.js.map +1 -1
- package/dist/controller/setup-link.d.ts +343 -234
- package/dist/controller/setup-link.js +343 -234
- package/dist/controller/setup-link.js.map +1 -1
- package/dist/directory-sync/scim/DirectoryConfig.d.ts +265 -224
- package/dist/directory-sync/scim/DirectoryConfig.js +265 -224
- package/dist/directory-sync/scim/DirectoryConfig.js.map +1 -1
- package/dist/directory-sync/scim/Groups.d.ts +82 -87
- package/dist/directory-sync/scim/Groups.js +82 -87
- package/dist/directory-sync/scim/Groups.js.map +1 -1
- package/dist/directory-sync/scim/Users.d.ts +63 -49
- package/dist/directory-sync/scim/Users.js +63 -49
- package/dist/directory-sync/scim/Users.js.map +1 -1
- package/dist/directory-sync/scim/WebhookEventsLogger.d.ts +52 -61
- package/dist/directory-sync/scim/WebhookEventsLogger.js +52 -61
- package/dist/directory-sync/scim/WebhookEventsLogger.js.map +1 -1
- package/dist/ee/identity-federation/app.d.ts +292 -212
- package/dist/ee/identity-federation/app.js +292 -212
- package/dist/ee/identity-federation/app.js.map +1 -1
- package/dist/ee/identity-federation/idp-login.js +1 -1
- package/dist/ee/identity-federation/idp-login.js.map +1 -1
- package/dist/sso-traces/index.d.ts +67 -66
- package/dist/sso-traces/index.js +67 -66
- package/dist/sso-traces/index.js.map +1 -1
- package/dist/sso-traces/types.d.ts +1 -0
- package/package.json +7 -7
@@ -21,123 +21,173 @@ const x509_1 = require("../../saml/x509");
|
|
21
21
|
const utils_2 = require("../../controller/utils");
|
22
22
|
const checkLicense_1 = require("../common/checkLicense");
|
23
23
|
class App {
|
24
|
-
/**
|
25
|
-
* @swagger
|
26
|
-
* definitions:
|
27
|
-
* IdentityFederationApp:
|
28
|
-
* type: object
|
29
|
-
* properties:
|
30
|
-
* id:
|
31
|
-
* type: string
|
32
|
-
* description: id
|
33
|
-
* name:
|
34
|
-
* type: string
|
35
|
-
* description: name
|
36
|
-
* tenant:
|
37
|
-
* type: string
|
38
|
-
* description: Tenant
|
39
|
-
* product:
|
40
|
-
* type: string
|
41
|
-
* description: Product
|
42
|
-
* acsUrl:
|
43
|
-
* type: string
|
44
|
-
* description: ACS URL
|
45
|
-
* entityId:
|
46
|
-
* type: string
|
47
|
-
* description: Entity ID
|
48
|
-
* logoUrl:
|
49
|
-
* type: string
|
50
|
-
* description: Logo URL (optional)
|
51
|
-
* faviconUrl:
|
52
|
-
* type: string
|
53
|
-
* description: Favicon URL (optional)
|
54
|
-
* primaryColor:
|
55
|
-
* type: string
|
56
|
-
* description: Primary color (optional)
|
57
|
-
*/
|
58
24
|
constructor({ store, opts }) {
|
59
25
|
this.store = store;
|
60
26
|
this.opts = opts;
|
61
27
|
}
|
62
28
|
/**
|
63
|
-
* @
|
29
|
+
* @openapi
|
30
|
+
* components:
|
31
|
+
* schemas:
|
32
|
+
* IdentityFederationApp:
|
33
|
+
* type: object
|
34
|
+
* properties:
|
35
|
+
* id:
|
36
|
+
* type: string
|
37
|
+
* description: id
|
38
|
+
* name:
|
39
|
+
* type: string
|
40
|
+
* description: name
|
41
|
+
* tenant:
|
42
|
+
* type: string
|
43
|
+
* description: Tenant
|
44
|
+
* product:
|
45
|
+
* type: string
|
46
|
+
* description: Product
|
47
|
+
* acsUrl:
|
48
|
+
* type: string
|
49
|
+
* description: ACS URL
|
50
|
+
* entityId:
|
51
|
+
* type: string
|
52
|
+
* description: Entity ID
|
53
|
+
* logoUrl:
|
54
|
+
* type: string
|
55
|
+
* description: Logo URL (optional)
|
56
|
+
* faviconUrl:
|
57
|
+
* type: string
|
58
|
+
* description: Favicon URL (optional)
|
59
|
+
* primaryColor:
|
60
|
+
* type: string
|
61
|
+
* description: Primary color (optional)
|
62
|
+
*
|
63
|
+
*/
|
64
|
+
/**
|
65
|
+
* @openapi
|
64
66
|
* /api/v1/identity-federation:
|
65
67
|
* post:
|
68
|
+
* tags:
|
69
|
+
* - Identity Federation
|
66
70
|
* summary: Create an Identity Federation app
|
67
|
-
*
|
68
|
-
*
|
69
|
-
*
|
70
|
-
*
|
71
|
-
*
|
72
|
-
*
|
73
|
-
*
|
74
|
-
*
|
75
|
-
*
|
76
|
-
*
|
77
|
-
*
|
78
|
-
*
|
79
|
-
*
|
80
|
-
*
|
81
|
-
*
|
82
|
-
*
|
83
|
-
*
|
84
|
-
*
|
85
|
-
*
|
86
|
-
*
|
87
|
-
*
|
88
|
-
*
|
89
|
-
*
|
90
|
-
*
|
91
|
-
*
|
92
|
-
*
|
93
|
-
*
|
94
|
-
*
|
95
|
-
*
|
96
|
-
*
|
97
|
-
*
|
98
|
-
*
|
99
|
-
*
|
100
|
-
*
|
101
|
-
*
|
102
|
-
*
|
103
|
-
*
|
104
|
-
*
|
105
|
-
*
|
106
|
-
*
|
107
|
-
*
|
108
|
-
*
|
109
|
-
*
|
110
|
-
*
|
111
|
-
*
|
112
|
-
*
|
113
|
-
*
|
114
|
-
*
|
115
|
-
*
|
116
|
-
*
|
117
|
-
*
|
118
|
-
*
|
119
|
-
*
|
120
|
-
*
|
121
|
-
*
|
122
|
-
*
|
123
|
-
*
|
124
|
-
*
|
125
|
-
*
|
126
|
-
*
|
127
|
-
*
|
128
|
-
*
|
129
|
-
*
|
130
|
-
*
|
131
|
-
*
|
132
|
-
*
|
133
|
-
*
|
71
|
+
* requestBody:
|
72
|
+
* content:
|
73
|
+
* application/x-www-form-urlencoded:
|
74
|
+
* schema:
|
75
|
+
* required:
|
76
|
+
* - acsUrl
|
77
|
+
* - entityId
|
78
|
+
* - name
|
79
|
+
* - product
|
80
|
+
* - tenant
|
81
|
+
* type: object
|
82
|
+
* properties:
|
83
|
+
* name:
|
84
|
+
* type: string
|
85
|
+
* description: Name
|
86
|
+
* tenant:
|
87
|
+
* type: string
|
88
|
+
* description: Tenant
|
89
|
+
* product:
|
90
|
+
* type: string
|
91
|
+
* description: Product
|
92
|
+
* acsUrl:
|
93
|
+
* type: string
|
94
|
+
* description: ACS URL
|
95
|
+
* entityId:
|
96
|
+
* type: string
|
97
|
+
* description: Entity ID
|
98
|
+
* logoUrl:
|
99
|
+
* type: string
|
100
|
+
* description: Logo URL
|
101
|
+
* faviconUrl:
|
102
|
+
* type: string
|
103
|
+
* description: Favicon URL
|
104
|
+
* primaryColor:
|
105
|
+
* type: string
|
106
|
+
* description: Primary color
|
107
|
+
* tenants:
|
108
|
+
* type: array
|
109
|
+
* items:
|
110
|
+
* type: string
|
111
|
+
* description: Mapping of tenants whose connections will be grouped under this Identity Federation app
|
112
|
+
* mappings:
|
113
|
+
* type: array
|
114
|
+
* items:
|
115
|
+
* type: string
|
116
|
+
* description: Mapping of attributes from the IdP to SP
|
117
|
+
* type:
|
118
|
+
* type: array
|
119
|
+
* items:
|
120
|
+
* type: string
|
121
|
+
* description: If creating an OIDC app, this should be set to 'oidc' otherwise it defaults to 'saml'
|
122
|
+
* redirectUrl:
|
123
|
+
* type: array
|
124
|
+
* items:
|
125
|
+
* type: string
|
126
|
+
* description: If creating an OIDC app, provide the redirect URL
|
127
|
+
* application/json:
|
128
|
+
* schema:
|
129
|
+
* required:
|
130
|
+
* - acsUrl
|
131
|
+
* - entityId
|
132
|
+
* - name
|
133
|
+
* - product
|
134
|
+
* - tenant
|
135
|
+
* type: object
|
136
|
+
* properties:
|
137
|
+
* name:
|
138
|
+
* type: string
|
139
|
+
* description: Name
|
140
|
+
* tenant:
|
141
|
+
* type: string
|
142
|
+
* description: Tenant
|
143
|
+
* product:
|
144
|
+
* type: string
|
145
|
+
* description: Product
|
146
|
+
* acsUrl:
|
147
|
+
* type: string
|
148
|
+
* description: ACS URL
|
149
|
+
* entityId:
|
150
|
+
* type: string
|
151
|
+
* description: Entity ID
|
152
|
+
* logoUrl:
|
153
|
+
* type: string
|
154
|
+
* description: Logo URL
|
155
|
+
* faviconUrl:
|
156
|
+
* type: string
|
157
|
+
* description: Favicon URL
|
158
|
+
* primaryColor:
|
159
|
+
* type: string
|
160
|
+
* description: Primary color
|
161
|
+
* tenants:
|
162
|
+
* type: array
|
163
|
+
* items:
|
164
|
+
* type: string
|
165
|
+
* description: Mapping of tenants whose connections will be grouped under this Identity Federation app
|
166
|
+
* mappings:
|
167
|
+
* type: array
|
168
|
+
* items:
|
169
|
+
* type: string
|
170
|
+
* description: Mapping of attributes from the IdP to SP
|
171
|
+
* type:
|
172
|
+
* type: array
|
173
|
+
* items:
|
174
|
+
* type: string
|
175
|
+
* description: If creating an OIDC app, this should be set to 'oidc' otherwise it defaults to 'saml'
|
176
|
+
* redirectUrl:
|
177
|
+
* type: array
|
178
|
+
* items:
|
179
|
+
* type: string
|
180
|
+
* description: If creating an OIDC app, provide the redirect URL
|
181
|
+
* required: true
|
134
182
|
* responses:
|
135
|
-
*
|
136
|
-
*
|
137
|
-
*
|
138
|
-
*
|
139
|
-
*
|
140
|
-
*
|
183
|
+
* 200:
|
184
|
+
* description: Success
|
185
|
+
* content:
|
186
|
+
* application/json:
|
187
|
+
* schema:
|
188
|
+
* type: array
|
189
|
+
* items:
|
190
|
+
* $ref: "#/components/schemas/IdentityFederationApp"
|
141
191
|
*/
|
142
192
|
create(_a) {
|
143
193
|
return __awaiter(this, arguments, void 0, function* ({ name, type, redirectUrl, tenant, product, acsUrl, entityId, logoUrl, faviconUrl, primaryColor, tenants, mappings, }) {
|
@@ -214,35 +264,36 @@ class App {
|
|
214
264
|
});
|
215
265
|
}
|
216
266
|
/**
|
217
|
-
* @
|
267
|
+
* @openapi
|
218
268
|
* /api/v1/identity-federation:
|
219
269
|
* get:
|
270
|
+
* tags:
|
271
|
+
* - Identity Federation
|
220
272
|
* summary: Get an Identity Federation app
|
221
273
|
* parameters:
|
222
274
|
* - name: id
|
223
|
-
* description: App ID
|
224
275
|
* in: query
|
276
|
+
* description: App ID
|
225
277
|
* required: true
|
226
|
-
*
|
278
|
+
* schema:
|
279
|
+
* type: string
|
227
280
|
* - name: tenant
|
228
|
-
* description: Tenant
|
229
281
|
* in: query
|
230
|
-
*
|
231
|
-
*
|
282
|
+
* description: Tenant
|
283
|
+
* schema:
|
284
|
+
* type: string
|
232
285
|
* - name: product
|
233
|
-
* description: Product
|
234
286
|
* in: query
|
235
|
-
*
|
236
|
-
*
|
237
|
-
*
|
238
|
-
* - Identity Federation
|
239
|
-
* produces:
|
240
|
-
* - application/json
|
287
|
+
* description: Product
|
288
|
+
* schema:
|
289
|
+
* type: string
|
241
290
|
* responses:
|
242
|
-
*
|
291
|
+
* 200:
|
243
292
|
* description: Success
|
244
|
-
*
|
245
|
-
*
|
293
|
+
* content:
|
294
|
+
* application/json:
|
295
|
+
* schema:
|
296
|
+
* $ref: "#/components/schemas/IdentityFederationApp"
|
246
297
|
*/
|
247
298
|
get(params) {
|
248
299
|
return __awaiter(this, void 0, void 0, function* () {
|
@@ -265,23 +316,22 @@ class App {
|
|
265
316
|
});
|
266
317
|
}
|
267
318
|
/**
|
268
|
-
* @
|
319
|
+
* @openapi
|
269
320
|
* /api/v1/identity-federation/product:
|
270
321
|
* get:
|
322
|
+
* tags:
|
323
|
+
* - Identity Federation
|
271
324
|
* summary: Get Identity Federation apps by product
|
272
325
|
* parameters:
|
273
326
|
* - name: product
|
274
|
-
* description: Product
|
275
327
|
* in: query
|
328
|
+
* description: Product
|
276
329
|
* required: true
|
277
|
-
*
|
278
|
-
*
|
279
|
-
* - $ref: '#/parameters/
|
280
|
-
* - $ref: '#/parameters/
|
281
|
-
*
|
282
|
-
* - Identity Federation
|
283
|
-
* produces:
|
284
|
-
* - application/json
|
330
|
+
* schema:
|
331
|
+
* type: string
|
332
|
+
* - $ref: '#/components/parameters/pageOffset'
|
333
|
+
* - $ref: '#/components/parameters/pageLimit'
|
334
|
+
* - $ref: '#/components/parameters/pageToken'
|
285
335
|
* responses:
|
286
336
|
* 200:
|
287
337
|
* description: Success
|
@@ -293,7 +343,7 @@ class App {
|
|
293
343
|
* data:
|
294
344
|
* type: array
|
295
345
|
* items:
|
296
|
-
* $ref: '#/
|
346
|
+
* $ref: '#/components/schemas/IdentityFederationApp'
|
297
347
|
* pageToken:
|
298
348
|
* type: string
|
299
349
|
* description: token for pagination
|
@@ -329,73 +379,102 @@ class App {
|
|
329
379
|
});
|
330
380
|
}
|
331
381
|
/**
|
332
|
-
* @
|
382
|
+
* @openapi
|
333
383
|
* /api/v1/identity-federation:
|
334
384
|
* patch:
|
335
|
-
* summary: Update an Identity Federation app
|
336
|
-
* parameters:
|
337
|
-
* - name: id
|
338
|
-
* description: App ID
|
339
|
-
* in: formData
|
340
|
-
* required: true
|
341
|
-
* type: string
|
342
|
-
* - name: tenant
|
343
|
-
* description: Tenant
|
344
|
-
* in: formData
|
345
|
-
* required: false
|
346
|
-
* type: string
|
347
|
-
* - name: product
|
348
|
-
* description: Product
|
349
|
-
* in: formData
|
350
|
-
* required: false
|
351
|
-
* type: string
|
352
|
-
* - name: name
|
353
|
-
* description: Name
|
354
|
-
* in: formData
|
355
|
-
* required: false
|
356
|
-
* type: string
|
357
|
-
* - name: acsUrl
|
358
|
-
* description: ACS URL
|
359
|
-
* in: formData
|
360
|
-
* required: false
|
361
|
-
* type: string
|
362
|
-
* - name: logoUrl
|
363
|
-
* description: Logo URL
|
364
|
-
* in: formData
|
365
|
-
* required: false
|
366
|
-
* type: string
|
367
|
-
* - name: faviconUrl
|
368
|
-
* description: Favicon URL
|
369
|
-
* in: formData
|
370
|
-
* required: false
|
371
|
-
* type: string
|
372
|
-
* - name: primaryColor
|
373
|
-
* description: Primary color
|
374
|
-
* in: formData
|
375
|
-
* required: false
|
376
|
-
* type: string
|
377
|
-
* - name: tenants
|
378
|
-
* description: Mapping of tenants whose connections will be grouped under this Identity Federation app
|
379
|
-
* in: formData
|
380
|
-
* required: false
|
381
|
-
* type: array
|
382
|
-
* - name: mappings
|
383
|
-
* description: Mapping of attributes from the IdP to SP
|
384
|
-
* in: formData
|
385
|
-
* required: false
|
386
|
-
* type: array
|
387
385
|
* tags:
|
388
386
|
* - Identity Federation
|
389
|
-
*
|
390
|
-
*
|
391
|
-
*
|
392
|
-
*
|
393
|
-
*
|
387
|
+
* summary: Update an Identity Federation app
|
388
|
+
* requestBody:
|
389
|
+
* content:
|
390
|
+
* application/x-www-form-urlencoded:
|
391
|
+
* schema:
|
392
|
+
* required:
|
393
|
+
* - id
|
394
|
+
* type: object
|
395
|
+
* properties:
|
396
|
+
* id:
|
397
|
+
* type: string
|
398
|
+
* description: App ID
|
399
|
+
* tenant:
|
400
|
+
* type: string
|
401
|
+
* description: Tenant
|
402
|
+
* product:
|
403
|
+
* type: string
|
404
|
+
* description: Product
|
405
|
+
* name:
|
406
|
+
* type: string
|
407
|
+
* description: Name
|
408
|
+
* acsUrl:
|
409
|
+
* type: string
|
410
|
+
* description: ACS URL
|
411
|
+
* logoUrl:
|
412
|
+
* type: string
|
413
|
+
* description: Logo URL
|
414
|
+
* faviconUrl:
|
415
|
+
* type: string
|
416
|
+
* description: Favicon URL
|
417
|
+
* primaryColor:
|
418
|
+
* type: string
|
419
|
+
* description: Primary color
|
420
|
+
* tenants:
|
421
|
+
* type: array
|
422
|
+
* items:
|
423
|
+
* type: string
|
424
|
+
* description: Mapping of tenants whose connections will be grouped under this Identity Federation app
|
425
|
+
* mappings:
|
426
|
+
* type: array
|
427
|
+
* items:
|
428
|
+
* type: string
|
429
|
+
* description: Mapping of attributes from the IdP to SP
|
430
|
+
* application/json:
|
431
|
+
* schema:
|
432
|
+
* required:
|
433
|
+
* - id
|
434
|
+
* type: object
|
435
|
+
* properties:
|
436
|
+
* id:
|
437
|
+
* type: string
|
438
|
+
* description: App ID
|
439
|
+
* tenant:
|
440
|
+
* type: string
|
441
|
+
* description: Tenant
|
442
|
+
* product:
|
443
|
+
* type: string
|
444
|
+
* description: Product
|
445
|
+
* name:
|
446
|
+
* type: string
|
447
|
+
* description: Name
|
448
|
+
* acsUrl:
|
449
|
+
* type: string
|
450
|
+
* description: ACS URL
|
451
|
+
* logoUrl:
|
452
|
+
* type: string
|
453
|
+
* description: Logo URL
|
454
|
+
* faviconUrl:
|
455
|
+
* type: string
|
456
|
+
* description: Favicon URL
|
457
|
+
* primaryColor:
|
458
|
+
* type: string
|
459
|
+
* description: Primary color
|
460
|
+
* tenants:
|
461
|
+
* type: array
|
462
|
+
* items:
|
463
|
+
* type: string
|
464
|
+
* description: Mapping of tenants whose connections will be grouped under this Identity Federation app
|
465
|
+
* mappings:
|
466
|
+
* type: array
|
467
|
+
* items:
|
468
|
+
* type: string
|
469
|
+
* description: Mapping of attributes from the IdP to SP
|
470
|
+
* required: true
|
394
471
|
* responses:
|
395
|
-
*
|
472
|
+
* 200:
|
396
473
|
* description: Success
|
397
|
-
*
|
398
|
-
*
|
474
|
+
* content:
|
475
|
+
* application/json:
|
476
|
+
* schema:
|
477
|
+
* $ref: "#/components/schemas/IdentityFederationApp"
|
399
478
|
*/
|
400
479
|
update(params) {
|
401
480
|
return __awaiter(this, void 0, void 0, function* () {
|
@@ -465,35 +544,36 @@ class App {
|
|
465
544
|
});
|
466
545
|
}
|
467
546
|
/**
|
468
|
-
* @
|
547
|
+
* @openapi
|
469
548
|
* /api/v1/identity-federation:
|
470
549
|
* delete:
|
550
|
+
* tags:
|
551
|
+
* - Identity Federation
|
471
552
|
* summary: Delete an Identity Federation app
|
472
553
|
* parameters:
|
473
554
|
* - name: id
|
474
|
-
* description: App ID
|
475
555
|
* in: query
|
556
|
+
* description: App ID
|
476
557
|
* required: true
|
477
|
-
*
|
558
|
+
* schema:
|
559
|
+
* type: string
|
478
560
|
* - name: tenant
|
479
|
-
* description: Tenant
|
480
561
|
* in: query
|
481
|
-
*
|
482
|
-
*
|
562
|
+
* description: Tenant
|
563
|
+
* schema:
|
564
|
+
* type: string
|
483
565
|
* - name: product
|
484
|
-
* description: Product
|
485
566
|
* in: query
|
486
|
-
*
|
487
|
-
*
|
488
|
-
*
|
489
|
-
* - Identity Federation
|
490
|
-
* produces:
|
491
|
-
* - application/json
|
567
|
+
* description: Product
|
568
|
+
* schema:
|
569
|
+
* type: string
|
492
570
|
* responses:
|
493
|
-
*
|
571
|
+
* 200:
|
494
572
|
* description: Success
|
495
|
-
*
|
496
|
-
*
|
573
|
+
* content:
|
574
|
+
* application/json:
|
575
|
+
* schema:
|
576
|
+
* $ref: "#/components/schemas/IdentityFederationApp"
|
497
577
|
*/
|
498
578
|
delete(params) {
|
499
579
|
return __awaiter(this, void 0, void 0, function* () {
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"app.js","sourceRoot":"","sources":["../../../src/ee/identity-federation/app.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,oDAA4B;AAC5B,4DAAkC;AAWlC,kDAA+F;AAC/F,kDAAsD;AACtD,0CAAwD;AACxD,kDAA8E;AAC9E,yDAA+D;AAW/D,MAAa,GAAG;IAId
|
1
|
+
{"version":3,"file":"app.js","sourceRoot":"","sources":["../../../src/ee/identity-federation/app.ts"],"names":[],"mappings":"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"}
|
@@ -63,7 +63,7 @@ class IdPLogin {
|
|
63
63
|
throw new error_1.JacksonError(utils_1.GENERIC_ERR_STRING, 403, 'IdP connection not found.');
|
64
64
|
}
|
65
65
|
context.clientID = connection.clientID;
|
66
|
-
context.providerName = (connection === null || connection === void 0 ? void 0 : connection.oidcProvider.
|
66
|
+
context.providerName = (connection === null || connection === void 0 ? void 0 : connection.oidcProvider.provider) || '';
|
67
67
|
context.acsUrl = fedApp.acsUrl;
|
68
68
|
context.entityId = fedApp.entityId;
|
69
69
|
if (!(0, utils_1.isConnectionActive)(connection)) {
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"idp-login.js","sourceRoot":"","sources":["../../../src/ee/identity-federation/idp-login.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,kDAAsD;AAEtD,kDAAiG;AASjG,yDAA+D;AAG/D,MAAa,QAAQ;IAMnB,YAAY,EAAE,GAAG,EAAE,UAAU,EAAE,SAAS,EAAE,IAAI,EAAE;QAC9C,IAAI,CAAC,GAAG,GAAG,GAAG,CAAC;QACf,IAAI,CAAC,UAAU,GAAG,UAAU,CAAC;QAC7B,IAAI,CAAC,SAAS,GAAG,SAAS,CAAC;QAC3B,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;IACnB,CAAC;IAED,qCAAqC;IACxB,iBAAiB,CAC5B,IAAgD;;YAEhD,MAAM,IAAA,oCAAqB,EAAC,IAAI,CAAC,IAAI,CAAC,gBAAgB,CAAC,CAAC;YAExD,IAAI,UAAqC,CAAC;YAC1C,IAAI,MAAyC,CAAC;YAC9C,MAAM,EAAE,GAAG,EAAE,eAAe,EAAE,QAAQ,EAAE,GAAG,IAAI,CAAC;YAChD,MAAM,OAAO,GAAG;gBACd,eAAe,EAAE,IAAI;gBACrB,UAAU,EAAE,eAAe;gBAC3B,SAAS,EAAE,IAAI;gBACf,cAAc,EAAE,IAAI;aACa,CAAC;YAEpC,IAAI,CAAC;gBACH,2BAA2B;gBAC3B,MAAM,GAAG,MAAM,IAAI,CAAC,GAAG,CAAC,GAAG,CAAC;oBAC1B,EAAE,EAAE,QAAQ;iBACb,CAAC,CAAC;gBAEH,MAAM,eAAe,GAAG,MAAM,CAAC,MAAM,CAAC;gBACtC,MAAM,gBAAgB,GAAG,MAAM,CAAC,OAAO,CAAC;gBAExC,OAAO,CAAC,MAAM,GAAG,eAAe,CAAC;gBACjC,OAAO,CAAC,OAAO,GAAG,gBAAgB,CAAC;gBAEnC,IAAI,MAAM,CAAC,IAAI,KAAK,MAAM,EAAE,CAAC;oBAC3B,MAAM,IAAI,oBAAY,CACpB,0BAAkB,EAClB,GAAG,EACH,gFAAgF,CACjF,CAAC;gBACJ,CAAC;gBAED,MAAM,QAAQ,GAAG,MAAM,IAAI,CAAC,UAAU,CAAC,iBAAiB,CAAC;oBACvD,MAAM,EAAE,eAAe;oBACvB,OAAO,EAAE,gBAAgB;oBACzB,QAAQ,EAAE,eAAe;oBACzB,cAAc,oBAAO,IAAI,CAAE;oBAC3B,OAAO,EAAE,MAAM,CAAC,OAAO;oBACvB,UAAU,EAAE,MAAM,CAAC,EAAE;oBACrB,OAAO,EAAE,MAAM,CAAC,IAAI,EAAE,eAAe;oBACrC,eAAe,EAAE,EAAE,gBAAgB,EAAE,MAAM,EAAE,GAAG,EAAE,eAAe,EAAE;oBACnE,SAAS,EAAE,EAAE,QAAQ,EAAE,IAAI,CAAC,SAAS,EAAE,OAAO,EAAE;iBACjD,CAAC,CAAC;gBAEH,IAAI,YAAY,IAAI,QAAQ,EAAE,CAAC;oBAC7B,UAAU,GAAG,QAAQ,CAAC,UAA2B,CAAC;gBACpD,CAAC;gBAED,IAAI,CAAC,UAAU,EAAE,CAAC;oBAChB,MAAM,IAAI,oBAAY,CAAC,0BAAkB,EAAE,GAAG,EAAE,2BAA2B,CAAC,CAAC;gBAC/E,CAAC;gBAED,OAAO,CAAC,QAAQ,GAAG,UAAU,CAAC,QAAQ,CAAC;gBACvC,OAAO,CAAC,YAAY,GAAG,CAAA,UAAU,aAAV,UAAU,uBAAV,UAAU,CAAE,YAAY,CAAC,
|
1
|
+
{"version":3,"file":"idp-login.js","sourceRoot":"","sources":["../../../src/ee/identity-federation/idp-login.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,kDAAsD;AAEtD,kDAAiG;AASjG,yDAA+D;AAG/D,MAAa,QAAQ;IAMnB,YAAY,EAAE,GAAG,EAAE,UAAU,EAAE,SAAS,EAAE,IAAI,EAAE;QAC9C,IAAI,CAAC,GAAG,GAAG,GAAG,CAAC;QACf,IAAI,CAAC,UAAU,GAAG,UAAU,CAAC;QAC7B,IAAI,CAAC,SAAS,GAAG,SAAS,CAAC;QAC3B,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;IACnB,CAAC;IAED,qCAAqC;IACxB,iBAAiB,CAC5B,IAAgD;;YAEhD,MAAM,IAAA,oCAAqB,EAAC,IAAI,CAAC,IAAI,CAAC,gBAAgB,CAAC,CAAC;YAExD,IAAI,UAAqC,CAAC;YAC1C,IAAI,MAAyC,CAAC;YAC9C,MAAM,EAAE,GAAG,EAAE,eAAe,EAAE,QAAQ,EAAE,GAAG,IAAI,CAAC;YAChD,MAAM,OAAO,GAAG;gBACd,eAAe,EAAE,IAAI;gBACrB,UAAU,EAAE,eAAe;gBAC3B,SAAS,EAAE,IAAI;gBACf,cAAc,EAAE,IAAI;aACa,CAAC;YAEpC,IAAI,CAAC;gBACH,2BAA2B;gBAC3B,MAAM,GAAG,MAAM,IAAI,CAAC,GAAG,CAAC,GAAG,CAAC;oBAC1B,EAAE,EAAE,QAAQ;iBACb,CAAC,CAAC;gBAEH,MAAM,eAAe,GAAG,MAAM,CAAC,MAAM,CAAC;gBACtC,MAAM,gBAAgB,GAAG,MAAM,CAAC,OAAO,CAAC;gBAExC,OAAO,CAAC,MAAM,GAAG,eAAe,CAAC;gBACjC,OAAO,CAAC,OAAO,GAAG,gBAAgB,CAAC;gBAEnC,IAAI,MAAM,CAAC,IAAI,KAAK,MAAM,EAAE,CAAC;oBAC3B,MAAM,IAAI,oBAAY,CACpB,0BAAkB,EAClB,GAAG,EACH,gFAAgF,CACjF,CAAC;gBACJ,CAAC;gBAED,MAAM,QAAQ,GAAG,MAAM,IAAI,CAAC,UAAU,CAAC,iBAAiB,CAAC;oBACvD,MAAM,EAAE,eAAe;oBACvB,OAAO,EAAE,gBAAgB;oBACzB,QAAQ,EAAE,eAAe;oBACzB,cAAc,oBAAO,IAAI,CAAE;oBAC3B,OAAO,EAAE,MAAM,CAAC,OAAO;oBACvB,UAAU,EAAE,MAAM,CAAC,EAAE;oBACrB,OAAO,EAAE,MAAM,CAAC,IAAI,EAAE,eAAe;oBACrC,eAAe,EAAE,EAAE,gBAAgB,EAAE,MAAM,EAAE,GAAG,EAAE,eAAe,EAAE;oBACnE,SAAS,EAAE,EAAE,QAAQ,EAAE,IAAI,CAAC,SAAS,EAAE,OAAO,EAAE;iBACjD,CAAC,CAAC;gBAEH,IAAI,YAAY,IAAI,QAAQ,EAAE,CAAC;oBAC7B,UAAU,GAAG,QAAQ,CAAC,UAA2B,CAAC;gBACpD,CAAC;gBAED,IAAI,CAAC,UAAU,EAAE,CAAC;oBAChB,MAAM,IAAI,oBAAY,CAAC,0BAAkB,EAAE,GAAG,EAAE,2BAA2B,CAAC,CAAC;gBAC/E,CAAC;gBAED,OAAO,CAAC,QAAQ,GAAG,UAAU,CAAC,QAAQ,CAAC;gBACvC,OAAO,CAAC,YAAY,GAAG,CAAA,UAAU,aAAV,UAAU,uBAAV,UAAU,CAAE,YAAY,CAAC,QAAQ,KAAI,EAAE,CAAC;gBAC/D,OAAO,CAAC,MAAM,GAAG,MAAM,CAAC,MAAM,CAAC;gBAC/B,OAAO,CAAC,QAAQ,GAAG,MAAM,CAAC,QAAQ,CAAC;gBAEnC,IAAI,CAAC,IAAA,0BAAkB,EAAC,UAAU,CAAC,EAAE,CAAC;oBACpC,MAAM,IAAI,oBAAY,CAAC,0BAAkB,EAAE,GAAG,EAAE,iCAAiC,CAAC,CAAC;gBACrF,CAAC;gBAED,MAAM,aAAa,GAAG;oBACpB,MAAM,EAAE,MAAM,CAAC,MAAM;oBACrB,QAAQ,EAAE,MAAM,CAAC,QAAQ;oBACzB,MAAM,EAAE,MAAM,CAAC,MAAM;oBACrB,OAAO,EAAE,MAAM,CAAC,OAAO;oBACvB,UAAU,EAAE,eAAe;oBAC3B,cAAc,EAAE,IAAI;iBACrB,CAAC;gBAEF,OAAO,MAAM,IAAI,CAAC,UAAU,CAAC,iBAAiB,CAAC;oBAC7C,UAAU;oBACV,aAAa;oBACb,QAAQ,EAAE,MAAM,CAAC,QAAQ;oBACzB,SAAS,EAAE;wBACT,QAAQ,EAAE,IAAI,CAAC,SAAS;wBACxB,OAAO;qBACR;iBACF,CAAC,CAAC;YACL,CAAC;YAAC,OAAO,GAAY,EAAE,CAAC;gBACtB,MAAM,iBAAiB,GAAG,IAAA,uBAAe,EAAC,GAAG,CAAC,CAAC;gBAE/C,IAAI,CAAC,SAAS,CAAC,SAAS,CAAC;oBACvB,KAAK,EAAE,iBAAiB;oBACxB,OAAO;iBACR,CAAC,CAAC;gBAEH,MAAM,GAAG,CAAC;YACZ,CAAC;QACH,CAAC;KAAA;CACF;AA3GD,4BA2GC"}
|