@transcend-io/cli 5.7.2 → 6.2.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 (55) hide show
  1. package/CHANGELOG.md +56 -1
  2. package/README.md +2 -0
  3. package/build/codecs.d.ts +56 -48
  4. package/build/codecs.d.ts.map +1 -1
  5. package/build/codecs.js +11 -9
  6. package/build/codecs.js.map +1 -1
  7. package/build/constants.d.ts.map +1 -1
  8. package/build/constants.js +4 -0
  9. package/build/constants.js.map +1 -1
  10. package/build/enums.d.ts +3 -2
  11. package/build/enums.d.ts.map +1 -1
  12. package/build/enums.js +1 -0
  13. package/build/enums.js.map +1 -1
  14. package/build/graphql/fetchAllActionItemCollections.d.ts +1 -1
  15. package/build/graphql/fetchAllActionItemCollections.d.ts.map +1 -1
  16. package/build/graphql/fetchAllActionItems.d.ts +9 -0
  17. package/build/graphql/fetchAllActionItems.d.ts.map +1 -1
  18. package/build/graphql/fetchAllActionItems.js +0 -1
  19. package/build/graphql/fetchAllActionItems.js.map +1 -1
  20. package/build/graphql/fetchConsentManagerId.d.ts +6 -8
  21. package/build/graphql/fetchConsentManagerId.d.ts.map +1 -1
  22. package/build/graphql/fetchConsentManagerId.js +1 -27
  23. package/build/graphql/fetchConsentManagerId.js.map +1 -1
  24. package/build/graphql/gqls/actionItem.d.ts.map +1 -1
  25. package/build/graphql/gqls/actionItem.js +5 -0
  26. package/build/graphql/gqls/actionItem.js.map +1 -1
  27. package/build/graphql/gqls/actionItemCollection.js +1 -1
  28. package/build/graphql/gqls/consentManager.d.ts.map +1 -1
  29. package/build/graphql/gqls/consentManager.js +5 -2
  30. package/build/graphql/gqls/consentManager.js.map +1 -1
  31. package/build/graphql/index.d.ts +1 -0
  32. package/build/graphql/index.d.ts.map +1 -1
  33. package/build/graphql/index.js +1 -0
  34. package/build/graphql/index.js.map +1 -1
  35. package/build/graphql/pullTranscendConfiguration.d.ts.map +1 -1
  36. package/build/graphql/pullTranscendConfiguration.js +20 -16
  37. package/build/graphql/pullTranscendConfiguration.js.map +1 -1
  38. package/build/graphql/syncActionItemCollections.js +2 -2
  39. package/build/graphql/syncActionItemCollections.js.map +1 -1
  40. package/build/graphql/syncActionItems.d.ts +8 -1
  41. package/build/graphql/syncActionItems.d.ts.map +1 -1
  42. package/build/graphql/syncActionItems.js +72 -17
  43. package/build/graphql/syncActionItems.js.map +1 -1
  44. package/build/graphql/syncConfigurationToTranscend.d.ts.map +1 -1
  45. package/build/graphql/syncConfigurationToTranscend.js +31 -25
  46. package/build/graphql/syncConfigurationToTranscend.js.map +1 -1
  47. package/build/graphql/syncConsentManager.d.ts.map +1 -1
  48. package/build/graphql/syncConsentManager.js +14 -21
  49. package/build/graphql/syncConsentManager.js.map +1 -1
  50. package/build/graphql/syncPartitions.d.ts +26 -0
  51. package/build/graphql/syncPartitions.d.ts.map +1 -0
  52. package/build/graphql/syncPartitions.js +67 -0
  53. package/build/graphql/syncPartitions.js.map +1 -0
  54. package/build/tsbuildinfo +1 -1
  55. 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
- - [[5.0.0] - 2024-04-23](#500---2024-04-23)
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
- /** Name of purpose */
33935
- name: t.StringC;
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
- /** Name of purpose */
33940
- name: t.StringC;
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 ConsentPartition: t.IntersectionC<[t.TypeC<{
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 ConsentPartition = t.TypeOf<typeof ConsentPartition>;
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
- /** Name of purpose */
40125
- name: t.StringC;
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
- /** Name of purpose */
40130
- name: t.StringC;
40121
+ /** Slug of purpose */
40122
+ trackingType: t.StringC;
40131
40123
  }>>;
40132
40124
  /**
40133
40125
  * Browser languages that define this regional experience
@@ -46979,18 +46971,24 @@ export declare const ActionItemCollectionInput: t.IntersectionC<[t.TypeC<{
46979
46971
  /** The display title of the enricher */
46980
46972
  title: t.StringC;
46981
46973
  /** Locations where collection is shown */
46982
- 'visible-locations': t.ArrayC<t.KeyofC<{
46983
- CODE_SCANNING: unknown;
46984
- PRIVACY_REQUESTS_DASHBOARD: unknown;
46985
- DATA_MAPPING_DASHBOARD: unknown;
46986
- CONSENT_DASHBOARD: unknown;
46987
- PRIVACY_CENTER_SETTINGS: unknown;
46988
- ADMINISTRATION_SETTINGS: unknown;
46974
+ productLine: t.KeyofC<{
46975
+ DSR_AUTOMATION: unknown;
46976
+ DATA_INVENTORY: unknown;
46977
+ CONSENT_MANAGEMENT: unknown;
46978
+ PRIVACY_CENTER: unknown;
46979
+ ADMINISTRATION: unknown;
46989
46980
  ASSESSMENTS: unknown;
46990
46981
  PATHFINDER: unknown;
46991
- PROMPT_MANAGEMENT: unknown;
46982
+ PREFERENCE_MANAGEMENT: unknown;
46983
+ PROMPT_MANAGER: unknown;
46992
46984
  CONTRACT_SCANNING: unknown;
46993
- }>>;
46985
+ WEB_AUDITOR: unknown;
46986
+ SOMBRA: unknown;
46987
+ SILO_DISCOVERY: unknown;
46988
+ STRUCTURED_DISCOVERY: unknown;
46989
+ UNSTRUCTURED_DISCOVERY: unknown;
46990
+ DATA_LINEAGE: unknown;
46991
+ }>;
46994
46992
  }>, t.PartialC<{
46995
46993
  /** Description of collection */
46996
46994
  description: t.StringC;
@@ -47065,6 +47063,8 @@ export declare const ActionItemInput: t.IntersectionC<[t.TypeC<{
47065
47063
  HIGH: unknown;
47066
47064
  CRITICAL: unknown;
47067
47065
  }>;
47066
+ /** Customer experience action item key */
47067
+ customerExperienceActionItemId: t.StringC;
47068
47068
  /** Due date of the action item */
47069
47069
  dueDate: t.StringC;
47070
47070
  /** Whether action item has been resolved */
@@ -47163,6 +47163,8 @@ export declare const TranscendInput: t.PartialC<{
47163
47163
  HIGH: unknown;
47164
47164
  CRITICAL: unknown;
47165
47165
  }>;
47166
+ /** Customer experience action item key */
47167
+ customerExperienceActionItemId: t.StringC;
47166
47168
  /** Due date of the action item */
47167
47169
  dueDate: t.StringC;
47168
47170
  /** Whether action item has been resolved */
@@ -47199,18 +47201,24 @@ export declare const TranscendInput: t.PartialC<{
47199
47201
  /** The display title of the enricher */
47200
47202
  title: t.StringC;
47201
47203
  /** Locations where collection is shown */
47202
- 'visible-locations': t.ArrayC<t.KeyofC<{
47203
- CODE_SCANNING: unknown;
47204
- PRIVACY_REQUESTS_DASHBOARD: unknown;
47205
- DATA_MAPPING_DASHBOARD: unknown;
47206
- CONSENT_DASHBOARD: unknown;
47207
- PRIVACY_CENTER_SETTINGS: unknown;
47208
- ADMINISTRATION_SETTINGS: unknown;
47204
+ productLine: t.KeyofC<{
47205
+ DSR_AUTOMATION: unknown;
47206
+ DATA_INVENTORY: unknown;
47207
+ CONSENT_MANAGEMENT: unknown;
47208
+ PRIVACY_CENTER: unknown;
47209
+ ADMINISTRATION: unknown;
47209
47210
  ASSESSMENTS: unknown;
47210
47211
  PATHFINDER: unknown;
47211
- PROMPT_MANAGEMENT: unknown;
47212
+ PREFERENCE_MANAGEMENT: unknown;
47213
+ PROMPT_MANAGER: unknown;
47212
47214
  CONTRACT_SCANNING: unknown;
47213
- }>>;
47215
+ WEB_AUDITOR: unknown;
47216
+ SOMBRA: unknown;
47217
+ SILO_DISCOVERY: unknown;
47218
+ STRUCTURED_DISCOVERY: unknown;
47219
+ UNSTRUCTURED_DISCOVERY: unknown;
47220
+ DATA_LINEAGE: unknown;
47221
+ }>;
47214
47222
  }>, t.PartialC<{
47215
47223
  /** Description of collection */
47216
47224
  description: t.StringC;
@@ -80578,14 +80586,6 @@ export declare const TranscendInput: t.PartialC<{
80578
80586
  }>, t.StringC>;
80579
80587
  /** The consent manager domains in the instance */
80580
80588
  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
80589
  /** Key used to partition consent records */
80590
80590
  partition: t.StringC;
80591
80591
  /** Precedence of signals vs user input */
@@ -86059,13 +86059,13 @@ export declare const TranscendInput: t.PartialC<{
86059
86059
  }>;
86060
86060
  /** Purposes that can be opted out of in a particular experience */
86061
86061
  purposes: t.ArrayC<t.TypeC<{
86062
- /** Name of purpose */
86063
- name: t.StringC;
86062
+ /** Slug of purpose */
86063
+ trackingType: t.StringC;
86064
86064
  }>>;
86065
86065
  /** Purposes that are opted out by default in a particular experience */
86066
86066
  optedOutPurposes: t.ArrayC<t.TypeC<{
86067
- /** Name of purpose */
86068
- name: t.StringC;
86067
+ /** Slug of purpose */
86068
+ trackingType: t.StringC;
86069
86069
  }>>;
86070
86070
  /**
86071
86071
  * Browser languages that define this regional experience
@@ -87300,6 +87300,14 @@ export declare const TranscendInput: t.PartialC<{
87300
87300
  "sl-SL": t.StringC;
87301
87301
  }>;
87302
87302
  }>]>>;
87303
+ /** The full list of consent manager partitions (e.g. dev vs staging vs prod) */
87304
+ partitions: t.ArrayC<t.IntersectionC<[t.TypeC<{
87305
+ /** Name of partition */
87306
+ name: t.StringC;
87307
+ }>, t.PartialC<{
87308
+ /** Value of partition, cannot be pushed, can only be pulled */
87309
+ partition: t.StringC;
87310
+ }>]>>;
87303
87311
  }>;
87304
87312
  /** Type override */
87305
87313
  export type TranscendInput = t.TypeOf<typeof TranscendInput>;