@botpress/api 1.24.0 → 1.26.0

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.
@@ -4654,6 +4654,359 @@ export declare const state: {
4654
4654
  };
4655
4655
  };
4656
4656
  };
4657
+ getDereferencedPublicPluginById: {
4658
+ name: string;
4659
+ description: string;
4660
+ method: "get";
4661
+ section: "hub";
4662
+ path: string;
4663
+ disableDefaultParameters: {
4664
+ "x-workspace-id": boolean;
4665
+ };
4666
+ parameters: {
4667
+ id: {
4668
+ type: "string";
4669
+ description: string;
4670
+ in: "path";
4671
+ };
4672
+ interfaces: {
4673
+ in: "query";
4674
+ type: "object";
4675
+ schema: {
4676
+ type: "object";
4677
+ additionalProperties: {
4678
+ type: "string";
4679
+ description: string;
4680
+ };
4681
+ description: string;
4682
+ };
4683
+ description: string;
4684
+ required: true;
4685
+ };
4686
+ };
4687
+ response: {
4688
+ description: string;
4689
+ schema: {
4690
+ type: "object";
4691
+ properties: {
4692
+ plugin: {
4693
+ type: "object";
4694
+ properties: {
4695
+ id: {
4696
+ type: "string";
4697
+ minLength: number;
4698
+ maxLength: number;
4699
+ description: string;
4700
+ };
4701
+ name: {
4702
+ type: "string";
4703
+ maxLength: number;
4704
+ description: string;
4705
+ };
4706
+ version: {
4707
+ type: "string";
4708
+ maxLength: number;
4709
+ description: string;
4710
+ };
4711
+ createdAt: {
4712
+ type: "string";
4713
+ format: string;
4714
+ description: string;
4715
+ };
4716
+ updatedAt: {
4717
+ type: "string";
4718
+ format: string;
4719
+ description: string;
4720
+ };
4721
+ configuration: {
4722
+ type: "object";
4723
+ properties: {
4724
+ title: {
4725
+ type: "string";
4726
+ maxLength: number;
4727
+ description: string;
4728
+ };
4729
+ description: {
4730
+ type: "string";
4731
+ maxLength: number;
4732
+ description: string;
4733
+ };
4734
+ schema: {
4735
+ type: "object";
4736
+ additionalProperties: true;
4737
+ description: string;
4738
+ };
4739
+ };
4740
+ required: string[];
4741
+ description: string;
4742
+ additionalProperties: false;
4743
+ };
4744
+ states: {
4745
+ type: "object";
4746
+ additionalProperties: {
4747
+ type: "object";
4748
+ properties: {
4749
+ type: {
4750
+ type: "string";
4751
+ enum: string[];
4752
+ description: string;
4753
+ };
4754
+ schema: {
4755
+ type: "object";
4756
+ additionalProperties: true;
4757
+ description: string;
4758
+ };
4759
+ expiry: {
4760
+ type: "number";
4761
+ minimum: number;
4762
+ description: string;
4763
+ };
4764
+ };
4765
+ required: string[];
4766
+ additionalProperties: false;
4767
+ };
4768
+ };
4769
+ events: {
4770
+ type: "object";
4771
+ additionalProperties: {
4772
+ type: "object";
4773
+ properties: {
4774
+ title: {
4775
+ type: "string";
4776
+ maxLength: number;
4777
+ description: string;
4778
+ };
4779
+ description: {
4780
+ type: "string";
4781
+ maxLength: number;
4782
+ description: string;
4783
+ };
4784
+ schema: {
4785
+ type: "object";
4786
+ additionalProperties: true;
4787
+ };
4788
+ attributes: {
4789
+ type: "object";
4790
+ additionalProperties: {
4791
+ type: "string";
4792
+ maxLength: number;
4793
+ };
4794
+ description: string;
4795
+ };
4796
+ };
4797
+ required: string[];
4798
+ description: string;
4799
+ additionalProperties: false;
4800
+ };
4801
+ };
4802
+ actions: {
4803
+ type: "object";
4804
+ additionalProperties: {
4805
+ type: "object";
4806
+ properties: {
4807
+ title: {
4808
+ type: "string";
4809
+ maxLength: number;
4810
+ description: string;
4811
+ };
4812
+ description: {
4813
+ type: "string";
4814
+ maxLength: number;
4815
+ description: string;
4816
+ };
4817
+ billable: {
4818
+ type: "boolean";
4819
+ };
4820
+ cacheable: {
4821
+ type: "boolean";
4822
+ };
4823
+ input: {
4824
+ type: "object";
4825
+ properties: {
4826
+ schema: {
4827
+ type: "object";
4828
+ additionalProperties: true;
4829
+ };
4830
+ };
4831
+ required: string[];
4832
+ additionalProperties: false;
4833
+ };
4834
+ output: {
4835
+ type: "object";
4836
+ properties: {
4837
+ schema: {
4838
+ type: "object";
4839
+ additionalProperties: true;
4840
+ };
4841
+ };
4842
+ required: string[];
4843
+ additionalProperties: false;
4844
+ };
4845
+ attributes: {
4846
+ type: "object";
4847
+ additionalProperties: {
4848
+ type: "string";
4849
+ maxLength: number;
4850
+ };
4851
+ description: string;
4852
+ };
4853
+ };
4854
+ required: string[];
4855
+ description: string;
4856
+ additionalProperties: false;
4857
+ };
4858
+ };
4859
+ dependencies: {
4860
+ type: "object";
4861
+ properties: {
4862
+ interfaces: {
4863
+ type: "object";
4864
+ additionalProperties: {
4865
+ type: "object";
4866
+ properties: {
4867
+ id: {
4868
+ type: "string";
4869
+ minLength: number;
4870
+ maxLength: number;
4871
+ };
4872
+ name: {
4873
+ type: "string";
4874
+ maxLength: number;
4875
+ };
4876
+ version: {
4877
+ type: "string";
4878
+ maxLength: number;
4879
+ };
4880
+ };
4881
+ required: string[];
4882
+ additionalProperties: false;
4883
+ };
4884
+ };
4885
+ integrations: {
4886
+ type: "object";
4887
+ additionalProperties: {
4888
+ type: "object";
4889
+ properties: {
4890
+ id: {
4891
+ type: "string";
4892
+ minLength: number;
4893
+ maxLength: number;
4894
+ };
4895
+ name: {
4896
+ type: "string";
4897
+ maxLength: number;
4898
+ };
4899
+ version: {
4900
+ type: "string";
4901
+ maxLength: number;
4902
+ };
4903
+ };
4904
+ required: string[];
4905
+ additionalProperties: false;
4906
+ };
4907
+ };
4908
+ };
4909
+ required: string[];
4910
+ additionalProperties: false;
4911
+ };
4912
+ user: {
4913
+ type: "object";
4914
+ properties: {
4915
+ tags: {
4916
+ type: "object";
4917
+ additionalProperties: {
4918
+ type: "object";
4919
+ properties: {
4920
+ title: {
4921
+ type: "string";
4922
+ maxLength: number;
4923
+ description: string;
4924
+ };
4925
+ description: {
4926
+ type: "string";
4927
+ maxLength: number;
4928
+ description: string;
4929
+ };
4930
+ };
4931
+ description: string;
4932
+ additionalProperties: false;
4933
+ };
4934
+ };
4935
+ };
4936
+ required: string[];
4937
+ description: string;
4938
+ additionalProperties: false;
4939
+ };
4940
+ conversation: {
4941
+ type: "object";
4942
+ properties: {
4943
+ tags: {
4944
+ type: "object";
4945
+ additionalProperties: {
4946
+ type: "object";
4947
+ properties: {
4948
+ title: {
4949
+ type: "string";
4950
+ maxLength: number;
4951
+ description: string;
4952
+ };
4953
+ description: {
4954
+ type: "string";
4955
+ maxLength: number;
4956
+ description: string;
4957
+ };
4958
+ };
4959
+ description: string;
4960
+ additionalProperties: false;
4961
+ };
4962
+ };
4963
+ };
4964
+ required: string[];
4965
+ description: string;
4966
+ additionalProperties: false;
4967
+ };
4968
+ attributes: {
4969
+ type: "object";
4970
+ additionalProperties: {
4971
+ type: "string";
4972
+ maxLength: number;
4973
+ };
4974
+ description: string;
4975
+ };
4976
+ title: {
4977
+ type: "string";
4978
+ minLength: number;
4979
+ maxLength: number;
4980
+ description: string;
4981
+ };
4982
+ description: {
4983
+ type: "string";
4984
+ maxLength: number;
4985
+ description: string;
4986
+ };
4987
+ iconUrl: {
4988
+ type: "string";
4989
+ description: string;
4990
+ };
4991
+ readmeUrl: {
4992
+ type: "string";
4993
+ description: string;
4994
+ };
4995
+ public: {
4996
+ type: "boolean";
4997
+ description: string;
4998
+ };
4999
+ };
5000
+ required: string[];
5001
+ additionalProperties: false;
5002
+ };
5003
+ };
5004
+ required: string[];
5005
+ title: string;
5006
+ additionalProperties: false;
5007
+ };
5008
+ };
5009
+ };
4657
5010
  getPublicPlugin: {
4658
5011
  name: string;
4659
5012
  description: string;
@@ -9881,6 +10234,10 @@ export declare const state: {
9881
10234
  additionalProperties: false;
9882
10235
  };
9883
10236
  };
10237
+ messageStatusChangeNotificationsEnabled: {
10238
+ type: "boolean";
10239
+ description: string;
10240
+ };
9884
10241
  secrets: {
9885
10242
  type: "object";
9886
10243
  additionalProperties: {
@@ -10428,6 +10785,10 @@ export declare const state: {
10428
10785
  additionalProperties: false;
10429
10786
  };
10430
10787
  };
10788
+ messageStatusChangeNotificationsEnabled: {
10789
+ type: "boolean";
10790
+ description: string;
10791
+ };
10431
10792
  secrets: {
10432
10793
  type: "object";
10433
10794
  additionalProperties: {
@@ -10588,6 +10949,10 @@ export declare const state: {
10588
10949
  };
10589
10950
  description: string;
10590
10951
  };
10952
+ messageStatusChangeNotificationsEnabled: {
10953
+ type: "boolean";
10954
+ description: string;
10955
+ };
10591
10956
  channels: {
10592
10957
  type: "object";
10593
10958
  additionalProperties: {
@@ -11142,6 +11507,10 @@ export declare const state: {
11142
11507
  };
11143
11508
  description: string;
11144
11509
  };
11510
+ messageStatusChangeNotificationsEnabled: {
11511
+ type: "boolean";
11512
+ description: string;
11513
+ };
11145
11514
  channels: {
11146
11515
  type: "object";
11147
11516
  additionalProperties: {
@@ -13025,6 +13394,48 @@ export declare const state: {
13025
13394
  };
13026
13395
  };
13027
13396
  };
13397
+ getDereferencedPlugin: {
13398
+ name: string;
13399
+ description: string;
13400
+ method: "get";
13401
+ section: "plugin";
13402
+ path: string;
13403
+ parameters: {
13404
+ id: {
13405
+ type: "string";
13406
+ description: string;
13407
+ in: "path";
13408
+ };
13409
+ interfaces: {
13410
+ in: "query";
13411
+ type: "object";
13412
+ schema: {
13413
+ type: "object";
13414
+ additionalProperties: {
13415
+ type: "string";
13416
+ description: string;
13417
+ };
13418
+ description: string;
13419
+ };
13420
+ description: string;
13421
+ required: true;
13422
+ };
13423
+ };
13424
+ response: {
13425
+ description: string;
13426
+ schema: {
13427
+ type: "object";
13428
+ properties: {
13429
+ plugin: {
13430
+ $ref: string;
13431
+ };
13432
+ };
13433
+ required: string[];
13434
+ title: string;
13435
+ additionalProperties: false;
13436
+ };
13437
+ };
13438
+ };
13028
13439
  getPluginByName: {
13029
13440
  name: string;
13030
13441
  description: string;
@@ -16705,6 +17116,7 @@ export declare const state: {
16705
17116
  getPublicIntegrationResponse: true;
16706
17117
  listPublicPluginsResponse: true;
16707
17118
  getPublicPluginByIdResponse: true;
17119
+ getDereferencedPublicPluginByIdResponse: true;
16708
17120
  getPublicPluginResponse: true;
16709
17121
  getPublicPluginCodeResponse: true;
16710
17122
  listPublicInterfacesResponse: true;
@@ -16780,6 +17192,7 @@ export declare const state: {
16780
17192
  listInterfacesResponse: true;
16781
17193
  createPluginResponse: true;
16782
17194
  getPluginResponse: true;
17195
+ getDereferencedPluginResponse: true;
16783
17196
  getPluginByNameResponse: true;
16784
17197
  updatePluginResponse: true;
16785
17198
  deletePluginResponse: true;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@botpress/api",
3
- "version": "1.24.0",
3
+ "version": "1.26.0",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/src/index.d.ts",
6
6
  "scripts": {
@@ -1 +1 @@
1
- {"sections":[{"description":"","title":"User","name":"user","operations":[],"schema":"User"},{"description":"","title":"Conversation","name":"conversation","operations":[],"schema":"Conversation"},{"description":"","title":"Event","name":"event","operations":[],"schema":"Event"},{"description":"","title":"Message","name":"message","operations":[],"schema":"Message"},{"description":"","title":"State","name":"state","operations":[],"schema":"State"},{"title":"Hub","description":"","name":"hub","operations":["listPublicIntegrations","getPublicIntegrationById","getPublicIntegration","listPublicPlugins","getPublicPluginById","getPublicPlugin","getPublicPluginCode","listPublicInterfaces","getPublicInterfaceById","getPublicInterface"]},{"description":"","title":"Action","name":"action","operations":[]},{"description":"","title":"Task","name":"task","operations":[],"schema":"Task"},{"description":"","title":"Workflow","name":"workflow","operations":[],"schema":"Workflow"},{"description":"","title":"Tag","name":"tag","operations":[]},{"title":"Bot","description":"","name":"bot","operations":["createBot","updateBot","transferBot","listBots","getBot","deleteBot","getBotLogs","getBotWebchat","getBotAnalytics","listActionRuns","getBotIssue","listBotIssues","deleteBotIssue","listBotIssueEvents","listBotVersions","getBotVersion","getBotJson","publishFromBotJson","createBotVersion","deployBotVersion","createIntegrationShareableId","deleteIntegrationShareableId","getIntegrationShareableId","unlinkSandboxedConversations","listBotApiKeys","createBotApiKey","deleteBotApiKey"],"schema":"Bot"},{"title":"Integration","description":"","name":"integration","operations":["listIntegrationApiKeys","createIntegrationApiKey","deleteIntegrationApiKey","createIntegration","validateIntegrationCreation","updateIntegration","validateIntegrationUpdate","listIntegrations","getIntegration","getIntegrationLogs","getIntegrationByName","deleteIntegration","requestIntegrationVerification"],"schema":"Integration"},{"title":"Interface","description":"","name":"interface","operations":["createInterface","getInterface","getInterfaceByName","updateInterface","deleteInterface","listInterfaces"],"schema":"Interface"},{"title":"Plugin","description":"","name":"plugin","operations":["createPlugin","getPlugin","getPluginByName","updatePlugin","deletePlugin","listPlugins","getPluginCode"],"schema":"Plugin"},{"title":"Workspace","description":"","name":"workspace","operations":["listWorkspaceInvoices","getUpcomingInvoice","chargeWorkspaceUnpaidInvoices","createWorkspace","getPublicWorkspace","getWorkspace","listWorkspaceUsages","breakDownWorkspaceUsageByBot","getAllWorkspaceQuotaCompletion","getWorkspaceQuota","listWorkspaceQuotas","updateWorkspace","checkHandleAvailability","listWorkspaces","listPublicWorkspaces","deleteWorkspace","getAuditRecords"],"schema":"Workspace"},{"title":"Workspace Member","description":"","name":"workspaceMember","operations":["listWorkspaceMembers","getWorkspaceMember","deleteWorkspaceMember","createWorkspaceMember","updateWorkspaceMember"],"schema":"WorkspaceMember"},{"title":"Account","description":"","name":"account","operations":["getAccount","updateAccount","deleteAccount","listPersonalAccessTokens","createPersonalAccessToken","deletePersonalAccessToken","setAccountPreference","getAccountPreference"],"schema":"Account"},{"title":"Usage","description":"","name":"usage","operations":["getUsage","getMultipleUsages","listUsageActivityDaily"],"schema":"Usage"},{"title":"Quotas","description":"","name":"quotas","operations":["changeAISpendQuota"]},{"title":"Helper","description":"","name":"helper","operations":["runVrl"]},{"title":"Activity","description":"","name":"activity","operations":["listActivities"],"schema":"Activity"},{"title":"Tables","description":"Manage and interact with table structures, including creation, updates, and querying of tables and their rows.","name":"tables","operations":[],"schema":"Table"},{"title":"Files","description":"The Files API allows you to create, manage, and index files that can be used by your bots and integrations. Files can be in any text or binary format, and documents (such as PDF, Microsoft Word, HTML, Markdown, etc.) can be indexed to be used for semantic search in RAG (Retrieval Augmented Generation) implementations. Files are private by default but can be made publicly accessible through a permanent URL that's unique for each file.","name":"files","operations":[],"schema":"File"}],"errors":[{"status":500,"type":"Unknown","description":"An unknown error occurred"},{"status":500,"type":"Internal","description":"An internal error occurred"},{"status":401,"type":"Unauthorized","description":"The request requires to be authenticated."},{"status":403,"type":"Forbidden","description":"The requested action can't be peform by this resource."},{"status":413,"type":"PayloadTooLarge","description":"The request payload is too large."},{"status":400,"type":"InvalidPayload","description":"The request payload is invalid."},{"status":415,"type":"UnsupportedMediaType","description":"The request is invalid because the content-type is not supported."},{"status":405,"type":"MethodNotFound","description":"The requested method does not exist."},{"status":404,"type":"ResourceNotFound","description":"The requested resource does not exist."},{"status":400,"type":"InvalidJsonSchema","description":"The provided JSON schema is invalid."},{"status":400,"type":"InvalidDataFormat","description":"The provided data doesn't respect the provided JSON schema."},{"status":400,"type":"InvalidIdentifier","description":"The provided identifier is not valid. An identifier must start with a lowercase letter, be between 2 and 100 characters long and use only alphanumeric characters."},{"status":409,"type":"RelationConflict","description":"The resource is related with a different resource that the one referenced in the request. This is usually caused when providing two resource identifiers that aren't linked together."},{"status":409,"type":"ReferenceConstraint","description":"The resource cannot be deleted because it's referenced by another resource"},{"status":409,"type":"ResourceLockedConflict","description":"The resource is current locked and cannot be operated on until the lock is released."},{"status":400,"type":"ReferenceNotFound","description":"The provided resource reference is missing. This is usually caused when providing an invalid id inside the payload of a request."},{"status":400,"type":"InvalidQuery","description":"The provided query is invalid. This is usually caused when providing an invalid parameter for querying a resource."},{"status":400,"type":"Runtime","description":"An error happened during the execution of a runtime (bot or integration)."},{"status":409,"type":"AlreadyExists","description":"The record attempted to be created already exists."},{"status":429,"type":"RateLimited","description":"The request has been rate limited."},{"status":402,"type":"PaymentRequired","description":"A payment is required to perform this request."},{"status":403,"type":"QuotaExceeded","description":"The request exceeds the allowed quota. Quotas are a soft limit that can be increased."},{"status":413,"type":"LimitExceeded","description":"The request exceeds the allowed limit. Limits are a hard limit that cannot be increased."},{"status":400,"type":"BreakingChanges","description":"Request payload contains breaking changes which is not allowed for this resource without a version increment."}]}
1
+ {"sections":[{"description":"","title":"User","name":"user","operations":[],"schema":"User"},{"description":"","title":"Conversation","name":"conversation","operations":[],"schema":"Conversation"},{"description":"","title":"Event","name":"event","operations":[],"schema":"Event"},{"description":"","title":"Message","name":"message","operations":[],"schema":"Message"},{"description":"","title":"State","name":"state","operations":[],"schema":"State"},{"title":"Hub","description":"","name":"hub","operations":["listPublicIntegrations","getPublicIntegrationById","getPublicIntegration","listPublicPlugins","getPublicPluginById","getDereferencedPublicPluginById","getPublicPlugin","getPublicPluginCode","listPublicInterfaces","getPublicInterfaceById","getPublicInterface"]},{"description":"","title":"Action","name":"action","operations":[]},{"description":"","title":"Task","name":"task","operations":[],"schema":"Task"},{"description":"","title":"Workflow","name":"workflow","operations":[],"schema":"Workflow"},{"description":"","title":"Tag","name":"tag","operations":[]},{"title":"Bot","description":"","name":"bot","operations":["createBot","updateBot","transferBot","listBots","getBot","deleteBot","getBotLogs","getBotWebchat","getBotAnalytics","listActionRuns","getBotIssue","listBotIssues","deleteBotIssue","listBotIssueEvents","listBotVersions","getBotVersion","getBotJson","publishFromBotJson","createBotVersion","deployBotVersion","createIntegrationShareableId","deleteIntegrationShareableId","getIntegrationShareableId","unlinkSandboxedConversations","listBotApiKeys","createBotApiKey","deleteBotApiKey"],"schema":"Bot"},{"title":"Integration","description":"","name":"integration","operations":["listIntegrationApiKeys","createIntegrationApiKey","deleteIntegrationApiKey","createIntegration","validateIntegrationCreation","updateIntegration","validateIntegrationUpdate","listIntegrations","getIntegration","getIntegrationLogs","getIntegrationByName","deleteIntegration","requestIntegrationVerification"],"schema":"Integration"},{"title":"Interface","description":"","name":"interface","operations":["createInterface","getInterface","getInterfaceByName","updateInterface","deleteInterface","listInterfaces"],"schema":"Interface"},{"title":"Plugin","description":"","name":"plugin","operations":["createPlugin","getPlugin","getDereferencedPlugin","getPluginByName","updatePlugin","deletePlugin","listPlugins","getPluginCode"],"schema":"Plugin"},{"title":"Workspace","description":"","name":"workspace","operations":["listWorkspaceInvoices","getUpcomingInvoice","chargeWorkspaceUnpaidInvoices","createWorkspace","getPublicWorkspace","getWorkspace","listWorkspaceUsages","breakDownWorkspaceUsageByBot","getAllWorkspaceQuotaCompletion","getWorkspaceQuota","listWorkspaceQuotas","updateWorkspace","checkHandleAvailability","listWorkspaces","listPublicWorkspaces","deleteWorkspace","getAuditRecords"],"schema":"Workspace"},{"title":"Workspace Member","description":"","name":"workspaceMember","operations":["listWorkspaceMembers","getWorkspaceMember","deleteWorkspaceMember","createWorkspaceMember","updateWorkspaceMember"],"schema":"WorkspaceMember"},{"title":"Account","description":"","name":"account","operations":["getAccount","updateAccount","deleteAccount","listPersonalAccessTokens","createPersonalAccessToken","deletePersonalAccessToken","setAccountPreference","getAccountPreference"],"schema":"Account"},{"title":"Usage","description":"","name":"usage","operations":["getUsage","getMultipleUsages","listUsageActivityDaily"],"schema":"Usage"},{"title":"Quotas","description":"","name":"quotas","operations":["changeAISpendQuota"]},{"title":"Helper","description":"","name":"helper","operations":["runVrl"]},{"title":"Activity","description":"","name":"activity","operations":["listActivities"],"schema":"Activity"},{"title":"Tables","description":"Manage and interact with table structures, including creation, updates, and querying of tables and their rows.","name":"tables","operations":[],"schema":"Table"},{"title":"Files","description":"The Files API allows you to create, manage, and index files that can be used by your bots and integrations. Files can be in any text or binary format, and documents (such as PDF, Microsoft Word, HTML, Markdown, etc.) can be indexed to be used for semantic search in RAG (Retrieval Augmented Generation) implementations. Files are private by default but can be made publicly accessible through a permanent URL that's unique for each file.","name":"files","operations":[],"schema":"File"}],"errors":[{"status":500,"type":"Unknown","description":"An unknown error occurred"},{"status":500,"type":"Internal","description":"An internal error occurred"},{"status":401,"type":"Unauthorized","description":"The request requires to be authenticated."},{"status":403,"type":"Forbidden","description":"The requested action can't be peform by this resource."},{"status":413,"type":"PayloadTooLarge","description":"The request payload is too large."},{"status":400,"type":"InvalidPayload","description":"The request payload is invalid."},{"status":415,"type":"UnsupportedMediaType","description":"The request is invalid because the content-type is not supported."},{"status":405,"type":"MethodNotFound","description":"The requested method does not exist."},{"status":404,"type":"ResourceNotFound","description":"The requested resource does not exist."},{"status":400,"type":"InvalidJsonSchema","description":"The provided JSON schema is invalid."},{"status":400,"type":"InvalidDataFormat","description":"The provided data doesn't respect the provided JSON schema."},{"status":400,"type":"InvalidIdentifier","description":"The provided identifier is not valid. An identifier must start with a lowercase letter, be between 2 and 100 characters long and use only alphanumeric characters."},{"status":409,"type":"RelationConflict","description":"The resource is related with a different resource that the one referenced in the request. This is usually caused when providing two resource identifiers that aren't linked together."},{"status":409,"type":"ReferenceConstraint","description":"The resource cannot be deleted because it's referenced by another resource"},{"status":409,"type":"ResourceLockedConflict","description":"The resource is current locked and cannot be operated on until the lock is released."},{"status":400,"type":"ReferenceNotFound","description":"The provided resource reference is missing. This is usually caused when providing an invalid id inside the payload of a request."},{"status":400,"type":"InvalidQuery","description":"The provided query is invalid. This is usually caused when providing an invalid parameter for querying a resource."},{"status":400,"type":"Runtime","description":"An error happened during the execution of a runtime (bot or integration)."},{"status":409,"type":"AlreadyExists","description":"The record attempted to be created already exists."},{"status":429,"type":"RateLimited","description":"The request has been rate limited."},{"status":402,"type":"PaymentRequired","description":"A payment is required to perform this request."},{"status":403,"type":"QuotaExceeded","description":"The request exceeds the allowed quota. Quotas are a soft limit that can be increased."},{"status":413,"type":"LimitExceeded","description":"The request exceeds the allowed limit. Limits are a hard limit that cannot be increased."},{"status":400,"type":"BreakingChanges","description":"Request payload contains breaking changes which is not allowed for this resource without a version increment."}]}