@botpress/api 1.18.0 → 1.18.2
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 +247 -83
- package/dist/src/gen/admin/state.d.ts +102 -32
- package/dist/src/gen/runtime/state.d.ts +0 -3
- package/dist/src/gen/state.d.ts +102 -35
- package/dist/src/index.d.ts +2 -2
- package/package.json +1 -1
- package/src/gen/admin/metadata.json +1 -1
- package/src/gen/admin/openapi.json +1 -1
- package/src/gen/admin/state.ts +122 -37
- package/src/gen/files/openapi.json +1 -1
- package/src/gen/files/state.ts +1 -1
- package/src/gen/metadata.json +1 -1
- package/src/gen/openapi.json +1 -1
- package/src/gen/runtime/openapi.json +1 -1
- package/src/gen/runtime/state.ts +1 -4
- package/src/gen/state.ts +122 -40
- package/src/gen/tables/openapi.json +1 -1
- package/src/gen/tables/state.ts +1 -1
package/dist/src/gen/state.d.ts
CHANGED
|
@@ -2317,9 +2317,6 @@ export declare const state: {
|
|
|
2317
2317
|
description: string;
|
|
2318
2318
|
method: "post";
|
|
2319
2319
|
path: string;
|
|
2320
|
-
disableDefaultParameters: {
|
|
2321
|
-
"x-integration-id": boolean;
|
|
2322
|
-
};
|
|
2323
2320
|
requestBody: {
|
|
2324
2321
|
description: string;
|
|
2325
2322
|
schema: {
|
|
@@ -6869,6 +6866,107 @@ export declare const state: {
|
|
|
6869
6866
|
};
|
|
6870
6867
|
};
|
|
6871
6868
|
};
|
|
6869
|
+
listActionRuns: {
|
|
6870
|
+
name: string;
|
|
6871
|
+
description: string;
|
|
6872
|
+
method: "get";
|
|
6873
|
+
path: string;
|
|
6874
|
+
section: "bot";
|
|
6875
|
+
parameters: {
|
|
6876
|
+
id: {
|
|
6877
|
+
type: "string";
|
|
6878
|
+
description: string;
|
|
6879
|
+
in: "path";
|
|
6880
|
+
};
|
|
6881
|
+
integrationName: {
|
|
6882
|
+
in: "query";
|
|
6883
|
+
description: string;
|
|
6884
|
+
type: "string";
|
|
6885
|
+
required: true;
|
|
6886
|
+
};
|
|
6887
|
+
timestampFrom: {
|
|
6888
|
+
in: "query";
|
|
6889
|
+
description: string;
|
|
6890
|
+
type: "string";
|
|
6891
|
+
};
|
|
6892
|
+
timestampUntil: {
|
|
6893
|
+
in: "query";
|
|
6894
|
+
description: string;
|
|
6895
|
+
type: "string";
|
|
6896
|
+
};
|
|
6897
|
+
nextToken: {
|
|
6898
|
+
in: "query";
|
|
6899
|
+
description: string;
|
|
6900
|
+
type: "string";
|
|
6901
|
+
};
|
|
6902
|
+
};
|
|
6903
|
+
response: {
|
|
6904
|
+
description: string;
|
|
6905
|
+
schema: {
|
|
6906
|
+
type: "object";
|
|
6907
|
+
properties: {
|
|
6908
|
+
data: {
|
|
6909
|
+
type: "array";
|
|
6910
|
+
items: {
|
|
6911
|
+
type: "object";
|
|
6912
|
+
properties: {
|
|
6913
|
+
timestamp: {
|
|
6914
|
+
type: "string";
|
|
6915
|
+
description: string;
|
|
6916
|
+
};
|
|
6917
|
+
integrationName: {
|
|
6918
|
+
type: "string";
|
|
6919
|
+
};
|
|
6920
|
+
actionType: {
|
|
6921
|
+
type: "string";
|
|
6922
|
+
};
|
|
6923
|
+
input: {
|
|
6924
|
+
type: "object";
|
|
6925
|
+
properties: {};
|
|
6926
|
+
additionalProperties: true;
|
|
6927
|
+
description: string;
|
|
6928
|
+
};
|
|
6929
|
+
output: {
|
|
6930
|
+
type: "object";
|
|
6931
|
+
properties: {};
|
|
6932
|
+
additionalProperties: true;
|
|
6933
|
+
nullable: true;
|
|
6934
|
+
description: string;
|
|
6935
|
+
};
|
|
6936
|
+
status: {
|
|
6937
|
+
type: "string";
|
|
6938
|
+
enum: string[];
|
|
6939
|
+
};
|
|
6940
|
+
durationMs: {
|
|
6941
|
+
type: "number";
|
|
6942
|
+
};
|
|
6943
|
+
cached: {
|
|
6944
|
+
type: "boolean";
|
|
6945
|
+
};
|
|
6946
|
+
errorMessage: {
|
|
6947
|
+
type: "string";
|
|
6948
|
+
nullable: true;
|
|
6949
|
+
};
|
|
6950
|
+
};
|
|
6951
|
+
required: string[];
|
|
6952
|
+
};
|
|
6953
|
+
};
|
|
6954
|
+
meta: {
|
|
6955
|
+
type: "object";
|
|
6956
|
+
properties: {
|
|
6957
|
+
nextToken: {
|
|
6958
|
+
type: "string";
|
|
6959
|
+
};
|
|
6960
|
+
};
|
|
6961
|
+
additionalProperties: false;
|
|
6962
|
+
};
|
|
6963
|
+
};
|
|
6964
|
+
required: string[];
|
|
6965
|
+
title: string;
|
|
6966
|
+
additionalProperties: false;
|
|
6967
|
+
};
|
|
6968
|
+
};
|
|
6969
|
+
};
|
|
6872
6970
|
getBotIssue: {
|
|
6873
6971
|
name: string;
|
|
6874
6972
|
description: string;
|
|
@@ -10769,22 +10867,6 @@ export declare const state: {
|
|
|
10769
10867
|
additionalProperties: false;
|
|
10770
10868
|
};
|
|
10771
10869
|
};
|
|
10772
|
-
sandbox: {
|
|
10773
|
-
type: "object";
|
|
10774
|
-
properties: {
|
|
10775
|
-
identifierExtractScript: {
|
|
10776
|
-
type: "string";
|
|
10777
|
-
maxLength: number;
|
|
10778
|
-
nullable: true;
|
|
10779
|
-
};
|
|
10780
|
-
messageExtractScript: {
|
|
10781
|
-
type: "string";
|
|
10782
|
-
maxLength: number;
|
|
10783
|
-
nullable: true;
|
|
10784
|
-
};
|
|
10785
|
-
};
|
|
10786
|
-
additionalProperties: false;
|
|
10787
|
-
};
|
|
10788
10870
|
attributes: {
|
|
10789
10871
|
type: "object";
|
|
10790
10872
|
additionalProperties: {
|
|
@@ -11339,22 +11421,6 @@ export declare const state: {
|
|
|
11339
11421
|
additionalProperties: false;
|
|
11340
11422
|
};
|
|
11341
11423
|
};
|
|
11342
|
-
sandbox: {
|
|
11343
|
-
type: "object";
|
|
11344
|
-
properties: {
|
|
11345
|
-
identifierExtractScript: {
|
|
11346
|
-
type: "string";
|
|
11347
|
-
maxLength: number;
|
|
11348
|
-
nullable: true;
|
|
11349
|
-
};
|
|
11350
|
-
messageExtractScript: {
|
|
11351
|
-
type: "string";
|
|
11352
|
-
maxLength: number;
|
|
11353
|
-
nullable: true;
|
|
11354
|
-
};
|
|
11355
|
-
};
|
|
11356
|
-
additionalProperties: false;
|
|
11357
|
-
};
|
|
11358
11424
|
attributes: {
|
|
11359
11425
|
type: "object";
|
|
11360
11426
|
additionalProperties: {
|
|
@@ -16451,6 +16517,7 @@ export declare const state: {
|
|
|
16451
16517
|
getBotLogsResponse: true;
|
|
16452
16518
|
getBotWebchatResponse: true;
|
|
16453
16519
|
getBotAnalyticsResponse: true;
|
|
16520
|
+
listActionRunsResponse: true;
|
|
16454
16521
|
getBotIssueResponse: true;
|
|
16455
16522
|
listBotIssuesResponse: true;
|
|
16456
16523
|
deleteBotIssueResponse: true;
|
package/dist/src/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export * from './gen/state';
|
|
2
2
|
export declare const api: {
|
|
3
3
|
getModelRef: (name: "Bot" | "Integration" | "Interface" | "Plugin" | "Workspace" | "WorkspaceMember" | "Account" | "Usage" | "Issue" | "IssueEvent" | "Activity" | "Version" | "User" | "Conversation" | "Event" | "Message" | "State" | "Task" | "Workflow" | "Table" | "Column" | "Row" | "File") => import("@bpinternal/opapi").OpenApiZodAny;
|
|
4
|
-
addOperation: <Path extends string>(operationProps: import("@bpinternal/opapi").Operation<"x-
|
|
4
|
+
addOperation: <Path extends string>(operationProps: import("@bpinternal/opapi").Operation<"x-workspace-id", "user" | "conversation" | "event" | "message" | "state" | "hub" | "action" | "task" | "workflow" | "tag" | "bot" | "integration" | "interface" | "plugin" | "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>;
|
|
7
7
|
(dir: string, props: import("@bpinternal/opapi").GenerateClientProps): Promise<void>;
|
|
@@ -18,7 +18,7 @@ export declare const api: {
|
|
|
18
18
|
export * as runtime from './gen/runtime/state';
|
|
19
19
|
export declare const runtimeApi: {
|
|
20
20
|
getModelRef: (name: "Bot" | "Integration" | "Interface" | "Plugin" | "Workspace" | "WorkspaceMember" | "Account" | "Usage" | "Issue" | "IssueEvent" | "Activity" | "Version" | "User" | "Conversation" | "Event" | "Message" | "State" | "Task" | "Workflow" | "Table" | "Column" | "Row" | "File") => import("@bpinternal/opapi").OpenApiZodAny;
|
|
21
|
-
addOperation: <Path extends string>(operationProps: import("@bpinternal/opapi").Operation<
|
|
21
|
+
addOperation: <Path extends string>(operationProps: import("@bpinternal/opapi").Operation<string, "user" | "conversation" | "event" | "message" | "state" | "hub" | "action" | "task" | "workflow" | "tag" | "bot" | "integration" | "interface" | "plugin" | "workspace" | "workspaceMember" | "account" | "usage" | "quotas" | "helper" | "activity" | "tables" | "files", Path, "zod-schema">) => void;
|
|
22
22
|
exportClient: {
|
|
23
23
|
(dir: string, openapiGeneratorEndpoint: string, postProcessors?: import("@bpinternal/opapi").OpenApiPostProcessors | undefined): Promise<void>;
|
|
24
24
|
(dir: string, props: import("@bpinternal/opapi").GenerateClientProps): Promise<void>;
|
package/package.json
CHANGED
|
@@ -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","getBotIssue","listBotIssues","deleteBotIssue","listBotIssueEvents","listBotVersions","getBotVersion","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","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","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","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","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."}]}
|