@vrplatform/api 1.3.1-stage.2144 → 1.3.1-stage.2146

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.
@@ -5408,8 +5408,35 @@ export interface operations {
5408
5408
  left: string;
5409
5409
  right: string;
5410
5410
  }[];
5411
- extractors: string[];
5412
- importers: string[];
5411
+ extractors: {
5412
+ name: string;
5413
+ /** @constant */
5414
+ sync: "full";
5415
+ visible?: boolean;
5416
+ isDateRangeFetchable?: boolean;
5417
+ /** @enum {string} */
5418
+ dateRangeMethod?: "checkIn/checkOut" | "bookedAt" | "creationDate";
5419
+ params?: {
5420
+ /** @constant */
5421
+ type: "object";
5422
+ properties?: {
5423
+ uniqueRef?: {
5424
+ /** @constant */
5425
+ type: "string";
5426
+ };
5427
+ };
5428
+ /** @constant */
5429
+ additionalProperties: false;
5430
+ };
5431
+ urlExample?: string;
5432
+ allowConfirmationCode?: boolean;
5433
+ }[];
5434
+ importers: {
5435
+ docsLink: string;
5436
+ uniqueRef: string;
5437
+ description: string;
5438
+ types?: string[];
5439
+ }[];
5413
5440
  }[];
5414
5441
  pagination: {
5415
5442
  /** @default 100 */
@@ -5538,8 +5565,35 @@ export interface operations {
5538
5565
  left: string;
5539
5566
  right: string;
5540
5567
  }[];
5541
- extractors: string[];
5542
- importers: string[];
5568
+ extractors: {
5569
+ name: string;
5570
+ /** @constant */
5571
+ sync: "full";
5572
+ visible?: boolean;
5573
+ isDateRangeFetchable?: boolean;
5574
+ /** @enum {string} */
5575
+ dateRangeMethod?: "checkIn/checkOut" | "bookedAt" | "creationDate";
5576
+ params?: {
5577
+ /** @constant */
5578
+ type: "object";
5579
+ properties?: {
5580
+ uniqueRef?: {
5581
+ /** @constant */
5582
+ type: "string";
5583
+ };
5584
+ };
5585
+ /** @constant */
5586
+ additionalProperties: false;
5587
+ };
5588
+ urlExample?: string;
5589
+ allowConfirmationCode?: boolean;
5590
+ }[];
5591
+ importers: {
5592
+ docsLink: string;
5593
+ uniqueRef: string;
5594
+ description: string;
5595
+ types?: string[];
5596
+ }[];
5543
5597
  };
5544
5598
  };
5545
5599
  };