@dazl/internal-api-client 1.6.2 → 1.6.4
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.
- package/dist/client/client.gen.d.ts.map +1 -1
- package/dist/client/client.gen.js +1 -2
- package/dist/client/client.gen.js.map +1 -1
- package/dist/client/types.gen.d.ts.map +1 -1
- package/dist/client/utils.gen.d.ts.map +1 -1
- package/dist/client/utils.gen.js +2 -5
- package/dist/client/utils.gen.js.map +1 -1
- package/dist/core/auth.gen.d.ts.map +1 -1
- package/dist/core/auth.gen.js.map +1 -1
- package/dist/core/bodySerializer.gen.d.ts.map +1 -1
- package/dist/core/bodySerializer.gen.js +1 -1
- package/dist/core/bodySerializer.gen.js.map +1 -1
- package/dist/core/params.gen.d.ts.map +1 -1
- package/dist/core/params.gen.js.map +1 -1
- package/dist/core/pathSerializer.gen.d.ts.map +1 -1
- package/dist/core/pathSerializer.gen.js +3 -11
- package/dist/core/pathSerializer.gen.js.map +1 -1
- package/dist/core/queryKeySerializer.gen.d.ts.map +1 -1
- package/dist/core/queryKeySerializer.gen.js +4 -11
- package/dist/core/queryKeySerializer.gen.js.map +1 -1
- package/dist/core/serverSentEvents.gen.d.ts.map +1 -1
- package/dist/core/serverSentEvents.gen.js +3 -7
- package/dist/core/serverSentEvents.gen.js.map +1 -1
- package/dist/core/types.gen.d.ts.map +1 -1
- package/dist/core/utils.gen.d.ts.map +1 -1
- package/dist/core/utils.gen.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/sdk.gen.d.ts +1 -2
- package/dist/sdk.gen.d.ts.map +1 -1
- package/dist/sdk.gen.js +0 -3
- package/dist/sdk.gen.js.map +1 -1
- package/dist/types.gen.d.ts +3 -52
- package/dist/types.gen.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/client/client.gen.ts +25 -48
- package/src/client/types.gen.ts +12 -40
- package/src/client/utils.gen.ts +6 -22
- package/src/core/auth.gen.ts +1 -2
- package/src/core/bodySerializer.gen.ts +5 -21
- package/src/core/params.gen.ts +3 -10
- package/src/core/pathSerializer.gen.ts +4 -14
- package/src/core/queryKeySerializer.gen.ts +6 -25
- package/src/core/serverSentEvents.gen.ts +8 -31
- package/src/core/types.gen.ts +4 -18
- package/src/core/utils.gen.ts +1 -4
- package/src/index.ts +1 -1
- package/src/sdk.gen.ts +1 -5
- package/src/types.gen.ts +3 -57
package/src/types.gen.ts
CHANGED
|
@@ -82,7 +82,7 @@ export type Deployment = {
|
|
|
82
82
|
publishedAt: string;
|
|
83
83
|
createdAt: string;
|
|
84
84
|
customDomain: string | null;
|
|
85
|
-
|
|
85
|
+
customDomainStatus: 'success' | 'pending' | 'error' | null;
|
|
86
86
|
};
|
|
87
87
|
|
|
88
88
|
export type ProjectRaw = {
|
|
@@ -1231,62 +1231,6 @@ export type GetInstallationsResponses = {
|
|
|
1231
1231
|
|
|
1232
1232
|
export type GetInstallationsResponse = GetInstallationsResponses[keyof GetInstallationsResponses];
|
|
1233
1233
|
|
|
1234
|
-
export type GetInstallationTokenData = {
|
|
1235
|
-
body?: never;
|
|
1236
|
-
path: {
|
|
1237
|
-
projectId: string;
|
|
1238
|
-
};
|
|
1239
|
-
query?: never;
|
|
1240
|
-
url: '/github/project/{projectId}/token';
|
|
1241
|
-
};
|
|
1242
|
-
|
|
1243
|
-
export type GetInstallationTokenErrors = {
|
|
1244
|
-
/**
|
|
1245
|
-
* Bad request - Invalid parameters or malformed JSON
|
|
1246
|
-
*/
|
|
1247
|
-
400: {
|
|
1248
|
-
message: string;
|
|
1249
|
-
issues?: string;
|
|
1250
|
-
};
|
|
1251
|
-
/**
|
|
1252
|
-
* Unauthorized
|
|
1253
|
-
*/
|
|
1254
|
-
401: ErrorResponse;
|
|
1255
|
-
/**
|
|
1256
|
-
* Forbidden
|
|
1257
|
-
*/
|
|
1258
|
-
403: ErrorResponse;
|
|
1259
|
-
/**
|
|
1260
|
-
* Not Found
|
|
1261
|
-
*/
|
|
1262
|
-
404: ErrorResponse;
|
|
1263
|
-
/**
|
|
1264
|
-
* Conflict
|
|
1265
|
-
*/
|
|
1266
|
-
409: ErrorResponse;
|
|
1267
|
-
/**
|
|
1268
|
-
* Internal server error
|
|
1269
|
-
*/
|
|
1270
|
-
500: ErrorResponse;
|
|
1271
|
-
/**
|
|
1272
|
-
* Service Unavailable
|
|
1273
|
-
*/
|
|
1274
|
-
503: ErrorResponse;
|
|
1275
|
-
};
|
|
1276
|
-
|
|
1277
|
-
export type GetInstallationTokenError = GetInstallationTokenErrors[keyof GetInstallationTokenErrors];
|
|
1278
|
-
|
|
1279
|
-
export type GetInstallationTokenResponses = {
|
|
1280
|
-
/**
|
|
1281
|
-
* Returns installation access token for the project's linked GitHub installation
|
|
1282
|
-
*/
|
|
1283
|
-
200: {
|
|
1284
|
-
token: string;
|
|
1285
|
-
};
|
|
1286
|
-
};
|
|
1287
|
-
|
|
1288
|
-
export type GetInstallationTokenResponse = GetInstallationTokenResponses[keyof GetInstallationTokenResponses];
|
|
1289
|
-
|
|
1290
1234
|
export type GetProjectInfoData = {
|
|
1291
1235
|
body?: never;
|
|
1292
1236
|
path: {
|
|
@@ -1343,6 +1287,7 @@ export type GetProjectInfoResponses = {
|
|
|
1343
1287
|
projectId: string;
|
|
1344
1288
|
branch: string;
|
|
1345
1289
|
repoFullName: string;
|
|
1290
|
+
token: string;
|
|
1346
1291
|
};
|
|
1347
1292
|
};
|
|
1348
1293
|
|
|
@@ -1928,6 +1873,7 @@ export type GetEntriConfigResponses = {
|
|
|
1928
1873
|
applicationId: string;
|
|
1929
1874
|
token: string;
|
|
1930
1875
|
prefilledDomain?: string;
|
|
1876
|
+
userId: string;
|
|
1931
1877
|
dnsRecords: {
|
|
1932
1878
|
domain: Array<{
|
|
1933
1879
|
type: string;
|