@apifreaks/openapi-specs 0.1.2 → 0.2.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.
- package/dist/index.cjs +744 -2
- package/dist/index.d.cts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +744 -2
- package/dist/specs/pdf/bulk-pdf-generator.yaml +199 -0
- package/dist/specs/pdf/pdf-generator.yaml +316 -0
- package/package.json +1 -1
- package/specs/pdf/bulk-pdf-generator.json +290 -0
- package/specs/pdf/pdf-generator.json +444 -0
package/dist/index.js
CHANGED
|
@@ -17260,6 +17260,298 @@ var astronomy_data_default = {
|
|
|
17260
17260
|
]
|
|
17261
17261
|
};
|
|
17262
17262
|
|
|
17263
|
+
// specs/pdf/bulk-pdf-generator.json
|
|
17264
|
+
var bulk_pdf_generator_default = {
|
|
17265
|
+
openapi: "3.1.1",
|
|
17266
|
+
info: {
|
|
17267
|
+
title: "PDF Generator API - Bulk PDF Generation from CSV",
|
|
17268
|
+
version: "1.0.0",
|
|
17269
|
+
description: "Generate one PDF per row from an uploaded CSV file against a template you designed in the APIFreaks PDF Template Builder. Each row is processed independently, and the response returns an array of results, each with its own pdf_url. Authentication is done with your APIFreaks API key passed in the X-apikey header.",
|
|
17270
|
+
contact: {
|
|
17271
|
+
name: "APIFreaks Support",
|
|
17272
|
+
url: "https://apifreaks.com/contact",
|
|
17273
|
+
email: "support@apifreaks.com"
|
|
17274
|
+
}
|
|
17275
|
+
},
|
|
17276
|
+
servers: [
|
|
17277
|
+
{
|
|
17278
|
+
url: "https://api.apifreaks.com/v1.0",
|
|
17279
|
+
description: "PDF Generator API Server"
|
|
17280
|
+
}
|
|
17281
|
+
],
|
|
17282
|
+
paths: {
|
|
17283
|
+
"/pdf/template/generate/bulk": {
|
|
17284
|
+
post: {
|
|
17285
|
+
tags: ["PDF Template APIs"],
|
|
17286
|
+
summary: "Generate PDFs in bulk from a CSV",
|
|
17287
|
+
description: "Upload a CSV file where each row is one record. The API generates one PDF per row and returns an array of results, each with its own pdf_url. Rows are processed independently, so a failure in one row does not block the rest of the batch. The response gives a row-by-row breakdown of which PDFs succeeded and which failed.",
|
|
17288
|
+
parameters: [
|
|
17289
|
+
{
|
|
17290
|
+
name: "template_id",
|
|
17291
|
+
in: "query",
|
|
17292
|
+
required: true,
|
|
17293
|
+
schema: {
|
|
17294
|
+
type: "string"
|
|
17295
|
+
},
|
|
17296
|
+
description: "The template to render, from the APIFreaks PDF Template Builder. Copy it from your dashboard when you save the template."
|
|
17297
|
+
},
|
|
17298
|
+
{
|
|
17299
|
+
name: "version",
|
|
17300
|
+
in: "query",
|
|
17301
|
+
required: false,
|
|
17302
|
+
schema: {
|
|
17303
|
+
type: "string",
|
|
17304
|
+
pattern: "^v"
|
|
17305
|
+
},
|
|
17306
|
+
description: "Template version to render, e.g. v2. Must start with v. Omit this parameter entirely to use the latest version; the literal value 'latest' is not accepted by the API."
|
|
17307
|
+
}
|
|
17308
|
+
],
|
|
17309
|
+
requestBody: {
|
|
17310
|
+
description: "Multipart form-data body carrying the CSV file to render. Each row in the CSV is one record and produces one PDF.",
|
|
17311
|
+
required: true,
|
|
17312
|
+
content: {
|
|
17313
|
+
"multipart/form-data": {
|
|
17314
|
+
schema: {
|
|
17315
|
+
$ref: "#/components/schemas/CsvUploadRequest"
|
|
17316
|
+
}
|
|
17317
|
+
}
|
|
17318
|
+
}
|
|
17319
|
+
},
|
|
17320
|
+
responses: {
|
|
17321
|
+
"200": {
|
|
17322
|
+
description: "PDFs generated successfully. The response is an array of results, one entry per CSV row, each with its own pdf_url.",
|
|
17323
|
+
content: {
|
|
17324
|
+
"application/json": {
|
|
17325
|
+
schema: {
|
|
17326
|
+
type: "array",
|
|
17327
|
+
items: {
|
|
17328
|
+
$ref: "#/components/schemas/TemplateGenerationResponse"
|
|
17329
|
+
}
|
|
17330
|
+
},
|
|
17331
|
+
examples: {
|
|
17332
|
+
success: {
|
|
17333
|
+
summary: "Generated PDFs for two rows",
|
|
17334
|
+
value: [
|
|
17335
|
+
{
|
|
17336
|
+
template_id: "73691bce-1c58-4370-acc6-64b2dd14f81c",
|
|
17337
|
+
pdf_url: "https://s3.eu-central-2.wasabisys.com/w.storage.apifreaks.com/pdf_templates/73691bce-1c58-4370-acc6-64b2dd14f81c/Candidate%20Resume_20260810141245054106_1.pdf",
|
|
17338
|
+
created_at: "2026-08-10T14:12:47.887Z",
|
|
17339
|
+
expiration_time: "2026-11-10T14:12:47.887Z"
|
|
17340
|
+
},
|
|
17341
|
+
{
|
|
17342
|
+
template_id: "73691bce-1c58-4370-acc6-64b2dd14f81c",
|
|
17343
|
+
pdf_url: "https://s3.eu-central-2.wasabisys.com/w.storage.apifreaks.com/pdf_templates/73691bce-1c58-4370-acc6-64b2dd14f81c/Candidate%20Resume_20260810141245054154_2.pdf",
|
|
17344
|
+
created_at: "2026-08-10T14:12:47.940Z",
|
|
17345
|
+
expiration_time: "2026-11-10T14:12:47.940Z"
|
|
17346
|
+
}
|
|
17347
|
+
]
|
|
17348
|
+
}
|
|
17349
|
+
}
|
|
17350
|
+
}
|
|
17351
|
+
}
|
|
17352
|
+
},
|
|
17353
|
+
"400": {
|
|
17354
|
+
description: "Bad Request \u2014 Missing parameters, a file that is not a CSV, or data larger than 10 MB.",
|
|
17355
|
+
content: {
|
|
17356
|
+
"application/json": {
|
|
17357
|
+
schema: {
|
|
17358
|
+
$ref: "#/components/schemas/ErrorResponse"
|
|
17359
|
+
},
|
|
17360
|
+
examples: {
|
|
17361
|
+
CsvFileRequired: {
|
|
17362
|
+
summary: "Uploaded file is not a CSV",
|
|
17363
|
+
value: {
|
|
17364
|
+
timestamp: "2026-08-10T14:13:14.497Z",
|
|
17365
|
+
path: "/v1.0/generate-pdf/bulk",
|
|
17366
|
+
status: 400,
|
|
17367
|
+
error: "CSV File Required",
|
|
17368
|
+
message: "Only CSV files are supported. Please upload a valid CSV file."
|
|
17369
|
+
}
|
|
17370
|
+
}
|
|
17371
|
+
}
|
|
17372
|
+
}
|
|
17373
|
+
}
|
|
17374
|
+
},
|
|
17375
|
+
"401": {
|
|
17376
|
+
description: "Unauthorized \u2014 The API key is missing or invalid.",
|
|
17377
|
+
content: {
|
|
17378
|
+
"application/json": {
|
|
17379
|
+
schema: {
|
|
17380
|
+
$ref: "#/components/schemas/ErrorResponse"
|
|
17381
|
+
},
|
|
17382
|
+
examples: {
|
|
17383
|
+
InvalidApiKey: {
|
|
17384
|
+
summary: "Provided API key is invalid",
|
|
17385
|
+
value: {
|
|
17386
|
+
error: "API Access Exception",
|
|
17387
|
+
message: "Provided API key is invalid. [For Technical Support: support@apifreaks.com]",
|
|
17388
|
+
path: "/v1.0/pdf/template/generate/bulk",
|
|
17389
|
+
status: 401,
|
|
17390
|
+
timestamp: "2026-08-10T14:13:14.996Z"
|
|
17391
|
+
}
|
|
17392
|
+
}
|
|
17393
|
+
}
|
|
17394
|
+
}
|
|
17395
|
+
}
|
|
17396
|
+
},
|
|
17397
|
+
"403": {
|
|
17398
|
+
description: "Forbidden \u2014 The account does not have access to this template.",
|
|
17399
|
+
content: {
|
|
17400
|
+
"application/json": {
|
|
17401
|
+
schema: {
|
|
17402
|
+
$ref: "#/components/schemas/ErrorResponse"
|
|
17403
|
+
}
|
|
17404
|
+
}
|
|
17405
|
+
}
|
|
17406
|
+
},
|
|
17407
|
+
"404": {
|
|
17408
|
+
description: "Not Found \u2014 No template matches the template_id, or the requested version does not exist.",
|
|
17409
|
+
content: {
|
|
17410
|
+
"application/json": {
|
|
17411
|
+
schema: {
|
|
17412
|
+
$ref: "#/components/schemas/ErrorResponse"
|
|
17413
|
+
}
|
|
17414
|
+
}
|
|
17415
|
+
}
|
|
17416
|
+
},
|
|
17417
|
+
"415": {
|
|
17418
|
+
description: "Unsupported Media Type \u2014 The request Content-Type is not supported for this endpoint.",
|
|
17419
|
+
content: {
|
|
17420
|
+
"application/json": {
|
|
17421
|
+
schema: {
|
|
17422
|
+
$ref: "#/components/schemas/ErrorResponse"
|
|
17423
|
+
}
|
|
17424
|
+
}
|
|
17425
|
+
}
|
|
17426
|
+
},
|
|
17427
|
+
"422": {
|
|
17428
|
+
description: "Unprocessable Entity \u2014 The request contains invalid or missing data.",
|
|
17429
|
+
content: {
|
|
17430
|
+
"application/json": {
|
|
17431
|
+
schema: {
|
|
17432
|
+
$ref: "#/components/schemas/ErrorResponse"
|
|
17433
|
+
}
|
|
17434
|
+
}
|
|
17435
|
+
}
|
|
17436
|
+
},
|
|
17437
|
+
"500": {
|
|
17438
|
+
description: "Internal Server Error \u2014 An unexpected error occurred, or the PDF could not be generated.",
|
|
17439
|
+
content: {
|
|
17440
|
+
"application/json": {
|
|
17441
|
+
schema: {
|
|
17442
|
+
$ref: "#/components/schemas/ErrorResponse"
|
|
17443
|
+
}
|
|
17444
|
+
}
|
|
17445
|
+
}
|
|
17446
|
+
},
|
|
17447
|
+
"504": {
|
|
17448
|
+
description: "Gateway Timeout \u2014 The request went past the 100 second processing limit.",
|
|
17449
|
+
content: {
|
|
17450
|
+
"application/json": {
|
|
17451
|
+
schema: {
|
|
17452
|
+
$ref: "#/components/schemas/ErrorResponse"
|
|
17453
|
+
}
|
|
17454
|
+
}
|
|
17455
|
+
}
|
|
17456
|
+
}
|
|
17457
|
+
},
|
|
17458
|
+
operationId: "generatePdfsFromCsv"
|
|
17459
|
+
}
|
|
17460
|
+
}
|
|
17461
|
+
},
|
|
17462
|
+
components: {
|
|
17463
|
+
securitySchemes: {
|
|
17464
|
+
ApiKeyAuthHeader: {
|
|
17465
|
+
type: "apiKey",
|
|
17466
|
+
in: "header",
|
|
17467
|
+
name: "X-apikey",
|
|
17468
|
+
description: "Pass your API key via the X-apikey request header."
|
|
17469
|
+
},
|
|
17470
|
+
ApiKeyAuthQuery: {
|
|
17471
|
+
type: "apiKey",
|
|
17472
|
+
in: "query",
|
|
17473
|
+
name: "apiKey",
|
|
17474
|
+
description: "Pass your API key via the apiKey query parameter."
|
|
17475
|
+
}
|
|
17476
|
+
},
|
|
17477
|
+
schemas: {
|
|
17478
|
+
TemplateGenerationResponse: {
|
|
17479
|
+
type: "object",
|
|
17480
|
+
description: "Result of a PDF generation request, containing the hosted URL of the generated PDF.",
|
|
17481
|
+
required: ["template_id", "pdf_url", "created_at", "expiration_time"],
|
|
17482
|
+
properties: {
|
|
17483
|
+
template_id: {
|
|
17484
|
+
type: "string",
|
|
17485
|
+
description: "The template that was rendered."
|
|
17486
|
+
},
|
|
17487
|
+
pdf_url: {
|
|
17488
|
+
type: "string",
|
|
17489
|
+
description: "Hosted URL of the generated PDF."
|
|
17490
|
+
},
|
|
17491
|
+
created_at: {
|
|
17492
|
+
type: "string",
|
|
17493
|
+
format: "date-time",
|
|
17494
|
+
description: "When the PDF was generated (ISO 8601)."
|
|
17495
|
+
},
|
|
17496
|
+
expiration_time: {
|
|
17497
|
+
type: "string",
|
|
17498
|
+
format: "date-time",
|
|
17499
|
+
description: "When the hosted PDF expires (ISO 8601)."
|
|
17500
|
+
}
|
|
17501
|
+
}
|
|
17502
|
+
},
|
|
17503
|
+
CsvUploadRequest: {
|
|
17504
|
+
type: "object",
|
|
17505
|
+
description: "Multipart form-data request body containing the CSV file to render in bulk.",
|
|
17506
|
+
required: ["file"],
|
|
17507
|
+
properties: {
|
|
17508
|
+
file: {
|
|
17509
|
+
type: "string",
|
|
17510
|
+
format: "binary",
|
|
17511
|
+
description: "A CSV file uploaded as form-data where each row is one record. One PDF is generated per row."
|
|
17512
|
+
}
|
|
17513
|
+
}
|
|
17514
|
+
},
|
|
17515
|
+
ErrorResponse: {
|
|
17516
|
+
type: "object",
|
|
17517
|
+
description: "Standard error envelope returned by the API on failed requests.",
|
|
17518
|
+
required: ["message"],
|
|
17519
|
+
properties: {
|
|
17520
|
+
error: {
|
|
17521
|
+
type: "string",
|
|
17522
|
+
description: "Short error category or exception type."
|
|
17523
|
+
},
|
|
17524
|
+
message: {
|
|
17525
|
+
type: "string",
|
|
17526
|
+
description: "Human-readable error message describing the failure."
|
|
17527
|
+
},
|
|
17528
|
+
path: {
|
|
17529
|
+
type: "string",
|
|
17530
|
+
description: "API endpoint path that produced the error."
|
|
17531
|
+
},
|
|
17532
|
+
status: {
|
|
17533
|
+
type: "integer",
|
|
17534
|
+
description: "HTTP status code returned with the error."
|
|
17535
|
+
},
|
|
17536
|
+
timestamp: {
|
|
17537
|
+
type: "string",
|
|
17538
|
+
format: "date-time",
|
|
17539
|
+
description: "Timestamp when the error occurred (ISO 8601)."
|
|
17540
|
+
}
|
|
17541
|
+
}
|
|
17542
|
+
}
|
|
17543
|
+
}
|
|
17544
|
+
},
|
|
17545
|
+
security: [
|
|
17546
|
+
{
|
|
17547
|
+
ApiKeyAuthHeader: []
|
|
17548
|
+
},
|
|
17549
|
+
{
|
|
17550
|
+
ApiKeyAuthQuery: []
|
|
17551
|
+
}
|
|
17552
|
+
]
|
|
17553
|
+
};
|
|
17554
|
+
|
|
17263
17555
|
// specs/pdf/delete-pdf-page.json
|
|
17264
17556
|
var delete_pdf_page_default = {
|
|
17265
17557
|
openapi: "3.1.1",
|
|
@@ -19862,6 +20154,452 @@ var pdf_files_default = {
|
|
|
19862
20154
|
]
|
|
19863
20155
|
};
|
|
19864
20156
|
|
|
20157
|
+
// specs/pdf/pdf-generator.json
|
|
20158
|
+
var pdf_generator_default = {
|
|
20159
|
+
openapi: "3.1.1",
|
|
20160
|
+
info: {
|
|
20161
|
+
title: "PDF Generator API - Create PDFs from Templates",
|
|
20162
|
+
version: "1.0.0",
|
|
20163
|
+
description: "Generate PDFs from templates you design once in the APIFreaks PDF Template Builder. Send JSON in the request body or provide a data_url, and the API renders your template into a hosted PDF document. Authentication is done with your APIFreaks API key passed in the X-apikey header.",
|
|
20164
|
+
contact: {
|
|
20165
|
+
name: "APIFreaks Support",
|
|
20166
|
+
url: "https://apifreaks.com/contact",
|
|
20167
|
+
email: "support@apifreaks.com"
|
|
20168
|
+
}
|
|
20169
|
+
},
|
|
20170
|
+
servers: [
|
|
20171
|
+
{
|
|
20172
|
+
url: "https://api.apifreaks.com/v1.0",
|
|
20173
|
+
description: "PDF Generator API Server"
|
|
20174
|
+
}
|
|
20175
|
+
],
|
|
20176
|
+
paths: {
|
|
20177
|
+
"/pdf/template/generate": {
|
|
20178
|
+
post: {
|
|
20179
|
+
tags: ["PDF Template APIs"],
|
|
20180
|
+
summary: "Generate a PDF from a template",
|
|
20181
|
+
description: "Renders the template identified by template_id with the JSON data supplied in the request body (or fetched from data_url). Returns a hosted URL for the generated PDF. Provide either a request body or a data_url; one of the two is required. The keys of the data object are the fields you bound when you designed the template in the APIFreaks PDF Template Builder, so the exact shape is up to you. Pin the version parameter to a specific template version (e.g. version=v2) so later design changes never touch what is already live; omit it to use the latest version.",
|
|
20182
|
+
parameters: [
|
|
20183
|
+
{
|
|
20184
|
+
name: "template_id",
|
|
20185
|
+
in: "query",
|
|
20186
|
+
required: true,
|
|
20187
|
+
schema: {
|
|
20188
|
+
type: "string"
|
|
20189
|
+
},
|
|
20190
|
+
description: "The template to render, from the APIFreaks PDF Template Builder. Copy it from your dashboard when you save the template."
|
|
20191
|
+
},
|
|
20192
|
+
{
|
|
20193
|
+
name: "version",
|
|
20194
|
+
in: "query",
|
|
20195
|
+
required: false,
|
|
20196
|
+
schema: {
|
|
20197
|
+
type: "string",
|
|
20198
|
+
pattern: "^v"
|
|
20199
|
+
},
|
|
20200
|
+
description: "Template version to render, e.g. v2. Must start with v. Omit this parameter entirely to use the latest version; the literal value 'latest' is not accepted by the API."
|
|
20201
|
+
},
|
|
20202
|
+
{
|
|
20203
|
+
name: "data_url",
|
|
20204
|
+
in: "query",
|
|
20205
|
+
required: false,
|
|
20206
|
+
schema: {
|
|
20207
|
+
type: "string",
|
|
20208
|
+
format: "uri"
|
|
20209
|
+
},
|
|
20210
|
+
description: "A URL the API fetches your JSON data from, instead of the request body. Provide this when you are not sending a request body."
|
|
20211
|
+
}
|
|
20212
|
+
],
|
|
20213
|
+
requestBody: {
|
|
20214
|
+
description: "The template's data as a JSON object. The keys are the fields you bound when you designed the template, so the exact shape is up to you. Provide the body when you are not passing a data_url; one of the two is required.",
|
|
20215
|
+
required: false,
|
|
20216
|
+
content: {
|
|
20217
|
+
"application/json": {
|
|
20218
|
+
schema: {
|
|
20219
|
+
type: "object",
|
|
20220
|
+
additionalProperties: true,
|
|
20221
|
+
description: "Free-form JSON object whose keys map to the fields bound in the template."
|
|
20222
|
+
},
|
|
20223
|
+
examples: {
|
|
20224
|
+
resumeTemplate: {
|
|
20225
|
+
summary: "Resume template data",
|
|
20226
|
+
value: {
|
|
20227
|
+
candidate_name: "Ava Thompson",
|
|
20228
|
+
candidate_title: "Senior Operations Analyst",
|
|
20229
|
+
email: "ava.thompson@example.com",
|
|
20230
|
+
phone: "+1 (555) 381-2048",
|
|
20231
|
+
city: "Austin, TX",
|
|
20232
|
+
portfolio_url: "portfolio.example.com",
|
|
20233
|
+
profile_summary: "Analytical operations professional with 8+ years of experience improving reporting pipelines, streamlining process documentation, and coordinating cross-functional delivery for distributed teams across multiple time zones.",
|
|
20234
|
+
company_name: "Northwind Logistics",
|
|
20235
|
+
job_title: "Operations Analyst",
|
|
20236
|
+
employment_period: "2021 - Present",
|
|
20237
|
+
job_achievement_1: "Led weekly KPI reporting for finance, fulfillment, and customer success stakeholders across three business units.",
|
|
20238
|
+
job_achievement_2: "Reduced manual reconciliation work by 35% through workflow redesign and documentation automation.",
|
|
20239
|
+
job_achievement_3: "Spearheaded a cross-team initiative that improved on-time delivery metrics by 18% within six months.",
|
|
20240
|
+
skills: [
|
|
20241
|
+
{
|
|
20242
|
+
skill: "Process Improvement",
|
|
20243
|
+
level: "Advanced",
|
|
20244
|
+
years: "7"
|
|
20245
|
+
},
|
|
20246
|
+
{
|
|
20247
|
+
skill: "Stakeholder Reporting",
|
|
20248
|
+
level: "Expert",
|
|
20249
|
+
years: "8"
|
|
20250
|
+
},
|
|
20251
|
+
{
|
|
20252
|
+
skill: "Cross-functional Coordination",
|
|
20253
|
+
level: "Advanced",
|
|
20254
|
+
years: "5"
|
|
20255
|
+
},
|
|
20256
|
+
{
|
|
20257
|
+
skill: "Workflow Documentation",
|
|
20258
|
+
level: "Advanced",
|
|
20259
|
+
years: "6"
|
|
20260
|
+
}
|
|
20261
|
+
],
|
|
20262
|
+
degree: "B.S. in Information Systems",
|
|
20263
|
+
institution: "University of Texas",
|
|
20264
|
+
graduation_year: "2018",
|
|
20265
|
+
certification_1: "Certified Business Analysis Professional (CBAP)",
|
|
20266
|
+
certification_2: "Six Sigma Green Belt",
|
|
20267
|
+
languages: "English (Native), Spanish (Professional)"
|
|
20268
|
+
}
|
|
20269
|
+
},
|
|
20270
|
+
businessReport: {
|
|
20271
|
+
summary: "Business report template data",
|
|
20272
|
+
value: {
|
|
20273
|
+
report_title: "Quarterly Business Report",
|
|
20274
|
+
report_period: "Q4 2024",
|
|
20275
|
+
prepared_by: "Marketing Team",
|
|
20276
|
+
revenue: 125e3,
|
|
20277
|
+
growth_rate: 15,
|
|
20278
|
+
customer_count: 520,
|
|
20279
|
+
monthly_comparison: [
|
|
20280
|
+
{
|
|
20281
|
+
metric: "Revenue",
|
|
20282
|
+
previous: "$108,000",
|
|
20283
|
+
current: "$125,000",
|
|
20284
|
+
change: "+15.7%"
|
|
20285
|
+
},
|
|
20286
|
+
{
|
|
20287
|
+
metric: "Active Customers",
|
|
20288
|
+
previous: "480",
|
|
20289
|
+
current: "520",
|
|
20290
|
+
change: "+8.3%"
|
|
20291
|
+
}
|
|
20292
|
+
]
|
|
20293
|
+
}
|
|
20294
|
+
}
|
|
20295
|
+
}
|
|
20296
|
+
}
|
|
20297
|
+
}
|
|
20298
|
+
},
|
|
20299
|
+
responses: {
|
|
20300
|
+
"200": {
|
|
20301
|
+
description: "PDF generated successfully. The response contains the hosted URL of the rendered PDF along with its creation and expiration times.",
|
|
20302
|
+
content: {
|
|
20303
|
+
"application/json": {
|
|
20304
|
+
schema: {
|
|
20305
|
+
$ref: "#/components/schemas/TemplateGenerationResponse"
|
|
20306
|
+
},
|
|
20307
|
+
examples: {
|
|
20308
|
+
success: {
|
|
20309
|
+
summary: "Generated PDF",
|
|
20310
|
+
value: {
|
|
20311
|
+
template_id: "73691bce-1c58-4370-acc6-64b2dd14f81c",
|
|
20312
|
+
pdf_url: "https://s3.eu-central-2.wasabisys.com/w.storage.apifreaks.com/pdf_templates/73691bce-1c58-4370-acc6-64b2dd14f81c/Candidate%20Resume_20260810141214723405.pdf",
|
|
20313
|
+
created_at: "2026-08-10T14:12:17.673Z",
|
|
20314
|
+
expiration_time: "2026-11-10T14:12:17.673Z"
|
|
20315
|
+
}
|
|
20316
|
+
}
|
|
20317
|
+
}
|
|
20318
|
+
}
|
|
20319
|
+
}
|
|
20320
|
+
},
|
|
20321
|
+
"400": {
|
|
20322
|
+
description: "Bad Request \u2014 Missing or malformed parameters, missing data, or an unreachable data_url.",
|
|
20323
|
+
content: {
|
|
20324
|
+
"application/json": {
|
|
20325
|
+
schema: {
|
|
20326
|
+
$ref: "#/components/schemas/ErrorResponse"
|
|
20327
|
+
},
|
|
20328
|
+
examples: {
|
|
20329
|
+
MissingTemplateId: {
|
|
20330
|
+
summary: "template_id is missing",
|
|
20331
|
+
value: {
|
|
20332
|
+
error: "Invalid Param Exception",
|
|
20333
|
+
message: "please pass correct parameters",
|
|
20334
|
+
path: "/v1.0/pdf/template/generate",
|
|
20335
|
+
status: 400,
|
|
20336
|
+
timestamp: "2026-08-10T14:13:13.195Z"
|
|
20337
|
+
}
|
|
20338
|
+
},
|
|
20339
|
+
InvalidVersion: {
|
|
20340
|
+
summary: "version does not start with v",
|
|
20341
|
+
value: {
|
|
20342
|
+
timestamp: "2026-08-10T14:13:13.689Z",
|
|
20343
|
+
path: "/v1.0/generate-pdf",
|
|
20344
|
+
status: 400,
|
|
20345
|
+
error: "Invalid Template Version",
|
|
20346
|
+
message: "Please provide a valid template version starting with 'v'."
|
|
20347
|
+
}
|
|
20348
|
+
},
|
|
20349
|
+
NoData: {
|
|
20350
|
+
summary: "No data supplied to fill the template",
|
|
20351
|
+
value: {
|
|
20352
|
+
timestamp: "2026-08-10T14:13:14.172Z",
|
|
20353
|
+
path: "/v1.0/generate-pdf",
|
|
20354
|
+
status: 400,
|
|
20355
|
+
error: "Template Data Not Provided",
|
|
20356
|
+
message: "No data provided for the template. Please provide valid data to generate pdf."
|
|
20357
|
+
}
|
|
20358
|
+
}
|
|
20359
|
+
}
|
|
20360
|
+
}
|
|
20361
|
+
}
|
|
20362
|
+
},
|
|
20363
|
+
"401": {
|
|
20364
|
+
description: "Unauthorized \u2014 The API key is missing or invalid.",
|
|
20365
|
+
content: {
|
|
20366
|
+
"application/json": {
|
|
20367
|
+
schema: {
|
|
20368
|
+
$ref: "#/components/schemas/ErrorResponse"
|
|
20369
|
+
},
|
|
20370
|
+
examples: {
|
|
20371
|
+
InvalidApiKey: {
|
|
20372
|
+
summary: "Provided API key is invalid",
|
|
20373
|
+
value: {
|
|
20374
|
+
error: "API Access Exception",
|
|
20375
|
+
message: "Provided API key is invalid. [For Technical Support: support@apifreaks.com]",
|
|
20376
|
+
path: "/v1.0/pdf/template/generate",
|
|
20377
|
+
status: 401,
|
|
20378
|
+
timestamp: "2026-08-10T14:13:14.996Z"
|
|
20379
|
+
}
|
|
20380
|
+
}
|
|
20381
|
+
}
|
|
20382
|
+
}
|
|
20383
|
+
}
|
|
20384
|
+
},
|
|
20385
|
+
"403": {
|
|
20386
|
+
description: "Forbidden \u2014 The account does not have access to this template.",
|
|
20387
|
+
content: {
|
|
20388
|
+
"application/json": {
|
|
20389
|
+
schema: {
|
|
20390
|
+
$ref: "#/components/schemas/ErrorResponse"
|
|
20391
|
+
},
|
|
20392
|
+
examples: {
|
|
20393
|
+
AccessDenied: {
|
|
20394
|
+
summary: "No access to the template",
|
|
20395
|
+
value: {
|
|
20396
|
+
timestamp: "2026-08-10T14:13:15.000Z",
|
|
20397
|
+
path: "/v1.0/generate-pdf",
|
|
20398
|
+
status: 403,
|
|
20399
|
+
error: "Template Access Denied",
|
|
20400
|
+
message: "Your account does not have access to this template."
|
|
20401
|
+
}
|
|
20402
|
+
}
|
|
20403
|
+
}
|
|
20404
|
+
}
|
|
20405
|
+
}
|
|
20406
|
+
},
|
|
20407
|
+
"404": {
|
|
20408
|
+
description: "Not Found \u2014 No template matches the template_id, or the requested version does not exist.",
|
|
20409
|
+
content: {
|
|
20410
|
+
"application/json": {
|
|
20411
|
+
schema: {
|
|
20412
|
+
$ref: "#/components/schemas/ErrorResponse"
|
|
20413
|
+
},
|
|
20414
|
+
examples: {
|
|
20415
|
+
TemplateNotFound: {
|
|
20416
|
+
summary: "No template matches the template_id",
|
|
20417
|
+
value: {
|
|
20418
|
+
timestamp: "2026-08-10T14:13:14.677Z",
|
|
20419
|
+
path: "/v1.0/generate-pdf",
|
|
20420
|
+
status: 404,
|
|
20421
|
+
error: "Template Not Found",
|
|
20422
|
+
message: "Please provide a valid template ID."
|
|
20423
|
+
}
|
|
20424
|
+
}
|
|
20425
|
+
}
|
|
20426
|
+
}
|
|
20427
|
+
}
|
|
20428
|
+
},
|
|
20429
|
+
"415": {
|
|
20430
|
+
description: "Unsupported Media Type \u2014 The request Content-Type is not supported for this endpoint.",
|
|
20431
|
+
content: {
|
|
20432
|
+
"application/json": {
|
|
20433
|
+
schema: {
|
|
20434
|
+
$ref: "#/components/schemas/ErrorResponse"
|
|
20435
|
+
},
|
|
20436
|
+
examples: {
|
|
20437
|
+
UnsupportedMediaType: {
|
|
20438
|
+
summary: "Content-Type is not supported",
|
|
20439
|
+
value: {
|
|
20440
|
+
timestamp: "2026-08-10T14:13:15.500Z",
|
|
20441
|
+
path: "/v1.0/generate-pdf",
|
|
20442
|
+
status: 415,
|
|
20443
|
+
error: "Unsupported Media Type",
|
|
20444
|
+
message: "The request Content-Type is not supported for this endpoint."
|
|
20445
|
+
}
|
|
20446
|
+
}
|
|
20447
|
+
}
|
|
20448
|
+
}
|
|
20449
|
+
}
|
|
20450
|
+
},
|
|
20451
|
+
"422": {
|
|
20452
|
+
description: "Unprocessable Entity \u2014 The request contains invalid or missing data.",
|
|
20453
|
+
content: {
|
|
20454
|
+
"application/json": {
|
|
20455
|
+
schema: {
|
|
20456
|
+
$ref: "#/components/schemas/ErrorResponse"
|
|
20457
|
+
},
|
|
20458
|
+
examples: {
|
|
20459
|
+
InvalidData: {
|
|
20460
|
+
summary: "Invalid or missing data",
|
|
20461
|
+
value: {
|
|
20462
|
+
timestamp: "2026-08-10T14:13:16.100Z",
|
|
20463
|
+
path: "/v1.0/generate-pdf",
|
|
20464
|
+
status: 422,
|
|
20465
|
+
error: "Invalid Template Data",
|
|
20466
|
+
message: "The request contains invalid or missing data."
|
|
20467
|
+
}
|
|
20468
|
+
}
|
|
20469
|
+
}
|
|
20470
|
+
}
|
|
20471
|
+
}
|
|
20472
|
+
},
|
|
20473
|
+
"500": {
|
|
20474
|
+
description: "Internal Server Error \u2014 An unexpected error occurred, or the PDF could not be generated.",
|
|
20475
|
+
content: {
|
|
20476
|
+
"application/json": {
|
|
20477
|
+
schema: {
|
|
20478
|
+
$ref: "#/components/schemas/ErrorResponse"
|
|
20479
|
+
},
|
|
20480
|
+
examples: {
|
|
20481
|
+
GenerationFailed: {
|
|
20482
|
+
summary: "PDF could not be generated",
|
|
20483
|
+
value: {
|
|
20484
|
+
timestamp: "2026-08-10T14:13:16.700Z",
|
|
20485
|
+
path: "/v1.0/generate-pdf",
|
|
20486
|
+
status: 500,
|
|
20487
|
+
error: "PDF Generation Failed",
|
|
20488
|
+
message: "The PDF could not be generated. Try the request again."
|
|
20489
|
+
}
|
|
20490
|
+
}
|
|
20491
|
+
}
|
|
20492
|
+
}
|
|
20493
|
+
}
|
|
20494
|
+
},
|
|
20495
|
+
"504": {
|
|
20496
|
+
description: "Gateway Timeout \u2014 The request went past the 100 second processing limit.",
|
|
20497
|
+
content: {
|
|
20498
|
+
"application/json": {
|
|
20499
|
+
schema: {
|
|
20500
|
+
$ref: "#/components/schemas/ErrorResponse"
|
|
20501
|
+
},
|
|
20502
|
+
examples: {
|
|
20503
|
+
ProcessingLimit: {
|
|
20504
|
+
summary: "Request exceeded the 100 second processing limit",
|
|
20505
|
+
value: {
|
|
20506
|
+
timestamp: "2026-08-10T14:13:17.300Z",
|
|
20507
|
+
path: "/v1.0/generate-pdf",
|
|
20508
|
+
status: 504,
|
|
20509
|
+
error: "Processing Timeout",
|
|
20510
|
+
message: "The request went past the 100 second processing limit. Reduce the input size or retry."
|
|
20511
|
+
}
|
|
20512
|
+
}
|
|
20513
|
+
}
|
|
20514
|
+
}
|
|
20515
|
+
}
|
|
20516
|
+
}
|
|
20517
|
+
},
|
|
20518
|
+
operationId: "generatePdfFromTemplate"
|
|
20519
|
+
}
|
|
20520
|
+
}
|
|
20521
|
+
},
|
|
20522
|
+
components: {
|
|
20523
|
+
securitySchemes: {
|
|
20524
|
+
ApiKeyAuthHeader: {
|
|
20525
|
+
type: "apiKey",
|
|
20526
|
+
in: "header",
|
|
20527
|
+
name: "X-apikey",
|
|
20528
|
+
description: "Pass your API key via the X-apikey request header."
|
|
20529
|
+
},
|
|
20530
|
+
ApiKeyAuthQuery: {
|
|
20531
|
+
type: "apiKey",
|
|
20532
|
+
in: "query",
|
|
20533
|
+
name: "apiKey",
|
|
20534
|
+
description: "Pass your API key via the apiKey query parameter."
|
|
20535
|
+
}
|
|
20536
|
+
},
|
|
20537
|
+
schemas: {
|
|
20538
|
+
TemplateGenerationResponse: {
|
|
20539
|
+
type: "object",
|
|
20540
|
+
description: "Result of a PDF generation request, containing the hosted URL of the generated PDF.",
|
|
20541
|
+
required: ["template_id", "pdf_url", "created_at", "expiration_time"],
|
|
20542
|
+
properties: {
|
|
20543
|
+
template_id: {
|
|
20544
|
+
type: "string",
|
|
20545
|
+
description: "The template that was rendered."
|
|
20546
|
+
},
|
|
20547
|
+
pdf_url: {
|
|
20548
|
+
type: "string",
|
|
20549
|
+
description: "Hosted URL of the generated PDF."
|
|
20550
|
+
},
|
|
20551
|
+
created_at: {
|
|
20552
|
+
type: "string",
|
|
20553
|
+
format: "date-time",
|
|
20554
|
+
description: "When the PDF was generated (ISO 8601)."
|
|
20555
|
+
},
|
|
20556
|
+
expiration_time: {
|
|
20557
|
+
type: "string",
|
|
20558
|
+
format: "date-time",
|
|
20559
|
+
description: "When the hosted PDF expires (ISO 8601)."
|
|
20560
|
+
}
|
|
20561
|
+
}
|
|
20562
|
+
},
|
|
20563
|
+
ErrorResponse: {
|
|
20564
|
+
type: "object",
|
|
20565
|
+
description: "Standard error envelope returned by the API on failed requests.",
|
|
20566
|
+
required: ["message"],
|
|
20567
|
+
properties: {
|
|
20568
|
+
error: {
|
|
20569
|
+
type: "string",
|
|
20570
|
+
description: "Short error category or exception type."
|
|
20571
|
+
},
|
|
20572
|
+
message: {
|
|
20573
|
+
type: "string",
|
|
20574
|
+
description: "Human-readable error message describing the failure."
|
|
20575
|
+
},
|
|
20576
|
+
path: {
|
|
20577
|
+
type: "string",
|
|
20578
|
+
description: "API endpoint path that produced the error."
|
|
20579
|
+
},
|
|
20580
|
+
status: {
|
|
20581
|
+
type: "integer",
|
|
20582
|
+
description: "HTTP status code returned with the error."
|
|
20583
|
+
},
|
|
20584
|
+
timestamp: {
|
|
20585
|
+
type: "string",
|
|
20586
|
+
format: "date-time",
|
|
20587
|
+
description: "Timestamp when the error occurred (ISO 8601)."
|
|
20588
|
+
}
|
|
20589
|
+
}
|
|
20590
|
+
}
|
|
20591
|
+
}
|
|
20592
|
+
},
|
|
20593
|
+
security: [
|
|
20594
|
+
{
|
|
20595
|
+
ApiKeyAuthHeader: []
|
|
20596
|
+
},
|
|
20597
|
+
{
|
|
20598
|
+
ApiKeyAuthQuery: []
|
|
20599
|
+
}
|
|
20600
|
+
]
|
|
20601
|
+
};
|
|
20602
|
+
|
|
19865
20603
|
// specs/pdf/pdf-resource-download.json
|
|
19866
20604
|
var pdf_resource_download_default = {
|
|
19867
20605
|
openapi: "3.1.1",
|
|
@@ -44536,6 +45274,7 @@ var SPECS = {
|
|
|
44536
45274
|
"ip-locator": ip_locator_default,
|
|
44537
45275
|
"ip-threat-intelligence": ip_threat_intelligence_default,
|
|
44538
45276
|
"astronomy-data": astronomy_data_default,
|
|
45277
|
+
"bulk-pdf-generator": bulk_pdf_generator_default,
|
|
44539
45278
|
"delete-pdf-page": delete_pdf_page_default,
|
|
44540
45279
|
"linearize-pdf": linearize_pdf_default,
|
|
44541
45280
|
"merge-pdf": merge_pdf_default,
|
|
@@ -44546,6 +45285,7 @@ var SPECS = {
|
|
|
44546
45285
|
"pdf-file-status": pdf_file_status_default,
|
|
44547
45286
|
"pdf-file": pdf_file_default,
|
|
44548
45287
|
"pdf-files": pdf_files_default,
|
|
45288
|
+
"pdf-generator": pdf_generator_default,
|
|
44549
45289
|
"pdf-resource-download": pdf_resource_download_default,
|
|
44550
45290
|
"pdf-resource-upload-binary": pdf_resource_upload_binary_default,
|
|
44551
45291
|
"pdf-resource-upload": pdf_resource_upload_default,
|
|
@@ -44588,7 +45328,7 @@ var SPECS = {
|
|
|
44588
45328
|
"zip-codes-by-region": zip_codes_by_region_default,
|
|
44589
45329
|
"zip-codes-radius-search": zip_codes_radius_search_default
|
|
44590
45330
|
};
|
|
44591
|
-
var SPEC_SLUGS = ["commodity-fluctuation", "commodity-prices", "commodity-symbols", "commodity-time-series", "historical-commodity-prices", "currency-converter", "currency-fluctuation", "currency-historical-data-limit", "currency-rate", "currency-supported", "currency-symbols", "currency-time-series", "geolocalized-currency-conversion", "historical-currency-converter", "historical-currency-rate", "bulk-dns-lookup", "dns-history-lookup", "dns-lookup", "reverse-dns-lookup", "bulk-domain-checker", "domain-search-with-suggestions", "domain-search", "subdomain-lookup", "bulk-email-validation", "email-checker", "bulk-vat-rates-country", "financial-apis-supported-countries", "iban-validation", "swift-code-finder", "swift-code-lookup", "vat-number-validation", "vat-rates-by-ip", "vat-rates-country", "usage-credits", "forward-geocoding", "reverse-geocoding", "administrative-units-details", "administrative-units-levels", "administrative-units", "cities", "countries-details", "countries", "flags-supported", "flags", "regions", "subregions", "bulk-ip-lookup", "bulk-ip-threat-intelligence", "ip-locator", "ip-threat-intelligence", "astronomy-data", "delete-pdf-page", "linearize-pdf", "merge-pdf", "pdf-compress", "pdf-decrypt", "pdf-encrypt", "pdf-extract-pages", "pdf-file-status", "pdf-file", "pdf-files", "pdf-resource-download", "pdf-resource-upload-binary", "pdf-resource-upload", "pdf-restrict", "pdf-split-pages", "pdf-task-status", "pdf-to-image", "pdf-unrestrict", "rotate-pdf-pages", "bulk-phone-number-validation", "phone-number-validation", "web-scraper", "bulk-screenshot", "website-screenshot", "ssl-certificate-chain-lookup", "ssl-certificate-lookup", "timezone-converter", "timezone-lookup", "bulk-user-agent-parser", "user-agent-parser", "air-quality", "bulk-live-weather", "flood-forecast", "historical-weather", "live-weather", "marine-weather", "time-series-weather", "weather-forecast", "asn-lookup", "bulk-whois-lookup", "domain-whois-history-lookup", "reverse-whois", "whois-domain-lookup", "whois-ip-lookup", "bulk-zip-code-lookup", "zip-code-api", "zip-code-distance-match", "zip-code-distance", "zip-codes-by-city", "zip-codes-by-region", "zip-codes-radius-search"];
|
|
45331
|
+
var SPEC_SLUGS = ["commodity-fluctuation", "commodity-prices", "commodity-symbols", "commodity-time-series", "historical-commodity-prices", "currency-converter", "currency-fluctuation", "currency-historical-data-limit", "currency-rate", "currency-supported", "currency-symbols", "currency-time-series", "geolocalized-currency-conversion", "historical-currency-converter", "historical-currency-rate", "bulk-dns-lookup", "dns-history-lookup", "dns-lookup", "reverse-dns-lookup", "bulk-domain-checker", "domain-search-with-suggestions", "domain-search", "subdomain-lookup", "bulk-email-validation", "email-checker", "bulk-vat-rates-country", "financial-apis-supported-countries", "iban-validation", "swift-code-finder", "swift-code-lookup", "vat-number-validation", "vat-rates-by-ip", "vat-rates-country", "usage-credits", "forward-geocoding", "reverse-geocoding", "administrative-units-details", "administrative-units-levels", "administrative-units", "cities", "countries-details", "countries", "flags-supported", "flags", "regions", "subregions", "bulk-ip-lookup", "bulk-ip-threat-intelligence", "ip-locator", "ip-threat-intelligence", "astronomy-data", "bulk-pdf-generator", "delete-pdf-page", "linearize-pdf", "merge-pdf", "pdf-compress", "pdf-decrypt", "pdf-encrypt", "pdf-extract-pages", "pdf-file-status", "pdf-file", "pdf-files", "pdf-generator", "pdf-resource-download", "pdf-resource-upload-binary", "pdf-resource-upload", "pdf-restrict", "pdf-split-pages", "pdf-task-status", "pdf-to-image", "pdf-unrestrict", "rotate-pdf-pages", "bulk-phone-number-validation", "phone-number-validation", "web-scraper", "bulk-screenshot", "website-screenshot", "ssl-certificate-chain-lookup", "ssl-certificate-lookup", "timezone-converter", "timezone-lookup", "bulk-user-agent-parser", "user-agent-parser", "air-quality", "bulk-live-weather", "flood-forecast", "historical-weather", "live-weather", "marine-weather", "time-series-weather", "weather-forecast", "asn-lookup", "bulk-whois-lookup", "domain-whois-history-lookup", "reverse-whois", "whois-domain-lookup", "whois-ip-lookup", "bulk-zip-code-lookup", "zip-code-api", "zip-code-distance-match", "zip-code-distance", "zip-codes-by-city", "zip-codes-by-region", "zip-codes-radius-search"];
|
|
44592
45332
|
var SPEC_CATEGORIES = ["commodity", "currency", "dns", "domain", "email-validation", "financial", "general", "geocoding", "geodb", "ip-intelligence", "other", "pdf", "phone-validation", "scraper", "screenshot", "ssl", "timezone", "user-agent", "weather", "whois", "zip-code"];
|
|
44593
45333
|
var SPECS_BY_CATEGORY = {
|
|
44594
45334
|
"commodity": ["commodity-fluctuation", "commodity-prices", "commodity-symbols", "commodity-time-series", "historical-commodity-prices"],
|
|
@@ -44602,7 +45342,7 @@ var SPECS_BY_CATEGORY = {
|
|
|
44602
45342
|
"geodb": ["administrative-units-details", "administrative-units-levels", "administrative-units", "cities", "countries-details", "countries", "flags-supported", "flags", "regions", "subregions"],
|
|
44603
45343
|
"ip-intelligence": ["bulk-ip-lookup", "bulk-ip-threat-intelligence", "ip-locator", "ip-threat-intelligence"],
|
|
44604
45344
|
"other": ["astronomy-data"],
|
|
44605
|
-
"pdf": ["delete-pdf-page", "linearize-pdf", "merge-pdf", "pdf-compress", "pdf-decrypt", "pdf-encrypt", "pdf-extract-pages", "pdf-file-status", "pdf-file", "pdf-files", "pdf-resource-download", "pdf-resource-upload-binary", "pdf-resource-upload", "pdf-restrict", "pdf-split-pages", "pdf-task-status", "pdf-to-image", "pdf-unrestrict", "rotate-pdf-pages"],
|
|
45345
|
+
"pdf": ["bulk-pdf-generator", "delete-pdf-page", "linearize-pdf", "merge-pdf", "pdf-compress", "pdf-decrypt", "pdf-encrypt", "pdf-extract-pages", "pdf-file-status", "pdf-file", "pdf-files", "pdf-generator", "pdf-resource-download", "pdf-resource-upload-binary", "pdf-resource-upload", "pdf-restrict", "pdf-split-pages", "pdf-task-status", "pdf-to-image", "pdf-unrestrict", "rotate-pdf-pages"],
|
|
44606
45346
|
"phone-validation": ["bulk-phone-number-validation", "phone-number-validation"],
|
|
44607
45347
|
"scraper": ["web-scraper"],
|
|
44608
45348
|
"screenshot": ["bulk-screenshot", "website-screenshot"],
|
|
@@ -44626,6 +45366,7 @@ var SpecSlug = {
|
|
|
44626
45366
|
BULK_IP_LOOKUP: "bulk-ip-lookup",
|
|
44627
45367
|
BULK_IP_THREAT_INTELLIGENCE: "bulk-ip-threat-intelligence",
|
|
44628
45368
|
BULK_LIVE_WEATHER: "bulk-live-weather",
|
|
45369
|
+
BULK_PDF_GENERATOR: "bulk-pdf-generator",
|
|
44629
45370
|
BULK_PHONE_NUMBER_VALIDATION: "bulk-phone-number-validation",
|
|
44630
45371
|
BULK_SCREENSHOT: "bulk-screenshot",
|
|
44631
45372
|
BULK_USER_AGENT_PARSER: "bulk-user-agent-parser",
|
|
@@ -44677,6 +45418,7 @@ var SpecSlug = {
|
|
|
44677
45418
|
PDF_FILE: "pdf-file",
|
|
44678
45419
|
PDF_FILE_STATUS: "pdf-file-status",
|
|
44679
45420
|
PDF_FILES: "pdf-files",
|
|
45421
|
+
PDF_GENERATOR: "pdf-generator",
|
|
44680
45422
|
PDF_RESOURCE_DOWNLOAD: "pdf-resource-download",
|
|
44681
45423
|
PDF_RESOURCE_UPLOAD: "pdf-resource-upload",
|
|
44682
45424
|
PDF_RESOURCE_UPLOAD_BINARY: "pdf-resource-upload-binary",
|