@getcommunity/gc-validators 0.0.138 → 0.0.139

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.d.cts CHANGED
@@ -1330,6 +1330,23 @@ type ClientUserDocumentStatus = {
1330
1330
  scopes: ClientEntityScope[];
1331
1331
  };
1332
1332
 
1333
+ type GCFlyTourSnapDocument = {
1334
+ title: string;
1335
+ slug: string;
1336
+ utm_key: string | null;
1337
+ gcflytour?: GCFlyTourDocument;
1338
+ } & BaseDocument;
1339
+
1340
+ type GCFlyTourDocument = {
1341
+ title: string;
1342
+ slug: string;
1343
+ utm_key: string | null;
1344
+ is_active: boolean;
1345
+ is_hidden: boolean;
1346
+ clients?: ClientDocument[];
1347
+ gcflytour_snaps?: GCFlyTourSnapDocument[];
1348
+ } & BaseDocument;
1349
+
1333
1350
  type ProductDocument = {
1334
1351
  seo?: SeoMeta;
1335
1352
  title: string;
@@ -1378,6 +1395,7 @@ type ClientDocument = {
1378
1395
  styleguides?: ClientStyleguideDocument[];
1379
1396
  media_platforms?: ClientMediaPlatformDocument[];
1380
1397
  content_pillars?: ClientContentPillarDocument[];
1398
+ gcflytours?: GCFlyTourDocument[];
1381
1399
  } & BaseDocument;
1382
1400
 
1383
1401
  type ContentPillarDocument = {
@@ -1394,22 +1412,6 @@ type ClientContentPillarDocument = {
1394
1412
  is_active: boolean;
1395
1413
  } & BaseDocument;
1396
1414
 
1397
- type GCFlyTourDocument = {
1398
- title: string;
1399
- slug: string;
1400
- utm_key: string | null;
1401
- is_active: boolean;
1402
- is_hidden: boolean;
1403
- clients?: ClientDocument[];
1404
- } & BaseDocument;
1405
-
1406
- type GCFlyTourSnapDocument = {
1407
- title: string;
1408
- slug: string;
1409
- utm_key: string | null;
1410
- gcflytour?: GCFlyTourDocument;
1411
- } & BaseDocument;
1412
-
1413
1415
  type LeadDocument = {
1414
1416
  first_name: string;
1415
1417
  last_name: string;
package/dist/index.d.ts CHANGED
@@ -1330,6 +1330,23 @@ type ClientUserDocumentStatus = {
1330
1330
  scopes: ClientEntityScope[];
1331
1331
  };
1332
1332
 
1333
+ type GCFlyTourSnapDocument = {
1334
+ title: string;
1335
+ slug: string;
1336
+ utm_key: string | null;
1337
+ gcflytour?: GCFlyTourDocument;
1338
+ } & BaseDocument;
1339
+
1340
+ type GCFlyTourDocument = {
1341
+ title: string;
1342
+ slug: string;
1343
+ utm_key: string | null;
1344
+ is_active: boolean;
1345
+ is_hidden: boolean;
1346
+ clients?: ClientDocument[];
1347
+ gcflytour_snaps?: GCFlyTourSnapDocument[];
1348
+ } & BaseDocument;
1349
+
1333
1350
  type ProductDocument = {
1334
1351
  seo?: SeoMeta;
1335
1352
  title: string;
@@ -1378,6 +1395,7 @@ type ClientDocument = {
1378
1395
  styleguides?: ClientStyleguideDocument[];
1379
1396
  media_platforms?: ClientMediaPlatformDocument[];
1380
1397
  content_pillars?: ClientContentPillarDocument[];
1398
+ gcflytours?: GCFlyTourDocument[];
1381
1399
  } & BaseDocument;
1382
1400
 
1383
1401
  type ContentPillarDocument = {
@@ -1394,22 +1412,6 @@ type ClientContentPillarDocument = {
1394
1412
  is_active: boolean;
1395
1413
  } & BaseDocument;
1396
1414
 
1397
- type GCFlyTourDocument = {
1398
- title: string;
1399
- slug: string;
1400
- utm_key: string | null;
1401
- is_active: boolean;
1402
- is_hidden: boolean;
1403
- clients?: ClientDocument[];
1404
- } & BaseDocument;
1405
-
1406
- type GCFlyTourSnapDocument = {
1407
- title: string;
1408
- slug: string;
1409
- utm_key: string | null;
1410
- gcflytour?: GCFlyTourDocument;
1411
- } & BaseDocument;
1412
-
1413
1415
  type LeadDocument = {
1414
1416
  first_name: string;
1415
1417
  last_name: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@getcommunity/gc-validators",
3
3
  "description": "Schema Validator for GetCommunity types",
4
- "version": "0.0.138",
4
+ "version": "0.0.139",
5
5
  "author": "Joey Grable <joey@getcommunity.com> (https://joeygrable.com)",
6
6
  "contributors": [],
7
7
  "main": "dist/index.js",