@smartspace/api-client 0.1.0-dev.ee9db87 → 0.1.0-dev.f2f7d75

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 (52) hide show
  1. package/dist/generated/chat/api.msw.js +2 -2
  2. package/dist/generated/chat/models/connectorsConnectorSummary.d.ts +12 -0
  3. package/dist/generated/chat/models/connectorsConnectorSummary.js +8 -0
  4. package/dist/generated/chat/models/enumsNotificationType.d.ts +1 -0
  5. package/dist/generated/chat/models/enumsNotificationType.js +1 -0
  6. package/dist/generated/chat/models/index.d.ts +1 -0
  7. package/dist/generated/chat/models/index.js +1 -0
  8. package/dist/generated/chat/models/workSpacesWorkSpace.d.ts +2 -0
  9. package/dist/generated/chat/zod.d.ts +13 -0
  10. package/dist/generated/chat/zod.js +16 -4
  11. package/dist/generated/config/api.d.ts +19 -1
  12. package/dist/generated/config/api.js +81 -1
  13. package/dist/generated/config/api.msw.d.ts +15 -1
  14. package/dist/generated/config/api.msw.js +128 -10
  15. package/dist/generated/config/models/configApiFlowRunIdentityMapRequest.d.ts +9 -0
  16. package/dist/generated/config/models/configApiFlowRunIdentityMapRequest.js +8 -0
  17. package/dist/generated/config/models/connectorsConnector.d.ts +23 -0
  18. package/dist/generated/config/models/connectorsConnector.js +8 -0
  19. package/dist/generated/config/models/connectorsConnectorSummary.d.ts +12 -0
  20. package/dist/generated/config/models/connectorsConnectorSummary.js +8 -0
  21. package/dist/generated/config/models/connectorsCreateConnector.d.ts +18 -0
  22. package/dist/generated/config/models/connectorsCreateConnector.js +8 -0
  23. package/dist/generated/config/models/connectorsGetConnectorSummariesParams.d.ts +9 -0
  24. package/dist/generated/config/models/connectorsGetConnectorSummariesParams.js +8 -0
  25. package/dist/generated/config/models/connectorsGetConnectorsParams.d.ts +9 -0
  26. package/dist/generated/config/models/connectorsGetConnectorsParams.js +8 -0
  27. package/dist/generated/config/models/connectorsResolvedConnector.d.ts +11 -0
  28. package/dist/generated/config/models/connectorsResolvedConnector.js +2 -0
  29. package/dist/generated/config/models/connectorsResolvedConnectorHeaders.d.ts +9 -0
  30. package/dist/generated/config/models/connectorsResolvedConnectorHeaders.js +8 -0
  31. package/dist/generated/config/models/connectorsUpdateConnector.d.ts +17 -0
  32. package/dist/generated/config/models/connectorsUpdateConnector.js +8 -0
  33. package/dist/generated/config/models/enumsNotificationType.d.ts +1 -0
  34. package/dist/generated/config/models/enumsNotificationType.js +1 -0
  35. package/dist/generated/config/models/index.d.ts +10 -0
  36. package/dist/generated/config/models/index.js +10 -0
  37. package/dist/generated/config/models/syncsGetParams.d.ts +7 -0
  38. package/dist/generated/config/models/syncsSync.d.ts +11 -0
  39. package/dist/generated/config/models/syncsSyncRunInfo.d.ts +14 -0
  40. package/dist/generated/config/models/syncsSyncRunInfo.js +8 -0
  41. package/dist/generated/config/models/workSpacesWorkSpace.d.ts +2 -0
  42. package/dist/generated/config/zod.d.ts +199 -0
  43. package/dist/generated/config/zod.js +194 -12
  44. package/dist/generated/signalr/SmartSpace.App.Business.Models.Notifications.d.ts +22 -0
  45. package/dist/generated/signalr/SmartSpace.App.Business.Models.Notifications.js +2 -0
  46. package/dist/generated/signalr/SmartSpace.App.Core.Enums.d.ts +7 -0
  47. package/dist/generated/signalr/SmartSpace.App.Core.Enums.js +14 -0
  48. package/dist/generated/signalr/TypedSignalR.Client/SmartSpace.App.Business.Hubs.Contracts.d.ts +11 -0
  49. package/dist/generated/signalr/TypedSignalR.Client/index.js +6 -0
  50. package/dist/signalr.d.ts +2 -0
  51. package/dist/signalr.js +3 -0
  52. package/package.json +2 -2
@@ -8,4 +8,11 @@ export type SyncsGetParams = {
8
8
  take?: number;
9
9
  skip?: number;
10
10
  search?: string;
11
+ /**
12
+ * @pattern ^[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}$
13
+ */
14
+ dataSourceId?: string;
15
+ status?: string;
16
+ sortBy?: string;
17
+ sortDirection?: string;
11
18
  };
@@ -6,6 +6,7 @@
6
6
  */
7
7
  import type { ContainerDataSet } from './containerDataSet';
8
8
  import type { SyncsSyncDataSourceInfo } from './syncsSyncDataSourceInfo';
9
+ import type { SyncsSyncRunInfo } from './syncsSyncRunInfo';
9
10
  export interface SyncsSync {
10
11
  dataSets: ContainerDataSet[];
11
12
  dataSource: SyncsSyncDataSourceInfo;
@@ -15,8 +16,18 @@ export interface SyncsSync {
15
16
  highwaterMark?: string | null;
16
17
  /** @pattern ^[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}$ */
17
18
  id: string;
19
+ /** @nullable */
20
+ latestSyncAt?: string | null;
21
+ /** @nullable */
22
+ latestSyncItemCount?: number | null;
23
+ /** @nullable */
24
+ latestSyncMessage?: string | null;
25
+ /** @nullable */
26
+ latestSyncStatus?: string | null;
18
27
  name: string;
19
28
  path: string;
20
29
  /** @nullable */
30
+ recentSyncs?: SyncsSyncRunInfo[] | null;
31
+ /** @nullable */
21
32
  statusMessage?: string | null;
22
33
  }
@@ -0,0 +1,14 @@
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 SyncsSyncRunInfo {
8
+ end: string;
9
+ itemCount: number;
10
+ /** @nullable */
11
+ message?: string | null;
12
+ start: string;
13
+ status: string;
14
+ }
@@ -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 });
@@ -4,11 +4,13 @@
4
4
  * SmartSpace Admin API
5
5
  * OpenAPI spec version: v1
6
6
  */
7
+ import type { ConnectorsConnectorSummary } from './connectorsConnectorSummary';
7
8
  import type { DataSpace } from './dataSpace';
8
9
  import type { WorkSpacesWorkSpaceInputs } from './workSpacesWorkSpaceInputs';
9
10
  import type { ModelConfiguration } from './modelConfiguration';
10
11
  import type { WorkSpacesWorkSpaceVariables } from './workSpacesWorkSpaceVariables';
11
12
  export interface WorkSpacesWorkSpace {
13
+ connectors: ConnectorsConnectorSummary[];
12
14
  createdAt: string;
13
15
  createdByUserId: string;
14
16
  dataSpaces: DataSpace[];
@@ -1586,6 +1586,15 @@ export declare const dataSourcesUpdateCredentialsParams: zod.ZodObject<{
1586
1586
  export declare const dataSourcesUpdateCredentialsBody: zod.ZodObject<{
1587
1587
  credentials: zod.ZodRecord<zod.ZodString, zod.ZodNullable<zod.ZodString>>;
1588
1588
  }, zod.core.$strict>;
1589
+ /**
1590
+ * @summary Requests an on-demand sync of a data source. The request is queued;
1591
+ the sync service picks it up within ~30 seconds. Repeated requests
1592
+ are safe — concurrent syncs of the same source collapse to one run.
1593
+ */
1594
+ export declare const dataSourcesRequestSyncPathDataSourceIdRegExp: RegExp;
1595
+ export declare const dataSourcesRequestSyncParams: zod.ZodObject<{
1596
+ dataSourceId: zod.ZodString;
1597
+ }, zod.core.$strict>;
1589
1598
  export declare const dataSourcesGetAdminUsersPathIdRegExp: RegExp;
1590
1599
  export declare const dataSourcesGetAdminUsersParams: zod.ZodObject<{
1591
1600
  id: zod.ZodString;
@@ -2878,6 +2887,7 @@ export declare const notificationGetResponse: zod.ZodObject<{
2878
2887
  WorkSpaceUpdated: "WorkSpaceUpdated";
2879
2888
  MessageThreadUpdated: "MessageThreadUpdated";
2880
2889
  CommentUpdated: "CommentUpdated";
2890
+ AddedToThread: "AddedToThread";
2881
2891
  }>;
2882
2892
  threadId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
2883
2893
  workSpaceId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
@@ -2963,12 +2973,23 @@ export declare const reportingGetTokensResponse: zod.ZodObject<{
2963
2973
  name: zod.ZodString;
2964
2974
  }, zod.core.$strip>>;
2965
2975
  }, zod.core.$strip>;
2976
+ /**
2977
+ * @summary List configured syncs. status matches the data
2978
+ source's latest completed sync (e.g. Success / Failure), or "never"
2979
+ for sources with no recorded sync. sortBy:
2980
+ name | connector | lastSync (default: path).
2981
+ */
2966
2982
  export declare const syncsGetQueryTakeDefault = 50;
2967
2983
  export declare const syncsGetQuerySkipDefault = 0;
2984
+ export declare const syncsGetQueryDataSourceIdRegExp: RegExp;
2968
2985
  export declare const syncsGetQueryParams: zod.ZodObject<{
2969
2986
  take: zod.ZodDefault<zod.ZodNumber>;
2970
2987
  skip: zod.ZodOptional<zod.ZodNumber>;
2971
2988
  search: zod.ZodOptional<zod.ZodString>;
2989
+ dataSourceId: zod.ZodOptional<zod.ZodString>;
2990
+ status: zod.ZodOptional<zod.ZodString>;
2991
+ sortBy: zod.ZodOptional<zod.ZodString>;
2992
+ sortDirection: zod.ZodOptional<zod.ZodString>;
2972
2993
  }, zod.core.$strict>;
2973
2994
  export declare const syncsGetResponseDataItemDataSetsItemIdRegExp: RegExp;
2974
2995
  export declare const syncsGetResponseDataItemDataSetsItemVersionRegExp: RegExp;
@@ -3002,8 +3023,19 @@ export declare const syncsGetResponse: zod.ZodObject<{
3002
3023
  filters: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
3003
3024
  highwaterMark: zod.ZodOptional<zod.ZodNullable<zod.ZodISODateTime>>;
3004
3025
  id: zod.ZodString;
3026
+ latestSyncAt: zod.ZodOptional<zod.ZodNullable<zod.ZodISODateTime>>;
3027
+ latestSyncItemCount: zod.ZodOptional<zod.ZodNullable<zod.ZodNumber>>;
3028
+ latestSyncMessage: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
3029
+ latestSyncStatus: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
3005
3030
  name: zod.ZodString;
3006
3031
  path: zod.ZodString;
3032
+ recentSyncs: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodObject<{
3033
+ end: zod.ZodISODateTime;
3034
+ itemCount: zod.ZodNumber;
3035
+ message: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
3036
+ start: zod.ZodISODateTime;
3037
+ status: zod.ZodString;
3038
+ }, zod.core.$strip>>>>;
3007
3039
  statusMessage: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
3008
3040
  }, zod.core.$strip>>;
3009
3041
  total: zod.ZodNumber;
@@ -3043,8 +3075,19 @@ export declare const syncsGetByIdResponse: zod.ZodObject<{
3043
3075
  filters: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
3044
3076
  highwaterMark: zod.ZodOptional<zod.ZodNullable<zod.ZodISODateTime>>;
3045
3077
  id: zod.ZodString;
3078
+ latestSyncAt: zod.ZodOptional<zod.ZodNullable<zod.ZodISODateTime>>;
3079
+ latestSyncItemCount: zod.ZodOptional<zod.ZodNullable<zod.ZodNumber>>;
3080
+ latestSyncMessage: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
3081
+ latestSyncStatus: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
3046
3082
  name: zod.ZodString;
3047
3083
  path: zod.ZodString;
3084
+ recentSyncs: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodObject<{
3085
+ end: zod.ZodISODateTime;
3086
+ itemCount: zod.ZodNumber;
3087
+ message: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
3088
+ start: zod.ZodISODateTime;
3089
+ status: zod.ZodString;
3090
+ }, zod.core.$strip>>>>;
3048
3091
  statusMessage: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
3049
3092
  }, zod.core.$strip>;
3050
3093
  /**
@@ -3347,6 +3390,7 @@ export declare const workSpacesGetGetQueryParams: zod.ZodObject<{
3347
3390
  sortBy: zod.ZodOptional<zod.ZodString>;
3348
3391
  sortDirection: zod.ZodOptional<zod.ZodString>;
3349
3392
  }, zod.core.$strict>;
3393
+ export declare const workSpacesGetGetResponseDataItemConnectorsItemIdRegExpOne: RegExp;
3350
3394
  export declare const workSpacesGetGetResponseDataItemDataSpacesItemDataSetsItemDataSpaceIdRegExpOne: RegExp;
3351
3395
  export declare const workSpacesGetGetResponseDataItemDataSpacesItemDataSetsItemFlowActiveFlowDefinitionIdRegExpOne: RegExp;
3352
3396
  export declare const workSpacesGetGetResponseDataItemDataSpacesItemDataSetsItemFlowIdRegExpOne: RegExp;
@@ -3367,6 +3411,11 @@ export declare const workSpacesGetGetResponseDataItemModelConfigurationsItemMode
3367
3411
  export declare const workSpacesGetGetResponseDataItemSandBoxThreadIdRegExpOne: RegExp;
3368
3412
  export declare const workSpacesGetGetResponse: zod.ZodObject<{
3369
3413
  data: zod.ZodArray<zod.ZodObject<{
3414
+ connectors: zod.ZodArray<zod.ZodObject<{
3415
+ id: zod.ZodString;
3416
+ kind: zod.ZodString;
3417
+ name: zod.ZodString;
3418
+ }, zod.core.$strip>>;
3370
3419
  createdAt: zod.ZodISODateTime;
3371
3420
  createdByUserId: zod.ZodString;
3372
3421
  dataSpaces: zod.ZodArray<zod.ZodObject<{
@@ -3638,6 +3687,7 @@ export declare const workSpacesGetIdPathIdRegExpOne: RegExp;
3638
3687
  export declare const workSpacesGetIdParams: zod.ZodObject<{
3639
3688
  id: zod.ZodString;
3640
3689
  }, zod.core.$strict>;
3690
+ export declare const workSpacesGetIdResponseConnectorsItemIdRegExpOne: RegExp;
3641
3691
  export declare const workSpacesGetIdResponseDataSpacesItemDataSetsItemDataSpaceIdRegExpOne: RegExp;
3642
3692
  export declare const workSpacesGetIdResponseDataSpacesItemDataSetsItemFlowActiveFlowDefinitionIdRegExpOne: RegExp;
3643
3693
  export declare const workSpacesGetIdResponseDataSpacesItemDataSetsItemFlowIdRegExpOne: RegExp;
@@ -3657,6 +3707,11 @@ export declare const workSpacesGetIdResponseModelConfigurationsItemModelDeployme
3657
3707
  export declare const workSpacesGetIdResponseModelConfigurationsItemModelIdRegExpOne: RegExp;
3658
3708
  export declare const workSpacesGetIdResponseSandBoxThreadIdRegExpOne: RegExp;
3659
3709
  export declare const workSpacesGetIdResponse: zod.ZodObject<{
3710
+ connectors: zod.ZodArray<zod.ZodObject<{
3711
+ id: zod.ZodString;
3712
+ kind: zod.ZodString;
3713
+ name: zod.ZodString;
3714
+ }, zod.core.$strip>>;
3660
3715
  createdAt: zod.ZodISODateTime;
3661
3716
  createdByUserId: zod.ZodString;
3662
3717
  dataSpaces: zod.ZodArray<zod.ZodObject<{
@@ -4006,6 +4061,28 @@ export declare const workSpacesPutModelConfigurationBody: zod.ZodObject<{
4006
4061
  temperature: zod.ZodNumber;
4007
4062
  topP: zod.ZodNumber;
4008
4063
  }, zod.core.$strict>;
4064
+ /**
4065
+ * @summary Detaches a connector from a workspace. Flows still referencing it
4066
+ fail at resolve time rather than silently keeping access.
4067
+ */
4068
+ export declare const workSpacesRemoveConnectorPathWorkspaceIdRegExp: RegExp;
4069
+ export declare const workSpacesRemoveConnectorPathConnectorIdRegExp: RegExp;
4070
+ export declare const workSpacesRemoveConnectorParams: zod.ZodObject<{
4071
+ workspaceId: zod.ZodString;
4072
+ connectorId: zod.ZodString;
4073
+ }, zod.core.$strict>;
4074
+ /**
4075
+ * @summary Attaches a connector to a workspace — the access model for external
4076
+ connectors, mirroring dataspaces. Only after this can a flow in the
4077
+ workspace reference the connector, and the resolve endpoint checks
4078
+ the same attachment at call time.
4079
+ */
4080
+ export declare const workSpacesAddConnectorPathWorkspaceIdRegExp: RegExp;
4081
+ export declare const workSpacesAddConnectorPathConnectorIdRegExp: RegExp;
4082
+ export declare const workSpacesAddConnectorParams: zod.ZodObject<{
4083
+ workspaceId: zod.ZodString;
4084
+ connectorId: zod.ZodString;
4085
+ }, zod.core.$strict>;
4009
4086
  /**
4010
4087
  * @summary Removes a data space from a workspace.
4011
4088
  */
@@ -4272,6 +4349,128 @@ export declare const workSpacesSetActiveFlowLayoutParams: zod.ZodObject<{
4272
4349
  workspaceId: zod.ZodString;
4273
4350
  }, zod.core.$strict>;
4274
4351
  export declare const workSpacesSetActiveFlowLayoutBody: zod.ZodAny;
4352
+ /**
4353
+ * @summary Lists connectors with their auth settings — never a credential.
4354
+ */
4355
+ export declare const connectorsGetConnectorsQueryParams: zod.ZodObject<{
4356
+ kind: zod.ZodOptional<zod.ZodString>;
4357
+ }, zod.core.$strict>;
4358
+ export declare const connectorsGetConnectorsResponseIdRegExp: RegExp;
4359
+ export declare const connectorsGetConnectorsResponseItem: zod.ZodObject<{
4360
+ authHeaderName: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
4361
+ authScheme: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
4362
+ authType: zod.ZodString;
4363
+ createdAt: zod.ZodISODateTime;
4364
+ createdByUserId: zod.ZodString;
4365
+ hasSecret: zod.ZodBoolean;
4366
+ id: zod.ZodString;
4367
+ kind: zod.ZodString;
4368
+ modifiedAt: zod.ZodISODateTime;
4369
+ modifiedByUserId: zod.ZodString;
4370
+ name: zod.ZodString;
4371
+ url: zod.ZodString;
4372
+ }, zod.core.$strip>;
4373
+ export declare const connectorsGetConnectorsResponse: zod.ZodArray<zod.ZodObject<{
4374
+ authHeaderName: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
4375
+ authScheme: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
4376
+ authType: zod.ZodString;
4377
+ createdAt: zod.ZodISODateTime;
4378
+ createdByUserId: zod.ZodString;
4379
+ hasSecret: zod.ZodBoolean;
4380
+ id: zod.ZodString;
4381
+ kind: zod.ZodString;
4382
+ modifiedAt: zod.ZodISODateTime;
4383
+ modifiedByUserId: zod.ZodString;
4384
+ name: zod.ZodString;
4385
+ url: zod.ZodString;
4386
+ }, zod.core.$strip>>;
4387
+ /**
4388
+ * @summary Creates a connector and its shared credential in one call: the value
4389
+ goes to Key Vault, the row stores only the reference.
4390
+ */
4391
+ export declare const connectorsCreateConnectorBody: zod.ZodObject<{
4392
+ authHeaderName: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
4393
+ authScheme: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
4394
+ authType: zod.ZodString;
4395
+ kind: zod.ZodString;
4396
+ name: zod.ZodString;
4397
+ secret: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
4398
+ url: zod.ZodString;
4399
+ }, zod.core.$strict>;
4400
+ /**
4401
+ * @summary Picker list for workspace editors: id, name and kind only. Gated on
4402
+ WorkspaceEdit rather than Admin because attaching a connector to a
4403
+ workspace is a workspace-editor action, and the picker is how they
4404
+ choose one. Admins pass this gate via the role bypass.
4405
+ */
4406
+ export declare const connectorsGetConnectorSummariesQueryParams: zod.ZodObject<{
4407
+ kind: zod.ZodOptional<zod.ZodString>;
4408
+ }, zod.core.$strict>;
4409
+ export declare const connectorsGetConnectorSummariesResponseIdRegExp: RegExp;
4410
+ export declare const connectorsGetConnectorSummariesResponseItem: zod.ZodObject<{
4411
+ id: zod.ZodString;
4412
+ kind: zod.ZodString;
4413
+ name: zod.ZodString;
4414
+ }, zod.core.$strip>;
4415
+ export declare const connectorsGetConnectorSummariesResponse: zod.ZodArray<zod.ZodObject<{
4416
+ id: zod.ZodString;
4417
+ kind: zod.ZodString;
4418
+ name: zod.ZodString;
4419
+ }, zod.core.$strip>>;
4420
+ export declare const connectorsDeleteConnectorPathIdRegExp: RegExp;
4421
+ export declare const connectorsDeleteConnectorParams: zod.ZodObject<{
4422
+ id: zod.ZodString;
4423
+ }, zod.core.$strict>;
4424
+ export declare const connectorsGetConnectorPathIdRegExp: RegExp;
4425
+ export declare const connectorsGetConnectorParams: zod.ZodObject<{
4426
+ id: zod.ZodString;
4427
+ }, zod.core.$strict>;
4428
+ export declare const connectorsGetConnectorResponseIdRegExp: RegExp;
4429
+ export declare const connectorsGetConnectorResponse: zod.ZodObject<{
4430
+ authHeaderName: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
4431
+ authScheme: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
4432
+ authType: zod.ZodString;
4433
+ createdAt: zod.ZodISODateTime;
4434
+ createdByUserId: zod.ZodString;
4435
+ hasSecret: zod.ZodBoolean;
4436
+ id: zod.ZodString;
4437
+ kind: zod.ZodString;
4438
+ modifiedAt: zod.ZodISODateTime;
4439
+ modifiedByUserId: zod.ZodString;
4440
+ name: zod.ZodString;
4441
+ url: zod.ZodString;
4442
+ }, zod.core.$strip>;
4443
+ /**
4444
+ * @summary Updates a connector. Omit `Secret` to leave the credential
4445
+ untouched; supply one to rotate it.
4446
+ */
4447
+ export declare const connectorsUpdateConnectorPathIdRegExp: RegExp;
4448
+ export declare const connectorsUpdateConnectorParams: zod.ZodObject<{
4449
+ id: zod.ZodString;
4450
+ }, zod.core.$strict>;
4451
+ export declare const connectorsUpdateConnectorBody: zod.ZodObject<{
4452
+ authHeaderName: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
4453
+ authScheme: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
4454
+ authType: zod.ZodString;
4455
+ name: zod.ZodString;
4456
+ secret: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
4457
+ url: zod.ZodString;
4458
+ }, zod.core.$strict>;
4459
+ export declare const connectorsUpdateConnectorResponseIdRegExp: RegExp;
4460
+ export declare const connectorsUpdateConnectorResponse: zod.ZodObject<{
4461
+ authHeaderName: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
4462
+ authScheme: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
4463
+ authType: zod.ZodString;
4464
+ createdAt: zod.ZodISODateTime;
4465
+ createdByUserId: zod.ZodString;
4466
+ hasSecret: zod.ZodBoolean;
4467
+ id: zod.ZodString;
4468
+ kind: zod.ZodString;
4469
+ modifiedAt: zod.ZodISODateTime;
4470
+ modifiedByUserId: zod.ZodString;
4471
+ name: zod.ZodString;
4472
+ url: zod.ZodString;
4473
+ }, zod.core.$strip>;
4275
4474
  /**
4276
4475
  * @summary Retrieve a Shared Access Signature (SAS) for a specific item within a data space's documents in SmartSpace, using the dataSpaceId.
4277
4476
  */