@smartspace/api-client 0.1.0-pr.959.d7eec6c → 0.1.0-pr.960.db785ee

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.
@@ -888,10 +888,6 @@ const getSmartSpaceAdminAPI = () => {
888
888
  return (0, instance_1.customInstance)({ url: `/Syncs/${containerId}`, method: 'GET'
889
889
  });
890
890
  };
891
- /**
892
- * @summary The sync's landed items (read-only metadata), proxied from the AI API's
893
- container-items endpoint.
894
- */
895
891
  const syncsGetItems = (containerId, params) => {
896
892
  return (0, instance_1.customInstance)({ url: `/Syncs/${containerId}/items`, method: 'GET',
897
893
  params
@@ -295,6 +295,7 @@ export * from './syncsGetItemsParams';
295
295
  export * from './syncsGetParams';
296
296
  export * from './syncsSync';
297
297
  export * from './syncsSyncDataSourceInfo';
298
+ export * from './syncsSyncStatusReport';
298
299
  export * from './usersAdminPermissionParams';
299
300
  export * from './usersAppAccessUser';
300
301
  export * from './usersAppRole';
@@ -311,6 +311,7 @@ __exportStar(require("./syncsGetItemsParams"), exports);
311
311
  __exportStar(require("./syncsGetParams"), exports);
312
312
  __exportStar(require("./syncsSync"), exports);
313
313
  __exportStar(require("./syncsSyncDataSourceInfo"), exports);
314
+ __exportStar(require("./syncsSyncStatusReport"), exports);
314
315
  __exportStar(require("./usersAdminPermissionParams"), exports);
315
316
  __exportStar(require("./usersAppAccessUser"), exports);
316
317
  __exportStar(require("./usersAppRole"), exports);
@@ -0,0 +1,12 @@
1
+ /**
2
+ * Generated by orval v7.13.2 🍺
3
+ * Do not edit manually.
4
+ * SmartSpace Admin API
5
+ * OpenAPI spec version: v1
6
+ */
7
+ export interface SyncsSyncStatusReport {
8
+ /** @nullable */
9
+ highwaterMark?: string | null;
10
+ /** @nullable */
11
+ statusMessage?: string | null;
12
+ }
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ /**
3
+ * Generated by orval v7.13.2 🍺
4
+ * Do not edit manually.
5
+ * SmartSpace Admin API
6
+ * OpenAPI spec version: v1
7
+ */
8
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -3057,10 +3057,6 @@ export declare const syncsGetByIdResponse: zod.ZodObject<{
3057
3057
  path: zod.ZodString;
3058
3058
  statusMessage: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
3059
3059
  }, zod.core.$strip>;
3060
- /**
3061
- * @summary The sync's landed items (read-only metadata), proxied from the AI API's
3062
- container-items endpoint.
3063
- */
3064
3060
  export declare const syncsGetItemsPathContainerIdRegExp: RegExp;
3065
3061
  export declare const syncsGetItemsParams: zod.ZodObject<{
3066
3062
  containerId: zod.ZodString;
@@ -2349,10 +2349,6 @@ exports.syncsGetByIdResponse = zod_1.default.object({
2349
2349
  "path": zod_1.default.string(),
2350
2350
  "statusMessage": zod_1.default.string().nullish()
2351
2351
  });
2352
- /**
2353
- * @summary The sync's landed items (read-only metadata), proxied from the AI API's
2354
- container-items endpoint.
2355
- */
2356
2352
  exports.syncsGetItemsPathContainerIdRegExp = new RegExp('^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$');
2357
2353
  exports.syncsGetItemsParams = zod_1.default.strictObject({
2358
2354
  "containerId": zod_1.default.string().regex(exports.syncsGetItemsPathContainerIdRegExp)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartspace/api-client",
3
- "version": "0.1.0-pr.959.d7eec6c",
3
+ "version": "0.1.0-pr.960.db785ee",
4
4
  "description": "Generated TypeScript client for SmartSpace APIs",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",