@vrplatform/api 1.3.1-stage.4613 → 1.3.1-stage.4618

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.
@@ -1628,6 +1628,42 @@ export interface paths {
1628
1628
  patch?: never;
1629
1629
  trace?: never;
1630
1630
  };
1631
+ "/internal/message-overwrites": {
1632
+ parameters: {
1633
+ query?: never;
1634
+ header?: never;
1635
+ path?: never;
1636
+ cookie?: never;
1637
+ };
1638
+ /** @description List global issue-message overwrites with case-insensitive search across patterns and replacement messages. VRP-admin only. */
1639
+ get: operations["getInternalMessageOverwrites"];
1640
+ put?: never;
1641
+ /** @description Create a global issue-message overwrite from a non-empty glob pattern and replacement message. VRP-admin only. */
1642
+ post: operations["postInternalMessageOverwrites"];
1643
+ delete?: never;
1644
+ options?: never;
1645
+ head?: never;
1646
+ patch?: never;
1647
+ trace?: never;
1648
+ };
1649
+ "/internal/message-overwrites/{id}": {
1650
+ parameters: {
1651
+ query?: never;
1652
+ header?: never;
1653
+ path?: never;
1654
+ cookie?: never;
1655
+ };
1656
+ get?: never;
1657
+ /** @description Replace the editable fields of a global issue-message overwrite. VRP-admin only. */
1658
+ put: operations["putInternalMessageOverwritesById"];
1659
+ post?: never;
1660
+ /** @description Delete a global issue-message overwrite. VRP-admin only. */
1661
+ delete: operations["deleteInternalMessageOverwritesById"];
1662
+ options?: never;
1663
+ head?: never;
1664
+ patch?: never;
1665
+ trace?: never;
1666
+ };
1631
1667
  "/internal/migrate-vri-to-vrt": {
1632
1668
  parameters: {
1633
1669
  query?: never;
@@ -29479,6 +29515,666 @@ export interface operations {
29479
29515
  };
29480
29516
  };
29481
29517
  };
29518
+ getInternalMessageOverwrites: {
29519
+ parameters: {
29520
+ query?: {
29521
+ search?: string;
29522
+ limit?: number;
29523
+ page?: number;
29524
+ offset?: number;
29525
+ };
29526
+ header?: never;
29527
+ path?: never;
29528
+ cookie?: never;
29529
+ };
29530
+ requestBody?: never;
29531
+ responses: {
29532
+ /** @description Successful response */
29533
+ 200: {
29534
+ headers: {
29535
+ [name: string]: unknown;
29536
+ };
29537
+ content: {
29538
+ "application/json": {
29539
+ data: {
29540
+ /** Format: uuid */
29541
+ id: string;
29542
+ pattern: string;
29543
+ message: string;
29544
+ }[];
29545
+ pagination: {
29546
+ /** @default 100 */
29547
+ limit: number;
29548
+ /** @default 1 */
29549
+ page: number;
29550
+ total: number;
29551
+ totalPage: number;
29552
+ nextPage?: number;
29553
+ };
29554
+ };
29555
+ };
29556
+ };
29557
+ /** @description Bad request */
29558
+ 400: {
29559
+ headers: {
29560
+ [name: string]: unknown;
29561
+ };
29562
+ content: {
29563
+ "application/json": {
29564
+ code: string;
29565
+ message: string;
29566
+ links?: {
29567
+ docs: string;
29568
+ schema: string;
29569
+ };
29570
+ issues?: {
29571
+ message: string;
29572
+ path?: (string | number)[];
29573
+ schema?: string;
29574
+ }[];
29575
+ context?: unknown;
29576
+ };
29577
+ };
29578
+ };
29579
+ /** @description Unauthorized */
29580
+ 401: {
29581
+ headers: {
29582
+ [name: string]: unknown;
29583
+ };
29584
+ content: {
29585
+ "application/json": {
29586
+ code: string;
29587
+ message: string;
29588
+ links?: {
29589
+ docs: string;
29590
+ schema: string;
29591
+ };
29592
+ issues?: {
29593
+ message: string;
29594
+ path?: (string | number)[];
29595
+ schema?: string;
29596
+ }[];
29597
+ context?: unknown;
29598
+ };
29599
+ };
29600
+ };
29601
+ /** @description Forbidden */
29602
+ 403: {
29603
+ headers: {
29604
+ [name: string]: unknown;
29605
+ };
29606
+ content: {
29607
+ "application/json": {
29608
+ code: string;
29609
+ message: string;
29610
+ links?: {
29611
+ docs: string;
29612
+ schema: string;
29613
+ };
29614
+ issues?: {
29615
+ message: string;
29616
+ path?: (string | number)[];
29617
+ schema?: string;
29618
+ }[];
29619
+ context?: unknown;
29620
+ };
29621
+ };
29622
+ };
29623
+ /** @description Not found */
29624
+ 404: {
29625
+ headers: {
29626
+ [name: string]: unknown;
29627
+ };
29628
+ content: {
29629
+ "application/json": {
29630
+ code: string;
29631
+ message: string;
29632
+ links?: {
29633
+ docs: string;
29634
+ schema: string;
29635
+ };
29636
+ issues?: {
29637
+ message: string;
29638
+ path?: (string | number)[];
29639
+ schema?: string;
29640
+ }[];
29641
+ context?: unknown;
29642
+ };
29643
+ };
29644
+ };
29645
+ /** @description Internal server error */
29646
+ 500: {
29647
+ headers: {
29648
+ [name: string]: unknown;
29649
+ };
29650
+ content: {
29651
+ "application/json": {
29652
+ code: string;
29653
+ message: string;
29654
+ links?: {
29655
+ docs: string;
29656
+ schema: string;
29657
+ };
29658
+ issues?: {
29659
+ message: string;
29660
+ path?: (string | number)[];
29661
+ schema?: string;
29662
+ }[];
29663
+ context?: unknown;
29664
+ };
29665
+ };
29666
+ };
29667
+ /** @description Service unavailable */
29668
+ 503: {
29669
+ headers: {
29670
+ [name: string]: unknown;
29671
+ };
29672
+ content: {
29673
+ "application/json": {
29674
+ code: string;
29675
+ message: string;
29676
+ links?: {
29677
+ docs: string;
29678
+ schema: string;
29679
+ };
29680
+ issues?: {
29681
+ message: string;
29682
+ path?: (string | number)[];
29683
+ schema?: string;
29684
+ }[];
29685
+ context?: unknown;
29686
+ };
29687
+ };
29688
+ };
29689
+ };
29690
+ };
29691
+ postInternalMessageOverwrites: {
29692
+ parameters: {
29693
+ query?: never;
29694
+ header?: never;
29695
+ path?: never;
29696
+ cookie?: never;
29697
+ };
29698
+ requestBody?: {
29699
+ content: {
29700
+ "application/json": {
29701
+ pattern: string;
29702
+ message: string;
29703
+ };
29704
+ };
29705
+ };
29706
+ responses: {
29707
+ /** @description Successful response */
29708
+ 200: {
29709
+ headers: {
29710
+ [name: string]: unknown;
29711
+ };
29712
+ content: {
29713
+ "application/json": {
29714
+ /** Format: uuid */
29715
+ id: string;
29716
+ pattern: string;
29717
+ message: string;
29718
+ };
29719
+ };
29720
+ };
29721
+ /** @description Bad request */
29722
+ 400: {
29723
+ headers: {
29724
+ [name: string]: unknown;
29725
+ };
29726
+ content: {
29727
+ "application/json": {
29728
+ code: string;
29729
+ message: string;
29730
+ links?: {
29731
+ docs: string;
29732
+ schema: string;
29733
+ };
29734
+ issues?: {
29735
+ message: string;
29736
+ path?: (string | number)[];
29737
+ schema?: string;
29738
+ }[];
29739
+ context?: unknown;
29740
+ };
29741
+ };
29742
+ };
29743
+ /** @description Unauthorized */
29744
+ 401: {
29745
+ headers: {
29746
+ [name: string]: unknown;
29747
+ };
29748
+ content: {
29749
+ "application/json": {
29750
+ code: string;
29751
+ message: string;
29752
+ links?: {
29753
+ docs: string;
29754
+ schema: string;
29755
+ };
29756
+ issues?: {
29757
+ message: string;
29758
+ path?: (string | number)[];
29759
+ schema?: string;
29760
+ }[];
29761
+ context?: unknown;
29762
+ };
29763
+ };
29764
+ };
29765
+ /** @description Forbidden */
29766
+ 403: {
29767
+ headers: {
29768
+ [name: string]: unknown;
29769
+ };
29770
+ content: {
29771
+ "application/json": {
29772
+ code: string;
29773
+ message: string;
29774
+ links?: {
29775
+ docs: string;
29776
+ schema: string;
29777
+ };
29778
+ issues?: {
29779
+ message: string;
29780
+ path?: (string | number)[];
29781
+ schema?: string;
29782
+ }[];
29783
+ context?: unknown;
29784
+ };
29785
+ };
29786
+ };
29787
+ /** @description Not found */
29788
+ 404: {
29789
+ headers: {
29790
+ [name: string]: unknown;
29791
+ };
29792
+ content: {
29793
+ "application/json": {
29794
+ code: string;
29795
+ message: string;
29796
+ links?: {
29797
+ docs: string;
29798
+ schema: string;
29799
+ };
29800
+ issues?: {
29801
+ message: string;
29802
+ path?: (string | number)[];
29803
+ schema?: string;
29804
+ }[];
29805
+ context?: unknown;
29806
+ };
29807
+ };
29808
+ };
29809
+ /** @description Internal server error */
29810
+ 500: {
29811
+ headers: {
29812
+ [name: string]: unknown;
29813
+ };
29814
+ content: {
29815
+ "application/json": {
29816
+ code: string;
29817
+ message: string;
29818
+ links?: {
29819
+ docs: string;
29820
+ schema: string;
29821
+ };
29822
+ issues?: {
29823
+ message: string;
29824
+ path?: (string | number)[];
29825
+ schema?: string;
29826
+ }[];
29827
+ context?: unknown;
29828
+ };
29829
+ };
29830
+ };
29831
+ /** @description Service unavailable */
29832
+ 503: {
29833
+ headers: {
29834
+ [name: string]: unknown;
29835
+ };
29836
+ content: {
29837
+ "application/json": {
29838
+ code: string;
29839
+ message: string;
29840
+ links?: {
29841
+ docs: string;
29842
+ schema: string;
29843
+ };
29844
+ issues?: {
29845
+ message: string;
29846
+ path?: (string | number)[];
29847
+ schema?: string;
29848
+ }[];
29849
+ context?: unknown;
29850
+ };
29851
+ };
29852
+ };
29853
+ };
29854
+ };
29855
+ putInternalMessageOverwritesById: {
29856
+ parameters: {
29857
+ query?: never;
29858
+ header?: never;
29859
+ path: {
29860
+ id: string;
29861
+ };
29862
+ cookie?: never;
29863
+ };
29864
+ requestBody?: {
29865
+ content: {
29866
+ "application/json": {
29867
+ pattern: string;
29868
+ message: string;
29869
+ };
29870
+ };
29871
+ };
29872
+ responses: {
29873
+ /** @description Successful response */
29874
+ 200: {
29875
+ headers: {
29876
+ [name: string]: unknown;
29877
+ };
29878
+ content: {
29879
+ "application/json": {
29880
+ /** Format: uuid */
29881
+ id: string;
29882
+ pattern: string;
29883
+ message: string;
29884
+ };
29885
+ };
29886
+ };
29887
+ /** @description Bad request */
29888
+ 400: {
29889
+ headers: {
29890
+ [name: string]: unknown;
29891
+ };
29892
+ content: {
29893
+ "application/json": {
29894
+ code: string;
29895
+ message: string;
29896
+ links?: {
29897
+ docs: string;
29898
+ schema: string;
29899
+ };
29900
+ issues?: {
29901
+ message: string;
29902
+ path?: (string | number)[];
29903
+ schema?: string;
29904
+ }[];
29905
+ context?: unknown;
29906
+ };
29907
+ };
29908
+ };
29909
+ /** @description Unauthorized */
29910
+ 401: {
29911
+ headers: {
29912
+ [name: string]: unknown;
29913
+ };
29914
+ content: {
29915
+ "application/json": {
29916
+ code: string;
29917
+ message: string;
29918
+ links?: {
29919
+ docs: string;
29920
+ schema: string;
29921
+ };
29922
+ issues?: {
29923
+ message: string;
29924
+ path?: (string | number)[];
29925
+ schema?: string;
29926
+ }[];
29927
+ context?: unknown;
29928
+ };
29929
+ };
29930
+ };
29931
+ /** @description Forbidden */
29932
+ 403: {
29933
+ headers: {
29934
+ [name: string]: unknown;
29935
+ };
29936
+ content: {
29937
+ "application/json": {
29938
+ code: string;
29939
+ message: string;
29940
+ links?: {
29941
+ docs: string;
29942
+ schema: string;
29943
+ };
29944
+ issues?: {
29945
+ message: string;
29946
+ path?: (string | number)[];
29947
+ schema?: string;
29948
+ }[];
29949
+ context?: unknown;
29950
+ };
29951
+ };
29952
+ };
29953
+ /** @description Not found */
29954
+ 404: {
29955
+ headers: {
29956
+ [name: string]: unknown;
29957
+ };
29958
+ content: {
29959
+ "application/json": {
29960
+ code: string;
29961
+ message: string;
29962
+ links?: {
29963
+ docs: string;
29964
+ schema: string;
29965
+ };
29966
+ issues?: {
29967
+ message: string;
29968
+ path?: (string | number)[];
29969
+ schema?: string;
29970
+ }[];
29971
+ context?: unknown;
29972
+ };
29973
+ };
29974
+ };
29975
+ /** @description Internal server error */
29976
+ 500: {
29977
+ headers: {
29978
+ [name: string]: unknown;
29979
+ };
29980
+ content: {
29981
+ "application/json": {
29982
+ code: string;
29983
+ message: string;
29984
+ links?: {
29985
+ docs: string;
29986
+ schema: string;
29987
+ };
29988
+ issues?: {
29989
+ message: string;
29990
+ path?: (string | number)[];
29991
+ schema?: string;
29992
+ }[];
29993
+ context?: unknown;
29994
+ };
29995
+ };
29996
+ };
29997
+ /** @description Service unavailable */
29998
+ 503: {
29999
+ headers: {
30000
+ [name: string]: unknown;
30001
+ };
30002
+ content: {
30003
+ "application/json": {
30004
+ code: string;
30005
+ message: string;
30006
+ links?: {
30007
+ docs: string;
30008
+ schema: string;
30009
+ };
30010
+ issues?: {
30011
+ message: string;
30012
+ path?: (string | number)[];
30013
+ schema?: string;
30014
+ }[];
30015
+ context?: unknown;
30016
+ };
30017
+ };
30018
+ };
30019
+ };
30020
+ };
30021
+ deleteInternalMessageOverwritesById: {
30022
+ parameters: {
30023
+ query?: never;
30024
+ header?: never;
30025
+ path: {
30026
+ id: string;
30027
+ };
30028
+ cookie?: never;
30029
+ };
30030
+ requestBody?: never;
30031
+ responses: {
30032
+ /** @description Successful response */
30033
+ 200: {
30034
+ headers: {
30035
+ [name: string]: unknown;
30036
+ };
30037
+ content: {
30038
+ "application/json": {
30039
+ /** @constant */
30040
+ status: "deleted";
30041
+ };
30042
+ };
30043
+ };
30044
+ /** @description Bad request */
30045
+ 400: {
30046
+ headers: {
30047
+ [name: string]: unknown;
30048
+ };
30049
+ content: {
30050
+ "application/json": {
30051
+ code: string;
30052
+ message: string;
30053
+ links?: {
30054
+ docs: string;
30055
+ schema: string;
30056
+ };
30057
+ issues?: {
30058
+ message: string;
30059
+ path?: (string | number)[];
30060
+ schema?: string;
30061
+ }[];
30062
+ context?: unknown;
30063
+ };
30064
+ };
30065
+ };
30066
+ /** @description Unauthorized */
30067
+ 401: {
30068
+ headers: {
30069
+ [name: string]: unknown;
30070
+ };
30071
+ content: {
30072
+ "application/json": {
30073
+ code: string;
30074
+ message: string;
30075
+ links?: {
30076
+ docs: string;
30077
+ schema: string;
30078
+ };
30079
+ issues?: {
30080
+ message: string;
30081
+ path?: (string | number)[];
30082
+ schema?: string;
30083
+ }[];
30084
+ context?: unknown;
30085
+ };
30086
+ };
30087
+ };
30088
+ /** @description Forbidden */
30089
+ 403: {
30090
+ headers: {
30091
+ [name: string]: unknown;
30092
+ };
30093
+ content: {
30094
+ "application/json": {
30095
+ code: string;
30096
+ message: string;
30097
+ links?: {
30098
+ docs: string;
30099
+ schema: string;
30100
+ };
30101
+ issues?: {
30102
+ message: string;
30103
+ path?: (string | number)[];
30104
+ schema?: string;
30105
+ }[];
30106
+ context?: unknown;
30107
+ };
30108
+ };
30109
+ };
30110
+ /** @description Not found */
30111
+ 404: {
30112
+ headers: {
30113
+ [name: string]: unknown;
30114
+ };
30115
+ content: {
30116
+ "application/json": {
30117
+ code: string;
30118
+ message: string;
30119
+ links?: {
30120
+ docs: string;
30121
+ schema: string;
30122
+ };
30123
+ issues?: {
30124
+ message: string;
30125
+ path?: (string | number)[];
30126
+ schema?: string;
30127
+ }[];
30128
+ context?: unknown;
30129
+ };
30130
+ };
30131
+ };
30132
+ /** @description Internal server error */
30133
+ 500: {
30134
+ headers: {
30135
+ [name: string]: unknown;
30136
+ };
30137
+ content: {
30138
+ "application/json": {
30139
+ code: string;
30140
+ message: string;
30141
+ links?: {
30142
+ docs: string;
30143
+ schema: string;
30144
+ };
30145
+ issues?: {
30146
+ message: string;
30147
+ path?: (string | number)[];
30148
+ schema?: string;
30149
+ }[];
30150
+ context?: unknown;
30151
+ };
30152
+ };
30153
+ };
30154
+ /** @description Service unavailable */
30155
+ 503: {
30156
+ headers: {
30157
+ [name: string]: unknown;
30158
+ };
30159
+ content: {
30160
+ "application/json": {
30161
+ code: string;
30162
+ message: string;
30163
+ links?: {
30164
+ docs: string;
30165
+ schema: string;
30166
+ };
30167
+ issues?: {
30168
+ message: string;
30169
+ path?: (string | number)[];
30170
+ schema?: string;
30171
+ }[];
30172
+ context?: unknown;
30173
+ };
30174
+ };
30175
+ };
30176
+ };
30177
+ };
29482
30178
  postInternalMigrateVriToVrt: {
29483
30179
  parameters: {
29484
30180
  query?: never;