@apideck/unify 0.20.0 → 0.20.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.
Files changed (57) hide show
  1. package/docs/sdks/connections/README.md +190 -42
  2. package/docs/sdks/connectionsettings/README.md +190 -42
  3. package/jsr.json +1 -1
  4. package/lib/config.d.ts +4 -4
  5. package/lib/config.js +4 -4
  6. package/lib/security.d.ts +4 -3
  7. package/lib/security.d.ts.map +1 -1
  8. package/lib/security.js +6 -1
  9. package/lib/security.js.map +1 -1
  10. package/models/components/address.d.ts +8 -8
  11. package/models/components/address.d.ts.map +1 -1
  12. package/models/components/address.js +13 -14
  13. package/models/components/address.js.map +1 -1
  14. package/models/components/connectionimportdata.d.ts +15 -15
  15. package/models/components/connectionimportdata.d.ts.map +1 -1
  16. package/models/components/connectionimportdata.js +18 -19
  17. package/models/components/connectionimportdata.js.map +1 -1
  18. package/models/components/consumerconnection.d.ts +6 -26
  19. package/models/components/consumerconnection.d.ts.map +1 -1
  20. package/models/components/consumerconnection.js +3 -26
  21. package/models/components/consumerconnection.js.map +1 -1
  22. package/models/components/contact.d.ts +9 -9
  23. package/models/components/contact.d.ts.map +1 -1
  24. package/models/components/contact.js +16 -15
  25. package/models/components/contact.js.map +1 -1
  26. package/models/components/employee.d.ts +5 -0
  27. package/models/components/employee.d.ts.map +1 -1
  28. package/models/components/employee.js +4 -0
  29. package/models/components/employee.js.map +1 -1
  30. package/models/components/employeesfilter.d.ts +5 -0
  31. package/models/components/employeesfilter.d.ts.map +1 -1
  32. package/models/components/employeesfilter.js +2 -0
  33. package/models/components/employeesfilter.js.map +1 -1
  34. package/models/components/formfieldoption.d.ts +10 -2
  35. package/models/components/formfieldoption.d.ts.map +1 -1
  36. package/models/components/formfieldoption.js +12 -4
  37. package/models/components/formfieldoption.js.map +1 -1
  38. package/models/components/formfieldoptiongroup.d.ts +29 -4
  39. package/models/components/formfieldoptiongroup.d.ts.map +1 -1
  40. package/models/components/formfieldoptiongroup.js +34 -5
  41. package/models/components/formfieldoptiongroup.js.map +1 -1
  42. package/models/components/simpleformfieldoption.d.ts +27 -2
  43. package/models/components/simpleformfieldoption.d.ts.map +1 -1
  44. package/models/components/simpleformfieldoption.js +33 -3
  45. package/models/components/simpleformfieldoption.js.map +1 -1
  46. package/package.json +1 -1
  47. package/src/lib/config.ts +4 -4
  48. package/src/lib/security.ts +11 -3
  49. package/src/models/components/address.ts +15 -14
  50. package/src/models/components/connectionimportdata.ts +24 -33
  51. package/src/models/components/consumerconnection.ts +4 -53
  52. package/src/models/components/contact.ts +17 -18
  53. package/src/models/components/employee.ts +9 -0
  54. package/src/models/components/employeesfilter.ts +7 -0
  55. package/src/models/components/formfieldoption.ts +25 -7
  56. package/src/models/components/formfieldoptiongroup.ts +50 -8
  57. package/src/models/components/simpleformfieldoption.ts +42 -4
@@ -234,7 +234,8 @@ async function run() {
234
234
  options: [
235
235
  {
236
236
  label: "General Channel",
237
- value: 12.5,
237
+ value: 123,
238
+ optionType: "simple",
238
239
  },
239
240
  {
240
241
  label: "General Channel",
@@ -242,15 +243,25 @@ async function run() {
242
243
  "team",
243
244
  "general",
244
245
  ],
246
+ optionType: "simple",
245
247
  },
246
248
  ],
249
+ optionType: "group",
247
250
  },
248
251
  {
252
+ id: "1234",
249
253
  label: "General Channel",
250
- value: [
251
- "team",
252
- "general",
254
+ options: [
255
+ {
256
+ label: "General Channel",
257
+ value: [
258
+ "team",
259
+ "general",
260
+ ],
261
+ optionType: "simple",
262
+ },
253
263
  ],
264
+ optionType: "group",
254
265
  },
255
266
  ],
256
267
  value: 10.5,
@@ -260,7 +271,11 @@ async function run() {
260
271
  options: [
261
272
  {
262
273
  label: "General Channel",
263
- value: "general",
274
+ value: [
275
+ "team",
276
+ "general",
277
+ ],
278
+ optionType: "simple",
264
279
  },
265
280
  ],
266
281
  value: true,
@@ -275,7 +290,8 @@ async function run() {
275
290
  options: [
276
291
  {
277
292
  label: "General Channel",
278
- value: true,
293
+ value: 123,
294
+ optionType: "simple",
279
295
  },
280
296
  ],
281
297
  value: true,
@@ -285,21 +301,30 @@ async function run() {
285
301
  options: [
286
302
  {
287
303
  label: "General Channel",
288
- value: true,
304
+ value: "general",
305
+ optionType: "simple",
289
306
  },
290
307
  {
291
308
  id: "1234",
292
309
  label: "General Channel",
293
310
  options: [
311
+ {
312
+ label: "General Channel",
313
+ value: 123,
314
+ optionType: "simple",
315
+ },
294
316
  {
295
317
  label: "General Channel",
296
318
  value: 12.5,
319
+ optionType: "simple",
297
320
  },
298
321
  {
299
322
  label: "General Channel",
300
- value: "general",
323
+ value: true,
324
+ optionType: "simple",
301
325
  },
302
326
  ],
327
+ optionType: "group",
303
328
  },
304
329
  ],
305
330
  value: 10,
@@ -313,24 +338,33 @@ async function run() {
313
338
  options: [
314
339
  {
315
340
  label: "General Channel",
316
- value: [
317
- "team",
318
- "general",
319
- ],
341
+ value: "general",
342
+ optionType: "simple",
320
343
  },
344
+ ],
345
+ optionType: "group",
346
+ },
347
+ {
348
+ id: "1234",
349
+ label: "General Channel",
350
+ options: [
321
351
  {
322
352
  label: "General Channel",
323
- value: true,
353
+ value: 12.5,
354
+ optionType: "simple",
324
355
  },
325
356
  {
326
357
  label: "General Channel",
327
358
  value: 12.5,
359
+ optionType: "simple",
360
+ },
361
+ {
362
+ label: "General Channel",
363
+ value: "general",
364
+ optionType: "simple",
328
365
  },
329
366
  ],
330
- },
331
- {
332
- label: "General Channel",
333
- value: 12.5,
367
+ optionType: "group",
334
368
  },
335
369
  ],
336
370
  value: 10.5,
@@ -345,15 +379,38 @@ async function run() {
345
379
  options: [
346
380
  {
347
381
  label: "General Channel",
348
- value: "general",
382
+ value: 123,
383
+ optionType: "simple",
349
384
  },
350
385
  {
386
+ id: "1234",
351
387
  label: "General Channel",
352
- value: true,
388
+ options: [
389
+ {
390
+ label: "General Channel",
391
+ value: [
392
+ "team",
393
+ "general",
394
+ ],
395
+ optionType: "simple",
396
+ },
397
+ {
398
+ label: "General Channel",
399
+ value: true,
400
+ optionType: "simple",
401
+ },
402
+ {
403
+ label: "General Channel",
404
+ value: 12.5,
405
+ optionType: "simple",
406
+ },
407
+ ],
408
+ optionType: "group",
353
409
  },
354
410
  {
355
411
  label: "General Channel",
356
- value: true,
412
+ value: 12.5,
413
+ optionType: "simple",
357
414
  },
358
415
  ],
359
416
  value: "GC5000 series",
@@ -362,12 +419,29 @@ async function run() {
362
419
  id: "ProductInterest",
363
420
  options: [
364
421
  {
422
+ id: "1234",
365
423
  label: "General Channel",
366
- value: true,
424
+ options: [
425
+ {
426
+ label: "General Channel",
427
+ value: [
428
+ "team",
429
+ "general",
430
+ ],
431
+ optionType: "simple",
432
+ },
433
+ {
434
+ label: "General Channel",
435
+ value: "general",
436
+ optionType: "simple",
437
+ },
438
+ ],
439
+ optionType: "group",
367
440
  },
368
441
  {
369
442
  label: "General Channel",
370
443
  value: 123,
444
+ optionType: "simple",
371
445
  },
372
446
  ],
373
447
  value: 10.5,
@@ -436,7 +510,8 @@ async function run() {
436
510
  options: [
437
511
  {
438
512
  label: "General Channel",
439
- value: 12.5,
513
+ value: 123,
514
+ optionType: "simple",
440
515
  },
441
516
  {
442
517
  label: "General Channel",
@@ -444,15 +519,25 @@ async function run() {
444
519
  "team",
445
520
  "general",
446
521
  ],
522
+ optionType: "simple",
447
523
  },
448
524
  ],
525
+ optionType: "group",
449
526
  },
450
527
  {
528
+ id: "1234",
451
529
  label: "General Channel",
452
- value: [
453
- "team",
454
- "general",
530
+ options: [
531
+ {
532
+ label: "General Channel",
533
+ value: [
534
+ "team",
535
+ "general",
536
+ ],
537
+ optionType: "simple",
538
+ },
455
539
  ],
540
+ optionType: "group",
456
541
  },
457
542
  ],
458
543
  value: 10.5,
@@ -462,7 +547,11 @@ async function run() {
462
547
  options: [
463
548
  {
464
549
  label: "General Channel",
465
- value: "general",
550
+ value: [
551
+ "team",
552
+ "general",
553
+ ],
554
+ optionType: "simple",
466
555
  },
467
556
  ],
468
557
  value: true,
@@ -477,7 +566,8 @@ async function run() {
477
566
  options: [
478
567
  {
479
568
  label: "General Channel",
480
- value: true,
569
+ value: 123,
570
+ optionType: "simple",
481
571
  },
482
572
  ],
483
573
  value: true,
@@ -487,21 +577,30 @@ async function run() {
487
577
  options: [
488
578
  {
489
579
  label: "General Channel",
490
- value: true,
580
+ value: "general",
581
+ optionType: "simple",
491
582
  },
492
583
  {
493
584
  id: "1234",
494
585
  label: "General Channel",
495
586
  options: [
587
+ {
588
+ label: "General Channel",
589
+ value: 123,
590
+ optionType: "simple",
591
+ },
496
592
  {
497
593
  label: "General Channel",
498
594
  value: 12.5,
595
+ optionType: "simple",
499
596
  },
500
597
  {
501
598
  label: "General Channel",
502
- value: "general",
599
+ value: true,
600
+ optionType: "simple",
503
601
  },
504
602
  ],
603
+ optionType: "group",
505
604
  },
506
605
  ],
507
606
  value: 10,
@@ -515,24 +614,33 @@ async function run() {
515
614
  options: [
516
615
  {
517
616
  label: "General Channel",
518
- value: [
519
- "team",
520
- "general",
521
- ],
617
+ value: "general",
618
+ optionType: "simple",
522
619
  },
620
+ ],
621
+ optionType: "group",
622
+ },
623
+ {
624
+ id: "1234",
625
+ label: "General Channel",
626
+ options: [
523
627
  {
524
628
  label: "General Channel",
525
- value: true,
629
+ value: 12.5,
630
+ optionType: "simple",
526
631
  },
527
632
  {
528
633
  label: "General Channel",
529
634
  value: 12.5,
635
+ optionType: "simple",
636
+ },
637
+ {
638
+ label: "General Channel",
639
+ value: "general",
640
+ optionType: "simple",
530
641
  },
531
642
  ],
532
- },
533
- {
534
- label: "General Channel",
535
- value: 12.5,
643
+ optionType: "group",
536
644
  },
537
645
  ],
538
646
  value: 10.5,
@@ -547,15 +655,38 @@ async function run() {
547
655
  options: [
548
656
  {
549
657
  label: "General Channel",
550
- value: "general",
658
+ value: 123,
659
+ optionType: "simple",
551
660
  },
552
661
  {
662
+ id: "1234",
553
663
  label: "General Channel",
554
- value: true,
664
+ options: [
665
+ {
666
+ label: "General Channel",
667
+ value: [
668
+ "team",
669
+ "general",
670
+ ],
671
+ optionType: "simple",
672
+ },
673
+ {
674
+ label: "General Channel",
675
+ value: true,
676
+ optionType: "simple",
677
+ },
678
+ {
679
+ label: "General Channel",
680
+ value: 12.5,
681
+ optionType: "simple",
682
+ },
683
+ ],
684
+ optionType: "group",
555
685
  },
556
686
  {
557
687
  label: "General Channel",
558
- value: true,
688
+ value: 12.5,
689
+ optionType: "simple",
559
690
  },
560
691
  ],
561
692
  value: "GC5000 series",
@@ -564,12 +695,29 @@ async function run() {
564
695
  id: "ProductInterest",
565
696
  options: [
566
697
  {
698
+ id: "1234",
567
699
  label: "General Channel",
568
- value: true,
700
+ options: [
701
+ {
702
+ label: "General Channel",
703
+ value: [
704
+ "team",
705
+ "general",
706
+ ],
707
+ optionType: "simple",
708
+ },
709
+ {
710
+ label: "General Channel",
711
+ value: "general",
712
+ optionType: "simple",
713
+ },
714
+ ],
715
+ optionType: "group",
569
716
  },
570
717
  {
571
718
  label: "General Channel",
572
719
  value: 123,
720
+ optionType: "simple",
573
721
  },
574
722
  ],
575
723
  value: 10.5,