@itentialopensource/adapter-salesforce 0.8.0 → 0.9.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 (45) hide show
  1. package/CALLS.md +285 -0
  2. package/CHANGELOG.md +8 -0
  3. package/CONTRIBUTING.md +1 -160
  4. package/ENHANCE.md +2 -2
  5. package/README.md +32 -23
  6. package/adapter.js +161 -333
  7. package/adapterBase.js +549 -879
  8. package/changelogs/changelog.md +94 -0
  9. package/entities/.system/action.json +4 -4
  10. package/entities/.system/schemaTokenReq.json +33 -4
  11. package/entities/.system/schemaTokenResp.json +1 -34
  12. package/metadata.json +49 -0
  13. package/package.json +24 -25
  14. package/pronghorn.json +470 -138
  15. package/propertiesSchema.json +431 -31
  16. package/refs?service=git-upload-pack +0 -0
  17. package/report/adapter-openapi.json +1543 -0
  18. package/report/adapter-openapi.yaml +1201 -0
  19. package/report/adapterInfo.json +8 -8
  20. package/report/updateReport1691511372644.json +120 -0
  21. package/report/updateReport1692202876451.json +120 -0
  22. package/report/updateReport1694464610053.json +120 -0
  23. package/report/updateReport1698421735618.json +120 -0
  24. package/sampleProperties.json +63 -2
  25. package/test/integration/adapterTestBasicGet.js +2 -4
  26. package/test/integration/adapterTestConnectivity.js +91 -42
  27. package/test/integration/adapterTestIntegration.js +130 -2
  28. package/test/unit/adapterBaseTestUnit.js +388 -313
  29. package/test/unit/adapterTestUnit.js +338 -112
  30. package/utils/adapterInfo.js +1 -1
  31. package/utils/addAuth.js +1 -1
  32. package/utils/artifactize.js +1 -1
  33. package/utils/checkMigrate.js +1 -1
  34. package/utils/entitiesToDB.js +2 -2
  35. package/utils/findPath.js +1 -1
  36. package/utils/methodDocumentor.js +273 -0
  37. package/utils/modify.js +13 -15
  38. package/utils/packModificationScript.js +1 -1
  39. package/utils/pre-commit.sh +2 -0
  40. package/utils/taskMover.js +309 -0
  41. package/utils/tbScript.js +89 -34
  42. package/utils/tbUtils.js +41 -21
  43. package/utils/testRunner.js +1 -1
  44. package/utils/troubleshootingAdapter.js +9 -6
  45. package/workflows/README.md +0 -3
@@ -0,0 +1,1201 @@
1
+ openapi: 3.0.0
2
+ info:
3
+ title: adapter-salesforce
4
+ contact: {}
5
+ version: '1.0.0'
6
+ servers:
7
+ - url: https://{defaultHost}
8
+ variables:
9
+ defaultHost:
10
+ default: www.example.com
11
+ paths:
12
+ /localizations:
13
+ get:
14
+ summary: getLocalizations
15
+ description: ''
16
+ operationId: getLocalizations
17
+ parameters:
18
+ - name: locale
19
+ in: query
20
+ description: ''
21
+ style: form
22
+ explode: true
23
+ schema:
24
+ type: string
25
+ responses:
26
+ '200':
27
+ description: Successful operation
28
+ headers: {}
29
+ content:
30
+ application/json:
31
+ schema:
32
+ type: object
33
+ deprecated: false
34
+ /incidents:
35
+ get:
36
+ summary: getIncidents
37
+ description: ''
38
+ operationId: getIncidents
39
+ parameters:
40
+ - name: startTime
41
+ in: query
42
+ description: ''
43
+ style: form
44
+ explode: true
45
+ schema:
46
+ type: string
47
+ - name: service
48
+ in: query
49
+ description: ''
50
+ style: form
51
+ explode: true
52
+ schema:
53
+ type: string
54
+ - name: instance
55
+ in: query
56
+ description: ''
57
+ style: form
58
+ explode: true
59
+ schema:
60
+ type: string
61
+ - name: limit
62
+ in: query
63
+ description: ''
64
+ style: form
65
+ explode: true
66
+ schema:
67
+ type: number
68
+ format: double
69
+ - name: offset
70
+ in: query
71
+ description: ''
72
+ style: form
73
+ explode: true
74
+ schema:
75
+ type: number
76
+ format: double
77
+ - name: sort
78
+ in: query
79
+ description: ''
80
+ style: form
81
+ explode: true
82
+ schema:
83
+ type: string
84
+ - name: order
85
+ in: query
86
+ description: ''
87
+ style: form
88
+ explode: true
89
+ schema:
90
+ type: string
91
+ - name: locale
92
+ in: query
93
+ description: ''
94
+ style: form
95
+ explode: true
96
+ schema:
97
+ type: string
98
+ responses:
99
+ '200':
100
+ description: Successful operation
101
+ headers: {}
102
+ content:
103
+ application/json:
104
+ schema:
105
+ type: object
106
+ deprecated: false
107
+ /incidents/{id}:
108
+ get:
109
+ summary: getIncidentsid
110
+ description: ''
111
+ operationId: getIncidentsid
112
+ parameters:
113
+ - name: id
114
+ in: path
115
+ description: ''
116
+ required: true
117
+ style: simple
118
+ schema:
119
+ type: string
120
+ - name: locale
121
+ in: query
122
+ description: ''
123
+ style: form
124
+ explode: true
125
+ schema:
126
+ type: string
127
+ responses:
128
+ '200':
129
+ description: Successful operation
130
+ headers: {}
131
+ content:
132
+ application/json:
133
+ schema:
134
+ type: object
135
+ deprecated: false
136
+ /incidents/fields:
137
+ get:
138
+ summary: getIncidentsfields
139
+ description: ''
140
+ operationId: getIncidentsfields
141
+ parameters:
142
+ - name: locale
143
+ in: query
144
+ description: ''
145
+ style: form
146
+ explode: true
147
+ schema:
148
+ type: string
149
+ responses:
150
+ '200':
151
+ description: Successful operation
152
+ headers: {}
153
+ content:
154
+ application/json:
155
+ schema:
156
+ type: object
157
+ deprecated: false
158
+ /incidents/impactTypes:
159
+ get:
160
+ summary: getIncidentsimpactTypes
161
+ description: ''
162
+ operationId: getIncidentsimpactTypes
163
+ parameters:
164
+ - name: locale
165
+ in: query
166
+ description: ''
167
+ style: form
168
+ explode: true
169
+ schema:
170
+ type: string
171
+ responses:
172
+ '200':
173
+ description: Successful operation
174
+ headers: {}
175
+ content:
176
+ application/json:
177
+ schema:
178
+ type: object
179
+ deprecated: false
180
+ /incidents/eventTypes:
181
+ get:
182
+ summary: getIncidentseventTypes
183
+ description: ''
184
+ operationId: getIncidentseventTypes
185
+ parameters:
186
+ - name: locale
187
+ in: query
188
+ description: ''
189
+ style: form
190
+ explode: true
191
+ schema:
192
+ type: string
193
+ responses:
194
+ '200':
195
+ description: Successful operation
196
+ headers: {}
197
+ content:
198
+ application/json:
199
+ schema:
200
+ type: object
201
+ deprecated: false
202
+ /maintenances:
203
+ get:
204
+ summary: getMaintenances
205
+ description: ''
206
+ operationId: getMaintenances
207
+ parameters:
208
+ - name: startTime
209
+ in: query
210
+ description: ''
211
+ style: form
212
+ explode: true
213
+ schema:
214
+ type: string
215
+ - name: service
216
+ in: query
217
+ description: ''
218
+ style: form
219
+ explode: true
220
+ schema:
221
+ type: string
222
+ - name: instance
223
+ in: query
224
+ description: ''
225
+ style: form
226
+ explode: true
227
+ schema:
228
+ type: string
229
+ - name: name
230
+ in: query
231
+ description: ''
232
+ style: form
233
+ explode: true
234
+ schema:
235
+ type: string
236
+ - name: limit
237
+ in: query
238
+ description: ''
239
+ style: form
240
+ explode: true
241
+ schema:
242
+ type: number
243
+ format: double
244
+ - name: offset
245
+ in: query
246
+ description: ''
247
+ style: form
248
+ explode: true
249
+ schema:
250
+ type: number
251
+ format: double
252
+ - name: sort
253
+ in: query
254
+ description: ''
255
+ style: form
256
+ explode: true
257
+ schema:
258
+ type: string
259
+ - name: order
260
+ in: query
261
+ description: ''
262
+ style: form
263
+ explode: true
264
+ schema:
265
+ type: string
266
+ - name: locale
267
+ in: query
268
+ description: ''
269
+ style: form
270
+ explode: true
271
+ schema:
272
+ type: string
273
+ responses:
274
+ '200':
275
+ description: Successful operation
276
+ headers: {}
277
+ content:
278
+ application/json:
279
+ schema:
280
+ type: object
281
+ deprecated: false
282
+ /maintenances/{id}:
283
+ get:
284
+ summary: getMaintenancesid
285
+ description: ''
286
+ operationId: getMaintenancesid
287
+ parameters:
288
+ - name: id
289
+ in: path
290
+ description: ''
291
+ required: true
292
+ style: simple
293
+ schema:
294
+ type: string
295
+ - name: locale
296
+ in: query
297
+ description: ''
298
+ style: form
299
+ explode: true
300
+ schema:
301
+ type: string
302
+ responses:
303
+ '200':
304
+ description: Successful operation
305
+ headers: {}
306
+ content:
307
+ application/json:
308
+ schema:
309
+ type: object
310
+ deprecated: false
311
+ /maintenances/fields:
312
+ get:
313
+ summary: getMaintenancesfields
314
+ description: ''
315
+ operationId: getMaintenancesfields
316
+ parameters:
317
+ - name: locale
318
+ in: query
319
+ description: ''
320
+ style: form
321
+ explode: true
322
+ schema:
323
+ type: string
324
+ responses:
325
+ '200':
326
+ description: Successful operation
327
+ headers: {}
328
+ content:
329
+ application/json:
330
+ schema:
331
+ type: object
332
+ deprecated: false
333
+ /maintenances/eventTypes:
334
+ get:
335
+ summary: getMaintenanceseventTypes
336
+ description: ''
337
+ operationId: getMaintenanceseventTypes
338
+ parameters:
339
+ - name: locale
340
+ in: query
341
+ description: ''
342
+ style: form
343
+ explode: true
344
+ schema:
345
+ type: string
346
+ responses:
347
+ '200':
348
+ description: Successful operation
349
+ headers: {}
350
+ content:
351
+ application/json:
352
+ schema:
353
+ type: object
354
+ deprecated: false
355
+ /generalMessages:
356
+ get:
357
+ summary: getGeneralMessages
358
+ description: ''
359
+ operationId: getGeneralMessages
360
+ parameters:
361
+ - name: limit
362
+ in: query
363
+ description: ''
364
+ style: form
365
+ explode: true
366
+ schema:
367
+ type: number
368
+ format: double
369
+ - name: offset
370
+ in: query
371
+ description: ''
372
+ style: form
373
+ explode: true
374
+ schema:
375
+ type: number
376
+ format: double
377
+ responses:
378
+ '200':
379
+ description: Successful operation
380
+ headers: {}
381
+ content:
382
+ application/json:
383
+ schema:
384
+ type: object
385
+ deprecated: false
386
+ /generalMessages/{id}:
387
+ get:
388
+ summary: getGeneralMessagesid
389
+ description: ''
390
+ operationId: getGeneralMessagesid
391
+ parameters:
392
+ - name: id
393
+ in: path
394
+ description: ''
395
+ required: true
396
+ style: simple
397
+ schema:
398
+ type: string
399
+ responses:
400
+ '200':
401
+ description: Successful operation
402
+ headers: {}
403
+ content:
404
+ application/json:
405
+ schema:
406
+ type: object
407
+ deprecated: false
408
+ /metricValues:
409
+ get:
410
+ summary: getMetricValues
411
+ description: ''
412
+ operationId: getMetricValues
413
+ parameters:
414
+ - name: startTime
415
+ in: query
416
+ description: ''
417
+ style: form
418
+ explode: true
419
+ schema:
420
+ type: string
421
+ - name: endTime
422
+ in: query
423
+ description: ''
424
+ style: form
425
+ explode: true
426
+ schema:
427
+ type: string
428
+ - name: metricName
429
+ in: query
430
+ description: ''
431
+ style: form
432
+ explode: true
433
+ schema:
434
+ type: string
435
+ - name: instanceKey
436
+ in: query
437
+ description: ''
438
+ style: form
439
+ explode: true
440
+ schema:
441
+ type: string
442
+ responses:
443
+ '200':
444
+ description: Successful operation
445
+ headers: {}
446
+ content:
447
+ application/json:
448
+ schema:
449
+ type: object
450
+ deprecated: false
451
+ /metricValues/{id}:
452
+ get:
453
+ summary: getMetricValuesid
454
+ description: ''
455
+ operationId: getMetricValuesid
456
+ parameters:
457
+ - name: id
458
+ in: path
459
+ description: ''
460
+ required: true
461
+ style: simple
462
+ schema:
463
+ type: string
464
+ responses:
465
+ '200':
466
+ description: Successful operation
467
+ headers: {}
468
+ content:
469
+ application/json:
470
+ schema:
471
+ type: object
472
+ deprecated: false
473
+ /locales:
474
+ get:
475
+ summary: getLocales
476
+ description: ''
477
+ operationId: getLocales
478
+ parameters:
479
+ - name: locale
480
+ in: query
481
+ description: ''
482
+ style: form
483
+ explode: true
484
+ schema:
485
+ type: string
486
+ responses:
487
+ '200':
488
+ description: Successful operation
489
+ headers: {}
490
+ content:
491
+ application/json:
492
+ schema:
493
+ type: object
494
+ deprecated: false
495
+ /services:
496
+ get:
497
+ summary: getServices
498
+ description: ''
499
+ operationId: getServices
500
+ parameters:
501
+ - name: locale
502
+ in: query
503
+ description: ''
504
+ style: form
505
+ explode: true
506
+ schema:
507
+ type: string
508
+ responses:
509
+ '200':
510
+ description: Successful operation
511
+ headers: {}
512
+ content:
513
+ application/json:
514
+ schema:
515
+ type: object
516
+ deprecated: false
517
+ /instances:
518
+ get:
519
+ summary: getInstances
520
+ description: ''
521
+ operationId: getInstances
522
+ parameters:
523
+ - name: sort
524
+ in: query
525
+ description: ''
526
+ style: form
527
+ explode: true
528
+ schema:
529
+ type: string
530
+ - name: order
531
+ in: query
532
+ description: ''
533
+ style: form
534
+ explode: true
535
+ schema:
536
+ type: string
537
+ - name: products
538
+ in: query
539
+ description: ''
540
+ style: form
541
+ explode: true
542
+ schema:
543
+ type: string
544
+ - name: tags
545
+ in: query
546
+ description: ''
547
+ style: form
548
+ explode: true
549
+ schema:
550
+ type: array
551
+ items: {}
552
+ - name: childProducts
553
+ in: query
554
+ description: ''
555
+ style: form
556
+ explode: true
557
+ schema:
558
+ type: boolean
559
+ - name: locale
560
+ in: query
561
+ description: ''
562
+ style: form
563
+ explode: true
564
+ schema:
565
+ type: string
566
+ responses:
567
+ '200':
568
+ description: Successful operation
569
+ headers: {}
570
+ content:
571
+ application/json:
572
+ schema:
573
+ type: object
574
+ deprecated: false
575
+ /instances/status:
576
+ get:
577
+ summary: getInstancesstatus
578
+ description: ''
579
+ operationId: getInstancesstatus
580
+ parameters:
581
+ - name: products
582
+ in: query
583
+ description: ''
584
+ style: form
585
+ explode: true
586
+ schema:
587
+ type: string
588
+ - name: childProducts
589
+ in: query
590
+ description: ''
591
+ style: form
592
+ explode: true
593
+ schema:
594
+ type: boolean
595
+ - name: locale
596
+ in: query
597
+ description: ''
598
+ style: form
599
+ explode: true
600
+ schema:
601
+ type: string
602
+ responses:
603
+ '200':
604
+ description: Successful operation
605
+ headers: {}
606
+ content:
607
+ application/json:
608
+ schema:
609
+ type: object
610
+ deprecated: false
611
+ /instances/status/preview:
612
+ get:
613
+ summary: getInstancesstatuspreview
614
+ description: ''
615
+ operationId: getInstancesstatuspreview
616
+ parameters:
617
+ - name: products
618
+ in: query
619
+ description: ''
620
+ style: form
621
+ explode: true
622
+ schema:
623
+ type: string
624
+ - name: childProducts
625
+ in: query
626
+ description: ''
627
+ style: form
628
+ explode: true
629
+ schema:
630
+ type: boolean
631
+ - name: locale
632
+ in: query
633
+ description: ''
634
+ style: form
635
+ explode: true
636
+ schema:
637
+ type: string
638
+ responses:
639
+ '200':
640
+ description: Successful operation
641
+ headers: {}
642
+ content:
643
+ application/json:
644
+ schema:
645
+ type: object
646
+ deprecated: false
647
+ /instances/{key}/status/preview:
648
+ get:
649
+ summary: getInstanceskeystatuspreview
650
+ description: ''
651
+ operationId: getInstanceskeystatuspreview
652
+ parameters:
653
+ - name: key
654
+ in: path
655
+ description: ''
656
+ required: true
657
+ style: simple
658
+ schema:
659
+ type: string
660
+ - name: productKey
661
+ in: query
662
+ description: ''
663
+ style: form
664
+ explode: true
665
+ schema:
666
+ type: string
667
+ - name: childProducts
668
+ in: query
669
+ description: ''
670
+ style: form
671
+ explode: true
672
+ schema:
673
+ type: boolean
674
+ - name: locale
675
+ in: query
676
+ description: ''
677
+ style: form
678
+ explode: true
679
+ schema:
680
+ type: string
681
+ responses:
682
+ '200':
683
+ description: Successful operation
684
+ headers: {}
685
+ content:
686
+ application/json:
687
+ schema:
688
+ type: object
689
+ deprecated: false
690
+ /instances/{key}/status:
691
+ get:
692
+ summary: getInstanceskeystatus
693
+ description: ''
694
+ operationId: getInstanceskeystatus
695
+ parameters:
696
+ - name: key
697
+ in: path
698
+ description: ''
699
+ required: true
700
+ style: simple
701
+ schema:
702
+ type: string
703
+ - name: productKey
704
+ in: query
705
+ description: ''
706
+ style: form
707
+ explode: true
708
+ schema:
709
+ type: string
710
+ - name: childProducts
711
+ in: query
712
+ description: ''
713
+ style: form
714
+ explode: true
715
+ schema:
716
+ type: boolean
717
+ - name: locale
718
+ in: query
719
+ description: ''
720
+ style: form
721
+ explode: true
722
+ schema:
723
+ type: string
724
+ responses:
725
+ '200':
726
+ description: Successful operation
727
+ headers: {}
728
+ content:
729
+ application/json:
730
+ schema:
731
+ type: object
732
+ deprecated: false
733
+ /instanceAliases/{key}/status:
734
+ get:
735
+ summary: getInstanceAliaseskeystatus
736
+ description: ''
737
+ operationId: getInstanceAliaseskeystatus
738
+ parameters:
739
+ - name: key
740
+ in: path
741
+ description: ''
742
+ required: true
743
+ style: simple
744
+ schema:
745
+ type: string
746
+ responses:
747
+ '200':
748
+ description: Successful operation
749
+ headers: {}
750
+ content:
751
+ application/json:
752
+ schema:
753
+ type: object
754
+ deprecated: false
755
+ /instanceAliases/{key}:
756
+ get:
757
+ summary: getInstanceAliaseskey
758
+ description: ''
759
+ operationId: getInstanceAliaseskey
760
+ parameters:
761
+ - name: key
762
+ in: path
763
+ description: ''
764
+ required: true
765
+ style: simple
766
+ schema:
767
+ type: string
768
+ responses:
769
+ '200':
770
+ description: Successful operation
771
+ headers: {}
772
+ content:
773
+ application/json:
774
+ schema:
775
+ type: object
776
+ deprecated: false
777
+ /products:
778
+ get:
779
+ summary: getProducts
780
+ description: ''
781
+ operationId: getProducts
782
+ parameters: []
783
+ responses:
784
+ '200':
785
+ description: Successful operation
786
+ headers: {}
787
+ content:
788
+ application/json:
789
+ schema:
790
+ type: object
791
+ deprecated: false
792
+ /products/{key}:
793
+ get:
794
+ summary: getProductskey
795
+ description: ''
796
+ operationId: getProductskey
797
+ parameters:
798
+ - name: key
799
+ in: path
800
+ description: ''
801
+ required: true
802
+ style: simple
803
+ schema:
804
+ type: string
805
+ responses:
806
+ '200':
807
+ description: Successful operation
808
+ headers: {}
809
+ content:
810
+ application/json:
811
+ schema:
812
+ type: object
813
+ deprecated: false
814
+ /subscribe:
815
+ post:
816
+ summary: postSubscribe
817
+ description: ''
818
+ operationId: postSubscribe
819
+ parameters:
820
+ - name: XSendNotification
821
+ in: query
822
+ description: ''
823
+ style: form
824
+ explode: true
825
+ schema:
826
+ type: string
827
+ requestBody:
828
+ description: ''
829
+ content:
830
+ application/json:
831
+ schema:
832
+ type: object
833
+ required: false
834
+ responses:
835
+ '200':
836
+ description: Successful operation
837
+ headers: {}
838
+ content:
839
+ application/json:
840
+ schema:
841
+ type: object
842
+ deprecated: false
843
+ /unsubscribe:
844
+ patch:
845
+ summary: patchUnsubscribe
846
+ description: ''
847
+ operationId: patchUnsubscribe
848
+ parameters:
849
+ - name: token
850
+ in: query
851
+ description: ''
852
+ style: form
853
+ explode: true
854
+ schema:
855
+ type: string
856
+ requestBody:
857
+ description: ''
858
+ content:
859
+ application/json:
860
+ schema:
861
+ type: object
862
+ required: false
863
+ responses:
864
+ '200':
865
+ description: Successful operation
866
+ headers: {}
867
+ content:
868
+ application/json:
869
+ schema:
870
+ type: object
871
+ deprecated: false
872
+ post:
873
+ summary: postUnsubscribe
874
+ description: ''
875
+ operationId: postUnsubscribe
876
+ parameters:
877
+ - name: token
878
+ in: query
879
+ description: ''
880
+ style: form
881
+ explode: true
882
+ schema:
883
+ type: string
884
+ requestBody:
885
+ description: ''
886
+ content:
887
+ application/json:
888
+ schema:
889
+ type: object
890
+ required: false
891
+ responses:
892
+ '200':
893
+ description: Successful operation
894
+ headers: {}
895
+ content:
896
+ application/json:
897
+ schema:
898
+ type: object
899
+ deprecated: false
900
+ /login:
901
+ post:
902
+ summary: postLogin
903
+ description: ''
904
+ operationId: postLogin
905
+ parameters:
906
+ - name: XSendNotification
907
+ in: query
908
+ description: ''
909
+ style: form
910
+ explode: true
911
+ schema:
912
+ type: string
913
+ requestBody:
914
+ description: ''
915
+ content:
916
+ application/json:
917
+ schema:
918
+ type: object
919
+ required: false
920
+ responses:
921
+ '200':
922
+ description: Successful operation
923
+ headers: {}
924
+ content:
925
+ application/json:
926
+ schema:
927
+ type: object
928
+ deprecated: false
929
+ /logout:
930
+ get:
931
+ summary: getLogout
932
+ description: ''
933
+ operationId: getLogout
934
+ parameters:
935
+ - name: token
936
+ in: query
937
+ description: ''
938
+ required: true
939
+ style: form
940
+ explode: true
941
+ schema:
942
+ type: string
943
+ responses:
944
+ '200':
945
+ description: Successful operation
946
+ headers: {}
947
+ content:
948
+ application/json:
949
+ schema:
950
+ type: object
951
+ deprecated: false
952
+ /subscribers:
953
+ get:
954
+ summary: getSubscribers
955
+ description: ''
956
+ operationId: getSubscribers
957
+ parameters:
958
+ - name: token
959
+ in: query
960
+ description: ''
961
+ required: true
962
+ style: form
963
+ explode: true
964
+ schema:
965
+ type: string
966
+ - name: normalize
967
+ in: query
968
+ description: ''
969
+ style: form
970
+ explode: true
971
+ schema:
972
+ type: boolean
973
+ responses:
974
+ '200':
975
+ description: Successful operation
976
+ headers: {}
977
+ content:
978
+ application/json:
979
+ schema:
980
+ type: object
981
+ deprecated: false
982
+ patch:
983
+ summary: patchSubscribers
984
+ description: ''
985
+ operationId: patchSubscribers
986
+ parameters:
987
+ - name: XSendNotification
988
+ in: query
989
+ description: ''
990
+ style: form
991
+ explode: true
992
+ schema:
993
+ type: string
994
+ - name: token
995
+ in: query
996
+ description: ''
997
+ required: true
998
+ style: form
999
+ explode: true
1000
+ schema:
1001
+ type: string
1002
+ requestBody:
1003
+ description: ''
1004
+ content:
1005
+ application/json:
1006
+ schema:
1007
+ type: object
1008
+ required: false
1009
+ responses:
1010
+ '200':
1011
+ description: Successful operation
1012
+ headers: {}
1013
+ content:
1014
+ application/json:
1015
+ schema:
1016
+ type: object
1017
+ deprecated: false
1018
+ /subscribers/subscriptions/{id}:
1019
+ post:
1020
+ summary: postSubscriberssubscriptionsid
1021
+ description: ''
1022
+ operationId: postSubscriberssubscriptionsid
1023
+ parameters:
1024
+ - name: id
1025
+ in: path
1026
+ description: ''
1027
+ required: true
1028
+ style: simple
1029
+ schema:
1030
+ type: string
1031
+ - name: token
1032
+ in: query
1033
+ description: ''
1034
+ required: true
1035
+ style: form
1036
+ explode: true
1037
+ schema:
1038
+ type: string
1039
+ requestBody:
1040
+ description: ''
1041
+ content:
1042
+ application/json:
1043
+ schema:
1044
+ type: object
1045
+ required: false
1046
+ responses:
1047
+ '200':
1048
+ description: Successful operation
1049
+ headers: {}
1050
+ content:
1051
+ application/json:
1052
+ schema:
1053
+ type: object
1054
+ deprecated: false
1055
+ patch:
1056
+ summary: patchSubscriberssubscriptionsid
1057
+ description: ''
1058
+ operationId: patchSubscriberssubscriptionsid
1059
+ parameters:
1060
+ - name: id
1061
+ in: path
1062
+ description: ''
1063
+ required: true
1064
+ style: simple
1065
+ schema:
1066
+ type: string
1067
+ - name: token
1068
+ in: query
1069
+ description: ''
1070
+ required: true
1071
+ style: form
1072
+ explode: true
1073
+ schema:
1074
+ type: string
1075
+ requestBody:
1076
+ description: ''
1077
+ content:
1078
+ application/json:
1079
+ schema:
1080
+ type: object
1081
+ required: false
1082
+ responses:
1083
+ '200':
1084
+ description: Successful operation
1085
+ headers: {}
1086
+ content:
1087
+ application/json:
1088
+ schema:
1089
+ type: object
1090
+ deprecated: false
1091
+ delete:
1092
+ summary: deleteSubscriberssubscriptionsid
1093
+ description: ''
1094
+ operationId: deleteSubscriberssubscriptionsid
1095
+ parameters:
1096
+ - name: id
1097
+ in: path
1098
+ description: ''
1099
+ required: true
1100
+ style: simple
1101
+ schema:
1102
+ type: string
1103
+ - name: token
1104
+ in: query
1105
+ description: ''
1106
+ required: true
1107
+ style: form
1108
+ explode: true
1109
+ schema:
1110
+ type: string
1111
+ responses:
1112
+ '200':
1113
+ description: Successful operation
1114
+ headers: {}
1115
+ content:
1116
+ application/json:
1117
+ schema:
1118
+ type: object
1119
+ deprecated: false
1120
+ /search/{key}:
1121
+ get:
1122
+ summary: getSearchkey
1123
+ description: ''
1124
+ operationId: getSearchkey
1125
+ parameters:
1126
+ - name: key
1127
+ in: path
1128
+ description: ''
1129
+ required: true
1130
+ style: simple
1131
+ schema:
1132
+ type: string
1133
+ responses:
1134
+ '200':
1135
+ description: Successful operation
1136
+ headers: {}
1137
+ content:
1138
+ application/json:
1139
+ schema:
1140
+ type: object
1141
+ deprecated: false
1142
+ /tags:
1143
+ get:
1144
+ summary: getTags
1145
+ description: ''
1146
+ operationId: getTags
1147
+ parameters: []
1148
+ responses:
1149
+ '200':
1150
+ description: Successful operation
1151
+ headers: {}
1152
+ content:
1153
+ application/json:
1154
+ schema:
1155
+ type: object
1156
+ deprecated: false
1157
+ /tags/instance/{instanceKey}:
1158
+ get:
1159
+ summary: getTagsinstanceinstanceKey
1160
+ description: ''
1161
+ operationId: getTagsinstanceinstanceKey
1162
+ parameters:
1163
+ - name: instanceKey
1164
+ in: path
1165
+ description: ''
1166
+ required: true
1167
+ style: simple
1168
+ schema:
1169
+ type: string
1170
+ - name: instances
1171
+ in: query
1172
+ description: ''
1173
+ style: form
1174
+ explode: true
1175
+ schema:
1176
+ type: boolean
1177
+ responses:
1178
+ '200':
1179
+ description: Successful operation
1180
+ headers: {}
1181
+ content:
1182
+ application/json:
1183
+ schema:
1184
+ type: object
1185
+ deprecated: false
1186
+ /tagTypes:
1187
+ get:
1188
+ summary: getTagTypes
1189
+ description: ''
1190
+ operationId: getTagTypes
1191
+ parameters: []
1192
+ responses:
1193
+ '200':
1194
+ description: Successful operation
1195
+ headers: {}
1196
+ content:
1197
+ application/json:
1198
+ schema:
1199
+ type: object
1200
+ deprecated: false
1201
+ tags: []