@boxyhq/saml-jackson 1.45.0 → 1.45.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.
@@ -15,21 +15,18 @@ export declare class App {
|
|
15
15
|
* @openapi
|
16
16
|
* components:
|
17
17
|
* schemas:
|
18
|
-
*
|
18
|
+
* IdentityFederationAppCreate:
|
19
19
|
* type: object
|
20
20
|
* properties:
|
21
|
-
* id:
|
22
|
-
* type: string
|
23
|
-
* description: id
|
24
|
-
* name:
|
25
|
-
* type: string
|
26
|
-
* description: name
|
27
21
|
* tenant:
|
28
22
|
* type: string
|
29
23
|
* description: Tenant
|
30
24
|
* product:
|
31
25
|
* type: string
|
32
26
|
* description: Product
|
27
|
+
* name:
|
28
|
+
* type: string
|
29
|
+
* description: Name
|
33
30
|
* acsUrl:
|
34
31
|
* type: string
|
35
32
|
* description: ACS URL
|
@@ -38,13 +35,55 @@ export declare class App {
|
|
38
35
|
* description: Entity ID
|
39
36
|
* logoUrl:
|
40
37
|
* type: string
|
41
|
-
* description: Logo URL
|
38
|
+
* description: Logo URL
|
42
39
|
* faviconUrl:
|
43
40
|
* type: string
|
44
|
-
* description: Favicon URL
|
41
|
+
* description: Favicon URL
|
45
42
|
* primaryColor:
|
46
43
|
* type: string
|
47
|
-
* description: Primary color
|
44
|
+
* description: Primary color
|
45
|
+
* tenants:
|
46
|
+
* type: array
|
47
|
+
* items:
|
48
|
+
* type: string
|
49
|
+
* description: Mapping of tenants whose connections will be grouped under this Identity Federation app
|
50
|
+
* mappings:
|
51
|
+
* type: array
|
52
|
+
* items:
|
53
|
+
* type: string
|
54
|
+
* description: Mapping of attributes from the IdP to SP
|
55
|
+
* type:
|
56
|
+
* type: array
|
57
|
+
* items:
|
58
|
+
* type: string
|
59
|
+
* description: If creating an OIDC app, this should be set to 'oidc' otherwise it defaults to 'saml'
|
60
|
+
* redirectUrl:
|
61
|
+
* type: array
|
62
|
+
* items:
|
63
|
+
* type: string
|
64
|
+
* description: If creating an OIDC app, provide the redirect URL
|
65
|
+
* IdentityFederationApp:
|
66
|
+
* allOf:
|
67
|
+
* - $ref: "#/components/schemas/IdentityFederationAppCreate"
|
68
|
+
* - type: object
|
69
|
+
* required:
|
70
|
+
* - id
|
71
|
+
* properties:
|
72
|
+
* id:
|
73
|
+
* type: string
|
74
|
+
* description: App ID
|
75
|
+
* IdentityFederationResponse:
|
76
|
+
* type: object
|
77
|
+
* properties:
|
78
|
+
* data:
|
79
|
+
* $ref: "#/components/schemas/IdentityFederationApp"
|
80
|
+
* error:
|
81
|
+
* $ref: "#/components/schemas/IdentityFederationError"
|
82
|
+
* IdentityFederationError:
|
83
|
+
* type: object
|
84
|
+
* properties:
|
85
|
+
* message:
|
86
|
+
* type: string
|
48
87
|
*
|
49
88
|
*/
|
50
89
|
/**
|
@@ -58,58 +97,11 @@ export declare class App {
|
|
58
97
|
* content:
|
59
98
|
* application/json:
|
60
99
|
* schema:
|
100
|
+
* $ref: "#/components/schemas/IdentityFederationAppCreate"
|
61
101
|
* required:
|
62
|
-
* - acsUrl
|
63
|
-
* - entityId
|
64
102
|
* - name
|
65
103
|
* - product
|
66
104
|
* - tenant
|
67
|
-
* type: object
|
68
|
-
* properties:
|
69
|
-
* name:
|
70
|
-
* type: string
|
71
|
-
* description: Name
|
72
|
-
* tenant:
|
73
|
-
* type: string
|
74
|
-
* description: Tenant
|
75
|
-
* product:
|
76
|
-
* type: string
|
77
|
-
* description: Product
|
78
|
-
* acsUrl:
|
79
|
-
* type: string
|
80
|
-
* description: ACS URL
|
81
|
-
* entityId:
|
82
|
-
* type: string
|
83
|
-
* description: Entity ID
|
84
|
-
* logoUrl:
|
85
|
-
* type: string
|
86
|
-
* description: Logo URL
|
87
|
-
* faviconUrl:
|
88
|
-
* type: string
|
89
|
-
* description: Favicon URL
|
90
|
-
* primaryColor:
|
91
|
-
* type: string
|
92
|
-
* description: Primary color
|
93
|
-
* tenants:
|
94
|
-
* type: array
|
95
|
-
* items:
|
96
|
-
* type: string
|
97
|
-
* description: Mapping of tenants whose connections will be grouped under this Identity Federation app
|
98
|
-
* mappings:
|
99
|
-
* type: array
|
100
|
-
* items:
|
101
|
-
* type: string
|
102
|
-
* description: Mapping of attributes from the IdP to SP
|
103
|
-
* type:
|
104
|
-
* type: array
|
105
|
-
* items:
|
106
|
-
* type: string
|
107
|
-
* description: If creating an OIDC app, this should be set to 'oidc' otherwise it defaults to 'saml'
|
108
|
-
* redirectUrl:
|
109
|
-
* type: array
|
110
|
-
* items:
|
111
|
-
* type: string
|
112
|
-
* description: If creating an OIDC app, provide the redirect URL
|
113
105
|
* required: true
|
114
106
|
* responses:
|
115
107
|
* 200:
|
@@ -117,9 +109,7 @@ export declare class App {
|
|
117
109
|
* content:
|
118
110
|
* application/json:
|
119
111
|
* schema:
|
120
|
-
*
|
121
|
-
* items:
|
122
|
-
* $ref: "#/components/schemas/IdentityFederationApp"
|
112
|
+
* $ref: "#/components/schemas/IdentityFederationResponse"
|
123
113
|
*/
|
124
114
|
create({ name, type, redirectUrl, tenant, product, acsUrl, entityId, logoUrl, faviconUrl, primaryColor, tenants, mappings, }: NewAppParams): Promise<IdentityFederationApp>;
|
125
115
|
/**
|
@@ -152,7 +142,7 @@ export declare class App {
|
|
152
142
|
* content:
|
153
143
|
* application/json:
|
154
144
|
* schema:
|
155
|
-
* $ref: "#/components/schemas/
|
145
|
+
* $ref: "#/components/schemas/IdentityFederationResponse"
|
156
146
|
*/
|
157
147
|
get(params: AppRequestParams): Promise<IdentityFederationApp>;
|
158
148
|
/**
|
@@ -184,6 +174,8 @@ export declare class App {
|
|
184
174
|
* type: array
|
185
175
|
* items:
|
186
176
|
* $ref: '#/components/schemas/IdentityFederationApp'
|
177
|
+
* error:
|
178
|
+
* $ref: '#/components/schemas/IdentityFederationError'
|
187
179
|
* pageToken:
|
188
180
|
* type: string
|
189
181
|
* description: token for pagination
|
@@ -201,44 +193,9 @@ export declare class App {
|
|
201
193
|
* content:
|
202
194
|
* application/json:
|
203
195
|
* schema:
|
196
|
+
* $ref: "#/components/schemas/IdentityFederationApp"
|
204
197
|
* required:
|
205
198
|
* - id
|
206
|
-
* type: object
|
207
|
-
* properties:
|
208
|
-
* id:
|
209
|
-
* type: string
|
210
|
-
* description: App ID
|
211
|
-
* tenant:
|
212
|
-
* type: string
|
213
|
-
* description: Tenant
|
214
|
-
* product:
|
215
|
-
* type: string
|
216
|
-
* description: Product
|
217
|
-
* name:
|
218
|
-
* type: string
|
219
|
-
* description: Name
|
220
|
-
* acsUrl:
|
221
|
-
* type: string
|
222
|
-
* description: ACS URL
|
223
|
-
* logoUrl:
|
224
|
-
* type: string
|
225
|
-
* description: Logo URL
|
226
|
-
* faviconUrl:
|
227
|
-
* type: string
|
228
|
-
* description: Favicon URL
|
229
|
-
* primaryColor:
|
230
|
-
* type: string
|
231
|
-
* description: Primary color
|
232
|
-
* tenants:
|
233
|
-
* type: array
|
234
|
-
* items:
|
235
|
-
* type: string
|
236
|
-
* description: Mapping of tenants whose connections will be grouped under this Identity Federation app
|
237
|
-
* mappings:
|
238
|
-
* type: array
|
239
|
-
* items:
|
240
|
-
* type: string
|
241
|
-
* description: Mapping of attributes from the IdP to SP
|
242
199
|
* required: true
|
243
200
|
* responses:
|
244
201
|
* 200:
|
@@ -246,7 +203,7 @@ export declare class App {
|
|
246
203
|
* content:
|
247
204
|
* application/json:
|
248
205
|
* schema:
|
249
|
-
* $ref: "#/components/schemas/
|
206
|
+
* $ref: "#/components/schemas/IdentityFederationResponse"
|
250
207
|
*/
|
251
208
|
update(params: Partial<IdentityFederationApp>): Promise<{
|
252
209
|
id: string;
|
@@ -300,7 +257,10 @@ export declare class App {
|
|
300
257
|
* content:
|
301
258
|
* application/json:
|
302
259
|
* schema:
|
303
|
-
*
|
260
|
+
* type: object
|
261
|
+
* properties:
|
262
|
+
* error:
|
263
|
+
* $ref: "#/components/schemas/IdentityFederationError"
|
304
264
|
*/
|
305
265
|
delete(params: AppRequestParams): Promise<void>;
|
306
266
|
getMetadata(): Promise<{
|
@@ -29,21 +29,18 @@ class App {
|
|
29
29
|
* @openapi
|
30
30
|
* components:
|
31
31
|
* schemas:
|
32
|
-
*
|
32
|
+
* IdentityFederationAppCreate:
|
33
33
|
* type: object
|
34
34
|
* properties:
|
35
|
-
* id:
|
36
|
-
* type: string
|
37
|
-
* description: id
|
38
|
-
* name:
|
39
|
-
* type: string
|
40
|
-
* description: name
|
41
35
|
* tenant:
|
42
36
|
* type: string
|
43
37
|
* description: Tenant
|
44
38
|
* product:
|
45
39
|
* type: string
|
46
40
|
* description: Product
|
41
|
+
* name:
|
42
|
+
* type: string
|
43
|
+
* description: Name
|
47
44
|
* acsUrl:
|
48
45
|
* type: string
|
49
46
|
* description: ACS URL
|
@@ -52,13 +49,55 @@ class App {
|
|
52
49
|
* description: Entity ID
|
53
50
|
* logoUrl:
|
54
51
|
* type: string
|
55
|
-
* description: Logo URL
|
52
|
+
* description: Logo URL
|
56
53
|
* faviconUrl:
|
57
54
|
* type: string
|
58
|
-
* description: Favicon URL
|
55
|
+
* description: Favicon URL
|
59
56
|
* primaryColor:
|
60
57
|
* type: string
|
61
|
-
* description: Primary color
|
58
|
+
* description: Primary color
|
59
|
+
* tenants:
|
60
|
+
* type: array
|
61
|
+
* items:
|
62
|
+
* type: string
|
63
|
+
* description: Mapping of tenants whose connections will be grouped under this Identity Federation app
|
64
|
+
* mappings:
|
65
|
+
* type: array
|
66
|
+
* items:
|
67
|
+
* type: string
|
68
|
+
* description: Mapping of attributes from the IdP to SP
|
69
|
+
* type:
|
70
|
+
* type: array
|
71
|
+
* items:
|
72
|
+
* type: string
|
73
|
+
* description: If creating an OIDC app, this should be set to 'oidc' otherwise it defaults to 'saml'
|
74
|
+
* redirectUrl:
|
75
|
+
* type: array
|
76
|
+
* items:
|
77
|
+
* type: string
|
78
|
+
* description: If creating an OIDC app, provide the redirect URL
|
79
|
+
* IdentityFederationApp:
|
80
|
+
* allOf:
|
81
|
+
* - $ref: "#/components/schemas/IdentityFederationAppCreate"
|
82
|
+
* - type: object
|
83
|
+
* required:
|
84
|
+
* - id
|
85
|
+
* properties:
|
86
|
+
* id:
|
87
|
+
* type: string
|
88
|
+
* description: App ID
|
89
|
+
* IdentityFederationResponse:
|
90
|
+
* type: object
|
91
|
+
* properties:
|
92
|
+
* data:
|
93
|
+
* $ref: "#/components/schemas/IdentityFederationApp"
|
94
|
+
* error:
|
95
|
+
* $ref: "#/components/schemas/IdentityFederationError"
|
96
|
+
* IdentityFederationError:
|
97
|
+
* type: object
|
98
|
+
* properties:
|
99
|
+
* message:
|
100
|
+
* type: string
|
62
101
|
*
|
63
102
|
*/
|
64
103
|
/**
|
@@ -72,58 +111,11 @@ class App {
|
|
72
111
|
* content:
|
73
112
|
* application/json:
|
74
113
|
* schema:
|
114
|
+
* $ref: "#/components/schemas/IdentityFederationAppCreate"
|
75
115
|
* required:
|
76
|
-
* - acsUrl
|
77
|
-
* - entityId
|
78
116
|
* - name
|
79
117
|
* - product
|
80
118
|
* - 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
119
|
* required: true
|
128
120
|
* responses:
|
129
121
|
* 200:
|
@@ -131,9 +123,7 @@ class App {
|
|
131
123
|
* content:
|
132
124
|
* application/json:
|
133
125
|
* schema:
|
134
|
-
*
|
135
|
-
* items:
|
136
|
-
* $ref: "#/components/schemas/IdentityFederationApp"
|
126
|
+
* $ref: "#/components/schemas/IdentityFederationResponse"
|
137
127
|
*/
|
138
128
|
create(_a) {
|
139
129
|
return __awaiter(this, arguments, void 0, function* ({ name, type, redirectUrl, tenant, product, acsUrl, entityId, logoUrl, faviconUrl, primaryColor, tenants, mappings, }) {
|
@@ -239,7 +229,7 @@ class App {
|
|
239
229
|
* content:
|
240
230
|
* application/json:
|
241
231
|
* schema:
|
242
|
-
* $ref: "#/components/schemas/
|
232
|
+
* $ref: "#/components/schemas/IdentityFederationResponse"
|
243
233
|
*/
|
244
234
|
get(params) {
|
245
235
|
return __awaiter(this, void 0, void 0, function* () {
|
@@ -290,6 +280,8 @@ class App {
|
|
290
280
|
* type: array
|
291
281
|
* items:
|
292
282
|
* $ref: '#/components/schemas/IdentityFederationApp'
|
283
|
+
* error:
|
284
|
+
* $ref: '#/components/schemas/IdentityFederationError'
|
293
285
|
* pageToken:
|
294
286
|
* type: string
|
295
287
|
* description: token for pagination
|
@@ -335,44 +327,9 @@ class App {
|
|
335
327
|
* content:
|
336
328
|
* application/json:
|
337
329
|
* schema:
|
330
|
+
* $ref: "#/components/schemas/IdentityFederationApp"
|
338
331
|
* required:
|
339
332
|
* - id
|
340
|
-
* type: object
|
341
|
-
* properties:
|
342
|
-
* id:
|
343
|
-
* type: string
|
344
|
-
* description: App ID
|
345
|
-
* tenant:
|
346
|
-
* type: string
|
347
|
-
* description: Tenant
|
348
|
-
* product:
|
349
|
-
* type: string
|
350
|
-
* description: Product
|
351
|
-
* name:
|
352
|
-
* type: string
|
353
|
-
* description: Name
|
354
|
-
* acsUrl:
|
355
|
-
* type: string
|
356
|
-
* description: ACS URL
|
357
|
-
* logoUrl:
|
358
|
-
* type: string
|
359
|
-
* description: Logo URL
|
360
|
-
* faviconUrl:
|
361
|
-
* type: string
|
362
|
-
* description: Favicon URL
|
363
|
-
* primaryColor:
|
364
|
-
* type: string
|
365
|
-
* description: Primary color
|
366
|
-
* tenants:
|
367
|
-
* type: array
|
368
|
-
* items:
|
369
|
-
* type: string
|
370
|
-
* description: Mapping of tenants whose connections will be grouped under this Identity Federation app
|
371
|
-
* mappings:
|
372
|
-
* type: array
|
373
|
-
* items:
|
374
|
-
* type: string
|
375
|
-
* description: Mapping of attributes from the IdP to SP
|
376
333
|
* required: true
|
377
334
|
* responses:
|
378
335
|
* 200:
|
@@ -380,7 +337,7 @@ class App {
|
|
380
337
|
* content:
|
381
338
|
* application/json:
|
382
339
|
* schema:
|
383
|
-
* $ref: "#/components/schemas/
|
340
|
+
* $ref: "#/components/schemas/IdentityFederationResponse"
|
384
341
|
*/
|
385
342
|
update(params) {
|
386
343
|
return __awaiter(this, void 0, void 0, function* () {
|
@@ -479,7 +436,10 @@ class App {
|
|
479
436
|
* content:
|
480
437
|
* application/json:
|
481
438
|
* schema:
|
482
|
-
*
|
439
|
+
* type: object
|
440
|
+
* properties:
|
441
|
+
* error:
|
442
|
+
* $ref: "#/components/schemas/IdentityFederationError"
|
483
443
|
*/
|
484
444
|
delete(params) {
|
485
445
|
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,YAAY,EAAE,KAAK,EAAE,IAAI,EAA4C;QACnE,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;QACnB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;IACnB,CAAC;IAED
|
1
|
+
{"version":3,"file":"app.js","sourceRoot":"","sources":["../../../src/ee/identity-federation/app.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@boxyhq/saml-jackson",
|
3
|
-
"version": "1.45.
|
3
|
+
"version": "1.45.1",
|
4
4
|
"description": "SAML Jackson library",
|
5
5
|
"keywords": [
|
6
6
|
"SAML 2.0"
|
@@ -43,26 +43,26 @@
|
|
43
43
|
"coverage-map": "map.js"
|
44
44
|
},
|
45
45
|
"dependencies": {
|
46
|
-
"@aws-sdk/client-dynamodb": "3.
|
47
|
-
"@aws-sdk/credential-providers": "3.
|
48
|
-
"@aws-sdk/util-dynamodb": "3.
|
46
|
+
"@aws-sdk/client-dynamodb": "3.799.0",
|
47
|
+
"@aws-sdk/credential-providers": "3.799.0",
|
48
|
+
"@aws-sdk/util-dynamodb": "3.799.0",
|
49
49
|
"@boxyhq/error-code-mnemonic": "0.1.1",
|
50
50
|
"@boxyhq/metrics": "0.2.10",
|
51
|
-
"@boxyhq/saml20": "1.10.
|
52
|
-
"@googleapis/admin": "23.
|
51
|
+
"@boxyhq/saml20": "1.10.2",
|
52
|
+
"@googleapis/admin": "23.4.0",
|
53
53
|
"@libsql/sqlite3": "0.3.1",
|
54
|
-
"axios": "1.
|
54
|
+
"axios": "1.9.0",
|
55
55
|
"encoding": "0.1.13",
|
56
56
|
"jose": "6.0.10",
|
57
57
|
"ipaddr.js": "2.2.0",
|
58
58
|
"lodash": "4.17.21",
|
59
59
|
"mixpanel": "0.18.1",
|
60
|
-
"mongodb": "6.
|
60
|
+
"mongodb": "6.16.0",
|
61
61
|
"mssql": "11.0.1",
|
62
|
-
"mysql2": "3.14.
|
62
|
+
"mysql2": "3.14.1",
|
63
63
|
"node-forge": "1.3.1",
|
64
|
-
"openid-client": "6.4.
|
65
|
-
"pg": "8.
|
64
|
+
"openid-client": "6.4.2",
|
65
|
+
"pg": "8.15.6",
|
66
66
|
"redis": "4.7.0",
|
67
67
|
"reflect-metadata": "0.2.2",
|
68
68
|
"ripemd160": "2.0.2",
|
@@ -70,13 +70,13 @@
|
|
70
70
|
"typeorm": "0.3.22"
|
71
71
|
},
|
72
72
|
"devDependencies": {
|
73
|
-
"@faker-js/faker": "9.
|
73
|
+
"@faker-js/faker": "9.7.0",
|
74
74
|
"@types/lodash": "4.17.16",
|
75
|
-
"@types/node": "22.
|
75
|
+
"@types/node": "22.15.3",
|
76
76
|
"@types/sinon": "17.0.4",
|
77
77
|
"cross-env": "7.0.3",
|
78
78
|
"migrate-mongo": "12.1.3",
|
79
|
-
"nock": "14.0.
|
79
|
+
"nock": "14.0.4",
|
80
80
|
"sinon": "20.0.0",
|
81
81
|
"tap": "21.1.0",
|
82
82
|
"ts-node": "10.9.2",
|