@botpress/api 0.32.2 → 0.32.4

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.
package/dist/index.js CHANGED
@@ -269951,6 +269951,54 @@ var state = {
269951
269951
  }
269952
269952
  }
269953
269953
  },
269954
+ "listBotVersions": {
269955
+ "name": "listBotVersions",
269956
+ "description": "List Versions for a Bot",
269957
+ "method": "get",
269958
+ "path": "/v1/admin/bots/{id}/versions",
269959
+ "section": "bot",
269960
+ "parameters": {
269961
+ "id": {
269962
+ "type": "string",
269963
+ "description": "Bot ID",
269964
+ "in": "path"
269965
+ }
269966
+ },
269967
+ "response": {
269968
+ "description": "Success",
269969
+ "schema": {
269970
+ "type": "object",
269971
+ "properties": {
269972
+ "versions": {
269973
+ "type": "array",
269974
+ "items": {
269975
+ "type": "object",
269976
+ "properties": {
269977
+ "id": {
269978
+ "type": "string"
269979
+ },
269980
+ "name": {
269981
+ "type": "string"
269982
+ },
269983
+ "description": {
269984
+ "type": "string"
269985
+ }
269986
+ },
269987
+ "required": [
269988
+ "id",
269989
+ "name"
269990
+ ]
269991
+ }
269992
+ }
269993
+ },
269994
+ "required": [
269995
+ "versions"
269996
+ ],
269997
+ "title": "listBotVersionsResponse",
269998
+ "additionalProperties": false
269999
+ }
270000
+ }
270001
+ },
269954
270002
  "setWorkspacePaymentMethod": {
269955
270003
  "name": "setWorkspacePaymentMethod",
269956
270004
  "description": "Set the Stripe PaymentMethod to use for billing the workspace. To create a PaymentMethod, use the Stripe API or SDK with our Stripe Publishable Key which is listed in this documentation.",
@@ -274084,6 +274132,10 @@ var state = {
274084
274132
  "type": "string",
274085
274133
  "description": "Unique key for the file. Must be unique across the bot (and the integration, when applicable)."
274086
274134
  },
274135
+ "url": {
274136
+ "type": "string",
274137
+ "description": "URL to retrieve the file content. This URL will be ready to use once the file is uploaded.\n\nIf the file has a `public_content` policy, this will contain the permanent public URL to retrieve the file, otherwise this will contain a temporary pre-signed URL to download the file which should be used shortly after retrieving and should not be stored long-term as the URL will expire after a short timeframe."
274138
+ },
274087
274139
  "size": {
274088
274140
  "type": "number",
274089
274141
  "description": 'File size in bytes. Non-null if file upload status is "COMPLETE".',
@@ -274149,6 +274201,7 @@ var state = {
274149
274201
  "id",
274150
274202
  "botId",
274151
274203
  "key",
274204
+ "url",
274152
274205
  "size",
274153
274206
  "contentType",
274154
274207
  "tags",
@@ -275606,7 +275659,7 @@ var state = {
275606
275659
  "title": "Botpress API",
275607
275660
  "description": "API for Botpress Cloud",
275608
275661
  "server": "https://api.botpress.cloud",
275609
- "version": "0.32.2",
275662
+ "version": "0.32.4",
275610
275663
  "prefix": "v1"
275611
275664
  },
275612
275665
  "errors": [
@@ -275849,6 +275902,7 @@ var state = {
275849
275902
  "listBotIssuesResponse": true,
275850
275903
  "deleteBotIssueResponse": true,
275851
275904
  "listBotIssueEventsResponse": true,
275905
+ "listBotVersionsResponse": true,
275852
275906
  "setWorkspacePaymentMethodResponse": true,
275853
275907
  "listWorkspaceInvoicesResponse": true,
275854
275908
  "getUpcomingInvoiceResponse": true,
@@ -275926,6 +275980,7 @@ var state = {
275926
275980
  "Issue": true,
275927
275981
  "IssueEvent": true,
275928
275982
  "Activity": true,
275983
+ "Version": true,
275929
275984
  "User": true,
275930
275985
  "Conversation": true,
275931
275986
  "Event": true,
@@ -277499,6 +277554,28 @@ var state = {
277499
277554
  "additionalProperties": false
277500
277555
  }
277501
277556
  },
277557
+ "Version": {
277558
+ "section": "bot",
277559
+ "schema": {
277560
+ "type": "object",
277561
+ "properties": {
277562
+ "id": {
277563
+ "type": "string"
277564
+ },
277565
+ "name": {
277566
+ "type": "string"
277567
+ },
277568
+ "description": {
277569
+ "type": "string"
277570
+ }
277571
+ },
277572
+ "required": [
277573
+ "id",
277574
+ "name"
277575
+ ],
277576
+ "additionalProperties": false
277577
+ }
277578
+ },
277502
277579
  "User": {
277503
277580
  "section": "user",
277504
277581
  "schema": {
@@ -278518,7 +278595,8 @@ var state = {
278518
278595
  "getBotIssue",
278519
278596
  "listBotIssues",
278520
278597
  "deleteBotIssue",
278521
- "listBotIssueEvents"
278598
+ "listBotIssueEvents",
278599
+ "listBotVersions"
278522
278600
  ],
278523
278601
  "schema": "Bot"
278524
278602
  },
@@ -1,5 +1,5 @@
1
1
  import * as opapi from '@bpinternal/opapi';
2
- export type State = opapi.State<'Bot' | 'Integration' | 'Interface' | 'Workspace' | 'WorkspaceMember' | 'Account' | 'Usage' | 'Issue' | 'IssueEvent' | 'Activity' | 'User' | 'Conversation' | 'Event' | 'Message' | 'State' | 'Task' | 'Table' | 'Column' | 'Row' | 'File', never, 'user' | 'conversation' | 'event' | 'message' | 'file' | 'state' | 'hub' | 'action' | 'task' | 'bot' | 'integration' | 'interface' | 'workspace' | 'workspaceMember' | 'account' | 'usage' | 'quotas' | 'helper' | 'activity' | 'tables' | 'files'>;
2
+ export type State = opapi.State<'Bot' | 'Integration' | 'Interface' | 'Workspace' | 'WorkspaceMember' | 'Account' | 'Usage' | 'Issue' | 'IssueEvent' | 'Activity' | 'Version' | 'User' | 'Conversation' | 'Event' | 'Message' | 'State' | 'Task' | 'Table' | 'Column' | 'Row' | 'File', never, 'user' | 'conversation' | 'event' | 'message' | 'file' | 'state' | 'hub' | 'action' | 'task' | 'bot' | 'integration' | 'interface' | 'workspace' | 'workspaceMember' | 'account' | 'usage' | 'quotas' | 'helper' | 'activity' | 'tables' | 'files'>;
3
3
  export declare const state: {
4
4
  operations: {
5
5
  createConversation: {
@@ -4514,6 +4514,49 @@ export declare const state: {
4514
4514
  };
4515
4515
  };
4516
4516
  };
4517
+ listBotVersions: {
4518
+ name: string;
4519
+ description: string;
4520
+ method: "get";
4521
+ path: string;
4522
+ section: "bot";
4523
+ parameters: {
4524
+ id: {
4525
+ type: "string";
4526
+ description: string;
4527
+ in: "path";
4528
+ };
4529
+ };
4530
+ response: {
4531
+ description: string;
4532
+ schema: {
4533
+ type: "object";
4534
+ properties: {
4535
+ versions: {
4536
+ type: "array";
4537
+ items: {
4538
+ type: "object";
4539
+ properties: {
4540
+ id: {
4541
+ type: "string";
4542
+ };
4543
+ name: {
4544
+ type: "string";
4545
+ };
4546
+ description: {
4547
+ type: "string";
4548
+ };
4549
+ };
4550
+ required: string[];
4551
+ };
4552
+ };
4553
+ };
4554
+ required: string[];
4555
+ title: string;
4556
+ additionalProperties: false;
4557
+ };
4558
+ };
4559
+ };
4517
4560
  setWorkspacePaymentMethod: {
4518
4561
  name: string;
4519
4562
  description: string;
@@ -8082,6 +8125,10 @@ export declare const state: {
8082
8125
  type: "string";
8083
8126
  description: string;
8084
8127
  };
8128
+ url: {
8129
+ type: "string";
8130
+ description: string;
8131
+ };
8085
8132
  size: {
8086
8133
  type: "number";
8087
8134
  description: string;
@@ -9598,6 +9645,7 @@ export declare const state: {
9598
9645
  listBotIssuesResponse: true;
9599
9646
  deleteBotIssueResponse: true;
9600
9647
  listBotIssueEventsResponse: true;
9648
+ listBotVersionsResponse: true;
9601
9649
  setWorkspacePaymentMethodResponse: true;
9602
9650
  listWorkspaceInvoicesResponse: true;
9603
9651
  getUpcomingInvoiceResponse: true;
@@ -9675,6 +9723,7 @@ export declare const state: {
9675
9723
  Issue: true;
9676
9724
  IssueEvent: true;
9677
9725
  Activity: true;
9726
+ Version: true;
9678
9727
  User: true;
9679
9728
  Conversation: true;
9680
9729
  Event: true;
@@ -10970,6 +11019,25 @@ export declare const state: {
10970
11019
  additionalProperties: false;
10971
11020
  };
10972
11021
  };
11022
+ Version: {
11023
+ section: "bot";
11024
+ schema: {
11025
+ type: "object";
11026
+ properties: {
11027
+ id: {
11028
+ type: "string";
11029
+ };
11030
+ name: {
11031
+ type: "string";
11032
+ };
11033
+ description: {
11034
+ type: "string";
11035
+ };
11036
+ };
11037
+ required: string[];
11038
+ additionalProperties: false;
11039
+ };
11040
+ };
10973
11041
  User: {
10974
11042
  section: "user";
10975
11043
  schema: {
@@ -1,6 +1,6 @@
1
1
  export * from './gen/state';
2
2
  export declare const api: {
3
- getModelRef: (name: "Bot" | "Integration" | "Interface" | "Workspace" | "WorkspaceMember" | "Account" | "Usage" | "Issue" | "IssueEvent" | "Activity" | "User" | "Conversation" | "Event" | "Message" | "State" | "Task" | "Table" | "Column" | "Row" | "File") => import("@bpinternal/opapi").OpenApiZodAny;
3
+ getModelRef: (name: "Bot" | "Integration" | "Interface" | "Workspace" | "WorkspaceMember" | "Account" | "Usage" | "Issue" | "IssueEvent" | "Activity" | "Version" | "User" | "Conversation" | "Event" | "Message" | "State" | "Task" | "Table" | "Column" | "Row" | "File") => import("@bpinternal/opapi").OpenApiZodAny;
4
4
  addOperation: <Path extends string>(operationProps: import("@bpinternal/opapi").Operation<"x-integration-id" | "x-workspace-id", "user" | "conversation" | "event" | "message" | "file" | "state" | "hub" | "action" | "task" | "bot" | "integration" | "interface" | "workspace" | "workspaceMember" | "account" | "usage" | "quotas" | "helper" | "activity" | "tables" | "files", Path, "zod-schema">) => void;
5
5
  exportClient: {
6
6
  (dir: string, openapiGeneratorEndpoint: string, postProcessors?: import("@bpinternal/opapi").OpenApiPostProcessors | undefined): Promise<void>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@botpress/api",
3
- "version": "0.32.2",
3
+ "version": "0.32.4",
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":["createUser","getUser","listUsers","getOrCreateUser","updateUser","deleteUser"],"schema":"User"},{"description":"","title":"Conversation","name":"conversation","operations":["createConversation","getConversation","listConversations","getOrCreateConversation","updateConversation","deleteConversation","listParticipants","addParticipant","getParticipant","removeParticipant"],"schema":"Conversation"},{"description":"","title":"Event","name":"event","operations":["createEvent","getEvent","listEvents"],"schema":"Event"},{"description":"","title":"Message","name":"message","operations":["createMessage","getOrCreateMessage","getMessage","updateMessage","listMessages","deleteMessage"],"schema":"Message"},{"description":"","title":"File","name":"file","operations":[]},{"description":"","title":"State","name":"state","operations":["getState","setState","getOrSetState","patchState"],"schema":"State"},{"title":"Hub","description":"","name":"hub","operations":["listPublicIntegrations","getPublicIntegrationById","getPublicIntegration"]},{"description":"","title":"Action","name":"action","operations":["callAction"]},{"description":"","title":"Task","name":"task","operations":["getTask","createTask","updateTask","deleteTask","listTasks"],"schema":"Task"},{"title":"Bot","description":"","name":"bot","operations":["createBot","updateBot","transferBot","listBots","getBot","deleteBot","getBotLogs","getBotWebchat","getBotAnalytics","getBotIssue","listBotIssues","deleteBotIssue","listBotIssueEvents"],"schema":"Bot"},{"title":"Integration","description":"","name":"integration","operations":["listIntegrationApiKeys","createIntegrationApiKey","deleteIntegrationApiKey","createIntegration","updateIntegration","listIntegrations","getIntegration","getIntegrationLogs","getIntegrationByName","deleteIntegration"],"schema":"Integration"},{"title":"Interface","description":"","name":"interface","operations":["createInterface","getInterface","getInterfaceByName","updateInterface","deleteInterface","listInterfaces"],"schema":"Interface"},{"title":"Workspace","description":"","name":"workspace","operations":["setWorkspacePaymentMethod","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","listPersonalAccessTokens","createPersonalAccessToken","deletePersonalAccessToken","setAccountPreference","getAccountPreference"],"schema":"Account"},{"title":"Usage","description":"","name":"usage","operations":["getUsage","getMultipleUsages"],"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":["listTables","getTable","getOrCreateTable","createTable","duplicateTable","updateTable","renameTableColumn","deleteTable","getTableRow","findTableRows","createTableRows","deleteTableRows","updateTableRows","upsertTableRows"],"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 Office, HTML, CSV, 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":["upsertFile","deleteFile","listFiles","getFile","updateFileMetadata","searchFiles"],"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":["createUser","getUser","listUsers","getOrCreateUser","updateUser","deleteUser"],"schema":"User"},{"description":"","title":"Conversation","name":"conversation","operations":["createConversation","getConversation","listConversations","getOrCreateConversation","updateConversation","deleteConversation","listParticipants","addParticipant","getParticipant","removeParticipant"],"schema":"Conversation"},{"description":"","title":"Event","name":"event","operations":["createEvent","getEvent","listEvents"],"schema":"Event"},{"description":"","title":"Message","name":"message","operations":["createMessage","getOrCreateMessage","getMessage","updateMessage","listMessages","deleteMessage"],"schema":"Message"},{"description":"","title":"File","name":"file","operations":[]},{"description":"","title":"State","name":"state","operations":["getState","setState","getOrSetState","patchState"],"schema":"State"},{"title":"Hub","description":"","name":"hub","operations":["listPublicIntegrations","getPublicIntegrationById","getPublicIntegration"]},{"description":"","title":"Action","name":"action","operations":["callAction"]},{"description":"","title":"Task","name":"task","operations":["getTask","createTask","updateTask","deleteTask","listTasks"],"schema":"Task"},{"title":"Bot","description":"","name":"bot","operations":["createBot","updateBot","transferBot","listBots","getBot","deleteBot","getBotLogs","getBotWebchat","getBotAnalytics","getBotIssue","listBotIssues","deleteBotIssue","listBotIssueEvents","listBotVersions"],"schema":"Bot"},{"title":"Integration","description":"","name":"integration","operations":["listIntegrationApiKeys","createIntegrationApiKey","deleteIntegrationApiKey","createIntegration","updateIntegration","listIntegrations","getIntegration","getIntegrationLogs","getIntegrationByName","deleteIntegration"],"schema":"Integration"},{"title":"Interface","description":"","name":"interface","operations":["createInterface","getInterface","getInterfaceByName","updateInterface","deleteInterface","listInterfaces"],"schema":"Interface"},{"title":"Workspace","description":"","name":"workspace","operations":["setWorkspacePaymentMethod","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","listPersonalAccessTokens","createPersonalAccessToken","deletePersonalAccessToken","setAccountPreference","getAccountPreference"],"schema":"Account"},{"title":"Usage","description":"","name":"usage","operations":["getUsage","getMultipleUsages"],"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":["listTables","getTable","getOrCreateTable","createTable","duplicateTable","updateTable","renameTableColumn","deleteTable","getTableRow","findTableRows","createTableRows","deleteTableRows","updateTableRows","upsertTableRows"],"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 Office, HTML, CSV, 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":["upsertFile","deleteFile","listFiles","getFile","updateFileMetadata","searchFiles"],"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."}]}