@transcend-io/cli 5.7.1 → 6.0.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/CHANGELOG.md +56 -1
- package/README.md +2 -0
- package/build/codecs.d.ts +42 -50
- package/build/codecs.d.ts.map +1 -1
- package/build/codecs.js +16 -9
- package/build/codecs.js.map +1 -1
- package/build/constants.d.ts.map +1 -1
- package/build/constants.js +4 -0
- package/build/constants.js.map +1 -1
- package/build/enums.d.ts +3 -2
- package/build/enums.d.ts.map +1 -1
- package/build/enums.js +1 -0
- package/build/enums.js.map +1 -1
- package/build/graphql/fetchConsentManagerId.d.ts +6 -8
- package/build/graphql/fetchConsentManagerId.d.ts.map +1 -1
- package/build/graphql/fetchConsentManagerId.js +1 -27
- package/build/graphql/fetchConsentManagerId.js.map +1 -1
- package/build/graphql/gqls/consentManager.d.ts.map +1 -1
- package/build/graphql/gqls/consentManager.js +5 -2
- package/build/graphql/gqls/consentManager.js.map +1 -1
- package/build/graphql/index.d.ts +1 -0
- package/build/graphql/index.d.ts.map +1 -1
- package/build/graphql/index.js +1 -0
- package/build/graphql/index.js.map +1 -1
- package/build/graphql/pullTranscendConfiguration.d.ts.map +1 -1
- package/build/graphql/pullTranscendConfiguration.js +16 -13
- package/build/graphql/pullTranscendConfiguration.js.map +1 -1
- package/build/graphql/syncConfigurationToTranscend.d.ts.map +1 -1
- package/build/graphql/syncConfigurationToTranscend.js +7 -1
- package/build/graphql/syncConfigurationToTranscend.js.map +1 -1
- package/build/graphql/syncConsentManager.d.ts.map +1 -1
- package/build/graphql/syncConsentManager.js +14 -21
- package/build/graphql/syncConsentManager.js.map +1 -1
- package/build/graphql/syncPartitions.d.ts +26 -0
- package/build/graphql/syncPartitions.d.ts.map +1 -0
- package/build/graphql/syncPartitions.js +67 -0
- package/build/graphql/syncPartitions.js.map +1 -0
- package/build/tsbuildinfo +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -4,8 +4,10 @@
|
|
|
4
4
|
## Table of Contents
|
|
5
5
|
|
|
6
6
|
- [Changelog](#changelog)
|
|
7
|
-
- [[
|
|
7
|
+
- [[6.0.0] - 2024-09-03](#600---2024-09-03)
|
|
8
8
|
- [Changed](#changed)
|
|
9
|
+
- [[5.0.0] - 2024-04-23](#500---2024-04-23)
|
|
10
|
+
- [Changed](#changed-1)
|
|
9
11
|
|
|
10
12
|
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
|
|
11
13
|
|
|
@@ -16,6 +18,59 @@ All notable changes to the Transcend CLI tools will be documented in this file.
|
|
|
16
18
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
17
19
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
18
20
|
|
|
21
|
+
## [6.0.0] - 2024-09-03
|
|
22
|
+
|
|
23
|
+
### Changed
|
|
24
|
+
|
|
25
|
+
- Updates the shape of `transcend.yml` for the `consent-manager.experiences[0].purposes[*]`
|
|
26
|
+
|
|
27
|
+
Before:
|
|
28
|
+
|
|
29
|
+
```yml
|
|
30
|
+
consent-manager:
|
|
31
|
+
...
|
|
32
|
+
experiences:
|
|
33
|
+
- name: Unknown
|
|
34
|
+
...
|
|
35
|
+
purposes:
|
|
36
|
+
- name: Functional
|
|
37
|
+
- name: SaleOfInfo
|
|
38
|
+
optedOutPurposes:
|
|
39
|
+
- name: SaleOfInfo
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
After:
|
|
43
|
+
|
|
44
|
+
```yml
|
|
45
|
+
consent-manager:
|
|
46
|
+
...
|
|
47
|
+
experiences:
|
|
48
|
+
- name: Unknown
|
|
49
|
+
...
|
|
50
|
+
purposes:
|
|
51
|
+
- trackingType: Functional
|
|
52
|
+
- trackingType: SaleOfInfo
|
|
53
|
+
optedOutPurposes:
|
|
54
|
+
- trackingType: SaleOfInfo
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
- Updates the shape of `transcend.yml` for the `consent-manager.partitions` to be at top level `partitions`
|
|
58
|
+
|
|
59
|
+
Before:
|
|
60
|
+
|
|
61
|
+
```yml
|
|
62
|
+
consent-manager:
|
|
63
|
+
...
|
|
64
|
+
partitions:
|
|
65
|
+
- ...
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
After:
|
|
69
|
+
|
|
70
|
+
```yml
|
|
71
|
+
partitions: ...
|
|
72
|
+
```
|
|
73
|
+
|
|
19
74
|
## [5.0.0] - 2024-04-23
|
|
20
75
|
|
|
21
76
|
### Changed
|
package/README.md
CHANGED
|
@@ -380,6 +380,7 @@ The API key permissions for this command vary based on the value to the `resourc
|
|
|
380
380
|
| dataFlows | Consent Manager Data Flow definitions. | View Data Flows | false | [Consent Management -> Data Flows](https://app.transcend.io/consent-manager/data-flows/approved) |
|
|
381
381
|
| cookies | Consent Manager Cookie definitions. | View Data Flows | false | [Consent Management -> Cookies](https://app.transcend.io/consent-manager/cookies/approved) |
|
|
382
382
|
| consentManager | Consent Manager general settings, including domain list. | View Consent Manager | false | [Consent Management -> Developer Settings](https://app.transcend.io/consent-manager/developer-settings) |
|
|
383
|
+
| partitions | The partitions in the account (often representative of separate data controllers). | View Consent Manager | false | [Consent Management -> Developer Settings -> Advanced Settings](https://app.transcend.io/consent-manager/developer-settings/advanced-settings) |
|
|
383
384
|
| assessments | The Transcend assessments | View Assessments | false | [Assessments -> Browse](https://app.transcend.io/assessments/browse) |
|
|
384
385
|
| assessmentTemplates | The Transcend assessment templates | View Assessments | false | [Assessments -> Templates](https://app.transcend.io/assessments/templates) |
|
|
385
386
|
| prompts | The Transcend AI prompts | View Prompts | false | [Prompt Manager -> Browse](https://app.transcend.io/prompts/browse) |
|
|
@@ -585,6 +586,7 @@ The API key needs the following scopes when pushing the various resource types:
|
|
|
585
586
|
| dataFlows | Consent Manager Data Flow definitions. | Manage Data Flows | false | [Consent Management -> Data Flows](https://app.transcend.io/consent-manager/data-flows/approved) |
|
|
586
587
|
| cookies | Consent Manager Cookie definitions. | Manage Data Flows | false | [Consent Management -> Cookies](https://app.transcend.io/consent-manager/cookies/approved) |
|
|
587
588
|
| consentManager | Consent Manager general settings, including domain list. | Manage Consent Manager Developer Settings | false | [Consent Management -> Developer Settings](https://app.transcend.io/consent-manager/developer-settings) |
|
|
589
|
+
| partitions | The partitions in the account (often representative of separate data controllers). | Manage Consent Manager Developer Settings | false | [Consent Management -> Developer Settings -> Advanced Settings](https://app.transcend.io/consent-manager/developer-settings/advanced-settings) |
|
|
588
590
|
| assessments | The Transcend assessments | Manage Assessments | false | [Assessments -> Browse](https://app.transcend.io/assessments/browse) |
|
|
589
591
|
| assessmentTemplates | The Transcend assessment templates | Manage Assessments | false | [Assessments -> Templates](https://app.transcend.io/assessments/templates) |
|
|
590
592
|
| prompts | The Transcend AI prompts | View Prompts | false | [Prompt Manager -> Browse](https://app.transcend.io/prompts/browse) |
|
package/build/codecs.d.ts
CHANGED
|
@@ -33931,13 +33931,13 @@ export declare const ConsentManageExperienceInput: t.IntersectionC<[t.TypeC<{
|
|
|
33931
33931
|
}>;
|
|
33932
33932
|
/** Purposes that can be opted out of in a particular experience */
|
|
33933
33933
|
purposes: t.ArrayC<t.TypeC<{
|
|
33934
|
-
/**
|
|
33935
|
-
|
|
33934
|
+
/** Slug of purpose */
|
|
33935
|
+
trackingType: t.StringC;
|
|
33936
33936
|
}>>;
|
|
33937
33937
|
/** Purposes that are opted out by default in a particular experience */
|
|
33938
33938
|
optedOutPurposes: t.ArrayC<t.TypeC<{
|
|
33939
|
-
/**
|
|
33940
|
-
|
|
33939
|
+
/** Slug of purpose */
|
|
33940
|
+
trackingType: t.StringC;
|
|
33941
33941
|
}>>;
|
|
33942
33942
|
/**
|
|
33943
33943
|
* Browser languages that define this regional experience
|
|
@@ -34621,7 +34621,7 @@ export declare const ConsentManageExperienceInput: t.IntersectionC<[t.TypeC<{
|
|
|
34621
34621
|
}>]>;
|
|
34622
34622
|
/** Type override */
|
|
34623
34623
|
export type ConsentManageExperienceInput = t.TypeOf<typeof ConsentManageExperienceInput>;
|
|
34624
|
-
export declare const
|
|
34624
|
+
export declare const PartitionInput: t.IntersectionC<[t.TypeC<{
|
|
34625
34625
|
/** Name of partition */
|
|
34626
34626
|
name: t.StringC;
|
|
34627
34627
|
}>, t.PartialC<{
|
|
@@ -34629,7 +34629,7 @@ export declare const ConsentPartition: t.IntersectionC<[t.TypeC<{
|
|
|
34629
34629
|
partition: t.StringC;
|
|
34630
34630
|
}>]>;
|
|
34631
34631
|
/** Type override */
|
|
34632
|
-
export type
|
|
34632
|
+
export type PartitionInput = t.TypeOf<typeof PartitionInput>;
|
|
34633
34633
|
export declare const ConsentManagerInput: t.PartialC<{
|
|
34634
34634
|
/** Airgap version */
|
|
34635
34635
|
version: t.StringC;
|
|
@@ -34640,14 +34640,6 @@ export declare const ConsentManagerInput: t.PartialC<{
|
|
|
34640
34640
|
}>, t.StringC>;
|
|
34641
34641
|
/** The consent manager domains in the instance */
|
|
34642
34642
|
domains: t.ArrayC<t.StringC>;
|
|
34643
|
-
/** The full list of consent manager partitions (e.g. dev vs staging vs prod) */
|
|
34644
|
-
partitions: t.ArrayC<t.IntersectionC<[t.TypeC<{
|
|
34645
|
-
/** Name of partition */
|
|
34646
|
-
name: t.StringC;
|
|
34647
|
-
}>, t.PartialC<{
|
|
34648
|
-
/** Value of partition, cannot be pushed, can only be pulled */
|
|
34649
|
-
partition: t.StringC;
|
|
34650
|
-
}>]>>;
|
|
34651
34643
|
/** Key used to partition consent records */
|
|
34652
34644
|
partition: t.StringC;
|
|
34653
34645
|
/** Precedence of signals vs user input */
|
|
@@ -40121,13 +40113,13 @@ export declare const ConsentManagerInput: t.PartialC<{
|
|
|
40121
40113
|
}>;
|
|
40122
40114
|
/** Purposes that can be opted out of in a particular experience */
|
|
40123
40115
|
purposes: t.ArrayC<t.TypeC<{
|
|
40124
|
-
/**
|
|
40125
|
-
|
|
40116
|
+
/** Slug of purpose */
|
|
40117
|
+
trackingType: t.StringC;
|
|
40126
40118
|
}>>;
|
|
40127
40119
|
/** Purposes that are opted out by default in a particular experience */
|
|
40128
40120
|
optedOutPurposes: t.ArrayC<t.TypeC<{
|
|
40129
|
-
/**
|
|
40130
|
-
|
|
40121
|
+
/** Slug of purpose */
|
|
40122
|
+
trackingType: t.StringC;
|
|
40131
40123
|
}>>;
|
|
40132
40124
|
/**
|
|
40133
40125
|
* Browser languages that define this regional experience
|
|
@@ -41004,18 +40996,15 @@ export declare const PrivacyCenterInput: t.PartialC<{
|
|
|
41004
40996
|
/** Whether or not to transcend access requests from JSON to CSV */
|
|
41005
40997
|
transformAccessReportJsonToCsv: t.BooleanC;
|
|
41006
40998
|
/** The theme object of colors to display on the privacy center */
|
|
41007
|
-
theme: t.
|
|
41008
|
-
|
|
41009
|
-
colors: t.
|
|
41010
|
-
primary: unknown;
|
|
41011
|
-
secondary: unknown;
|
|
41012
|
-
}>, t.StringC>, t.PartialC<{
|
|
40999
|
+
theme: t.PartialC<{
|
|
41000
|
+
/** The theme colors */
|
|
41001
|
+
colors: t.PartialC<{
|
|
41013
41002
|
sidebarNavBg: t.StringC;
|
|
41014
41003
|
heroBg: t.StringC;
|
|
41015
41004
|
widgetBg: t.StringC;
|
|
41016
41005
|
textOnBg: t.StringC;
|
|
41017
41006
|
textLightOnBg: t.StringC;
|
|
41018
|
-
textOnPrimary: t.StringC;
|
|
41007
|
+
textOnPrimary: t.StringC;
|
|
41019
41008
|
textOnSidebar: t.StringC;
|
|
41020
41009
|
accentOnSidebar: t.StringC;
|
|
41021
41010
|
textOnHero: t.StringC;
|
|
@@ -41024,8 +41013,10 @@ export declare const PrivacyCenterInput: t.PartialC<{
|
|
|
41024
41013
|
tableOutline: t.StringC;
|
|
41025
41014
|
bgAccent: t.StringC;
|
|
41026
41015
|
error: t.StringC;
|
|
41027
|
-
|
|
41028
|
-
|
|
41016
|
+
primary: t.StringC;
|
|
41017
|
+
secondary: t.StringC;
|
|
41018
|
+
}>;
|
|
41019
|
+
/** Styles to apply to components */
|
|
41029
41020
|
componentStyles: t.PartialC<{
|
|
41030
41021
|
h1: t.StringC;
|
|
41031
41022
|
h2: t.StringC;
|
|
@@ -41040,6 +41031,7 @@ export declare const PrivacyCenterInput: t.PartialC<{
|
|
|
41040
41031
|
heroBackground: t.StringC;
|
|
41041
41032
|
takeControlConfirmation: t.StringC;
|
|
41042
41033
|
}>;
|
|
41034
|
+
/** Override styles */
|
|
41043
41035
|
textStyles: t.PartialC<{
|
|
41044
41036
|
fontFamilyHeader: t.IntersectionC<[t.TypeC<{
|
|
41045
41037
|
name: t.StringC;
|
|
@@ -41060,7 +41052,7 @@ export declare const PrivacyCenterInput: t.PartialC<{
|
|
|
41060
41052
|
}>>;
|
|
41061
41053
|
}>]>;
|
|
41062
41054
|
}>;
|
|
41063
|
-
}
|
|
41055
|
+
}>;
|
|
41064
41056
|
}>;
|
|
41065
41057
|
/** Type override */
|
|
41066
41058
|
export type PrivacyCenterInput = t.TypeOf<typeof PrivacyCenterInput>;
|
|
@@ -80578,14 +80570,6 @@ export declare const TranscendInput: t.PartialC<{
|
|
|
80578
80570
|
}>, t.StringC>;
|
|
80579
80571
|
/** The consent manager domains in the instance */
|
|
80580
80572
|
domains: t.ArrayC<t.StringC>;
|
|
80581
|
-
/** The full list of consent manager partitions (e.g. dev vs staging vs prod) */
|
|
80582
|
-
partitions: t.ArrayC<t.IntersectionC<[t.TypeC<{
|
|
80583
|
-
/** Name of partition */
|
|
80584
|
-
name: t.StringC;
|
|
80585
|
-
}>, t.PartialC<{
|
|
80586
|
-
/** Value of partition, cannot be pushed, can only be pulled */
|
|
80587
|
-
partition: t.StringC;
|
|
80588
|
-
}>]>>;
|
|
80589
80573
|
/** Key used to partition consent records */
|
|
80590
80574
|
partition: t.StringC;
|
|
80591
80575
|
/** Precedence of signals vs user input */
|
|
@@ -86059,13 +86043,13 @@ export declare const TranscendInput: t.PartialC<{
|
|
|
86059
86043
|
}>;
|
|
86060
86044
|
/** Purposes that can be opted out of in a particular experience */
|
|
86061
86045
|
purposes: t.ArrayC<t.TypeC<{
|
|
86062
|
-
/**
|
|
86063
|
-
|
|
86046
|
+
/** Slug of purpose */
|
|
86047
|
+
trackingType: t.StringC;
|
|
86064
86048
|
}>>;
|
|
86065
86049
|
/** Purposes that are opted out by default in a particular experience */
|
|
86066
86050
|
optedOutPurposes: t.ArrayC<t.TypeC<{
|
|
86067
|
-
/**
|
|
86068
|
-
|
|
86051
|
+
/** Slug of purpose */
|
|
86052
|
+
trackingType: t.StringC;
|
|
86069
86053
|
}>>;
|
|
86070
86054
|
/**
|
|
86071
86055
|
* Browser languages that define this regional experience
|
|
@@ -87076,18 +87060,15 @@ export declare const TranscendInput: t.PartialC<{
|
|
|
87076
87060
|
/** Whether or not to transcend access requests from JSON to CSV */
|
|
87077
87061
|
transformAccessReportJsonToCsv: t.BooleanC;
|
|
87078
87062
|
/** The theme object of colors to display on the privacy center */
|
|
87079
|
-
theme: t.
|
|
87080
|
-
|
|
87081
|
-
colors: t.
|
|
87082
|
-
primary: unknown;
|
|
87083
|
-
secondary: unknown;
|
|
87084
|
-
}>, t.StringC>, t.PartialC<{
|
|
87063
|
+
theme: t.PartialC<{
|
|
87064
|
+
/** The theme colors */
|
|
87065
|
+
colors: t.PartialC<{
|
|
87085
87066
|
sidebarNavBg: t.StringC;
|
|
87086
87067
|
heroBg: t.StringC;
|
|
87087
87068
|
widgetBg: t.StringC;
|
|
87088
87069
|
textOnBg: t.StringC;
|
|
87089
87070
|
textLightOnBg: t.StringC;
|
|
87090
|
-
textOnPrimary: t.StringC;
|
|
87071
|
+
textOnPrimary: t.StringC;
|
|
87091
87072
|
textOnSidebar: t.StringC;
|
|
87092
87073
|
accentOnSidebar: t.StringC;
|
|
87093
87074
|
textOnHero: t.StringC;
|
|
@@ -87096,8 +87077,10 @@ export declare const TranscendInput: t.PartialC<{
|
|
|
87096
87077
|
tableOutline: t.StringC;
|
|
87097
87078
|
bgAccent: t.StringC;
|
|
87098
87079
|
error: t.StringC;
|
|
87099
|
-
|
|
87100
|
-
|
|
87080
|
+
primary: t.StringC;
|
|
87081
|
+
secondary: t.StringC;
|
|
87082
|
+
}>;
|
|
87083
|
+
/** Styles to apply to components */
|
|
87101
87084
|
componentStyles: t.PartialC<{
|
|
87102
87085
|
h1: t.StringC;
|
|
87103
87086
|
h2: t.StringC;
|
|
@@ -87112,6 +87095,7 @@ export declare const TranscendInput: t.PartialC<{
|
|
|
87112
87095
|
heroBackground: t.StringC;
|
|
87113
87096
|
takeControlConfirmation: t.StringC;
|
|
87114
87097
|
}>;
|
|
87098
|
+
/** Override styles */
|
|
87115
87099
|
textStyles: t.PartialC<{
|
|
87116
87100
|
fontFamilyHeader: t.IntersectionC<[t.TypeC<{
|
|
87117
87101
|
name: t.StringC;
|
|
@@ -87132,7 +87116,7 @@ export declare const TranscendInput: t.PartialC<{
|
|
|
87132
87116
|
}>>;
|
|
87133
87117
|
}>]>;
|
|
87134
87118
|
}>;
|
|
87135
|
-
}
|
|
87119
|
+
}>;
|
|
87136
87120
|
}>;
|
|
87137
87121
|
/**
|
|
87138
87122
|
* The policies configuration
|
|
@@ -87300,6 +87284,14 @@ export declare const TranscendInput: t.PartialC<{
|
|
|
87300
87284
|
"sl-SL": t.StringC;
|
|
87301
87285
|
}>;
|
|
87302
87286
|
}>]>>;
|
|
87287
|
+
/** The full list of consent manager partitions (e.g. dev vs staging vs prod) */
|
|
87288
|
+
partitions: t.ArrayC<t.IntersectionC<[t.TypeC<{
|
|
87289
|
+
/** Name of partition */
|
|
87290
|
+
name: t.StringC;
|
|
87291
|
+
}>, t.PartialC<{
|
|
87292
|
+
/** Value of partition, cannot be pushed, can only be pulled */
|
|
87293
|
+
partition: t.StringC;
|
|
87294
|
+
}>]>>;
|
|
87303
87295
|
}>;
|
|
87304
87296
|
/** Type override */
|
|
87305
87297
|
export type TranscendInput = t.TypeOf<typeof TranscendInput>;
|