@primitivedotdev/sdk 0.27.0 → 0.27.1

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.
@@ -0,0 +1,53 @@
1
+ //#region ../packages/api-core/src/openapi/openapi.generated.d.ts
2
+ /**
3
+ * OpenAPI document for the Primitive API.
4
+ *
5
+ * AUTO-GENERATED - DO NOT EDIT
6
+ * Run `pnpm generate:openapi` to regenerate.
7
+ */
8
+ declare const openapiDocument: Record<string, unknown>;
9
+ //#endregion
10
+ //#region ../packages/api-core/src/openapi/operations.generated.d.ts
11
+ /**
12
+ * Generated operation metadata for the Primitive API CLI and SDK tooling.
13
+ *
14
+ * AUTO-GENERATED - DO NOT EDIT
15
+ * Run `pnpm generate:openapi` to regenerate.
16
+ */
17
+ type PrimitiveParameterManifest = {
18
+ description: string | null;
19
+ enum: string[] | null;
20
+ name: string;
21
+ required: boolean;
22
+ type: string;
23
+ };
24
+ type PrimitiveOperationManifest = {
25
+ binaryResponse: boolean;
26
+ bodyRequired: boolean;
27
+ command: string;
28
+ description: string | null;
29
+ hasJsonBody: boolean;
30
+ method: string;
31
+ operationId: string;
32
+ path: string;
33
+ pathParams: PrimitiveParameterManifest[];
34
+ queryParams: PrimitiveParameterManifest[];
35
+ /**
36
+ * Resolved JSON Schema for the request body when `hasJsonBody` is
37
+ * true. `$ref`s into the OpenAPI components are inlined.
38
+ */
39
+ requestSchema: Record<string, unknown> | null;
40
+ /**
41
+ * Resolved JSON Schema for the 200/201 response body's `data`
42
+ * envelope contents. Same shape as `requestSchema`: `$ref`s
43
+ * inlined. Null on operations without a 200/201 JSON response.
44
+ */
45
+ responseSchema: Record<string, unknown> | null;
46
+ sdkName: string;
47
+ summary: string | null;
48
+ tag: string;
49
+ tagCommand: string;
50
+ };
51
+ declare const operationManifest: PrimitiveOperationManifest[];
52
+ //#endregion
53
+ export { openapiDocument as i, PrimitiveParameterManifest as n, operationManifest as r, PrimitiveOperationManifest as t };