diff --git a/package.json b/package.json index 03ae68a..ded620b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@devrev/api", - "version": "0.0.14", + "version": "0.0.15", "private": false, "repository": "https://github.com/devrev/sdk-typescript", "main": "./index.js", diff --git a/reference.md b/reference.md index 0dbc2a3..d0d4a16 100644 --- a/reference.md +++ b/reference.md @@ -4761,3 +4761,7918 @@ await client.slas.assign({ + + +
client.slas.create({ ...params }) -> DevRev.SlasCreateResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Creates an SLA in draft status. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.slas.create({ + name: "name", +}); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.SlasCreateRequest` + +
+
+ +
+
+ +**requestOptions:** `Slas.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.slas.get({ ...params }) -> DevRev.SlasGetResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Gets an SLA. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.slas.get({ + id: "id", +}); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.SlasGetQuery` + +
+
+ +
+
+ +**requestOptions:** `Slas.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.slas.getPost({ ...params }) -> DevRev.SlasGetResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Gets an SLA. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.slas.getPost({ + id: "id", +}); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.SlasGetRequest` + +
+
+ +
+
+ +**requestOptions:** `Slas.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.slas.list({ ...params }) -> DevRev.SlasListResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Lists SLAs matching a filter. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.slas.list(); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.SlasListQuery` + +
+
+ +
+
+ +**requestOptions:** `Slas.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.slas.listPost({ ...params }) -> DevRev.SlasListResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Lists SLAs matching a filter. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.slas.listPost(); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.SlasListRequest` + +
+
+ +
+
+ +**requestOptions:** `Slas.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.slas.transition({ ...params }) -> DevRev.SlasTransitionResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Changes the status of an SLA. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.slas.transition({ + id: "id", + status: DevRev.SlaStatus.Archived, +}); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.SlasTransitionRequest` + +
+
+ +
+
+ +**requestOptions:** `Slas.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.slas.update({ ...params }) -> DevRev.SlasUpdateResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Updates a draft SLA. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.slas.update({ + id: "id", +}); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.SlasUpdateRequest` + +
+
+ +
+
+ +**requestOptions:** `Slas.RequestOptions` + +
+
+
+
+ +
+
+
+ +## product-usage + +
client.productUsage.metricsDevrevIngest({ ...params }) -> void +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Ingest endpoint for DevRev metrics data from clients. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.productUsage.metricsDevrevIngest({ + metrics: [ + { + accountRef: "account_ref", + dataPoints: [ + { + timestamp: new Date("2023-01-01T12:00:00.000Z"), + value: 1.1, + }, + ], + name: "name", + }, + ], +}); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.MetricsDataIngestRequest` + +
+
+ +
+
+ +**requestOptions:** `ProductUsage.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.productUsage.uomsCount({ ...params }) -> DevRev.UomsCountResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Counts the number of Unit of Measurements based on the given filters. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.productUsage.uomsCount(); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.UomsCountQuery` + +
+
+ +
+
+ +**requestOptions:** `ProductUsage.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.productUsage.uomsCountPost({ ...params }) -> DevRev.UomsCountResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Counts the number of Unit of Measurements based on the given filters. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.productUsage.uomsCountPost(); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.UomsCountRequest` + +
+
+ +
+
+ +**requestOptions:** `ProductUsage.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.productUsage.uomsCreate({ ...params }) -> DevRev.UomsCreateResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Creates a Unit of Measurement on a part. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.productUsage.uomsCreate({ + aggregationDetail: { + aggregationType: DevRev.AggregationDetailAggregationType.Duration, + uniqueDimension: "string", + }, + description: "string", + dimensions: ["string"], + metricName: "string", + name: "string", + partId: "string", + productId: "string", + unit: { + type: DevRev.UnitType.Boolean, + name: "string", + }, +}); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.UomsCreateRequest` + +
+
+ +
+
+ +**requestOptions:** `ProductUsage.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.productUsage.uomsDelete({ ...params }) -> void +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Deletes a Unit of Measurement. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.productUsage.uomsDelete({ + id: "id", +}); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.UomsDeleteRequest` + +
+
+ +
+
+ +**requestOptions:** `ProductUsage.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.productUsage.uomsGet({ ...params }) -> DevRev.UomsGetResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Gets a Unit of Measurement. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.productUsage.uomsGet({ + id: "string", +}); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.UomsGetQuery` + +
+
+ +
+
+ +**requestOptions:** `ProductUsage.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.productUsage.uomsGetPost({ ...params }) -> DevRev.UomsGetResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Gets a Unit of Measurement. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.productUsage.uomsGetPost({ + id: "string", +}); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.UomsGetRequest` + +
+
+ +
+
+ +**requestOptions:** `ProductUsage.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.productUsage.uomsList({ ...params }) -> DevRev.UomsListResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Gets the Unit of Measurements based on the given filters. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.productUsage.uomsList(); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.UomsListQuery` + +
+
+ +
+
+ +**requestOptions:** `ProductUsage.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.productUsage.uomsListPost({ ...params }) -> DevRev.UomsListResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Gets the Unit of Measurements based on the given filters. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.productUsage.uomsListPost(); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.UomsListRequest` + +
+
+ +
+
+ +**requestOptions:** `ProductUsage.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.productUsage.uomsUpdate({ ...params }) -> DevRev.UomsUpdateResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Updates a Unit of Measurement. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.productUsage.uomsUpdate({ + aggregationType: DevRev.AggregationDetailAggregationType.Duration, + description: "string", + dimensions: { + add: ["string"], + remove: ["string"], + }, + id: "string", + isEnabled: true, + name: "string", + partId: "string", + productId: "string", + unit: "string", +}); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.UomsUpdateRequest` + +
+
+ +
+
+ +**requestOptions:** `ProductUsage.RequestOptions` + +
+
+
+
+ +
+
+
+ +## schedules + +
client.schedules.orgScheduleFragmentsCreate({ ...params }) -> DevRev.OrgScheduleFragmentsCreateResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Creates an organization schedule fragment. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.schedules.orgScheduleFragmentsCreate({ + from: new Date("2023-01-01T12:00:00.000Z"), + intervals: [ + { + from: new Date("2023-01-01T12:00:00.000Z"), + name: "name", + }, + ], + name: "name", + to: new Date("2023-01-01T12:00:00.000Z"), +}); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.OrgScheduleFragmentsCreateRequest` + +
+
+ +
+
+ +**requestOptions:** `Schedules.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.schedules.orgScheduleFragmentsGet({ ...params }) -> DevRev.OrgScheduleFragmentsGetResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Gets an organization schedule fragment. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.schedules.orgScheduleFragmentsGet({ + id: "id", +}); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.OrgScheduleFragmentsGetQuery` + +
+
+ +
+
+ +**requestOptions:** `Schedules.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.schedules.orgScheduleFragmentsGetPost({ ...params }) -> DevRev.OrgScheduleFragmentsGetResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Gets an organization schedule fragment. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.schedules.orgScheduleFragmentsGetPost({ + id: "id", +}); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.OrgScheduleFragmentsGetRequest` + +
+
+ +
+
+ +**requestOptions:** `Schedules.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.schedules.orgScheduleFragmentsTransition({ ...params }) -> DevRev.OrgScheduleFragmentsTransitionResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Changes stage of an organization schedule fragment. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.schedules.orgScheduleFragmentsTransition({ + id: "id", + status: DevRev.OrgScheduleFragmentStatus.Archived, +}); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.OrgScheduleFragmentsTransitionRequest` + +
+
+ +
+
+ +**requestOptions:** `Schedules.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.schedules.create({ ...params }) -> DevRev.OrgSchedulesCreateResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Creates an organization schedule with a default weekly organization +schedule and a list of organization schedule fragments. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.schedules.create({ + name: "name", + timezone: "timezone", +}); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.OrgSchedulesCreateRequest` + +
+
+ +
+
+ +**requestOptions:** `Schedules.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.schedules.get({ ...params }) -> DevRev.OrgSchedulesGetResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Gets an organization schedule. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.schedules.get({ + id: "id", +}); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.OrgSchedulesGetQuery` + +
+
+ +
+
+ +**requestOptions:** `Schedules.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.schedules.getPost({ ...params }) -> DevRev.OrgSchedulesGetResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Gets an organization schedule. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.schedules.getPost({ + id: "id", +}); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.OrgSchedulesGetRequest` + +
+
+ +
+
+ +**requestOptions:** `Schedules.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.schedules.list({ ...params }) -> DevRev.OrgSchedulesListResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Gets list of organization schedules. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.schedules.list(); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.OrgSchedulesListQuery` + +
+
+ +
+
+ +**requestOptions:** `Schedules.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.schedules.listPost({ ...params }) -> DevRev.OrgSchedulesListResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Gets list of organization schedules. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.schedules.listPost(); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.OrgSchedulesListRequest` + +
+
+ +
+
+ +**requestOptions:** `Schedules.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.schedules.setFuture({ ...params }) -> DevRev.OrgSchedulesSetFutureResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Sets next organization schedule fragment which must begin the day the +last existing fragment ends. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.schedules.setFuture({ + id: "id", + orgScheduleFragmentId: "org_schedule_fragment_id", +}); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.OrgSchedulesSetFutureRequest` + +
+
+ +
+
+ +**requestOptions:** `Schedules.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.schedules.transition({ ...params }) -> DevRev.OrgSchedulesTransitionResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Publishes or archives an organization schedule. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.schedules.transition({ + id: "id", + status: DevRev.OrgScheduleStatus.Archived, +}); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.OrgSchedulesTransitionRequest` + +
+
+ +
+
+ +**requestOptions:** `Schedules.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.schedules.update({ ...params }) -> DevRev.OrgSchedulesUpdateResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Updates an organization schedule. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.schedules.update({ + id: "id", +}); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.OrgSchedulesUpdateRequest` + +
+
+ +
+
+ +**requestOptions:** `Schedules.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.schedules.fragmentsCreate() -> void +
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.schedules.fragmentsCreate(); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**requestOptions:** `Schedules.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.schedules.fragmentsGet() -> void +
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.schedules.fragmentsGet(); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**requestOptions:** `Schedules.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.schedules.fragmentsGetPost() -> void +
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.schedules.fragmentsGetPost(); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**requestOptions:** `Schedules.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.schedules.fragmentsTransition() -> void +
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.schedules.fragmentsTransition(); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**requestOptions:** `Schedules.RequestOptions` + +
+
+
+
+ +
+
+
+ +## parts + +
client.parts.create({ ...params }) -> DevRev.PartsCreateResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Creates new [part](https://devrev.ai/docs/product/parts). + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.parts.create({ + type: "capability", + artifacts: ["string"], + customFields: { + string: { + key: "value", + }, + }, + customSchemaFragments: ["string"], + description: "string", + name: "string", + ownedBy: ["string"], + parentPart: ["string"], +}); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.PartsCreateRequest` + +
+
+ +
+
+ +**requestOptions:** `Parts.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.parts.delete({ ...params }) -> DevRev.PartsDeleteResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Deletes a [part](https://devrev.ai/docs/product/parts). + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.parts.delete({ + id: "PROD-12345", +}); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.PartsDeleteRequest` + +
+
+ +
+
+ +**requestOptions:** `Parts.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.parts.get({ ...params }) -> DevRev.PartsGetResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Gets a [part's](https://devrev.ai/docs/product/parts) information. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.parts.get({ + id: "string", +}); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.PartsGetQuery` + +
+
+ +
+
+ +**requestOptions:** `Parts.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.parts.getPost({ ...params }) -> DevRev.PartsGetResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Gets a [part's](https://devrev.ai/docs/product/parts) information. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.parts.getPost({ + id: "string", +}); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.PartsGetRequest` + +
+
+ +
+
+ +**requestOptions:** `Parts.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.parts.list({ ...params }) -> DevRev.PartsListResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Lists a collection of [parts](https://devrev.ai/docs/product/parts). + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.parts.list(); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.PartsListQuery` + +
+
+ +
+
+ +**requestOptions:** `Parts.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.parts.listPost({ ...params }) -> DevRev.PartsListResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Lists a collection of [parts](https://devrev.ai/docs/product/parts). + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.parts.listPost(); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.PartsListRequest` + +
+
+ +
+
+ +**requestOptions:** `Parts.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.parts.update({ ...params }) -> DevRev.PartsUpdateResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Updates a [part's](https://devrev.ai/docs/product/parts) information. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.parts.update({ + type: "capability", + value: { + string: { + key: "value", + }, + }, +}); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.PartsUpdateRequest` + +
+
+ +
+
+ +**requestOptions:** `Parts.RequestOptions` + +
+
+
+
+ +
+
+
+ +## QuestionAnswers + +
client.questionAnswers.create({ ...params }) -> DevRev.QuestionAnswersCreateResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Creates a question-answer. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.questionAnswers.create({ + answer: "answer", + appliesToParts: ["PROD-12345"], + ownedBy: ["DEVU-12345"], + question: "question", + status: DevRev.QuestionAnswerStatus.Archived, +}); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.QuestionAnswersCreateRequest` + +
+
+ +
+
+ +**requestOptions:** `QuestionAnswers.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.questionAnswers.delete({ ...params }) -> void +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Deletes a question-answer. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.questionAnswers.delete({ + id: "id", +}); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.QuestionAnswersDeleteRequest` + +
+
+ +
+
+ +**requestOptions:** `QuestionAnswers.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.questionAnswers.get({ ...params }) -> DevRev.QuestionAnswersGetResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Gets a question-answer. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.questionAnswers.get({ + id: "id", +}); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.GetQuestionAnswerQuery` + +
+
+ +
+
+ +**requestOptions:** `QuestionAnswers.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.questionAnswers.getPost({ ...params }) -> DevRev.QuestionAnswersGetResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Gets a question-answer. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.questionAnswers.getPost({ + id: "id", +}); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.QuestionAnswersGetRequest` + +
+
+ +
+
+ +**requestOptions:** `QuestionAnswers.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.questionAnswers.list({ ...params }) -> DevRev.QuestionAnswersListResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Lists a collection of question-answers. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.questionAnswers.list(); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.ListQuestionAnswersQuery` + +
+
+ +
+
+ +**requestOptions:** `QuestionAnswers.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.questionAnswers.listPost({ ...params }) -> DevRev.QuestionAnswersListResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Lists a collection of question-answers. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.questionAnswers.listPost(); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.QuestionAnswersListRequest` + +
+
+ +
+
+ +**requestOptions:** `QuestionAnswers.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.questionAnswers.update({ ...params }) -> DevRev.QuestionAnswersUpdateResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Updates a question-answer. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.questionAnswers.update({ + id: "id", +}); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.QuestionAnswersUpdateRequest` + +
+
+ +
+
+ +**requestOptions:** `QuestionAnswers.RequestOptions` + +
+
+
+
+ +
+
+
+ +## rev-orgs + +
client.revOrgs.create({ ...params }) -> DevRev.RevOrgsCreateResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Creates a Rev organization in the authenticated user's Dev +organization. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.revOrgs.create({ + displayName: "display_name", +}); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.RevOrgsCreateRequest` + +
+
+ +
+
+ +**requestOptions:** `RevOrgs.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.revOrgs.get({ ...params }) -> DevRev.RevOrgsGetResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Retrieves the Rev organization's information. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.revOrgs.get({ + account: "ACC-12345", + id: "REV-AbCdEfGh", +}); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.RevOrgsGetQuery` + +
+
+ +
+
+ +**requestOptions:** `RevOrgs.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.revOrgs.getPost({ ...params }) -> DevRev.RevOrgsGetResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Retrieves the Rev organization's information. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.revOrgs.getPost(); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.RevOrgsGetRequest` + +
+
+ +
+
+ +**requestOptions:** `RevOrgs.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.revOrgs.list({ ...params }) -> DevRev.RevOrgsListResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Gets the list of Rev organizations' information belonging to the +authenticated user's Dev Organization which the user is also authorized +to access. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.revOrgs.list({ + createdDateAfter: new Date("2023-01-01T12:00:00.000Z"), + createdDateBefore: new Date("2023-01-01T12:00:00.000Z"), + modifiedDateAfter: new Date("2023-01-01T12:00:00.000Z"), + modifiedDateBefore: new Date("2023-01-01T12:00:00.000Z"), +}); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.RevOrgsListQuery` + +
+
+ +
+
+ +**requestOptions:** `RevOrgs.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.revOrgs.listPost({ ...params }) -> DevRev.RevOrgsListResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Gets the list of Rev organizations' information belonging to the +authenticated user's Dev Organization which the user is also authorized +to access. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.revOrgs.listPost(); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.RevOrgsListRequest` + +
+
+ +
+
+ +**requestOptions:** `RevOrgs.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.revOrgs.update({ ...params }) -> DevRev.RevOrgsUpdateResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Updates the Rev organization's information. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.revOrgs.update({ + id: "REV-AbCdEfGh", +}); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.RevOrgsUpdateRequest` + +
+
+ +
+
+ +**requestOptions:** `RevOrgs.RequestOptions` + +
+
+
+
+ +
+
+
+ +## rev-users + +
client.revUsers.create({ ...params }) -> DevRev.RevUsersCreateResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Creates a Rev user for a Rev organization. Rev user can be a customer +or a lead of an organization. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.revUsers.create(); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.RevUsersCreateRequest` + +
+
+ +
+
+ +**requestOptions:** `RevUsers.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.revUsers.delete({ ...params }) -> DevRev.RevUsersDeleteResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Deletes a Rev user. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.revUsers.delete({ + id: "id", +}); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.RevUsersDeleteRequest` + +
+
+ +
+
+ +**requestOptions:** `RevUsers.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.revUsers.get({ ...params }) -> DevRev.RevUsersGetResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Returns the Rev user of a Rev organization by its ID. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.revUsers.get({ + id: "id", +}); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.RevUsersGetQuery` + +
+
+ +
+
+ +**requestOptions:** `RevUsers.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.revUsers.getPost({ ...params }) -> DevRev.RevUsersGetResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Returns the Rev user of a Rev organization by its ID. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.revUsers.getPost({ + id: "id", +}); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.RevUsersGetRequest` + +
+
+ +
+
+ +**requestOptions:** `RevUsers.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.revUsers.linkRevUserToRevOrg({ ...params }) -> DevRev.LinkRevUserToRevOrgResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Links a rev user to a rev org. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.revUsers.linkRevUserToRevOrg(); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.LinkRevUserToRevOrgRequest` + +
+
+ +
+
+ +**requestOptions:** `RevUsers.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.revUsers.list({ ...params }) -> DevRev.RevUsersListResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Returns a list of all Rev Users belonging to the authenticated user's +Dev Organization. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.revUsers.list({ + createdDateAfter: new Date("2023-01-01T12:00:00.000Z"), + createdDateBefore: new Date("2023-01-01T12:00:00.000Z"), + modifiedDateAfter: new Date("2023-01-01T12:00:00.000Z"), + modifiedDateBefore: new Date("2023-01-01T12:00:00.000Z"), +}); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.RevUsersListQuery` + +
+
+ +
+
+ +**requestOptions:** `RevUsers.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.revUsers.listPost({ ...params }) -> DevRev.RevUsersListResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Returns a list of all Rev Users belonging to the authenticated user's +Dev Organization. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.revUsers.listPost(); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.RevUsersListRequest` + +
+
+ +
+
+ +**requestOptions:** `RevUsers.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.revUsers.unlinkRevUserFromRevOrg({ ...params }) -> DevRev.UnlinkRevUserFromRevOrgResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Unlinks a rev user from a rev org. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.revUsers.unlinkRevUserFromRevOrg(); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.UnlinkRevUserFromRevOrgRequest` + +
+
+ +
+
+ +**requestOptions:** `RevUsers.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.revUsers.update({ ...params }) -> DevRev.RevUsersUpdateResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Updates a Rev user. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.revUsers.update({ + id: "id", +}); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.RevUsersUpdateRequest` + +
+
+ +
+
+ +**requestOptions:** `RevUsers.RequestOptions` + +
+
+
+
+ +
+
+
+ +## customization + +
client.customization.aggregatedSchemaGet({ ...params }) -> DevRev.AggregatedSchemaGetResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Gets the aggregated schema. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.customization.aggregatedSchemaGet({ + customSchemaFragmentIds: "string", + leafType: "string", + stockSchemaFragmentId: "string", +}); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.AggregatedSchemaGetQuery` + +
+
+ +
+
+ +**requestOptions:** `Customization.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.customization.aggregatedSchemaGetPost({ ...params }) -> DevRev.AggregatedSchemaGetResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Gets the aggregated schema. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.customization.aggregatedSchemaGetPost({ + customSchemaFragmentIds: ["custom_schema_fragment_ids"], +}); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.AggregatedSchemaGetRequest` + +
+
+ +
+
+ +**requestOptions:** `Customization.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.customization.customSchemaFragmentsGet({ ...params }) -> DevRev.CustomSchemaFragmentsGetResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Gets a custom schema fragment. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.customization.customSchemaFragmentsGet({ + id: "string", +}); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.CustomSchemaFragmentsGetQuery` + +
+
+ +
+
+ +**requestOptions:** `Customization.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.customization.customSchemaFragmentsGetPost({ ...params }) -> DevRev.CustomSchemaFragmentsGetResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Gets a custom schema fragment. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.customization.customSchemaFragmentsGetPost({ + id: "string", +}); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.CustomSchemaFragmentsGetRequest` + +
+
+ +
+
+ +**requestOptions:** `Customization.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.customization.customSchemaFragmentsList({ ...params }) -> DevRev.CustomSchemaFragmentsListResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Lists custom schema fragments. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.customization.customSchemaFragmentsList(); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.CustomSchemaFragmentsListQuery` + +
+
+ +
+
+ +**requestOptions:** `Customization.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.customization.customSchemaFragmentsListPost({ ...params }) -> DevRev.CustomSchemaFragmentsListResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Lists custom schema fragments. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.customization.customSchemaFragmentsListPost(); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.CustomSchemaFragmentsListRequest` + +
+
+ +
+
+ +**requestOptions:** `Customization.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.customization.customSchemaFragmentsSet({ ...params }) -> DevRev.CustomSchemaFragmentsSetResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Creates or updates a custom schema fragment. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.customization.customSchemaFragmentsSet({ + type: "app_fragment", + conditions: [ + { + string: { + key: "value", + }, + }, + ], + deletedFields: ["string"], + deprecated: true, + description: "string", + fields: [ + { + fieldType: "array", + value: { + key: "value", + }, + }, + ], + isCustomLeafType: true, + leafType: "string", + app: "string", +}); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.CustomSchemaFragmentsSetRequest` + +
+
+ +
+
+ +**requestOptions:** `Customization.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.customization.stockSchemaFragmentsGet({ ...params }) -> DevRev.StockSchemaFragmentsGetResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Gets a stock schema fragment. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.customization.stockSchemaFragmentsGet(); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.StockSchemaFragmentsGetQuery` + +
+
+ +
+
+ +**requestOptions:** `Customization.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.customization.stockSchemaFragmentsGetPost({ ...params }) -> DevRev.StockSchemaFragmentsGetResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Gets a stock schema fragment. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.customization.stockSchemaFragmentsGetPost(); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.StockSchemaFragmentsGetRequest` + +
+
+ +
+
+ +**requestOptions:** `Customization.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.customization.stockSchemaFragmentsList({ ...params }) -> DevRev.StockSchemaFragmentsListResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Lists stock schema fragments. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.customization.stockSchemaFragmentsList(); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.StockSchemaFragmentsListQuery` + +
+
+ +
+
+ +**requestOptions:** `Customization.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.customization.stockSchemaFragmentsListPost({ ...params }) -> DevRev.StockSchemaFragmentsListResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Lists stock schema fragments. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.customization.stockSchemaFragmentsListPost(); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.StockSchemaFragmentsListRequest` + +
+
+ +
+
+ +**requestOptions:** `Customization.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.customization.subtypesList({ ...params }) -> DevRev.SubtypesListResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Lists subtypes. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.customization.subtypesList(); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.SubtypesListQuery` + +
+
+ +
+
+ +**requestOptions:** `Customization.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.customization.subtypesListPost({ ...params }) -> DevRev.SubtypesListResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Lists subtypes. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.customization.subtypesListPost(); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.SubtypesListRequest` + +
+
+ +
+
+ +**requestOptions:** `Customization.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.customization.customStagesCreate({ ...params }) -> DevRev.CustomStagesCreateResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Creates a custom stage. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.customization.customStagesCreate({ + name: "name", + ordinal: 1, + state: "state", +}); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.CustomStagesCreateRequest` + +
+
+ +
+
+ +**requestOptions:** `Customization.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.customization.customStagesGet({ ...params }) -> DevRev.CustomStagesGetResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Gets a custom stage. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.customization.customStagesGet({ + id: "id", +}); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.CustomStagesGetQuery` + +
+
+ +
+
+ +**requestOptions:** `Customization.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.customization.customStagesGetPost({ ...params }) -> DevRev.CustomStagesGetResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Gets a custom stage. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.customization.customStagesGetPost({ + id: "id", +}); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.CustomStagesGetRequest` + +
+
+ +
+
+ +**requestOptions:** `Customization.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.customization.customStagesList({ ...params }) -> DevRev.CustomStagesListResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Lists custom stages. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.customization.customStagesList(); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.CustomStagesListQuery` + +
+
+ +
+
+ +**requestOptions:** `Customization.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.customization.customStagesListPost({ ...params }) -> DevRev.CustomStagesListResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Lists custom stages. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.customization.customStagesListPost(); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.CustomStagesListRequest` + +
+
+ +
+
+ +**requestOptions:** `Customization.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.customization.customStagesUpdate({ ...params }) -> DevRev.CustomStagesUpdateResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Updates a custom stage. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.customization.customStagesUpdate({ + id: "id", +}); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.CustomStagesUpdateRequest` + +
+
+ +
+
+ +**requestOptions:** `Customization.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.customization.customStatesCreate({ ...params }) -> DevRev.CustomStatesCreateResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Creates a custom state. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.customization.customStatesCreate({ + name: "name", + ordinal: 1, +}); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.CustomStatesCreateRequest` + +
+
+ +
+
+ +**requestOptions:** `Customization.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.customization.customStatesGet({ ...params }) -> DevRev.CustomStatesGetResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Gets a custom state. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.customization.customStatesGet({ + id: "id", +}); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.CustomStatesGetQuery` + +
+
+ +
+
+ +**requestOptions:** `Customization.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.customization.customStatesGetPost({ ...params }) -> DevRev.CustomStatesGetResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Gets a custom state. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.customization.customStatesGetPost({ + id: "id", +}); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.CustomStatesGetRequest` + +
+
+ +
+
+ +**requestOptions:** `Customization.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.customization.customStatesList({ ...params }) -> DevRev.CustomStatesListResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Lists custom states. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.customization.customStatesList(); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.CustomStatesListQuery` + +
+
+ +
+
+ +**requestOptions:** `Customization.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.customization.customStatesListPost({ ...params }) -> DevRev.CustomStatesListResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Lists custom states. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.customization.customStatesListPost(); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.CustomStatesListRequest` + +
+
+ +
+
+ +**requestOptions:** `Customization.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.customization.customStatesUpdate({ ...params }) -> DevRev.CustomStatesUpdateResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Updates a custom state. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.customization.customStatesUpdate({ + id: "id", +}); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.CustomStatesUpdateRequest` + +
+
+ +
+
+ +**requestOptions:** `Customization.RequestOptions` + +
+
+
+
+ +
+
+
+ +## search + +
client.search.core({ ...params }) -> DevRev.SearchCoreResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Searches for records based on a given query. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.search.core({ + query: "query", +}); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.SearchCoreQuery` + +
+
+ +
+
+ +**requestOptions:** `Search.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.search.corePost({ ...params }) -> DevRev.SearchCoreResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Searches for records based on a given query. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.search.corePost({ + query: "query", +}); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.SearchCoreRequest` + +
+
+ +
+
+ +**requestOptions:** `Search.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.search.hybrid({ ...params }) -> DevRev.SearchHybridResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Performs search, using a combination of syntactic and semantic search. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.search.hybrid({ + namespace: DevRev.SearchHybridNamespace.Article, + query: "query", +}); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.SearchHybridQuery` + +
+
+ +
+
+ +**requestOptions:** `Search.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.search.hybridPost({ ...params }) -> DevRev.SearchHybridResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Performs search, using a combination of syntactic and semantic search. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.search.hybridPost({ + namespace: DevRev.SearchHybridNamespace.Article, + query: "query", +}); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.SearchHybridRequest` + +
+
+ +
+
+ +**requestOptions:** `Search.RequestOptions` + +
+
+
+
+ +
+
+
+ +## service-accounts + +
client.serviceAccounts.get({ ...params }) -> DevRev.ServiceAccountsGetResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Gets a service account. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.serviceAccounts.get({ + id: "id", +}); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.ServiceAccountsGetQuery` + +
+
+ +
+
+ +**requestOptions:** `ServiceAccounts.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.serviceAccounts.getPost({ ...params }) -> DevRev.ServiceAccountsGetResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Gets a service account. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.serviceAccounts.getPost({ + id: "id", +}); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.ServiceAccountsGetRequest` + +
+
+ +
+
+ +**requestOptions:** `ServiceAccounts.RequestOptions` + +
+
+
+
+ +
+
+
+ +## snap-ins + +
client.snapIns.resources({ ...params }) -> DevRev.SnapInsResourcesResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Gets snap-in resources for a user in a snap-in. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.snapIns.resources({ + id: "id", + user: "user", +}); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.SnapInsResourcesQuery` + +
+
+ +
+
+ +**requestOptions:** `SnapIns.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.snapIns.resourcesPost({ ...params }) -> DevRev.SnapInsResourcesResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Gets snap-in resources for a user in a snap-in. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.snapIns.resourcesPost({ + id: "id", + user: "user", +}); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.SnapInsResourcesRequest` + +
+
+ +
+
+ +**requestOptions:** `SnapIns.RequestOptions` + +
+
+
+
+ +
+
+
+ +## snap-widgets + +
client.snapWidgets.create({ ...params }) -> DevRev.SnapWidgetsCreateResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Create a snap widget object. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.snapWidgets.create({ + type: "email_preview", + name: "string", + namespace: DevRev.SnapWidgetNamespace.CommentSuggestionReplies, + status: DevRev.SnapWidgetStatus.Draft, + bcc: [ + { + address: "string", + name: "string", + user: "string", + }, + ], + cc: [ + { + address: "string", + name: "string", + user: "string", + }, + ], + from: [ + { + address: "string", + name: "string", + user: "string", + }, + ], + htmlBody: "string", + inReplyTo: "string", + inlines: [ + { + artifact: "string", + contentId: "string", + }, + ], + isSpam: true, + messageId: "string", + rawEmailArtifact: "string", + references: ["string"], + replyTo: [ + { + address: "string", + name: "string", + user: "string", + }, + ], + sentTimestamp: new Date("2024-01-15T09:30:00.000Z"), + subject: "string", + textBody: "string", + to: [ + { + address: "string", + name: "string", + user: "string", + }, + ], +}); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.SnapWidgetsCreateRequest` + +
+
+ +
+
+ +**requestOptions:** `SnapWidgets.RequestOptions` + +
+
+
+
+ +
+
+
+ +## surveys + +
client.surveys.create({ ...params }) -> DevRev.SurveysCreateResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Creates a schema for survey, which includes name and description of +schema. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.surveys.create({ + name: "name", +}); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.SurveysCreateRequest` + +
+
+ +
+
+ +**requestOptions:** `Surveys.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.surveys.delete({ ...params }) -> DevRev.SurveysDeleteResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Deletes the specified survey. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.surveys.delete({ + id: "id", +}); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.SurveysDeleteRequest` + +
+
+ +
+
+ +**requestOptions:** `Surveys.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.surveys.list({ ...params }) -> DevRev.SurveysListResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +List surveys requested by the user. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.surveys.list(); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.SurveysListQuery` + +
+
+ +
+
+ +**requestOptions:** `Surveys.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.surveys.listPost({ ...params }) -> DevRev.SurveysListResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +List surveys requested by the user. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.surveys.listPost(); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.SurveysListRequest` + +
+
+ +
+
+ +**requestOptions:** `Surveys.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.surveys.responsesList({ ...params }) -> DevRev.SurveysResponsesListResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +List survey responses requested by the user. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.surveys.responsesList(); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.SurveysResponsesListQuery` + +
+
+ +
+
+ +**requestOptions:** `Surveys.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.surveys.responsesListPost({ ...params }) -> DevRev.SurveysResponsesListResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +List survey responses requested by the user. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.surveys.responsesListPost(); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.SurveysResponsesListRequest` + +
+
+ +
+
+ +**requestOptions:** `Surveys.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.surveys.send({ ...params }) -> DevRev.SurveysSendResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Sends a survey on the specified channels. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.surveys.send({ + email: { + body: "body", + recipients: ["recipients"], + sender: "sender", + subject: "subject", + }, +}); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.SurveysSendRequest` + +
+
+ +
+
+ +**requestOptions:** `Surveys.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.surveys.submit({ ...params }) -> DevRev.SurveysSubmitResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Submits a user response to a survey, which is defined by the survey ID. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.surveys.submit({ + object: "ACC-12345", + survey: "survey", +}); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.SurveysSubmitRequest` + +
+
+ +
+
+ +**requestOptions:** `Surveys.RequestOptions` + +
+
+
+
+ +
+
+
+ +## sys-users + +
client.sysUsers.list({ ...params }) -> DevRev.SysUsersListResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Lists system users within your organization. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.sysUsers.list(); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.SysUsersListQuery` + +
+
+ +
+
+ +**requestOptions:** `SysUsers.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.sysUsers.listPost({ ...params }) -> DevRev.SysUsersListResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Lists system users within your organization. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.sysUsers.listPost(); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.SysUsersListRequest` + +
+
+ +
+
+ +**requestOptions:** `SysUsers.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.sysUsers.update({ ...params }) -> DevRev.SysUsersUpdateResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Updates the system user. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.sysUsers.update({ + id: "id", +}); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.SysUsersUpdateRequest` + +
+
+ +
+
+ +**requestOptions:** `SysUsers.RequestOptions` + +
+
+
+
+ +
+
+
+ +## timeline-entries + +
client.timelineEntries.create({ ...params }) -> DevRev.TimelineEntriesCreateResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Creates a new entry on an object's timeline. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.timelineEntries.create({ + type: "timeline_comment", + collections: [DevRev.TimelineEntriesCollection.Discussions], + expiresAt: new Date("2024-01-15T09:30:00.000Z"), + labels: ["string"], + object: "string", + privateTo: ["string"], + visibility: DevRev.TimelineEntryVisibility.External, + artifacts: ["string"], + body: "string", + bodyType: DevRev.TimelineCommentBodyType.SnapKit, + externalRef: "string", + linkPreviews: ["string"], + snapKitBody: {}, + snapWidgetBody: ["string"], +}); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.TimelineEntriesCreateRequest` + +
+
+ +
+
+ +**requestOptions:** `TimelineEntries.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.timelineEntries.list({ ...params }) -> DevRev.TimelineEntriesListResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Lists the timeline entries for an object. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.timelineEntries.list({ + object: "PROD-12345", +}); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.TimelineEntriesListQuery` + +
+
+ +
+
+ +**requestOptions:** `TimelineEntries.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.timelineEntries.listPost({ ...params }) -> DevRev.TimelineEntriesListResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Lists the timeline entries for an object. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.timelineEntries.listPost({ + object: "PROD-12345", +}); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.TimelineEntriesListRequest` + +
+
+ +
+
+ +**requestOptions:** `TimelineEntries.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.timelineEntries.update({ ...params }) -> DevRev.TimelineEntriesUpdateResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Updates an entry on an object's timeline. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.timelineEntries.update({ + type: "timeline_comment", + id: "string", + artifacts: {}, + body: "string", + bodyType: DevRev.TimelineCommentBodyType.SnapKit, + linkPreviews: {}, + snapKitBody: {}, +}); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.TimelineEntriesUpdateRequest` + +
+
+ +
+
+ +**requestOptions:** `TimelineEntries.RequestOptions` + +
+
+
+
+ +
+
+
+ +## works + +
client.works.create({ ...params }) -> DevRev.WorksCreateResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Creates new work ([issue](https://devrev.ai/docs/product/build), +[ticket](https://devrev.ai/docs/product/support)) item. +[task](https://docs.devrev.ai/product/tasks) and opportunity work types +are supported in the beta version. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.works.create({ + type: "issue", + appliesToPart: "string", + artifacts: ["string"], + body: "string", + customFields: { + string: { + key: "value", + }, + }, + customSchemaFragments: ["string"], + customSchemaSpec: { + apps: ["string"], + subtype: "string", + tenantFragment: true, + validateRequiredFields: true, + }, + ownedBy: ["string"], + reportedBy: ["string"], + stage: { + id: "string", + name: "string", + }, + stageValidationOptions: ["allow_non_start"], + tags: [ + { + id: "string", + value: "string", + }, + ], + targetCloseDate: new Date("2024-01-15T09:30:00.000Z"), + title: "string", + developedWith: ["string"], + priority: DevRev.IssuePriority.P0, + priorityV2: 1, + sprint: "string", + targetStartDate: new Date("2024-01-15T09:30:00.000Z"), +}); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.WorksCreateRequest` + +
+
+ +
+
+ +**requestOptions:** `Works.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.works.delete({ ...params }) -> DevRev.WorksDeleteResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Deletes a work item. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.works.delete({ + id: "ISS-12345", +}); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.WorksDeleteRequest` + +
+
+ +
+
+ +**requestOptions:** `Works.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.works.export({ ...params }) -> DevRev.WorksExportResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Exports a collection of work items. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.works.export(); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.WorksExportQuery` + +
+
+ +
+
+ +**requestOptions:** `Works.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.works.exportPost({ ...params }) -> DevRev.WorksExportResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Exports a collection of work items. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.works.exportPost(); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.WorksExportRequest` + +
+
+ +
+
+ +**requestOptions:** `Works.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.works.get({ ...params }) -> DevRev.WorksGetResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Gets a work item's information. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.works.get({ + id: "string", +}); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.WorksGetQuery` + +
+
+ +
+
+ +**requestOptions:** `Works.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.works.getPost({ ...params }) -> DevRev.WorksGetResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Gets a work item's information. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.works.getPost({ + id: "string", +}); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.WorksGetRequest` + +
+
+ +
+
+ +**requestOptions:** `Works.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.works.list({ ...params }) -> DevRev.WorksListResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Lists a collection of work items. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.works.list(); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.WorksListQuery` + +
+
+ +
+
+ +**requestOptions:** `Works.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.works.listPost({ ...params }) -> DevRev.WorksListResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Lists a collection of work items. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.works.listPost(); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.WorksListRequest` + +
+
+ +
+
+ +**requestOptions:** `Works.RequestOptions` + +
+
+
+
+ +
+
+
+ +
client.works.update({ ...params }) -> DevRev.WorksUpdateResponse +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Updates a work item's information. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.works.update({ + type: "issue", + appliesToPart: "string", + artifacts: {}, + body: "string", + customFields: { + string: { + key: "value", + }, + }, + customSchemaFragments: ["string"], + customSchemaSpec: { + apps: ["string"], + subtype: "string", + tenantFragment: true, + validateRequiredFields: true, + }, + id: "string", + ownedBy: {}, + reportedBy: {}, + stage: { + name: "string", + stage: "string", + }, + stageValidationOptions: ["allow_invalid_transition"], + stagedInfo: {}, + tags: {}, + targetCloseDate: new Date("2024-01-15T09:30:00.000Z"), + title: "string", + developedWith: {}, + priority: DevRev.IssuePriority.P0, + priorityV2: 1, + sprint: "string", + targetStartDate: new Date("2024-01-15T09:30:00.000Z"), +}); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `DevRev.WorksUpdateRequest` + +
+
+ +
+
+ +**requestOptions:** `Works.RequestOptions` + +
+
+
+
+ +
+
+
diff --git a/src/api/resources/accounts/client/Client.ts b/src/api/resources/accounts/client/Client.ts index 20d2a72..347e9f4 100644 --- a/src/api/resources/accounts/client/Client.ts +++ b/src/api/resources/accounts/client/Client.ts @@ -66,7 +66,7 @@ export class Accounts { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -215,7 +215,7 @@ export class Accounts { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -471,7 +471,7 @@ export class Accounts { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -607,7 +607,7 @@ export class Accounts { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -749,7 +749,7 @@ export class Accounts { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -898,7 +898,7 @@ export class Accounts { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -1165,7 +1165,7 @@ export class Accounts { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -1312,7 +1312,7 @@ export class Accounts { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -1462,7 +1462,7 @@ export class Accounts { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/resources/articles/client/Client.ts b/src/api/resources/articles/client/Client.ts index 29af369..1d3fdba 100644 --- a/src/api/resources/articles/client/Client.ts +++ b/src/api/resources/articles/client/Client.ts @@ -124,7 +124,7 @@ export class Articles { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -260,7 +260,7 @@ export class Articles { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -403,7 +403,7 @@ export class Articles { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -542,7 +542,7 @@ export class Articles { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -694,7 +694,7 @@ export class Articles { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -843,7 +843,7 @@ export class Articles { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -1060,7 +1060,7 @@ export class Articles { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -1196,7 +1196,7 @@ export class Articles { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -1335,7 +1335,7 @@ export class Articles { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/resources/artifacts/client/Client.ts b/src/api/resources/artifacts/client/Client.ts index 24b0145..2093d2f 100644 --- a/src/api/resources/artifacts/client/Client.ts +++ b/src/api/resources/artifacts/client/Client.ts @@ -64,7 +64,7 @@ export class Artifacts { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -203,7 +203,7 @@ export class Artifacts { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/resources/codeChanges/client/Client.ts b/src/api/resources/codeChanges/client/Client.ts index acd332e..5fc75cd 100644 --- a/src/api/resources/codeChanges/client/Client.ts +++ b/src/api/resources/codeChanges/client/Client.ts @@ -64,7 +64,7 @@ export class CodeChanges { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -202,7 +202,7 @@ export class CodeChanges { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -343,7 +343,7 @@ export class CodeChanges { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -481,7 +481,7 @@ export class CodeChanges { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -631,7 +631,7 @@ export class CodeChanges { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -767,7 +767,7 @@ export class CodeChanges { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -905,7 +905,7 @@ export class CodeChanges { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/resources/conversations/client/Client.ts b/src/api/resources/conversations/client/Client.ts index 0963e81..de3b0d7 100644 --- a/src/api/resources/conversations/client/Client.ts +++ b/src/api/resources/conversations/client/Client.ts @@ -64,7 +64,7 @@ export class Conversations { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -206,7 +206,7 @@ export class Conversations { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -463,7 +463,7 @@ export class Conversations { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -599,7 +599,7 @@ export class Conversations { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -741,7 +741,7 @@ export class Conversations { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -890,7 +890,7 @@ export class Conversations { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -1157,7 +1157,7 @@ export class Conversations { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -1293,7 +1293,7 @@ export class Conversations { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -1432,7 +1432,7 @@ export class Conversations { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/resources/customization/client/Client.ts b/src/api/resources/customization/client/Client.ts index 5ac17a1..cb9c61c 100644 --- a/src/api/resources/customization/client/Client.ts +++ b/src/api/resources/customization/client/Client.ts @@ -85,7 +85,7 @@ export class Customization { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -234,7 +234,7 @@ export class Customization { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -386,7 +386,7 @@ export class Customization { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -535,7 +535,7 @@ export class Customization { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -747,7 +747,7 @@ export class Customization { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -883,7 +883,7 @@ export class Customization { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -1040,7 +1040,7 @@ export class Customization { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -1187,7 +1187,7 @@ export class Customization { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -1334,7 +1334,7 @@ export class Customization { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -1522,7 +1522,7 @@ export class Customization { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -1658,7 +1658,7 @@ export class Customization { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -1808,7 +1808,7 @@ export class Customization { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -1944,7 +1944,7 @@ export class Customization { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -2084,7 +2084,7 @@ export class Customization { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -2226,7 +2226,7 @@ export class Customization { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -2375,7 +2375,7 @@ export class Customization { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -2555,7 +2555,7 @@ export class Customization { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -2691,7 +2691,7 @@ export class Customization { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -2830,7 +2830,7 @@ export class Customization { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -2979,7 +2979,7 @@ export class Customization { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -3121,7 +3121,7 @@ export class Customization { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -3270,7 +3270,7 @@ export class Customization { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -3454,7 +3454,7 @@ export class Customization { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -3590,7 +3590,7 @@ export class Customization { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -3729,7 +3729,7 @@ export class Customization { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/resources/devUsers/client/Client.ts b/src/api/resources/devUsers/client/Client.ts index b365a6b..94dda4c 100644 --- a/src/api/resources/devUsers/client/Client.ts +++ b/src/api/resources/devUsers/client/Client.ts @@ -67,7 +67,7 @@ export class DevUsers { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -217,7 +217,7 @@ export class DevUsers { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -363,7 +363,7 @@ export class DevUsers { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -501,7 +501,7 @@ export class DevUsers { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/resources/engagements/client/Client.ts b/src/api/resources/engagements/client/Client.ts index 9ff0817..3cad5a4 100644 --- a/src/api/resources/engagements/client/Client.ts +++ b/src/api/resources/engagements/client/Client.ts @@ -96,7 +96,7 @@ export class Engagements { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -232,7 +232,7 @@ export class Engagements { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -373,7 +373,7 @@ export class Engagements { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -512,7 +512,7 @@ export class Engagements { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -664,7 +664,7 @@ export class Engagements { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -813,7 +813,7 @@ export class Engagements { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -1013,7 +1013,7 @@ export class Engagements { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -1149,7 +1149,7 @@ export class Engagements { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -1288,7 +1288,7 @@ export class Engagements { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/resources/eventSource/client/Client.ts b/src/api/resources/eventSource/client/Client.ts index f957eaa..ca05dad 100644 --- a/src/api/resources/eventSource/client/Client.ts +++ b/src/api/resources/eventSource/client/Client.ts @@ -68,7 +68,7 @@ export class EventSource { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -217,7 +217,7 @@ export class EventSource { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -368,7 +368,7 @@ export class EventSource { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -520,7 +520,7 @@ export class EventSource { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -669,7 +669,7 @@ export class EventSource { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/resources/groups/client/Client.ts b/src/api/resources/groups/client/Client.ts index 6fefbff..dc023a8 100644 --- a/src/api/resources/groups/client/Client.ts +++ b/src/api/resources/groups/client/Client.ts @@ -65,7 +65,7 @@ export class Groups { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -207,7 +207,7 @@ export class Groups { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -356,7 +356,7 @@ export class Groups { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -544,7 +544,7 @@ export class Groups { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -680,7 +680,7 @@ export class Groups { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -820,7 +820,7 @@ export class Groups { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -983,7 +983,7 @@ export class Groups { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -1121,7 +1121,7 @@ export class Groups { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -1261,7 +1261,7 @@ export class Groups { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -1410,7 +1410,7 @@ export class Groups { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/resources/links/client/Client.ts b/src/api/resources/links/client/Client.ts index 0894942..2806a08 100644 --- a/src/api/resources/links/client/Client.ts +++ b/src/api/resources/links/client/Client.ts @@ -66,7 +66,7 @@ export class Links { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -205,7 +205,7 @@ export class Links { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -357,7 +357,7 @@ export class Links { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -506,7 +506,7 @@ export class Links { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -697,7 +697,7 @@ export class Links { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -835,7 +835,7 @@ export class Links { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/resources/parts/client/Client.ts b/src/api/resources/parts/client/Client.ts index f2944f2..6b2e13b 100644 --- a/src/api/resources/parts/client/Client.ts +++ b/src/api/resources/parts/client/Client.ts @@ -75,7 +75,7 @@ export class Parts { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -214,7 +214,7 @@ export class Parts { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -366,7 +366,7 @@ export class Parts { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -515,7 +515,7 @@ export class Parts { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -729,7 +729,7 @@ export class Parts { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -865,7 +865,7 @@ export class Parts { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -1009,7 +1009,7 @@ export class Parts { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/resources/productUsage/client/Client.ts b/src/api/resources/productUsage/client/Client.ts index 74cdc4c..c506fbb 100644 --- a/src/api/resources/productUsage/client/Client.ts +++ b/src/api/resources/productUsage/client/Client.ts @@ -71,7 +71,7 @@ export class ProductUsage { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -251,7 +251,7 @@ export class ProductUsage { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -387,7 +387,7 @@ export class ProductUsage { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -538,7 +538,7 @@ export class ProductUsage { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -677,7 +677,7 @@ export class ProductUsage { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -823,7 +823,7 @@ export class ProductUsage { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -972,7 +972,7 @@ export class ProductUsage { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -1189,7 +1189,7 @@ export class ProductUsage { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -1325,7 +1325,7 @@ export class ProductUsage { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -1475,7 +1475,7 @@ export class ProductUsage { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/resources/questionAnswers/client/Client.ts b/src/api/resources/questionAnswers/client/Client.ts index 88f3056..e238e73 100644 --- a/src/api/resources/questionAnswers/client/Client.ts +++ b/src/api/resources/questionAnswers/client/Client.ts @@ -65,7 +65,7 @@ export class QuestionAnswers { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -204,7 +204,7 @@ export class QuestionAnswers { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -350,7 +350,7 @@ export class QuestionAnswers { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -499,7 +499,7 @@ export class QuestionAnswers { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -691,7 +691,7 @@ export class QuestionAnswers { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -827,7 +827,7 @@ export class QuestionAnswers { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -966,7 +966,7 @@ export class QuestionAnswers { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/resources/revOrgs/client/Client.ts b/src/api/resources/revOrgs/client/Client.ts index 4b5967a..f79cc3f 100644 --- a/src/api/resources/revOrgs/client/Client.ts +++ b/src/api/resources/revOrgs/client/Client.ts @@ -66,7 +66,7 @@ export class RevOrgs { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -226,7 +226,7 @@ export class RevOrgs { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -373,7 +373,7 @@ export class RevOrgs { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -633,7 +633,7 @@ export class RevOrgs { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -782,7 +782,7 @@ export class RevOrgs { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -932,7 +932,7 @@ export class RevOrgs { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/resources/revUsers/client/Client.ts b/src/api/resources/revUsers/client/Client.ts index e13553f..3ff88ca 100644 --- a/src/api/resources/revUsers/client/Client.ts +++ b/src/api/resources/revUsers/client/Client.ts @@ -64,7 +64,7 @@ export class RevUsers { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -213,7 +213,7 @@ export class RevUsers { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -365,7 +365,7 @@ export class RevUsers { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -514,7 +514,7 @@ export class RevUsers { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -661,7 +661,7 @@ export class RevUsers { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -925,7 +925,7 @@ export class RevUsers { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -1073,7 +1073,7 @@ export class RevUsers { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -1220,7 +1220,7 @@ export class RevUsers { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -1370,7 +1370,7 @@ export class RevUsers { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/resources/schedules/client/Client.ts b/src/api/resources/schedules/client/Client.ts index f810fc2..88cdbf3 100644 --- a/src/api/resources/schedules/client/Client.ts +++ b/src/api/resources/schedules/client/Client.ts @@ -70,7 +70,7 @@ export class Schedules { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -213,7 +213,7 @@ export class Schedules { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -351,7 +351,7 @@ export class Schedules { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -490,7 +490,7 @@ export class Schedules { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -632,7 +632,7 @@ export class Schedules { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -773,7 +773,7 @@ export class Schedules { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -911,7 +911,7 @@ export class Schedules { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -1077,7 +1077,7 @@ export class Schedules { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -1213,7 +1213,7 @@ export class Schedules { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -1353,7 +1353,7 @@ export class Schedules { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -1492,7 +1492,7 @@ export class Schedules { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -1631,7 +1631,7 @@ export class Schedules { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -1764,7 +1764,7 @@ export class Schedules { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -1817,7 +1817,7 @@ export class Schedules { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -1870,7 +1870,7 @@ export class Schedules { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -1923,7 +1923,7 @@ export class Schedules { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/resources/search/client/Client.ts b/src/api/resources/search/client/Client.ts index b1885b1..b4e483e 100644 --- a/src/api/resources/search/client/Client.ts +++ b/src/api/resources/search/client/Client.ts @@ -91,7 +91,7 @@ export class Search { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -229,7 +229,7 @@ export class Search { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -380,7 +380,7 @@ export class Search { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -519,7 +519,7 @@ export class Search { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/resources/serviceAccounts/client/Client.ts b/src/api/resources/serviceAccounts/client/Client.ts index 9f499af..dfba528 100644 --- a/src/api/resources/serviceAccounts/client/Client.ts +++ b/src/api/resources/serviceAccounts/client/Client.ts @@ -68,7 +68,7 @@ export class ServiceAccounts { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -217,7 +217,7 @@ export class ServiceAccounts { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/resources/slas/client/Client.ts b/src/api/resources/slas/client/Client.ts index 3c95d71..43c23f2 100644 --- a/src/api/resources/slas/client/Client.ts +++ b/src/api/resources/slas/client/Client.ts @@ -104,7 +104,7 @@ export class Slas { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -240,7 +240,7 @@ export class Slas { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -379,7 +379,7 @@ export class Slas { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -527,7 +527,7 @@ export class Slas { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -669,7 +669,7 @@ export class Slas { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -818,7 +818,7 @@ export class Slas { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -1006,7 +1006,7 @@ export class Slas { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -1142,7 +1142,7 @@ export class Slas { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -1282,7 +1282,7 @@ export class Slas { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -1431,7 +1431,7 @@ export class Slas { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/resources/snapIns/client/Client.ts b/src/api/resources/snapIns/client/Client.ts index 0665fda..dae4e79 100644 --- a/src/api/resources/snapIns/client/Client.ts +++ b/src/api/resources/snapIns/client/Client.ts @@ -69,7 +69,7 @@ export class SnapIns { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -208,7 +208,7 @@ export class SnapIns { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/resources/snapWidgets/client/Client.ts b/src/api/resources/snapWidgets/client/Client.ts index 71a76f1..7a8886c 100644 --- a/src/api/resources/snapWidgets/client/Client.ts +++ b/src/api/resources/snapWidgets/client/Client.ts @@ -105,7 +105,7 @@ export class SnapWidgets { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/resources/surveys/client/Client.ts b/src/api/resources/surveys/client/Client.ts index 7f14997..f63ccc7 100644 --- a/src/api/resources/surveys/client/Client.ts +++ b/src/api/resources/surveys/client/Client.ts @@ -65,7 +65,7 @@ export class Surveys { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -204,7 +204,7 @@ export class Surveys { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -388,7 +388,7 @@ export class Surveys { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -524,7 +524,7 @@ export class Surveys { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -722,7 +722,7 @@ export class Surveys { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -858,7 +858,7 @@ export class Surveys { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -1001,7 +1001,7 @@ export class Surveys { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -1140,7 +1140,7 @@ export class Surveys { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/resources/sysUsers/client/Client.ts b/src/api/resources/sysUsers/client/Client.ts index 0157dc4..28abfab 100644 --- a/src/api/resources/sysUsers/client/Client.ts +++ b/src/api/resources/sysUsers/client/Client.ts @@ -84,7 +84,7 @@ export class SysUsers { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -220,7 +220,7 @@ export class SysUsers { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -359,7 +359,7 @@ export class SysUsers { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/resources/timelineEntries/client/Client.ts b/src/api/resources/timelineEntries/client/Client.ts index 7ba5857..8ba070f 100644 --- a/src/api/resources/timelineEntries/client/Client.ts +++ b/src/api/resources/timelineEntries/client/Client.ts @@ -77,7 +77,7 @@ export class TimelineEntries { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -255,7 +255,7 @@ export class TimelineEntries { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -404,7 +404,7 @@ export class TimelineEntries { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -558,7 +558,7 @@ export class TimelineEntries { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/resources/works/client/Client.ts b/src/api/resources/works/client/Client.ts index b0e74d0..dc2fa42 100644 --- a/src/api/resources/works/client/Client.ts +++ b/src/api/resources/works/client/Client.ts @@ -100,7 +100,7 @@ export class Works { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -239,7 +239,7 @@ export class Works { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -687,7 +687,7 @@ export class Works { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -823,7 +823,7 @@ export class Works { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -965,7 +965,7 @@ export class Works { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -1114,7 +1114,7 @@ export class Works { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -1572,7 +1572,7 @@ export class Works { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -1708,7 +1708,7 @@ export class Works { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -1879,7 +1879,7 @@ export class Works { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@devrev/api", - "X-Fern-SDK-Version": "0.0.14", + "X-Fern-SDK-Version": "0.0.15", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, },