@scalar/api-client 2.1.7 → 2.1.9

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 (112) hide show
  1. package/CHANGELOG.md +28 -0
  2. package/dist/assets/rabbit.ascii.js +11 -0
  3. package/dist/assets/rabbitjump.ascii.js +11 -0
  4. package/dist/components/CodeInput/CodeInput.vue.d.ts.map +1 -1
  5. package/dist/components/CodeInput/CodeInput.vue.js +2 -2
  6. package/dist/components/CommandPalette/CommandPaletteCollection.vue.d.ts.map +1 -1
  7. package/dist/components/CommandPalette/CommandPaletteCollection.vue.js +48 -21
  8. package/dist/components/ContextBar.vue.d.ts.map +1 -1
  9. package/dist/components/ContextBar.vue.js +2 -2
  10. package/dist/components/ContextBar.vue2.js +22 -13
  11. package/dist/components/DarkModeToggle/DarkModeIconToggle.vue.js +1 -1
  12. package/dist/components/DataTable/DataTableInput.vue.d.ts +1 -1
  13. package/dist/components/DataTable/DataTableInput.vue.d.ts.map +1 -1
  14. package/dist/components/HttpMethod/HttpMethod.vue.d.ts +2 -2
  15. package/dist/components/IconSelector.vue.d.ts +35 -0
  16. package/dist/components/IconSelector.vue.d.ts.map +1 -0
  17. package/dist/components/IconSelector.vue.js +74 -0
  18. package/dist/components/IconSelector.vue2.js +4 -0
  19. package/dist/components/ScalarAsciiArt.vue.d.ts.map +1 -1
  20. package/dist/components/ScalarAsciiArt.vue.js +1 -1
  21. package/dist/components/ScalarAsciiArt.vue2.js +10 -10
  22. package/dist/components/SideNav/SideHelp.vue.js +1 -1
  23. package/dist/components/SideNav/SideNav.vue.d.ts.map +1 -1
  24. package/dist/components/SideNav/SideNav.vue.js +2 -2
  25. package/dist/components/SideNav/SideNav.vue2.js +19 -22
  26. package/dist/components/SideNav/SideNavLink.vue.d.ts +0 -2
  27. package/dist/components/SideNav/SideNavLink.vue.d.ts.map +1 -1
  28. package/dist/components/SideNav/SideNavLink.vue.js +19 -21
  29. package/dist/components/Sidebar/Actions/EditSidebarListCollection.vue.d.ts +24 -0
  30. package/dist/components/Sidebar/Actions/EditSidebarListCollection.vue.d.ts.map +1 -0
  31. package/dist/components/Sidebar/Actions/EditSidebarListCollection.vue.js +58 -0
  32. package/dist/components/Sidebar/Actions/EditSidebarListCollection.vue2.js +4 -0
  33. package/dist/components/Sidebar/Actions/{RenameSidebarListElement.vue.d.ts → EditSidebarListElement.vue.d.ts} +3 -3
  34. package/dist/components/Sidebar/Actions/EditSidebarListElement.vue.d.ts.map +1 -0
  35. package/dist/components/Sidebar/Actions/{RenameSidebarListElement.vue.js → EditSidebarListElement.vue.js} +9 -9
  36. package/dist/components/Sidebar/Actions/EditSidebarListElement.vue2.js +4 -0
  37. package/dist/components/Sidebar/Sidebar.vue.js +2 -2
  38. package/dist/components/Sidebar/Sidebar.vue2.js +1 -1
  39. package/dist/components/Sidebar/SidebarButton.vue.d.ts.map +1 -1
  40. package/dist/components/Sidebar/SidebarButton.vue.js +24 -26
  41. package/dist/components/ViewLayout/ViewLayoutSection.vue.js +1 -1
  42. package/dist/layouts/App/ApiClientApp.vue.d.ts.map +1 -1
  43. package/dist/layouts/App/ApiClientApp.vue.js +4 -4
  44. package/dist/layouts/App/create-api-client-app.d.ts +34 -22
  45. package/dist/layouts/App/create-api-client-app.d.ts.map +1 -1
  46. package/dist/layouts/Modal/create-api-client-modal.d.ts +68 -44
  47. package/dist/layouts/Modal/create-api-client-modal.d.ts.map +1 -1
  48. package/dist/layouts/Modal/create-api-client-modal.js +19 -17
  49. package/dist/libs/create-client.d.ts +39 -38
  50. package/dist/libs/create-client.d.ts.map +1 -1
  51. package/dist/libs/event-busses/hot-keys-bus.d.ts +1 -1
  52. package/dist/store/collections.d.ts +14 -4
  53. package/dist/store/collections.d.ts.map +1 -1
  54. package/dist/store/import-spec.d.ts +3 -2
  55. package/dist/store/import-spec.d.ts.map +1 -1
  56. package/dist/store/import-spec.js +34 -26
  57. package/dist/store/request-example.d.ts +2 -2
  58. package/dist/store/requests.d.ts +2 -2
  59. package/dist/store/security-schemes.d.ts +4 -4
  60. package/dist/store/store.d.ts +68 -44
  61. package/dist/store/store.d.ts.map +1 -1
  62. package/dist/store/tags.d.ts +4 -4
  63. package/dist/store/workspace.d.ts +4 -4
  64. package/dist/style.css +1 -1
  65. package/dist/views/Cookies/Cookies.vue.d.ts.map +1 -1
  66. package/dist/views/Cookies/Cookies.vue2.js +74 -80
  67. package/dist/views/Environment/Environment.vue.d.ts.map +1 -1
  68. package/dist/views/Environment/Environment.vue2.js +86 -92
  69. package/dist/views/Request/Request.vue.d.ts.map +1 -1
  70. package/dist/views/Request/Request.vue.js +1 -1
  71. package/dist/views/Request/Request.vue2.js +26 -26
  72. package/dist/views/Request/RequestSection/RequestAuth/RequestAuth.vue.d.ts.map +1 -1
  73. package/dist/views/Request/RequestSection/RequestAuth/RequestAuth.vue.js +2 -2
  74. package/dist/views/Request/RequestSection/RequestAuth/RequestAuth.vue2.js +88 -80
  75. package/dist/views/Request/RequestSection/RequestSection.vue.d.ts.map +1 -1
  76. package/dist/views/Request/RequestSection/RequestSection.vue.js +45 -45
  77. package/dist/views/Request/RequestSidebar.vue.d.ts.map +1 -1
  78. package/dist/views/Request/RequestSidebar.vue.js +1 -1
  79. package/dist/views/Request/RequestSidebar.vue2.js +135 -113
  80. package/dist/views/Request/RequestSidebarItem.vue.d.ts.map +1 -1
  81. package/dist/views/Request/RequestSidebarItem.vue.js +2 -2
  82. package/dist/views/Request/RequestSidebarItem.vue2.js +94 -91
  83. package/dist/views/Request/RequestSidebarItemMenu.vue.d.ts.map +1 -1
  84. package/dist/views/Request/RequestSidebarItemMenu.vue.js +4 -4
  85. package/dist/views/Request/RequestSidebarItemMenu.vue2.js +93 -79
  86. package/dist/views/Request/ResponseSection/ResponseEmpty.vue.d.ts.map +1 -1
  87. package/dist/views/Request/ResponseSection/ResponseEmpty.vue.js +2 -2
  88. package/dist/views/Request/ResponseSection/ResponseEmpty.vue2.js +8 -5
  89. package/dist/views/Request/ResponseSection/ResponseSection.vue.d.ts.map +1 -1
  90. package/dist/views/Request/ResponseSection/ResponseSection.vue.js +33 -33
  91. package/dist/views/Request/components/WorkspaceDropdown.vue.d.ts.map +1 -1
  92. package/dist/views/Request/components/WorkspaceDropdown.vue.js +109 -95
  93. package/dist/views/Request/types/sidebar-item.d.ts +2 -1
  94. package/dist/views/Request/types/sidebar-item.d.ts.map +1 -1
  95. package/dist/views/Servers/Servers.vue.d.ts.map +1 -1
  96. package/dist/views/Servers/Servers.vue2.js +48 -54
  97. package/package.json +9 -12
  98. package/dist/components/Search/SearchButton.vue.d.ts +0 -7
  99. package/dist/components/Search/SearchButton.vue.d.ts.map +0 -1
  100. package/dist/components/Search/SearchModal.vue.d.ts +0 -17
  101. package/dist/components/Search/SearchModal.vue.d.ts.map +0 -1
  102. package/dist/components/Search/SearchModal.vue.js +0 -7
  103. package/dist/components/Search/SearchModal.vue2.js +0 -142
  104. package/dist/components/Search/index.d.ts +0 -3
  105. package/dist/components/Search/index.d.ts.map +0 -1
  106. package/dist/components/Search/index.js +0 -4
  107. package/dist/components/SideNav/WorkspaceProfileIcon.vue.js +0 -31
  108. package/dist/components/SideNav/WorkspaceProfileIcon.vue3.js +0 -5
  109. package/dist/components/Sidebar/Actions/RenameSidebarListElement.vue.d.ts.map +0 -1
  110. package/dist/components/Sidebar/Actions/RenameSidebarListElement.vue2.js +0 -4
  111. package/dist/components/SubpageHeader.vue.js +0 -7
  112. package/dist/components/SubpageHeader.vue2.js +0 -34
@@ -46,6 +46,7 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
46
46
  children: string[];
47
47
  openapi: string;
48
48
  security: Record<string, string[]>[];
49
+ 'x-scalar-icon': string;
49
50
  securitySchemes: string[];
50
51
  selectedServerUid: string;
51
52
  servers: string[];
@@ -338,6 +339,7 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
338
339
  children: string[];
339
340
  openapi: string;
340
341
  security: Record<string, string[]>[];
342
+ 'x-scalar-icon': string;
341
343
  securitySchemes: string[];
342
344
  selectedServerUid: string;
343
345
  servers: string[];
@@ -578,6 +580,7 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
578
580
  children: string[];
579
581
  openapi: string;
580
582
  security: Record<string, string[]>[];
583
+ 'x-scalar-icon': string;
581
584
  securitySchemes: string[];
582
585
  selectedServerUid: string;
583
586
  servers: string[];
@@ -657,8 +660,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
657
660
  router: import("vue-router").Router;
658
661
  sidebarWidth: import("vue").Ref<string>;
659
662
  setSidebarWidth: (width: string) => void;
660
- importSpecFile: (_spec: string | Record<string, any>, workspaceUid?: string, overloadServers?: import("@scalar/types/legacy").Spec["servers"]) => Promise<void>;
661
- importSpecFromUrl: (url: string, proxy?: string, overloadServers?: import("@scalar/types/legacy").Spec["servers"]) => Promise<void>;
663
+ importSpecFile: (_spec: string | Record<string, any>, workspaceUid?: string, overloadServers?: import("@scalar/types/legacy").Spec["servers"], preferredSecurityScheme?: ClientConfiguration["preferredSecurityScheme"]) => Promise<void>;
664
+ importSpecFromUrl: (url: string, proxy?: string, overloadServers?: import("@scalar/types/legacy").Spec["servers"], preferredSecurityScheme?: ClientConfiguration["preferredSecurityScheme"]) => Promise<void>;
662
665
  cookieMutators: {
663
666
  add: (item: {
664
667
  value: string;
@@ -771,6 +774,7 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
771
774
  children: string[];
772
775
  openapi: string;
773
776
  security: Record<string, string[]>[];
777
+ 'x-scalar-icon': string;
774
778
  securitySchemes: string[];
775
779
  selectedServerUid: string;
776
780
  servers: string[];
@@ -834,6 +838,7 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
834
838
  children: string[];
835
839
  openapi: string;
836
840
  security: Record<string, string[]>[];
841
+ 'x-scalar-icon': string;
837
842
  securitySchemes: string[];
838
843
  selectedServerUid: string;
839
844
  servers: string[];
@@ -898,6 +903,7 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
898
903
  children: string[];
899
904
  openapi: string;
900
905
  security: Record<string, string[]>[];
906
+ 'x-scalar-icon': string;
901
907
  securitySchemes: string[];
902
908
  selectedServerUid: string;
903
909
  servers: string[];
@@ -955,12 +961,13 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
955
961
  components?: Record<string, unknown> | undefined;
956
962
  webhooks?: Record<string, unknown> | undefined;
957
963
  }) => void;
958
- edit: <P extends "type" | "children" | "tags" | "requests" | "servers" | "securitySchemes" | "components" | "openapi" | "info" | "security" | "externalDocs" | "webhooks" | "jsonSchemaDialect" | "uid" | "selectedServerUid" | "auth" | `children.${number}` | `tags.${number}` | `requests.${number}` | `servers.${number}` | `securitySchemes.${number}` | `components.${string}` | "info.summary" | "info.title" | "info.description" | "info.termsOfService" | "info.contact" | "info.license" | "info.version" | "info.contact.name" | "info.contact.url" | "info.contact.email" | "info.license.name" | "info.license.url" | "info.license.identifier" | `security.${number}` | `security.${number}.${string}` | "externalDocs.description" | "externalDocs.url" | `webhooks.${string}` | `auth.${string}`>(uid: string, path: P, value: P extends "type" | "children" | "tags" | "requests" | "servers" | "securitySchemes" | "components" | "openapi" | "info" | "security" | "externalDocs" | "webhooks" | "jsonSchemaDialect" | "uid" | "selectedServerUid" | "auth" ? {
964
+ edit: <P extends "type" | "children" | "tags" | "requests" | "servers" | "securitySchemes" | "components" | "openapi" | "info" | "security" | "externalDocs" | "webhooks" | "jsonSchemaDialect" | "uid" | "selectedServerUid" | "x-scalar-icon" | "auth" | `children.${number}` | `tags.${number}` | `requests.${number}` | `servers.${number}` | `securitySchemes.${number}` | `components.${string}` | "info.summary" | "info.title" | "info.description" | "info.termsOfService" | "info.contact" | "info.license" | "info.version" | "info.contact.name" | "info.contact.url" | "info.contact.email" | "info.license.name" | "info.license.url" | "info.license.identifier" | `security.${number}` | `security.${number}.${string}` | "externalDocs.description" | "externalDocs.url" | `webhooks.${string}` | `auth.${string}`>(uid: string, path: P, value: P extends "type" | "children" | "tags" | "requests" | "servers" | "securitySchemes" | "components" | "openapi" | "info" | "security" | "externalDocs" | "webhooks" | "jsonSchemaDialect" | "uid" | "selectedServerUid" | "x-scalar-icon" | "auth" ? {
959
965
  type: "collection";
960
966
  uid: string;
961
967
  children: string[];
962
968
  openapi: string;
963
969
  security: Record<string, string[]>[];
970
+ 'x-scalar-icon': string;
964
971
  securitySchemes: string[];
965
972
  selectedServerUid: string;
966
973
  servers: string[];
@@ -1017,12 +1024,13 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
1017
1024
  } | undefined;
1018
1025
  components?: Record<string, unknown> | undefined;
1019
1026
  webhooks?: Record<string, unknown> | undefined;
1020
- }[P] : P extends `${infer K}.${infer R}` ? K extends "type" | "children" | "tags" | "requests" | "servers" | "securitySchemes" | "components" | "openapi" | "info" | "security" | "externalDocs" | "webhooks" | "jsonSchemaDialect" | "uid" | "selectedServerUid" | "auth" ? R extends import("@scalar/object-utils/nested").Path<{
1027
+ }[P] : P extends `${infer K}.${infer R}` ? K extends "type" | "children" | "tags" | "requests" | "servers" | "securitySchemes" | "components" | "openapi" | "info" | "security" | "externalDocs" | "webhooks" | "jsonSchemaDialect" | "uid" | "selectedServerUid" | "x-scalar-icon" | "auth" ? R extends import("@scalar/object-utils/nested").Path<{
1021
1028
  type: "collection";
1022
1029
  uid: string;
1023
1030
  children: string[];
1024
1031
  openapi: string;
1025
1032
  security: Record<string, string[]>[];
1033
+ 'x-scalar-icon': string;
1026
1034
  securitySchemes: string[];
1027
1035
  selectedServerUid: string;
1028
1036
  servers: string[];
@@ -1085,6 +1093,7 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
1085
1093
  children: string[];
1086
1094
  openapi: string;
1087
1095
  security: Record<string, string[]>[];
1096
+ 'x-scalar-icon': string;
1088
1097
  securitySchemes: string[];
1089
1098
  selectedServerUid: string;
1090
1099
  servers: string[];
@@ -1142,12 +1151,13 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
1142
1151
  components?: Record<string, unknown> | undefined;
1143
1152
  webhooks?: Record<string, unknown> | undefined;
1144
1153
  }[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
1145
- untrackedEdit: <P extends "type" | "children" | "tags" | "requests" | "servers" | "securitySchemes" | "components" | "openapi" | "info" | "security" | "externalDocs" | "webhooks" | "jsonSchemaDialect" | "uid" | "selectedServerUid" | "auth" | `children.${number}` | `tags.${number}` | `requests.${number}` | `servers.${number}` | `securitySchemes.${number}` | `components.${string}` | "info.summary" | "info.title" | "info.description" | "info.termsOfService" | "info.contact" | "info.license" | "info.version" | "info.contact.name" | "info.contact.url" | "info.contact.email" | "info.license.name" | "info.license.url" | "info.license.identifier" | `security.${number}` | `security.${number}.${string}` | "externalDocs.description" | "externalDocs.url" | `webhooks.${string}` | `auth.${string}`>(uid: string, path: P, value: P extends "type" | "children" | "tags" | "requests" | "servers" | "securitySchemes" | "components" | "openapi" | "info" | "security" | "externalDocs" | "webhooks" | "jsonSchemaDialect" | "uid" | "selectedServerUid" | "auth" ? {
1154
+ untrackedEdit: <P extends "type" | "children" | "tags" | "requests" | "servers" | "securitySchemes" | "components" | "openapi" | "info" | "security" | "externalDocs" | "webhooks" | "jsonSchemaDialect" | "uid" | "selectedServerUid" | "x-scalar-icon" | "auth" | `children.${number}` | `tags.${number}` | `requests.${number}` | `servers.${number}` | `securitySchemes.${number}` | `components.${string}` | "info.summary" | "info.title" | "info.description" | "info.termsOfService" | "info.contact" | "info.license" | "info.version" | "info.contact.name" | "info.contact.url" | "info.contact.email" | "info.license.name" | "info.license.url" | "info.license.identifier" | `security.${number}` | `security.${number}.${string}` | "externalDocs.description" | "externalDocs.url" | `webhooks.${string}` | `auth.${string}`>(uid: string, path: P, value: P extends "type" | "children" | "tags" | "requests" | "servers" | "securitySchemes" | "components" | "openapi" | "info" | "security" | "externalDocs" | "webhooks" | "jsonSchemaDialect" | "uid" | "selectedServerUid" | "x-scalar-icon" | "auth" ? {
1146
1155
  type: "collection";
1147
1156
  uid: string;
1148
1157
  children: string[];
1149
1158
  openapi: string;
1150
1159
  security: Record<string, string[]>[];
1160
+ 'x-scalar-icon': string;
1151
1161
  securitySchemes: string[];
1152
1162
  selectedServerUid: string;
1153
1163
  servers: string[];
@@ -1204,12 +1214,13 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
1204
1214
  } | undefined;
1205
1215
  components?: Record<string, unknown> | undefined;
1206
1216
  webhooks?: Record<string, unknown> | undefined;
1207
- }[P] : P extends `${infer K}.${infer R}` ? K extends "type" | "children" | "tags" | "requests" | "servers" | "securitySchemes" | "components" | "openapi" | "info" | "security" | "externalDocs" | "webhooks" | "jsonSchemaDialect" | "uid" | "selectedServerUid" | "auth" ? R extends import("@scalar/object-utils/nested").Path<{
1217
+ }[P] : P extends `${infer K}.${infer R}` ? K extends "type" | "children" | "tags" | "requests" | "servers" | "securitySchemes" | "components" | "openapi" | "info" | "security" | "externalDocs" | "webhooks" | "jsonSchemaDialect" | "uid" | "selectedServerUid" | "x-scalar-icon" | "auth" ? R extends import("@scalar/object-utils/nested").Path<{
1208
1218
  type: "collection";
1209
1219
  uid: string;
1210
1220
  children: string[];
1211
1221
  openapi: string;
1212
1222
  security: Record<string, string[]>[];
1223
+ 'x-scalar-icon': string;
1213
1224
  securitySchemes: string[];
1214
1225
  selectedServerUid: string;
1215
1226
  servers: string[];
@@ -1272,6 +1283,7 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
1272
1283
  children: string[];
1273
1284
  openapi: string;
1274
1285
  security: Record<string, string[]>[];
1286
+ 'x-scalar-icon': string;
1275
1287
  securitySchemes: string[];
1276
1288
  selectedServerUid: string;
1277
1289
  servers: string[];
@@ -1487,7 +1499,7 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
1487
1499
  requestBody?: any;
1488
1500
  responses?: Record<string, any> | undefined;
1489
1501
  }) => void;
1490
- edit: <P extends "summary" | "path" | "type" | "tags" | "servers" | "description" | "examples" | "security" | "externalDocs" | "uid" | "method" | "selectedServerUid" | "selectedSecuritySchemeUids" | "deprecated" | "operationId" | "parameters" | "requestBody" | "responses" | `tags.${number}` | `servers.${number}` | `security.${number}` | `security.${number}.${string}` | "externalDocs.description" | "externalDocs.url" | `examples.${number}` | `selectedSecuritySchemeUids.${number}` | `parameters.${number}` | `parameters.${number}.description` | `parameters.${number}.required` | `parameters.${number}.style` | `parameters.${number}.name` | `parameters.${number}.in` | `parameters.${number}.deprecated` | `parameters.${number}.schema` | `parameters.${number}.content` | `requestBody.${string}` | `responses.${string}`>(uid: string, path: P, value: P extends "summary" | "path" | "type" | "tags" | "servers" | "description" | "examples" | "security" | "externalDocs" | "uid" | "method" | "selectedServerUid" | "selectedSecuritySchemeUids" | "deprecated" | "operationId" | "parameters" | "requestBody" | "responses" ? {
1502
+ edit: <P extends "summary" | "path" | "type" | "tags" | "servers" | "description" | "examples" | "security" | "externalDocs" | "uid" | "method" | "selectedServerUid" | "selectedSecuritySchemeUids" | "deprecated" | "operationId" | "parameters" | "requestBody" | "responses" | `tags.${number}` | `servers.${number}` | `security.${number}` | `security.${number}.${string}` | "externalDocs.description" | "externalDocs.url" | `examples.${number}` | `selectedSecuritySchemeUids.${number}` | `parameters.${number}` | `parameters.${number}.required` | `parameters.${number}.description` | `parameters.${number}.style` | `parameters.${number}.name` | `parameters.${number}.in` | `parameters.${number}.deprecated` | `parameters.${number}.schema` | `parameters.${number}.content` | `requestBody.${string}` | `responses.${string}`>(uid: string, path: P, value: P extends "summary" | "path" | "type" | "tags" | "servers" | "description" | "examples" | "security" | "externalDocs" | "uid" | "method" | "selectedServerUid" | "selectedSecuritySchemeUids" | "deprecated" | "operationId" | "parameters" | "requestBody" | "responses" ? {
1491
1503
  path: string;
1492
1504
  type: "request";
1493
1505
  uid: string;
@@ -1581,7 +1593,7 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
1581
1593
  requestBody?: any;
1582
1594
  responses?: Record<string, any> | undefined;
1583
1595
  }[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
1584
- untrackedEdit: <P extends "summary" | "path" | "type" | "tags" | "servers" | "description" | "examples" | "security" | "externalDocs" | "uid" | "method" | "selectedServerUid" | "selectedSecuritySchemeUids" | "deprecated" | "operationId" | "parameters" | "requestBody" | "responses" | `tags.${number}` | `servers.${number}` | `security.${number}` | `security.${number}.${string}` | "externalDocs.description" | "externalDocs.url" | `examples.${number}` | `selectedSecuritySchemeUids.${number}` | `parameters.${number}` | `parameters.${number}.description` | `parameters.${number}.required` | `parameters.${number}.style` | `parameters.${number}.name` | `parameters.${number}.in` | `parameters.${number}.deprecated` | `parameters.${number}.schema` | `parameters.${number}.content` | `requestBody.${string}` | `responses.${string}`>(uid: string, path: P, value: P extends "summary" | "path" | "type" | "tags" | "servers" | "description" | "examples" | "security" | "externalDocs" | "uid" | "method" | "selectedServerUid" | "selectedSecuritySchemeUids" | "deprecated" | "operationId" | "parameters" | "requestBody" | "responses" ? {
1596
+ untrackedEdit: <P extends "summary" | "path" | "type" | "tags" | "servers" | "description" | "examples" | "security" | "externalDocs" | "uid" | "method" | "selectedServerUid" | "selectedSecuritySchemeUids" | "deprecated" | "operationId" | "parameters" | "requestBody" | "responses" | `tags.${number}` | `servers.${number}` | `security.${number}` | `security.${number}.${string}` | "externalDocs.description" | "externalDocs.url" | `examples.${number}` | `selectedSecuritySchemeUids.${number}` | `parameters.${number}` | `parameters.${number}.required` | `parameters.${number}.description` | `parameters.${number}.style` | `parameters.${number}.name` | `parameters.${number}.in` | `parameters.${number}.deprecated` | `parameters.${number}.schema` | `parameters.${number}.content` | `requestBody.${string}` | `responses.${string}`>(uid: string, path: P, value: P extends "summary" | "path" | "type" | "tags" | "servers" | "description" | "examples" | "security" | "externalDocs" | "uid" | "method" | "selectedServerUid" | "selectedSecuritySchemeUids" | "deprecated" | "operationId" | "parameters" | "requestBody" | "responses" ? {
1585
1597
  path: string;
1586
1598
  type: "request";
1587
1599
  uid: string;
@@ -1981,7 +1993,7 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
1981
1993
  };
1982
1994
  serverVariables?: Record<string, string[]> | undefined;
1983
1995
  }) => void;
1984
- edit: <P extends "body" | "type" | "name" | "uid" | "parameters" | "requestUid" | "serverVariables" | "body.binary" | "body.raw" | "body.formData" | "body.activeBody" | "body.raw.value" | "body.raw.encoding" | "body.formData.value" | "body.formData.encoding" | `body.formData.value.${number}` | `body.formData.value.${number}.key` | `body.formData.value.${number}.type` | `body.formData.value.${number}.default` | `body.formData.value.${number}.description` | `body.formData.value.${number}.value` | `body.formData.value.${number}.required` | `body.formData.value.${number}.file` | `body.formData.value.${number}.minimum` | `body.formData.value.${number}.maximum` | `body.formData.value.${number}.enum` | `body.formData.value.${number}.nullable` | `body.formData.value.${number}.enabled` | `body.formData.value.${number}.format` | `body.formData.value.${number}.refUid` | `body.formData.value.${number}.default.${string}` | `body.formData.value.${number}.file.${string}` | `body.formData.value.${number}.enum.${number}` | "body.binary.slice" | "body.binary.text" | "body.binary.type" | "body.binary.size" | "body.binary.arrayBuffer" | "body.binary.stream" | "parameters.cookies" | "parameters.path" | "parameters.query" | "parameters.headers" | `parameters.cookies.${number}` | `parameters.cookies.${number}.key` | `parameters.cookies.${number}.type` | `parameters.cookies.${number}.default` | `parameters.cookies.${number}.description` | `parameters.cookies.${number}.value` | `parameters.cookies.${number}.required` | `parameters.cookies.${number}.file` | `parameters.cookies.${number}.minimum` | `parameters.cookies.${number}.maximum` | `parameters.cookies.${number}.enum` | `parameters.cookies.${number}.nullable` | `parameters.cookies.${number}.enabled` | `parameters.cookies.${number}.format` | `parameters.cookies.${number}.refUid` | `parameters.cookies.${number}.default.${string}` | `parameters.cookies.${number}.file.${string}` | `parameters.cookies.${number}.enum.${number}` | `parameters.path.${number}` | `parameters.path.${number}.key` | `parameters.path.${number}.type` | `parameters.path.${number}.default` | `parameters.path.${number}.description` | `parameters.path.${number}.value` | `parameters.path.${number}.required` | `parameters.path.${number}.file` | `parameters.path.${number}.minimum` | `parameters.path.${number}.maximum` | `parameters.path.${number}.enum` | `parameters.path.${number}.nullable` | `parameters.path.${number}.enabled` | `parameters.path.${number}.format` | `parameters.path.${number}.refUid` | `parameters.path.${number}.default.${string}` | `parameters.path.${number}.file.${string}` | `parameters.path.${number}.enum.${number}` | `parameters.query.${number}` | `parameters.query.${number}.key` | `parameters.query.${number}.type` | `parameters.query.${number}.default` | `parameters.query.${number}.description` | `parameters.query.${number}.value` | `parameters.query.${number}.required` | `parameters.query.${number}.file` | `parameters.query.${number}.minimum` | `parameters.query.${number}.maximum` | `parameters.query.${number}.enum` | `parameters.query.${number}.nullable` | `parameters.query.${number}.enabled` | `parameters.query.${number}.format` | `parameters.query.${number}.refUid` | `parameters.query.${number}.default.${string}` | `parameters.query.${number}.file.${string}` | `parameters.query.${number}.enum.${number}` | `parameters.headers.${number}` | `parameters.headers.${number}.key` | `parameters.headers.${number}.type` | `parameters.headers.${number}.default` | `parameters.headers.${number}.description` | `parameters.headers.${number}.value` | `parameters.headers.${number}.required` | `parameters.headers.${number}.file` | `parameters.headers.${number}.minimum` | `parameters.headers.${number}.maximum` | `parameters.headers.${number}.enum` | `parameters.headers.${number}.nullable` | `parameters.headers.${number}.enabled` | `parameters.headers.${number}.format` | `parameters.headers.${number}.refUid` | `parameters.headers.${number}.default.${string}` | `parameters.headers.${number}.file.${string}` | `parameters.headers.${number}.enum.${number}` | `serverVariables.${string}`>(uid: string, path: P, value: P extends "body" | "type" | "name" | "uid" | "parameters" | "requestUid" | "serverVariables" ? {
1996
+ edit: <P extends "body" | "type" | "name" | "uid" | "parameters" | "requestUid" | "serverVariables" | "body.binary" | "body.raw" | "body.formData" | "body.activeBody" | "body.raw.value" | "body.raw.encoding" | "body.formData.value" | "body.formData.encoding" | `body.formData.value.${number}` | `body.formData.value.${number}.key` | `body.formData.value.${number}.type` | `body.formData.value.${number}.required` | `body.formData.value.${number}.value` | `body.formData.value.${number}.default` | `body.formData.value.${number}.description` | `body.formData.value.${number}.file` | `body.formData.value.${number}.minimum` | `body.formData.value.${number}.maximum` | `body.formData.value.${number}.enum` | `body.formData.value.${number}.nullable` | `body.formData.value.${number}.enabled` | `body.formData.value.${number}.format` | `body.formData.value.${number}.refUid` | `body.formData.value.${number}.default.${string}` | `body.formData.value.${number}.file.${string}` | `body.formData.value.${number}.enum.${number}` | "body.binary.slice" | "body.binary.text" | "body.binary.type" | "body.binary.size" | "body.binary.arrayBuffer" | "body.binary.stream" | "parameters.cookies" | "parameters.path" | "parameters.query" | "parameters.headers" | `parameters.cookies.${number}` | `parameters.cookies.${number}.key` | `parameters.cookies.${number}.type` | `parameters.cookies.${number}.required` | `parameters.cookies.${number}.value` | `parameters.cookies.${number}.default` | `parameters.cookies.${number}.description` | `parameters.cookies.${number}.file` | `parameters.cookies.${number}.minimum` | `parameters.cookies.${number}.maximum` | `parameters.cookies.${number}.enum` | `parameters.cookies.${number}.nullable` | `parameters.cookies.${number}.enabled` | `parameters.cookies.${number}.format` | `parameters.cookies.${number}.refUid` | `parameters.cookies.${number}.default.${string}` | `parameters.cookies.${number}.file.${string}` | `parameters.cookies.${number}.enum.${number}` | `parameters.path.${number}` | `parameters.path.${number}.key` | `parameters.path.${number}.type` | `parameters.path.${number}.required` | `parameters.path.${number}.value` | `parameters.path.${number}.default` | `parameters.path.${number}.description` | `parameters.path.${number}.file` | `parameters.path.${number}.minimum` | `parameters.path.${number}.maximum` | `parameters.path.${number}.enum` | `parameters.path.${number}.nullable` | `parameters.path.${number}.enabled` | `parameters.path.${number}.format` | `parameters.path.${number}.refUid` | `parameters.path.${number}.default.${string}` | `parameters.path.${number}.file.${string}` | `parameters.path.${number}.enum.${number}` | `parameters.query.${number}` | `parameters.query.${number}.key` | `parameters.query.${number}.type` | `parameters.query.${number}.required` | `parameters.query.${number}.value` | `parameters.query.${number}.default` | `parameters.query.${number}.description` | `parameters.query.${number}.file` | `parameters.query.${number}.minimum` | `parameters.query.${number}.maximum` | `parameters.query.${number}.enum` | `parameters.query.${number}.nullable` | `parameters.query.${number}.enabled` | `parameters.query.${number}.format` | `parameters.query.${number}.refUid` | `parameters.query.${number}.default.${string}` | `parameters.query.${number}.file.${string}` | `parameters.query.${number}.enum.${number}` | `parameters.headers.${number}` | `parameters.headers.${number}.key` | `parameters.headers.${number}.type` | `parameters.headers.${number}.required` | `parameters.headers.${number}.value` | `parameters.headers.${number}.default` | `parameters.headers.${number}.description` | `parameters.headers.${number}.file` | `parameters.headers.${number}.minimum` | `parameters.headers.${number}.maximum` | `parameters.headers.${number}.enum` | `parameters.headers.${number}.nullable` | `parameters.headers.${number}.enabled` | `parameters.headers.${number}.format` | `parameters.headers.${number}.refUid` | `parameters.headers.${number}.default.${string}` | `parameters.headers.${number}.file.${string}` | `parameters.headers.${number}.enum.${number}` | `serverVariables.${string}`>(uid: string, path: P, value: P extends "body" | "type" | "name" | "uid" | "parameters" | "requestUid" | "serverVariables" ? {
1985
1997
  type: "requestExample";
1986
1998
  uid: string;
1987
1999
  name: string;
@@ -2279,7 +2291,7 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
2279
2291
  };
2280
2292
  serverVariables?: Record<string, string[]> | undefined;
2281
2293
  }[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
2282
- untrackedEdit: <P extends "body" | "type" | "name" | "uid" | "parameters" | "requestUid" | "serverVariables" | "body.binary" | "body.raw" | "body.formData" | "body.activeBody" | "body.raw.value" | "body.raw.encoding" | "body.formData.value" | "body.formData.encoding" | `body.formData.value.${number}` | `body.formData.value.${number}.key` | `body.formData.value.${number}.type` | `body.formData.value.${number}.default` | `body.formData.value.${number}.description` | `body.formData.value.${number}.value` | `body.formData.value.${number}.required` | `body.formData.value.${number}.file` | `body.formData.value.${number}.minimum` | `body.formData.value.${number}.maximum` | `body.formData.value.${number}.enum` | `body.formData.value.${number}.nullable` | `body.formData.value.${number}.enabled` | `body.formData.value.${number}.format` | `body.formData.value.${number}.refUid` | `body.formData.value.${number}.default.${string}` | `body.formData.value.${number}.file.${string}` | `body.formData.value.${number}.enum.${number}` | "body.binary.slice" | "body.binary.text" | "body.binary.type" | "body.binary.size" | "body.binary.arrayBuffer" | "body.binary.stream" | "parameters.cookies" | "parameters.path" | "parameters.query" | "parameters.headers" | `parameters.cookies.${number}` | `parameters.cookies.${number}.key` | `parameters.cookies.${number}.type` | `parameters.cookies.${number}.default` | `parameters.cookies.${number}.description` | `parameters.cookies.${number}.value` | `parameters.cookies.${number}.required` | `parameters.cookies.${number}.file` | `parameters.cookies.${number}.minimum` | `parameters.cookies.${number}.maximum` | `parameters.cookies.${number}.enum` | `parameters.cookies.${number}.nullable` | `parameters.cookies.${number}.enabled` | `parameters.cookies.${number}.format` | `parameters.cookies.${number}.refUid` | `parameters.cookies.${number}.default.${string}` | `parameters.cookies.${number}.file.${string}` | `parameters.cookies.${number}.enum.${number}` | `parameters.path.${number}` | `parameters.path.${number}.key` | `parameters.path.${number}.type` | `parameters.path.${number}.default` | `parameters.path.${number}.description` | `parameters.path.${number}.value` | `parameters.path.${number}.required` | `parameters.path.${number}.file` | `parameters.path.${number}.minimum` | `parameters.path.${number}.maximum` | `parameters.path.${number}.enum` | `parameters.path.${number}.nullable` | `parameters.path.${number}.enabled` | `parameters.path.${number}.format` | `parameters.path.${number}.refUid` | `parameters.path.${number}.default.${string}` | `parameters.path.${number}.file.${string}` | `parameters.path.${number}.enum.${number}` | `parameters.query.${number}` | `parameters.query.${number}.key` | `parameters.query.${number}.type` | `parameters.query.${number}.default` | `parameters.query.${number}.description` | `parameters.query.${number}.value` | `parameters.query.${number}.required` | `parameters.query.${number}.file` | `parameters.query.${number}.minimum` | `parameters.query.${number}.maximum` | `parameters.query.${number}.enum` | `parameters.query.${number}.nullable` | `parameters.query.${number}.enabled` | `parameters.query.${number}.format` | `parameters.query.${number}.refUid` | `parameters.query.${number}.default.${string}` | `parameters.query.${number}.file.${string}` | `parameters.query.${number}.enum.${number}` | `parameters.headers.${number}` | `parameters.headers.${number}.key` | `parameters.headers.${number}.type` | `parameters.headers.${number}.default` | `parameters.headers.${number}.description` | `parameters.headers.${number}.value` | `parameters.headers.${number}.required` | `parameters.headers.${number}.file` | `parameters.headers.${number}.minimum` | `parameters.headers.${number}.maximum` | `parameters.headers.${number}.enum` | `parameters.headers.${number}.nullable` | `parameters.headers.${number}.enabled` | `parameters.headers.${number}.format` | `parameters.headers.${number}.refUid` | `parameters.headers.${number}.default.${string}` | `parameters.headers.${number}.file.${string}` | `parameters.headers.${number}.enum.${number}` | `serverVariables.${string}`>(uid: string, path: P, value: P extends "body" | "type" | "name" | "uid" | "parameters" | "requestUid" | "serverVariables" ? {
2294
+ untrackedEdit: <P extends "body" | "type" | "name" | "uid" | "parameters" | "requestUid" | "serverVariables" | "body.binary" | "body.raw" | "body.formData" | "body.activeBody" | "body.raw.value" | "body.raw.encoding" | "body.formData.value" | "body.formData.encoding" | `body.formData.value.${number}` | `body.formData.value.${number}.key` | `body.formData.value.${number}.type` | `body.formData.value.${number}.required` | `body.formData.value.${number}.value` | `body.formData.value.${number}.default` | `body.formData.value.${number}.description` | `body.formData.value.${number}.file` | `body.formData.value.${number}.minimum` | `body.formData.value.${number}.maximum` | `body.formData.value.${number}.enum` | `body.formData.value.${number}.nullable` | `body.formData.value.${number}.enabled` | `body.formData.value.${number}.format` | `body.formData.value.${number}.refUid` | `body.formData.value.${number}.default.${string}` | `body.formData.value.${number}.file.${string}` | `body.formData.value.${number}.enum.${number}` | "body.binary.slice" | "body.binary.text" | "body.binary.type" | "body.binary.size" | "body.binary.arrayBuffer" | "body.binary.stream" | "parameters.cookies" | "parameters.path" | "parameters.query" | "parameters.headers" | `parameters.cookies.${number}` | `parameters.cookies.${number}.key` | `parameters.cookies.${number}.type` | `parameters.cookies.${number}.required` | `parameters.cookies.${number}.value` | `parameters.cookies.${number}.default` | `parameters.cookies.${number}.description` | `parameters.cookies.${number}.file` | `parameters.cookies.${number}.minimum` | `parameters.cookies.${number}.maximum` | `parameters.cookies.${number}.enum` | `parameters.cookies.${number}.nullable` | `parameters.cookies.${number}.enabled` | `parameters.cookies.${number}.format` | `parameters.cookies.${number}.refUid` | `parameters.cookies.${number}.default.${string}` | `parameters.cookies.${number}.file.${string}` | `parameters.cookies.${number}.enum.${number}` | `parameters.path.${number}` | `parameters.path.${number}.key` | `parameters.path.${number}.type` | `parameters.path.${number}.required` | `parameters.path.${number}.value` | `parameters.path.${number}.default` | `parameters.path.${number}.description` | `parameters.path.${number}.file` | `parameters.path.${number}.minimum` | `parameters.path.${number}.maximum` | `parameters.path.${number}.enum` | `parameters.path.${number}.nullable` | `parameters.path.${number}.enabled` | `parameters.path.${number}.format` | `parameters.path.${number}.refUid` | `parameters.path.${number}.default.${string}` | `parameters.path.${number}.file.${string}` | `parameters.path.${number}.enum.${number}` | `parameters.query.${number}` | `parameters.query.${number}.key` | `parameters.query.${number}.type` | `parameters.query.${number}.required` | `parameters.query.${number}.value` | `parameters.query.${number}.default` | `parameters.query.${number}.description` | `parameters.query.${number}.file` | `parameters.query.${number}.minimum` | `parameters.query.${number}.maximum` | `parameters.query.${number}.enum` | `parameters.query.${number}.nullable` | `parameters.query.${number}.enabled` | `parameters.query.${number}.format` | `parameters.query.${number}.refUid` | `parameters.query.${number}.default.${string}` | `parameters.query.${number}.file.${string}` | `parameters.query.${number}.enum.${number}` | `parameters.headers.${number}` | `parameters.headers.${number}.key` | `parameters.headers.${number}.type` | `parameters.headers.${number}.required` | `parameters.headers.${number}.value` | `parameters.headers.${number}.default` | `parameters.headers.${number}.description` | `parameters.headers.${number}.file` | `parameters.headers.${number}.minimum` | `parameters.headers.${number}.maximum` | `parameters.headers.${number}.enum` | `parameters.headers.${number}.nullable` | `parameters.headers.${number}.enabled` | `parameters.headers.${number}.format` | `parameters.headers.${number}.refUid` | `parameters.headers.${number}.default.${string}` | `parameters.headers.${number}.file.${string}` | `parameters.headers.${number}.enum.${number}` | `serverVariables.${string}`>(uid: string, path: P, value: P extends "body" | "type" | "name" | "uid" | "parameters" | "requestUid" | "serverVariables" ? {
2283
2295
  type: "requestExample";
2284
2296
  uid: string;
2285
2297
  name: string;
@@ -2748,14 +2760,14 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
2748
2760
  'x-scalar-client-id': string;
2749
2761
  description?: string | undefined;
2750
2762
  }) => void;
2751
- edit: <P extends "type" | "description" | "name" | "in" | "scheme" | "bearerFormat" | "openIdConnectUrl" | "flow" | "x-scalar-client-id" | "uid" | "nameKey" | "flow.selectedScopes" | "flow.type" | "flow.x-scalar-redirect-uri" | "flow.refreshUrl" | "flow.scopes" | "flow.authorizationUrl" | `flow.scopes.${string}` | `flow.selectedScopes.${number}` | "flow.tokenUrl">(uid: string, path: P, value: (P extends "type" | "description" | "name" | "in" | "uid" | "nameKey" ? {
2763
+ edit: <P extends "type" | "name" | "description" | "in" | "scheme" | "bearerFormat" | "openIdConnectUrl" | "flow" | "x-scalar-client-id" | "uid" | "nameKey" | "flow.selectedScopes" | "flow.type" | "flow.x-scalar-redirect-uri" | "flow.refreshUrl" | "flow.scopes" | "flow.authorizationUrl" | `flow.scopes.${string}` | `flow.selectedScopes.${number}` | "flow.tokenUrl">(uid: string, path: P, value: (P extends "type" | "name" | "description" | "in" | "uid" | "nameKey" ? {
2752
2764
  type: "apiKey";
2753
2765
  uid: string;
2754
2766
  name: string;
2755
2767
  in: "query" | "header" | "cookie";
2756
2768
  nameKey: string;
2757
2769
  description?: string | undefined;
2758
- }[P] : P extends `${infer K}.${infer R}` ? K extends "type" | "description" | "name" | "in" | "uid" | "nameKey" ? R extends import("@scalar/object-utils/nested").Path<{
2770
+ }[P] : P extends `${infer K}.${infer R}` ? K extends "type" | "name" | "description" | "in" | "uid" | "nameKey" ? R extends import("@scalar/object-utils/nested").Path<{
2759
2771
  type: "apiKey";
2760
2772
  uid: string;
2761
2773
  name: string;
@@ -2911,14 +2923,14 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
2911
2923
  'x-scalar-client-id': string;
2912
2924
  description?: string | undefined;
2913
2925
  }[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never)) => void;
2914
- untrackedEdit: <P extends "type" | "description" | "name" | "in" | "scheme" | "bearerFormat" | "openIdConnectUrl" | "flow" | "x-scalar-client-id" | "uid" | "nameKey" | "flow.selectedScopes" | "flow.type" | "flow.x-scalar-redirect-uri" | "flow.refreshUrl" | "flow.scopes" | "flow.authorizationUrl" | `flow.scopes.${string}` | `flow.selectedScopes.${number}` | "flow.tokenUrl">(uid: string, path: P, value: (P extends "type" | "description" | "name" | "in" | "uid" | "nameKey" ? {
2926
+ untrackedEdit: <P extends "type" | "name" | "description" | "in" | "scheme" | "bearerFormat" | "openIdConnectUrl" | "flow" | "x-scalar-client-id" | "uid" | "nameKey" | "flow.selectedScopes" | "flow.type" | "flow.x-scalar-redirect-uri" | "flow.refreshUrl" | "flow.scopes" | "flow.authorizationUrl" | `flow.scopes.${string}` | `flow.selectedScopes.${number}` | "flow.tokenUrl">(uid: string, path: P, value: (P extends "type" | "name" | "description" | "in" | "uid" | "nameKey" ? {
2915
2927
  type: "apiKey";
2916
2928
  uid: string;
2917
2929
  name: string;
2918
2930
  in: "query" | "header" | "cookie";
2919
2931
  nameKey: string;
2920
2932
  description?: string | undefined;
2921
- }[P] : P extends `${infer K}.${infer R}` ? K extends "type" | "description" | "name" | "in" | "uid" | "nameKey" ? R extends import("@scalar/object-utils/nested").Path<{
2933
+ }[P] : P extends `${infer K}.${infer R}` ? K extends "type" | "name" | "description" | "in" | "uid" | "nameKey" ? R extends import("@scalar/object-utils/nested").Path<{
2922
2934
  type: "apiKey";
2923
2935
  uid: string;
2924
2936
  name: string;
@@ -3194,7 +3206,7 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
3194
3206
  description?: string | undefined;
3195
3207
  } | undefined;
3196
3208
  }) => void;
3197
- edit: <P extends "type" | "children" | "description" | "name" | "externalDocs" | "uid" | `children.${number}` | "externalDocs.description" | "externalDocs.url" | "x-scalar-children" | `x-scalar-children.${number}` | `x-scalar-children.${number}.tagName`>(uid: string, path: P, value: P extends "type" | "children" | "description" | "name" | "externalDocs" | "uid" | "x-scalar-children" ? {
3209
+ edit: <P extends "type" | "name" | "children" | "description" | "externalDocs" | "uid" | `children.${number}` | "externalDocs.description" | "externalDocs.url" | "x-scalar-children" | `x-scalar-children.${number}` | `x-scalar-children.${number}.tagName`>(uid: string, path: P, value: P extends "type" | "name" | "children" | "description" | "externalDocs" | "uid" | "x-scalar-children" ? {
3198
3210
  type: "tag";
3199
3211
  uid: string;
3200
3212
  name: string;
@@ -3207,7 +3219,7 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
3207
3219
  url: string;
3208
3220
  description?: string | undefined;
3209
3221
  } | undefined;
3210
- }[P] : P extends `${infer K}.${infer R}` ? K extends "type" | "children" | "description" | "name" | "externalDocs" | "uid" | "x-scalar-children" ? R extends import("@scalar/object-utils/nested").Path<{
3222
+ }[P] : P extends `${infer K}.${infer R}` ? K extends "type" | "name" | "children" | "description" | "externalDocs" | "uid" | "x-scalar-children" ? R extends import("@scalar/object-utils/nested").Path<{
3211
3223
  type: "tag";
3212
3224
  uid: string;
3213
3225
  name: string;
@@ -3234,7 +3246,7 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
3234
3246
  description?: string | undefined;
3235
3247
  } | undefined;
3236
3248
  }[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
3237
- untrackedEdit: <P extends "type" | "children" | "description" | "name" | "externalDocs" | "uid" | `children.${number}` | "externalDocs.description" | "externalDocs.url" | "x-scalar-children" | `x-scalar-children.${number}` | `x-scalar-children.${number}.tagName`>(uid: string, path: P, value: P extends "type" | "children" | "description" | "name" | "externalDocs" | "uid" | "x-scalar-children" ? {
3249
+ untrackedEdit: <P extends "type" | "name" | "children" | "description" | "externalDocs" | "uid" | `children.${number}` | "externalDocs.description" | "externalDocs.url" | "x-scalar-children" | `x-scalar-children.${number}` | `x-scalar-children.${number}.tagName`>(uid: string, path: P, value: P extends "type" | "name" | "children" | "description" | "externalDocs" | "uid" | "x-scalar-children" ? {
3238
3250
  type: "tag";
3239
3251
  uid: string;
3240
3252
  name: string;
@@ -3247,7 +3259,7 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
3247
3259
  url: string;
3248
3260
  description?: string | undefined;
3249
3261
  } | undefined;
3250
- }[P] : P extends `${infer K}.${infer R}` ? K extends "type" | "children" | "description" | "name" | "externalDocs" | "uid" | "x-scalar-children" ? R extends import("@scalar/object-utils/nested").Path<{
3262
+ }[P] : P extends `${infer K}.${infer R}` ? K extends "type" | "name" | "children" | "description" | "externalDocs" | "uid" | "x-scalar-children" ? R extends import("@scalar/object-utils/nested").Path<{
3251
3263
  type: "tag";
3252
3264
  uid: string;
3253
3265
  name: string;
@@ -3336,7 +3348,7 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
3336
3348
  } | undefined;
3337
3349
  proxyUrl?: string | undefined;
3338
3350
  }) => void;
3339
- edit: <P extends "cookies" | "collections" | "environments" | "description" | "name" | "uid" | "isReadOnly" | "activeEnvironmentId" | "themeId" | "hotKeyConfig" | "proxyUrl" | `cookies.${number}` | `collections.${number}` | `environments.${number}` | "hotKeyConfig.hotKeys" | "hotKeyConfig.modifiers" | `hotKeyConfig.modifiers.${number}` | "hotKeyConfig.hotKeys." | "hotKeyConfig.hotKeys.." | "hotKeyConfig.hotKeys.a" | "hotKeyConfig.hotKeys.b" | "hotKeyConfig.hotKeys.i" | "hotKeyConfig.hotKeys.p" | "hotKeyConfig.hotKeys.q" | "hotKeyConfig.hotKeys.s" | "hotKeyConfig.hotKeys.u" | "hotKeyConfig.hotKeys.g" | "hotKeyConfig.hotKeys.ArrowLeft" | "hotKeyConfig.hotKeys.ArrowRight" | "hotKeyConfig.hotKeys.Delete" | "hotKeyConfig.hotKeys.0" | "hotKeyConfig.hotKeys.1" | "hotKeyConfig.hotKeys.n" | "hotKeyConfig.hotKeys.Escape" | "hotKeyConfig.hotKeys.ArrowDown" | "hotKeyConfig.hotKeys.ArrowUp" | "hotKeyConfig.hotKeys.Enter" | "hotKeyConfig.hotKeys.F1" | "hotKeyConfig.hotKeys.F2" | "hotKeyConfig.hotKeys.F3" | "hotKeyConfig.hotKeys.F4" | "hotKeyConfig.hotKeys.F5" | "hotKeyConfig.hotKeys.F6" | "hotKeyConfig.hotKeys.F7" | "hotKeyConfig.hotKeys.F8" | "hotKeyConfig.hotKeys.F9" | "hotKeyConfig.hotKeys.F10" | "hotKeyConfig.hotKeys.F11" | "hotKeyConfig.hotKeys.F12" | "hotKeyConfig.hotKeys.Space" | "hotKeyConfig.hotKeys.Backspace" | "hotKeyConfig.hotKeys.Tab" | "hotKeyConfig.hotKeys.End" | "hotKeyConfig.hotKeys.Home" | "hotKeyConfig.hotKeys.PageDown" | "hotKeyConfig.hotKeys.PageUp" | "hotKeyConfig.hotKeys.2" | "hotKeyConfig.hotKeys.3" | "hotKeyConfig.hotKeys.4" | "hotKeyConfig.hotKeys.5" | "hotKeyConfig.hotKeys.6" | "hotKeyConfig.hotKeys.7" | "hotKeyConfig.hotKeys.8" | "hotKeyConfig.hotKeys.9" | "hotKeyConfig.hotKeys.c" | "hotKeyConfig.hotKeys.d" | "hotKeyConfig.hotKeys.e" | "hotKeyConfig.hotKeys.f" | "hotKeyConfig.hotKeys.h" | "hotKeyConfig.hotKeys.j" | "hotKeyConfig.hotKeys.k" | "hotKeyConfig.hotKeys.l" | "hotKeyConfig.hotKeys.m" | "hotKeyConfig.hotKeys.o" | "hotKeyConfig.hotKeys.r" | "hotKeyConfig.hotKeys.t" | "hotKeyConfig.hotKeys.v" | "hotKeyConfig.hotKeys.w" | "hotKeyConfig.hotKeys.x" | "hotKeyConfig.hotKeys.y" | "hotKeyConfig.hotKeys.z" | "hotKeyConfig.hotKeys.*" | "hotKeyConfig.hotKeys.+" | "hotKeyConfig.hotKeys.-" | "hotKeyConfig.hotKeys./" | "hotKeyConfig.hotKeys.;" | "hotKeyConfig.hotKeys.=" | "hotKeyConfig.hotKeys.," | "hotKeyConfig.hotKeys.`" | "hotKeyConfig.hotKeys.[" | "hotKeyConfig.hotKeys.\\" | "hotKeyConfig.hotKeys.]" | "hotKeyConfig.hotKeys..event" | "hotKeyConfig.hotKeys..modifiers" | `hotKeyConfig.hotKeys..modifiers.${number}` | "hotKeyConfig.hotKeys...event" | "hotKeyConfig.hotKeys...modifiers" | `hotKeyConfig.hotKeys...modifiers.${number}` | "hotKeyConfig.hotKeys.a.event" | "hotKeyConfig.hotKeys.a.modifiers" | `hotKeyConfig.hotKeys.a.modifiers.${number}` | "hotKeyConfig.hotKeys.b.event" | "hotKeyConfig.hotKeys.b.modifiers" | `hotKeyConfig.hotKeys.b.modifiers.${number}` | "hotKeyConfig.hotKeys.i.event" | "hotKeyConfig.hotKeys.i.modifiers" | `hotKeyConfig.hotKeys.i.modifiers.${number}` | "hotKeyConfig.hotKeys.p.event" | "hotKeyConfig.hotKeys.p.modifiers" | `hotKeyConfig.hotKeys.p.modifiers.${number}` | "hotKeyConfig.hotKeys.q.event" | "hotKeyConfig.hotKeys.q.modifiers" | `hotKeyConfig.hotKeys.q.modifiers.${number}` | "hotKeyConfig.hotKeys.s.event" | "hotKeyConfig.hotKeys.s.modifiers" | `hotKeyConfig.hotKeys.s.modifiers.${number}` | "hotKeyConfig.hotKeys.u.event" | "hotKeyConfig.hotKeys.u.modifiers" | `hotKeyConfig.hotKeys.u.modifiers.${number}` | "hotKeyConfig.hotKeys.g.event" | "hotKeyConfig.hotKeys.g.modifiers" | `hotKeyConfig.hotKeys.g.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowLeft.event" | "hotKeyConfig.hotKeys.ArrowLeft.modifiers" | `hotKeyConfig.hotKeys.ArrowLeft.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowRight.event" | "hotKeyConfig.hotKeys.ArrowRight.modifiers" | `hotKeyConfig.hotKeys.ArrowRight.modifiers.${number}` | "hotKeyConfig.hotKeys.Delete.event" | "hotKeyConfig.hotKeys.Delete.modifiers" | `hotKeyConfig.hotKeys.Delete.modifiers.${number}` | "hotKeyConfig.hotKeys.0.event" | "hotKeyConfig.hotKeys.0.modifiers" | `hotKeyConfig.hotKeys.0.modifiers.${number}` | "hotKeyConfig.hotKeys.1.event" | "hotKeyConfig.hotKeys.1.modifiers" | `hotKeyConfig.hotKeys.1.modifiers.${number}` | "hotKeyConfig.hotKeys.n.event" | "hotKeyConfig.hotKeys.n.modifiers" | `hotKeyConfig.hotKeys.n.modifiers.${number}` | "hotKeyConfig.hotKeys.Escape.event" | "hotKeyConfig.hotKeys.Escape.modifiers" | `hotKeyConfig.hotKeys.Escape.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowDown.event" | "hotKeyConfig.hotKeys.ArrowDown.modifiers" | `hotKeyConfig.hotKeys.ArrowDown.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowUp.event" | "hotKeyConfig.hotKeys.ArrowUp.modifiers" | `hotKeyConfig.hotKeys.ArrowUp.modifiers.${number}` | "hotKeyConfig.hotKeys.Enter.event" | "hotKeyConfig.hotKeys.Enter.modifiers" | `hotKeyConfig.hotKeys.Enter.modifiers.${number}` | "hotKeyConfig.hotKeys.F1.event" | "hotKeyConfig.hotKeys.F1.modifiers" | `hotKeyConfig.hotKeys.F1.modifiers.${number}` | "hotKeyConfig.hotKeys.F2.event" | "hotKeyConfig.hotKeys.F2.modifiers" | `hotKeyConfig.hotKeys.F2.modifiers.${number}` | "hotKeyConfig.hotKeys.F3.event" | "hotKeyConfig.hotKeys.F3.modifiers" | `hotKeyConfig.hotKeys.F3.modifiers.${number}` | "hotKeyConfig.hotKeys.F4.event" | "hotKeyConfig.hotKeys.F4.modifiers" | `hotKeyConfig.hotKeys.F4.modifiers.${number}` | "hotKeyConfig.hotKeys.F5.event" | "hotKeyConfig.hotKeys.F5.modifiers" | `hotKeyConfig.hotKeys.F5.modifiers.${number}` | "hotKeyConfig.hotKeys.F6.event" | "hotKeyConfig.hotKeys.F6.modifiers" | `hotKeyConfig.hotKeys.F6.modifiers.${number}` | "hotKeyConfig.hotKeys.F7.event" | "hotKeyConfig.hotKeys.F7.modifiers" | `hotKeyConfig.hotKeys.F7.modifiers.${number}` | "hotKeyConfig.hotKeys.F8.event" | "hotKeyConfig.hotKeys.F8.modifiers" | `hotKeyConfig.hotKeys.F8.modifiers.${number}` | "hotKeyConfig.hotKeys.F9.event" | "hotKeyConfig.hotKeys.F9.modifiers" | `hotKeyConfig.hotKeys.F9.modifiers.${number}` | "hotKeyConfig.hotKeys.F10.event" | "hotKeyConfig.hotKeys.F10.modifiers" | `hotKeyConfig.hotKeys.F10.modifiers.${number}` | "hotKeyConfig.hotKeys.F11.event" | "hotKeyConfig.hotKeys.F11.modifiers" | `hotKeyConfig.hotKeys.F11.modifiers.${number}` | "hotKeyConfig.hotKeys.F12.event" | "hotKeyConfig.hotKeys.F12.modifiers" | `hotKeyConfig.hotKeys.F12.modifiers.${number}` | "hotKeyConfig.hotKeys.Space.event" | "hotKeyConfig.hotKeys.Space.modifiers" | `hotKeyConfig.hotKeys.Space.modifiers.${number}` | "hotKeyConfig.hotKeys.Backspace.event" | "hotKeyConfig.hotKeys.Backspace.modifiers" | `hotKeyConfig.hotKeys.Backspace.modifiers.${number}` | "hotKeyConfig.hotKeys.Tab.event" | "hotKeyConfig.hotKeys.Tab.modifiers" | `hotKeyConfig.hotKeys.Tab.modifiers.${number}` | "hotKeyConfig.hotKeys.End.event" | "hotKeyConfig.hotKeys.End.modifiers" | `hotKeyConfig.hotKeys.End.modifiers.${number}` | "hotKeyConfig.hotKeys.Home.event" | "hotKeyConfig.hotKeys.Home.modifiers" | `hotKeyConfig.hotKeys.Home.modifiers.${number}` | "hotKeyConfig.hotKeys.PageDown.event" | "hotKeyConfig.hotKeys.PageDown.modifiers" | `hotKeyConfig.hotKeys.PageDown.modifiers.${number}` | "hotKeyConfig.hotKeys.PageUp.event" | "hotKeyConfig.hotKeys.PageUp.modifiers" | `hotKeyConfig.hotKeys.PageUp.modifiers.${number}` | "hotKeyConfig.hotKeys.2.event" | "hotKeyConfig.hotKeys.2.modifiers" | `hotKeyConfig.hotKeys.2.modifiers.${number}` | "hotKeyConfig.hotKeys.3.event" | "hotKeyConfig.hotKeys.3.modifiers" | `hotKeyConfig.hotKeys.3.modifiers.${number}` | "hotKeyConfig.hotKeys.4.event" | "hotKeyConfig.hotKeys.4.modifiers" | `hotKeyConfig.hotKeys.4.modifiers.${number}` | "hotKeyConfig.hotKeys.5.event" | "hotKeyConfig.hotKeys.5.modifiers" | `hotKeyConfig.hotKeys.5.modifiers.${number}` | "hotKeyConfig.hotKeys.6.event" | "hotKeyConfig.hotKeys.6.modifiers" | `hotKeyConfig.hotKeys.6.modifiers.${number}` | "hotKeyConfig.hotKeys.7.event" | "hotKeyConfig.hotKeys.7.modifiers" | `hotKeyConfig.hotKeys.7.modifiers.${number}` | "hotKeyConfig.hotKeys.8.event" | "hotKeyConfig.hotKeys.8.modifiers" | `hotKeyConfig.hotKeys.8.modifiers.${number}` | "hotKeyConfig.hotKeys.9.event" | "hotKeyConfig.hotKeys.9.modifiers" | `hotKeyConfig.hotKeys.9.modifiers.${number}` | "hotKeyConfig.hotKeys.c.event" | "hotKeyConfig.hotKeys.c.modifiers" | `hotKeyConfig.hotKeys.c.modifiers.${number}` | "hotKeyConfig.hotKeys.d.event" | "hotKeyConfig.hotKeys.d.modifiers" | `hotKeyConfig.hotKeys.d.modifiers.${number}` | "hotKeyConfig.hotKeys.e.event" | "hotKeyConfig.hotKeys.e.modifiers" | `hotKeyConfig.hotKeys.e.modifiers.${number}` | "hotKeyConfig.hotKeys.f.event" | "hotKeyConfig.hotKeys.f.modifiers" | `hotKeyConfig.hotKeys.f.modifiers.${number}` | "hotKeyConfig.hotKeys.h.event" | "hotKeyConfig.hotKeys.h.modifiers" | `hotKeyConfig.hotKeys.h.modifiers.${number}` | "hotKeyConfig.hotKeys.j.event" | "hotKeyConfig.hotKeys.j.modifiers" | `hotKeyConfig.hotKeys.j.modifiers.${number}` | "hotKeyConfig.hotKeys.k.event" | "hotKeyConfig.hotKeys.k.modifiers" | `hotKeyConfig.hotKeys.k.modifiers.${number}` | "hotKeyConfig.hotKeys.l.event" | "hotKeyConfig.hotKeys.l.modifiers" | `hotKeyConfig.hotKeys.l.modifiers.${number}` | "hotKeyConfig.hotKeys.m.event" | "hotKeyConfig.hotKeys.m.modifiers" | `hotKeyConfig.hotKeys.m.modifiers.${number}` | "hotKeyConfig.hotKeys.o.event" | "hotKeyConfig.hotKeys.o.modifiers" | `hotKeyConfig.hotKeys.o.modifiers.${number}` | "hotKeyConfig.hotKeys.r.event" | "hotKeyConfig.hotKeys.r.modifiers" | `hotKeyConfig.hotKeys.r.modifiers.${number}` | "hotKeyConfig.hotKeys.t.event" | "hotKeyConfig.hotKeys.t.modifiers" | `hotKeyConfig.hotKeys.t.modifiers.${number}` | "hotKeyConfig.hotKeys.v.event" | "hotKeyConfig.hotKeys.v.modifiers" | `hotKeyConfig.hotKeys.v.modifiers.${number}` | "hotKeyConfig.hotKeys.w.event" | "hotKeyConfig.hotKeys.w.modifiers" | `hotKeyConfig.hotKeys.w.modifiers.${number}` | "hotKeyConfig.hotKeys.x.event" | "hotKeyConfig.hotKeys.x.modifiers" | `hotKeyConfig.hotKeys.x.modifiers.${number}` | "hotKeyConfig.hotKeys.y.event" | "hotKeyConfig.hotKeys.y.modifiers" | `hotKeyConfig.hotKeys.y.modifiers.${number}` | "hotKeyConfig.hotKeys.z.event" | "hotKeyConfig.hotKeys.z.modifiers" | `hotKeyConfig.hotKeys.z.modifiers.${number}` | "hotKeyConfig.hotKeys.*.event" | "hotKeyConfig.hotKeys.*.modifiers" | `hotKeyConfig.hotKeys.*.modifiers.${number}` | "hotKeyConfig.hotKeys.+.event" | "hotKeyConfig.hotKeys.+.modifiers" | `hotKeyConfig.hotKeys.+.modifiers.${number}` | "hotKeyConfig.hotKeys.-.event" | "hotKeyConfig.hotKeys.-.modifiers" | `hotKeyConfig.hotKeys.-.modifiers.${number}` | "hotKeyConfig.hotKeys./.event" | "hotKeyConfig.hotKeys./.modifiers" | `hotKeyConfig.hotKeys./.modifiers.${number}` | "hotKeyConfig.hotKeys.;.event" | "hotKeyConfig.hotKeys.;.modifiers" | `hotKeyConfig.hotKeys.;.modifiers.${number}` | "hotKeyConfig.hotKeys.=.event" | "hotKeyConfig.hotKeys.=.modifiers" | `hotKeyConfig.hotKeys.=.modifiers.${number}` | "hotKeyConfig.hotKeys.,.event" | "hotKeyConfig.hotKeys.,.modifiers" | `hotKeyConfig.hotKeys.,.modifiers.${number}` | "hotKeyConfig.hotKeys.`.event" | "hotKeyConfig.hotKeys.`.modifiers" | `hotKeyConfig.hotKeys.\`.modifiers.${number}` | "hotKeyConfig.hotKeys.[.event" | "hotKeyConfig.hotKeys.[.modifiers" | `hotKeyConfig.hotKeys.[.modifiers.${number}` | "hotKeyConfig.hotKeys.\\.event" | "hotKeyConfig.hotKeys.\\.modifiers" | `hotKeyConfig.hotKeys.\\.modifiers.${number}` | "hotKeyConfig.hotKeys.].event" | "hotKeyConfig.hotKeys.].modifiers" | `hotKeyConfig.hotKeys.].modifiers.${number}`>(uid: string, path: P, value: P extends "cookies" | "collections" | "environments" | "description" | "name" | "uid" | "isReadOnly" | "activeEnvironmentId" | "themeId" | "hotKeyConfig" | "proxyUrl" ? {
3351
+ edit: <P extends "cookies" | "name" | "collections" | "environments" | "description" | "uid" | "isReadOnly" | "activeEnvironmentId" | "themeId" | "hotKeyConfig" | "proxyUrl" | `cookies.${number}` | `collections.${number}` | `environments.${number}` | "hotKeyConfig.hotKeys" | "hotKeyConfig.modifiers" | `hotKeyConfig.modifiers.${number}` | "hotKeyConfig.hotKeys." | "hotKeyConfig.hotKeys.." | "hotKeyConfig.hotKeys.a" | "hotKeyConfig.hotKeys.b" | "hotKeyConfig.hotKeys.i" | "hotKeyConfig.hotKeys.p" | "hotKeyConfig.hotKeys.q" | "hotKeyConfig.hotKeys.s" | "hotKeyConfig.hotKeys.u" | "hotKeyConfig.hotKeys.g" | "hotKeyConfig.hotKeys.-" | "hotKeyConfig.hotKeys.ArrowLeft" | "hotKeyConfig.hotKeys.ArrowRight" | "hotKeyConfig.hotKeys.Delete" | "hotKeyConfig.hotKeys.0" | "hotKeyConfig.hotKeys.1" | "hotKeyConfig.hotKeys.n" | "hotKeyConfig.hotKeys.Escape" | "hotKeyConfig.hotKeys.ArrowDown" | "hotKeyConfig.hotKeys.ArrowUp" | "hotKeyConfig.hotKeys.Enter" | "hotKeyConfig.hotKeys.F1" | "hotKeyConfig.hotKeys.F2" | "hotKeyConfig.hotKeys.F3" | "hotKeyConfig.hotKeys.F4" | "hotKeyConfig.hotKeys.F5" | "hotKeyConfig.hotKeys.F6" | "hotKeyConfig.hotKeys.F7" | "hotKeyConfig.hotKeys.F8" | "hotKeyConfig.hotKeys.F9" | "hotKeyConfig.hotKeys.F10" | "hotKeyConfig.hotKeys.F11" | "hotKeyConfig.hotKeys.F12" | "hotKeyConfig.hotKeys.Space" | "hotKeyConfig.hotKeys.Backspace" | "hotKeyConfig.hotKeys.Tab" | "hotKeyConfig.hotKeys.End" | "hotKeyConfig.hotKeys.Home" | "hotKeyConfig.hotKeys.PageDown" | "hotKeyConfig.hotKeys.PageUp" | "hotKeyConfig.hotKeys.2" | "hotKeyConfig.hotKeys.3" | "hotKeyConfig.hotKeys.4" | "hotKeyConfig.hotKeys.5" | "hotKeyConfig.hotKeys.6" | "hotKeyConfig.hotKeys.7" | "hotKeyConfig.hotKeys.8" | "hotKeyConfig.hotKeys.9" | "hotKeyConfig.hotKeys.c" | "hotKeyConfig.hotKeys.d" | "hotKeyConfig.hotKeys.e" | "hotKeyConfig.hotKeys.f" | "hotKeyConfig.hotKeys.h" | "hotKeyConfig.hotKeys.j" | "hotKeyConfig.hotKeys.k" | "hotKeyConfig.hotKeys.l" | "hotKeyConfig.hotKeys.m" | "hotKeyConfig.hotKeys.o" | "hotKeyConfig.hotKeys.r" | "hotKeyConfig.hotKeys.t" | "hotKeyConfig.hotKeys.v" | "hotKeyConfig.hotKeys.w" | "hotKeyConfig.hotKeys.x" | "hotKeyConfig.hotKeys.y" | "hotKeyConfig.hotKeys.z" | "hotKeyConfig.hotKeys.*" | "hotKeyConfig.hotKeys.+" | "hotKeyConfig.hotKeys./" | "hotKeyConfig.hotKeys.;" | "hotKeyConfig.hotKeys.=" | "hotKeyConfig.hotKeys.," | "hotKeyConfig.hotKeys.`" | "hotKeyConfig.hotKeys.[" | "hotKeyConfig.hotKeys.\\" | "hotKeyConfig.hotKeys.]" | "hotKeyConfig.hotKeys..event" | "hotKeyConfig.hotKeys..modifiers" | `hotKeyConfig.hotKeys..modifiers.${number}` | "hotKeyConfig.hotKeys...event" | "hotKeyConfig.hotKeys...modifiers" | `hotKeyConfig.hotKeys...modifiers.${number}` | "hotKeyConfig.hotKeys.a.event" | "hotKeyConfig.hotKeys.a.modifiers" | `hotKeyConfig.hotKeys.a.modifiers.${number}` | "hotKeyConfig.hotKeys.b.event" | "hotKeyConfig.hotKeys.b.modifiers" | `hotKeyConfig.hotKeys.b.modifiers.${number}` | "hotKeyConfig.hotKeys.i.event" | "hotKeyConfig.hotKeys.i.modifiers" | `hotKeyConfig.hotKeys.i.modifiers.${number}` | "hotKeyConfig.hotKeys.p.event" | "hotKeyConfig.hotKeys.p.modifiers" | `hotKeyConfig.hotKeys.p.modifiers.${number}` | "hotKeyConfig.hotKeys.q.event" | "hotKeyConfig.hotKeys.q.modifiers" | `hotKeyConfig.hotKeys.q.modifiers.${number}` | "hotKeyConfig.hotKeys.s.event" | "hotKeyConfig.hotKeys.s.modifiers" | `hotKeyConfig.hotKeys.s.modifiers.${number}` | "hotKeyConfig.hotKeys.u.event" | "hotKeyConfig.hotKeys.u.modifiers" | `hotKeyConfig.hotKeys.u.modifiers.${number}` | "hotKeyConfig.hotKeys.g.event" | "hotKeyConfig.hotKeys.g.modifiers" | `hotKeyConfig.hotKeys.g.modifiers.${number}` | "hotKeyConfig.hotKeys.-.event" | "hotKeyConfig.hotKeys.-.modifiers" | `hotKeyConfig.hotKeys.-.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowLeft.event" | "hotKeyConfig.hotKeys.ArrowLeft.modifiers" | `hotKeyConfig.hotKeys.ArrowLeft.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowRight.event" | "hotKeyConfig.hotKeys.ArrowRight.modifiers" | `hotKeyConfig.hotKeys.ArrowRight.modifiers.${number}` | "hotKeyConfig.hotKeys.Delete.event" | "hotKeyConfig.hotKeys.Delete.modifiers" | `hotKeyConfig.hotKeys.Delete.modifiers.${number}` | "hotKeyConfig.hotKeys.0.event" | "hotKeyConfig.hotKeys.0.modifiers" | `hotKeyConfig.hotKeys.0.modifiers.${number}` | "hotKeyConfig.hotKeys.1.event" | "hotKeyConfig.hotKeys.1.modifiers" | `hotKeyConfig.hotKeys.1.modifiers.${number}` | "hotKeyConfig.hotKeys.n.event" | "hotKeyConfig.hotKeys.n.modifiers" | `hotKeyConfig.hotKeys.n.modifiers.${number}` | "hotKeyConfig.hotKeys.Escape.event" | "hotKeyConfig.hotKeys.Escape.modifiers" | `hotKeyConfig.hotKeys.Escape.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowDown.event" | "hotKeyConfig.hotKeys.ArrowDown.modifiers" | `hotKeyConfig.hotKeys.ArrowDown.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowUp.event" | "hotKeyConfig.hotKeys.ArrowUp.modifiers" | `hotKeyConfig.hotKeys.ArrowUp.modifiers.${number}` | "hotKeyConfig.hotKeys.Enter.event" | "hotKeyConfig.hotKeys.Enter.modifiers" | `hotKeyConfig.hotKeys.Enter.modifiers.${number}` | "hotKeyConfig.hotKeys.F1.event" | "hotKeyConfig.hotKeys.F1.modifiers" | `hotKeyConfig.hotKeys.F1.modifiers.${number}` | "hotKeyConfig.hotKeys.F2.event" | "hotKeyConfig.hotKeys.F2.modifiers" | `hotKeyConfig.hotKeys.F2.modifiers.${number}` | "hotKeyConfig.hotKeys.F3.event" | "hotKeyConfig.hotKeys.F3.modifiers" | `hotKeyConfig.hotKeys.F3.modifiers.${number}` | "hotKeyConfig.hotKeys.F4.event" | "hotKeyConfig.hotKeys.F4.modifiers" | `hotKeyConfig.hotKeys.F4.modifiers.${number}` | "hotKeyConfig.hotKeys.F5.event" | "hotKeyConfig.hotKeys.F5.modifiers" | `hotKeyConfig.hotKeys.F5.modifiers.${number}` | "hotKeyConfig.hotKeys.F6.event" | "hotKeyConfig.hotKeys.F6.modifiers" | `hotKeyConfig.hotKeys.F6.modifiers.${number}` | "hotKeyConfig.hotKeys.F7.event" | "hotKeyConfig.hotKeys.F7.modifiers" | `hotKeyConfig.hotKeys.F7.modifiers.${number}` | "hotKeyConfig.hotKeys.F8.event" | "hotKeyConfig.hotKeys.F8.modifiers" | `hotKeyConfig.hotKeys.F8.modifiers.${number}` | "hotKeyConfig.hotKeys.F9.event" | "hotKeyConfig.hotKeys.F9.modifiers" | `hotKeyConfig.hotKeys.F9.modifiers.${number}` | "hotKeyConfig.hotKeys.F10.event" | "hotKeyConfig.hotKeys.F10.modifiers" | `hotKeyConfig.hotKeys.F10.modifiers.${number}` | "hotKeyConfig.hotKeys.F11.event" | "hotKeyConfig.hotKeys.F11.modifiers" | `hotKeyConfig.hotKeys.F11.modifiers.${number}` | "hotKeyConfig.hotKeys.F12.event" | "hotKeyConfig.hotKeys.F12.modifiers" | `hotKeyConfig.hotKeys.F12.modifiers.${number}` | "hotKeyConfig.hotKeys.Space.event" | "hotKeyConfig.hotKeys.Space.modifiers" | `hotKeyConfig.hotKeys.Space.modifiers.${number}` | "hotKeyConfig.hotKeys.Backspace.event" | "hotKeyConfig.hotKeys.Backspace.modifiers" | `hotKeyConfig.hotKeys.Backspace.modifiers.${number}` | "hotKeyConfig.hotKeys.Tab.event" | "hotKeyConfig.hotKeys.Tab.modifiers" | `hotKeyConfig.hotKeys.Tab.modifiers.${number}` | "hotKeyConfig.hotKeys.End.event" | "hotKeyConfig.hotKeys.End.modifiers" | `hotKeyConfig.hotKeys.End.modifiers.${number}` | "hotKeyConfig.hotKeys.Home.event" | "hotKeyConfig.hotKeys.Home.modifiers" | `hotKeyConfig.hotKeys.Home.modifiers.${number}` | "hotKeyConfig.hotKeys.PageDown.event" | "hotKeyConfig.hotKeys.PageDown.modifiers" | `hotKeyConfig.hotKeys.PageDown.modifiers.${number}` | "hotKeyConfig.hotKeys.PageUp.event" | "hotKeyConfig.hotKeys.PageUp.modifiers" | `hotKeyConfig.hotKeys.PageUp.modifiers.${number}` | "hotKeyConfig.hotKeys.2.event" | "hotKeyConfig.hotKeys.2.modifiers" | `hotKeyConfig.hotKeys.2.modifiers.${number}` | "hotKeyConfig.hotKeys.3.event" | "hotKeyConfig.hotKeys.3.modifiers" | `hotKeyConfig.hotKeys.3.modifiers.${number}` | "hotKeyConfig.hotKeys.4.event" | "hotKeyConfig.hotKeys.4.modifiers" | `hotKeyConfig.hotKeys.4.modifiers.${number}` | "hotKeyConfig.hotKeys.5.event" | "hotKeyConfig.hotKeys.5.modifiers" | `hotKeyConfig.hotKeys.5.modifiers.${number}` | "hotKeyConfig.hotKeys.6.event" | "hotKeyConfig.hotKeys.6.modifiers" | `hotKeyConfig.hotKeys.6.modifiers.${number}` | "hotKeyConfig.hotKeys.7.event" | "hotKeyConfig.hotKeys.7.modifiers" | `hotKeyConfig.hotKeys.7.modifiers.${number}` | "hotKeyConfig.hotKeys.8.event" | "hotKeyConfig.hotKeys.8.modifiers" | `hotKeyConfig.hotKeys.8.modifiers.${number}` | "hotKeyConfig.hotKeys.9.event" | "hotKeyConfig.hotKeys.9.modifiers" | `hotKeyConfig.hotKeys.9.modifiers.${number}` | "hotKeyConfig.hotKeys.c.event" | "hotKeyConfig.hotKeys.c.modifiers" | `hotKeyConfig.hotKeys.c.modifiers.${number}` | "hotKeyConfig.hotKeys.d.event" | "hotKeyConfig.hotKeys.d.modifiers" | `hotKeyConfig.hotKeys.d.modifiers.${number}` | "hotKeyConfig.hotKeys.e.event" | "hotKeyConfig.hotKeys.e.modifiers" | `hotKeyConfig.hotKeys.e.modifiers.${number}` | "hotKeyConfig.hotKeys.f.event" | "hotKeyConfig.hotKeys.f.modifiers" | `hotKeyConfig.hotKeys.f.modifiers.${number}` | "hotKeyConfig.hotKeys.h.event" | "hotKeyConfig.hotKeys.h.modifiers" | `hotKeyConfig.hotKeys.h.modifiers.${number}` | "hotKeyConfig.hotKeys.j.event" | "hotKeyConfig.hotKeys.j.modifiers" | `hotKeyConfig.hotKeys.j.modifiers.${number}` | "hotKeyConfig.hotKeys.k.event" | "hotKeyConfig.hotKeys.k.modifiers" | `hotKeyConfig.hotKeys.k.modifiers.${number}` | "hotKeyConfig.hotKeys.l.event" | "hotKeyConfig.hotKeys.l.modifiers" | `hotKeyConfig.hotKeys.l.modifiers.${number}` | "hotKeyConfig.hotKeys.m.event" | "hotKeyConfig.hotKeys.m.modifiers" | `hotKeyConfig.hotKeys.m.modifiers.${number}` | "hotKeyConfig.hotKeys.o.event" | "hotKeyConfig.hotKeys.o.modifiers" | `hotKeyConfig.hotKeys.o.modifiers.${number}` | "hotKeyConfig.hotKeys.r.event" | "hotKeyConfig.hotKeys.r.modifiers" | `hotKeyConfig.hotKeys.r.modifiers.${number}` | "hotKeyConfig.hotKeys.t.event" | "hotKeyConfig.hotKeys.t.modifiers" | `hotKeyConfig.hotKeys.t.modifiers.${number}` | "hotKeyConfig.hotKeys.v.event" | "hotKeyConfig.hotKeys.v.modifiers" | `hotKeyConfig.hotKeys.v.modifiers.${number}` | "hotKeyConfig.hotKeys.w.event" | "hotKeyConfig.hotKeys.w.modifiers" | `hotKeyConfig.hotKeys.w.modifiers.${number}` | "hotKeyConfig.hotKeys.x.event" | "hotKeyConfig.hotKeys.x.modifiers" | `hotKeyConfig.hotKeys.x.modifiers.${number}` | "hotKeyConfig.hotKeys.y.event" | "hotKeyConfig.hotKeys.y.modifiers" | `hotKeyConfig.hotKeys.y.modifiers.${number}` | "hotKeyConfig.hotKeys.z.event" | "hotKeyConfig.hotKeys.z.modifiers" | `hotKeyConfig.hotKeys.z.modifiers.${number}` | "hotKeyConfig.hotKeys.*.event" | "hotKeyConfig.hotKeys.*.modifiers" | `hotKeyConfig.hotKeys.*.modifiers.${number}` | "hotKeyConfig.hotKeys.+.event" | "hotKeyConfig.hotKeys.+.modifiers" | `hotKeyConfig.hotKeys.+.modifiers.${number}` | "hotKeyConfig.hotKeys./.event" | "hotKeyConfig.hotKeys./.modifiers" | `hotKeyConfig.hotKeys./.modifiers.${number}` | "hotKeyConfig.hotKeys.;.event" | "hotKeyConfig.hotKeys.;.modifiers" | `hotKeyConfig.hotKeys.;.modifiers.${number}` | "hotKeyConfig.hotKeys.=.event" | "hotKeyConfig.hotKeys.=.modifiers" | `hotKeyConfig.hotKeys.=.modifiers.${number}` | "hotKeyConfig.hotKeys.,.event" | "hotKeyConfig.hotKeys.,.modifiers" | `hotKeyConfig.hotKeys.,.modifiers.${number}` | "hotKeyConfig.hotKeys.`.event" | "hotKeyConfig.hotKeys.`.modifiers" | `hotKeyConfig.hotKeys.\`.modifiers.${number}` | "hotKeyConfig.hotKeys.[.event" | "hotKeyConfig.hotKeys.[.modifiers" | `hotKeyConfig.hotKeys.[.modifiers.${number}` | "hotKeyConfig.hotKeys.\\.event" | "hotKeyConfig.hotKeys.\\.modifiers" | `hotKeyConfig.hotKeys.\\.modifiers.${number}` | "hotKeyConfig.hotKeys.].event" | "hotKeyConfig.hotKeys.].modifiers" | `hotKeyConfig.hotKeys.].modifiers.${number}`>(uid: string, path: P, value: P extends "cookies" | "name" | "collections" | "environments" | "description" | "uid" | "isReadOnly" | "activeEnvironmentId" | "themeId" | "hotKeyConfig" | "proxyUrl" ? {
3340
3352
  uid: string;
3341
3353
  name: string;
3342
3354
  description: string;
@@ -3354,7 +3366,7 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
3354
3366
  }>> | undefined;
3355
3367
  } | undefined;
3356
3368
  proxyUrl?: string | undefined;
3357
- }[P] : P extends `${infer K}.${infer R}` ? K extends "cookies" | "collections" | "environments" | "description" | "name" | "uid" | "isReadOnly" | "activeEnvironmentId" | "themeId" | "hotKeyConfig" | "proxyUrl" ? R extends import("@scalar/object-utils/nested").Path<{
3369
+ }[P] : P extends `${infer K}.${infer R}` ? K extends "cookies" | "name" | "collections" | "environments" | "description" | "uid" | "isReadOnly" | "activeEnvironmentId" | "themeId" | "hotKeyConfig" | "proxyUrl" ? R extends import("@scalar/object-utils/nested").Path<{
3358
3370
  uid: string;
3359
3371
  name: string;
3360
3372
  description: string;
@@ -3391,7 +3403,7 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
3391
3403
  } | undefined;
3392
3404
  proxyUrl?: string | undefined;
3393
3405
  }[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
3394
- untrackedEdit: <P extends "cookies" | "collections" | "environments" | "description" | "name" | "uid" | "isReadOnly" | "activeEnvironmentId" | "themeId" | "hotKeyConfig" | "proxyUrl" | `cookies.${number}` | `collections.${number}` | `environments.${number}` | "hotKeyConfig.hotKeys" | "hotKeyConfig.modifiers" | `hotKeyConfig.modifiers.${number}` | "hotKeyConfig.hotKeys." | "hotKeyConfig.hotKeys.." | "hotKeyConfig.hotKeys.a" | "hotKeyConfig.hotKeys.b" | "hotKeyConfig.hotKeys.i" | "hotKeyConfig.hotKeys.p" | "hotKeyConfig.hotKeys.q" | "hotKeyConfig.hotKeys.s" | "hotKeyConfig.hotKeys.u" | "hotKeyConfig.hotKeys.g" | "hotKeyConfig.hotKeys.ArrowLeft" | "hotKeyConfig.hotKeys.ArrowRight" | "hotKeyConfig.hotKeys.Delete" | "hotKeyConfig.hotKeys.0" | "hotKeyConfig.hotKeys.1" | "hotKeyConfig.hotKeys.n" | "hotKeyConfig.hotKeys.Escape" | "hotKeyConfig.hotKeys.ArrowDown" | "hotKeyConfig.hotKeys.ArrowUp" | "hotKeyConfig.hotKeys.Enter" | "hotKeyConfig.hotKeys.F1" | "hotKeyConfig.hotKeys.F2" | "hotKeyConfig.hotKeys.F3" | "hotKeyConfig.hotKeys.F4" | "hotKeyConfig.hotKeys.F5" | "hotKeyConfig.hotKeys.F6" | "hotKeyConfig.hotKeys.F7" | "hotKeyConfig.hotKeys.F8" | "hotKeyConfig.hotKeys.F9" | "hotKeyConfig.hotKeys.F10" | "hotKeyConfig.hotKeys.F11" | "hotKeyConfig.hotKeys.F12" | "hotKeyConfig.hotKeys.Space" | "hotKeyConfig.hotKeys.Backspace" | "hotKeyConfig.hotKeys.Tab" | "hotKeyConfig.hotKeys.End" | "hotKeyConfig.hotKeys.Home" | "hotKeyConfig.hotKeys.PageDown" | "hotKeyConfig.hotKeys.PageUp" | "hotKeyConfig.hotKeys.2" | "hotKeyConfig.hotKeys.3" | "hotKeyConfig.hotKeys.4" | "hotKeyConfig.hotKeys.5" | "hotKeyConfig.hotKeys.6" | "hotKeyConfig.hotKeys.7" | "hotKeyConfig.hotKeys.8" | "hotKeyConfig.hotKeys.9" | "hotKeyConfig.hotKeys.c" | "hotKeyConfig.hotKeys.d" | "hotKeyConfig.hotKeys.e" | "hotKeyConfig.hotKeys.f" | "hotKeyConfig.hotKeys.h" | "hotKeyConfig.hotKeys.j" | "hotKeyConfig.hotKeys.k" | "hotKeyConfig.hotKeys.l" | "hotKeyConfig.hotKeys.m" | "hotKeyConfig.hotKeys.o" | "hotKeyConfig.hotKeys.r" | "hotKeyConfig.hotKeys.t" | "hotKeyConfig.hotKeys.v" | "hotKeyConfig.hotKeys.w" | "hotKeyConfig.hotKeys.x" | "hotKeyConfig.hotKeys.y" | "hotKeyConfig.hotKeys.z" | "hotKeyConfig.hotKeys.*" | "hotKeyConfig.hotKeys.+" | "hotKeyConfig.hotKeys.-" | "hotKeyConfig.hotKeys./" | "hotKeyConfig.hotKeys.;" | "hotKeyConfig.hotKeys.=" | "hotKeyConfig.hotKeys.," | "hotKeyConfig.hotKeys.`" | "hotKeyConfig.hotKeys.[" | "hotKeyConfig.hotKeys.\\" | "hotKeyConfig.hotKeys.]" | "hotKeyConfig.hotKeys..event" | "hotKeyConfig.hotKeys..modifiers" | `hotKeyConfig.hotKeys..modifiers.${number}` | "hotKeyConfig.hotKeys...event" | "hotKeyConfig.hotKeys...modifiers" | `hotKeyConfig.hotKeys...modifiers.${number}` | "hotKeyConfig.hotKeys.a.event" | "hotKeyConfig.hotKeys.a.modifiers" | `hotKeyConfig.hotKeys.a.modifiers.${number}` | "hotKeyConfig.hotKeys.b.event" | "hotKeyConfig.hotKeys.b.modifiers" | `hotKeyConfig.hotKeys.b.modifiers.${number}` | "hotKeyConfig.hotKeys.i.event" | "hotKeyConfig.hotKeys.i.modifiers" | `hotKeyConfig.hotKeys.i.modifiers.${number}` | "hotKeyConfig.hotKeys.p.event" | "hotKeyConfig.hotKeys.p.modifiers" | `hotKeyConfig.hotKeys.p.modifiers.${number}` | "hotKeyConfig.hotKeys.q.event" | "hotKeyConfig.hotKeys.q.modifiers" | `hotKeyConfig.hotKeys.q.modifiers.${number}` | "hotKeyConfig.hotKeys.s.event" | "hotKeyConfig.hotKeys.s.modifiers" | `hotKeyConfig.hotKeys.s.modifiers.${number}` | "hotKeyConfig.hotKeys.u.event" | "hotKeyConfig.hotKeys.u.modifiers" | `hotKeyConfig.hotKeys.u.modifiers.${number}` | "hotKeyConfig.hotKeys.g.event" | "hotKeyConfig.hotKeys.g.modifiers" | `hotKeyConfig.hotKeys.g.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowLeft.event" | "hotKeyConfig.hotKeys.ArrowLeft.modifiers" | `hotKeyConfig.hotKeys.ArrowLeft.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowRight.event" | "hotKeyConfig.hotKeys.ArrowRight.modifiers" | `hotKeyConfig.hotKeys.ArrowRight.modifiers.${number}` | "hotKeyConfig.hotKeys.Delete.event" | "hotKeyConfig.hotKeys.Delete.modifiers" | `hotKeyConfig.hotKeys.Delete.modifiers.${number}` | "hotKeyConfig.hotKeys.0.event" | "hotKeyConfig.hotKeys.0.modifiers" | `hotKeyConfig.hotKeys.0.modifiers.${number}` | "hotKeyConfig.hotKeys.1.event" | "hotKeyConfig.hotKeys.1.modifiers" | `hotKeyConfig.hotKeys.1.modifiers.${number}` | "hotKeyConfig.hotKeys.n.event" | "hotKeyConfig.hotKeys.n.modifiers" | `hotKeyConfig.hotKeys.n.modifiers.${number}` | "hotKeyConfig.hotKeys.Escape.event" | "hotKeyConfig.hotKeys.Escape.modifiers" | `hotKeyConfig.hotKeys.Escape.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowDown.event" | "hotKeyConfig.hotKeys.ArrowDown.modifiers" | `hotKeyConfig.hotKeys.ArrowDown.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowUp.event" | "hotKeyConfig.hotKeys.ArrowUp.modifiers" | `hotKeyConfig.hotKeys.ArrowUp.modifiers.${number}` | "hotKeyConfig.hotKeys.Enter.event" | "hotKeyConfig.hotKeys.Enter.modifiers" | `hotKeyConfig.hotKeys.Enter.modifiers.${number}` | "hotKeyConfig.hotKeys.F1.event" | "hotKeyConfig.hotKeys.F1.modifiers" | `hotKeyConfig.hotKeys.F1.modifiers.${number}` | "hotKeyConfig.hotKeys.F2.event" | "hotKeyConfig.hotKeys.F2.modifiers" | `hotKeyConfig.hotKeys.F2.modifiers.${number}` | "hotKeyConfig.hotKeys.F3.event" | "hotKeyConfig.hotKeys.F3.modifiers" | `hotKeyConfig.hotKeys.F3.modifiers.${number}` | "hotKeyConfig.hotKeys.F4.event" | "hotKeyConfig.hotKeys.F4.modifiers" | `hotKeyConfig.hotKeys.F4.modifiers.${number}` | "hotKeyConfig.hotKeys.F5.event" | "hotKeyConfig.hotKeys.F5.modifiers" | `hotKeyConfig.hotKeys.F5.modifiers.${number}` | "hotKeyConfig.hotKeys.F6.event" | "hotKeyConfig.hotKeys.F6.modifiers" | `hotKeyConfig.hotKeys.F6.modifiers.${number}` | "hotKeyConfig.hotKeys.F7.event" | "hotKeyConfig.hotKeys.F7.modifiers" | `hotKeyConfig.hotKeys.F7.modifiers.${number}` | "hotKeyConfig.hotKeys.F8.event" | "hotKeyConfig.hotKeys.F8.modifiers" | `hotKeyConfig.hotKeys.F8.modifiers.${number}` | "hotKeyConfig.hotKeys.F9.event" | "hotKeyConfig.hotKeys.F9.modifiers" | `hotKeyConfig.hotKeys.F9.modifiers.${number}` | "hotKeyConfig.hotKeys.F10.event" | "hotKeyConfig.hotKeys.F10.modifiers" | `hotKeyConfig.hotKeys.F10.modifiers.${number}` | "hotKeyConfig.hotKeys.F11.event" | "hotKeyConfig.hotKeys.F11.modifiers" | `hotKeyConfig.hotKeys.F11.modifiers.${number}` | "hotKeyConfig.hotKeys.F12.event" | "hotKeyConfig.hotKeys.F12.modifiers" | `hotKeyConfig.hotKeys.F12.modifiers.${number}` | "hotKeyConfig.hotKeys.Space.event" | "hotKeyConfig.hotKeys.Space.modifiers" | `hotKeyConfig.hotKeys.Space.modifiers.${number}` | "hotKeyConfig.hotKeys.Backspace.event" | "hotKeyConfig.hotKeys.Backspace.modifiers" | `hotKeyConfig.hotKeys.Backspace.modifiers.${number}` | "hotKeyConfig.hotKeys.Tab.event" | "hotKeyConfig.hotKeys.Tab.modifiers" | `hotKeyConfig.hotKeys.Tab.modifiers.${number}` | "hotKeyConfig.hotKeys.End.event" | "hotKeyConfig.hotKeys.End.modifiers" | `hotKeyConfig.hotKeys.End.modifiers.${number}` | "hotKeyConfig.hotKeys.Home.event" | "hotKeyConfig.hotKeys.Home.modifiers" | `hotKeyConfig.hotKeys.Home.modifiers.${number}` | "hotKeyConfig.hotKeys.PageDown.event" | "hotKeyConfig.hotKeys.PageDown.modifiers" | `hotKeyConfig.hotKeys.PageDown.modifiers.${number}` | "hotKeyConfig.hotKeys.PageUp.event" | "hotKeyConfig.hotKeys.PageUp.modifiers" | `hotKeyConfig.hotKeys.PageUp.modifiers.${number}` | "hotKeyConfig.hotKeys.2.event" | "hotKeyConfig.hotKeys.2.modifiers" | `hotKeyConfig.hotKeys.2.modifiers.${number}` | "hotKeyConfig.hotKeys.3.event" | "hotKeyConfig.hotKeys.3.modifiers" | `hotKeyConfig.hotKeys.3.modifiers.${number}` | "hotKeyConfig.hotKeys.4.event" | "hotKeyConfig.hotKeys.4.modifiers" | `hotKeyConfig.hotKeys.4.modifiers.${number}` | "hotKeyConfig.hotKeys.5.event" | "hotKeyConfig.hotKeys.5.modifiers" | `hotKeyConfig.hotKeys.5.modifiers.${number}` | "hotKeyConfig.hotKeys.6.event" | "hotKeyConfig.hotKeys.6.modifiers" | `hotKeyConfig.hotKeys.6.modifiers.${number}` | "hotKeyConfig.hotKeys.7.event" | "hotKeyConfig.hotKeys.7.modifiers" | `hotKeyConfig.hotKeys.7.modifiers.${number}` | "hotKeyConfig.hotKeys.8.event" | "hotKeyConfig.hotKeys.8.modifiers" | `hotKeyConfig.hotKeys.8.modifiers.${number}` | "hotKeyConfig.hotKeys.9.event" | "hotKeyConfig.hotKeys.9.modifiers" | `hotKeyConfig.hotKeys.9.modifiers.${number}` | "hotKeyConfig.hotKeys.c.event" | "hotKeyConfig.hotKeys.c.modifiers" | `hotKeyConfig.hotKeys.c.modifiers.${number}` | "hotKeyConfig.hotKeys.d.event" | "hotKeyConfig.hotKeys.d.modifiers" | `hotKeyConfig.hotKeys.d.modifiers.${number}` | "hotKeyConfig.hotKeys.e.event" | "hotKeyConfig.hotKeys.e.modifiers" | `hotKeyConfig.hotKeys.e.modifiers.${number}` | "hotKeyConfig.hotKeys.f.event" | "hotKeyConfig.hotKeys.f.modifiers" | `hotKeyConfig.hotKeys.f.modifiers.${number}` | "hotKeyConfig.hotKeys.h.event" | "hotKeyConfig.hotKeys.h.modifiers" | `hotKeyConfig.hotKeys.h.modifiers.${number}` | "hotKeyConfig.hotKeys.j.event" | "hotKeyConfig.hotKeys.j.modifiers" | `hotKeyConfig.hotKeys.j.modifiers.${number}` | "hotKeyConfig.hotKeys.k.event" | "hotKeyConfig.hotKeys.k.modifiers" | `hotKeyConfig.hotKeys.k.modifiers.${number}` | "hotKeyConfig.hotKeys.l.event" | "hotKeyConfig.hotKeys.l.modifiers" | `hotKeyConfig.hotKeys.l.modifiers.${number}` | "hotKeyConfig.hotKeys.m.event" | "hotKeyConfig.hotKeys.m.modifiers" | `hotKeyConfig.hotKeys.m.modifiers.${number}` | "hotKeyConfig.hotKeys.o.event" | "hotKeyConfig.hotKeys.o.modifiers" | `hotKeyConfig.hotKeys.o.modifiers.${number}` | "hotKeyConfig.hotKeys.r.event" | "hotKeyConfig.hotKeys.r.modifiers" | `hotKeyConfig.hotKeys.r.modifiers.${number}` | "hotKeyConfig.hotKeys.t.event" | "hotKeyConfig.hotKeys.t.modifiers" | `hotKeyConfig.hotKeys.t.modifiers.${number}` | "hotKeyConfig.hotKeys.v.event" | "hotKeyConfig.hotKeys.v.modifiers" | `hotKeyConfig.hotKeys.v.modifiers.${number}` | "hotKeyConfig.hotKeys.w.event" | "hotKeyConfig.hotKeys.w.modifiers" | `hotKeyConfig.hotKeys.w.modifiers.${number}` | "hotKeyConfig.hotKeys.x.event" | "hotKeyConfig.hotKeys.x.modifiers" | `hotKeyConfig.hotKeys.x.modifiers.${number}` | "hotKeyConfig.hotKeys.y.event" | "hotKeyConfig.hotKeys.y.modifiers" | `hotKeyConfig.hotKeys.y.modifiers.${number}` | "hotKeyConfig.hotKeys.z.event" | "hotKeyConfig.hotKeys.z.modifiers" | `hotKeyConfig.hotKeys.z.modifiers.${number}` | "hotKeyConfig.hotKeys.*.event" | "hotKeyConfig.hotKeys.*.modifiers" | `hotKeyConfig.hotKeys.*.modifiers.${number}` | "hotKeyConfig.hotKeys.+.event" | "hotKeyConfig.hotKeys.+.modifiers" | `hotKeyConfig.hotKeys.+.modifiers.${number}` | "hotKeyConfig.hotKeys.-.event" | "hotKeyConfig.hotKeys.-.modifiers" | `hotKeyConfig.hotKeys.-.modifiers.${number}` | "hotKeyConfig.hotKeys./.event" | "hotKeyConfig.hotKeys./.modifiers" | `hotKeyConfig.hotKeys./.modifiers.${number}` | "hotKeyConfig.hotKeys.;.event" | "hotKeyConfig.hotKeys.;.modifiers" | `hotKeyConfig.hotKeys.;.modifiers.${number}` | "hotKeyConfig.hotKeys.=.event" | "hotKeyConfig.hotKeys.=.modifiers" | `hotKeyConfig.hotKeys.=.modifiers.${number}` | "hotKeyConfig.hotKeys.,.event" | "hotKeyConfig.hotKeys.,.modifiers" | `hotKeyConfig.hotKeys.,.modifiers.${number}` | "hotKeyConfig.hotKeys.`.event" | "hotKeyConfig.hotKeys.`.modifiers" | `hotKeyConfig.hotKeys.\`.modifiers.${number}` | "hotKeyConfig.hotKeys.[.event" | "hotKeyConfig.hotKeys.[.modifiers" | `hotKeyConfig.hotKeys.[.modifiers.${number}` | "hotKeyConfig.hotKeys.\\.event" | "hotKeyConfig.hotKeys.\\.modifiers" | `hotKeyConfig.hotKeys.\\.modifiers.${number}` | "hotKeyConfig.hotKeys.].event" | "hotKeyConfig.hotKeys.].modifiers" | `hotKeyConfig.hotKeys.].modifiers.${number}`>(uid: string, path: P, value: P extends "cookies" | "collections" | "environments" | "description" | "name" | "uid" | "isReadOnly" | "activeEnvironmentId" | "themeId" | "hotKeyConfig" | "proxyUrl" ? {
3406
+ untrackedEdit: <P extends "cookies" | "name" | "collections" | "environments" | "description" | "uid" | "isReadOnly" | "activeEnvironmentId" | "themeId" | "hotKeyConfig" | "proxyUrl" | `cookies.${number}` | `collections.${number}` | `environments.${number}` | "hotKeyConfig.hotKeys" | "hotKeyConfig.modifiers" | `hotKeyConfig.modifiers.${number}` | "hotKeyConfig.hotKeys." | "hotKeyConfig.hotKeys.." | "hotKeyConfig.hotKeys.a" | "hotKeyConfig.hotKeys.b" | "hotKeyConfig.hotKeys.i" | "hotKeyConfig.hotKeys.p" | "hotKeyConfig.hotKeys.q" | "hotKeyConfig.hotKeys.s" | "hotKeyConfig.hotKeys.u" | "hotKeyConfig.hotKeys.g" | "hotKeyConfig.hotKeys.-" | "hotKeyConfig.hotKeys.ArrowLeft" | "hotKeyConfig.hotKeys.ArrowRight" | "hotKeyConfig.hotKeys.Delete" | "hotKeyConfig.hotKeys.0" | "hotKeyConfig.hotKeys.1" | "hotKeyConfig.hotKeys.n" | "hotKeyConfig.hotKeys.Escape" | "hotKeyConfig.hotKeys.ArrowDown" | "hotKeyConfig.hotKeys.ArrowUp" | "hotKeyConfig.hotKeys.Enter" | "hotKeyConfig.hotKeys.F1" | "hotKeyConfig.hotKeys.F2" | "hotKeyConfig.hotKeys.F3" | "hotKeyConfig.hotKeys.F4" | "hotKeyConfig.hotKeys.F5" | "hotKeyConfig.hotKeys.F6" | "hotKeyConfig.hotKeys.F7" | "hotKeyConfig.hotKeys.F8" | "hotKeyConfig.hotKeys.F9" | "hotKeyConfig.hotKeys.F10" | "hotKeyConfig.hotKeys.F11" | "hotKeyConfig.hotKeys.F12" | "hotKeyConfig.hotKeys.Space" | "hotKeyConfig.hotKeys.Backspace" | "hotKeyConfig.hotKeys.Tab" | "hotKeyConfig.hotKeys.End" | "hotKeyConfig.hotKeys.Home" | "hotKeyConfig.hotKeys.PageDown" | "hotKeyConfig.hotKeys.PageUp" | "hotKeyConfig.hotKeys.2" | "hotKeyConfig.hotKeys.3" | "hotKeyConfig.hotKeys.4" | "hotKeyConfig.hotKeys.5" | "hotKeyConfig.hotKeys.6" | "hotKeyConfig.hotKeys.7" | "hotKeyConfig.hotKeys.8" | "hotKeyConfig.hotKeys.9" | "hotKeyConfig.hotKeys.c" | "hotKeyConfig.hotKeys.d" | "hotKeyConfig.hotKeys.e" | "hotKeyConfig.hotKeys.f" | "hotKeyConfig.hotKeys.h" | "hotKeyConfig.hotKeys.j" | "hotKeyConfig.hotKeys.k" | "hotKeyConfig.hotKeys.l" | "hotKeyConfig.hotKeys.m" | "hotKeyConfig.hotKeys.o" | "hotKeyConfig.hotKeys.r" | "hotKeyConfig.hotKeys.t" | "hotKeyConfig.hotKeys.v" | "hotKeyConfig.hotKeys.w" | "hotKeyConfig.hotKeys.x" | "hotKeyConfig.hotKeys.y" | "hotKeyConfig.hotKeys.z" | "hotKeyConfig.hotKeys.*" | "hotKeyConfig.hotKeys.+" | "hotKeyConfig.hotKeys./" | "hotKeyConfig.hotKeys.;" | "hotKeyConfig.hotKeys.=" | "hotKeyConfig.hotKeys.," | "hotKeyConfig.hotKeys.`" | "hotKeyConfig.hotKeys.[" | "hotKeyConfig.hotKeys.\\" | "hotKeyConfig.hotKeys.]" | "hotKeyConfig.hotKeys..event" | "hotKeyConfig.hotKeys..modifiers" | `hotKeyConfig.hotKeys..modifiers.${number}` | "hotKeyConfig.hotKeys...event" | "hotKeyConfig.hotKeys...modifiers" | `hotKeyConfig.hotKeys...modifiers.${number}` | "hotKeyConfig.hotKeys.a.event" | "hotKeyConfig.hotKeys.a.modifiers" | `hotKeyConfig.hotKeys.a.modifiers.${number}` | "hotKeyConfig.hotKeys.b.event" | "hotKeyConfig.hotKeys.b.modifiers" | `hotKeyConfig.hotKeys.b.modifiers.${number}` | "hotKeyConfig.hotKeys.i.event" | "hotKeyConfig.hotKeys.i.modifiers" | `hotKeyConfig.hotKeys.i.modifiers.${number}` | "hotKeyConfig.hotKeys.p.event" | "hotKeyConfig.hotKeys.p.modifiers" | `hotKeyConfig.hotKeys.p.modifiers.${number}` | "hotKeyConfig.hotKeys.q.event" | "hotKeyConfig.hotKeys.q.modifiers" | `hotKeyConfig.hotKeys.q.modifiers.${number}` | "hotKeyConfig.hotKeys.s.event" | "hotKeyConfig.hotKeys.s.modifiers" | `hotKeyConfig.hotKeys.s.modifiers.${number}` | "hotKeyConfig.hotKeys.u.event" | "hotKeyConfig.hotKeys.u.modifiers" | `hotKeyConfig.hotKeys.u.modifiers.${number}` | "hotKeyConfig.hotKeys.g.event" | "hotKeyConfig.hotKeys.g.modifiers" | `hotKeyConfig.hotKeys.g.modifiers.${number}` | "hotKeyConfig.hotKeys.-.event" | "hotKeyConfig.hotKeys.-.modifiers" | `hotKeyConfig.hotKeys.-.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowLeft.event" | "hotKeyConfig.hotKeys.ArrowLeft.modifiers" | `hotKeyConfig.hotKeys.ArrowLeft.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowRight.event" | "hotKeyConfig.hotKeys.ArrowRight.modifiers" | `hotKeyConfig.hotKeys.ArrowRight.modifiers.${number}` | "hotKeyConfig.hotKeys.Delete.event" | "hotKeyConfig.hotKeys.Delete.modifiers" | `hotKeyConfig.hotKeys.Delete.modifiers.${number}` | "hotKeyConfig.hotKeys.0.event" | "hotKeyConfig.hotKeys.0.modifiers" | `hotKeyConfig.hotKeys.0.modifiers.${number}` | "hotKeyConfig.hotKeys.1.event" | "hotKeyConfig.hotKeys.1.modifiers" | `hotKeyConfig.hotKeys.1.modifiers.${number}` | "hotKeyConfig.hotKeys.n.event" | "hotKeyConfig.hotKeys.n.modifiers" | `hotKeyConfig.hotKeys.n.modifiers.${number}` | "hotKeyConfig.hotKeys.Escape.event" | "hotKeyConfig.hotKeys.Escape.modifiers" | `hotKeyConfig.hotKeys.Escape.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowDown.event" | "hotKeyConfig.hotKeys.ArrowDown.modifiers" | `hotKeyConfig.hotKeys.ArrowDown.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowUp.event" | "hotKeyConfig.hotKeys.ArrowUp.modifiers" | `hotKeyConfig.hotKeys.ArrowUp.modifiers.${number}` | "hotKeyConfig.hotKeys.Enter.event" | "hotKeyConfig.hotKeys.Enter.modifiers" | `hotKeyConfig.hotKeys.Enter.modifiers.${number}` | "hotKeyConfig.hotKeys.F1.event" | "hotKeyConfig.hotKeys.F1.modifiers" | `hotKeyConfig.hotKeys.F1.modifiers.${number}` | "hotKeyConfig.hotKeys.F2.event" | "hotKeyConfig.hotKeys.F2.modifiers" | `hotKeyConfig.hotKeys.F2.modifiers.${number}` | "hotKeyConfig.hotKeys.F3.event" | "hotKeyConfig.hotKeys.F3.modifiers" | `hotKeyConfig.hotKeys.F3.modifiers.${number}` | "hotKeyConfig.hotKeys.F4.event" | "hotKeyConfig.hotKeys.F4.modifiers" | `hotKeyConfig.hotKeys.F4.modifiers.${number}` | "hotKeyConfig.hotKeys.F5.event" | "hotKeyConfig.hotKeys.F5.modifiers" | `hotKeyConfig.hotKeys.F5.modifiers.${number}` | "hotKeyConfig.hotKeys.F6.event" | "hotKeyConfig.hotKeys.F6.modifiers" | `hotKeyConfig.hotKeys.F6.modifiers.${number}` | "hotKeyConfig.hotKeys.F7.event" | "hotKeyConfig.hotKeys.F7.modifiers" | `hotKeyConfig.hotKeys.F7.modifiers.${number}` | "hotKeyConfig.hotKeys.F8.event" | "hotKeyConfig.hotKeys.F8.modifiers" | `hotKeyConfig.hotKeys.F8.modifiers.${number}` | "hotKeyConfig.hotKeys.F9.event" | "hotKeyConfig.hotKeys.F9.modifiers" | `hotKeyConfig.hotKeys.F9.modifiers.${number}` | "hotKeyConfig.hotKeys.F10.event" | "hotKeyConfig.hotKeys.F10.modifiers" | `hotKeyConfig.hotKeys.F10.modifiers.${number}` | "hotKeyConfig.hotKeys.F11.event" | "hotKeyConfig.hotKeys.F11.modifiers" | `hotKeyConfig.hotKeys.F11.modifiers.${number}` | "hotKeyConfig.hotKeys.F12.event" | "hotKeyConfig.hotKeys.F12.modifiers" | `hotKeyConfig.hotKeys.F12.modifiers.${number}` | "hotKeyConfig.hotKeys.Space.event" | "hotKeyConfig.hotKeys.Space.modifiers" | `hotKeyConfig.hotKeys.Space.modifiers.${number}` | "hotKeyConfig.hotKeys.Backspace.event" | "hotKeyConfig.hotKeys.Backspace.modifiers" | `hotKeyConfig.hotKeys.Backspace.modifiers.${number}` | "hotKeyConfig.hotKeys.Tab.event" | "hotKeyConfig.hotKeys.Tab.modifiers" | `hotKeyConfig.hotKeys.Tab.modifiers.${number}` | "hotKeyConfig.hotKeys.End.event" | "hotKeyConfig.hotKeys.End.modifiers" | `hotKeyConfig.hotKeys.End.modifiers.${number}` | "hotKeyConfig.hotKeys.Home.event" | "hotKeyConfig.hotKeys.Home.modifiers" | `hotKeyConfig.hotKeys.Home.modifiers.${number}` | "hotKeyConfig.hotKeys.PageDown.event" | "hotKeyConfig.hotKeys.PageDown.modifiers" | `hotKeyConfig.hotKeys.PageDown.modifiers.${number}` | "hotKeyConfig.hotKeys.PageUp.event" | "hotKeyConfig.hotKeys.PageUp.modifiers" | `hotKeyConfig.hotKeys.PageUp.modifiers.${number}` | "hotKeyConfig.hotKeys.2.event" | "hotKeyConfig.hotKeys.2.modifiers" | `hotKeyConfig.hotKeys.2.modifiers.${number}` | "hotKeyConfig.hotKeys.3.event" | "hotKeyConfig.hotKeys.3.modifiers" | `hotKeyConfig.hotKeys.3.modifiers.${number}` | "hotKeyConfig.hotKeys.4.event" | "hotKeyConfig.hotKeys.4.modifiers" | `hotKeyConfig.hotKeys.4.modifiers.${number}` | "hotKeyConfig.hotKeys.5.event" | "hotKeyConfig.hotKeys.5.modifiers" | `hotKeyConfig.hotKeys.5.modifiers.${number}` | "hotKeyConfig.hotKeys.6.event" | "hotKeyConfig.hotKeys.6.modifiers" | `hotKeyConfig.hotKeys.6.modifiers.${number}` | "hotKeyConfig.hotKeys.7.event" | "hotKeyConfig.hotKeys.7.modifiers" | `hotKeyConfig.hotKeys.7.modifiers.${number}` | "hotKeyConfig.hotKeys.8.event" | "hotKeyConfig.hotKeys.8.modifiers" | `hotKeyConfig.hotKeys.8.modifiers.${number}` | "hotKeyConfig.hotKeys.9.event" | "hotKeyConfig.hotKeys.9.modifiers" | `hotKeyConfig.hotKeys.9.modifiers.${number}` | "hotKeyConfig.hotKeys.c.event" | "hotKeyConfig.hotKeys.c.modifiers" | `hotKeyConfig.hotKeys.c.modifiers.${number}` | "hotKeyConfig.hotKeys.d.event" | "hotKeyConfig.hotKeys.d.modifiers" | `hotKeyConfig.hotKeys.d.modifiers.${number}` | "hotKeyConfig.hotKeys.e.event" | "hotKeyConfig.hotKeys.e.modifiers" | `hotKeyConfig.hotKeys.e.modifiers.${number}` | "hotKeyConfig.hotKeys.f.event" | "hotKeyConfig.hotKeys.f.modifiers" | `hotKeyConfig.hotKeys.f.modifiers.${number}` | "hotKeyConfig.hotKeys.h.event" | "hotKeyConfig.hotKeys.h.modifiers" | `hotKeyConfig.hotKeys.h.modifiers.${number}` | "hotKeyConfig.hotKeys.j.event" | "hotKeyConfig.hotKeys.j.modifiers" | `hotKeyConfig.hotKeys.j.modifiers.${number}` | "hotKeyConfig.hotKeys.k.event" | "hotKeyConfig.hotKeys.k.modifiers" | `hotKeyConfig.hotKeys.k.modifiers.${number}` | "hotKeyConfig.hotKeys.l.event" | "hotKeyConfig.hotKeys.l.modifiers" | `hotKeyConfig.hotKeys.l.modifiers.${number}` | "hotKeyConfig.hotKeys.m.event" | "hotKeyConfig.hotKeys.m.modifiers" | `hotKeyConfig.hotKeys.m.modifiers.${number}` | "hotKeyConfig.hotKeys.o.event" | "hotKeyConfig.hotKeys.o.modifiers" | `hotKeyConfig.hotKeys.o.modifiers.${number}` | "hotKeyConfig.hotKeys.r.event" | "hotKeyConfig.hotKeys.r.modifiers" | `hotKeyConfig.hotKeys.r.modifiers.${number}` | "hotKeyConfig.hotKeys.t.event" | "hotKeyConfig.hotKeys.t.modifiers" | `hotKeyConfig.hotKeys.t.modifiers.${number}` | "hotKeyConfig.hotKeys.v.event" | "hotKeyConfig.hotKeys.v.modifiers" | `hotKeyConfig.hotKeys.v.modifiers.${number}` | "hotKeyConfig.hotKeys.w.event" | "hotKeyConfig.hotKeys.w.modifiers" | `hotKeyConfig.hotKeys.w.modifiers.${number}` | "hotKeyConfig.hotKeys.x.event" | "hotKeyConfig.hotKeys.x.modifiers" | `hotKeyConfig.hotKeys.x.modifiers.${number}` | "hotKeyConfig.hotKeys.y.event" | "hotKeyConfig.hotKeys.y.modifiers" | `hotKeyConfig.hotKeys.y.modifiers.${number}` | "hotKeyConfig.hotKeys.z.event" | "hotKeyConfig.hotKeys.z.modifiers" | `hotKeyConfig.hotKeys.z.modifiers.${number}` | "hotKeyConfig.hotKeys.*.event" | "hotKeyConfig.hotKeys.*.modifiers" | `hotKeyConfig.hotKeys.*.modifiers.${number}` | "hotKeyConfig.hotKeys.+.event" | "hotKeyConfig.hotKeys.+.modifiers" | `hotKeyConfig.hotKeys.+.modifiers.${number}` | "hotKeyConfig.hotKeys./.event" | "hotKeyConfig.hotKeys./.modifiers" | `hotKeyConfig.hotKeys./.modifiers.${number}` | "hotKeyConfig.hotKeys.;.event" | "hotKeyConfig.hotKeys.;.modifiers" | `hotKeyConfig.hotKeys.;.modifiers.${number}` | "hotKeyConfig.hotKeys.=.event" | "hotKeyConfig.hotKeys.=.modifiers" | `hotKeyConfig.hotKeys.=.modifiers.${number}` | "hotKeyConfig.hotKeys.,.event" | "hotKeyConfig.hotKeys.,.modifiers" | `hotKeyConfig.hotKeys.,.modifiers.${number}` | "hotKeyConfig.hotKeys.`.event" | "hotKeyConfig.hotKeys.`.modifiers" | `hotKeyConfig.hotKeys.\`.modifiers.${number}` | "hotKeyConfig.hotKeys.[.event" | "hotKeyConfig.hotKeys.[.modifiers" | `hotKeyConfig.hotKeys.[.modifiers.${number}` | "hotKeyConfig.hotKeys.\\.event" | "hotKeyConfig.hotKeys.\\.modifiers" | `hotKeyConfig.hotKeys.\\.modifiers.${number}` | "hotKeyConfig.hotKeys.].event" | "hotKeyConfig.hotKeys.].modifiers" | `hotKeyConfig.hotKeys.].modifiers.${number}`>(uid: string, path: P, value: P extends "cookies" | "name" | "collections" | "environments" | "description" | "uid" | "isReadOnly" | "activeEnvironmentId" | "themeId" | "hotKeyConfig" | "proxyUrl" ? {
3395
3407
  uid: string;
3396
3408
  name: string;
3397
3409
  description: string;
@@ -3409,7 +3421,7 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
3409
3421
  }>> | undefined;
3410
3422
  } | undefined;
3411
3423
  proxyUrl?: string | undefined;
3412
- }[P] : P extends `${infer K}.${infer R}` ? K extends "cookies" | "collections" | "environments" | "description" | "name" | "uid" | "isReadOnly" | "activeEnvironmentId" | "themeId" | "hotKeyConfig" | "proxyUrl" ? R extends import("@scalar/object-utils/nested").Path<{
3424
+ }[P] : P extends `${infer K}.${infer R}` ? K extends "cookies" | "name" | "collections" | "environments" | "description" | "uid" | "isReadOnly" | "activeEnvironmentId" | "themeId" | "hotKeyConfig" | "proxyUrl" ? R extends import("@scalar/object-utils/nested").Path<{
3413
3425
  uid: string;
3414
3426
  name: string;
3415
3427
  description: string;
@@ -1 +1 @@
1
- {"version":3,"file":"create-api-client-app.d.ts","sourceRoot":"","sources":["../../../src/layouts/App/create-api-client-app.ts"],"names":[],"mappings":"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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wBAAr22B,CAAC;;;;;;;;wBAAD,CAAC;;;;;;;;;wBAAD,CAAC;;;;;;;;wBAAD,CAAC;;;;;;;wBAAD,CAAC;;;;;;;wBAAD,CAAC;;;;;;;;wBAAD,CAAC;;;;;;;wBAAD,CAAC;;;;;;;wBAAD,CAAC;;;;;;;;;;;;;;;;;;+BAAoxM,CAAC;;;;;;;;;;;;;;+BAAD,CAAC;;;;;;;;;;;;;;;+BAAD,CAAC;;;;;;;;;;;;;;+BAAD,CAAC;;;;;;;;;;;;;+BAAD,CAAC;;;;;;;;;;;;;+BAAD,CAAC;;;;;;;;;;;;;;+BAAD,CAAC;;;;;;;;;;;;;+BAAD,CAAC;;;;;;;;;;;;;+BAAD,CAAC;;;;;;;;;;;;;;;;;;;2BAAxoC,CAAC;;iCAAq5B,CAAC;;;;;;;;;;;;;;;;;2BAAv5B,CAAC;;iCAAq5B,CAAC;;;;;;;;;;;;;;;;;;2BAAv5B,CAAC;;iCAAq5B,CAAC;;;;;;;;;;;;;;;;;2BAAv5B,CAAC;;iCAAq5B,CAAC;;;;;;;;;;;;;;;;2BAAv5B,CAAC;;iCAAq5B,CAAC;;;;;;;;;;;;;;;;2BAAv5B,CAAC;;iCAAq5B,CAAC;;;;;;;;;;;;;;;;;2BAAv5B,CAAC;;iCAAq5B,CAAC;;;;;;;;;;;;;;;;2BAAv5B,CAAC;;iCAAq5B,CAAC;;;;;;;;;;;;;;;;2BAAv5B,CAAC;;iCAAq5B,CAAC;;;;;;;;;EADziQ,CAAA"}
1
+ {"version":3,"file":"create-api-client-app.d.ts","sourceRoot":"","sources":["../../../src/layouts/App/create-api-client-app.ts"],"names":[],"mappings":"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"}