You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -3597,6 +3619,28 @@ export type AccessTokenAttributes = {
3597
3619
*/
3598
3620
can_access_cma: boolean;
3599
3621
hardcoded_type: null|string;
3622
+
/**
3623
+
* When this API token was last used to access the Content Management API
3624
+
*/
3625
+
last_cma_access:
3626
+
|'today'
3627
+
|'yesterday'
3628
+
|'this_week'
3629
+
|'last_week'
3630
+
|'this_month'
3631
+
|'last_month'
3632
+
|'never';
3633
+
/**
3634
+
* When this API token was last used to access the Content Delivery API
3635
+
*/
3636
+
last_cda_access:
3637
+
|'today'
3638
+
|'yesterday'
3639
+
|'this_week'
3640
+
|'last_week'
3641
+
|'this_month'
3642
+
|'last_month'
3643
+
|'never';
3600
3644
};
3601
3645
/**
3602
3646
* JSON API links
@@ -7044,7 +7088,7 @@ export type Plugin = {
7044
7088
*/
7045
7089
url: string;
7046
7090
/**
7047
-
* Global plugin configuration. Plugins can persist whatever information they want in this object to reuse it later.
7091
+
* Global plugin configuration. Plugins can persist whatever information they want in this object to reuse it later. Refer to the CMA for details about technical limits.
7048
7092
*/
7049
7093
parameters: {
7050
7094
[k: string]: unknown;
@@ -7145,7 +7189,7 @@ export type PluginAttributes = {
7145
7189
*/
7146
7190
url: string;
7147
7191
/**
7148
-
* Global plugin configuration. Plugins can persist whatever information they want in this object to reuse it later.
7192
+
* Global plugin configuration. Plugins can persist whatever information they want in this object to reuse it later. Refer to the CMA for details about technical limits.
7149
7193
*/
7150
7194
parameters: {
7151
7195
[k: string]: unknown;
@@ -7277,7 +7321,7 @@ export type PluginUpdateSchema = {
7277
7321
*/
7278
7322
url?: string;
7279
7323
/**
7280
-
* Global plugin configuration. Plugins can persist whatever information they want in this object to reuse it later.
7324
+
* Global plugin configuration. Plugins can persist whatever information they want in this object to reuse it later. Refer to the CMA for details about technical limits.
7281
7325
*/
7282
7326
parameters?: {
7283
7327
[k: string]: unknown;
@@ -9768,7 +9812,7 @@ export type BuildTrigger = {
Copy file name to clipboardExpand all lines: packages/cma-client/src/generated/RawApiTypes.ts
+27-17Lines changed: 27 additions & 17 deletions
Original file line number
Diff line number
Diff line change
@@ -3051,6 +3051,28 @@ export type AccessTokenAttributes = {
3051
3051
*/
3052
3052
can_access_cma: boolean;
3053
3053
hardcoded_type: null|string;
3054
+
/**
3055
+
* When this API token was last used to access the Content Management API
3056
+
*/
3057
+
last_cma_access:
3058
+
|'today'
3059
+
|'yesterday'
3060
+
|'this_week'
3061
+
|'last_week'
3062
+
|'this_month'
3063
+
|'last_month'
3064
+
|'never';
3065
+
/**
3066
+
* When this API token was last used to access the Content Delivery API
3067
+
*/
3068
+
last_cda_access:
3069
+
|'today'
3070
+
|'yesterday'
3071
+
|'this_week'
3072
+
|'last_week'
3073
+
|'this_month'
3074
+
|'last_month'
3075
+
|'never';
3054
3076
};
3055
3077
/**
3056
3078
* JSON API links
@@ -6750,7 +6772,7 @@ export type PluginAttributes = {
6750
6772
*/
6751
6773
url: string;
6752
6774
/**
6753
-
* Global plugin configuration. Plugins can persist whatever information they want in this object to reuse it later.
6775
+
* Global plugin configuration. Plugins can persist whatever information they want in this object to reuse it later. Refer to the CMA for details about technical limits.
6754
6776
*/
6755
6777
parameters: {
6756
6778
[k: string]: unknown;
@@ -6917,7 +6939,7 @@ export type PluginUpdateSchema = {
6917
6939
*/
6918
6940
url?: string;
6919
6941
/**
6920
-
* Global plugin configuration. Plugins can persist whatever information they want in this object to reuse it later.
6942
+
* Global plugin configuration. Plugins can persist whatever information they want in this object to reuse it later. Refer to the CMA for details about technical limits.
6921
6943
*/
6922
6944
parameters?: {
6923
6945
[k: string]: unknown;
@@ -9900,7 +9922,7 @@ export type BuildTriggerAttributes = {
0 commit comments