@perpetualsystems/connector-registry 202606.7.1 → 202606.9.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.
- package/dist/icons/google-workspace.svg +7 -0
- package/dist/manifest.json +151 -0
- package/package.json +1 -1
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<svg width="150" height="150" viewBox="0 0 150 150" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect width="150" height="150" rx="16" fill="#FFFFFF"/>
|
|
3
|
+
<path d="M75 68c-3.9 0-7 3.1-7 7s3.1 7 7 7 7-3.1 7-7-3.1-7-7-7z" fill="#4285F4"/>
|
|
4
|
+
<path d="M75 42C58.4 42 45 55.4 45 72c0 8.2 3.3 15.6 8.6 21l12.4-12.4c-2.1-2.1-3.4-5-3.4-8.2 0-6.2 5-11.2 11.2-11.2 3.2 0 6.1 1.3 8.2 3.4L94 52.6C88.6 47.3 81.2 42 75 42z" fill="#EA4335"/>
|
|
5
|
+
<path d="M53.6 94.6C47.3 88.6 42 81.2 42 75c0-3.9 1.3-7.5 3.4-10.4L33 52.6C27.3 58.4 24 64.8 24 72c0 16.6 13.4 30 30 30 6.2 0 11.6-1.9 16.4-5.1L58 84.5c-2.1 2.1-4.9 3.4-8 3.4-6.2 0-11.2-5-11.2-11.2 0-3.1 1.3-5.9 3.4-8.1l11.4-11.4z" fill="#34A853"/>
|
|
6
|
+
<path d="M96.4 55.4L84 67.8c2.1 2.1 3.4 5 3.4 8.2 0 6.2-5 11.2-11.2 11.2-3.2 0-6.1-1.3-8.2-3.4L55.6 97.4C60.4 100.6 67.8 102 75 102c16.6 0 30-13.4 30-30 0-7.2-2.5-13.8-8.6-16.6z" fill="#FBBC05"/>
|
|
7
|
+
</svg>
|
package/dist/manifest.json
CHANGED
|
@@ -384,6 +384,157 @@
|
|
|
384
384
|
"iconExt": "svg",
|
|
385
385
|
"description": "Consume messages from a GCP Pub/Sub subscription."
|
|
386
386
|
},
|
|
387
|
+
{
|
|
388
|
+
"kind": "google-workspace",
|
|
389
|
+
"displayName": "Google Workspace Audit",
|
|
390
|
+
"ecrImageUrl": "718287746078.dkr.ecr.us-east-2.amazonaws.com/perpetual-connectors/google-workspace:0.0.1",
|
|
391
|
+
"connectorType": "polling",
|
|
392
|
+
"settingsSchema": {
|
|
393
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
394
|
+
"type": "object",
|
|
395
|
+
"properties": {
|
|
396
|
+
"admin": {
|
|
397
|
+
"default": false,
|
|
398
|
+
"title": "Admin",
|
|
399
|
+
"description": "Admin console audit activity.",
|
|
400
|
+
"type": "boolean"
|
|
401
|
+
},
|
|
402
|
+
"calendar": {
|
|
403
|
+
"default": false,
|
|
404
|
+
"title": "Calendar",
|
|
405
|
+
"description": "Google Calendar audit activity.",
|
|
406
|
+
"type": "boolean"
|
|
407
|
+
},
|
|
408
|
+
"drive": {
|
|
409
|
+
"default": false,
|
|
410
|
+
"title": "Drive",
|
|
411
|
+
"description": "Google Drive audit activity.",
|
|
412
|
+
"type": "boolean"
|
|
413
|
+
},
|
|
414
|
+
"login": {
|
|
415
|
+
"default": false,
|
|
416
|
+
"title": "Login",
|
|
417
|
+
"description": "Login audit activity.",
|
|
418
|
+
"type": "boolean"
|
|
419
|
+
},
|
|
420
|
+
"token": {
|
|
421
|
+
"default": false,
|
|
422
|
+
"title": "Token",
|
|
423
|
+
"description": "OAuth token audit activity.",
|
|
424
|
+
"type": "boolean"
|
|
425
|
+
},
|
|
426
|
+
"groups": {
|
|
427
|
+
"default": false,
|
|
428
|
+
"title": "Groups",
|
|
429
|
+
"description": "Google Groups audit activity.",
|
|
430
|
+
"type": "boolean"
|
|
431
|
+
},
|
|
432
|
+
"gplus": {
|
|
433
|
+
"default": false,
|
|
434
|
+
"title": "Google+",
|
|
435
|
+
"description": "Google+ audit activity.",
|
|
436
|
+
"type": "boolean"
|
|
437
|
+
},
|
|
438
|
+
"mobile": {
|
|
439
|
+
"default": false,
|
|
440
|
+
"title": "Mobile",
|
|
441
|
+
"description": "Mobile device audit activity.",
|
|
442
|
+
"type": "boolean"
|
|
443
|
+
},
|
|
444
|
+
"rules": {
|
|
445
|
+
"default": false,
|
|
446
|
+
"title": "Rules",
|
|
447
|
+
"description": "Rules (DLP) audit activity.",
|
|
448
|
+
"type": "boolean"
|
|
449
|
+
},
|
|
450
|
+
"keep": {
|
|
451
|
+
"default": false,
|
|
452
|
+
"title": "Keep",
|
|
453
|
+
"description": "Google Keep audit activity.",
|
|
454
|
+
"type": "boolean"
|
|
455
|
+
},
|
|
456
|
+
"meet": {
|
|
457
|
+
"default": false,
|
|
458
|
+
"title": "Meet",
|
|
459
|
+
"description": "Google Meet audit activity.",
|
|
460
|
+
"type": "boolean"
|
|
461
|
+
},
|
|
462
|
+
"groupsEnterprise": {
|
|
463
|
+
"default": false,
|
|
464
|
+
"title": "Enterprise Groups",
|
|
465
|
+
"description": "Enterprise Groups audit activity.",
|
|
466
|
+
"type": "boolean"
|
|
467
|
+
},
|
|
468
|
+
"dataStudio": {
|
|
469
|
+
"default": false,
|
|
470
|
+
"title": "Data Studio",
|
|
471
|
+
"description": "Data Studio audit activity.",
|
|
472
|
+
"type": "boolean"
|
|
473
|
+
},
|
|
474
|
+
"saml": {
|
|
475
|
+
"default": false,
|
|
476
|
+
"title": "SAML",
|
|
477
|
+
"description": "SAML audit activity.",
|
|
478
|
+
"type": "boolean"
|
|
479
|
+
},
|
|
480
|
+
"chat": {
|
|
481
|
+
"default": false,
|
|
482
|
+
"title": "Chat",
|
|
483
|
+
"description": "Google Chat audit activity.",
|
|
484
|
+
"type": "boolean"
|
|
485
|
+
}
|
|
486
|
+
},
|
|
487
|
+
"required": [
|
|
488
|
+
"admin",
|
|
489
|
+
"calendar",
|
|
490
|
+
"drive",
|
|
491
|
+
"login",
|
|
492
|
+
"token",
|
|
493
|
+
"groups",
|
|
494
|
+
"gplus",
|
|
495
|
+
"mobile",
|
|
496
|
+
"rules",
|
|
497
|
+
"keep",
|
|
498
|
+
"meet",
|
|
499
|
+
"groupsEnterprise",
|
|
500
|
+
"dataStudio",
|
|
501
|
+
"saml",
|
|
502
|
+
"chat"
|
|
503
|
+
],
|
|
504
|
+
"additionalProperties": false
|
|
505
|
+
},
|
|
506
|
+
"credentials": [
|
|
507
|
+
{
|
|
508
|
+
"id": "api",
|
|
509
|
+
"label": "Google Workspace admin OAuth",
|
|
510
|
+
"required": true,
|
|
511
|
+
"acceptedCredentialTypes": [
|
|
512
|
+
"OAuth2ClientCredentials"
|
|
513
|
+
],
|
|
514
|
+
"credentialSchema": {
|
|
515
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
516
|
+
"type": "object",
|
|
517
|
+
"properties": {
|
|
518
|
+
"type": {
|
|
519
|
+
"type": "string",
|
|
520
|
+
"const": "OAuth2ClientCredentials"
|
|
521
|
+
},
|
|
522
|
+
"accessToken": {
|
|
523
|
+
"type": "string",
|
|
524
|
+
"minLength": 1
|
|
525
|
+
}
|
|
526
|
+
},
|
|
527
|
+
"required": [
|
|
528
|
+
"type",
|
|
529
|
+
"accessToken"
|
|
530
|
+
],
|
|
531
|
+
"additionalProperties": false
|
|
532
|
+
}
|
|
533
|
+
}
|
|
534
|
+
],
|
|
535
|
+
"iconExt": "svg",
|
|
536
|
+
"description": "Polls Google Workspace audit logs from the Admin SDK Reports API for multiple Workspace apps in one connector."
|
|
537
|
+
},
|
|
387
538
|
{
|
|
388
539
|
"kind": "office-365-audit",
|
|
389
540
|
"displayName": "Microsoft Office 365 Audit",
|