@lumeweb/pinner 0.1.5 → 0.1.7

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 (46) hide show
  1. package/dist/esm/api/generated/content/content.msw.d.ts +17 -3
  2. package/dist/esm/api/generated/content/content.msw.js +3 -3
  3. package/dist/esm/api/generated/dns/dns.msw.d.ts +39 -3
  4. package/dist/esm/api/generated/dns/dns.msw.js +3 -3
  5. package/dist/esm/api/generated/files/files.msw.d.ts +10 -3
  6. package/dist/esm/api/generated/files/files.msw.js +3 -3
  7. package/dist/esm/api/generated/gateway/gateway.msw.d.ts +9 -3
  8. package/dist/esm/api/generated/gateway/gateway.msw.js +3 -3
  9. package/dist/esm/api/generated/internal/internal.msw.d.ts +6 -3
  10. package/dist/esm/api/generated/internal/internal.msw.js +3 -3
  11. package/dist/esm/api/generated/ipns/ipns.msw.d.ts +23 -3
  12. package/dist/esm/api/generated/ipns/ipns.msw.js +3 -3
  13. package/dist/esm/api/generated/pinning/pinning.msw.d.ts +16 -3
  14. package/dist/esm/api/generated/pinning/pinning.msw.js +3 -3
  15. package/dist/esm/api/generated/schemas/blockMetaResponse.d.ts +46 -0
  16. package/dist/esm/api/generated/schemas/bulkDeleteResponse.d.ts +9 -0
  17. package/dist/esm/api/generated/schemas/bulkRecordsResponse.d.ts +9 -0
  18. package/dist/esm/api/generated/schemas/component.d.ts +42 -0
  19. package/dist/esm/api/generated/schemas/errorResponse.d.ts +42 -0
  20. package/dist/esm/api/generated/schemas/fileManagerItem.d.ts +51 -0
  21. package/dist/esm/api/generated/schemas/fileManagerItemResponse.d.ts +10 -0
  22. package/dist/esm/api/generated/schemas/gatewayWebsiteResponse.d.ts +45 -0
  23. package/dist/esm/api/generated/schemas/gatewayWebsiteStatusResponse.d.ts +45 -0
  24. package/dist/esm/api/generated/schemas/infoResponse.d.ts +44 -0
  25. package/dist/esm/api/generated/schemas/multiaddr.d.ts +7 -0
  26. package/dist/esm/api/generated/schemas/pinRequest.d.ts +12 -0
  27. package/dist/esm/api/generated/schemas/pinRequestMeta.d.ts +42 -0
  28. package/dist/esm/api/generated/schemas/pinResultsResponse.d.ts +10 -0
  29. package/dist/esm/api/generated/schemas/pinStatusResponse.d.ts +16 -0
  30. package/dist/esm/api/generated/schemas/pinStatusResponseInfo.d.ts +42 -0
  31. package/dist/esm/api/generated/schemas/recordResponse.d.ts +47 -0
  32. package/dist/esm/api/generated/schemas/recordResponseResponse.d.ts +10 -0
  33. package/dist/esm/api/generated/schemas/recordResult.d.ts +45 -0
  34. package/dist/esm/api/generated/schemas/validationResponse.d.ts +45 -0
  35. package/dist/esm/api/generated/schemas/zoneListResponse.d.ts +48 -0
  36. package/dist/esm/api/generated/schemas/zoneListResponseResponse.d.ts +10 -0
  37. package/dist/esm/api/generated/schemas/zoneResponse.d.ts +48 -0
  38. package/dist/esm/api/generated/tus/tus.msw.d.ts +11 -3
  39. package/dist/esm/api/generated/tus/tus.msw.js +3 -3
  40. package/dist/esm/api/generated/websites/websites.msw.d.ts +24 -3
  41. package/dist/esm/api/generated/websites/websites.msw.js +3 -3
  42. package/dist/esm/api/mocks.d.ts +10 -0
  43. package/dist/esm/api/mocks.js +11 -0
  44. package/package.json +5 -5
  45. package/dist/esm/api/generated/index.msw.d.ts +0 -10
  46. package/dist/esm/api/generated/index.msw.js +0 -11
@@ -0,0 +1,45 @@
1
+ //#region src/api/generated/schemas/gatewayWebsiteStatusResponse.d.ts
2
+ /**
3
+ * Generated by orval v8.10.0 🍺
4
+ * Do not edit manually.
5
+ * Portal IPFS Plugin API
6
+ *
7
+ ## Portal IPFS Plugin API
8
+
9
+ A comprehensive API for IPFS content management, including pinning services, file operations, IPNS key management, and website hosting.
10
+
11
+ ### IPFS Pinning Service API Compatibility
12
+
13
+ This API is fully compatible with the [IPFS Pinning Service API specification](https://github.com/ipfs/pinning-services-api-spec), an implementation-agnostic API standard for pinning service providers. This ensures interoperability with existing IPFS pinning clients and tools.
14
+
15
+ ### Features
16
+
17
+ - **Pinning**: Add, list, update, and remove pinned content
18
+ - **Content**: Upload files, retrieve IPFS content, and manage metadata
19
+ - **IPNS**: Manage IPNS keys and publish content
20
+ - **Files**: Browse and manage pinned files with directory navigation
21
+ - **Websites**: Create and manage website hosting with DNS and SSL automation
22
+
23
+ ### Authentication
24
+
25
+ All API endpoints require authentication using JWT tokens obtained from the Portal authentication service.
26
+
27
+ ### Rate Limiting
28
+
29
+ API requests are rate-limited based on user account tier. See Portal documentation for current limits.
30
+
31
+ ### Documentation
32
+
33
+ For detailed API usage examples and integration guides, visit the Portal documentation website.
34
+
35
+ * OpenAPI spec version: 1.0.0
36
+ */
37
+ interface GatewayWebsiteStatusResponse {
38
+ domain: string;
39
+ is_broken: boolean;
40
+ last_checked?: string;
41
+ status: string;
42
+ }
43
+ //#endregion
44
+ export { GatewayWebsiteStatusResponse };
45
+ //# sourceMappingURL=gatewayWebsiteStatusResponse.d.ts.map
@@ -0,0 +1,44 @@
1
+ //#region src/api/generated/schemas/infoResponse.d.ts
2
+ /**
3
+ * Generated by orval v8.10.0 🍺
4
+ * Do not edit manually.
5
+ * Portal IPFS Plugin API
6
+ *
7
+ ## Portal IPFS Plugin API
8
+
9
+ A comprehensive API for IPFS content management, including pinning services, file operations, IPNS key management, and website hosting.
10
+
11
+ ### IPFS Pinning Service API Compatibility
12
+
13
+ This API is fully compatible with the [IPFS Pinning Service API specification](https://github.com/ipfs/pinning-services-api-spec), an implementation-agnostic API standard for pinning service providers. This ensures interoperability with existing IPFS pinning clients and tools.
14
+
15
+ ### Features
16
+
17
+ - **Pinning**: Add, list, update, and remove pinned content
18
+ - **Content**: Upload files, retrieve IPFS content, and manage metadata
19
+ - **IPNS**: Manage IPNS keys and publish content
20
+ - **Files**: Browse and manage pinned files with directory navigation
21
+ - **Websites**: Create and manage website hosting with DNS and SSL automation
22
+
23
+ ### Authentication
24
+
25
+ All API endpoints require authentication using JWT tokens obtained from the Portal authentication service.
26
+
27
+ ### Rate Limiting
28
+
29
+ API requests are rate-limited based on user account tier. See Portal documentation for current limits.
30
+
31
+ ### Documentation
32
+
33
+ For detailed API usage examples and integration guides, visit the Portal documentation website.
34
+
35
+ * OpenAPI spec version: 1.0.0
36
+ */
37
+ interface InfoResponse {
38
+ announcement_addresses: string[];
39
+ connection_addresses: string[];
40
+ peer_id: string;
41
+ }
42
+ //#endregion
43
+ export { InfoResponse };
44
+ //# sourceMappingURL=infoResponse.d.ts.map
@@ -0,0 +1,7 @@
1
+ import { Component } from "./component.js";
2
+
3
+ //#region src/api/generated/schemas/multiaddr.d.ts
4
+ type Multiaddr = Component[];
5
+ //#endregion
6
+ export { Multiaddr };
7
+ //# sourceMappingURL=multiaddr.d.ts.map
@@ -0,0 +1,12 @@
1
+ import { PinRequestMeta } from "./pinRequestMeta.js";
2
+
3
+ //#region src/api/generated/schemas/pinRequest.d.ts
4
+ interface PinRequest {
5
+ cid: string;
6
+ meta?: PinRequestMeta;
7
+ name?: string;
8
+ origins?: string[];
9
+ }
10
+ //#endregion
11
+ export { PinRequest };
12
+ //# sourceMappingURL=pinRequest.d.ts.map
@@ -0,0 +1,42 @@
1
+ //#region src/api/generated/schemas/pinRequestMeta.d.ts
2
+ /**
3
+ * Generated by orval v8.10.0 🍺
4
+ * Do not edit manually.
5
+ * Portal IPFS Plugin API
6
+ *
7
+ ## Portal IPFS Plugin API
8
+
9
+ A comprehensive API for IPFS content management, including pinning services, file operations, IPNS key management, and website hosting.
10
+
11
+ ### IPFS Pinning Service API Compatibility
12
+
13
+ This API is fully compatible with the [IPFS Pinning Service API specification](https://github.com/ipfs/pinning-services-api-spec), an implementation-agnostic API standard for pinning service providers. This ensures interoperability with existing IPFS pinning clients and tools.
14
+
15
+ ### Features
16
+
17
+ - **Pinning**: Add, list, update, and remove pinned content
18
+ - **Content**: Upload files, retrieve IPFS content, and manage metadata
19
+ - **IPNS**: Manage IPNS keys and publish content
20
+ - **Files**: Browse and manage pinned files with directory navigation
21
+ - **Websites**: Create and manage website hosting with DNS and SSL automation
22
+
23
+ ### Authentication
24
+
25
+ All API endpoints require authentication using JWT tokens obtained from the Portal authentication service.
26
+
27
+ ### Rate Limiting
28
+
29
+ API requests are rate-limited based on user account tier. See Portal documentation for current limits.
30
+
31
+ ### Documentation
32
+
33
+ For detailed API usage examples and integration guides, visit the Portal documentation website.
34
+
35
+ * OpenAPI spec version: 1.0.0
36
+ */
37
+ type PinRequestMeta = {
38
+ [key: string]: string;
39
+ };
40
+ //#endregion
41
+ export { PinRequestMeta };
42
+ //# sourceMappingURL=pinRequestMeta.d.ts.map
@@ -0,0 +1,10 @@
1
+ import { PinStatusResponse } from "./pinStatusResponse.js";
2
+
3
+ //#region src/api/generated/schemas/pinResultsResponse.d.ts
4
+ interface PinResultsResponse {
5
+ count: number;
6
+ results: PinStatusResponse[];
7
+ }
8
+ //#endregion
9
+ export { PinResultsResponse };
10
+ //# sourceMappingURL=pinResultsResponse.d.ts.map
@@ -0,0 +1,16 @@
1
+ import { Multiaddr } from "./multiaddr.js";
2
+ import { PinRequest } from "./pinRequest.js";
3
+ import { PinStatusResponseInfo } from "./pinStatusResponseInfo.js";
4
+
5
+ //#region src/api/generated/schemas/pinStatusResponse.d.ts
6
+ interface PinStatusResponse {
7
+ created: string;
8
+ delegates: Multiaddr[];
9
+ info?: PinStatusResponseInfo;
10
+ pin: PinRequest;
11
+ requestid: string;
12
+ status: string;
13
+ }
14
+ //#endregion
15
+ export { PinStatusResponse };
16
+ //# sourceMappingURL=pinStatusResponse.d.ts.map
@@ -0,0 +1,42 @@
1
+ //#region src/api/generated/schemas/pinStatusResponseInfo.d.ts
2
+ /**
3
+ * Generated by orval v8.10.0 🍺
4
+ * Do not edit manually.
5
+ * Portal IPFS Plugin API
6
+ *
7
+ ## Portal IPFS Plugin API
8
+
9
+ A comprehensive API for IPFS content management, including pinning services, file operations, IPNS key management, and website hosting.
10
+
11
+ ### IPFS Pinning Service API Compatibility
12
+
13
+ This API is fully compatible with the [IPFS Pinning Service API specification](https://github.com/ipfs/pinning-services-api-spec), an implementation-agnostic API standard for pinning service providers. This ensures interoperability with existing IPFS pinning clients and tools.
14
+
15
+ ### Features
16
+
17
+ - **Pinning**: Add, list, update, and remove pinned content
18
+ - **Content**: Upload files, retrieve IPFS content, and manage metadata
19
+ - **IPNS**: Manage IPNS keys and publish content
20
+ - **Files**: Browse and manage pinned files with directory navigation
21
+ - **Websites**: Create and manage website hosting with DNS and SSL automation
22
+
23
+ ### Authentication
24
+
25
+ All API endpoints require authentication using JWT tokens obtained from the Portal authentication service.
26
+
27
+ ### Rate Limiting
28
+
29
+ API requests are rate-limited based on user account tier. See Portal documentation for current limits.
30
+
31
+ ### Documentation
32
+
33
+ For detailed API usage examples and integration guides, visit the Portal documentation website.
34
+
35
+ * OpenAPI spec version: 1.0.0
36
+ */
37
+ type PinStatusResponseInfo = {
38
+ [key: string]: string;
39
+ };
40
+ //#endregion
41
+ export { PinStatusResponseInfo };
42
+ //# sourceMappingURL=pinStatusResponseInfo.d.ts.map
@@ -0,0 +1,47 @@
1
+ //#region src/api/generated/schemas/recordResponse.d.ts
2
+ /**
3
+ * Generated by orval v8.10.0 🍺
4
+ * Do not edit manually.
5
+ * Portal IPFS Plugin API
6
+ *
7
+ ## Portal IPFS Plugin API
8
+
9
+ A comprehensive API for IPFS content management, including pinning services, file operations, IPNS key management, and website hosting.
10
+
11
+ ### IPFS Pinning Service API Compatibility
12
+
13
+ This API is fully compatible with the [IPFS Pinning Service API specification](https://github.com/ipfs/pinning-services-api-spec), an implementation-agnostic API standard for pinning service providers. This ensures interoperability with existing IPFS pinning clients and tools.
14
+
15
+ ### Features
16
+
17
+ - **Pinning**: Add, list, update, and remove pinned content
18
+ - **Content**: Upload files, retrieve IPFS content, and manage metadata
19
+ - **IPNS**: Manage IPNS keys and publish content
20
+ - **Files**: Browse and manage pinned files with directory navigation
21
+ - **Websites**: Create and manage website hosting with DNS and SSL automation
22
+
23
+ ### Authentication
24
+
25
+ All API endpoints require authentication using JWT tokens obtained from the Portal authentication service.
26
+
27
+ ### Rate Limiting
28
+
29
+ API requests are rate-limited based on user account tier. See Portal documentation for current limits.
30
+
31
+ ### Documentation
32
+
33
+ For detailed API usage examples and integration guides, visit the Portal documentation website.
34
+
35
+ * OpenAPI spec version: 1.0.0
36
+ */
37
+ interface RecordResponse {
38
+ content: string;
39
+ disabled: boolean;
40
+ name: string;
41
+ ttl: number;
42
+ type: string;
43
+ zone_id: number;
44
+ }
45
+ //#endregion
46
+ export { RecordResponse };
47
+ //# sourceMappingURL=recordResponse.d.ts.map
@@ -0,0 +1,10 @@
1
+ import { RecordResponse } from "./recordResponse.js";
2
+
3
+ //#region src/api/generated/schemas/recordResponseResponse.d.ts
4
+ interface RecordResponseResponse {
5
+ data: RecordResponse[];
6
+ total: number;
7
+ }
8
+ //#endregion
9
+ export { RecordResponseResponse };
10
+ //# sourceMappingURL=recordResponseResponse.d.ts.map
@@ -0,0 +1,45 @@
1
+ //#region src/api/generated/schemas/recordResult.d.ts
2
+ /**
3
+ * Generated by orval v8.10.0 🍺
4
+ * Do not edit manually.
5
+ * Portal IPFS Plugin API
6
+ *
7
+ ## Portal IPFS Plugin API
8
+
9
+ A comprehensive API for IPFS content management, including pinning services, file operations, IPNS key management, and website hosting.
10
+
11
+ ### IPFS Pinning Service API Compatibility
12
+
13
+ This API is fully compatible with the [IPFS Pinning Service API specification](https://github.com/ipfs/pinning-services-api-spec), an implementation-agnostic API standard for pinning service providers. This ensures interoperability with existing IPFS pinning clients and tools.
14
+
15
+ ### Features
16
+
17
+ - **Pinning**: Add, list, update, and remove pinned content
18
+ - **Content**: Upload files, retrieve IPFS content, and manage metadata
19
+ - **IPNS**: Manage IPNS keys and publish content
20
+ - **Files**: Browse and manage pinned files with directory navigation
21
+ - **Websites**: Create and manage website hosting with DNS and SSL automation
22
+
23
+ ### Authentication
24
+
25
+ All API endpoints require authentication using JWT tokens obtained from the Portal authentication service.
26
+
27
+ ### Rate Limiting
28
+
29
+ API requests are rate-limited based on user account tier. See Portal documentation for current limits.
30
+
31
+ ### Documentation
32
+
33
+ For detailed API usage examples and integration guides, visit the Portal documentation website.
34
+
35
+ * OpenAPI spec version: 1.0.0
36
+ */
37
+ interface RecordResult {
38
+ error?: string;
39
+ name: string;
40
+ status: string;
41
+ type: string;
42
+ }
43
+ //#endregion
44
+ export { RecordResult };
45
+ //# sourceMappingURL=recordResult.d.ts.map
@@ -0,0 +1,45 @@
1
+ //#region src/api/generated/schemas/validationResponse.d.ts
2
+ /**
3
+ * Generated by orval v8.10.0 🍺
4
+ * Do not edit manually.
5
+ * Portal IPFS Plugin API
6
+ *
7
+ ## Portal IPFS Plugin API
8
+
9
+ A comprehensive API for IPFS content management, including pinning services, file operations, IPNS key management, and website hosting.
10
+
11
+ ### IPFS Pinning Service API Compatibility
12
+
13
+ This API is fully compatible with the [IPFS Pinning Service API specification](https://github.com/ipfs/pinning-services-api-spec), an implementation-agnostic API standard for pinning service providers. This ensures interoperability with existing IPFS pinning clients and tools.
14
+
15
+ ### Features
16
+
17
+ - **Pinning**: Add, list, update, and remove pinned content
18
+ - **Content**: Upload files, retrieve IPFS content, and manage metadata
19
+ - **IPNS**: Manage IPNS keys and publish content
20
+ - **Files**: Browse and manage pinned files with directory navigation
21
+ - **Websites**: Create and manage website hosting with DNS and SSL automation
22
+
23
+ ### Authentication
24
+
25
+ All API endpoints require authentication using JWT tokens obtained from the Portal authentication service.
26
+
27
+ ### Rate Limiting
28
+
29
+ API requests are rate-limited based on user account tier. See Portal documentation for current limits.
30
+
31
+ ### Documentation
32
+
33
+ For detailed API usage examples and integration guides, visit the Portal documentation website.
34
+
35
+ * OpenAPI spec version: 1.0.0
36
+ */
37
+ interface ValidationResponse {
38
+ checked_at: string;
39
+ message: string;
40
+ nameservers?: string[];
41
+ valid: boolean;
42
+ }
43
+ //#endregion
44
+ export { ValidationResponse };
45
+ //# sourceMappingURL=validationResponse.d.ts.map
@@ -0,0 +1,48 @@
1
+ //#region src/api/generated/schemas/zoneListResponse.d.ts
2
+ /**
3
+ * Generated by orval v8.10.0 🍺
4
+ * Do not edit manually.
5
+ * Portal IPFS Plugin API
6
+ *
7
+ ## Portal IPFS Plugin API
8
+
9
+ A comprehensive API for IPFS content management, including pinning services, file operations, IPNS key management, and website hosting.
10
+
11
+ ### IPFS Pinning Service API Compatibility
12
+
13
+ This API is fully compatible with the [IPFS Pinning Service API specification](https://github.com/ipfs/pinning-services-api-spec), an implementation-agnostic API standard for pinning service providers. This ensures interoperability with existing IPFS pinning clients and tools.
14
+
15
+ ### Features
16
+
17
+ - **Pinning**: Add, list, update, and remove pinned content
18
+ - **Content**: Upload files, retrieve IPFS content, and manage metadata
19
+ - **IPNS**: Manage IPNS keys and publish content
20
+ - **Files**: Browse and manage pinned files with directory navigation
21
+ - **Websites**: Create and manage website hosting with DNS and SSL automation
22
+
23
+ ### Authentication
24
+
25
+ All API endpoints require authentication using JWT tokens obtained from the Portal authentication service.
26
+
27
+ ### Rate Limiting
28
+
29
+ API requests are rate-limited based on user account tier. See Portal documentation for current limits.
30
+
31
+ ### Documentation
32
+
33
+ For detailed API usage examples and integration guides, visit the Portal documentation website.
34
+
35
+ * OpenAPI spec version: 1.0.0
36
+ */
37
+ interface ZoneListResponse {
38
+ created_at: string;
39
+ domain: string;
40
+ id: number;
41
+ powerdns_zone_id?: string;
42
+ status: string;
43
+ updated_at: string;
44
+ user_id: number;
45
+ }
46
+ //#endregion
47
+ export { ZoneListResponse };
48
+ //# sourceMappingURL=zoneListResponse.d.ts.map
@@ -0,0 +1,10 @@
1
+ import { ZoneListResponse } from "./zoneListResponse.js";
2
+
3
+ //#region src/api/generated/schemas/zoneListResponseResponse.d.ts
4
+ interface ZoneListResponseResponse {
5
+ data: ZoneListResponse[];
6
+ total: number;
7
+ }
8
+ //#endregion
9
+ export { ZoneListResponseResponse };
10
+ //# sourceMappingURL=zoneListResponseResponse.d.ts.map
@@ -0,0 +1,48 @@
1
+ //#region src/api/generated/schemas/zoneResponse.d.ts
2
+ /**
3
+ * Generated by orval v8.10.0 🍺
4
+ * Do not edit manually.
5
+ * Portal IPFS Plugin API
6
+ *
7
+ ## Portal IPFS Plugin API
8
+
9
+ A comprehensive API for IPFS content management, including pinning services, file operations, IPNS key management, and website hosting.
10
+
11
+ ### IPFS Pinning Service API Compatibility
12
+
13
+ This API is fully compatible with the [IPFS Pinning Service API specification](https://github.com/ipfs/pinning-services-api-spec), an implementation-agnostic API standard for pinning service providers. This ensures interoperability with existing IPFS pinning clients and tools.
14
+
15
+ ### Features
16
+
17
+ - **Pinning**: Add, list, update, and remove pinned content
18
+ - **Content**: Upload files, retrieve IPFS content, and manage metadata
19
+ - **IPNS**: Manage IPNS keys and publish content
20
+ - **Files**: Browse and manage pinned files with directory navigation
21
+ - **Websites**: Create and manage website hosting with DNS and SSL automation
22
+
23
+ ### Authentication
24
+
25
+ All API endpoints require authentication using JWT tokens obtained from the Portal authentication service.
26
+
27
+ ### Rate Limiting
28
+
29
+ API requests are rate-limited based on user account tier. See Portal documentation for current limits.
30
+
31
+ ### Documentation
32
+
33
+ For detailed API usage examples and integration guides, visit the Portal documentation website.
34
+
35
+ * OpenAPI spec version: 1.0.0
36
+ */
37
+ interface ZoneResponse {
38
+ created_at: string;
39
+ domain: string;
40
+ id: number;
41
+ powerdns_zone_id?: string;
42
+ status: string;
43
+ updated_at: string;
44
+ user_id: number;
45
+ }
46
+ //#endregion
47
+ export { ZoneResponse };
48
+ //# sourceMappingURL=zoneResponse.d.ts.map
@@ -1,8 +1,16 @@
1
- import * as _$msw from "/home/runner/work/web/web/node_modules/.pnpm/msw@2.14.6_@types+node@25.9.1_typescript@6.0.3/node_modules/msw/lib/core/index.mjs";
2
- import { http } from "/home/runner/work/web/web/node_modules/.pnpm/msw@2.14.6_@types+node@25.9.1_typescript@6.0.3/node_modules/msw/lib/core/index.mjs";
1
+ import { ErrorResponse } from "../schemas/errorResponse.js";
2
+ import * as _$msw from "msw";
3
+ import { RequestHandlerOptions, http } from "msw";
3
4
 
4
5
  //#region src/api/generated/tus/tus.msw.d.ts
6
+ declare const getPostApiUploadTusResponseMock: (overrideResponse?: Partial<Extract<ErrorResponse, object>>) => ErrorResponse;
7
+ declare const getDeleteApiUploadTusIdResponseMock: (overrideResponse?: Partial<Extract<ErrorResponse, object>>) => ErrorResponse;
8
+ declare const getPatchApiUploadTusIdResponseMock: (overrideResponse?: Partial<Extract<ErrorResponse, object>>) => ErrorResponse;
9
+ declare const getPostApiUploadTusMockHandler: (overrideResponse?: void | ErrorResponse | ((info: Parameters<Parameters<typeof http.post>[1]>[0]) => Promise<ErrorResponse | void> | ErrorResponse | void) | undefined, options?: RequestHandlerOptions) => _$msw.HttpHandler;
10
+ declare const getDeleteApiUploadTusIdMockHandler: (overrideResponse?: void | ErrorResponse | ((info: Parameters<Parameters<typeof http.delete>[1]>[0]) => Promise<ErrorResponse | void> | ErrorResponse | void) | undefined, options?: RequestHandlerOptions) => _$msw.HttpHandler;
11
+ declare const getHeadApiUploadTusIdMockHandler: (overrideResponse?: void | ((info: Parameters<Parameters<typeof http.head>[1]>[0]) => Promise<void> | void) | undefined, options?: RequestHandlerOptions) => _$msw.HttpHandler;
12
+ declare const getPatchApiUploadTusIdMockHandler: (overrideResponse?: void | ErrorResponse | ((info: Parameters<Parameters<typeof http.patch>[1]>[0]) => Promise<ErrorResponse | void> | ErrorResponse | void) | undefined, options?: RequestHandlerOptions) => _$msw.HttpHandler;
5
13
  declare const getTusMock: () => _$msw.HttpHandler[];
6
14
  //#endregion
7
- export { getTusMock };
15
+ export { getDeleteApiUploadTusIdMockHandler, getDeleteApiUploadTusIdResponseMock, getHeadApiUploadTusIdMockHandler, getPatchApiUploadTusIdMockHandler, getPatchApiUploadTusIdResponseMock, getPostApiUploadTusMockHandler, getPostApiUploadTusResponseMock, getTusMock };
8
16
  //# sourceMappingURL=tus.msw.d.ts.map
@@ -1,5 +1,5 @@
1
- import { faker } from "/home/runner/work/web/web/node_modules/.pnpm/@faker-js+faker@10.4.0/node_modules/@faker-js/faker/dist/index.js";
2
- import { HttpResponse, delay, http } from "/home/runner/work/web/web/node_modules/.pnpm/msw@2.14.6_@types+node@25.9.1_typescript@6.0.3/node_modules/msw/lib/core/index.mjs";
1
+ import { faker } from "@faker-js/faker";
2
+ import { HttpResponse, delay, http } from "msw";
3
3
 
4
4
  //#region src/api/generated/tus/tus.msw.ts
5
5
  /**
@@ -94,5 +94,5 @@ const getTusMock = () => [
94
94
  ];
95
95
 
96
96
  //#endregion
97
- export { getTusMock };
97
+ export { getDeleteApiUploadTusIdMockHandler, getDeleteApiUploadTusIdResponseMock, getHeadApiUploadTusIdMockHandler, getPatchApiUploadTusIdMockHandler, getPatchApiUploadTusIdResponseMock, getPostApiUploadTusMockHandler, getPostApiUploadTusResponseMock, getTusMock };
98
98
  //# sourceMappingURL=tus.msw.js.map
@@ -1,8 +1,29 @@
1
- import * as _$msw from "/home/runner/work/web/web/node_modules/.pnpm/msw@2.14.6_@types+node@25.9.1_typescript@6.0.3/node_modules/msw/lib/core/index.mjs";
2
- import { http } from "/home/runner/work/web/web/node_modules/.pnpm/msw@2.14.6_@types+node@25.9.1_typescript@6.0.3/node_modules/msw/lib/core/index.mjs";
1
+ import { ErrorResponse } from "../schemas/errorResponse.js";
2
+ import { WebsiteConfigResponse } from "../schemas/websiteConfigResponse.js";
3
+ import { WebsiteItemResponse } from "../schemas/websiteItemResponse.js";
4
+ import { WebsiteResponse } from "../schemas/websiteResponse.js";
5
+ import { WebsiteValidateResponse } from "../schemas/websiteValidateResponse.js";
6
+ import * as _$msw from "msw";
7
+ import { RequestHandlerOptions, http } from "msw";
3
8
 
4
9
  //#region src/api/generated/websites/websites.msw.d.ts
10
+ declare const getGetApiWebsitesResponseMock: (overrideResponse?: Partial<Extract<WebsiteItemResponse, object>>) => WebsiteItemResponse;
11
+ declare const getPostApiWebsitesResponseMock: (overrideResponse?: Partial<Extract<ErrorResponse | WebsiteResponse, object>>) => ErrorResponse | WebsiteResponse;
12
+ declare const getGetApiWebsitesDomainSslStatusResponseMock: (overrideResponse?: Partial<Extract<WebsiteResponse, object>>) => WebsiteResponse;
13
+ declare const getDeleteApiWebsitesIdResponseMock: (overrideResponse?: Partial<Extract<ErrorResponse, object>>) => ErrorResponse;
14
+ declare const getGetApiWebsitesIdResponseMock: (overrideResponse?: Partial<Extract<WebsiteResponse, object>>) => WebsiteResponse;
15
+ declare const getPutApiWebsitesIdResponseMock: (overrideResponse?: Partial<Extract<WebsiteResponse, object>>) => WebsiteResponse;
16
+ declare const getPostApiWebsitesIdValidateResponseMock: (overrideResponse?: Partial<Extract<WebsiteValidateResponse, object>>) => WebsiteValidateResponse;
17
+ declare const getGetApiWebsitesConfigResponseMock: (overrideResponse?: Partial<Extract<WebsiteConfigResponse, object>>) => WebsiteConfigResponse;
18
+ declare const getGetApiWebsitesMockHandler: (overrideResponse?: WebsiteItemResponse | ((info: Parameters<Parameters<typeof http.get>[1]>[0]) => Promise<WebsiteItemResponse> | WebsiteItemResponse), options?: RequestHandlerOptions) => _$msw.HttpHandler;
19
+ declare const getPostApiWebsitesMockHandler: (overrideResponse?: ErrorResponse | WebsiteResponse | ((info: Parameters<Parameters<typeof http.post>[1]>[0]) => Promise<ErrorResponse | WebsiteResponse> | ErrorResponse | WebsiteResponse), options?: RequestHandlerOptions) => _$msw.HttpHandler;
20
+ declare const getGetApiWebsitesDomainSslStatusMockHandler: (overrideResponse?: WebsiteResponse | ((info: Parameters<Parameters<typeof http.get>[1]>[0]) => Promise<WebsiteResponse> | WebsiteResponse), options?: RequestHandlerOptions) => _$msw.HttpHandler;
21
+ declare const getDeleteApiWebsitesIdMockHandler: (overrideResponse?: void | ErrorResponse | ((info: Parameters<Parameters<typeof http.delete>[1]>[0]) => Promise<ErrorResponse | void> | ErrorResponse | void) | undefined, options?: RequestHandlerOptions) => _$msw.HttpHandler;
22
+ declare const getGetApiWebsitesIdMockHandler: (overrideResponse?: WebsiteResponse | ((info: Parameters<Parameters<typeof http.get>[1]>[0]) => Promise<WebsiteResponse> | WebsiteResponse), options?: RequestHandlerOptions) => _$msw.HttpHandler;
23
+ declare const getPutApiWebsitesIdMockHandler: (overrideResponse?: WebsiteResponse | ((info: Parameters<Parameters<typeof http.put>[1]>[0]) => Promise<WebsiteResponse> | WebsiteResponse), options?: RequestHandlerOptions) => _$msw.HttpHandler;
24
+ declare const getPostApiWebsitesIdValidateMockHandler: (overrideResponse?: WebsiteValidateResponse | ((info: Parameters<Parameters<typeof http.post>[1]>[0]) => Promise<WebsiteValidateResponse> | WebsiteValidateResponse), options?: RequestHandlerOptions) => _$msw.HttpHandler;
25
+ declare const getGetApiWebsitesConfigMockHandler: (overrideResponse?: WebsiteConfigResponse | ((info: Parameters<Parameters<typeof http.get>[1]>[0]) => Promise<WebsiteConfigResponse> | WebsiteConfigResponse), options?: RequestHandlerOptions) => _$msw.HttpHandler;
5
26
  declare const getWebsitesMock: () => _$msw.HttpHandler[];
6
27
  //#endregion
7
- export { getWebsitesMock };
28
+ export { getDeleteApiWebsitesIdMockHandler, getDeleteApiWebsitesIdResponseMock, getGetApiWebsitesConfigMockHandler, getGetApiWebsitesConfigResponseMock, getGetApiWebsitesDomainSslStatusMockHandler, getGetApiWebsitesDomainSslStatusResponseMock, getGetApiWebsitesIdMockHandler, getGetApiWebsitesIdResponseMock, getGetApiWebsitesMockHandler, getGetApiWebsitesResponseMock, getPostApiWebsitesIdValidateMockHandler, getPostApiWebsitesIdValidateResponseMock, getPostApiWebsitesMockHandler, getPostApiWebsitesResponseMock, getPutApiWebsitesIdMockHandler, getPutApiWebsitesIdResponseMock, getWebsitesMock };
8
29
  //# sourceMappingURL=websites.msw.d.ts.map
@@ -1,5 +1,5 @@
1
- import { faker } from "/home/runner/work/web/web/node_modules/.pnpm/@faker-js+faker@10.4.0/node_modules/@faker-js/faker/dist/index.js";
2
- import { HttpResponse, delay, http } from "/home/runner/work/web/web/node_modules/.pnpm/msw@2.14.6_@types+node@25.9.1_typescript@6.0.3/node_modules/msw/lib/core/index.mjs";
1
+ import { faker } from "@faker-js/faker";
2
+ import { HttpResponse, delay, http } from "msw";
3
3
 
4
4
  //#region src/api/generated/websites/websites.msw.ts
5
5
  /**
@@ -413,5 +413,5 @@ const getWebsitesMock = () => [
413
413
  ];
414
414
 
415
415
  //#endregion
416
- export { getWebsitesMock };
416
+ export { getDeleteApiWebsitesIdMockHandler, getDeleteApiWebsitesIdResponseMock, getGetApiWebsitesConfigMockHandler, getGetApiWebsitesConfigResponseMock, getGetApiWebsitesDomainSslStatusMockHandler, getGetApiWebsitesDomainSslStatusResponseMock, getGetApiWebsitesIdMockHandler, getGetApiWebsitesIdResponseMock, getGetApiWebsitesMockHandler, getGetApiWebsitesResponseMock, getPostApiWebsitesIdValidateMockHandler, getPostApiWebsitesIdValidateResponseMock, getPostApiWebsitesMockHandler, getPostApiWebsitesResponseMock, getPutApiWebsitesIdMockHandler, getPutApiWebsitesIdResponseMock, getWebsitesMock };
417
417
  //# sourceMappingURL=websites.msw.js.map
@@ -0,0 +1,10 @@
1
+ import { getContentMock, getGetApiBlockMetaCidMockHandler, getGetApiBlockMetaCidResponseMock, getGetApiInfoMockHandler, getGetApiInfoResponseMock, getGetIpfsCidMockHandler, getGetIpfsCidResponseMock, getHeadIpfsCidMockHandler, getHeadIpfsCidResponseMock, getPostApiBlockMetaBatchMockHandler, getPostApiBlockMetaBatchResponseMock, getPostApiUploadMockHandler } from "./generated/content/content.msw.js";
2
+ import { getDeleteApiDnsZonesIdMockHandler, getDeleteApiDnsZonesIdRecordsNameTypeMockHandler, getDeleteApiDnsZonesIdRecordsNameTypeResponseMock, getDeleteApiDnsZonesIdResponseMock, getDnsMock, getGetApiDnsZonesIdMockHandler, getGetApiDnsZonesIdRecordsMockHandler, getGetApiDnsZonesIdRecordsNameTypeMockHandler, getGetApiDnsZonesIdRecordsNameTypeResponseMock, getGetApiDnsZonesIdRecordsResponseMock, getGetApiDnsZonesIdResponseMock, getGetApiDnsZonesIdStatusMockHandler, getGetApiDnsZonesIdStatusResponseMock, getGetApiDnsZonesMockHandler, getGetApiDnsZonesResponseMock, getPostApiDnsZonesIdRecordsBulkDeleteMockHandler, getPostApiDnsZonesIdRecordsBulkDeleteResponseMock, getPostApiDnsZonesIdRecordsBulkMockHandler, getPostApiDnsZonesIdRecordsBulkResponseMock, getPostApiDnsZonesIdRecordsMockHandler, getPostApiDnsZonesIdRecordsResponseMock, getPostApiDnsZonesIdValidateMockHandler, getPostApiDnsZonesIdValidateResponseMock, getPostApiDnsZonesMockHandler, getPostApiDnsZonesResponseMock, getPutApiDnsZonesIdMockHandler, getPutApiDnsZonesIdRecordsNameTypeMockHandler, getPutApiDnsZonesIdRecordsNameTypeResponseMock, getPutApiDnsZonesIdResponseMock } from "./generated/dns/dns.msw.js";
3
+ import { getFilesMock, getGetApiFilesBreadcrumbsMockHandler, getGetApiFilesBreadcrumbsResponseMock, getGetApiFilesDirectoryMockHandler, getGetApiFilesDirectoryResponseMock, getGetApiFilesMockHandler, getGetApiFilesResponseMock } from "./generated/files/files.msw.js";
4
+ import { getGatewayMock, getGetInternalWebsitesDomainMockHandler, getGetInternalWebsitesDomainResponseMock, getGetInternalWebsitesDomainStatusMockHandler, getGetInternalWebsitesDomainStatusResponseMock } from "./generated/gateway/gateway.msw.js";
5
+ import { getInternalMock, getPostInternalWebsitesDomainSslStatusMockHandler, getPostInternalWebsitesDomainSslStatusResponseMock } from "./generated/internal/internal.msw.js";
6
+ import { getDeleteApiIpnsKeysIdMockHandler, getDeleteApiIpnsKeysIdResponseMock, getGetApiIpnsKeysIdMockHandler, getGetApiIpnsKeysIdResponseMock, getGetApiIpnsKeysMockHandler, getGetApiIpnsKeysResponseMock, getGetApiIpnsResolveNameMockHandler, getGetApiIpnsResolveNameResponseMock, getIpnsMock, getPostApiIpnsKeysIdRepublishMockHandler, getPostApiIpnsKeysIdRepublishResponseMock, getPostApiIpnsKeysMockHandler, getPostApiIpnsKeysResponseMock, getPostApiIpnsPublishMockHandler, getPostApiIpnsPublishResponseMock } from "./generated/ipns/ipns.msw.js";
7
+ import { getDeletePinsRequestidMockHandler, getDeletePinsRequestidResponseMock, getGetPinsMockHandler, getGetPinsRequestidMockHandler, getGetPinsRequestidResponseMock, getGetPinsResponseMock, getPinningMock, getPostPinsMockHandler, getPostPinsRequestidMockHandler, getPostPinsRequestidResponseMock, getPostPinsResponseMock } from "./generated/pinning/pinning.msw.js";
8
+ import { getDeleteApiUploadTusIdMockHandler, getDeleteApiUploadTusIdResponseMock, getHeadApiUploadTusIdMockHandler, getPatchApiUploadTusIdMockHandler, getPatchApiUploadTusIdResponseMock, getPostApiUploadTusMockHandler, getPostApiUploadTusResponseMock, getTusMock } from "./generated/tus/tus.msw.js";
9
+ import { getDeleteApiWebsitesIdMockHandler, getDeleteApiWebsitesIdResponseMock, getGetApiWebsitesConfigMockHandler, getGetApiWebsitesConfigResponseMock, getGetApiWebsitesDomainSslStatusMockHandler, getGetApiWebsitesDomainSslStatusResponseMock, getGetApiWebsitesIdMockHandler, getGetApiWebsitesIdResponseMock, getGetApiWebsitesMockHandler, getGetApiWebsitesResponseMock, getPostApiWebsitesIdValidateMockHandler, getPostApiWebsitesIdValidateResponseMock, getPostApiWebsitesMockHandler, getPostApiWebsitesResponseMock, getPutApiWebsitesIdMockHandler, getPutApiWebsitesIdResponseMock, getWebsitesMock } from "./generated/websites/websites.msw.js";
10
+ export { getContentMock, getDeleteApiDnsZonesIdMockHandler, getDeleteApiDnsZonesIdRecordsNameTypeMockHandler, getDeleteApiDnsZonesIdRecordsNameTypeResponseMock, getDeleteApiDnsZonesIdResponseMock, getDeleteApiIpnsKeysIdMockHandler, getDeleteApiIpnsKeysIdResponseMock, getDeleteApiUploadTusIdMockHandler, getDeleteApiUploadTusIdResponseMock, getDeleteApiWebsitesIdMockHandler, getDeleteApiWebsitesIdResponseMock, getDeletePinsRequestidMockHandler, getDeletePinsRequestidResponseMock, getDnsMock, getFilesMock, getGatewayMock, getGetApiBlockMetaCidMockHandler, getGetApiBlockMetaCidResponseMock, getGetApiDnsZonesIdMockHandler, getGetApiDnsZonesIdRecordsMockHandler, getGetApiDnsZonesIdRecordsNameTypeMockHandler, getGetApiDnsZonesIdRecordsNameTypeResponseMock, getGetApiDnsZonesIdRecordsResponseMock, getGetApiDnsZonesIdResponseMock, getGetApiDnsZonesIdStatusMockHandler, getGetApiDnsZonesIdStatusResponseMock, getGetApiDnsZonesMockHandler, getGetApiDnsZonesResponseMock, getGetApiFilesBreadcrumbsMockHandler, getGetApiFilesBreadcrumbsResponseMock, getGetApiFilesDirectoryMockHandler, getGetApiFilesDirectoryResponseMock, getGetApiFilesMockHandler, getGetApiFilesResponseMock, getGetApiInfoMockHandler, getGetApiInfoResponseMock, getGetApiIpnsKeysIdMockHandler, getGetApiIpnsKeysIdResponseMock, getGetApiIpnsKeysMockHandler, getGetApiIpnsKeysResponseMock, getGetApiIpnsResolveNameMockHandler, getGetApiIpnsResolveNameResponseMock, getGetApiWebsitesConfigMockHandler, getGetApiWebsitesConfigResponseMock, getGetApiWebsitesDomainSslStatusMockHandler, getGetApiWebsitesDomainSslStatusResponseMock, getGetApiWebsitesIdMockHandler, getGetApiWebsitesIdResponseMock, getGetApiWebsitesMockHandler, getGetApiWebsitesResponseMock, getGetInternalWebsitesDomainMockHandler, getGetInternalWebsitesDomainResponseMock, getGetInternalWebsitesDomainStatusMockHandler, getGetInternalWebsitesDomainStatusResponseMock, getGetIpfsCidMockHandler, getGetIpfsCidResponseMock, getGetPinsMockHandler, getGetPinsRequestidMockHandler, getGetPinsRequestidResponseMock, getGetPinsResponseMock, getHeadApiUploadTusIdMockHandler, getHeadIpfsCidMockHandler, getHeadIpfsCidResponseMock, getInternalMock, getIpnsMock, getPatchApiUploadTusIdMockHandler, getPatchApiUploadTusIdResponseMock, getPinningMock, getPostApiBlockMetaBatchMockHandler, getPostApiBlockMetaBatchResponseMock, getPostApiDnsZonesIdRecordsBulkDeleteMockHandler, getPostApiDnsZonesIdRecordsBulkDeleteResponseMock, getPostApiDnsZonesIdRecordsBulkMockHandler, getPostApiDnsZonesIdRecordsBulkResponseMock, getPostApiDnsZonesIdRecordsMockHandler, getPostApiDnsZonesIdRecordsResponseMock, getPostApiDnsZonesIdValidateMockHandler, getPostApiDnsZonesIdValidateResponseMock, getPostApiDnsZonesMockHandler, getPostApiDnsZonesResponseMock, getPostApiIpnsKeysIdRepublishMockHandler, getPostApiIpnsKeysIdRepublishResponseMock, getPostApiIpnsKeysMockHandler, getPostApiIpnsKeysResponseMock, getPostApiIpnsPublishMockHandler, getPostApiIpnsPublishResponseMock, getPostApiUploadMockHandler, getPostApiUploadTusMockHandler, getPostApiUploadTusResponseMock, getPostApiWebsitesIdValidateMockHandler, getPostApiWebsitesIdValidateResponseMock, getPostApiWebsitesMockHandler, getPostApiWebsitesResponseMock, getPostInternalWebsitesDomainSslStatusMockHandler, getPostInternalWebsitesDomainSslStatusResponseMock, getPostPinsMockHandler, getPostPinsRequestidMockHandler, getPostPinsRequestidResponseMock, getPostPinsResponseMock, getPutApiDnsZonesIdMockHandler, getPutApiDnsZonesIdRecordsNameTypeMockHandler, getPutApiDnsZonesIdRecordsNameTypeResponseMock, getPutApiDnsZonesIdResponseMock, getPutApiWebsitesIdMockHandler, getPutApiWebsitesIdResponseMock, getTusMock, getWebsitesMock };
@@ -0,0 +1,11 @@
1
+ import { getContentMock, getGetApiBlockMetaCidMockHandler, getGetApiBlockMetaCidResponseMock, getGetApiInfoMockHandler, getGetApiInfoResponseMock, getGetIpfsCidMockHandler, getGetIpfsCidResponseMock, getHeadIpfsCidMockHandler, getHeadIpfsCidResponseMock, getPostApiBlockMetaBatchMockHandler, getPostApiBlockMetaBatchResponseMock, getPostApiUploadMockHandler } from "./generated/content/content.msw.js";
2
+ import { getDeleteApiDnsZonesIdMockHandler, getDeleteApiDnsZonesIdRecordsNameTypeMockHandler, getDeleteApiDnsZonesIdRecordsNameTypeResponseMock, getDeleteApiDnsZonesIdResponseMock, getDnsMock, getGetApiDnsZonesIdMockHandler, getGetApiDnsZonesIdRecordsMockHandler, getGetApiDnsZonesIdRecordsNameTypeMockHandler, getGetApiDnsZonesIdRecordsNameTypeResponseMock, getGetApiDnsZonesIdRecordsResponseMock, getGetApiDnsZonesIdResponseMock, getGetApiDnsZonesIdStatusMockHandler, getGetApiDnsZonesIdStatusResponseMock, getGetApiDnsZonesMockHandler, getGetApiDnsZonesResponseMock, getPostApiDnsZonesIdRecordsBulkDeleteMockHandler, getPostApiDnsZonesIdRecordsBulkDeleteResponseMock, getPostApiDnsZonesIdRecordsBulkMockHandler, getPostApiDnsZonesIdRecordsBulkResponseMock, getPostApiDnsZonesIdRecordsMockHandler, getPostApiDnsZonesIdRecordsResponseMock, getPostApiDnsZonesIdValidateMockHandler, getPostApiDnsZonesIdValidateResponseMock, getPostApiDnsZonesMockHandler, getPostApiDnsZonesResponseMock, getPutApiDnsZonesIdMockHandler, getPutApiDnsZonesIdRecordsNameTypeMockHandler, getPutApiDnsZonesIdRecordsNameTypeResponseMock, getPutApiDnsZonesIdResponseMock } from "./generated/dns/dns.msw.js";
3
+ import { getFilesMock, getGetApiFilesBreadcrumbsMockHandler, getGetApiFilesBreadcrumbsResponseMock, getGetApiFilesDirectoryMockHandler, getGetApiFilesDirectoryResponseMock, getGetApiFilesMockHandler, getGetApiFilesResponseMock } from "./generated/files/files.msw.js";
4
+ import { getGatewayMock, getGetInternalWebsitesDomainMockHandler, getGetInternalWebsitesDomainResponseMock, getGetInternalWebsitesDomainStatusMockHandler, getGetInternalWebsitesDomainStatusResponseMock } from "./generated/gateway/gateway.msw.js";
5
+ import { getInternalMock, getPostInternalWebsitesDomainSslStatusMockHandler, getPostInternalWebsitesDomainSslStatusResponseMock } from "./generated/internal/internal.msw.js";
6
+ import { getDeleteApiIpnsKeysIdMockHandler, getDeleteApiIpnsKeysIdResponseMock, getGetApiIpnsKeysIdMockHandler, getGetApiIpnsKeysIdResponseMock, getGetApiIpnsKeysMockHandler, getGetApiIpnsKeysResponseMock, getGetApiIpnsResolveNameMockHandler, getGetApiIpnsResolveNameResponseMock, getIpnsMock, getPostApiIpnsKeysIdRepublishMockHandler, getPostApiIpnsKeysIdRepublishResponseMock, getPostApiIpnsKeysMockHandler, getPostApiIpnsKeysResponseMock, getPostApiIpnsPublishMockHandler, getPostApiIpnsPublishResponseMock } from "./generated/ipns/ipns.msw.js";
7
+ import { getDeletePinsRequestidMockHandler, getDeletePinsRequestidResponseMock, getGetPinsMockHandler, getGetPinsRequestidMockHandler, getGetPinsRequestidResponseMock, getGetPinsResponseMock, getPinningMock, getPostPinsMockHandler, getPostPinsRequestidMockHandler, getPostPinsRequestidResponseMock, getPostPinsResponseMock } from "./generated/pinning/pinning.msw.js";
8
+ import { getDeleteApiUploadTusIdMockHandler, getDeleteApiUploadTusIdResponseMock, getHeadApiUploadTusIdMockHandler, getPatchApiUploadTusIdMockHandler, getPatchApiUploadTusIdResponseMock, getPostApiUploadTusMockHandler, getPostApiUploadTusResponseMock, getTusMock } from "./generated/tus/tus.msw.js";
9
+ import { getDeleteApiWebsitesIdMockHandler, getDeleteApiWebsitesIdResponseMock, getGetApiWebsitesConfigMockHandler, getGetApiWebsitesConfigResponseMock, getGetApiWebsitesDomainSslStatusMockHandler, getGetApiWebsitesDomainSslStatusResponseMock, getGetApiWebsitesIdMockHandler, getGetApiWebsitesIdResponseMock, getGetApiWebsitesMockHandler, getGetApiWebsitesResponseMock, getPostApiWebsitesIdValidateMockHandler, getPostApiWebsitesIdValidateResponseMock, getPostApiWebsitesMockHandler, getPostApiWebsitesResponseMock, getPutApiWebsitesIdMockHandler, getPutApiWebsitesIdResponseMock, getWebsitesMock } from "./generated/websites/websites.msw.js";
10
+
11
+ export { getContentMock, getDeleteApiDnsZonesIdMockHandler, getDeleteApiDnsZonesIdRecordsNameTypeMockHandler, getDeleteApiDnsZonesIdRecordsNameTypeResponseMock, getDeleteApiDnsZonesIdResponseMock, getDeleteApiIpnsKeysIdMockHandler, getDeleteApiIpnsKeysIdResponseMock, getDeleteApiUploadTusIdMockHandler, getDeleteApiUploadTusIdResponseMock, getDeleteApiWebsitesIdMockHandler, getDeleteApiWebsitesIdResponseMock, getDeletePinsRequestidMockHandler, getDeletePinsRequestidResponseMock, getDnsMock, getFilesMock, getGatewayMock, getGetApiBlockMetaCidMockHandler, getGetApiBlockMetaCidResponseMock, getGetApiDnsZonesIdMockHandler, getGetApiDnsZonesIdRecordsMockHandler, getGetApiDnsZonesIdRecordsNameTypeMockHandler, getGetApiDnsZonesIdRecordsNameTypeResponseMock, getGetApiDnsZonesIdRecordsResponseMock, getGetApiDnsZonesIdResponseMock, getGetApiDnsZonesIdStatusMockHandler, getGetApiDnsZonesIdStatusResponseMock, getGetApiDnsZonesMockHandler, getGetApiDnsZonesResponseMock, getGetApiFilesBreadcrumbsMockHandler, getGetApiFilesBreadcrumbsResponseMock, getGetApiFilesDirectoryMockHandler, getGetApiFilesDirectoryResponseMock, getGetApiFilesMockHandler, getGetApiFilesResponseMock, getGetApiInfoMockHandler, getGetApiInfoResponseMock, getGetApiIpnsKeysIdMockHandler, getGetApiIpnsKeysIdResponseMock, getGetApiIpnsKeysMockHandler, getGetApiIpnsKeysResponseMock, getGetApiIpnsResolveNameMockHandler, getGetApiIpnsResolveNameResponseMock, getGetApiWebsitesConfigMockHandler, getGetApiWebsitesConfigResponseMock, getGetApiWebsitesDomainSslStatusMockHandler, getGetApiWebsitesDomainSslStatusResponseMock, getGetApiWebsitesIdMockHandler, getGetApiWebsitesIdResponseMock, getGetApiWebsitesMockHandler, getGetApiWebsitesResponseMock, getGetInternalWebsitesDomainMockHandler, getGetInternalWebsitesDomainResponseMock, getGetInternalWebsitesDomainStatusMockHandler, getGetInternalWebsitesDomainStatusResponseMock, getGetIpfsCidMockHandler, getGetIpfsCidResponseMock, getGetPinsMockHandler, getGetPinsRequestidMockHandler, getGetPinsRequestidResponseMock, getGetPinsResponseMock, getHeadApiUploadTusIdMockHandler, getHeadIpfsCidMockHandler, getHeadIpfsCidResponseMock, getInternalMock, getIpnsMock, getPatchApiUploadTusIdMockHandler, getPatchApiUploadTusIdResponseMock, getPinningMock, getPostApiBlockMetaBatchMockHandler, getPostApiBlockMetaBatchResponseMock, getPostApiDnsZonesIdRecordsBulkDeleteMockHandler, getPostApiDnsZonesIdRecordsBulkDeleteResponseMock, getPostApiDnsZonesIdRecordsBulkMockHandler, getPostApiDnsZonesIdRecordsBulkResponseMock, getPostApiDnsZonesIdRecordsMockHandler, getPostApiDnsZonesIdRecordsResponseMock, getPostApiDnsZonesIdValidateMockHandler, getPostApiDnsZonesIdValidateResponseMock, getPostApiDnsZonesMockHandler, getPostApiDnsZonesResponseMock, getPostApiIpnsKeysIdRepublishMockHandler, getPostApiIpnsKeysIdRepublishResponseMock, getPostApiIpnsKeysMockHandler, getPostApiIpnsKeysResponseMock, getPostApiIpnsPublishMockHandler, getPostApiIpnsPublishResponseMock, getPostApiUploadMockHandler, getPostApiUploadTusMockHandler, getPostApiUploadTusResponseMock, getPostApiWebsitesIdValidateMockHandler, getPostApiWebsitesIdValidateResponseMock, getPostApiWebsitesMockHandler, getPostApiWebsitesResponseMock, getPostInternalWebsitesDomainSslStatusMockHandler, getPostInternalWebsitesDomainSslStatusResponseMock, getPostPinsMockHandler, getPostPinsRequestidMockHandler, getPostPinsRequestidResponseMock, getPostPinsResponseMock, getPutApiDnsZonesIdMockHandler, getPutApiDnsZonesIdRecordsNameTypeMockHandler, getPutApiDnsZonesIdRecordsNameTypeResponseMock, getPutApiDnsZonesIdResponseMock, getPutApiWebsitesIdMockHandler, getPutApiWebsitesIdResponseMock, getTusMock, getWebsitesMock };