Commit 6a68f08 1 parent 52f115a commit 6a68f08 Copy full SHA for 6a68f08
File tree 8 files changed +29
-9
lines changed
8 files changed +29
-9
lines changed Original file line number Diff line number Diff line change @@ -145,7 +145,7 @@ export class Client {
145
145
...this . config ,
146
146
...options ,
147
147
logFn : this . config . logFn || console . log ,
148
- userAgent : '@datocms/cma-client v3.3.2 ' ,
148
+ userAgent : '@datocms/cma-client' ,
149
149
baseUrl : this . baseUrl ,
150
150
preCallStack : new Error ( ) . stack ,
151
151
extraHeaders : {
Original file line number Diff line number Diff line change @@ -3360,7 +3360,7 @@ export type SitePlanAttributes = {
3360
3360
/**
3361
3361
* Maximum size (in bytes) for a record, including its block records
3362
3362
*/
3363
- item_byte_size : number ;
3363
+ item_size_bytes : number ;
3364
3364
/**
3365
3365
* Available extra packets
3366
3366
*/
@@ -10999,6 +10999,10 @@ export type SiteRelationships = {
10999
10999
* via the `definition` "meta".
11000
11000
*/
11001
11001
export type SiteMeta = {
11002
+ /**
11003
+ * Date of project creation
11004
+ */
11005
+ created_at : string ;
11002
11006
/**
11003
11007
* Whether the Improved API Timezone Management option is active or not
11004
11008
*/
Original file line number Diff line number Diff line change @@ -3758,7 +3758,7 @@ export type SitePlan = {
3758
3758
/**
3759
3759
* Maximum size (in bytes) for a record, including its block records
3760
3760
*/
3761
- item_byte_size : number ;
3761
+ item_size_bytes : number ;
3762
3762
/**
3763
3763
* Available extra packets
3764
3764
*/
@@ -3996,7 +3996,7 @@ export type SitePlanAttributes = {
3996
3996
/**
3997
3997
* Maximum size (in bytes) for a record, including its block records
3998
3998
*/
3999
- item_byte_size : number ;
3999
+ item_size_bytes : number ;
4000
4000
/**
4001
4001
* Available extra packets
4002
4002
*/
@@ -10566,6 +10566,10 @@ export type SiteUpdateAssetsCdnDefaultSettingsTargetSchema = Site;
10566
10566
* via the `definition` "meta".
10567
10567
*/
10568
10568
export type SiteMeta = {
10569
+ /**
10570
+ * Date of project creation
10571
+ */
10572
+ created_at : string ;
10569
10573
/**
10570
10574
* Whether the Improved API Timezone Management option is active or not
10571
10575
*/
Original file line number Diff line number Diff line change 55
55
" signup_to_newsletter" ,
56
56
" role_description" ,
57
57
" role_context" ,
58
- " acquisition_method"
58
+ " acquisition_method" ,
59
+ " latest_acquisition_method"
59
60
],
60
61
"relationships" : []
61
62
},
Original file line number Diff line number Diff line change @@ -114,7 +114,7 @@ export class Client {
114
114
...this . config ,
115
115
...options ,
116
116
logFn : this . config . logFn || console . log ,
117
- userAgent : '@datocms/dashboard-client v3.3.2 ' ,
117
+ userAgent : '@datocms/dashboard-client' ,
118
118
baseUrl : this . baseUrl ,
119
119
preCallStack : new Error ( ) . stack ,
120
120
extraHeaders : {
Original file line number Diff line number Diff line change @@ -939,6 +939,11 @@ export type AccountCreateSchema = {
939
939
medium : string ;
940
940
campaign ?: string ;
941
941
} ;
942
+ latest_acquisition_method ?: {
943
+ source : string ;
944
+ medium : string ;
945
+ campaign ?: string ;
946
+ } ;
942
947
} ;
943
948
} ;
944
949
} ;
@@ -2718,7 +2723,7 @@ export type SitePlanAttributes = {
2718
2723
/**
2719
2724
* Maximum size (in bytes) for a record, including its block records
2720
2725
*/
2721
- item_byte_size : number ;
2726
+ item_size_bytes : number ;
2722
2727
/**
2723
2728
* Available extra packets
2724
2729
*/
Original file line number Diff line number Diff line change @@ -1100,6 +1100,11 @@ export type AccountCreateSchema = {
1100
1100
medium : string ;
1101
1101
campaign ?: string ;
1102
1102
} ;
1103
+ latest_acquisition_method ?: {
1104
+ source : string ;
1105
+ medium : string ;
1106
+ campaign ?: string ;
1107
+ } ;
1103
1108
} ;
1104
1109
1105
1110
/**
@@ -2292,7 +2297,7 @@ export type SitePlan = {
2292
2297
/**
2293
2298
* Maximum size (in bytes) for a record, including its block records
2294
2299
*/
2295
- item_byte_size : number ;
2300
+ item_size_bytes : number ;
2296
2301
/**
2297
2302
* Available extra packets
2298
2303
*/
@@ -2519,7 +2524,7 @@ export type SitePlanAttributes = {
2519
2524
/**
2520
2525
* Maximum size (in bytes) for a record, including its block records
2521
2526
*/
2522
- item_byte_size : number ;
2527
+ item_size_bytes : number ;
2523
2528
/**
2524
2529
* Available extra packets
2525
2530
*/
Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ export default class Account extends BaseResource {
26
26
'role_description' ,
27
27
'role_context' ,
28
28
'acquisition_method' ,
29
+ 'latest_acquisition_method' ,
29
30
] ,
30
31
relationships : [ ] ,
31
32
} ) ,
You can’t perform that action at this time.
0 commit comments