@epilot/cli 0.1.69 → 0.1.71
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 +1 -1
- package/definitions/access-token.json +18 -0
- package/definitions/blueprint-manifest.json +648 -11
- package/definitions/customer-portal.json +119 -0
- package/definitions/message.json +146 -1
- package/definitions/metering.json +6 -6
- package/definitions/targeting.json +291 -0
- package/definitions/user.json +146 -0
- package/definitions/webhooks.json +24 -12
- package/definitions/workflow-definition.json +282 -44
- package/definitions/workflow.json +12 -0
- package/dist/bin/epilot.js +6 -6
- package/dist/{chunk-HIU6WP36.js → chunk-HMUFGWB3.js} +15 -5
- package/dist/{completion-7FZ4RKFG.js → completion-L6M2AUJF.js} +1 -1
- package/dist/{upgrade-A3WU36B4.js → upgrade-ZLQXCBG5.js} +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -597,6 +597,12 @@
|
|
|
597
597
|
"description": "When true, the issued token may only perform read-only actions. Any action guarded by permissions that is not read-only (i.e. not a view/export/download action) is denied, regardless of the roles the token carries.",
|
|
598
598
|
"example": true
|
|
599
599
|
},
|
|
600
|
+
"Anonymize": {
|
|
601
|
+
"type": "boolean",
|
|
602
|
+
"default": false,
|
|
603
|
+
"description": "Forces PII anonymization on all entity data returned to this token. Cannot be disabled by the token bearer. See entity-api anonymized responses.",
|
|
604
|
+
"example": true
|
|
605
|
+
},
|
|
600
606
|
"AccessTokenParameters": {
|
|
601
607
|
"type": "object",
|
|
602
608
|
"additionalProperties": false,
|
|
@@ -618,6 +624,9 @@
|
|
|
618
624
|
},
|
|
619
625
|
"read_only": {
|
|
620
626
|
"$ref": "#/components/schemas/ReadOnly"
|
|
627
|
+
},
|
|
628
|
+
"anonymize": {
|
|
629
|
+
"$ref": "#/components/schemas/Anonymize"
|
|
621
630
|
}
|
|
622
631
|
},
|
|
623
632
|
"required": [
|
|
@@ -692,6 +701,9 @@
|
|
|
692
701
|
},
|
|
693
702
|
"read_only": {
|
|
694
703
|
"$ref": "#/components/schemas/ReadOnly"
|
|
704
|
+
},
|
|
705
|
+
"anonymize": {
|
|
706
|
+
"$ref": "#/components/schemas/Anonymize"
|
|
695
707
|
}
|
|
696
708
|
},
|
|
697
709
|
"required": [
|
|
@@ -719,6 +731,9 @@
|
|
|
719
731
|
},
|
|
720
732
|
"read_only": {
|
|
721
733
|
"$ref": "#/components/schemas/ReadOnly"
|
|
734
|
+
},
|
|
735
|
+
"anonymize": {
|
|
736
|
+
"$ref": "#/components/schemas/Anonymize"
|
|
722
737
|
}
|
|
723
738
|
},
|
|
724
739
|
"required": [
|
|
@@ -782,6 +797,9 @@
|
|
|
782
797
|
"read_only": {
|
|
783
798
|
"$ref": "#/components/schemas/ReadOnly"
|
|
784
799
|
},
|
|
800
|
+
"anonymize": {
|
|
801
|
+
"$ref": "#/components/schemas/Anonymize"
|
|
802
|
+
},
|
|
785
803
|
"last_used": {
|
|
786
804
|
"type": "string",
|
|
787
805
|
"format": "date",
|