@uniformdev/mesh-sdk 19.195.0 → 19.195.1-alpha.2

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.
Files changed (3) hide show
  1. package/dist/index.d.mts +292 -168
  2. package/dist/index.d.ts +292 -168
  3. package/package.json +5 -5
package/dist/index.d.mts CHANGED
@@ -4,13 +4,15 @@ import { AssetParamValue, DataType, DataSource, DataSourceVariantsKeys, DataReso
4
4
  export { AssetParamValue, AssetParamValueItem } from '@uniformdev/canvas';
5
5
  import { Emitter } from 'mitt';
6
6
 
7
- /**
8
- * This file was auto-generated by openapi-typescript.
9
- * Do not make direct changes to the file.
10
- */
11
7
  interface paths$1 {
12
8
  "/api/v1/integration-definitions": {
13
- /** Gets a list of Mesh apps that are available for a Uniform team */
9
+ parameters: {
10
+ query?: never;
11
+ header?: never;
12
+ path?: never;
13
+ cookie?: never;
14
+ };
15
+ /** @description Gets a list of Mesh apps that are available for a Uniform team */
14
16
  get: {
15
17
  parameters: {
16
18
  query: {
@@ -18,10 +20,17 @@ interface paths$1 {
18
20
  includePublic?: boolean | null;
19
21
  teamSpecificType?: boolean | null;
20
22
  };
23
+ header?: never;
24
+ path?: never;
25
+ cookie?: never;
21
26
  };
27
+ requestBody?: never;
22
28
  responses: {
23
- /** 200 response */
29
+ /** @description 200 response */
24
30
  200: {
31
+ headers: {
32
+ [name: string]: unknown;
33
+ };
25
34
  content: {
26
35
  "application/json": {
27
36
  results: {
@@ -156,7 +165,7 @@ interface paths$1 {
156
165
  default?: string | null;
157
166
  };
158
167
  } | null;
159
- metadata?: unknown | null;
168
+ metadata?: unknown;
160
169
  } | null;
161
170
  parameterTypes: string[];
162
171
  }[];
@@ -180,7 +189,7 @@ interface paths$1 {
180
189
  default?: string | null;
181
190
  };
182
191
  } | null;
183
- metadata?: unknown | null;
192
+ metadata?: unknown;
184
193
  } | null;
185
194
  parameterTypes: string[];
186
195
  }[];
@@ -188,27 +197,36 @@ interface paths$1 {
188
197
  };
189
198
  };
190
199
  };
191
- 400: external$1["swagger.yml"]["components"]["responses"]["BadRequestError"];
192
- 401: external$1["swagger.yml"]["components"]["responses"]["UnauthorizedError"];
193
- 403: external$1["swagger.yml"]["components"]["responses"]["ForbiddenError"];
194
- 429: external$1["swagger.yml"]["components"]["responses"]["RateLimitError"];
195
- 500: external$1["swagger.yml"]["components"]["responses"]["InternalServerError"];
200
+ 400: components$1["responses"]["BadRequestError"];
201
+ 401: components$1["responses"]["UnauthorizedError"];
202
+ 403: components$1["responses"]["ForbiddenError"];
203
+ 429: components$1["responses"]["RateLimitError"];
204
+ 500: components$1["responses"]["InternalServerError"];
196
205
  };
197
206
  };
198
- /** Creates or updates a Mesh app definition on a team */
207
+ /** @description Creates or updates a Mesh app definition on a team */
199
208
  put: {
200
- responses: {
201
- /** Update success */
202
- 200: {
203
- content: {
204
- "application/json": {
209
+ parameters: {
210
+ query?: never;
211
+ header?: never;
212
+ path?: never;
213
+ cookie?: never;
214
+ };
215
+ requestBody: {
216
+ content: {
217
+ "application/json": {
218
+ /**
219
+ * Format: uuid
220
+ * @description The team ID
221
+ */
222
+ teamId: string;
223
+ data: {
205
224
  type: string;
206
225
  displayName: string;
207
226
  logoIconUrl?: string;
208
227
  badgeIconUrl?: string;
209
228
  /** @enum {string} */
210
229
  category?: "analytics" | "cdn" | "classic" | "commerce" | "content" | "comingSoon" | "data" | "deprecated" | "email" | "framework" | "search" | "starters" | "translation" | "uniform" | "ai" | "unknown";
211
- public?: boolean;
212
230
  scopes?: string[];
213
231
  baseLocationUrl?: string;
214
232
  locations: {
@@ -333,7 +351,7 @@ interface paths$1 {
333
351
  default?: string | null;
334
352
  };
335
353
  } | null;
336
- metadata?: unknown | null;
354
+ metadata?: unknown;
337
355
  } | null;
338
356
  parameterTypes: string[];
339
357
  }[];
@@ -357,34 +375,29 @@ interface paths$1 {
357
375
  default?: string | null;
358
376
  };
359
377
  } | null;
360
- metadata?: unknown | null;
378
+ metadata?: unknown;
361
379
  } | null;
362
380
  parameterTypes: string[];
363
381
  }[];
364
382
  };
365
383
  };
366
384
  };
367
- 400: external$1["swagger.yml"]["components"]["responses"]["BadRequestError"];
368
- 401: external$1["swagger.yml"]["components"]["responses"]["UnauthorizedError"];
369
- 403: external$1["swagger.yml"]["components"]["responses"]["ForbiddenError"];
370
- 429: external$1["swagger.yml"]["components"]["responses"]["RateLimitError"];
371
- 500: external$1["swagger.yml"]["components"]["responses"]["InternalServerError"];
372
385
  };
373
- requestBody: {
374
- content: {
375
- "application/json": {
376
- /**
377
- * Format: uuid
378
- * @description The team ID
379
- */
380
- teamId: string;
381
- data: {
386
+ responses: {
387
+ /** @description Update success */
388
+ 200: {
389
+ headers: {
390
+ [name: string]: unknown;
391
+ };
392
+ content: {
393
+ "application/json": {
382
394
  type: string;
383
395
  displayName: string;
384
396
  logoIconUrl?: string;
385
397
  badgeIconUrl?: string;
386
398
  /** @enum {string} */
387
399
  category?: "analytics" | "cdn" | "classic" | "commerce" | "content" | "comingSoon" | "data" | "deprecated" | "email" | "framework" | "search" | "starters" | "translation" | "uniform" | "ai" | "unknown";
400
+ public?: boolean;
388
401
  scopes?: string[];
389
402
  baseLocationUrl?: string;
390
403
  locations: {
@@ -509,7 +522,7 @@ interface paths$1 {
509
522
  default?: string | null;
510
523
  };
511
524
  } | null;
512
- metadata?: unknown | null;
525
+ metadata?: unknown;
513
526
  } | null;
514
527
  parameterTypes: string[];
515
528
  }[];
@@ -533,27 +546,28 @@ interface paths$1 {
533
546
  default?: string | null;
534
547
  };
535
548
  } | null;
536
- metadata?: unknown | null;
549
+ metadata?: unknown;
537
550
  } | null;
538
551
  parameterTypes: string[];
539
552
  }[];
540
553
  };
541
554
  };
542
555
  };
556
+ 400: components$1["responses"]["BadRequestError"];
557
+ 401: components$1["responses"]["UnauthorizedError"];
558
+ 403: components$1["responses"]["ForbiddenError"];
559
+ 429: components$1["responses"]["RateLimitError"];
560
+ 500: components$1["responses"]["InternalServerError"];
543
561
  };
544
562
  };
545
- /** Removes a Mesh app definition from a team. Note that public integrations may not be deleted without contacting Uniform. */
563
+ post?: never;
564
+ /** @description Removes a Mesh app definition from a team. Note that public integrations may not be deleted without contacting Uniform. */
546
565
  delete: {
547
- responses: {
548
- /** Delete successful */
549
- 204: never;
550
- 400: external$1["swagger.yml"]["components"]["responses"]["BadRequestError"];
551
- 401: external$1["swagger.yml"]["components"]["responses"]["UnauthorizedError"];
552
- 403: external$1["swagger.yml"]["components"]["responses"]["ForbiddenError"];
553
- /** Integration to delete was not found */
554
- 404: unknown;
555
- 429: external$1["swagger.yml"]["components"]["responses"]["RateLimitError"];
556
- 500: external$1["swagger.yml"]["components"]["responses"]["InternalServerError"];
566
+ parameters: {
567
+ query?: never;
568
+ header?: never;
569
+ path?: never;
570
+ cookie?: never;
557
571
  };
558
572
  requestBody: {
559
573
  content: {
@@ -568,68 +582,117 @@ interface paths$1 {
568
582
  };
569
583
  };
570
584
  };
585
+ responses: {
586
+ /** @description Delete successful */
587
+ 204: {
588
+ headers: {
589
+ [name: string]: unknown;
590
+ };
591
+ content?: never;
592
+ };
593
+ 400: components$1["responses"]["BadRequestError"];
594
+ 401: components$1["responses"]["UnauthorizedError"];
595
+ 403: components$1["responses"]["ForbiddenError"];
596
+ /** @description Integration to delete was not found */
597
+ 404: {
598
+ headers: {
599
+ [name: string]: unknown;
600
+ };
601
+ content?: never;
602
+ };
603
+ 429: components$1["responses"]["RateLimitError"];
604
+ 500: components$1["responses"]["InternalServerError"];
605
+ };
571
606
  };
572
- /** Handles preflight requests. This endpoint allows CORS. */
607
+ /** @description Handles preflight requests. This endpoint allows CORS. */
573
608
  options: {
609
+ parameters: {
610
+ query?: never;
611
+ header?: never;
612
+ path?: never;
613
+ cookie?: never;
614
+ };
615
+ requestBody?: never;
574
616
  responses: {
575
- /** ok */
576
- 204: never;
617
+ /** @description ok */
618
+ 204: {
619
+ headers: {
620
+ [name: string]: unknown;
621
+ };
622
+ content?: never;
623
+ };
577
624
  };
578
625
  };
626
+ head?: never;
627
+ patch?: never;
628
+ trace?: never;
579
629
  };
580
630
  }
581
- interface external$1 {
582
- "swagger.yml": {
583
- paths: {};
584
- components: {
585
- schemas: {
586
- Error: {
587
- /** @description Error message(s) that occurred while processing the request */
588
- errorMessage?: string[] | string;
589
- };
631
+ interface components$1 {
632
+ schemas: {
633
+ Error: {
634
+ /** @description Error message(s) that occurred while processing the request */
635
+ errorMessage?: string[] | string;
636
+ };
637
+ };
638
+ responses: {
639
+ /** @description Request input validation failed */
640
+ BadRequestError: {
641
+ headers: {
642
+ [name: string]: unknown;
590
643
  };
591
- responses: {
592
- /** Request input validation failed */
593
- BadRequestError: {
594
- content: {
595
- "application/json": external$1["swagger.yml"]["components"]["schemas"]["Error"];
596
- };
597
- };
598
- /** API key or token was not valid */
599
- UnauthorizedError: {
600
- content: {
601
- "application/json": external$1["swagger.yml"]["components"]["schemas"]["Error"];
602
- };
603
- };
604
- /** Permission was denied */
605
- ForbiddenError: {
606
- content: {
607
- "application/json": external$1["swagger.yml"]["components"]["schemas"]["Error"];
608
- };
609
- };
610
- /** Resource not found */
611
- NotFoundError: {
612
- content: {
613
- "application/json": external$1["swagger.yml"]["components"]["schemas"]["Error"];
614
- };
615
- };
616
- /** Too many requests in allowed time period */
617
- RateLimitError: unknown;
618
- /** Execution error occurred */
619
- InternalServerError: unknown;
644
+ content: {
645
+ "application/json": components$1["schemas"]["Error"];
646
+ };
647
+ };
648
+ /** @description API key or token was not valid */
649
+ UnauthorizedError: {
650
+ headers: {
651
+ [name: string]: unknown;
652
+ };
653
+ content: {
654
+ "application/json": components$1["schemas"]["Error"];
655
+ };
656
+ };
657
+ /** @description Permission was denied */
658
+ ForbiddenError: {
659
+ headers: {
660
+ [name: string]: unknown;
661
+ };
662
+ content: {
663
+ "application/json": components$1["schemas"]["Error"];
620
664
  };
621
665
  };
622
- operations: {};
666
+ /** @description Too many requests in allowed time period */
667
+ RateLimitError: {
668
+ headers: {
669
+ [name: string]: unknown;
670
+ };
671
+ content?: never;
672
+ };
673
+ /** @description Execution error occurred */
674
+ InternalServerError: {
675
+ headers: {
676
+ [name: string]: unknown;
677
+ };
678
+ content?: never;
679
+ };
623
680
  };
681
+ parameters: never;
682
+ requestBodies: never;
683
+ headers: never;
684
+ pathItems: never;
624
685
  }
625
686
 
626
- /**
627
- * This file was auto-generated by openapi-typescript.
628
- * Do not make direct changes to the file.
629
- */
630
687
  interface paths {
631
688
  "/api/v1/integration-installations": {
632
- /** Gets a list of installed integrations for a Uniform Project */
689
+ parameters: {
690
+ query?: never;
691
+ header?: never;
692
+ path?: never;
693
+ cookie?: never;
694
+ };
695
+ /** @description Gets a list of installed integrations for a Uniform Project */
633
696
  get: {
634
697
  parameters: {
635
698
  query: {
@@ -638,38 +701,42 @@ interface paths {
638
701
  exactType?: boolean | null;
639
702
  teamSpecificType?: boolean | null;
640
703
  };
704
+ header?: never;
705
+ path?: never;
706
+ cookie?: never;
641
707
  };
708
+ requestBody?: never;
642
709
  responses: {
643
- /** 200 response */
710
+ /** @description 200 response */
644
711
  200: {
712
+ headers: {
713
+ [name: string]: unknown;
714
+ };
645
715
  content: {
646
716
  "application/json": {
647
717
  results: {
648
718
  type: string;
649
719
  data?: {
650
- [key: string]: unknown;
720
+ [key: string]: unknown[] | boolean | number | Record<string, never> | string;
651
721
  };
652
722
  }[];
653
723
  };
654
724
  };
655
725
  };
656
- 400: external["swagger.yml"]["components"]["responses"]["BadRequestError"];
657
- 401: external["swagger.yml"]["components"]["responses"]["UnauthorizedError"];
658
- 403: external["swagger.yml"]["components"]["responses"]["ForbiddenError"];
659
- 429: external["swagger.yml"]["components"]["responses"]["RateLimitError"];
660
- 500: external["swagger.yml"]["components"]["responses"]["InternalServerError"];
726
+ 400: components["responses"]["BadRequestError"];
727
+ 401: components["responses"]["UnauthorizedError"];
728
+ 403: components["responses"]["ForbiddenError"];
729
+ 429: components["responses"]["RateLimitError"];
730
+ 500: components["responses"]["InternalServerError"];
661
731
  };
662
732
  };
663
- /** Installs or updates an integration on a Uniform Project. If data is not provided, it will remain unmodified from any existing value. */
733
+ /** @description Installs or updates an integration on a Uniform Project. If data is not provided, it will remain unmodified from any existing value. */
664
734
  put: {
665
- responses: {
666
- /** Install or update success */
667
- 204: never;
668
- 400: external["swagger.yml"]["components"]["responses"]["BadRequestError"];
669
- 401: external["swagger.yml"]["components"]["responses"]["UnauthorizedError"];
670
- 403: external["swagger.yml"]["components"]["responses"]["ForbiddenError"];
671
- 429: external["swagger.yml"]["components"]["responses"]["RateLimitError"];
672
- 500: external["swagger.yml"]["components"]["responses"]["InternalServerError"];
735
+ parameters: {
736
+ query?: never;
737
+ header?: never;
738
+ path?: never;
739
+ cookie?: never;
673
740
  };
674
741
  requestBody: {
675
742
  content: {
@@ -683,24 +750,34 @@ interface paths {
683
750
  exactType?: boolean | null;
684
751
  type: string;
685
752
  data?: {
686
- [key: string]: unknown;
753
+ [key: string]: unknown[] | boolean | number | Record<string, never> | string;
687
754
  };
688
755
  };
689
756
  };
690
757
  };
758
+ responses: {
759
+ /** @description Install or update success */
760
+ 204: {
761
+ headers: {
762
+ [name: string]: unknown;
763
+ };
764
+ content?: never;
765
+ };
766
+ 400: components["responses"]["BadRequestError"];
767
+ 401: components["responses"]["UnauthorizedError"];
768
+ 403: components["responses"]["ForbiddenError"];
769
+ 429: components["responses"]["RateLimitError"];
770
+ 500: components["responses"]["InternalServerError"];
771
+ };
691
772
  };
692
- /** Removes an integration from a project. */
773
+ post?: never;
774
+ /** @description Removes an integration from a project. */
693
775
  delete: {
694
- responses: {
695
- /** Delete successful */
696
- 204: never;
697
- 400: external["swagger.yml"]["components"]["responses"]["BadRequestError"];
698
- 401: external["swagger.yml"]["components"]["responses"]["UnauthorizedError"];
699
- 403: external["swagger.yml"]["components"]["responses"]["ForbiddenError"];
700
- /** Integration to delete was not found */
701
- 404: unknown;
702
- 429: external["swagger.yml"]["components"]["responses"]["RateLimitError"];
703
- 500: external["swagger.yml"]["components"]["responses"]["InternalServerError"];
776
+ parameters: {
777
+ query?: never;
778
+ header?: never;
779
+ path?: never;
780
+ cookie?: never;
704
781
  };
705
782
  requestBody: {
706
783
  content: {
@@ -717,59 +794,106 @@ interface paths {
717
794
  };
718
795
  };
719
796
  };
797
+ responses: {
798
+ /** @description Delete successful */
799
+ 204: {
800
+ headers: {
801
+ [name: string]: unknown;
802
+ };
803
+ content?: never;
804
+ };
805
+ 400: components["responses"]["BadRequestError"];
806
+ 401: components["responses"]["UnauthorizedError"];
807
+ 403: components["responses"]["ForbiddenError"];
808
+ /** @description Integration to delete was not found */
809
+ 404: {
810
+ headers: {
811
+ [name: string]: unknown;
812
+ };
813
+ content?: never;
814
+ };
815
+ 429: components["responses"]["RateLimitError"];
816
+ 500: components["responses"]["InternalServerError"];
817
+ };
720
818
  };
721
- /** Handles preflight requests. This endpoint allows CORS. */
819
+ /** @description Handles preflight requests. This endpoint allows CORS. */
722
820
  options: {
821
+ parameters: {
822
+ query?: never;
823
+ header?: never;
824
+ path?: never;
825
+ cookie?: never;
826
+ };
827
+ requestBody?: never;
723
828
  responses: {
724
- /** ok */
725
- 204: never;
829
+ /** @description ok */
830
+ 204: {
831
+ headers: {
832
+ [name: string]: unknown;
833
+ };
834
+ content?: never;
835
+ };
726
836
  };
727
837
  };
838
+ head?: never;
839
+ patch?: never;
840
+ trace?: never;
728
841
  };
729
842
  }
730
- interface external {
731
- "swagger.yml": {
732
- paths: {};
733
- components: {
734
- schemas: {
735
- Error: {
736
- /** @description Error message(s) that occurred while processing the request */
737
- errorMessage?: string[] | string;
738
- };
843
+ interface components {
844
+ schemas: {
845
+ Error: {
846
+ /** @description Error message(s) that occurred while processing the request */
847
+ errorMessage?: string[] | string;
848
+ };
849
+ };
850
+ responses: {
851
+ /** @description Request input validation failed */
852
+ BadRequestError: {
853
+ headers: {
854
+ [name: string]: unknown;
739
855
  };
740
- responses: {
741
- /** Request input validation failed */
742
- BadRequestError: {
743
- content: {
744
- "application/json": external["swagger.yml"]["components"]["schemas"]["Error"];
745
- };
746
- };
747
- /** API key or token was not valid */
748
- UnauthorizedError: {
749
- content: {
750
- "application/json": external["swagger.yml"]["components"]["schemas"]["Error"];
751
- };
752
- };
753
- /** Permission was denied */
754
- ForbiddenError: {
755
- content: {
756
- "application/json": external["swagger.yml"]["components"]["schemas"]["Error"];
757
- };
758
- };
759
- /** Resource not found */
760
- NotFoundError: {
761
- content: {
762
- "application/json": external["swagger.yml"]["components"]["schemas"]["Error"];
763
- };
764
- };
765
- /** Too many requests in allowed time period */
766
- RateLimitError: unknown;
767
- /** Execution error occurred */
768
- InternalServerError: unknown;
856
+ content: {
857
+ "application/json": components["schemas"]["Error"];
858
+ };
859
+ };
860
+ /** @description API key or token was not valid */
861
+ UnauthorizedError: {
862
+ headers: {
863
+ [name: string]: unknown;
864
+ };
865
+ content: {
866
+ "application/json": components["schemas"]["Error"];
867
+ };
868
+ };
869
+ /** @description Permission was denied */
870
+ ForbiddenError: {
871
+ headers: {
872
+ [name: string]: unknown;
873
+ };
874
+ content: {
875
+ "application/json": components["schemas"]["Error"];
876
+ };
877
+ };
878
+ /** @description Too many requests in allowed time period */
879
+ RateLimitError: {
880
+ headers: {
881
+ [name: string]: unknown;
882
+ };
883
+ content?: never;
884
+ };
885
+ /** @description Execution error occurred */
886
+ InternalServerError: {
887
+ headers: {
888
+ [name: string]: unknown;
769
889
  };
890
+ content?: never;
770
891
  };
771
- operations: {};
772
892
  };
893
+ parameters: never;
894
+ requestBodies: never;
895
+ headers: never;
896
+ pathItems: never;
773
897
  }
774
898
 
775
899
  type IntegrationDefinitionsApi = paths$1['/api/v1/integration-definitions'];
@@ -932,7 +1056,7 @@ declare class IntegrationDefinitionClient extends ApiClient<DefClientOptions> {
932
1056
  default?: string | null;
933
1057
  };
934
1058
  } | null;
935
- metadata?: unknown | null;
1059
+ metadata?: unknown;
936
1060
  } | null;
937
1061
  parameterTypes: string[];
938
1062
  }[];
@@ -955,7 +1079,7 @@ declare class IntegrationDefinitionClient extends ApiClient<DefClientOptions> {
955
1079
  default?: string | null;
956
1080
  };
957
1081
  } | null;
958
- metadata?: unknown | null;
1082
+ metadata?: unknown;
959
1083
  } | null;
960
1084
  parameterTypes: string[];
961
1085
  }[];
package/dist/index.d.ts CHANGED
@@ -4,13 +4,15 @@ import { AssetParamValue, DataType, DataSource, DataSourceVariantsKeys, DataReso
4
4
  export { AssetParamValue, AssetParamValueItem } from '@uniformdev/canvas';
5
5
  import { Emitter } from 'mitt';
6
6
 
7
- /**
8
- * This file was auto-generated by openapi-typescript.
9
- * Do not make direct changes to the file.
10
- */
11
7
  interface paths$1 {
12
8
  "/api/v1/integration-definitions": {
13
- /** Gets a list of Mesh apps that are available for a Uniform team */
9
+ parameters: {
10
+ query?: never;
11
+ header?: never;
12
+ path?: never;
13
+ cookie?: never;
14
+ };
15
+ /** @description Gets a list of Mesh apps that are available for a Uniform team */
14
16
  get: {
15
17
  parameters: {
16
18
  query: {
@@ -18,10 +20,17 @@ interface paths$1 {
18
20
  includePublic?: boolean | null;
19
21
  teamSpecificType?: boolean | null;
20
22
  };
23
+ header?: never;
24
+ path?: never;
25
+ cookie?: never;
21
26
  };
27
+ requestBody?: never;
22
28
  responses: {
23
- /** 200 response */
29
+ /** @description 200 response */
24
30
  200: {
31
+ headers: {
32
+ [name: string]: unknown;
33
+ };
25
34
  content: {
26
35
  "application/json": {
27
36
  results: {
@@ -156,7 +165,7 @@ interface paths$1 {
156
165
  default?: string | null;
157
166
  };
158
167
  } | null;
159
- metadata?: unknown | null;
168
+ metadata?: unknown;
160
169
  } | null;
161
170
  parameterTypes: string[];
162
171
  }[];
@@ -180,7 +189,7 @@ interface paths$1 {
180
189
  default?: string | null;
181
190
  };
182
191
  } | null;
183
- metadata?: unknown | null;
192
+ metadata?: unknown;
184
193
  } | null;
185
194
  parameterTypes: string[];
186
195
  }[];
@@ -188,27 +197,36 @@ interface paths$1 {
188
197
  };
189
198
  };
190
199
  };
191
- 400: external$1["swagger.yml"]["components"]["responses"]["BadRequestError"];
192
- 401: external$1["swagger.yml"]["components"]["responses"]["UnauthorizedError"];
193
- 403: external$1["swagger.yml"]["components"]["responses"]["ForbiddenError"];
194
- 429: external$1["swagger.yml"]["components"]["responses"]["RateLimitError"];
195
- 500: external$1["swagger.yml"]["components"]["responses"]["InternalServerError"];
200
+ 400: components$1["responses"]["BadRequestError"];
201
+ 401: components$1["responses"]["UnauthorizedError"];
202
+ 403: components$1["responses"]["ForbiddenError"];
203
+ 429: components$1["responses"]["RateLimitError"];
204
+ 500: components$1["responses"]["InternalServerError"];
196
205
  };
197
206
  };
198
- /** Creates or updates a Mesh app definition on a team */
207
+ /** @description Creates or updates a Mesh app definition on a team */
199
208
  put: {
200
- responses: {
201
- /** Update success */
202
- 200: {
203
- content: {
204
- "application/json": {
209
+ parameters: {
210
+ query?: never;
211
+ header?: never;
212
+ path?: never;
213
+ cookie?: never;
214
+ };
215
+ requestBody: {
216
+ content: {
217
+ "application/json": {
218
+ /**
219
+ * Format: uuid
220
+ * @description The team ID
221
+ */
222
+ teamId: string;
223
+ data: {
205
224
  type: string;
206
225
  displayName: string;
207
226
  logoIconUrl?: string;
208
227
  badgeIconUrl?: string;
209
228
  /** @enum {string} */
210
229
  category?: "analytics" | "cdn" | "classic" | "commerce" | "content" | "comingSoon" | "data" | "deprecated" | "email" | "framework" | "search" | "starters" | "translation" | "uniform" | "ai" | "unknown";
211
- public?: boolean;
212
230
  scopes?: string[];
213
231
  baseLocationUrl?: string;
214
232
  locations: {
@@ -333,7 +351,7 @@ interface paths$1 {
333
351
  default?: string | null;
334
352
  };
335
353
  } | null;
336
- metadata?: unknown | null;
354
+ metadata?: unknown;
337
355
  } | null;
338
356
  parameterTypes: string[];
339
357
  }[];
@@ -357,34 +375,29 @@ interface paths$1 {
357
375
  default?: string | null;
358
376
  };
359
377
  } | null;
360
- metadata?: unknown | null;
378
+ metadata?: unknown;
361
379
  } | null;
362
380
  parameterTypes: string[];
363
381
  }[];
364
382
  };
365
383
  };
366
384
  };
367
- 400: external$1["swagger.yml"]["components"]["responses"]["BadRequestError"];
368
- 401: external$1["swagger.yml"]["components"]["responses"]["UnauthorizedError"];
369
- 403: external$1["swagger.yml"]["components"]["responses"]["ForbiddenError"];
370
- 429: external$1["swagger.yml"]["components"]["responses"]["RateLimitError"];
371
- 500: external$1["swagger.yml"]["components"]["responses"]["InternalServerError"];
372
385
  };
373
- requestBody: {
374
- content: {
375
- "application/json": {
376
- /**
377
- * Format: uuid
378
- * @description The team ID
379
- */
380
- teamId: string;
381
- data: {
386
+ responses: {
387
+ /** @description Update success */
388
+ 200: {
389
+ headers: {
390
+ [name: string]: unknown;
391
+ };
392
+ content: {
393
+ "application/json": {
382
394
  type: string;
383
395
  displayName: string;
384
396
  logoIconUrl?: string;
385
397
  badgeIconUrl?: string;
386
398
  /** @enum {string} */
387
399
  category?: "analytics" | "cdn" | "classic" | "commerce" | "content" | "comingSoon" | "data" | "deprecated" | "email" | "framework" | "search" | "starters" | "translation" | "uniform" | "ai" | "unknown";
400
+ public?: boolean;
388
401
  scopes?: string[];
389
402
  baseLocationUrl?: string;
390
403
  locations: {
@@ -509,7 +522,7 @@ interface paths$1 {
509
522
  default?: string | null;
510
523
  };
511
524
  } | null;
512
- metadata?: unknown | null;
525
+ metadata?: unknown;
513
526
  } | null;
514
527
  parameterTypes: string[];
515
528
  }[];
@@ -533,27 +546,28 @@ interface paths$1 {
533
546
  default?: string | null;
534
547
  };
535
548
  } | null;
536
- metadata?: unknown | null;
549
+ metadata?: unknown;
537
550
  } | null;
538
551
  parameterTypes: string[];
539
552
  }[];
540
553
  };
541
554
  };
542
555
  };
556
+ 400: components$1["responses"]["BadRequestError"];
557
+ 401: components$1["responses"]["UnauthorizedError"];
558
+ 403: components$1["responses"]["ForbiddenError"];
559
+ 429: components$1["responses"]["RateLimitError"];
560
+ 500: components$1["responses"]["InternalServerError"];
543
561
  };
544
562
  };
545
- /** Removes a Mesh app definition from a team. Note that public integrations may not be deleted without contacting Uniform. */
563
+ post?: never;
564
+ /** @description Removes a Mesh app definition from a team. Note that public integrations may not be deleted without contacting Uniform. */
546
565
  delete: {
547
- responses: {
548
- /** Delete successful */
549
- 204: never;
550
- 400: external$1["swagger.yml"]["components"]["responses"]["BadRequestError"];
551
- 401: external$1["swagger.yml"]["components"]["responses"]["UnauthorizedError"];
552
- 403: external$1["swagger.yml"]["components"]["responses"]["ForbiddenError"];
553
- /** Integration to delete was not found */
554
- 404: unknown;
555
- 429: external$1["swagger.yml"]["components"]["responses"]["RateLimitError"];
556
- 500: external$1["swagger.yml"]["components"]["responses"]["InternalServerError"];
566
+ parameters: {
567
+ query?: never;
568
+ header?: never;
569
+ path?: never;
570
+ cookie?: never;
557
571
  };
558
572
  requestBody: {
559
573
  content: {
@@ -568,68 +582,117 @@ interface paths$1 {
568
582
  };
569
583
  };
570
584
  };
585
+ responses: {
586
+ /** @description Delete successful */
587
+ 204: {
588
+ headers: {
589
+ [name: string]: unknown;
590
+ };
591
+ content?: never;
592
+ };
593
+ 400: components$1["responses"]["BadRequestError"];
594
+ 401: components$1["responses"]["UnauthorizedError"];
595
+ 403: components$1["responses"]["ForbiddenError"];
596
+ /** @description Integration to delete was not found */
597
+ 404: {
598
+ headers: {
599
+ [name: string]: unknown;
600
+ };
601
+ content?: never;
602
+ };
603
+ 429: components$1["responses"]["RateLimitError"];
604
+ 500: components$1["responses"]["InternalServerError"];
605
+ };
571
606
  };
572
- /** Handles preflight requests. This endpoint allows CORS. */
607
+ /** @description Handles preflight requests. This endpoint allows CORS. */
573
608
  options: {
609
+ parameters: {
610
+ query?: never;
611
+ header?: never;
612
+ path?: never;
613
+ cookie?: never;
614
+ };
615
+ requestBody?: never;
574
616
  responses: {
575
- /** ok */
576
- 204: never;
617
+ /** @description ok */
618
+ 204: {
619
+ headers: {
620
+ [name: string]: unknown;
621
+ };
622
+ content?: never;
623
+ };
577
624
  };
578
625
  };
626
+ head?: never;
627
+ patch?: never;
628
+ trace?: never;
579
629
  };
580
630
  }
581
- interface external$1 {
582
- "swagger.yml": {
583
- paths: {};
584
- components: {
585
- schemas: {
586
- Error: {
587
- /** @description Error message(s) that occurred while processing the request */
588
- errorMessage?: string[] | string;
589
- };
631
+ interface components$1 {
632
+ schemas: {
633
+ Error: {
634
+ /** @description Error message(s) that occurred while processing the request */
635
+ errorMessage?: string[] | string;
636
+ };
637
+ };
638
+ responses: {
639
+ /** @description Request input validation failed */
640
+ BadRequestError: {
641
+ headers: {
642
+ [name: string]: unknown;
590
643
  };
591
- responses: {
592
- /** Request input validation failed */
593
- BadRequestError: {
594
- content: {
595
- "application/json": external$1["swagger.yml"]["components"]["schemas"]["Error"];
596
- };
597
- };
598
- /** API key or token was not valid */
599
- UnauthorizedError: {
600
- content: {
601
- "application/json": external$1["swagger.yml"]["components"]["schemas"]["Error"];
602
- };
603
- };
604
- /** Permission was denied */
605
- ForbiddenError: {
606
- content: {
607
- "application/json": external$1["swagger.yml"]["components"]["schemas"]["Error"];
608
- };
609
- };
610
- /** Resource not found */
611
- NotFoundError: {
612
- content: {
613
- "application/json": external$1["swagger.yml"]["components"]["schemas"]["Error"];
614
- };
615
- };
616
- /** Too many requests in allowed time period */
617
- RateLimitError: unknown;
618
- /** Execution error occurred */
619
- InternalServerError: unknown;
644
+ content: {
645
+ "application/json": components$1["schemas"]["Error"];
646
+ };
647
+ };
648
+ /** @description API key or token was not valid */
649
+ UnauthorizedError: {
650
+ headers: {
651
+ [name: string]: unknown;
652
+ };
653
+ content: {
654
+ "application/json": components$1["schemas"]["Error"];
655
+ };
656
+ };
657
+ /** @description Permission was denied */
658
+ ForbiddenError: {
659
+ headers: {
660
+ [name: string]: unknown;
661
+ };
662
+ content: {
663
+ "application/json": components$1["schemas"]["Error"];
620
664
  };
621
665
  };
622
- operations: {};
666
+ /** @description Too many requests in allowed time period */
667
+ RateLimitError: {
668
+ headers: {
669
+ [name: string]: unknown;
670
+ };
671
+ content?: never;
672
+ };
673
+ /** @description Execution error occurred */
674
+ InternalServerError: {
675
+ headers: {
676
+ [name: string]: unknown;
677
+ };
678
+ content?: never;
679
+ };
623
680
  };
681
+ parameters: never;
682
+ requestBodies: never;
683
+ headers: never;
684
+ pathItems: never;
624
685
  }
625
686
 
626
- /**
627
- * This file was auto-generated by openapi-typescript.
628
- * Do not make direct changes to the file.
629
- */
630
687
  interface paths {
631
688
  "/api/v1/integration-installations": {
632
- /** Gets a list of installed integrations for a Uniform Project */
689
+ parameters: {
690
+ query?: never;
691
+ header?: never;
692
+ path?: never;
693
+ cookie?: never;
694
+ };
695
+ /** @description Gets a list of installed integrations for a Uniform Project */
633
696
  get: {
634
697
  parameters: {
635
698
  query: {
@@ -638,38 +701,42 @@ interface paths {
638
701
  exactType?: boolean | null;
639
702
  teamSpecificType?: boolean | null;
640
703
  };
704
+ header?: never;
705
+ path?: never;
706
+ cookie?: never;
641
707
  };
708
+ requestBody?: never;
642
709
  responses: {
643
- /** 200 response */
710
+ /** @description 200 response */
644
711
  200: {
712
+ headers: {
713
+ [name: string]: unknown;
714
+ };
645
715
  content: {
646
716
  "application/json": {
647
717
  results: {
648
718
  type: string;
649
719
  data?: {
650
- [key: string]: unknown;
720
+ [key: string]: unknown[] | boolean | number | Record<string, never> | string;
651
721
  };
652
722
  }[];
653
723
  };
654
724
  };
655
725
  };
656
- 400: external["swagger.yml"]["components"]["responses"]["BadRequestError"];
657
- 401: external["swagger.yml"]["components"]["responses"]["UnauthorizedError"];
658
- 403: external["swagger.yml"]["components"]["responses"]["ForbiddenError"];
659
- 429: external["swagger.yml"]["components"]["responses"]["RateLimitError"];
660
- 500: external["swagger.yml"]["components"]["responses"]["InternalServerError"];
726
+ 400: components["responses"]["BadRequestError"];
727
+ 401: components["responses"]["UnauthorizedError"];
728
+ 403: components["responses"]["ForbiddenError"];
729
+ 429: components["responses"]["RateLimitError"];
730
+ 500: components["responses"]["InternalServerError"];
661
731
  };
662
732
  };
663
- /** Installs or updates an integration on a Uniform Project. If data is not provided, it will remain unmodified from any existing value. */
733
+ /** @description Installs or updates an integration on a Uniform Project. If data is not provided, it will remain unmodified from any existing value. */
664
734
  put: {
665
- responses: {
666
- /** Install or update success */
667
- 204: never;
668
- 400: external["swagger.yml"]["components"]["responses"]["BadRequestError"];
669
- 401: external["swagger.yml"]["components"]["responses"]["UnauthorizedError"];
670
- 403: external["swagger.yml"]["components"]["responses"]["ForbiddenError"];
671
- 429: external["swagger.yml"]["components"]["responses"]["RateLimitError"];
672
- 500: external["swagger.yml"]["components"]["responses"]["InternalServerError"];
735
+ parameters: {
736
+ query?: never;
737
+ header?: never;
738
+ path?: never;
739
+ cookie?: never;
673
740
  };
674
741
  requestBody: {
675
742
  content: {
@@ -683,24 +750,34 @@ interface paths {
683
750
  exactType?: boolean | null;
684
751
  type: string;
685
752
  data?: {
686
- [key: string]: unknown;
753
+ [key: string]: unknown[] | boolean | number | Record<string, never> | string;
687
754
  };
688
755
  };
689
756
  };
690
757
  };
758
+ responses: {
759
+ /** @description Install or update success */
760
+ 204: {
761
+ headers: {
762
+ [name: string]: unknown;
763
+ };
764
+ content?: never;
765
+ };
766
+ 400: components["responses"]["BadRequestError"];
767
+ 401: components["responses"]["UnauthorizedError"];
768
+ 403: components["responses"]["ForbiddenError"];
769
+ 429: components["responses"]["RateLimitError"];
770
+ 500: components["responses"]["InternalServerError"];
771
+ };
691
772
  };
692
- /** Removes an integration from a project. */
773
+ post?: never;
774
+ /** @description Removes an integration from a project. */
693
775
  delete: {
694
- responses: {
695
- /** Delete successful */
696
- 204: never;
697
- 400: external["swagger.yml"]["components"]["responses"]["BadRequestError"];
698
- 401: external["swagger.yml"]["components"]["responses"]["UnauthorizedError"];
699
- 403: external["swagger.yml"]["components"]["responses"]["ForbiddenError"];
700
- /** Integration to delete was not found */
701
- 404: unknown;
702
- 429: external["swagger.yml"]["components"]["responses"]["RateLimitError"];
703
- 500: external["swagger.yml"]["components"]["responses"]["InternalServerError"];
776
+ parameters: {
777
+ query?: never;
778
+ header?: never;
779
+ path?: never;
780
+ cookie?: never;
704
781
  };
705
782
  requestBody: {
706
783
  content: {
@@ -717,59 +794,106 @@ interface paths {
717
794
  };
718
795
  };
719
796
  };
797
+ responses: {
798
+ /** @description Delete successful */
799
+ 204: {
800
+ headers: {
801
+ [name: string]: unknown;
802
+ };
803
+ content?: never;
804
+ };
805
+ 400: components["responses"]["BadRequestError"];
806
+ 401: components["responses"]["UnauthorizedError"];
807
+ 403: components["responses"]["ForbiddenError"];
808
+ /** @description Integration to delete was not found */
809
+ 404: {
810
+ headers: {
811
+ [name: string]: unknown;
812
+ };
813
+ content?: never;
814
+ };
815
+ 429: components["responses"]["RateLimitError"];
816
+ 500: components["responses"]["InternalServerError"];
817
+ };
720
818
  };
721
- /** Handles preflight requests. This endpoint allows CORS. */
819
+ /** @description Handles preflight requests. This endpoint allows CORS. */
722
820
  options: {
821
+ parameters: {
822
+ query?: never;
823
+ header?: never;
824
+ path?: never;
825
+ cookie?: never;
826
+ };
827
+ requestBody?: never;
723
828
  responses: {
724
- /** ok */
725
- 204: never;
829
+ /** @description ok */
830
+ 204: {
831
+ headers: {
832
+ [name: string]: unknown;
833
+ };
834
+ content?: never;
835
+ };
726
836
  };
727
837
  };
838
+ head?: never;
839
+ patch?: never;
840
+ trace?: never;
728
841
  };
729
842
  }
730
- interface external {
731
- "swagger.yml": {
732
- paths: {};
733
- components: {
734
- schemas: {
735
- Error: {
736
- /** @description Error message(s) that occurred while processing the request */
737
- errorMessage?: string[] | string;
738
- };
843
+ interface components {
844
+ schemas: {
845
+ Error: {
846
+ /** @description Error message(s) that occurred while processing the request */
847
+ errorMessage?: string[] | string;
848
+ };
849
+ };
850
+ responses: {
851
+ /** @description Request input validation failed */
852
+ BadRequestError: {
853
+ headers: {
854
+ [name: string]: unknown;
739
855
  };
740
- responses: {
741
- /** Request input validation failed */
742
- BadRequestError: {
743
- content: {
744
- "application/json": external["swagger.yml"]["components"]["schemas"]["Error"];
745
- };
746
- };
747
- /** API key or token was not valid */
748
- UnauthorizedError: {
749
- content: {
750
- "application/json": external["swagger.yml"]["components"]["schemas"]["Error"];
751
- };
752
- };
753
- /** Permission was denied */
754
- ForbiddenError: {
755
- content: {
756
- "application/json": external["swagger.yml"]["components"]["schemas"]["Error"];
757
- };
758
- };
759
- /** Resource not found */
760
- NotFoundError: {
761
- content: {
762
- "application/json": external["swagger.yml"]["components"]["schemas"]["Error"];
763
- };
764
- };
765
- /** Too many requests in allowed time period */
766
- RateLimitError: unknown;
767
- /** Execution error occurred */
768
- InternalServerError: unknown;
856
+ content: {
857
+ "application/json": components["schemas"]["Error"];
858
+ };
859
+ };
860
+ /** @description API key or token was not valid */
861
+ UnauthorizedError: {
862
+ headers: {
863
+ [name: string]: unknown;
864
+ };
865
+ content: {
866
+ "application/json": components["schemas"]["Error"];
867
+ };
868
+ };
869
+ /** @description Permission was denied */
870
+ ForbiddenError: {
871
+ headers: {
872
+ [name: string]: unknown;
873
+ };
874
+ content: {
875
+ "application/json": components["schemas"]["Error"];
876
+ };
877
+ };
878
+ /** @description Too many requests in allowed time period */
879
+ RateLimitError: {
880
+ headers: {
881
+ [name: string]: unknown;
882
+ };
883
+ content?: never;
884
+ };
885
+ /** @description Execution error occurred */
886
+ InternalServerError: {
887
+ headers: {
888
+ [name: string]: unknown;
769
889
  };
890
+ content?: never;
770
891
  };
771
- operations: {};
772
892
  };
893
+ parameters: never;
894
+ requestBodies: never;
895
+ headers: never;
896
+ pathItems: never;
773
897
  }
774
898
 
775
899
  type IntegrationDefinitionsApi = paths$1['/api/v1/integration-definitions'];
@@ -932,7 +1056,7 @@ declare class IntegrationDefinitionClient extends ApiClient<DefClientOptions> {
932
1056
  default?: string | null;
933
1057
  };
934
1058
  } | null;
935
- metadata?: unknown | null;
1059
+ metadata?: unknown;
936
1060
  } | null;
937
1061
  parameterTypes: string[];
938
1062
  }[];
@@ -955,7 +1079,7 @@ declare class IntegrationDefinitionClient extends ApiClient<DefClientOptions> {
955
1079
  default?: string | null;
956
1080
  };
957
1081
  } | null;
958
- metadata?: unknown | null;
1082
+ metadata?: unknown;
959
1083
  } | null;
960
1084
  parameterTypes: string[];
961
1085
  }[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniformdev/mesh-sdk",
3
- "version": "19.195.0",
3
+ "version": "19.195.1-alpha.2+f70c499178",
4
4
  "description": "Uniform Mesh Framework SDK",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "main": "./dist/index.js",
@@ -34,14 +34,14 @@
34
34
  "access": "public"
35
35
  },
36
36
  "dependencies": {
37
- "@uniformdev/canvas": "19.195.0",
38
- "@uniformdev/context": "19.195.0",
39
- "@uniformdev/project-map": "19.195.0",
37
+ "@uniformdev/canvas": "19.195.1-alpha.2+f70c499178",
38
+ "@uniformdev/context": "19.195.1-alpha.2+f70c499178",
39
+ "@uniformdev/project-map": "19.195.1-alpha.2+f70c499178",
40
40
  "imagesloaded": "^5.0.0",
41
41
  "mitt": "^3.0.1"
42
42
  },
43
43
  "devDependencies": {
44
44
  "@types/imagesloaded": "^4.1.2"
45
45
  },
46
- "gitHead": "aba354b131330cc171914ce87aa48d4b10df7192"
46
+ "gitHead": "f70c49917880b1aba91884760926f6ea66700a97"
47
47
  }