orgnote-api 0.20.1 → 0.20.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/remote-api/api.d.ts +23 -23
package/package.json
CHANGED
package/remote-api/api.d.ts
CHANGED
|
@@ -381,21 +381,21 @@ export interface HandlersSyncNotesResponse {
|
|
|
381
381
|
/**
|
|
382
382
|
*
|
|
383
383
|
* @export
|
|
384
|
-
* @interface
|
|
384
|
+
* @interface HandlersSystemInfo
|
|
385
385
|
*/
|
|
386
|
-
export interface
|
|
386
|
+
export interface HandlersSystemInfo {
|
|
387
387
|
/**
|
|
388
388
|
*
|
|
389
|
-
* @type {
|
|
390
|
-
* @memberof
|
|
389
|
+
* @type {ModelsEnvironmentInfo}
|
|
390
|
+
* @memberof HandlersSystemInfo
|
|
391
391
|
*/
|
|
392
|
-
'
|
|
392
|
+
'environment'?: ModelsEnvironmentInfo;
|
|
393
393
|
/**
|
|
394
394
|
*
|
|
395
395
|
* @type {ModelsOrgNoteClientUpdateInfo}
|
|
396
|
-
* @memberof
|
|
396
|
+
* @memberof HandlersSystemInfo
|
|
397
397
|
*/
|
|
398
|
-
'
|
|
398
|
+
'update'?: ModelsOrgNoteClientUpdateInfo;
|
|
399
399
|
}
|
|
400
400
|
/**
|
|
401
401
|
*
|
|
@@ -433,6 +433,19 @@ export declare const ModelsCategory: {
|
|
|
433
433
|
readonly CategorySchedule: "schedule";
|
|
434
434
|
};
|
|
435
435
|
export type ModelsCategory = typeof ModelsCategory[keyof typeof ModelsCategory];
|
|
436
|
+
/**
|
|
437
|
+
*
|
|
438
|
+
* @export
|
|
439
|
+
* @interface ModelsEnvironmentInfo
|
|
440
|
+
*/
|
|
441
|
+
export interface ModelsEnvironmentInfo {
|
|
442
|
+
/**
|
|
443
|
+
*
|
|
444
|
+
* @type {boolean}
|
|
445
|
+
* @memberof ModelsEnvironmentInfo
|
|
446
|
+
*/
|
|
447
|
+
'selfHosted'?: boolean;
|
|
448
|
+
}
|
|
436
449
|
/**
|
|
437
450
|
*
|
|
438
451
|
* @export
|
|
@@ -724,19 +737,6 @@ export interface ModelsPublicUser {
|
|
|
724
737
|
*/
|
|
725
738
|
'profileUrl'?: string;
|
|
726
739
|
}
|
|
727
|
-
/**
|
|
728
|
-
*
|
|
729
|
-
* @export
|
|
730
|
-
* @interface ModelsSystemInfo
|
|
731
|
-
*/
|
|
732
|
-
export interface ModelsSystemInfo {
|
|
733
|
-
/**
|
|
734
|
-
*
|
|
735
|
-
* @type {boolean}
|
|
736
|
-
* @memberof ModelsSystemInfo
|
|
737
|
-
*/
|
|
738
|
-
'selfHosted'?: boolean;
|
|
739
|
-
}
|
|
740
740
|
/**
|
|
741
741
|
*
|
|
742
742
|
* @export
|
|
@@ -1483,7 +1483,7 @@ export declare const SystemInfoApiFp: (configuration?: Configuration) => {
|
|
|
1483
1483
|
* @param {*} [options] Override http request option.
|
|
1484
1484
|
* @throws {RequiredError}
|
|
1485
1485
|
*/
|
|
1486
|
-
systemInfoVersionGet(version: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
1486
|
+
systemInfoVersionGet(version: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HandlersSystemInfo>>;
|
|
1487
1487
|
};
|
|
1488
1488
|
/**
|
|
1489
1489
|
* SystemInfoApi - factory interface
|
|
@@ -1505,7 +1505,7 @@ export declare const SystemInfoApiFactory: (configuration?: Configuration, baseP
|
|
|
1505
1505
|
* @param {*} [options] Override http request option.
|
|
1506
1506
|
* @throws {RequiredError}
|
|
1507
1507
|
*/
|
|
1508
|
-
systemInfoVersionGet(version: string, options?: any): AxiosPromise<
|
|
1508
|
+
systemInfoVersionGet(version: string, options?: any): AxiosPromise<HandlersSystemInfo>;
|
|
1509
1509
|
};
|
|
1510
1510
|
/**
|
|
1511
1511
|
* SystemInfoApi - object-oriented interface
|
|
@@ -1531,7 +1531,7 @@ export declare class SystemInfoApi extends BaseAPI {
|
|
|
1531
1531
|
* @throws {RequiredError}
|
|
1532
1532
|
* @memberof SystemInfoApi
|
|
1533
1533
|
*/
|
|
1534
|
-
systemInfoVersionGet(version: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
1534
|
+
systemInfoVersionGet(version: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<HandlersSystemInfo, any>>;
|
|
1535
1535
|
}
|
|
1536
1536
|
/**
|
|
1537
1537
|
* TagsApi - axios parameter creator
|