@digipair/skill-microsoft 0.95.7 → 0.97.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 (3) hide show
  1. package/package.json +1 -1
  2. package/schema.fr.json +587 -425
  3. package/schema.json +588 -424
package/schema.json CHANGED
@@ -10,7 +10,9 @@
10
10
  "paths": {
11
11
  "/request": {
12
12
  "post": {
13
- "tags": ["service"],
13
+ "tags": [
14
+ "service"
15
+ ],
14
16
  "summary": "Executes a Microsoft service",
15
17
  "parameters": [
16
18
  {
@@ -104,444 +106,606 @@
104
106
  }
105
107
  }
106
108
  ],
107
- "x-events": []
108
- }
109
- },
110
- "/create": {
111
- "post": {
112
- "tags": ["service"],
113
- "summary": "Adds a Microsoft resource",
114
- "parameters": [
115
- {
116
- "name": "path",
117
- "summary": "Service path",
118
- "required": true,
119
- "description": "Path of the service to execute",
120
- "schema": {
121
- "type": "string"
122
- }
123
- },
124
- {
125
- "name": "body",
126
- "summary": "Value",
127
- "required": false,
128
- "description": "Value to send",
129
- "schema": {
130
- "type": "object"
131
- }
132
- },
133
- {
134
- "name": "version",
135
- "summary": "API version",
136
- "required": false,
137
- "description": "API version to use",
138
- "schema": {
139
- "type": "string"
140
- }
141
- },
142
- {
143
- "name": "headers",
144
- "summary": "Headers",
145
- "required": false,
146
- "description": "Headers to send",
147
- "schema": {
148
- "type": "object"
149
- }
150
- },
151
- {
152
- "name": "OAUTH_CLIENT_ID",
153
- "summary": "OAuth client ID",
154
- "required": false,
155
- "description": "OAuth client ID",
156
- "schema": {
157
- "type": "string"
158
- }
159
- },
160
- {
161
- "name": "OAUTH_CLIENT_SECRET",
162
- "summary": "OAuth client secret",
163
- "required": false,
164
- "description": "OAuth client secret",
165
- "schema": {
166
- "type": "string"
167
- }
168
- },
169
- {
170
- "name": "TENANT_ID",
171
- "summary": "Tenant ID",
172
- "required": false,
173
- "description": "Tenant ID",
174
- "schema": {
175
- "type": "string"
176
- }
177
- },
178
- {
179
- "name": "type",
180
- "summary": "Output type",
181
- "required": false,
182
- "description": "Type of output expected from the service",
183
- "schema": {
184
- "type": "string"
185
- }
186
- },
187
- {
188
- "name": "contentType",
189
- "summary": "Content type",
190
- "required": false,
191
- "description": "Content type of the request",
192
- "schema": {
193
- "type": "string"
109
+ "x-events": [],
110
+ "responses": {
111
+ "200": {
112
+ "description": "Successful response",
113
+ "content": {
114
+ "application/json": {
115
+ "schema": {
116
+ "oneOf": [
117
+ {
118
+ "type": "object",
119
+ "description": "JSON response from Microsoft Graph API"
120
+ },
121
+ {
122
+ "type": "string",
123
+ "description": "Text or base64 response from Microsoft Graph API"
124
+ }
125
+ ]
126
+ }
127
+ "id": "12345",
128
+ "displayName": "Sample Resource",
129
+ "createdDateTime": "2023-01-01T00:00:00Z"
130
+ }
194
131
  }
195
132
  }
196
- ],
197
- "x-events": []
133
+ }
198
134
  }
199
- },
200
- "/read": {
201
- "post": {
202
- "tags": ["service"],
203
- "summary": "Reads a Microsoft resource",
204
- "parameters": [
205
- {
206
- "name": "path",
207
- "summary": "Service path",
208
- "required": true,
209
- "description": "Path of the service to execute",
210
- "schema": {
211
- "type": "string"
212
- }
213
- },
214
- {
215
- "name": "version",
216
- "summary": "API version",
217
- "required": false,
218
- "description": "API version to use",
219
- "schema": {
220
- "type": "string"
221
- }
222
- },
223
- {
224
- "name": "headers",
225
- "summary": "Headers",
226
- "required": false,
227
- "description": "Headers to send",
228
- "schema": {
229
- "type": "object"
230
- }
231
- },
232
- {
233
- "name": "OAUTH_CLIENT_ID",
234
- "summary": "OAuth client ID",
235
- "required": false,
236
- "description": "OAuth client ID",
237
- "schema": {
238
- "type": "string"
239
- }
240
- },
241
- {
242
- "name": "OAUTH_CLIENT_SECRET",
243
- "summary": "OAuth client secret",
244
- "required": false,
245
- "description": "OAuth client secret",
246
- "schema": {
247
- "type": "string"
248
- }
249
- },
250
- {
251
- "name": "TENANT_ID",
252
- "summary": "Tenant ID",
253
- "required": false,
254
- "description": "Tenant ID",
255
- "schema": {
256
- "type": "string"
257
- }
258
- },
259
- {
260
- "name": "type",
261
- "summary": "Output type",
262
- "required": false,
263
- "description": "Type of output expected from the service",
264
- "schema": {
265
- "type": "string"
266
- }
267
- },
268
- {
269
- "name": "contentType",
270
- "summary": "Content type",
271
- "required": false,
272
- "description": "Content type of the request",
273
- "schema": {
274
- "type": "string"
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"
169
+ }
170
+ },
171
+ {
172
+ "name": "headers",
173
+ "summary": "Headers",
174
+ "required": false,
175
+ "description": "Headers to send",
176
+ "schema": {
177
+ "type": "object"
178
+ }
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"
187
+ }
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"
196
+ }
197
+ },
198
+ {
199
+ "name": "TENANT_ID",
200
+ "summary": "Tenant ID",
201
+ "required": false,
202
+ "description": "Tenant ID",
203
+ "schema": {
204
+ "type": "string"
205
+ }
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"
214
+ }
215
+ },
216
+ {
217
+ "name": "contentType",
218
+ "summary": "Content type",
219
+ "required": false,
220
+ "description": "Content type of the request",
221
+ "schema": {
222
+ "type": "string"
223
+ }
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
+ ]
243
+ }
244
+ "id": "created-resource-id",
245
+ "displayName": "Created Resource",
246
+ "status": "active"
275
247
  }
276
248
  }
277
- ],
278
- "x-events": []
249
+ }
279
250
  }
280
- },
281
- "/update": {
282
- "post": {
283
- "tags": ["service"],
284
- "summary": "Modifies a Microsoft resource",
285
- "parameters": [
286
- {
287
- "name": "path",
288
- "summary": "Service path",
289
- "required": true,
290
- "description": "Path of the service to execute",
291
- "schema": {
292
- "type": "string"
293
- }
294
- },
295
- {
296
- "name": "body",
297
- "summary": "Value",
298
- "required": false,
299
- "description": "Value to send",
300
- "schema": {
301
- "type": "object"
302
- }
303
- },
304
- {
305
- "name": "version",
306
- "summary": "API version",
307
- "required": false,
308
- "description": "API version to use",
309
- "schema": {
310
- "type": "string"
311
- }
312
- },
313
- {
314
- "name": "headers",
315
- "summary": "Headers",
316
- "required": false,
317
- "description": "Headers to send",
318
- "schema": {
319
- "type": "object"
320
- }
321
- },
322
- {
323
- "name": "OAUTH_CLIENT_ID",
324
- "summary": "OAuth client ID",
325
- "required": false,
326
- "description": "OAuth client ID",
327
- "schema": {
328
- "type": "string"
329
- }
330
- },
331
- {
332
- "name": "OAUTH_CLIENT_SECRET",
333
- "summary": "OAuth client secret",
334
- "required": false,
335
- "description": "OAuth client secret",
336
- "schema": {
337
- "type": "string"
338
- }
339
- },
340
- {
341
- "name": "TENANT_ID",
342
- "summary": "Tenant ID",
343
- "required": false,
344
- "description": "Tenant ID",
345
- "schema": {
346
- "type": "string"
347
- }
348
- },
349
- {
350
- "name": "type",
351
- "summary": "Output type",
352
- "required": false,
353
- "description": "Type of output expected from the service",
354
- "schema": {
355
- "type": "string"
356
- }
357
- },
358
- {
359
- "name": "contentType",
360
- "summary": "Content type",
361
- "required": false,
362
- "description": "Content type of the request",
363
- "schema": {
364
- "type": "string"
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
+ ]
351
+ }
352
+ "id": "resource-id",
353
+ "displayName": "Retrieved Resource",
354
+ "properties": {
355
+ "value1": "data1",
356
+ "value2": "data2"
365
357
  }
366
358
  }
367
- ],
368
- "x-events": []
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"
369
379
  }
370
380
  },
371
- "/partialUpdate": {
372
- "post": {
373
- "tags": ["service"],
374
- "summary": "Modifies part of a Microsoft resource",
375
- "parameters": [
376
- {
377
- "name": "path",
378
- "summary": "Service path",
379
- "required": true,
380
- "description": "Path of the service to execute",
381
- "schema": {
382
- "type": "string"
383
- }
384
- },
385
- {
386
- "name": "body",
387
- "summary": "Value",
388
- "required": false,
389
- "description": "Value to send",
390
- "schema": {
391
- "type": "object"
392
- }
393
- },
394
- {
395
- "name": "version",
396
- "summary": "API version",
397
- "required": false,
398
- "description": "API version to use",
399
- "schema": {
400
- "type": "string"
401
- }
402
- },
403
- {
404
- "name": "headers",
405
- "summary": "Headers",
406
- "required": false,
407
- "description": "Headers to send",
408
- "schema": {
409
- "type": "object"
410
- }
411
- },
412
- {
413
- "name": "OAUTH_CLIENT_ID",
414
- "summary": "OAuth client ID",
415
- "required": false,
416
- "description": "OAuth client ID",
417
- "schema": {
418
- "type": "string"
419
- }
420
- },
421
- {
422
- "name": "OAUTH_CLIENT_SECRET",
423
- "summary": "OAuth client secret",
424
- "required": false,
425
- "description": "OAuth client secret",
426
- "schema": {
427
- "type": "string"
428
- }
429
- },
430
- {
431
- "name": "TENANT_ID",
432
- "summary": "Tenant ID",
433
- "required": false,
434
- "description": "Tenant ID",
435
- "schema": {
436
- "type": "string"
437
- }
438
- },
439
- {
440
- "name": "type",
441
- "summary": "Output type",
442
- "required": false,
443
- "description": "Type of output expected from the service",
444
- "schema": {
445
- "type": "string"
446
- }
447
- },
448
- {
449
- "name": "contentType",
450
- "summary": "Content type",
451
- "required": false,
452
- "description": "Content type of the request",
453
- "schema": {
454
- "type": "string"
455
- }
456
- }
457
- ],
458
- "x-events": []
381
+ {
382
+ "name": "body",
383
+ "summary": "Value",
384
+ "required": false,
385
+ "description": "Value to send",
386
+ "schema": {
387
+ "type": "object"
459
388
  }
460
389
  },
461
- "/remove": {
462
- "post": {
463
- "tags": ["service"],
464
- "summary": "Deletes a Microsoft resource",
465
- "parameters": [
466
- {
467
- "name": "path",
468
- "summary": "Service path",
469
- "required": true,
470
- "description": "Path of the service to execute",
471
- "schema": {
472
- "type": "string"
473
- }
474
- },
475
- {
476
- "name": "version",
477
- "summary": "API version",
478
- "required": false,
479
- "description": "API version to use",
480
- "schema": {
481
- "type": "string"
482
- }
483
- },
484
- {
485
- "name": "headers",
486
- "summary": "Headers",
487
- "required": false,
488
- "description": "Headers to send",
489
- "schema": {
490
- "type": "object"
491
- }
492
- },
493
- {
494
- "name": "OAUTH_CLIENT_ID",
495
- "summary": "OAuth client ID",
496
- "required": false,
497
- "description": "OAuth client ID",
498
- "schema": {
499
- "type": "string"
500
- }
501
- },
502
- {
503
- "name": "OAUTH_CLIENT_SECRET",
504
- "summary": "OAuth client secret",
505
- "required": false,
506
- "description": "OAuth client secret",
507
- "schema": {
508
- "type": "string"
509
- }
510
- },
511
- {
512
- "name": "TENANT_ID",
513
- "summary": "Tenant ID",
514
- "required": false,
515
- "description": "Tenant ID",
516
- "schema": {
517
- "type": "string"
518
- }
519
- },
520
- {
521
- "name": "type",
522
- "summary": "Output type",
523
- "required": false,
524
- "description": "Type of output expected from the service",
525
- "schema": {
526
- "type": "string"
527
- }
528
- },
529
- {
530
- "name": "contentType",
531
- "summary": "Content type",
532
- "required": false,
533
- "description": "Content type of the request",
534
- "schema": {
535
- "type": "string"
536
- }
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"
469
+ }
470
+ ]
537
471
  }
538
- ],
539
- "x-events": []
472
+ "id": "updated-resource-id",
473
+ "displayName": "Updated Resource",
474
+ "modifiedDateTime": "2023-01-02T00:00:00Z"
475
+ }
540
476
  }
541
477
  }
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
+ }
542
551
  },
543
- "components": {
544
- "schemas": {}
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
+ }
545
560
  },
546
- "x-scene-blocks": {}
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
+ }
547
705
  }
706
+ },
707
+ "components": {
708
+ "schemas": {}
709
+ },
710
+ "x-scene-blocks": {}
711
+ }