@transcend-io/cli 4.131.0 → 4.132.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.
package/README.md CHANGED
@@ -355,6 +355,7 @@ The API key permissions for this command vary based on the value to the `resourc
355
355
  | templates | Email templates. Only template titles can be created and mapped to other resources. | View Email Templates | true | [DSR Automation -> Email Templates](https://app.transcend.io/privacy-requests/email-templates) |
356
356
  | dataSilos | The Data Silo/Integration definitions. | View Data Map,View Data Subject Request Settings | true | [Data Inventory -> Data Silos](https://app.transcend.io/data-map/data-inventory/) and [Infrastucture -> Integrations](https://app.transcend.io/infrastructure/integrationsdata-silos) |
357
357
  | enrichers | The Privacy Request enricher configurations. | View Identity Verification Settings | true | [DSR Automation -> Identifiers](https://app.transcend.io/privacy-requests/identifiers) |
358
+ | teams | Team definitions of users and scope groupings | View Scopes | false | [Administration -> Teams](https://app.transcend.io/admin/teams) |
358
359
  | businessEntities | The business entities in the data inventory. | View Data Inventory | false | [Data Inventory -> Business Entities](https://app.transcend.io/data-map/data-inventory/business-entities) |
359
360
  | identifiers | The Privacy Request identifier configurations. | View Identity Verification Settings | false | [DSR Automation -> Identifiers](https://app.transcend.io/privacy-requests/identifiers) |
360
361
  | actions | The Privacy Request action settings. | View Data Subject Request Settings | false | [DSR Automation -> Request Settings](https://app.transcend.io/privacy-requests/settings) |
@@ -548,6 +549,7 @@ The API key needs the following scopes when pushing the various resource types:
548
549
  | templates | Email templates. Only template titles can be created and mapped to other resources. | Manage Email Templates | true | [DSR Automation -> Email Templates](https://app.transcend.io/privacy-requests/email-templates) |
549
550
  | dataSilos | The Data Silo/Integration definitions. | Manage Data Map,Connect Data Silos | true | [Data Inventory -> Data Silos](https://app.transcend.io/data-map/data-inventory/) and [Infrastucture -> Integrations](https://app.transcend.io/infrastructure/integrationsdata-silos) |
550
551
  | enrichers | The Privacy Request enricher configurations. | Manage Request Identity Verification | true | [DSR Automation -> Identifiers](https://app.transcend.io/privacy-requests/identifiers) |
552
+ | teams | The team definitions containing scopes and users | Manage Access Control | false | [Administration -> Teams](https://app.transcend.io/admin/teams) |
551
553
  | businessEntities | The business entities in the data inventory. | Manage Data Inventory | false | [Data Inventory -> Business Entities](https://app.transcend.io/data-map/data-inventory/business-entities) |
552
554
  | identifiers | The Privacy Request identifier configurations. | Manage Request Identity Verification | false | [DSR Automation -> Identifiers](https://app.transcend.io/privacy-requests/identifiers) |
553
555
  | actions | The Privacy Request action settings. | Manage Data Subject Request Settings | false | [DSR Automation -> Request Settings](https://app.transcend.io/privacy-requests/settings) |
package/build/codecs.d.ts CHANGED
@@ -36,6 +36,113 @@ export declare const ApiKeyInput: t.TypeC<{
36
36
  }>;
37
37
  /** Type override */
38
38
  export type ApiKeyInput = t.TypeOf<typeof ApiKeyInput>;
39
+ /**
40
+ * Input to define teams in Transcend
41
+ * Users belong to teams and teams can be assigned to various resources
42
+ *
43
+ * @see https://docs.transcend.io/docs/security/access-control
44
+ */
45
+ export declare const TeamInput: t.IntersectionC<[t.TypeC<{
46
+ /** The display name of the team */
47
+ name: t.StringC;
48
+ /** Team description */
49
+ description: t.StringC;
50
+ }>, t.PartialC<{
51
+ /** SSO department for automated provisioning */
52
+ 'sso-department': t.StringC;
53
+ /** SSO group name for automated provisioning */
54
+ 'sso-group': t.StringC;
55
+ /** SSO title mapping for automated provisioning */
56
+ 'sso-title': t.StringC;
57
+ /** List of user emails on the team */
58
+ users: t.ArrayC<t.StringC>;
59
+ /** List of scopes that the team should have */
60
+ scopes: t.ArrayC<t.KeyofC<{
61
+ readOnly: unknown;
62
+ fullAdmin: unknown;
63
+ makeDataSubjectRequest: unknown;
64
+ connectDataSilos: unknown;
65
+ deployPrivacyCenter: unknown;
66
+ manageConsentManager: unknown;
67
+ viewConsentManager: unknown;
68
+ manageConsentManagerDisplaySettings: unknown;
69
+ manageConsentManagerDeveloperSettings: unknown;
70
+ manageDataFlow: unknown;
71
+ deployConsentManager: unknown;
72
+ deployTestConsentManager: unknown;
73
+ viewCustomerDataDataMapping: unknown;
74
+ viewCustomerDataPrivacyRequests: unknown;
75
+ manageAccessControl: unknown;
76
+ manageApiKeys: unknown;
77
+ manageBilling: unknown;
78
+ manageDataMap: unknown;
79
+ managedAssignedIntegrations: unknown;
80
+ managedAssignedDataInventory: unknown;
81
+ managedAssignedConsentManager: unknown;
82
+ managedAssignedRequests: unknown;
83
+ viewAssignedIntegrations: unknown;
84
+ viewAssignedDataInventory: unknown;
85
+ viewAssignedConsentManager: unknown;
86
+ viewAssignedRequests: unknown;
87
+ manageDataSubjectRequestSettings: unknown;
88
+ manageEmailTemplates: unknown;
89
+ manageOrganizationInfo: unknown;
90
+ managePrivacyCenter: unknown;
91
+ viewPrivacyCenter: unknown;
92
+ manageLegalHold: unknown;
93
+ manageRequestCompilation: unknown;
94
+ manageRequestIdentities: unknown;
95
+ manageRequestSecurity: unknown;
96
+ manageSombraRootKeys: unknown;
97
+ manageSSO: unknown;
98
+ manageEmailDomains: unknown;
99
+ requestApproval: unknown;
100
+ viewApiKeys: unknown;
101
+ viewDataFlow: unknown;
102
+ viewDataMap: unknown;
103
+ viewLegalHold: unknown;
104
+ viewDataSubjectRequestSettings: unknown;
105
+ viewEmailTemplates: unknown;
106
+ viewEmailDomains: unknown;
107
+ viewRequestCompilation: unknown;
108
+ viewRequestIdentitySettings: unknown;
109
+ viewRequests: unknown;
110
+ viewScopes: unknown;
111
+ viewSSO: unknown;
112
+ viewEmployees: unknown;
113
+ viewOptOutStatus: unknown;
114
+ viewDataInventory: unknown;
115
+ manageDataInventory: unknown;
116
+ manageGlobalAttributes: unknown;
117
+ viewGlobalAttributes: unknown;
118
+ viewAssessments: unknown;
119
+ manageAssessments: unknown;
120
+ viewAssignedAssessments: unknown;
121
+ manageAssignedAssessments: unknown;
122
+ approveAssessments: unknown;
123
+ managePrompts: unknown;
124
+ managePromptRuns: unknown;
125
+ executePrompt: unknown;
126
+ viewPromptRuns: unknown;
127
+ viewPrompts: unknown;
128
+ approvePrompts: unknown;
129
+ manageAuditor: unknown;
130
+ executeAuditor: unknown;
131
+ viewCodeScanning: unknown;
132
+ manageCodeScanning: unknown;
133
+ viewPathfinder: unknown;
134
+ managePathfinder: unknown;
135
+ viewContractScanning: unknown;
136
+ manageContractScanning: unknown;
137
+ viewAuditorRuns: unknown;
138
+ viewAuditEvents: unknown;
139
+ manageActionItemCollections: unknown;
140
+ viewManagedConsentDatabaseAdminApi: unknown;
141
+ manageStoredPreferences: unknown;
142
+ }>>;
143
+ }>]>;
144
+ /** Type override */
145
+ export type TeamInput = t.TypeOf<typeof TeamInput>;
39
146
  /**
40
147
  * Input to define an enricher
41
148
  *
@@ -46419,6 +46526,106 @@ export declare const TranscendInput: t.PartialC<{
46419
46526
  /** The display title of the enricher */
46420
46527
  title: t.StringC;
46421
46528
  }>>;
46529
+ /** Team definitions */
46530
+ teams: t.ArrayC<t.IntersectionC<[t.TypeC<{
46531
+ /** The display name of the team */
46532
+ name: t.StringC;
46533
+ /** Team description */
46534
+ description: t.StringC;
46535
+ }>, t.PartialC<{
46536
+ /** SSO department for automated provisioning */
46537
+ 'sso-department': t.StringC;
46538
+ /** SSO group name for automated provisioning */
46539
+ 'sso-group': t.StringC;
46540
+ /** SSO title mapping for automated provisioning */
46541
+ 'sso-title': t.StringC;
46542
+ /** List of user emails on the team */
46543
+ users: t.ArrayC<t.StringC>;
46544
+ /** List of scopes that the team should have */
46545
+ scopes: t.ArrayC<t.KeyofC<{
46546
+ readOnly: unknown;
46547
+ fullAdmin: unknown;
46548
+ makeDataSubjectRequest: unknown;
46549
+ connectDataSilos: unknown;
46550
+ deployPrivacyCenter: unknown;
46551
+ manageConsentManager: unknown;
46552
+ viewConsentManager: unknown;
46553
+ manageConsentManagerDisplaySettings: unknown;
46554
+ manageConsentManagerDeveloperSettings: unknown;
46555
+ manageDataFlow: unknown;
46556
+ deployConsentManager: unknown;
46557
+ deployTestConsentManager: unknown;
46558
+ viewCustomerDataDataMapping: unknown;
46559
+ viewCustomerDataPrivacyRequests: unknown;
46560
+ manageAccessControl: unknown;
46561
+ manageApiKeys: unknown;
46562
+ manageBilling: unknown;
46563
+ manageDataMap: unknown;
46564
+ managedAssignedIntegrations: unknown;
46565
+ managedAssignedDataInventory: unknown;
46566
+ managedAssignedConsentManager: unknown;
46567
+ managedAssignedRequests: unknown;
46568
+ viewAssignedIntegrations: unknown;
46569
+ viewAssignedDataInventory: unknown;
46570
+ viewAssignedConsentManager: unknown;
46571
+ viewAssignedRequests: unknown;
46572
+ manageDataSubjectRequestSettings: unknown;
46573
+ manageEmailTemplates: unknown;
46574
+ manageOrganizationInfo: unknown;
46575
+ managePrivacyCenter: unknown;
46576
+ viewPrivacyCenter: unknown;
46577
+ manageLegalHold: unknown;
46578
+ manageRequestCompilation: unknown;
46579
+ manageRequestIdentities: unknown;
46580
+ manageRequestSecurity: unknown;
46581
+ manageSombraRootKeys: unknown;
46582
+ manageSSO: unknown;
46583
+ manageEmailDomains: unknown;
46584
+ requestApproval: unknown;
46585
+ viewApiKeys: unknown;
46586
+ viewDataFlow: unknown;
46587
+ viewDataMap: unknown;
46588
+ viewLegalHold: unknown;
46589
+ viewDataSubjectRequestSettings: unknown;
46590
+ viewEmailTemplates: unknown;
46591
+ viewEmailDomains: unknown;
46592
+ viewRequestCompilation: unknown;
46593
+ viewRequestIdentitySettings: unknown;
46594
+ viewRequests: unknown;
46595
+ viewScopes: unknown;
46596
+ viewSSO: unknown;
46597
+ viewEmployees: unknown;
46598
+ viewOptOutStatus: unknown;
46599
+ viewDataInventory: unknown;
46600
+ manageDataInventory: unknown;
46601
+ manageGlobalAttributes: unknown;
46602
+ viewGlobalAttributes: unknown;
46603
+ viewAssessments: unknown;
46604
+ manageAssessments: unknown;
46605
+ viewAssignedAssessments: unknown;
46606
+ manageAssignedAssessments: unknown;
46607
+ approveAssessments: unknown;
46608
+ managePrompts: unknown;
46609
+ managePromptRuns: unknown;
46610
+ executePrompt: unknown;
46611
+ viewPromptRuns: unknown;
46612
+ viewPrompts: unknown;
46613
+ approvePrompts: unknown;
46614
+ manageAuditor: unknown;
46615
+ executeAuditor: unknown;
46616
+ viewCodeScanning: unknown;
46617
+ manageCodeScanning: unknown;
46618
+ viewPathfinder: unknown;
46619
+ managePathfinder: unknown;
46620
+ viewContractScanning: unknown;
46621
+ manageContractScanning: unknown;
46622
+ viewAuditorRuns: unknown;
46623
+ viewAuditEvents: unknown;
46624
+ manageActionItemCollections: unknown;
46625
+ viewManagedConsentDatabaseAdminApi: unknown;
46626
+ manageStoredPreferences: unknown;
46627
+ }>>;
46628
+ }>]>>;
46422
46629
  /**
46423
46630
  * Email template definitions
46424
46631
  */