@epilot/erp-integration-client 0.28.0-rc2 → 0.28.0-rc3
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/openapi.d.ts +12 -2
- package/dist/openapi.json +16 -5
- package/package.json +1 -1
package/dist/openapi.d.ts
CHANGED
|
@@ -794,6 +794,12 @@ declare namespace Components {
|
|
|
794
794
|
*/
|
|
795
795
|
content_type?: string;
|
|
796
796
|
}
|
|
797
|
+
export interface FileProxySecureProxyAttachment {
|
|
798
|
+
/**
|
|
799
|
+
* Slug of the secure_proxy use case in the same integration.
|
|
800
|
+
*/
|
|
801
|
+
use_case_slug: string;
|
|
802
|
+
}
|
|
797
803
|
export interface FileProxyStep {
|
|
798
804
|
/**
|
|
799
805
|
* Handlebars template for the request URL
|
|
@@ -921,9 +927,12 @@ declare namespace Components {
|
|
|
921
927
|
*/
|
|
922
928
|
export interface FileProxyUseCaseConfiguration {
|
|
923
929
|
/**
|
|
924
|
-
*
|
|
930
|
+
* Optional secure proxy attachment for routing all outbound file proxy requests.
|
|
931
|
+
* Only `use_case_slug` is supported and the referenced secure_proxy use case
|
|
932
|
+
* must belong to the same integration.
|
|
933
|
+
*
|
|
925
934
|
*/
|
|
926
|
-
|
|
935
|
+
secure_proxy?: FileProxySecureProxyAttachment;
|
|
927
936
|
auth?: FileProxyAuth;
|
|
928
937
|
/**
|
|
929
938
|
* Additional use-case-specific parameters expected in the download URL query string (beyond the required orgId, integrationId, and useCaseSlug or useCaseId)
|
|
@@ -4425,6 +4434,7 @@ export type ErrorResponseBase = Components.Schemas.ErrorResponseBase;
|
|
|
4425
4434
|
export type FileProxyAuth = Components.Schemas.FileProxyAuth;
|
|
4426
4435
|
export type FileProxyParam = Components.Schemas.FileProxyParam;
|
|
4427
4436
|
export type FileProxyResponseConfig = Components.Schemas.FileProxyResponseConfig;
|
|
4437
|
+
export type FileProxySecureProxyAttachment = Components.Schemas.FileProxySecureProxyAttachment;
|
|
4428
4438
|
export type FileProxyStep = Components.Schemas.FileProxyStep;
|
|
4429
4439
|
export type FileProxyUrlConfig = Components.Schemas.FileProxyUrlConfig;
|
|
4430
4440
|
export type FileProxyUrlParam = Components.Schemas.FileProxyUrlParam;
|
package/dist/openapi.json
CHANGED
|
@@ -4270,11 +4270,9 @@
|
|
|
4270
4270
|
],
|
|
4271
4271
|
"description": "Configuration for file_proxy use cases. Defines how to authenticate and fetch files from external document systems.\n\nThe file proxy download URL always requires `orgId`, `integrationId`, and either `useCaseSlug` (recommended) or `useCaseId` (legacy UUID) as query parameters.\nThe `orgId` is included in the signed URL to establish organization context without requiring authentication.\nAdditional use-case-specific parameters are declared in the `params` array.\n",
|
|
4272
4272
|
"properties": {
|
|
4273
|
-
"
|
|
4274
|
-
"
|
|
4275
|
-
"
|
|
4276
|
-
"description": "Whether requests require VPC routing for IP allowlisting. Read-only after creation — can only be modified directly in DynamoDB.",
|
|
4277
|
-
"default": false
|
|
4273
|
+
"secure_proxy": {
|
|
4274
|
+
"$ref": "#/components/schemas/FileProxySecureProxyAttachment",
|
|
4275
|
+
"description": "Optional secure proxy attachment for routing all outbound file proxy requests.\nOnly `use_case_slug` is supported and the referenced secure_proxy use case\nmust belong to the same integration.\n"
|
|
4278
4276
|
},
|
|
4279
4277
|
"auth": {
|
|
4280
4278
|
"$ref": "#/components/schemas/FileProxyAuth"
|
|
@@ -4299,6 +4297,19 @@
|
|
|
4299
4297
|
}
|
|
4300
4298
|
}
|
|
4301
4299
|
},
|
|
4300
|
+
"FileProxySecureProxyAttachment": {
|
|
4301
|
+
"type": "object",
|
|
4302
|
+
"required": [
|
|
4303
|
+
"use_case_slug"
|
|
4304
|
+
],
|
|
4305
|
+
"additionalProperties": false,
|
|
4306
|
+
"properties": {
|
|
4307
|
+
"use_case_slug": {
|
|
4308
|
+
"type": "string",
|
|
4309
|
+
"description": "Slug of the secure_proxy use case in the same integration."
|
|
4310
|
+
}
|
|
4311
|
+
}
|
|
4312
|
+
},
|
|
4302
4313
|
"FileProxyAuth": {
|
|
4303
4314
|
"type": "object",
|
|
4304
4315
|
"required": [
|