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
* This interface was referenced by `Organization`'s JSON-Schema
335
-
* via the `definition` "identity".
336
-
*
337
-
* This interface was referenced by `Organization`'s JSON-Schema
338
-
* via the `definition` "id".
339
-
*/
340
-
exporttypeOrganizationIdentity=string;
341
-
/**
342
-
* This interface was referenced by `Organization`'s JSON-Schema
343
-
* via the `definition` "type".
344
-
*/
345
-
exporttypeOrganizationType='organization';
346
351
/**
347
352
* ID of plan
348
353
*
@@ -3801,6 +3806,42 @@ export type AccountAttributes = {
3801
3806
*/
3802
3807
company: string|null;
3803
3808
};
3809
+
/**
3810
+
* DatoCMS organization
3811
+
*
3812
+
* This interface was referenced by `DatoApi`'s JSON-Schema
3813
+
* via the `definition` "organization".
3814
+
*/
3815
+
exporttypeOrganization={
3816
+
id: OrganizationIdentity;
3817
+
type: OrganizationType;
3818
+
/**
3819
+
* Name of the organization
3820
+
*/
3821
+
name: string;
3822
+
};
3823
+
/**
3824
+
* JSON API data
3825
+
*
3826
+
* This interface was referenced by `Organization`'s JSON-Schema
3827
+
* via the `definition` "data".
3828
+
*/
3829
+
exporttypeOrganizationData={
3830
+
type: OrganizationType;
3831
+
id: OrganizationIdentity;
3832
+
};
3833
+
/**
3834
+
* JSON API attributes
3835
+
*
3836
+
* This interface was referenced by `Organization`'s JSON-Schema
3837
+
* via the `definition` "attributes".
3838
+
*/
3839
+
exporttypeOrganizationAttributes={
3840
+
/**
3841
+
* Name of the organization
3842
+
*/
3843
+
name: string;
3844
+
};
3804
3845
/**
3805
3846
* If the Audit log functionality is enabled in a project, logged events can be queried using SQL-like language and fetched in full detail so that they can be exported or analyzed.
3806
3847
*
@@ -4031,42 +4072,6 @@ export type AuditLogEventQuerySchema = {
4031
4072
*/
4032
4073
detailed_log?: boolean;
4033
4074
};
4034
-
/**
4035
-
* DatoCMS organization
4036
-
*
4037
-
* This interface was referenced by `DatoApi`'s JSON-Schema
4038
-
* via the `definition` "organization".
4039
-
*/
4040
-
exporttypeOrganization={
4041
-
id: OrganizationIdentity;
4042
-
type: OrganizationType;
4043
-
/**
4044
-
* Name of the organization
4045
-
*/
4046
-
name: string;
4047
-
};
4048
-
/**
4049
-
* JSON API data
4050
-
*
4051
-
* This interface was referenced by `Organization`'s JSON-Schema
4052
-
* via the `definition` "data".
4053
-
*/
4054
-
exporttypeOrganizationData={
4055
-
type: OrganizationType;
4056
-
id: OrganizationIdentity;
4057
-
};
4058
-
/**
4059
-
* JSON API attributes
4060
-
*
4061
-
* This interface was referenced by `Organization`'s JSON-Schema
4062
-
* via the `definition` "attributes".
4063
-
*/
4064
-
exporttypeOrganizationAttributes={
4065
-
/**
4066
-
* Name of the organization
4067
-
*/
4068
-
name: string;
4069
-
};
4070
4075
/**
4071
4076
* Stores the information regarding the current plan for the project.
4072
4077
*
@@ -4136,6 +4141,14 @@ export type SitePlan = {
4136
4141
* The number of requests made to both our Content Management and Content Delivery APIs
4137
4142
*/
4138
4143
api_calls: null|number;
4144
+
/**
4145
+
* The number of requests made to our Content Delivery API
4146
+
*/
4147
+
cda_api_calls: null|number;
4148
+
/**
4149
+
* The number of requests made to our Content Management API
4150
+
*/
4151
+
cma_api_calls: null|number;
4139
4152
/**
4140
4153
* The number of streaming seconds delivered by Mux.com
4141
4154
*/
@@ -4301,6 +4314,14 @@ export type SitePlan = {
4301
4314
amount_per_packet: number;
4302
4315
price: number;
4303
4316
};
4317
+
cda_api_calls?: {
4318
+
amount_per_packet: number;
4319
+
price: number;
4320
+
};
4321
+
cma_api_calls?: {
4322
+
amount_per_packet: number;
4323
+
price: number;
4324
+
};
4304
4325
mux_streaming_seconds?: {
4305
4326
amount_per_packet: number;
4306
4327
price: number;
@@ -4384,6 +4405,14 @@ export type SitePlanAttributes = {
4384
4405
* The number of requests made to both our Content Management and Content Delivery APIs
4385
4406
*/
4386
4407
api_calls: null|number;
4408
+
/**
4409
+
* The number of requests made to our Content Delivery API
4410
+
*/
4411
+
cda_api_calls: null|number;
4412
+
/**
4413
+
* The number of requests made to our Content Management API
4414
+
*/
4415
+
cma_api_calls: null|number;
4387
4416
/**
4388
4417
* The number of streaming seconds delivered by Mux.com
4389
4418
*/
@@ -4549,6 +4578,14 @@ export type SitePlanAttributes = {
0 commit comments