Skip to content

Commit

Permalink
570-corrected the versios in all the files
Browse files Browse the repository at this point in the history
  • Loading branch information
sangeet-joy-tw committed Jan 31, 2024
1 parent 2f971ad commit b9a5f5b
Show file tree
Hide file tree
Showing 20 changed files with 3,330 additions and 3,330 deletions.
2,072 changes: 1,036 additions & 1,036 deletions docs/accounting/index.html

Large diffs are not rendered by default.

130 changes: 65 additions & 65 deletions docs/appstore/index.html

Large diffs are not rendered by default.

158 changes: 79 additions & 79 deletions docs/assets/index.html

Large diffs are not rendered by default.

144 changes: 72 additions & 72 deletions docs/bankfeeds/index.html

Large diffs are not rendered by default.

204 changes: 102 additions & 102 deletions docs/files/index.html

Large diffs are not rendered by default.

162 changes: 81 additions & 81 deletions docs/finance/index.html

Large diffs are not rendered by default.

364 changes: 182 additions & 182 deletions docs/payroll-au/index.html

Large diffs are not rendered by default.

582 changes: 291 additions & 291 deletions docs/payroll-nz/index.html

Large diffs are not rendered by default.

582 changes: 291 additions & 291 deletions docs/payroll-uk/index.html

Large diffs are not rendered by default.

194 changes: 97 additions & 97 deletions docs/projects/index.html

Large diffs are not rendered by default.

1,080 changes: 540 additions & 540 deletions src/gen/api/accountingApi.ts

Large diffs are not rendered by default.

16 changes: 8 additions & 8 deletions src/gen/api/appStoreApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,10 +84,10 @@ export class AppStoreApi {
}

/**
*
*
* @summary Retrieves a subscription for a given subscriptionId
* @param subscriptionId Unique identifier for Subscription object
*/
*/
public async getSubscription (subscriptionId: string, options: {headers: {[name: string]: string}} = {headers: {}}) : Promise<{ response: AxiosResponse; body: Subscription; }> {
const localVarPath = this.basePath + '/subscriptions/{subscriptionId}'
.replace('{' + 'subscriptionId' + '}', encodeURIComponent(String(subscriptionId)));
Expand Down Expand Up @@ -150,10 +150,10 @@ export class AppStoreApi {
});
}
/**
*
*
* @summary Gets all usage records related to the subscription
* @param subscriptionId Unique identifier for Subscription object
*/
*/
public async getUsageRecords (subscriptionId: string, options: {headers: {[name: string]: string}} = {headers: {}}) : Promise<{ response: AxiosResponse; body: UsageRecordsList; }> {
const localVarPath = this.basePath + '/subscriptions/{subscriptionId}/usage-records'
.replace('{' + 'subscriptionId' + '}', encodeURIComponent(String(subscriptionId)));
Expand Down Expand Up @@ -216,13 +216,13 @@ export class AppStoreApi {
});
}
/**
*
*
* @summary Send metered usage belonging to this subscription and subscription item
* @param subscriptionId Unique identifier for Subscription object
* @param subscriptionItemId The unique identifier of the subscriptionItem
* @param createUsageRecord Contains the quantity for the usage record to create
* @param idempotencyKey This allows you to safely retry requests without the risk of duplicate processing. 128 character max.
*/
*/
public async postUsageRecords (subscriptionId: string, subscriptionItemId: string, createUsageRecord: CreateUsageRecord, idempotencyKey?: string, options: {headers: {[name: string]: string}} = {headers: {}}) : Promise<{ response: AxiosResponse; body: UsageRecord; }> {
const localVarPath = this.basePath + '/subscriptions/{subscriptionId}/items/{subscriptionItemId}/usage-records'
.replace('{' + 'subscriptionId' + '}', encodeURIComponent(String(subscriptionId)))
Expand Down Expand Up @@ -297,14 +297,14 @@ export class AppStoreApi {
});
}
/**
*
*
* @summary Update and existing metered usage belonging to this subscription and subscription item
* @param subscriptionId Unique identifier for Subscription object
* @param subscriptionItemId The unique identifier of the subscriptionItem
* @param usageRecordId The unique identifier of the usage record
* @param updateUsageRecord Contains the quantity for the usage record to update
* @param idempotencyKey This allows you to safely retry requests without the risk of duplicate processing. 128 character max.
*/
*/
public async putUsageRecords (subscriptionId: string, subscriptionItemId: string, usageRecordId: string, updateUsageRecord: UpdateUsageRecord, idempotencyKey?: string, options: {headers: {[name: string]: string}} = {headers: {}}) : Promise<{ response: AxiosResponse; body: UsageRecord; }> {
const localVarPath = this.basePath + '/subscriptions/{subscriptionId}/items/{subscriptionItemId}/usage-records/{usageRecordId}'
.replace('{' + 'subscriptionId' + '}', encodeURIComponent(String(subscriptionId)))
Expand Down
14 changes: 7 additions & 7 deletions src/gen/api/assetApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ export class AssetApi {
* @param xeroTenantId Xero identifier for Tenant
* @param asset Fixed asset you are creating
* @param idempotencyKey This allows you to safely retry requests without the risk of duplicate processing. 128 character max.
*/
*/
public async createAsset (xeroTenantId: string, asset: Asset, idempotencyKey?: string, options: {headers: {[name: string]: string}} = {headers: {}}) : Promise<{ response: AxiosResponse; body: Asset; }> {
const localVarPath = this.basePath + '/Assets';
let localVarQueryParameters: any = {};
Expand Down Expand Up @@ -162,7 +162,7 @@ export class AssetApi {
* @param xeroTenantId Xero identifier for Tenant
* @param idempotencyKey This allows you to safely retry requests without the risk of duplicate processing. 128 character max.
* @param assetType Asset type to add
*/
*/
public async createAssetType (xeroTenantId: string, idempotencyKey?: string, assetType?: AssetType, options: {headers: {[name: string]: string}} = {headers: {}}) : Promise<{ response: AxiosResponse; body: AssetType; }> {
const localVarPath = this.basePath + '/AssetTypes';
let localVarQueryParameters: any = {};
Expand Down Expand Up @@ -226,11 +226,11 @@ export class AssetApi {
});
}
/**
* By passing in the appropriate asset id, you can search for a specific fixed asset in the system
* By passing in the appropriate asset id, you can search for a specific fixed asset in the system
* @summary Retrieves fixed asset by id
* @param xeroTenantId Xero identifier for Tenant
* @param id fixed asset id for single object
*/
*/
public async getAssetById (xeroTenantId: string, id: string, options: {headers: {[name: string]: string}} = {headers: {}}) : Promise<{ response: AxiosResponse; body: Asset; }> {
const localVarPath = this.basePath + '/Assets/{id}'
.replace('{' + 'id' + '}', encodeURIComponent(String(id)));
Expand Down Expand Up @@ -302,7 +302,7 @@ export class AssetApi {
* By passing in the appropriate options, you can search for available fixed asset types in the system
* @summary searches fixed asset settings
* @param xeroTenantId Xero identifier for Tenant
*/
*/
public async getAssetSettings (xeroTenantId: string, options: {headers: {[name: string]: string}} = {headers: {}}) : Promise<{ response: AxiosResponse; body: Setting; }> {
const localVarPath = this.basePath + '/Settings';
let localVarQueryParameters: any = {};
Expand Down Expand Up @@ -368,7 +368,7 @@ export class AssetApi {
* By passing in the appropriate options, you can search for available fixed asset types in the system
* @summary searches fixed asset types
* @param xeroTenantId Xero identifier for Tenant
*/
*/
public async getAssetTypes (xeroTenantId: string, options: {headers: {[name: string]: string}} = {headers: {}}) : Promise<{ response: AxiosResponse; body: Array<AssetType>; }> {
const localVarPath = this.basePath + '/AssetTypes';
let localVarQueryParameters: any = {};
Expand Down Expand Up @@ -440,7 +440,7 @@ export class AssetApi {
* @param orderBy Requests can be ordered by AssetType, AssetName, AssetNumber, PurchaseDate and PurchasePrice. If the asset status is DISPOSED it also allows DisposalDate and DisposalPrice.
* @param sortDirection ASC or DESC
* @param filterBy A string that can be used to filter the list to only return assets containing the text. Checks it against the AssetName, AssetNumber, Description and AssetTypeName fields.
*/
*/
public async getAssets (xeroTenantId: string, status: AssetStatusQueryParam, page?: number, pageSize?: number, orderBy?: 'AssetType' | 'AssetName' | 'AssetNumber' | 'PurchaseDate' | 'PurchasePrice' | 'DisposalDate' | 'DisposalPrice', sortDirection?: 'asc' | 'desc', filterBy?: string, options: {headers: {[name: string]: string}} = {headers: {}}) : Promise<{ response: AxiosResponse; body: Assets; }> {
const localVarPath = this.basePath + '/Assets';
let localVarQueryParameters: any = {};
Expand Down
20 changes: 10 additions & 10 deletions src/gen/api/bankfeedsApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ export class BankFeedsApi {
* @param xeroTenantId Xero identifier for Tenant
* @param feedConnections Feed Connection(s) array object in the body
* @param idempotencyKey This allows you to safely retry requests without the risk of duplicate processing. 128 character max.
*/
*/
public async createFeedConnections (xeroTenantId: string, feedConnections: FeedConnections, idempotencyKey?: string, options: {headers: {[name: string]: string}} = {headers: {}}) : Promise<{ response: AxiosResponse; body: FeedConnections; }> {
const localVarPath = this.basePath + '/FeedConnections';
let localVarQueryParameters: any = {};
Expand Down Expand Up @@ -156,12 +156,12 @@ export class BankFeedsApi {
});
}
/**
*
*
* @summary Creates one or more new statements
* @param xeroTenantId Xero identifier for Tenant
* @param idempotencyKey This allows you to safely retry requests without the risk of duplicate processing. 128 character max.
* @param statements Statements array of objects in the body
*/
*/
public async createStatements (xeroTenantId: string, idempotencyKey?: string, statements?: Statements, options: {headers: {[name: string]: string}} = {headers: {}}) : Promise<{ response: AxiosResponse; body: Statements; }> {
const localVarPath = this.basePath + '/Statements';
let localVarQueryParameters: any = {};
Expand Down Expand Up @@ -231,7 +231,7 @@ export class BankFeedsApi {
* @param xeroTenantId Xero identifier for Tenant
* @param feedConnections Feed Connections array object in the body
* @param idempotencyKey This allows you to safely retry requests without the risk of duplicate processing. 128 character max.
*/
*/
public async deleteFeedConnections (xeroTenantId: string, feedConnections: FeedConnections, idempotencyKey?: string, options: {headers: {[name: string]: string}} = {headers: {}}) : Promise<{ response: AxiosResponse; body: FeedConnections; }> {
const localVarPath = this.basePath + '/FeedConnections/DeleteRequests';
let localVarQueryParameters: any = {};
Expand Down Expand Up @@ -304,7 +304,7 @@ export class BankFeedsApi {
* @summary Retrieve single feed connection based on a unique id provided
* @param xeroTenantId Xero identifier for Tenant
* @param id Unique identifier for retrieving single object
*/
*/
public async getFeedConnection (xeroTenantId: string, id: string, options: {headers: {[name: string]: string}} = {headers: {}}) : Promise<{ response: AxiosResponse; body: FeedConnection; }> {
const localVarPath = this.basePath + '/FeedConnections/{id}'
.replace('{' + 'id' + '}', encodeURIComponent(String(id)));
Expand Down Expand Up @@ -378,7 +378,7 @@ export class BankFeedsApi {
* @param xeroTenantId Xero identifier for Tenant
* @param page Page number which specifies the set of records to retrieve. By default the number of the records per set is 10. Example - https://api.xero.com/bankfeeds.xro/1.0/FeedConnections?page&#x3D;1 to get the second set of the records. When page value is not a number or a negative number, by default, the first set of records is returned.
* @param pageSize Page size which specifies how many records per page will be returned (default 10). Example - https://api.xero.com/bankfeeds.xro/1.0/FeedConnections?pageSize&#x3D;100 to specify page size of 100.
*/
*/
public async getFeedConnections (xeroTenantId: string, page?: number, pageSize?: number, options: {headers: {[name: string]: string}} = {headers: {}}) : Promise<{ response: AxiosResponse; body: FeedConnections; }> {
const localVarPath = this.basePath + '/FeedConnections';
let localVarQueryParameters: any = {};
Expand Down Expand Up @@ -453,7 +453,7 @@ export class BankFeedsApi {
* @summary Retrieve single statement based on unique id provided
* @param xeroTenantId Xero identifier for Tenant
* @param statementId statement id for single object
*/
*/
public async getStatement (xeroTenantId: string, statementId: string, options: {headers: {[name: string]: string}} = {headers: {}}) : Promise<{ response: AxiosResponse; body: Statement; }> {
const localVarPath = this.basePath + '/Statements/{statementId}'
.replace('{' + 'statementId' + '}', encodeURIComponent(String(statementId)));
Expand Down Expand Up @@ -527,9 +527,9 @@ export class BankFeedsApi {
* @param xeroTenantId Xero identifier for Tenant
* @param page unique id for single object
* @param pageSize Page size which specifies how many records per page will be returned (default 10). Example - https://api.xero.com/bankfeeds.xro/1.0/Statements?pageSize&#x3D;100 to specify page size of 100.
* @param xeroApplicationId
* @param xeroUserId
*/
* @param xeroApplicationId
* @param xeroUserId
*/
public async getStatements (xeroTenantId: string, page?: number, pageSize?: number, xeroApplicationId?: string, xeroUserId?: string, options: {headers: {[name: string]: string}} = {headers: {}}) : Promise<{ response: AxiosResponse; body: Statements; }> {
const localVarPath = this.basePath + '/Statements';
let localVarQueryParameters: any = {};
Expand Down
Loading

0 comments on commit b9a5f5b

Please sign in to comment.