@boxyhq/saml-jackson 1.37.0 → 1.38.0

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.
Files changed (34) hide show
  1. package/dist/controller/api.d.ts +521 -474
  2. package/dist/controller/api.js +521 -474
  3. package/dist/controller/api.js.map +1 -1
  4. package/dist/controller/oauth.d.ts +88 -87
  5. package/dist/controller/oauth.js +146 -101
  6. package/dist/controller/oauth.js.map +1 -1
  7. package/dist/controller/setup-link.d.ts +343 -234
  8. package/dist/controller/setup-link.js +343 -234
  9. package/dist/controller/setup-link.js.map +1 -1
  10. package/dist/directory-sync/non-scim/google/api.js +1 -1
  11. package/dist/directory-sync/non-scim/google/api.js.map +1 -1
  12. package/dist/directory-sync/scim/DirectoryConfig.d.ts +259 -225
  13. package/dist/directory-sync/scim/DirectoryConfig.js +261 -227
  14. package/dist/directory-sync/scim/DirectoryConfig.js.map +1 -1
  15. package/dist/directory-sync/scim/Groups.d.ts +82 -87
  16. package/dist/directory-sync/scim/Groups.js +82 -87
  17. package/dist/directory-sync/scim/Groups.js.map +1 -1
  18. package/dist/directory-sync/scim/Users.d.ts +63 -49
  19. package/dist/directory-sync/scim/Users.js +63 -49
  20. package/dist/directory-sync/scim/Users.js.map +1 -1
  21. package/dist/directory-sync/scim/WebhookEventsLogger.d.ts +52 -61
  22. package/dist/directory-sync/scim/WebhookEventsLogger.js +52 -61
  23. package/dist/directory-sync/scim/WebhookEventsLogger.js.map +1 -1
  24. package/dist/directory-sync/types.d.ts +0 -1
  25. package/dist/ee/identity-federation/app.d.ts +292 -212
  26. package/dist/ee/identity-federation/app.js +292 -212
  27. package/dist/ee/identity-federation/app.js.map +1 -1
  28. package/dist/ee/identity-federation/idp-login.js +1 -1
  29. package/dist/ee/identity-federation/idp-login.js.map +1 -1
  30. package/dist/sso-traces/index.d.ts +67 -66
  31. package/dist/sso-traces/index.js +67 -66
  32. package/dist/sso-traces/index.js.map +1 -1
  33. package/dist/sso-traces/types.d.ts +1 -0
  34. package/package.json +10 -10
@@ -59,152 +59,218 @@ const calculateExpiryTimestamp = (expiryDays) => {
59
59
  const currentTimestamp = Date.now();
60
60
  return currentTimestamp + expiryDays * 24 * 60 * 60 * 1000;
61
61
  };
62
- /**
63
- * @swagger
64
- * definitions:
65
- * SetupLink:
66
- * type: object
67
- * properties:
68
- * setupID:
69
- * type: string
70
- * description: Setup link ID
71
- * tenant:
72
- * type: string
73
- * description: Tenant
74
- * product:
75
- * type: string
76
- * description: Product
77
- * validTill:
78
- * type: string
79
- * description: Valid till timestamp
80
- * url:
81
- * type: string
82
- * description: Setup link URL
83
- */
84
62
  class SetupLinkController {
85
63
  constructor({ setupLinkStore, opts }) {
86
64
  this.setupLinkStore = setupLinkStore;
87
65
  this.opts = opts;
88
66
  }
89
67
  /**
90
- * @swagger
91
- * definitions:
92
- * SetupLink:
93
- * type: object
94
- * example:
95
- * {
96
- * "data": {
97
- * "setupID": "0689f76f7b5aa22f00381a124cb4b153fc1a8c08",
98
- * "tenant": "acme",
99
- * "product": "my-app",
100
- * "service": "sso",
101
- * "validTill": 1689849146690,
102
- * "url": "http://localhost:5225/setup/0b96a483ebfe0af0b561dda35a96647074d944631ff9e070"
103
- * }
104
- * }
105
- * parameters:
106
- * tenantParamPost:
107
- * name: tenant
108
- * description: Tenant
109
- * in: formData
110
- * required: true
111
- * type: string
112
- * productParamPost:
113
- * name: product
114
- * description: Product
115
- * in: formData
116
- * required: true
117
- * type: string
118
- * defaultRedirectUrlParamPost:
119
- * name: defaultRedirectUrl
120
- * description: The redirect URL to use in the IdP login flow
121
- * in: formData
122
- * type: string
123
- * required: true
124
- * redirectUrlParamPost:
125
- * name: redirectUrl
126
- * description: JSON encoded array containing a list of allowed redirect URLs
127
- * in: formData
128
- * type: string
129
- * required: true
130
- * webhookUrlParamPost:
131
- * name: webhook_url
132
- * description: The URL to send the directory sync events to
133
- * in: formData
134
- * type: string
135
- * required: true
136
- * webhookSecretParamPost:
137
- * name: webhook_secret
138
- * description: The secret to sign the directory sync events
139
- * in: formData
140
- * type: string
141
- * required: true
142
- * nameParamPost:
143
- * name: name
144
- * description: Name of connection
145
- * in: formData
146
- * type: string
147
- * required: false
148
- * expiryDaysParamPost:
149
- * name: expiryDays
150
- * description: Days in number for the setup link to expire
151
- * default: 3
152
- * in: formData
153
- * type: number
154
- * required: false
155
- * regenerateParamPost:
156
- * name: regenerate
157
- * description: If passed as true, it will remove the existing setup link and create a new one.
158
- * in: formData
159
- * default: false
160
- * type: boolean
161
- * required: false
68
+ * @openapi
69
+ * components:
70
+ * schemas:
71
+ * SetupLink:
72
+ * type: object
73
+ * properties:
74
+ * setupID:
75
+ * type: string
76
+ * description: Setup link ID
77
+ * tenant:
78
+ * type: string
79
+ * description: Tenant
80
+ * product:
81
+ * type: string
82
+ * description: Product
83
+ * validTill:
84
+ * type: string
85
+ * description: Valid till timestamp
86
+ * url:
87
+ * type: string
88
+ * description: Setup link URL
89
+ * example:
90
+ * data:
91
+ * setupID: 0689f76f7b5aa22f00381a124cb4b153fc1a8c08
92
+ * tenant: acme
93
+ * product: my-app
94
+ * service: sso
95
+ * validTill: 1689849146690
96
+ * url: http://localhost:5225/setup/0b96a483ebfe0af0b561dda35a96647074d944631ff9e070
97
+ * parameters:
98
+ * setupLinkId:
99
+ * name: id
100
+ * in: query
101
+ * description: Setup link ID
102
+ * schema:
103
+ * type: string
104
+ * idParamGet:
105
+ * name: id
106
+ * in: query
107
+ * description: Setup Link ID
108
+ * schema:
109
+ * type: string
110
+ *
111
+ */
112
+ /**
113
+ * @openapi
162
114
  * /api/v1/sso/setuplinks:
163
115
  * post:
164
- * summary: Create a Setup Link
165
- * operationId: create-sso-setup-link
166
- * tags: [Setup Links | Single Sign On]
167
- * produces:
168
- * - application/json
169
- * consumes:
170
- * - application/x-www-form-urlencoded
171
- * - application/json
172
- * parameters:
173
- * - $ref: '#/parameters/nameParamPost'
174
- * - $ref: '#/parameters/tenantParamPost'
175
- * - $ref: '#/parameters/productParamPost'
176
- * - $ref: '#/parameters/defaultRedirectUrlParamPost'
177
- * - $ref: '#/parameters/redirectUrlParamPost'
178
- * - $ref: '#/parameters/expiryDaysParamPost'
179
- * - $ref: '#/parameters/regenerateParamPost'
180
- * responses:
181
- * 200:
182
- * description: Success
183
- * schema:
184
- * $ref: '#/definitions/SetupLink'
116
+ * tags:
117
+ * - Setup Links | Single Sign On
118
+ * summary: Create a Setup Link
119
+ * operationId: create-sso-setup-link
120
+ * requestBody:
121
+ * content:
122
+ * application/x-www-form-urlencoded:
123
+ * schema:
124
+ * required:
125
+ * - defaultRedirectUrl
126
+ * - product
127
+ * - redirectUrl
128
+ * - tenant
129
+ * type: object
130
+ * properties:
131
+ * name:
132
+ * type: string
133
+ * description: Name of connection
134
+ * tenant:
135
+ * type: string
136
+ * description: Tenant
137
+ * product:
138
+ * type: string
139
+ * description: Product
140
+ * defaultRedirectUrl:
141
+ * type: string
142
+ * description: The redirect URL to use in the IdP login flow
143
+ * redirectUrl:
144
+ * type: string
145
+ * description: JSON encoded array containing a list of allowed redirect URLs
146
+ * expiryDays:
147
+ * type: number
148
+ * description: Days in number for the setup link to expire
149
+ * default: 3
150
+ * regenerate:
151
+ * type: boolean
152
+ * description: If passed as true, it will remove the existing setup link and create a new one.
153
+ * default: false
154
+ * application/json:
155
+ * schema:
156
+ * required:
157
+ * - defaultRedirectUrl
158
+ * - product
159
+ * - redirectUrl
160
+ * - tenant
161
+ * type: object
162
+ * properties:
163
+ * name:
164
+ * type: string
165
+ * description: Name of connection
166
+ * tenant:
167
+ * type: string
168
+ * description: Tenant
169
+ * product:
170
+ * type: string
171
+ * description: Product
172
+ * defaultRedirectUrl:
173
+ * type: string
174
+ * description: The redirect URL to use in the IdP login flow
175
+ * redirectUrl:
176
+ * type: string
177
+ * description: JSON encoded array containing a list of allowed redirect URLs
178
+ * expiryDays:
179
+ * type: number
180
+ * description: Days in number for the setup link to expire
181
+ * default: 3
182
+ * regenerate:
183
+ * type: boolean
184
+ * description: If passed as true, it will remove the existing setup link and create a new one.
185
+ * default: false
186
+ * required: true
187
+ * responses:
188
+ * 200:
189
+ * description: Success
190
+ * content:
191
+ * application/json:
192
+ * schema:
193
+ * $ref: "#/components/schemas/SetupLink"
185
194
  * /api/v1/dsync/setuplinks:
186
195
  * post:
187
- * summary: Create a Setup Link
188
- * operationId: create-dsync-setup-link
189
- * tags: [Setup Links | Directory Sync]
190
- * produces:
191
- * - application/json
192
- * consumes:
193
- * - application/x-www-form-urlencoded
194
- * - application/json
195
- * parameters:
196
- * - $ref: '#/parameters/nameParamPost'
197
- * - $ref: '#/parameters/tenantParamPost'
198
- * - $ref: '#/parameters/productParamPost'
199
- * - $ref: '#/parameters/webhookUrlParamPost'
200
- * - $ref: '#/parameters/webhookSecretParamPost'
201
- * - $ref: '#/parameters/expiryDaysParamPost'
202
- * - $ref: '#/parameters/regenerateParamPost'
203
- * responses:
204
- * 200:
205
- * description: Success
206
- * schema:
207
- * $ref: '#/definitions/SetupLink'
196
+ * tags:
197
+ * - Setup Links | Directory Sync
198
+ * summary: Create a Setup Link
199
+ * operationId: create-dsync-setup-link
200
+ * requestBody:
201
+ * content:
202
+ * application/x-www-form-urlencoded:
203
+ * schema:
204
+ * required:
205
+ * - product
206
+ * - tenant
207
+ * - webhook_secret
208
+ * - webhook_url
209
+ * type: object
210
+ * properties:
211
+ * name:
212
+ * type: string
213
+ * description: Name of connection
214
+ * tenant:
215
+ * type: string
216
+ * description: Tenant
217
+ * product:
218
+ * type: string
219
+ * description: Product
220
+ * webhook_url:
221
+ * type: string
222
+ * description: The URL to send the directory sync events to
223
+ * webhook_secret:
224
+ * type: string
225
+ * description: The secret to sign the directory sync events
226
+ * expiryDays:
227
+ * type: number
228
+ * description: Days in number for the setup link to expire
229
+ * default: 3
230
+ * regenerate:
231
+ * type: boolean
232
+ * description: If passed as true, it will remove the existing setup link and create a new one.
233
+ * default: false
234
+ * application/json:
235
+ * schema:
236
+ * required:
237
+ * - product
238
+ * - tenant
239
+ * - webhook_secret
240
+ * - webhook_url
241
+ * type: object
242
+ * properties:
243
+ * name:
244
+ * type: string
245
+ * description: Name of connection
246
+ * tenant:
247
+ * type: string
248
+ * description: Tenant
249
+ * product:
250
+ * type: string
251
+ * description: Product
252
+ * webhook_url:
253
+ * type: string
254
+ * description: The URL to send the directory sync events to
255
+ * webhook_secret:
256
+ * type: string
257
+ * description: The secret to sign the directory sync events
258
+ * expiryDays:
259
+ * type: number
260
+ * description: Days in number for the setup link to expire
261
+ * default: 3
262
+ * regenerate:
263
+ * type: boolean
264
+ * description: If passed as true, it will remove the existing setup link and create a new one.
265
+ * default: false
266
+ * required: true
267
+ * responses:
268
+ * 200:
269
+ * description: Success
270
+ * content:
271
+ * application/json:
272
+ * schema:
273
+ * $ref: "#/components/schemas/SetupLink"
208
274
  */
209
275
  create(body) {
210
276
  return __awaiter(this, void 0, void 0, function* () {
@@ -297,50 +363,73 @@ class SetupLinkController {
297
363
  });
298
364
  }
299
365
  /**
300
- * @swagger
301
- * parameters:
302
- * setupLinkId:
303
- * name: id
304
- * description: Setup link ID
305
- * in: query
306
- * required: false
307
- * type: string
366
+ * @openapi
308
367
  * /api/v1/sso/setuplinks:
309
368
  * delete:
369
+ * tags:
370
+ * - Setup Links | Single Sign On
310
371
  * summary: Delete the Setup Link
311
- * parameters:
312
- * - $ref: '#/parameters/tenantParamGet'
313
- * - $ref: '#/parameters/productParamGet'
314
- * - $ref: '#/parameters/setupLinkId'
315
372
  * operationId: delete-sso-setup-link
316
- * tags: [Setup Links | Single Sign On]
373
+ * parameters:
374
+ * - name: tenant
375
+ * in: query
376
+ * description: Tenant
377
+ * required: true
378
+ * schema:
379
+ * type: string
380
+ * - name: product
381
+ * in: query
382
+ * description: Product
383
+ * required: true
384
+ * schema:
385
+ * type: string
386
+ * - name: id
387
+ * in: query
388
+ * description: Setup link ID
389
+ * schema:
390
+ * type: string
317
391
  * responses:
318
- * 200:
319
- * description: Success
320
- * schema:
321
- * type: object
322
- * example:
323
- * {
324
- * data: {}
325
- * }
392
+ * 200:
393
+ * description: Success
394
+ * content:
395
+ * application/json:
396
+ * schema:
397
+ * type: object
398
+ * example:
399
+ * data: {}
326
400
  * /api/v1/dsync/setuplinks:
327
401
  * delete:
402
+ * tags:
403
+ * - Setup Links | Directory Sync
328
404
  * summary: Delete the Setup Link
329
- * parameters:
330
- * - $ref: '#/parameters/tenantParamGet'
331
- * - $ref: '#/parameters/productParamGet'
332
- * - $ref: '#/parameters/setupLinkId'
333
405
  * operationId: delete-dsync-setup-link
334
- * tags: [Setup Links | Directory Sync]
406
+ * parameters:
407
+ * - name: tenant
408
+ * in: query
409
+ * description: Tenant
410
+ * required: true
411
+ * schema:
412
+ * type: string
413
+ * - name: product
414
+ * in: query
415
+ * description: Product
416
+ * required: true
417
+ * schema:
418
+ * type: string
419
+ * - name: id
420
+ * in: query
421
+ * description: Setup link ID
422
+ * schema:
423
+ * type: string
335
424
  * responses:
336
- * 200:
337
- * description: Success
338
- * schema:
339
- * type: object
340
- * example:
341
- * {
342
- * data: {}
343
- * }
425
+ * 200:
426
+ * description: Success
427
+ * content:
428
+ * application/json:
429
+ * schema:
430
+ * type: object
431
+ * example:
432
+ * data: {}
344
433
  */
345
434
  remove(params) {
346
435
  return __awaiter(this, void 0, void 0, function* () {
@@ -363,54 +452,47 @@ class SetupLinkController {
363
452
  return setupLink.validTill < +new Date();
364
453
  }
365
454
  /**
366
- * @swagger
367
- * parameters:
368
- * tenantParamGet:
369
- * name: tenant
370
- * description: Tenant
371
- * in: query
372
- * required: true
373
- * type: string
374
- * productParamGet:
375
- * name: product
376
- * description: Product
377
- * in: query
378
- * required: true
379
- * type: string
455
+ * @openapi
380
456
  * /api/v1/sso/setuplinks/product:
381
457
  * get:
458
+ * tags:
459
+ * - Setup Links | Single Sign On
382
460
  * summary: Get the Setup Links by product
383
- * parameters:
384
- * - $ref: '#/parameters/productParamGet'
385
- * - $ref: '#/parameters/pageOffset'
386
- * - $ref: '#/parameters/pageLimit'
387
- * - $ref: '#/parameters/pageToken'
388
461
  * operationId: get-sso-setup-link-by-product
389
- * tags: [Setup Links | Single Sign On]
462
+ * parameters:
463
+ * - $ref: '#/components/parameters/productParamGet'
464
+ * - $ref: '#/components/parameters/pageOffset'
465
+ * - $ref: '#/components/parameters/pageLimit'
466
+ * - $ref: '#/components/parameters/pageToken'
390
467
  * responses:
391
- * 200:
392
- * description: Success
393
- * schema:
394
- * type: array
395
- * items:
396
- * $ref: '#/definitions/SetupLink'
468
+ * 200:
469
+ * description: Success
470
+ * content:
471
+ * application/json:
472
+ * schema:
473
+ * type: array
474
+ * items:
475
+ * $ref: "#/components/schemas/SetupLink"
397
476
  * /api/v1/dsync/setuplinks/product:
398
477
  * get:
478
+ * tags:
479
+ * - Setup Links | Directory Sync
399
480
  * summary: Get the Setup Links by product
400
- * parameters:
401
- * - $ref: '#/parameters/productParamGet'
402
- * - $ref: '#/parameters/pageOffset'
403
- * - $ref: '#/parameters/pageLimit'
404
- * - $ref: '#/parameters/pageToken'
405
481
  * operationId: get-dsync-setup-link-by-product
406
- * tags: [Setup Links | Directory Sync]
482
+ * parameters:
483
+ * - $ref: '#/components/parameters/productParamGet'
484
+ * - $ref: '#/components/parameters/pageOffset'
485
+ * - $ref: '#/components/parameters/pageLimit'
486
+ * - $ref: '#/components/parameters/pageToken'
407
487
  * responses:
408
- * 200:
409
- * description: Success
410
- * schema:
411
- * type: array
412
- * items:
413
- * $ref: '#/definitions/SetupLink'
488
+ * 200:
489
+ * description: Success
490
+ * content:
491
+ * application/json:
492
+ * schema:
493
+ * type: array
494
+ * items:
495
+ * $ref: "#/components/schemas/SetupLink"
414
496
  */
415
497
  filterBy(params) {
416
498
  return __awaiter(this, void 0, void 0, function* () {
@@ -448,42 +530,69 @@ class SetupLinkController {
448
530
  });
449
531
  }
450
532
  /**
451
- * @swagger
452
- * parameters:
453
- * idParamGet:
454
- * name: id
455
- * description: Setup Link ID
456
- * in: query
457
- * required: false
458
- * type: string
533
+ * @openapi
459
534
  * /api/v1/sso/setuplinks:
460
535
  * get:
536
+ * tags:
537
+ * - Setup Links | Single Sign On
461
538
  * summary: Get the Setup Link
462
- * parameters:
463
- * - $ref: '#/parameters/tenantParamGet'
464
- * - $ref: '#/parameters/productParamGet'
465
- * - $ref: '#/parameters/idParamGet'
466
539
  * operationId: get-sso-setup-link
467
- * tags: [Setup Links | Single Sign On]
540
+ * parameters:
541
+ * - name: tenant
542
+ * in: query
543
+ * description: Tenant
544
+ * required: true
545
+ * schema:
546
+ * type: string
547
+ * - name: product
548
+ * in: query
549
+ * description: Product
550
+ * required: true
551
+ * schema:
552
+ * type: string
553
+ * - name: id
554
+ * in: query
555
+ * description: Setup Link ID
556
+ * schema:
557
+ * type: string
468
558
  * responses:
469
- * 200:
470
- * description: Success
471
- * schema:
472
- * $ref: '#/definitions/SetupLink'
559
+ * 200:
560
+ * description: Success
561
+ * content:
562
+ * application/json:
563
+ * schema:
564
+ * $ref: "#/components/schemas/SetupLink"
473
565
  * /api/v1/dsync/setuplinks:
474
566
  * get:
567
+ * tags:
568
+ * - Setup Links | Directory Sync
475
569
  * summary: Get the Setup Link
476
- * parameters:
477
- * - $ref: '#/parameters/tenantParamGet'
478
- * - $ref: '#/parameters/productParamGet'
479
- * - $ref: '#/parameters/idParamGet'
480
570
  * operationId: get-dsync-setup-link
481
- * tags: [Setup Links | Directory Sync]
571
+ * parameters:
572
+ * - name: tenant
573
+ * in: query
574
+ * description: Tenant
575
+ * required: true
576
+ * schema:
577
+ * type: string
578
+ * - name: product
579
+ * in: query
580
+ * description: Product
581
+ * required: true
582
+ * schema:
583
+ * type: string
584
+ * - name: id
585
+ * in: query
586
+ * description: Setup Link ID
587
+ * schema:
588
+ * type: string
482
589
  * responses:
483
- * 200:
484
- * description: Success
485
- * schema:
486
- * $ref: '#/definitions/SetupLink'
590
+ * 200:
591
+ * description: Success
592
+ * content:
593
+ * application/json:
594
+ * schema:
595
+ * $ref: "#/components/schemas/SetupLink"
487
596
  */
488
597
  get(id) {
489
598
  return __awaiter(this, void 0, void 0, function* () {
@@ -1 +1 @@
1
- {"version":3,"file":"setup-link.js","sourceRoot":"","sources":["../../src/controller/setup-link.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"setup-link.js","sourceRoot":"","sources":["../../src/controller/setup-link.ts"],"names":[],"mappings":"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"}