@aws-sdk/client-wisdom 3.428.0 → 3.429.0

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.
@@ -143,7 +143,7 @@ export interface CreateAssistantAssociationRequest {
143
143
  * @public
144
144
  * <p>The type of association.</p>
145
145
  */
146
- associationType: AssociationType | string | undefined;
146
+ associationType: AssociationType | undefined;
147
147
  /**
148
148
  * @public
149
149
  * <p>The identifier of the associated resource.</p>
@@ -238,7 +238,7 @@ export interface AssistantAssociationData {
238
238
  * @public
239
239
  * <p>The type of association.</p>
240
240
  */
241
- associationType: AssociationType | string | undefined;
241
+ associationType: AssociationType | undefined;
242
242
  /**
243
243
  * @public
244
244
  * <p>A union type that currently has a single argument, the knowledge base ID.</p>
@@ -397,7 +397,7 @@ export interface AssistantAssociationSummary {
397
397
  * @public
398
398
  * <p>The type of association.</p>
399
399
  */
400
- associationType: AssociationType | string | undefined;
400
+ associationType: AssociationType | undefined;
401
401
  /**
402
402
  * @public
403
403
  * <p>The association data.</p>
@@ -468,7 +468,7 @@ export interface CreateAssistantRequest {
468
468
  * @public
469
469
  * <p>The type of assistant.</p>
470
470
  */
471
- type: AssistantType | string | undefined;
471
+ type: AssistantType | undefined;
472
472
  /**
473
473
  * @public
474
474
  * <p>The description of the assistant.</p>
@@ -536,12 +536,12 @@ export interface AssistantData {
536
536
  * @public
537
537
  * <p>The type of assistant.</p>
538
538
  */
539
- type: AssistantType | string | undefined;
539
+ type: AssistantType | undefined;
540
540
  /**
541
541
  * @public
542
542
  * <p>The status of the assistant.</p>
543
543
  */
544
- status: AssistantStatus | string | undefined;
544
+ status: AssistantStatus | undefined;
545
545
  /**
546
546
  * @public
547
547
  * <p>The description.</p>
@@ -764,12 +764,12 @@ export interface RecommendationData {
764
764
  * @public
765
765
  * <p>The relevance level of the recommendation.</p>
766
766
  */
767
- relevanceLevel?: RelevanceLevel | string;
767
+ relevanceLevel?: RelevanceLevel;
768
768
  /**
769
769
  * @public
770
770
  * <p>The type of recommendation.</p>
771
771
  */
772
- type?: RecommendationType | string;
772
+ type?: RecommendationType;
773
773
  }
774
774
  /**
775
775
  * @public
@@ -852,7 +852,7 @@ export interface RecommendationTrigger {
852
852
  * @public
853
853
  * <p>The type of recommendation trigger.</p>
854
854
  */
855
- type: RecommendationTriggerType | string | undefined;
855
+ type: RecommendationTriggerType | undefined;
856
856
  /**
857
857
  * @public
858
858
  * <p>The source of the recommendation trigger.</p>
@@ -867,7 +867,7 @@ export interface RecommendationTrigger {
867
867
  * </li>
868
868
  * </ul>
869
869
  */
870
- source: RecommendationSourceType | string | undefined;
870
+ source: RecommendationSourceType | undefined;
871
871
  /**
872
872
  * @public
873
873
  * <p>A union type containing information related to the trigger.</p>
@@ -934,12 +934,12 @@ export interface AssistantSummary {
934
934
  * @public
935
935
  * <p>The type of the assistant.</p>
936
936
  */
937
- type: AssistantType | string | undefined;
937
+ type: AssistantType | undefined;
938
938
  /**
939
939
  * @public
940
940
  * <p>The status of the assistant.</p>
941
941
  */
942
- status: AssistantStatus | string | undefined;
942
+ status: AssistantStatus | undefined;
943
943
  /**
944
944
  * @public
945
945
  * <p>The description of the assistant.</p>
@@ -1120,12 +1120,12 @@ export interface Filter {
1120
1120
  * @public
1121
1121
  * <p>The field on which to filter.</p>
1122
1122
  */
1123
- field: FilterField | string | undefined;
1123
+ field: FilterField | undefined;
1124
1124
  /**
1125
1125
  * @public
1126
1126
  * <p>The operator to use for comparing the field’s value with the provided value.</p>
1127
1127
  */
1128
- operator: FilterOperator | string | undefined;
1128
+ operator: FilterOperator | undefined;
1129
1129
  /**
1130
1130
  * @public
1131
1131
  * <p>The desired field value on which to filter.</p>
@@ -1443,7 +1443,7 @@ export interface ContentData {
1443
1443
  * @public
1444
1444
  * <p>The status of the content.</p>
1445
1445
  */
1446
- status: ContentStatus | string | undefined;
1446
+ status: ContentStatus | undefined;
1447
1447
  /**
1448
1448
  * @public
1449
1449
  * <p>A key/value map to store attributes without affecting tagging or recommendations.
@@ -1590,7 +1590,7 @@ export interface ContentSummary {
1590
1590
  * @public
1591
1591
  * <p>The status of the content.</p>
1592
1592
  */
1593
- status: ContentStatus | string | undefined;
1593
+ status: ContentStatus | undefined;
1594
1594
  /**
1595
1595
  * @public
1596
1596
  * <p>A key/value map to store attributes without affecting tagging or recommendations.
@@ -1822,7 +1822,7 @@ export interface CreateKnowledgeBaseRequest {
1822
1822
  * EXTERNAL knowledge bases support integrations with third-party systems whose content is
1823
1823
  * synchronized automatically. </p>
1824
1824
  */
1825
- knowledgeBaseType: KnowledgeBaseType | string | undefined;
1825
+ knowledgeBaseType: KnowledgeBaseType | undefined;
1826
1826
  /**
1827
1827
  * @public
1828
1828
  * <p>The source of the knowledge base content. Only set this argument for EXTERNAL knowledge
@@ -1890,12 +1890,12 @@ export interface KnowledgeBaseData {
1890
1890
  * @public
1891
1891
  * <p>The type of knowledge base.</p>
1892
1892
  */
1893
- knowledgeBaseType: KnowledgeBaseType | string | undefined;
1893
+ knowledgeBaseType: KnowledgeBaseType | undefined;
1894
1894
  /**
1895
1895
  * @public
1896
1896
  * <p>The status of the knowledge base.</p>
1897
1897
  */
1898
- status: KnowledgeBaseStatus | string | undefined;
1898
+ status: KnowledgeBaseStatus | undefined;
1899
1899
  /**
1900
1900
  * @public
1901
1901
  * <p>An epoch timestamp indicating the most recent content modification inside the knowledge
@@ -2013,12 +2013,12 @@ export interface KnowledgeBaseSummary {
2013
2013
  * @public
2014
2014
  * <p>The type of knowledge base.</p>
2015
2015
  */
2016
- knowledgeBaseType: KnowledgeBaseType | string | undefined;
2016
+ knowledgeBaseType: KnowledgeBaseType | undefined;
2017
2017
  /**
2018
2018
  * @public
2019
2019
  * <p>The status of the knowledge base summary.</p>
2020
2020
  */
2021
- status: KnowledgeBaseStatus | string | undefined;
2021
+ status: KnowledgeBaseStatus | undefined;
2022
2022
  /**
2023
2023
  * @public
2024
2024
  * <p>Configuration information about the external data source.</p>
@@ -44,7 +44,7 @@ export type AssociationType =
44
44
  (typeof AssociationType)[keyof typeof AssociationType];
45
45
  export interface CreateAssistantAssociationRequest {
46
46
  assistantId: string | undefined;
47
- associationType: AssociationType | string | undefined;
47
+ associationType: AssociationType | undefined;
48
48
  association: AssistantAssociationInputData | undefined;
49
49
  clientToken?: string;
50
50
  tags?: Record<string, string>;
@@ -79,7 +79,7 @@ export interface AssistantAssociationData {
79
79
  assistantAssociationArn: string | undefined;
80
80
  assistantId: string | undefined;
81
81
  assistantArn: string | undefined;
82
- associationType: AssociationType | string | undefined;
82
+ associationType: AssociationType | undefined;
83
83
  associationData: AssistantAssociationOutputData | undefined;
84
84
  tags?: Record<string, string>;
85
85
  }
@@ -130,7 +130,7 @@ export interface AssistantAssociationSummary {
130
130
  assistantAssociationArn: string | undefined;
131
131
  assistantId: string | undefined;
132
132
  assistantArn: string | undefined;
133
- associationType: AssociationType | string | undefined;
133
+ associationType: AssociationType | undefined;
134
134
  associationData: AssistantAssociationOutputData | undefined;
135
135
  tags?: Record<string, string>;
136
136
  }
@@ -148,7 +148,7 @@ export type AssistantType = (typeof AssistantType)[keyof typeof AssistantType];
148
148
  export interface CreateAssistantRequest {
149
149
  clientToken?: string;
150
150
  name: string | undefined;
151
- type: AssistantType | string | undefined;
151
+ type: AssistantType | undefined;
152
152
  description?: string;
153
153
  tags?: Record<string, string>;
154
154
  serverSideEncryptionConfiguration?: ServerSideEncryptionConfiguration;
@@ -170,8 +170,8 @@ export interface AssistantData {
170
170
  assistantId: string | undefined;
171
171
  assistantArn: string | undefined;
172
172
  name: string | undefined;
173
- type: AssistantType | string | undefined;
174
- status: AssistantStatus | string | undefined;
173
+ type: AssistantType | undefined;
174
+ status: AssistantStatus | undefined;
175
175
  description?: string;
176
176
  tags?: Record<string, string>;
177
177
  serverSideEncryptionConfiguration?: ServerSideEncryptionConfiguration;
@@ -231,8 +231,8 @@ export interface RecommendationData {
231
231
  recommendationId: string | undefined;
232
232
  document: Document | undefined;
233
233
  relevanceScore?: number;
234
- relevanceLevel?: RelevanceLevel | string;
235
- type?: RecommendationType | string;
234
+ relevanceLevel?: RelevanceLevel;
235
+ type?: RecommendationType;
236
236
  }
237
237
  export interface QueryRecommendationTriggerData {
238
238
  text?: string;
@@ -269,8 +269,8 @@ export type RecommendationTriggerType =
269
269
  (typeof RecommendationTriggerType)[keyof typeof RecommendationTriggerType];
270
270
  export interface RecommendationTrigger {
271
271
  id: string | undefined;
272
- type: RecommendationTriggerType | string | undefined;
273
- source: RecommendationSourceType | string | undefined;
272
+ type: RecommendationTriggerType | undefined;
273
+ source: RecommendationSourceType | undefined;
274
274
  data: RecommendationTriggerData | undefined;
275
275
  recommendationIds: string[] | undefined;
276
276
  }
@@ -286,8 +286,8 @@ export interface AssistantSummary {
286
286
  assistantId: string | undefined;
287
287
  assistantArn: string | undefined;
288
288
  name: string | undefined;
289
- type: AssistantType | string | undefined;
290
- status: AssistantStatus | string | undefined;
289
+ type: AssistantType | undefined;
290
+ status: AssistantStatus | undefined;
291
291
  description?: string;
292
292
  tags?: Record<string, string>;
293
293
  serverSideEncryptionConfiguration?: ServerSideEncryptionConfiguration;
@@ -335,8 +335,8 @@ export declare const FilterOperator: {
335
335
  export type FilterOperator =
336
336
  (typeof FilterOperator)[keyof typeof FilterOperator];
337
337
  export interface Filter {
338
- field: FilterField | string | undefined;
339
- operator: FilterOperator | string | undefined;
338
+ field: FilterField | undefined;
339
+ operator: FilterOperator | undefined;
340
340
  value: string | undefined;
341
341
  }
342
342
  export interface SearchExpression {
@@ -415,7 +415,7 @@ export interface ContentData {
415
415
  revisionId: string | undefined;
416
416
  title: string | undefined;
417
417
  contentType: string | undefined;
418
- status: ContentStatus | string | undefined;
418
+ status: ContentStatus | undefined;
419
419
  metadata: Record<string, string> | undefined;
420
420
  tags?: Record<string, string>;
421
421
  linkOutUri?: string;
@@ -450,7 +450,7 @@ export interface ContentSummary {
450
450
  revisionId: string | undefined;
451
451
  title: string | undefined;
452
452
  contentType: string | undefined;
453
- status: ContentStatus | string | undefined;
453
+ status: ContentStatus | undefined;
454
454
  metadata: Record<string, string> | undefined;
455
455
  tags?: Record<string, string>;
456
456
  }
@@ -516,7 +516,7 @@ export declare namespace SourceConfiguration {
516
516
  export interface CreateKnowledgeBaseRequest {
517
517
  clientToken?: string;
518
518
  name: string | undefined;
519
- knowledgeBaseType: KnowledgeBaseType | string | undefined;
519
+ knowledgeBaseType: KnowledgeBaseType | undefined;
520
520
  sourceConfiguration?: SourceConfiguration;
521
521
  renderingConfiguration?: RenderingConfiguration;
522
522
  serverSideEncryptionConfiguration?: ServerSideEncryptionConfiguration;
@@ -537,8 +537,8 @@ export interface KnowledgeBaseData {
537
537
  knowledgeBaseId: string | undefined;
538
538
  knowledgeBaseArn: string | undefined;
539
539
  name: string | undefined;
540
- knowledgeBaseType: KnowledgeBaseType | string | undefined;
541
- status: KnowledgeBaseStatus | string | undefined;
540
+ knowledgeBaseType: KnowledgeBaseType | undefined;
541
+ status: KnowledgeBaseStatus | undefined;
542
542
  lastContentModificationTime?: Date;
543
543
  sourceConfiguration?: SourceConfiguration;
544
544
  renderingConfiguration?: RenderingConfiguration;
@@ -567,8 +567,8 @@ export interface KnowledgeBaseSummary {
567
567
  knowledgeBaseId: string | undefined;
568
568
  knowledgeBaseArn: string | undefined;
569
569
  name: string | undefined;
570
- knowledgeBaseType: KnowledgeBaseType | string | undefined;
571
- status: KnowledgeBaseStatus | string | undefined;
570
+ knowledgeBaseType: KnowledgeBaseType | undefined;
571
+ status: KnowledgeBaseStatus | undefined;
572
572
  sourceConfiguration?: SourceConfiguration;
573
573
  renderingConfiguration?: RenderingConfiguration;
574
574
  serverSideEncryptionConfiguration?: ServerSideEncryptionConfiguration;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-wisdom",
3
3
  "description": "AWS SDK for JavaScript Wisdom Client for Node.js, Browser and React Native",
4
- "version": "3.428.0",
4
+ "version": "3.429.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,9 +21,9 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.428.0",
25
- "@aws-sdk/credential-provider-node": "3.428.0",
26
- "@aws-sdk/middleware-host-header": "3.428.0",
24
+ "@aws-sdk/client-sts": "3.429.0",
25
+ "@aws-sdk/credential-provider-node": "3.429.0",
26
+ "@aws-sdk/middleware-host-header": "3.429.0",
27
27
  "@aws-sdk/middleware-logger": "3.428.0",
28
28
  "@aws-sdk/middleware-recursion-detection": "3.428.0",
29
29
  "@aws-sdk/middleware-signing": "3.428.0",
@@ -38,7 +38,7 @@
38
38
  "@smithy/hash-node": "^2.0.11",
39
39
  "@smithy/invalid-dependency": "^2.0.11",
40
40
  "@smithy/middleware-content-length": "^2.0.13",
41
- "@smithy/middleware-endpoint": "^2.1.0",
41
+ "@smithy/middleware-endpoint": "^2.1.1",
42
42
  "@smithy/middleware-retry": "^2.0.16",
43
43
  "@smithy/middleware-serde": "^2.0.11",
44
44
  "@smithy/middleware-stack": "^2.0.5",