@digipair/skill-microsoft 0.97.1 → 0.98.2

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 (3) hide show
  1. package/package.json +1 -1
  2. package/schema.fr.json +530 -554
  3. package/schema.json +531 -557
package/schema.json CHANGED
@@ -124,588 +124,562 @@
124
124
  }
125
125
  ]
126
126
  }
127
- "id": "12345",
128
- "displayName": "Sample Resource",
129
- "createdDateTime": "2023-01-01T00:00:00Z"
130
127
  }
131
128
  }
132
129
  }
133
130
  }
134
131
  }
135
- }
136
- },
137
- "/create": {
138
- "post": {
139
- "tags": [
140
- "service"
141
- ],
142
- "summary": "Adds a Microsoft resource",
143
- "parameters": [
144
- {
145
- "name": "path",
146
- "summary": "Service path",
147
- "required": true,
148
- "description": "Path of the service to execute",
149
- "schema": {
150
- "type": "string"
151
- }
152
- },
153
- {
154
- "name": "body",
155
- "summary": "Value",
156
- "required": false,
157
- "description": "Value to send",
158
- "schema": {
159
- "type": "object"
160
- }
161
- },
162
- {
163
- "name": "version",
164
- "summary": "API version",
165
- "required": false,
166
- "description": "API version to use",
167
- "schema": {
168
- "type": "string"
132
+ },
133
+ "/create": {
134
+ "post": {
135
+ "tags": [
136
+ "service"
137
+ ],
138
+ "summary": "Adds a Microsoft resource",
139
+ "parameters": [
140
+ {
141
+ "name": "path",
142
+ "summary": "Service path",
143
+ "required": true,
144
+ "description": "Path of the service to execute",
145
+ "schema": {
146
+ "type": "string"
147
+ }
148
+ },
149
+ {
150
+ "name": "body",
151
+ "summary": "Value",
152
+ "required": false,
153
+ "description": "Value to send",
154
+ "schema": {
155
+ "type": "object"
156
+ }
157
+ },
158
+ {
159
+ "name": "version",
160
+ "summary": "API version",
161
+ "required": false,
162
+ "description": "API version to use",
163
+ "schema": {
164
+ "type": "string"
165
+ }
166
+ },
167
+ {
168
+ "name": "headers",
169
+ "summary": "Headers",
170
+ "required": false,
171
+ "description": "Headers to send",
172
+ "schema": {
173
+ "type": "object"
174
+ }
175
+ },
176
+ {
177
+ "name": "OAUTH_CLIENT_ID",
178
+ "summary": "OAuth client ID",
179
+ "required": false,
180
+ "description": "OAuth client ID",
181
+ "schema": {
182
+ "type": "string"
183
+ }
184
+ },
185
+ {
186
+ "name": "OAUTH_CLIENT_SECRET",
187
+ "summary": "OAuth client secret",
188
+ "required": false,
189
+ "description": "OAuth client secret",
190
+ "schema": {
191
+ "type": "string"
192
+ }
193
+ },
194
+ {
195
+ "name": "TENANT_ID",
196
+ "summary": "Tenant ID",
197
+ "required": false,
198
+ "description": "Tenant ID",
199
+ "schema": {
200
+ "type": "string"
201
+ }
202
+ },
203
+ {
204
+ "name": "type",
205
+ "summary": "Output type",
206
+ "required": false,
207
+ "description": "Type of output expected from the service",
208
+ "schema": {
209
+ "type": "string"
210
+ }
211
+ },
212
+ {
213
+ "name": "contentType",
214
+ "summary": "Content type",
215
+ "required": false,
216
+ "description": "Content type of the request",
217
+ "schema": {
218
+ "type": "string"
219
+ }
169
220
  }
170
- },
171
- {
172
- "name": "headers",
173
- "summary": "Headers",
174
- "required": false,
175
- "description": "Headers to send",
176
- "schema": {
177
- "type": "object"
221
+ ],
222
+ "x-events": [],
223
+ "responses": {
224
+ "200": {
225
+ "description": "Successful response",
226
+ "content": {
227
+ "application/json": {
228
+ "schema": {
229
+ "oneOf": [
230
+ {
231
+ "type": "object",
232
+ "description": "JSON response from Microsoft Graph API"
233
+ },
234
+ {
235
+ "type": "string",
236
+ "description": "Text or base64 response from Microsoft Graph API"
237
+ }
238
+ ]
239
+ }
240
+ }
241
+ }
178
242
  }
179
- },
180
- {
181
- "name": "OAUTH_CLIENT_ID",
182
- "summary": "OAuth client ID",
183
- "required": false,
184
- "description": "OAuth client ID",
185
- "schema": {
186
- "type": "string"
243
+ }
244
+ }
245
+ },
246
+ "/read": {
247
+ "post": {
248
+ "tags": [
249
+ "service"
250
+ ],
251
+ "summary": "Reads a Microsoft resource",
252
+ "parameters": [
253
+ {
254
+ "name": "path",
255
+ "summary": "Service path",
256
+ "required": true,
257
+ "description": "Path of the service to execute",
258
+ "schema": {
259
+ "type": "string"
260
+ }
261
+ },
262
+ {
263
+ "name": "version",
264
+ "summary": "API version",
265
+ "required": false,
266
+ "description": "API version to use",
267
+ "schema": {
268
+ "type": "string"
269
+ }
270
+ },
271
+ {
272
+ "name": "headers",
273
+ "summary": "Headers",
274
+ "required": false,
275
+ "description": "Headers to send",
276
+ "schema": {
277
+ "type": "object"
278
+ }
279
+ },
280
+ {
281
+ "name": "OAUTH_CLIENT_ID",
282
+ "summary": "OAuth client ID",
283
+ "required": false,
284
+ "description": "OAuth client ID",
285
+ "schema": {
286
+ "type": "string"
287
+ }
288
+ },
289
+ {
290
+ "name": "OAUTH_CLIENT_SECRET",
291
+ "summary": "OAuth client secret",
292
+ "required": false,
293
+ "description": "OAuth client secret",
294
+ "schema": {
295
+ "type": "string"
296
+ }
297
+ },
298
+ {
299
+ "name": "TENANT_ID",
300
+ "summary": "Tenant ID",
301
+ "required": false,
302
+ "description": "Tenant ID",
303
+ "schema": {
304
+ "type": "string"
305
+ }
306
+ },
307
+ {
308
+ "name": "type",
309
+ "summary": "Output type",
310
+ "required": false,
311
+ "description": "Type of output expected from the service",
312
+ "schema": {
313
+ "type": "string"
314
+ }
315
+ },
316
+ {
317
+ "name": "contentType",
318
+ "summary": "Content type",
319
+ "required": false,
320
+ "description": "Content type of the request",
321
+ "schema": {
322
+ "type": "string"
323
+ }
187
324
  }
188
- },
189
- {
190
- "name": "OAUTH_CLIENT_SECRET",
191
- "summary": "OAuth client secret",
192
- "required": false,
193
- "description": "OAuth client secret",
194
- "schema": {
195
- "type": "string"
325
+ ],
326
+ "x-events": [],
327
+ "responses": {
328
+ "200": {
329
+ "description": "Successful response",
330
+ "content": {
331
+ "application/json": {
332
+ "schema": {
333
+ "oneOf": [
334
+ {
335
+ "type": "object",
336
+ "description": "JSON response from Microsoft Graph API"
337
+ },
338
+ {
339
+ "type": "string",
340
+ "description": "Text or base64 response from Microsoft Graph API"
341
+ }
342
+ ]
343
+ }
344
+ }
345
+ }
196
346
  }
197
- },
198
- {
199
- "name": "TENANT_ID",
200
- "summary": "Tenant ID",
201
- "required": false,
202
- "description": "Tenant ID",
203
- "schema": {
204
- "type": "string"
347
+ }
348
+ }
349
+ },
350
+ "/update": {
351
+ "post": {
352
+ "tags": [
353
+ "service"
354
+ ],
355
+ "summary": "Modifies a Microsoft resource",
356
+ "parameters": [
357
+ {
358
+ "name": "path",
359
+ "summary": "Service path",
360
+ "required": true,
361
+ "description": "Path of the service to execute",
362
+ "schema": {
363
+ "type": "string"
364
+ }
365
+ },
366
+ {
367
+ "name": "body",
368
+ "summary": "Value",
369
+ "required": false,
370
+ "description": "Value to send",
371
+ "schema": {
372
+ "type": "object"
373
+ }
374
+ },
375
+ {
376
+ "name": "version",
377
+ "summary": "API version",
378
+ "required": false,
379
+ "description": "API version to use",
380
+ "schema": {
381
+ "type": "string"
382
+ }
383
+ },
384
+ {
385
+ "name": "headers",
386
+ "summary": "Headers",
387
+ "required": false,
388
+ "description": "Headers to send",
389
+ "schema": {
390
+ "type": "object"
391
+ }
392
+ },
393
+ {
394
+ "name": "OAUTH_CLIENT_ID",
395
+ "summary": "OAuth client ID",
396
+ "required": false,
397
+ "description": "OAuth client ID",
398
+ "schema": {
399
+ "type": "string"
400
+ }
401
+ },
402
+ {
403
+ "name": "OAUTH_CLIENT_SECRET",
404
+ "summary": "OAuth client secret",
405
+ "required": false,
406
+ "description": "OAuth client secret",
407
+ "schema": {
408
+ "type": "string"
409
+ }
410
+ },
411
+ {
412
+ "name": "TENANT_ID",
413
+ "summary": "Tenant ID",
414
+ "required": false,
415
+ "description": "Tenant ID",
416
+ "schema": {
417
+ "type": "string"
418
+ }
419
+ },
420
+ {
421
+ "name": "type",
422
+ "summary": "Output type",
423
+ "required": false,
424
+ "description": "Type of output expected from the service",
425
+ "schema": {
426
+ "type": "string"
427
+ }
428
+ },
429
+ {
430
+ "name": "contentType",
431
+ "summary": "Content type",
432
+ "required": false,
433
+ "description": "Content type of the request",
434
+ "schema": {
435
+ "type": "string"
436
+ }
205
437
  }
206
- },
207
- {
208
- "name": "type",
209
- "summary": "Output type",
210
- "required": false,
211
- "description": "Type of output expected from the service",
212
- "schema": {
213
- "type": "string"
438
+ ],
439
+ "x-events": [],
440
+ "responses": {
441
+ "200": {
442
+ "description": "Successful response",
443
+ "content": {
444
+ "application/json": {
445
+ "schema": {
446
+ "oneOf": [
447
+ {
448
+ "type": "object",
449
+ "description": "JSON response from Microsoft Graph API"
450
+ },
451
+ {
452
+ "type": "string",
453
+ "description": "Text or base64 response from Microsoft Graph API"
454
+ }
455
+ ]
456
+ }
457
+ }
458
+ }
214
459
  }
215
- },
216
- {
217
- "name": "contentType",
218
- "summary": "Content type",
219
- "required": false,
220
- "description": "Content type of the request",
221
- "schema": {
222
- "type": "string"
460
+ }
461
+ }
462
+ },
463
+ "/partialUpdate": {
464
+ "post": {
465
+ "tags": [
466
+ "service"
467
+ ],
468
+ "summary": "Modifies part of a Microsoft resource",
469
+ "parameters": [
470
+ {
471
+ "name": "path",
472
+ "summary": "Service path",
473
+ "required": true,
474
+ "description": "Path of the service to execute",
475
+ "schema": {
476
+ "type": "string"
477
+ }
478
+ },
479
+ {
480
+ "name": "body",
481
+ "summary": "Value",
482
+ "required": false,
483
+ "description": "Value to send",
484
+ "schema": {
485
+ "type": "object"
486
+ }
487
+ },
488
+ {
489
+ "name": "version",
490
+ "summary": "API version",
491
+ "required": false,
492
+ "description": "API version to use",
493
+ "schema": {
494
+ "type": "string"
495
+ }
496
+ },
497
+ {
498
+ "name": "headers",
499
+ "summary": "Headers",
500
+ "required": false,
501
+ "description": "Headers to send",
502
+ "schema": {
503
+ "type": "object"
504
+ }
505
+ },
506
+ {
507
+ "name": "OAUTH_CLIENT_ID",
508
+ "summary": "OAuth client ID",
509
+ "required": false,
510
+ "description": "OAuth client ID",
511
+ "schema": {
512
+ "type": "string"
513
+ }
514
+ },
515
+ {
516
+ "name": "OAUTH_CLIENT_SECRET",
517
+ "summary": "OAuth client secret",
518
+ "required": false,
519
+ "description": "OAuth client secret",
520
+ "schema": {
521
+ "type": "string"
522
+ }
523
+ },
524
+ {
525
+ "name": "TENANT_ID",
526
+ "summary": "Tenant ID",
527
+ "required": false,
528
+ "description": "Tenant ID",
529
+ "schema": {
530
+ "type": "string"
531
+ }
532
+ },
533
+ {
534
+ "name": "type",
535
+ "summary": "Output type",
536
+ "required": false,
537
+ "description": "Type of output expected from the service",
538
+ "schema": {
539
+ "type": "string"
540
+ }
541
+ },
542
+ {
543
+ "name": "contentType",
544
+ "summary": "Content type",
545
+ "required": false,
546
+ "description": "Content type of the request",
547
+ "schema": {
548
+ "type": "string"
549
+ }
223
550
  }
224
- }
225
- ],
226
- "x-events": [],
227
- "responses": {
228
- "200": {
229
- "description": "Successful response",
230
- "content": {
231
- "application/json": {
232
- "schema": {
233
- "oneOf": [
234
- {
235
- "type": "object",
236
- "description": "JSON response from Microsoft Graph API"
237
- },
238
- {
239
- "type": "string",
240
- "description": "Text or base64 response from Microsoft Graph API"
241
- }
242
- ]
551
+ ],
552
+ "x-events": [],
553
+ "responses": {
554
+ "200": {
555
+ "description": "Successful response",
556
+ "content": {
557
+ "application/json": {
558
+ "schema": {
559
+ "oneOf": [
560
+ {
561
+ "type": "object",
562
+ "description": "JSON response from Microsoft Graph API"
563
+ },
564
+ {
565
+ "type": "string",
566
+ "description": "Text or base64 response from Microsoft Graph API"
567
+ }
568
+ ]
569
+ }
243
570
  }
244
- "id": "created-resource-id",
245
- "displayName": "Created Resource",
246
- "status": "active"
247
571
  }
248
572
  }
249
573
  }
250
574
  }
251
- }
252
- }
253
- },
254
- "/read": {
255
- "post": {
256
- "tags": [
257
- "service"
258
- ],
259
- "summary": "Reads a Microsoft resource",
260
- "parameters": [
261
- {
262
- "name": "path",
263
- "summary": "Service path",
264
- "required": true,
265
- "description": "Path of the service to execute",
266
- "schema": {
267
- "type": "string"
268
- }
269
- },
270
- {
271
- "name": "version",
272
- "summary": "API version",
273
- "required": false,
274
- "description": "API version to use",
275
- "schema": {
276
- "type": "string"
277
- }
278
- },
279
- {
280
- "name": "headers",
281
- "summary": "Headers",
282
- "required": false,
283
- "description": "Headers to send",
284
- "schema": {
285
- "type": "object"
286
- }
287
- },
288
- {
289
- "name": "OAUTH_CLIENT_ID",
290
- "summary": "OAuth client ID",
291
- "required": false,
292
- "description": "OAuth client ID",
293
- "schema": {
294
- "type": "string"
295
- }
296
- },
297
- {
298
- "name": "OAUTH_CLIENT_SECRET",
299
- "summary": "OAuth client secret",
300
- "required": false,
301
- "description": "OAuth client secret",
302
- "schema": {
303
- "type": "string"
304
- }
305
- },
306
- {
307
- "name": "TENANT_ID",
308
- "summary": "Tenant ID",
309
- "required": false,
310
- "description": "Tenant ID",
311
- "schema": {
312
- "type": "string"
313
- }
314
- },
315
- {
316
- "name": "type",
317
- "summary": "Output type",
318
- "required": false,
319
- "description": "Type of output expected from the service",
320
- "schema": {
321
- "type": "string"
322
- }
323
- },
324
- {
325
- "name": "contentType",
326
- "summary": "Content type",
327
- "required": false,
328
- "description": "Content type of the request",
329
- "schema": {
330
- "type": "string"
331
- }
332
- }
333
- ],
334
- "x-events": [],
335
- "responses": {
336
- "200": {
337
- "description": "Successful response",
338
- "content": {
339
- "application/json": {
340
- "schema": {
341
- "oneOf": [
342
- {
343
- "type": "object",
344
- "description": "JSON response from Microsoft Graph API"
345
- },
346
- {
347
- "type": "string",
348
- "description": "Text or base64 response from Microsoft Graph API"
349
- }
350
- ]
575
+ },
576
+ "/remove": {
577
+ "post": {
578
+ "tags": [
579
+ "service"
580
+ ],
581
+ "summary": "Deletes a Microsoft resource",
582
+ "parameters": [
583
+ {
584
+ "name": "path",
585
+ "summary": "Service path",
586
+ "required": true,
587
+ "description": "Path of the service to execute",
588
+ "schema": {
589
+ "type": "string"
590
+ }
591
+ },
592
+ {
593
+ "name": "version",
594
+ "summary": "API version",
595
+ "required": false,
596
+ "description": "API version to use",
597
+ "schema": {
598
+ "type": "string"
599
+ }
600
+ },
601
+ {
602
+ "name": "headers",
603
+ "summary": "Headers",
604
+ "required": false,
605
+ "description": "Headers to send",
606
+ "schema": {
607
+ "type": "object"
608
+ }
609
+ },
610
+ {
611
+ "name": "OAUTH_CLIENT_ID",
612
+ "summary": "OAuth client ID",
613
+ "required": false,
614
+ "description": "OAuth client ID",
615
+ "schema": {
616
+ "type": "string"
617
+ }
618
+ },
619
+ {
620
+ "name": "OAUTH_CLIENT_SECRET",
621
+ "summary": "OAuth client secret",
622
+ "required": false,
623
+ "description": "OAuth client secret",
624
+ "schema": {
625
+ "type": "string"
351
626
  }
352
- "id": "resource-id",
353
- "displayName": "Retrieved Resource",
354
- "properties": {
355
- "value1": "data1",
356
- "value2": "data2"
627
+ },
628
+ {
629
+ "name": "TENANT_ID",
630
+ "summary": "Tenant ID",
631
+ "required": false,
632
+ "description": "Tenant ID",
633
+ "schema": {
634
+ "type": "string"
635
+ }
636
+ },
637
+ {
638
+ "name": "type",
639
+ "summary": "Output type",
640
+ "required": false,
641
+ "description": "Type of output expected from the service",
642
+ "schema": {
643
+ "type": "string"
644
+ }
645
+ },
646
+ {
647
+ "name": "contentType",
648
+ "summary": "Content type",
649
+ "required": false,
650
+ "description": "Content type of the request",
651
+ "schema": {
652
+ "type": "string"
357
653
  }
358
654
  }
359
- }
360
- }
361
- }
362
- }
363
- }
364
- },
365
- "/update": {
366
- "post": {
367
- "tags": [
368
- "service"
369
- ],
370
- "summary": "Modifies a Microsoft resource",
371
- "parameters": [
372
- {
373
- "name": "path",
374
- "summary": "Service path",
375
- "required": true,
376
- "description": "Path of the service to execute",
377
- "schema": {
378
- "type": "string"
379
- }
380
- },
381
- {
382
- "name": "body",
383
- "summary": "Value",
384
- "required": false,
385
- "description": "Value to send",
386
- "schema": {
387
- "type": "object"
388
- }
389
- },
390
- {
391
- "name": "version",
392
- "summary": "API version",
393
- "required": false,
394
- "description": "API version to use",
395
- "schema": {
396
- "type": "string"
397
- }
398
- },
399
- {
400
- "name": "headers",
401
- "summary": "Headers",
402
- "required": false,
403
- "description": "Headers to send",
404
- "schema": {
405
- "type": "object"
406
- }
407
- },
408
- {
409
- "name": "OAUTH_CLIENT_ID",
410
- "summary": "OAuth client ID",
411
- "required": false,
412
- "description": "OAuth client ID",
413
- "schema": {
414
- "type": "string"
415
- }
416
- },
417
- {
418
- "name": "OAUTH_CLIENT_SECRET",
419
- "summary": "OAuth client secret",
420
- "required": false,
421
- "description": "OAuth client secret",
422
- "schema": {
423
- "type": "string"
424
- }
425
- },
426
- {
427
- "name": "TENANT_ID",
428
- "summary": "Tenant ID",
429
- "required": false,
430
- "description": "Tenant ID",
431
- "schema": {
432
- "type": "string"
433
- }
434
- },
435
- {
436
- "name": "type",
437
- "summary": "Output type",
438
- "required": false,
439
- "description": "Type of output expected from the service",
440
- "schema": {
441
- "type": "string"
442
- }
443
- },
444
- {
445
- "name": "contentType",
446
- "summary": "Content type",
447
- "required": false,
448
- "description": "Content type of the request",
449
- "schema": {
450
- "type": "string"
451
- }
452
- }
453
- ],
454
- "x-events": [],
455
- "responses": {
456
- "200": {
457
- "description": "Successful response",
458
- "content": {
459
- "application/json": {
460
- "schema": {
461
- "oneOf": [
462
- {
463
- "type": "object",
464
- "description": "JSON response from Microsoft Graph API"
465
- },
466
- {
467
- "type": "string",
468
- "description": "Text or base64 response from Microsoft Graph API"
655
+ ],
656
+ "x-events": [],
657
+ "responses": {
658
+ "200": {
659
+ "description": "Successful response",
660
+ "content": {
661
+ "application/json": {
662
+ "schema": {
663
+ "oneOf": [
664
+ {
665
+ "type": "object",
666
+ "description": "JSON response from Microsoft Graph API"
667
+ },
668
+ {
669
+ "type": "string",
670
+ "description": "Text or base64 response from Microsoft Graph API"
671
+ }
672
+ ]
673
+ }
469
674
  }
470
- ]
675
+ }
471
676
  }
472
- "id": "updated-resource-id",
473
- "displayName": "Updated Resource",
474
- "modifiedDateTime": "2023-01-02T00:00:00Z"
475
677
  }
476
678
  }
477
679
  }
478
- }
479
- }
480
- }
481
- },
482
- "/partialUpdate": {
483
- "post": {
484
- "tags": [
485
- "service"
486
- ],
487
- "summary": "Modifies part of a Microsoft resource",
488
- "parameters": [
489
- {
490
- "name": "path",
491
- "summary": "Service path",
492
- "required": true,
493
- "description": "Path of the service to execute",
494
- "schema": {
495
- "type": "string"
496
- }
497
- },
498
- {
499
- "name": "body",
500
- "summary": "Value",
501
- "required": false,
502
- "description": "Value to send",
503
- "schema": {
504
- "type": "object"
505
- }
506
- },
507
- {
508
- "name": "version",
509
- "summary": "API version",
510
- "required": false,
511
- "description": "API version to use",
512
- "schema": {
513
- "type": "string"
514
- }
515
- },
516
- {
517
- "name": "headers",
518
- "summary": "Headers",
519
- "required": false,
520
- "description": "Headers to send",
521
- "schema": {
522
- "type": "object"
523
- }
524
- },
525
- {
526
- "name": "OAUTH_CLIENT_ID",
527
- "summary": "OAuth client ID",
528
- "required": false,
529
- "description": "OAuth client ID",
530
- "schema": {
531
- "type": "string"
532
- }
533
- },
534
- {
535
- "name": "OAUTH_CLIENT_SECRET",
536
- "summary": "OAuth client secret",
537
- "required": false,
538
- "description": "OAuth client secret",
539
- "schema": {
540
- "type": "string"
541
- }
542
- },
543
- {
544
- "name": "TENANT_ID",
545
- "summary": "Tenant ID",
546
- "required": false,
547
- "description": "Tenant ID",
548
- "schema": {
549
- "type": "string"
550
- }
551
680
  },
552
- {
553
- "name": "type",
554
- "summary": "Output type",
555
- "required": false,
556
- "description": "Type of output expected from the service",
557
- "schema": {
558
- "type": "string"
559
- }
681
+ "components": {
682
+ "schemas": {}
560
683
  },
561
- {
562
- "name": "contentType",
563
- "summary": "Content type",
564
- "required": false,
565
- "description": "Content type of the request",
566
- "schema": {
567
- "type": "string"
568
- }
569
- }
570
- ],
571
- "x-events": [],
572
- "responses": {
573
- "200": {
574
- "description": "Successful response",
575
- "content": {
576
- "application/json": {
577
- "schema": {
578
- "oneOf": [
579
- {
580
- "type": "object",
581
- "description": "JSON response from Microsoft Graph API"
582
- },
583
- {
584
- "type": "string",
585
- "description": "Text or base64 response from Microsoft Graph API"
586
- }
587
- ]
588
- }
589
- "id": "partially-updated-resource-id",
590
- "displayName": "Partially Updated Resource",
591
- "updatedProperties": [
592
- "displayName",
593
- "description"
594
- ]
595
- }
596
- }
597
- }
598
- }
599
- }
600
- }
601
- },
602
- "/remove": {
603
- "post": {
604
- "tags": [
605
- "service"
606
- ],
607
- "summary": "Deletes a Microsoft resource",
608
- "parameters": [
609
- {
610
- "name": "path",
611
- "summary": "Service path",
612
- "required": true,
613
- "description": "Path of the service to execute",
614
- "schema": {
615
- "type": "string"
616
- }
617
- },
618
- {
619
- "name": "version",
620
- "summary": "API version",
621
- "required": false,
622
- "description": "API version to use",
623
- "schema": {
624
- "type": "string"
625
- }
626
- },
627
- {
628
- "name": "headers",
629
- "summary": "Headers",
630
- "required": false,
631
- "description": "Headers to send",
632
- "schema": {
633
- "type": "object"
634
- }
635
- },
636
- {
637
- "name": "OAUTH_CLIENT_ID",
638
- "summary": "OAuth client ID",
639
- "required": false,
640
- "description": "OAuth client ID",
641
- "schema": {
642
- "type": "string"
643
- }
644
- },
645
- {
646
- "name": "OAUTH_CLIENT_SECRET",
647
- "summary": "OAuth client secret",
648
- "required": false,
649
- "description": "OAuth client secret",
650
- "schema": {
651
- "type": "string"
652
- }
653
- },
654
- {
655
- "name": "TENANT_ID",
656
- "summary": "Tenant ID",
657
- "required": false,
658
- "description": "Tenant ID",
659
- "schema": {
660
- "type": "string"
661
- }
662
- },
663
- {
664
- "name": "type",
665
- "summary": "Output type",
666
- "required": false,
667
- "description": "Type of output expected from the service",
668
- "schema": {
669
- "type": "string"
670
- }
671
- },
672
- {
673
- "name": "contentType",
674
- "summary": "Content type",
675
- "required": false,
676
- "description": "Content type of the request",
677
- "schema": {
678
- "type": "string"
679
- }
680
- }
681
- ],
682
- "x-events": [],
683
- "responses": {
684
- "200": {
685
- "description": "Successful response",
686
- "content": {
687
- "application/json": {
688
- "schema": {
689
- "oneOf": [
690
- {
691
- "type": "object",
692
- "description": "JSON response from Microsoft Graph API"
693
- },
694
- {
695
- "type": "string",
696
- "description": "Text or base64 response from Microsoft Graph API"
697
- }
698
- ]
699
- }
700
- }
701
- }
702
- }
703
- }
704
- }
705
- }
706
- },
707
- "components": {
708
- "schemas": {}
709
- },
710
- "x-scene-blocks": {}
684
+ "x-scene-blocks": {}
711
685
  }