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
* Additional settings for the build trigger. The value depends on the `adapter`.
8934
8934
*/
8935
8935
adapter_settings: {
8936
8936
[k: string]: unknown;
8937
8937
};
8938
8938
/**
8939
-
* Timestamp of the last deploy
8939
+
* Timestamp of the last build
8940
8940
*/
8941
8941
last_build_completed_at: string|null;
8942
8942
/**
8943
-
* Status of last deploy
8943
+
* Status of last build
8944
8944
*/
8945
8945
build_status: string;
8946
8946
/**
8947
-
* Unique token of the webhook
8947
+
* Unique token for the webhook (it's the same token present in `webhook_url`)
8948
8948
*/
8949
8949
webhook_token?: string;
8950
8950
/**
8951
-
* Notification webhook URL
8951
+
* The URL of the webhook your service has to call when the build completes to report it's status (success or error)
8952
8952
*/
8953
8953
webhook_url: string;
8954
8954
/**
8955
-
* Status of site scraper
8955
+
* Status of Site Search for the frontend
8956
8956
*/
8957
8957
indexing_status: string;
8958
8958
/**
8959
-
* Public url of the site
8959
+
* The public URL of the frontend. If Site Search is enabled (indicated by `indexing_enabled`), this is the starting point from which the website's spidering will start
8960
8960
*/
8961
8961
frontend_url: string|null;
8962
8962
/**
8963
-
* Deploy on scheduled publication
8963
+
* Wheter an automatic build request to `webhook_url` should be made on scheduled publications/unpublishings
8964
8964
*/
8965
8965
autotrigger_on_scheduled_publications: boolean;
8966
8966
/**
8967
-
* Enable scraper on the site
8967
+
* Wether Site Search is enabled or not. With Site Search, everytime the website is built, DatoCMS will respider it to get updated content
8968
8968
*/
8969
8969
indexing_enabled: boolean;
8970
8970
};
@@ -8994,31 +8994,37 @@ export type BuildTriggerCreateSchema = {
8994
8994
type: BuildTriggerType;
8995
8995
attributes: {
8996
8996
/**
8997
-
* Name of the environment
8997
+
* Name of the build trigger
8998
8998
*/
8999
8999
name: string;
9000
9000
/**
9001
-
* Unique token of the webhook
9001
+
* Unique token for the webhook (it's the same token present in `webhook_url`)
9002
9002
*/
9003
9003
webhook_token?: string;
9004
9004
/**
9005
-
* The deploy adapter
9005
+
* The type of build trigger
9006
9006
*/
9007
-
adapter: string;
9007
+
adapter:
9008
+
|'custom'
9009
+
|'netlify'
9010
+
|'vercel'
9011
+
|'circle_ci'
9012
+
|'gitlab'
9013
+
|'travis';
9008
9014
/**
9009
-
* Enable scraper on the site
9015
+
* Wether Site Search is enabled or not. With Site Search, everytime the website is built, DatoCMS will respider it to get updated content
9010
9016
*/
9011
9017
indexing_enabled: boolean;
9012
9018
/**
9013
-
* Public url of the site
9019
+
* The public URL of the frontend. If Site Search is enabled (indicated by `indexing_enabled`), this is the starting point from which the website's spidering will start
9014
9020
*/
9015
9021
frontend_url: string|null;
9016
9022
/**
9017
-
* Deploy on scheduled publication
9023
+
* Wheter an automatic build request to `webhook_url` should be made on scheduled publications/unpublishings
9018
9024
*/
9019
9025
autotrigger_on_scheduled_publications: boolean;
9020
9026
/**
9021
-
* Additional configuration for deploy
9027
+
* Additional settings for the build trigger. The value depends on the `adapter`.
9022
9028
*/
9023
9029
adapter_settings: {
9024
9030
[k: string]: unknown;
@@ -9045,27 +9051,33 @@ export type BuildTriggerUpdateSchema = {
9045
9051
id: BuildTriggerIdentity;
9046
9052
attributes: {
9047
9053
/**
9048
-
* Name of the environment
9054
+
* Name of the build trigger
9049
9055
*/
9050
9056
name?: string;
9051
9057
/**
9052
-
* The deploy adapter
9058
+
* The type of build trigger
9053
9059
*/
9054
-
adapter?: string;
9060
+
adapter?:
9061
+
|'custom'
9062
+
|'netlify'
9063
+
|'vercel'
9064
+
|'circle_ci'
9065
+
|'gitlab'
9066
+
|'travis';
9055
9067
/**
9056
-
* Enable scraper on the site
9068
+
* Wether Site Search is enabled or not. With Site Search, everytime the website is built, DatoCMS will respider it to get updated content
9057
9069
*/
9058
9070
indexing_enabled?: boolean;
9059
9071
/**
9060
-
* Public url of the site
9072
+
* The public URL of the frontend. If Site Search is enabled (indicated by `indexing_enabled`), this is the starting point from which the website's spidering will start
9061
9073
*/
9062
9074
frontend_url?: string|null;
9063
9075
/**
9064
-
* Deploy on scheduled publication
9076
+
* Wheter an automatic build request to `webhook_url` should be made on scheduled publications/unpublishings
9065
9077
*/
9066
9078
autotrigger_on_scheduled_publications?: boolean;
9067
9079
/**
9068
-
* Additional configuration for deploy
9080
+
* Additional settings for the build trigger. The value depends on the `adapter`.
* Additional settings for the build trigger. The value depends on the `adapter`.
8799
8799
*/
8800
8800
adapter_settings: {
8801
8801
[k: string]: unknown;
8802
8802
};
8803
8803
/**
8804
-
* Timestamp of the last deploy
8804
+
* Timestamp of the last build
8805
8805
*/
8806
8806
last_build_completed_at: string|null;
8807
8807
/**
8808
-
* Status of last deploy
8808
+
* Status of last build
8809
8809
*/
8810
8810
build_status: string;
8811
8811
/**
8812
-
* Unique token of the webhook
8812
+
* Unique token for the webhook (it's the same token present in `webhook_url`)
8813
8813
*/
8814
8814
webhook_token?: string;
8815
8815
/**
8816
-
* Notification webhook URL
8816
+
* The URL of the webhook your service has to call when the build completes to report it's status (success or error)
8817
8817
*/
8818
8818
webhook_url: string;
8819
8819
/**
8820
-
* Status of site scraper
8820
+
* Status of Site Search for the frontend
8821
8821
*/
8822
8822
indexing_status: string;
8823
8823
/**
8824
-
* Public url of the site
8824
+
* The public URL of the frontend. If Site Search is enabled (indicated by `indexing_enabled`), this is the starting point from which the website's spidering will start
8825
8825
*/
8826
8826
frontend_url: string|null;
8827
8827
/**
8828
-
* Deploy on scheduled publication
8828
+
* Wheter an automatic build request to `webhook_url` should be made on scheduled publications/unpublishings
8829
8829
*/
8830
8830
autotrigger_on_scheduled_publications: boolean;
8831
8831
/**
8832
-
* Enable scraper on the site
8832
+
* Wether Site Search is enabled or not. With Site Search, everytime the website is built, DatoCMS will respider it to get updated content
8833
8833
*/
8834
8834
indexing_enabled: boolean;
8835
8835
};
@@ -8845,49 +8845,49 @@ export type BuildTriggerDestroyTargetSchema = BuildTrigger;
* Additional settings for the build trigger. The value depends on the `adapter`.
8857
8857
*/
8858
8858
adapter_settings: {
8859
8859
[k: string]: unknown;
8860
8860
};
8861
8861
/**
8862
-
* Timestamp of the last deploy
8862
+
* Timestamp of the last build
8863
8863
*/
8864
8864
last_build_completed_at: string|null;
8865
8865
/**
8866
-
* Status of last deploy
8866
+
* Status of last build
8867
8867
*/
8868
8868
build_status: string;
8869
8869
/**
8870
-
* Unique token of the webhook
8870
+
* Unique token for the webhook (it's the same token present in `webhook_url`)
8871
8871
*/
8872
8872
webhook_token?: string;
8873
8873
/**
8874
-
* Notification webhook URL
8874
+
* The URL of the webhook your service has to call when the build completes to report it's status (success or error)
8875
8875
*/
8876
8876
webhook_url: string;
8877
8877
/**
8878
-
* Status of site scraper
8878
+
* Status of Site Search for the frontend
8879
8879
*/
8880
8880
indexing_status: string;
8881
8881
/**
8882
-
* Public url of the site
8882
+
* The public URL of the frontend. If Site Search is enabled (indicated by `indexing_enabled`), this is the starting point from which the website's spidering will start
8883
8883
*/
8884
8884
frontend_url: string|null;
8885
8885
/**
8886
-
* Deploy on scheduled publication
8886
+
* Wheter an automatic build request to `webhook_url` should be made on scheduled publications/unpublishings
8887
8887
*/
8888
8888
autotrigger_on_scheduled_publications: boolean;
8889
8889
/**
8890
-
* Enable scraper on the site
8890
+
* Wether Site Search is enabled or not. With Site Search, everytime the website is built, DatoCMS will respider it to get updated content
8891
8891
*/
8892
8892
indexing_enabled: boolean;
8893
8893
};
@@ -8899,31 +8899,31 @@ export type BuildTriggerAttributes = {
8899
8899
exporttypeBuildTriggerCreateSchema={
8900
8900
type?: BuildTriggerType;
8901
8901
/**
8902
-
* Name of the environment
8902
+
* Name of the build trigger
8903
8903
*/
8904
8904
name: string;
8905
8905
/**
8906
-
* Unique token of the webhook
8906
+
* Unique token for the webhook (it's the same token present in `webhook_url`)
* Wether Site Search is enabled or not. With Site Search, everytime the website is built, DatoCMS will respider it to get updated content
8915
8915
*/
8916
8916
indexing_enabled: boolean;
8917
8917
/**
8918
-
* Public url of the site
8918
+
* The public URL of the frontend. If Site Search is enabled (indicated by `indexing_enabled`), this is the starting point from which the website's spidering will start
8919
8919
*/
8920
8920
frontend_url: string|null;
8921
8921
/**
8922
-
* Deploy on scheduled publication
8922
+
* Wheter an automatic build request to `webhook_url` should be made on scheduled publications/unpublishings
8923
8923
*/
8924
8924
autotrigger_on_scheduled_publications: boolean;
8925
8925
/**
8926
-
* Additional configuration for deploy
8926
+
* Additional settings for the build trigger. The value depends on the `adapter`.
8927
8927
*/
8928
8928
adapter_settings: {
8929
8929
[k: string]: unknown;
@@ -8938,27 +8938,27 @@ export type BuildTriggerUpdateSchema = {
* Wether Site Search is enabled or not. With Site Search, everytime the website is built, DatoCMS will respider it to get updated content
8950
8950
*/
8951
8951
indexing_enabled?: boolean;
8952
8952
/**
8953
-
* Public url of the site
8953
+
* The public URL of the frontend. If Site Search is enabled (indicated by `indexing_enabled`), this is the starting point from which the website's spidering will start
8954
8954
*/
8955
8955
frontend_url?: string|null;
8956
8956
/**
8957
-
* Deploy on scheduled publication
8957
+
* Wheter an automatic build request to `webhook_url` should be made on scheduled publications/unpublishings
8958
8958
*/
8959
8959
autotrigger_on_scheduled_publications?: boolean;
8960
8960
/**
8961
-
* Additional configuration for deploy
8961
+
* Additional settings for the build trigger. The value depends on the `adapter`.
0 commit comments