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